diff --git a/20250705/weather/.gitignore b/20250705/weather/.gitignore
new file mode 100644
index 0000000..549e00a
--- /dev/null
+++ b/20250705/weather/.gitignore
@@ -0,0 +1,33 @@
+HELP.md
+target/
+!.mvn/wrapper/maven-wrapper.jar
+!**/src/main/**/target/
+!**/src/test/**/target/
+
+### STS ###
+.apt_generated
+.classpath
+.factorypath
+.project
+.settings
+.springBeans
+.sts4-cache
+
+### IntelliJ IDEA ###
+.idea
+*.iws
+*.iml
+*.ipr
+
+### NetBeans ###
+/nbproject/private/
+/nbbuild/
+/dist/
+/nbdist/
+/.nb-gradle/
+build/
+!**/src/main/**/build/
+!**/src/test/**/build/
+
+### VS Code ###
+.vscode/
diff --git a/20250705/weather/.mvn/wrapper/MavenWrapperDownloader.java b/20250705/weather/.mvn/wrapper/MavenWrapperDownloader.java
new file mode 100644
index 0000000..a45eb6b
--- /dev/null
+++ b/20250705/weather/.mvn/wrapper/MavenWrapperDownloader.java
@@ -0,0 +1,118 @@
+/*
+ * Copyright 2007-present the original author or authors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import java.net.*;
+import java.io.*;
+import java.nio.channels.*;
+import java.util.Properties;
+
+public class MavenWrapperDownloader {
+
+ private static final String WRAPPER_VERSION = "0.5.6";
+ /**
+ * Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided.
+ */
+ private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/"
+ + WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar";
+
+ /**
+ * Path to the maven-wrapper.properties file, which might contain a downloadUrl property to
+ * use instead of the default one.
+ */
+ private static final String MAVEN_WRAPPER_PROPERTIES_PATH =
+ ".mvn/wrapper/maven-wrapper.properties";
+
+ /**
+ * Path where the maven-wrapper.jar will be saved to.
+ */
+ private static final String MAVEN_WRAPPER_JAR_PATH =
+ ".mvn/wrapper/maven-wrapper.jar";
+
+ /**
+ * Name of the property which should be used to override the default download url for the wrapper.
+ */
+ private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl";
+
+ public static void main(String args[]) {
+ System.out.println("- Downloader started");
+ File baseDirectory = new File(args[0]);
+ System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath());
+
+ // If the maven-wrapper.properties exists, read it and check if it contains a custom
+ // wrapperUrl parameter.
+ File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH);
+ String url = DEFAULT_DOWNLOAD_URL;
+ if (mavenWrapperPropertyFile.exists()) {
+ FileInputStream mavenWrapperPropertyFileInputStream = null;
+ try {
+ mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile);
+ Properties mavenWrapperProperties = new Properties();
+ mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream);
+ url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url);
+ } catch (IOException e) {
+ System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'");
+ } finally {
+ try {
+ if (mavenWrapperPropertyFileInputStream != null) {
+ mavenWrapperPropertyFileInputStream.close();
+ }
+ } catch (IOException e) {
+ // Ignore ...
+ }
+ }
+ }
+ System.out.println("- Downloading from: " + url);
+
+ File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH);
+ if (!outputFile.getParentFile().exists()) {
+ if (!outputFile.getParentFile().mkdirs()) {
+ System.out.println(
+ "- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'");
+ }
+ }
+ System.out.println("- Downloading to: " + outputFile.getAbsolutePath());
+ try {
+ downloadFileFromURL(url, outputFile);
+ System.out.println("Done");
+ System.exit(0);
+ } catch (Throwable e) {
+ System.out.println("- Error downloading");
+ e.printStackTrace();
+ System.exit(1);
+ }
+ }
+
+ private static void downloadFileFromURL(String urlString, File destination) throws Exception {
+ if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) {
+ String username = System.getenv("MVNW_USERNAME");
+ char[] password = System.getenv("MVNW_PASSWORD").toCharArray();
+ Authenticator.setDefault(new Authenticator() {
+ @Override
+ protected PasswordAuthentication getPasswordAuthentication() {
+ return new PasswordAuthentication(username, password);
+ }
+ });
+ }
+ URL website = new URL(urlString);
+ ReadableByteChannel rbc;
+ rbc = Channels.newChannel(website.openStream());
+ FileOutputStream fos = new FileOutputStream(destination);
+ fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
+ fos.close();
+ rbc.close();
+ }
+
+}
diff --git a/20250705/weather/.mvn/wrapper/maven-wrapper.jar b/20250705/weather/.mvn/wrapper/maven-wrapper.jar
new file mode 100644
index 0000000..2cc7d4a
Binary files /dev/null and b/20250705/weather/.mvn/wrapper/maven-wrapper.jar differ
diff --git a/20250705/weather/.mvn/wrapper/maven-wrapper.properties b/20250705/weather/.mvn/wrapper/maven-wrapper.properties
new file mode 100644
index 0000000..ffdc10e
--- /dev/null
+++ b/20250705/weather/.mvn/wrapper/maven-wrapper.properties
@@ -0,0 +1,2 @@
+distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.1/apache-maven-3.8.1-bin.zip
+wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar
diff --git a/20250705/weather/mvnw b/20250705/weather/mvnw
new file mode 100644
index 0000000..a16b543
--- /dev/null
+++ b/20250705/weather/mvnw
@@ -0,0 +1,310 @@
+#!/bin/sh
+# ----------------------------------------------------------------------------
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+# ----------------------------------------------------------------------------
+
+# ----------------------------------------------------------------------------
+# Maven Start Up Batch script
+#
+# Required ENV vars:
+# ------------------
+# JAVA_HOME - location of a JDK home dir
+#
+# Optional ENV vars
+# -----------------
+# M2_HOME - location of maven2's installed home dir
+# MAVEN_OPTS - parameters passed to the Java VM when running Maven
+# e.g. to debug Maven itself, use
+# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
+# MAVEN_SKIP_RC - flag to disable loading of mavenrc files
+# ----------------------------------------------------------------------------
+
+if [ -z "$MAVEN_SKIP_RC" ] ; then
+
+ if [ -f /etc/mavenrc ] ; then
+ . /etc/mavenrc
+ fi
+
+ if [ -f "$HOME/.mavenrc" ] ; then
+ . "$HOME/.mavenrc"
+ fi
+
+fi
+
+# OS specific support. $var _must_ be set to either true or false.
+cygwin=false;
+darwin=false;
+mingw=false
+case "`uname`" in
+ CYGWIN*) cygwin=true ;;
+ MINGW*) mingw=true;;
+ Darwin*) darwin=true
+ # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home
+ # See https://developer.apple.com/library/mac/qa/qa1170/_index.html
+ if [ -z "$JAVA_HOME" ]; then
+ if [ -x "/usr/libexec/java_home" ]; then
+ export JAVA_HOME="`/usr/libexec/java_home`"
+ else
+ export JAVA_HOME="/Library/Java/Home"
+ fi
+ fi
+ ;;
+esac
+
+if [ -z "$JAVA_HOME" ] ; then
+ if [ -r /etc/gentoo-release ] ; then
+ JAVA_HOME=`java-config --jre-home`
+ fi
+fi
+
+if [ -z "$M2_HOME" ] ; then
+ ## resolve links - $0 may be a link to maven's home
+ PRG="$0"
+
+ # need this for relative symlinks
+ while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG="`dirname "$PRG"`/$link"
+ fi
+ done
+
+ saveddir=`pwd`
+
+ M2_HOME=`dirname "$PRG"`/..
+
+ # make it fully qualified
+ M2_HOME=`cd "$M2_HOME" && pwd`
+
+ cd "$saveddir"
+ # echo Using m2 at $M2_HOME
+fi
+
+# For Cygwin, ensure paths are in UNIX format before anything is touched
+if $cygwin ; then
+ [ -n "$M2_HOME" ] &&
+ M2_HOME=`cygpath --unix "$M2_HOME"`
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
+ [ -n "$CLASSPATH" ] &&
+ CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
+fi
+
+# For Mingw, ensure paths are in UNIX format before anything is touched
+if $mingw ; then
+ [ -n "$M2_HOME" ] &&
+ M2_HOME="`(cd "$M2_HOME"; pwd)`"
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
+fi
+
+if [ -z "$JAVA_HOME" ]; then
+ javaExecutable="`which javac`"
+ if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then
+ # readlink(1) is not available as standard on Solaris 10.
+ readLink=`which readlink`
+ if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then
+ if $darwin ; then
+ javaHome="`dirname \"$javaExecutable\"`"
+ javaExecutable="`cd \"$javaHome\" && pwd -P`/javac"
+ else
+ javaExecutable="`readlink -f \"$javaExecutable\"`"
+ fi
+ javaHome="`dirname \"$javaExecutable\"`"
+ javaHome=`expr "$javaHome" : '\(.*\)/bin'`
+ JAVA_HOME="$javaHome"
+ export JAVA_HOME
+ fi
+ fi
+fi
+
+if [ -z "$JAVACMD" ] ; then
+ if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ else
+ JAVACMD="`which java`"
+ fi
+fi
+
+if [ ! -x "$JAVACMD" ] ; then
+ echo "Error: JAVA_HOME is not defined correctly." >&2
+ echo " We cannot execute $JAVACMD" >&2
+ exit 1
+fi
+
+if [ -z "$JAVA_HOME" ] ; then
+ echo "Warning: JAVA_HOME environment variable is not set."
+fi
+
+CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
+
+# traverses directory structure from process work directory to filesystem root
+# first directory with .mvn subdirectory is considered project base directory
+find_maven_basedir() {
+
+ if [ -z "$1" ]
+ then
+ echo "Path not specified to find_maven_basedir"
+ return 1
+ fi
+
+ basedir="$1"
+ wdir="$1"
+ while [ "$wdir" != '/' ] ; do
+ if [ -d "$wdir"/.mvn ] ; then
+ basedir=$wdir
+ break
+ fi
+ # workaround for JBEAP-8937 (on Solaris 10/Sparc)
+ if [ -d "${wdir}" ]; then
+ wdir=`cd "$wdir/.."; pwd`
+ fi
+ # end of workaround
+ done
+ echo "${basedir}"
+}
+
+# concatenates all lines of a file
+concat_lines() {
+ if [ -f "$1" ]; then
+ echo "$(tr -s '\n' ' ' < "$1")"
+ fi
+}
+
+BASE_DIR=`find_maven_basedir "$(pwd)"`
+if [ -z "$BASE_DIR" ]; then
+ exit 1;
+fi
+
+##########################################################################################
+# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
+# This allows using the maven wrapper in projects that prohibit checking in binary data.
+##########################################################################################
+if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Found .mvn/wrapper/maven-wrapper.jar"
+ fi
+else
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..."
+ fi
+ if [ -n "$MVNW_REPOURL" ]; then
+ jarUrl="$MVNW_REPOURL/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
+ else
+ jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
+ fi
+ while IFS="=" read key value; do
+ case "$key" in (wrapperUrl) jarUrl="$value"; break ;;
+ esac
+ done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties"
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Downloading from: $jarUrl"
+ fi
+ wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar"
+ if $cygwin; then
+ wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"`
+ fi
+
+ if command -v wget > /dev/null; then
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Found wget ... using wget"
+ fi
+ if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
+ wget "$jarUrl" -O "$wrapperJarPath"
+ else
+ wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath"
+ fi
+ elif command -v curl > /dev/null; then
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Found curl ... using curl"
+ fi
+ if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
+ curl -o "$wrapperJarPath" "$jarUrl" -f
+ else
+ curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f
+ fi
+
+ else
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Falling back to using Java to download"
+ fi
+ javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java"
+ # For Cygwin, switch paths to Windows format before running javac
+ if $cygwin; then
+ javaClass=`cygpath --path --windows "$javaClass"`
+ fi
+ if [ -e "$javaClass" ]; then
+ if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo " - Compiling MavenWrapperDownloader.java ..."
+ fi
+ # Compiling the Java class
+ ("$JAVA_HOME/bin/javac" "$javaClass")
+ fi
+ if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
+ # Running the downloader
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo " - Running MavenWrapperDownloader.java ..."
+ fi
+ ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR")
+ fi
+ fi
+ fi
+fi
+##########################################################################################
+# End of extension
+##########################################################################################
+
+export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"}
+if [ "$MVNW_VERBOSE" = true ]; then
+ echo $MAVEN_PROJECTBASEDIR
+fi
+MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS"
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin; then
+ [ -n "$M2_HOME" ] &&
+ M2_HOME=`cygpath --path --windows "$M2_HOME"`
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
+ [ -n "$CLASSPATH" ] &&
+ CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
+ [ -n "$MAVEN_PROJECTBASEDIR" ] &&
+ MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"`
+fi
+
+# Provide a "standardized" way to retrieve the CLI args that will
+# work with both Windows and non-Windows executions.
+MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@"
+export MAVEN_CMD_LINE_ARGS
+
+WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
+
+exec "$JAVACMD" \
+ $MAVEN_OPTS \
+ -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \
+ "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \
+ ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@"
diff --git a/20250705/weather/mvnw.cmd b/20250705/weather/mvnw.cmd
new file mode 100644
index 0000000..c8d4337
--- /dev/null
+++ b/20250705/weather/mvnw.cmd
@@ -0,0 +1,182 @@
+@REM ----------------------------------------------------------------------------
+@REM Licensed to the Apache Software Foundation (ASF) under one
+@REM or more contributor license agreements. See the NOTICE file
+@REM distributed with this work for additional information
+@REM regarding copyright ownership. The ASF licenses this file
+@REM to you under the Apache License, Version 2.0 (the
+@REM "License"); you may not use this file except in compliance
+@REM with the License. You may obtain a copy of the License at
+@REM
+@REM https://www.apache.org/licenses/LICENSE-2.0
+@REM
+@REM Unless required by applicable law or agreed to in writing,
+@REM software distributed under the License is distributed on an
+@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+@REM KIND, either express or implied. See the License for the
+@REM specific language governing permissions and limitations
+@REM under the License.
+@REM ----------------------------------------------------------------------------
+
+@REM ----------------------------------------------------------------------------
+@REM Maven Start Up Batch script
+@REM
+@REM Required ENV vars:
+@REM JAVA_HOME - location of a JDK home dir
+@REM
+@REM Optional ENV vars
+@REM M2_HOME - location of maven2's installed home dir
+@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
+@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending
+@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
+@REM e.g. to debug Maven itself, use
+@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
+@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
+@REM ----------------------------------------------------------------------------
+
+@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
+@echo off
+@REM set title of command window
+title %0
+@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on'
+@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO%
+
+@REM set %HOME% to equivalent of $HOME
+if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
+
+@REM Execute a user defined script before this one
+if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
+@REM check for pre script, once with legacy .bat ending and once with .cmd ending
+if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat"
+if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd"
+:skipRcPre
+
+@setlocal
+
+set ERROR_CODE=0
+
+@REM To isolate internal variables from possible post scripts, we use another setlocal
+@setlocal
+
+@REM ==== START VALIDATION ====
+if not "%JAVA_HOME%" == "" goto OkJHome
+
+echo.
+echo Error: JAVA_HOME not found in your environment. >&2
+echo Please set the JAVA_HOME variable in your environment to match the >&2
+echo location of your Java installation. >&2
+echo.
+goto error
+
+:OkJHome
+if exist "%JAVA_HOME%\bin\java.exe" goto init
+
+echo.
+echo Error: JAVA_HOME is set to an invalid directory. >&2
+echo JAVA_HOME = "%JAVA_HOME%" >&2
+echo Please set the JAVA_HOME variable in your environment to match the >&2
+echo location of your Java installation. >&2
+echo.
+goto error
+
+@REM ==== END VALIDATION ====
+
+:init
+
+@REM Find the project base dir, i.e. the directory that contains the folder ".mvn".
+@REM Fallback to current working directory if not found.
+
+set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%
+IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir
+
+set EXEC_DIR=%CD%
+set WDIR=%EXEC_DIR%
+:findBaseDir
+IF EXIST "%WDIR%"\.mvn goto baseDirFound
+cd ..
+IF "%WDIR%"=="%CD%" goto baseDirNotFound
+set WDIR=%CD%
+goto findBaseDir
+
+:baseDirFound
+set MAVEN_PROJECTBASEDIR=%WDIR%
+cd "%EXEC_DIR%"
+goto endDetectBaseDir
+
+:baseDirNotFound
+set MAVEN_PROJECTBASEDIR=%EXEC_DIR%
+cd "%EXEC_DIR%"
+
+:endDetectBaseDir
+
+IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig
+
+@setlocal EnableExtensions EnableDelayedExpansion
+for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a
+@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%
+
+:endReadAdditionalConfig
+
+SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
+set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar"
+set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
+
+set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
+
+FOR /F "tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO (
+ IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B
+)
+
+@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
+@REM This allows using the maven wrapper in projects that prohibit checking in binary data.
+if exist %WRAPPER_JAR% (
+ if "%MVNW_VERBOSE%" == "true" (
+ echo Found %WRAPPER_JAR%
+ )
+) else (
+ if not "%MVNW_REPOURL%" == "" (
+ SET DOWNLOAD_URL="%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
+ )
+ if "%MVNW_VERBOSE%" == "true" (
+ echo Couldn't find %WRAPPER_JAR%, downloading it ...
+ echo Downloading from: %DOWNLOAD_URL%
+ )
+
+ powershell -Command "&{"^
+ "$webclient = new-object System.Net.WebClient;"^
+ "if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^
+ "$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^
+ "}"^
+ "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^
+ "}"
+ if "%MVNW_VERBOSE%" == "true" (
+ echo Finished downloading %WRAPPER_JAR%
+ )
+)
+@REM End of extension
+
+@REM Provide a "standardized" way to retrieve the CLI args that will
+@REM work with both Windows and non-Windows executions.
+set MAVEN_CMD_LINE_ARGS=%*
+
+%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*
+if ERRORLEVEL 1 goto error
+goto end
+
+:error
+set ERROR_CODE=1
+
+:end
+@endlocal & set ERROR_CODE=%ERROR_CODE%
+
+if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost
+@REM check for post script, once with legacy .bat ending and once with .cmd ending
+if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat"
+if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd"
+:skipRcPost
+
+@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
+if "%MAVEN_BATCH_PAUSE%" == "on" pause
+
+if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
+
+exit /B %ERROR_CODE%
diff --git a/20250705/weather/pom.xml b/20250705/weather/pom.xml
new file mode 100644
index 0000000..a48332e
--- /dev/null
+++ b/20250705/weather/pom.xml
@@ -0,0 +1,104 @@
+
+
+ 4.0.0
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 2.4.5
+
+
+ com.rehome
+ weather
+ 1.0.1
+ war
+ weather
+ weather and storm interface
+
+ 1.8
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+ org.mybatis.spring.boot
+ mybatis-spring-boot-starter
+ 2.1.4
+
+
+
+ mysql
+ mysql-connector-java
+ 5.1.49
+
+
+ org.springframework.boot
+ spring-boot-starter-tomcat
+ provided
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+
+ com.mchange
+ c3p0
+ 0.9.5.2
+
+
+ org.projectlombok
+ lombok
+ true
+
+
+ org.springframework.boot
+ spring-boot-configuration-processor
+ true
+
+
+ com.alibaba
+ fastjson
+ 1.2.30
+
+
+
+
+
+
+
+
+
+
+ commons-io
+ commons-io
+ 2.4
+
+
+
+ org.apache.logging.log4j
+ log4j-api
+ 2.17.1
+
+
+
+ org.apache.logging.log4j
+ log4j-core
+ 2.17.1
+
+
+
+
+ ${project.artifactId}
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+
+
diff --git a/20250705/weather/replay_pid14080.log b/20250705/weather/replay_pid14080.log
new file mode 100644
index 0000000..4b10444
--- /dev/null
+++ b/20250705/weather/replay_pid14080.log
@@ -0,0 +1,5917 @@
+JvmtiExport can_access_local_variables 1
+JvmtiExport can_hotswap_or_post_breakpoint 1
+JvmtiExport can_post_on_exceptions 1
+# 104 ciObject found
+instanceKlass org/springframework/data/keyvalue/core/QueryEngine
+instanceKlass org/springframework/data/keyvalue/core/query/KeyValueQuery
+instanceKlass org/springframework/data/redis/core/convert/IndexedDataFactoryProvider
+instanceKlass org/springframework/data/redis/connection/RedisGeoCommands$GeoLocation
+instanceKlass org/springframework/data/redis/core/convert/PathIndexResolver
+instanceKlass org/springframework/data/mapping/context/AbstractMappingContext$$Lambda$782
+instanceKlass org/springframework/data/spel/ExtensionAwareEvaluationContextProvider$$Lambda$781
+instanceKlass org/springframework/data/spel/ExtensionAwareEvaluationContextProvider
+instanceKlass org/springframework/data/redis/core/convert/KeyspaceConfiguration$KeyspaceSettings
+instanceKlass org/springframework/data/redis/core/index/IndexDefinition
+instanceKlass org/springframework/beans/factory/support/DefaultSingletonBeanRegistry$$Lambda$780
+instanceKlass org/springframework/data/mapping/PersistentPropertyPaths
+instanceKlass org/springframework/data/mapping/PropertyPath
+instanceKlass org/springframework/data/mapping/PersistentPropertyPath
+instanceKlass org/springframework/data/redis/listener/PatternTopic
+instanceKlass org/springframework/data/redis/listener/ChannelTopic
+instanceKlass org/springframework/data/redis/listener/Topic
+instanceKlass org/springframework/data/redis/listener/ReactiveRedisMessageListenerContainer
+instanceKlass org/springframework/data/redis/core/ScanOptions
+instanceKlass org/springframework/data/redis/core/ReactiveRedisCallback
+instanceKlass org/springframework/data/redis/core/DefaultReactiveZSetOperations
+instanceKlass org/springframework/data/redis/core/ReactiveZSetOperations
+instanceKlass org/springframework/data/redis/core/DefaultReactiveValueOperations
+instanceKlass org/springframework/data/redis/core/ReactiveValueOperations
+instanceKlass org/springframework/data/redis/core/DefaultReactiveStreamOperations
+instanceKlass org/springframework/data/redis/core/ReactiveStreamOperations
+instanceKlass org/springframework/data/redis/core/DefaultReactiveSetOperations
+instanceKlass org/springframework/data/redis/core/ReactiveSetOperations
+instanceKlass org/springframework/data/redis/core/DefaultReactiveListOperations
+instanceKlass org/springframework/data/redis/core/ReactiveListOperations
+instanceKlass org/springframework/data/redis/core/DefaultReactiveHyperLogLogOperations
+instanceKlass org/springframework/data/redis/core/ReactiveHyperLogLogOperations
+instanceKlass org/springframework/data/redis/core/DefaultReactiveHashOperations
+instanceKlass org/springframework/data/redis/core/ReactiveHashOperations
+instanceKlass org/springframework/data/redis/core/DefaultReactiveGeoOperations
+instanceKlass org/springframework/data/redis/core/ReactiveGeoOperations
+instanceKlass org/springframework/data/redis/core/script/DefaultReactiveScriptExecutor
+instanceKlass org/springframework/data/redis/core/script/ReactiveScriptExecutor
+instanceKlass org/springframework/data/redis/serializer/DefaultRedisSerializationContext
+instanceKlass org/springframework/data/redis/serializer/DefaultRedisSerializationContext$DefaultRedisSerializationContextBuilder
+instanceKlass org/springframework/data/redis/serializer/RedisSerializationContext$RedisSerializationContextBuilder
+instanceKlass org/springframework/data/redis/serializer/RedisSerializationContext
+instanceKlass org/springframework/context/support/DefaultLifecycleProcessor$LifecycleGroup
+instanceKlass org/springframework/boot/autoconfigure/cache/CacheAutoConfiguration$CacheManagerValidator$$Lambda$779
+instanceKlass org/springframework/cache/support/AbstractValueAdaptingCache
+instanceKlass org/springframework/boot/autoconfigure/cache/CacheManagerCustomizers$$Lambda$778
+instanceKlass org/springframework/boot/autoconfigure/cache/RedisCacheConfiguration$$Lambda$777
+instanceKlass org/springframework/boot/autoconfigure/cache/RedisCacheConfiguration$$Lambda$776
+instanceKlass org/springframework/data/redis/cache/CacheStatisticsCollector
+instanceKlass org/springframework/data/redis/cache/DefaultRedisCacheWriter
+instanceKlass org/springframework/data/redis/cache/RedisCacheWriter
+instanceKlass org/springframework/data/redis/cache/CacheStatisticsProvider
+instanceKlass org/springframework/boot/autoconfigure/cache/CacheManagerCustomizer
+instanceKlass org/springframework/data/redis/core/script/DefaultScriptExecutor
+instanceKlass org/springframework/data/redis/connection/SortParameters
+instanceKlass org/springframework/data/redis/core/script/ScriptExecutor
+instanceKlass org/springframework/data/redis/core/BoundStreamOperations
+instanceKlass org/springframework/data/redis/core/BoundListOperations
+instanceKlass org/springframework/data/redis/core/HashOperations
+instanceKlass org/springframework/data/redis/core/BoundGeoOperations
+instanceKlass org/springframework/data/redis/core/BoundValueOperations
+instanceKlass org/springframework/data/redis/core/BoundHashOperations
+instanceKlass org/springframework/data/redis/core/BoundZSetOperations
+instanceKlass org/springframework/data/redis/core/BoundSetOperations
+instanceKlass org/springframework/data/redis/core/BoundKeyOperations
+instanceKlass org/springframework/data/redis/core/BulkMapper
+instanceKlass org/springframework/data/redis/core/query/SortQuery
+instanceKlass org/springframework/data/redis/core/SessionCallback
+instanceKlass org/springframework/data/redis/core/script/RedisScript
+instanceKlass org/springframework/data/redis/core/ClusterOperations
+instanceKlass org/springframework/data/redis/core/HyperLogLogOperations
+instanceKlass org/springframework/data/redis/core/GeoOperations
+instanceKlass org/springframework/data/redis/core/ZSetOperations
+instanceKlass org/springframework/data/redis/core/StreamObjectMapper$1
+instanceKlass org/springframework/data/redis/core/StreamObjectMapper
+instanceKlass org/springframework/data/convert/DefaultTypeMapper$$Lambda$775
+instanceKlass org/springframework/data/mapping/Alias
+instanceKlass org/springframework/data/mapping/context/AbstractMappingContext$$Lambda$774
+instanceKlass org/springframework/data/convert/MappingContextTypeInformationMapper
+instanceKlass org/springframework/data/convert/SimpleTypeInformationMapper
+instanceKlass org/springframework/data/convert/TypeInformationMapper
+instanceKlass org/springframework/data/convert/CustomConversions$$Lambda$773
+instanceKlass org/springframework/data/redis/core/convert/DefaultRedisTypeMapper$BucketTypeAliasAccessor
+instanceKlass org/springframework/data/convert/TypeAliasAccessor
+instanceKlass org/springframework/data/convert/DefaultTypeMapper
+instanceKlass org/springframework/data/redis/core/convert/RedisTypeMapper
+instanceKlass org/springframework/data/convert/TypeMapper
+instanceKlass org/springframework/util/comparator/ComparableComparator
+instanceKlass org/springframework/util/comparator/NullSafeComparator
+instanceKlass org/springframework/data/redis/hash/ObjectHashMapper$NoOpReferenceResolver
+instanceKlass org/springframework/data/redis/hash/ObjectHashMapper$NoOpIndexResolver
+instanceKlass org/springframework/data/redis/core/mapping/RedisMappingContext$ConfigAwareTimeToLiveAccessor
+instanceKlass org/springframework/data/redis/core/TimeToLiveAccessor
+instanceKlass org/springframework/data/redis/core/mapping/RedisMappingContext$ConfigAwareKeySpaceResolver
+instanceKlass org/springframework/data/mapping/model/InstantiationAwarePropertyAccessorFactory
+instanceKlass org/springframework/data/mapping/model/ClassGeneratingPropertyAccessorFactory$$Lambda$772
+instanceKlass org/springframework/data/mapping/model/ClassGeneratingPropertyAccessorFactory
+instanceKlass org/springframework/data/mapping/model/PersistentPropertyAccessorFactory
+instanceKlass org/springframework/data/mapping/model/ClassGeneratingEntityInstantiator$ObjectInstantiator
+instanceKlass org/springframework/data/mapping/model/ClassGeneratingEntityInstantiator$ObjectInstantiatorClassGenerator
+instanceKlass org/springframework/data/mapping/model/ClassGeneratingEntityInstantiator
+instanceKlass org/springframework/data/mapping/model/EntityInstantiator
+instanceKlass org/springframework/data/mapping/model/EntityInstantiators
+instanceKlass org/springframework/data/mapping/context/PersistentPropertyPathFactory$$Lambda$771
+instanceKlass org/springframework/data/mapping/context/PersistentPropertyPathFactory
+instanceKlass org/springframework/data/spel/EvaluationContextProvider$$Lambda$770
+instanceKlass org/springframework/data/spel/EvaluationContextProvider
+instanceKlass java/util/WeakHashMap$HashIterator
+instanceKlass org/springframework/data/convert/CustomConversions$$Lambda$769
+instanceKlass org/springframework/data/convert/CustomConversions$$Lambda$768
+instanceKlass org/springframework/data/convert/CustomConversions$$Lambda$767
+instanceKlass org/springframework/data/convert/CustomConversions$$Lambda$766
+instanceKlass org/springframework/data/convert/CustomConversions$$Lambda$765
+instanceKlass org/springframework/data/convert/CustomConversions$$Lambda$764
+instanceKlass org/springframework/data/convert/CustomConversions$$Lambda$763
+instanceKlass org/springframework/data/convert/CustomConversions$$Lambda$762
+instanceKlass org/springframework/data/util/Streamable$$Lambda$761
+instanceKlass org/springframework/data/convert/ConverterBuilder$ConverterAware
+instanceKlass org/springframework/data/convert/ConverterBuilder$WritingConverterAware
+instanceKlass org/springframework/data/convert/ConverterBuilder$ReadingConverterAware
+instanceKlass org/springframework/data/convert/ConverterBuilder
+instanceKlass org/springframework/data/convert/ReadingConverter
+instanceKlass org/springframework/data/convert/WritingConverter
+instanceKlass org/springframework/data/convert/CustomConversions$$Lambda$760
+instanceKlass org/springframework/data/convert/CustomConversions$$Lambda$759
+instanceKlass org/springframework/data/convert/CustomConversions$$Lambda$758
+instanceKlass org/springframework/data/convert/CustomConversions$$Lambda$757
+instanceKlass org/springframework/data/convert/CustomConversions$$Lambda$756
+instanceKlass org/springframework/data/convert/CustomConversions$$Lambda$755
+instanceKlass org/springframework/data/convert/CustomConversions$ConverterRegistration
+instanceKlass org/springframework/data/convert/CustomConversions$ConverterRegistrationIntent
+instanceKlass org/springframework/data/convert/CustomConversions$$Lambda$754
+instanceKlass org/springframework/data/convert/CustomConversions$$Lambda$753
+instanceKlass org/springframework/data/convert/CustomConversions$$Lambda$752
+instanceKlass org/springframework/data/convert/CustomConversions$$Lambda$751
+instanceKlass org/springframework/data/convert/CustomConversions$$Lambda$750
+instanceKlass org/springframework/data/convert/CustomConversions$ConversionTargetsCache
+instanceKlass org/springframework/data/convert/CustomConversions$ConverterConfiguration$$Lambda$749
+instanceKlass org/springframework/data/convert/CustomConversions$ConverterConfiguration
+instanceKlass org/springframework/data/convert/CustomConversions$StoreConversions
+instanceKlass org/springframework/data/mapping/model/SimpleTypeHolder$$Lambda$748
+instanceKlass org/springframework/data/redis/core/convert/Jsr310Converters
+instanceKlass org/springframework/data/redis/core/convert/BinaryConverters
+instanceKlass org/springframework/data/redis/core/convert/BinaryConverters$BytesToEnumConverterFactory
+instanceKlass org/springframework/data/redis/core/convert/BinaryConverters$BytesToNumberConverterFactory
+instanceKlass org/springframework/data/redis/core/convert/BinaryConverters$StringBasedConverter
+instanceKlass org/springframework/data/convert/ThreeTenBackPortConverters
+instanceKlass org/springframework/data/convert/JodaTimeConverters
+instanceKlass org/springframework/data/redis/hash/ObjectHashMapper
+instanceKlass org/springframework/data/redis/hash/HashMapper
+instanceKlass org/springframework/data/redis/core/StreamOperations
+instanceKlass org/springframework/data/redis/core/HashMapperProvider
+instanceKlass org/springframework/data/redis/core/SetOperations
+instanceKlass org/springframework/data/redis/core/ListOperations
+instanceKlass org/springframework/data/redis/core/AbstractOperations
+instanceKlass org/springframework/data/redis/core/ValueOperations
+instanceKlass org/springframework/data/redis/connection/lettuce/LettucePoolingClientConfiguration
+instanceKlass org/springframework/data/redis/connection/lettuce/StandaloneConnectionProvider$1
+instanceKlass org/springframework/data/redis/connection/lettuce/StandaloneConnectionProvider
+instanceKlass io/lettuce/core/output/StreamingOutput
+instanceKlass io/lettuce/core/output/CommandOutput
+instanceKlass io/lettuce/core/protocol/ProtocolKeyword
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConnection$TypeHints
+instanceKlass io/netty/util/internal/shaded/org/jctools/queues/LinkedArrayQueueUtil
+instanceKlass io/lettuce/core/codec/ByteArrayCodec
+instanceKlass io/lettuce/core/codec/ToByteBufEncoder
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConnectionFactory$ExceptionTranslatingConnectionProvider
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConnectionProvider$TargetAware
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConnectionFactory$$Lambda$747
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConnectionFactory$$Lambda$746
+instanceKlass io/netty/channel/group/VoidChannelGroupFuture
+instanceKlass io/netty/channel/group/ChannelGroupFuture
+instanceKlass io/netty/channel/group/DefaultChannelGroup$1
+instanceKlass io/netty/channel/ChannelFutureListener
+instanceKlass io/netty/channel/group/ChannelGroup
+instanceKlass io/lettuce/core/ConnectionEvents
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConnectionFactory$$Lambda$745
+instanceKlass io/lettuce/core/RedisURI$$Lambda$744
+instanceKlass io/lettuce/core/RedisURI$$Lambda$743
+instanceKlass io/lettuce/core/RedisURI$$Lambda$742
+instanceKlass io/lettuce/core/RedisURI$Builder$$Lambda$741
+instanceKlass io/lettuce/core/RedisURI$Builder$$Lambda$740
+instanceKlass io/lettuce/core/RedisURI$Builder$$Lambda$739
+instanceKlass io/lettuce/core/RedisURI$Builder$$Lambda$738
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConnectionFactory$$Lambda$737
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConnectionFactory$$Lambda$736
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConnectionFactory$$Lambda$735
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConnectionFactory$$Lambda$734
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConnectionFactory$$Lambda$733
+instanceKlass io/lettuce/core/RedisURI$Builder$$Lambda$732
+instanceKlass io/lettuce/core/RedisURI$Builder$$Lambda$731
+instanceKlass io/lettuce/core/RedisURI$$Lambda$730
+instanceKlass io/lettuce/core/RedisURI$$Lambda$729
+instanceKlass io/lettuce/core/RedisURI$$Lambda$728
+instanceKlass io/lettuce/core/RedisURI$$Lambda$727
+instanceKlass io/lettuce/core/RedisURI$$Lambda$726
+instanceKlass io/lettuce/core/RedisURI$$Lambda$725
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass io/lettuce/core/RedisURI$$Lambda$724
+instanceKlass java/util/function/LongFunction
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass io/lettuce/core/internal/LettuceStrings
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConnectionFactory$$Lambda$723
+instanceKlass java/util/function/IntSupplier
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConnectionFactory$$Lambda$722
+instanceKlass org/springframework/data/redis/connection/RedisConfiguration$StaticMasterReplicaConfiguration
+instanceKlass org/springframework/data/redis/connection/lettuce/LettucePool
+instanceKlass org/springframework/data/redis/connection/Pool
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConnectionFactory$MutableLettuceClientConfiguration
+instanceKlass io/lettuce/core/RedisURI$Builder
+instanceKlass io/lettuce/core/codec/RedisCodec
+instanceKlass io/lettuce/core/api/StatefulRedisConnection
+instanceKlass org/springframework/data/redis/connection/RedisSocketConfiguration
+instanceKlass org/springframework/data/redis/connection/RedisConfiguration$DomainSocketConfiguration
+instanceKlass org/springframework/data/redis/connection/RedisConfiguration$WithDomainSocket
+instanceKlass org/springframework/data/redis/connection/DefaultedRedisClusterConnection
+instanceKlass org/springframework/data/redis/connection/ClusterCommandExecutor
+instanceKlass org/springframework/data/redis/connection/ClusterTopologyProvider
+instanceKlass io/lettuce/core/cluster/api/StatefulRedisClusterConnection
+instanceKlass io/lettuce/core/api/StatefulConnection
+instanceKlass io/lettuce/core/internal/AsyncCloseable
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConnectionFactory$SharedConnection
+instanceKlass io/lettuce/core/RedisURI
+instanceKlass io/lettuce/core/ConnectionPoint
+instanceKlass org/springframework/data/redis/connection/RedisClusterConnection
+instanceKlass org/springframework/data/redis/connection/RedisClusterServerCommands
+instanceKlass org/springframework/data/redis/connection/RedisClusterCommands
+instanceKlass org/springframework/data/redis/connection/RedisSentinelConnection
+instanceKlass org/springframework/data/redis/connection/RedisSentinelCommands
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceReactiveRedisConnection
+instanceKlass org/springframework/data/redis/connection/ReactiveRedisClusterConnection
+instanceKlass org/springframework/data/redis/connection/ReactiveClusterCommands
+instanceKlass org/springframework/data/redis/connection/ReactiveRedisConnection
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConnectionProvider
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConnection$PipeliningFlushState
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConnection$PipeliningFlushPolicy
+instanceKlass org/springframework/data/redis/connection/RedisStandaloneConfiguration$$Lambda$721
+instanceKlass org/springframework/data/redis/connection/RedisStandaloneConfiguration$$Lambda$720
+instanceKlass org/springframework/data/redis/connection/RedisPassword$$Lambda$719
+instanceKlass org/springframework/data/redis/connection/RedisPassword$$Lambda$718
+instanceKlass org/springframework/data/redis/connection/RedisPassword$$Lambda$717
+instanceKlass org/springframework/data/redis/connection/RedisPassword
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConverters$$Lambda$716
+instanceKlass io/lettuce/core/TransactionResult
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConverters$$Lambda$715
+instanceKlass org/springframework/data/redis/connection/convert/ListConverter
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConverters$$Lambda$714
+instanceKlass io/lettuce/core/GeoCoordinates
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConverters$$Lambda$713
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConverters$2
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConverters$1
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConverters$$Lambda$712
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConverters$$Lambda$711
+instanceKlass org/springframework/data/redis/connection/RedisZSetCommands$Tuple
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConverters$$Lambda$710
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConverters$$Lambda$709
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConverters$$Lambda$708
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConverters$$Lambda$707
+instanceKlass io/lettuce/core/Value
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConverters$$Lambda$706
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConverters$$Lambda$705
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConverters$$Lambda$704
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConverters$$Lambda$703
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConverters$$Lambda$702
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConverters$$Lambda$701
+instanceKlass org/springframework/data/redis/connection/convert/StringToRedisClientInfoConverter
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceExceptionConverter
+instanceKlass org/springframework/data/redis/connection/convert/Converters$$Lambda$700
+instanceKlass org/springframework/data/redis/connection/convert/Converters$1
+instanceKlass org/springframework/data/redis/connection/convert/StringToDataTypeConverter
+instanceKlass org/springframework/data/redis/connection/convert/LongToBooleanConverter
+instanceKlass org/springframework/data/redis/connection/convert/StringToPropertiesConverter
+instanceKlass org/springframework/data/redis/connection/convert/Converters
+instanceKlass sun/reflect/misc/Trampoline
+instanceKlass sun/reflect/misc/MethodUtil$1
+instanceKlass org/springframework/data/redis/PassThroughExceptionTranslationStrategy
+instanceKlass org/springframework/data/redis/ExceptionTranslationStrategy
+instanceKlass org/springframework/data/redis/connection/lettuce/DefaultLettuceClientConfiguration
+instanceKlass org/springframework/boot/autoconfigure/data/redis/LettuceConnectionConfiguration$$Lambda$699
+instanceKlass io/lettuce/core/TimeoutOptions$TimeoutSource
+instanceKlass io/lettuce/core/protocol/RatioDecodeBufferPolicy
+instanceKlass io/lettuce/core/protocol/DecodeBufferPolicies$2
+instanceKlass io/lettuce/core/protocol/DecodeBufferPolicies$1
+instanceKlass io/lettuce/core/protocol/DecodeBufferPolicy
+instanceKlass io/lettuce/core/protocol/DecodeBufferPolicies
+instanceKlass io/lettuce/core/TimeoutOptions$Builder
+instanceKlass io/lettuce/core/TimeoutOptions
+instanceKlass io/lettuce/core/SslOptions$KeystoreAction$$Lambda$698
+instanceKlass io/lettuce/core/SslOptions$KeystoreAction
+instanceKlass io/lettuce/core/SslOptions$Builder$$Lambda$697
+instanceKlass io/lettuce/core/SslOptions$Builder$$Lambda$696
+instanceKlass io/netty/handler/ssl/SslContextBuilder
+instanceKlass io/lettuce/core/SslOptions$Builder
+instanceKlass io/lettuce/core/SslOptions
+instanceKlass io/lettuce/core/SocketOptions$Builder
+instanceKlass io/lettuce/core/SocketOptions
+instanceKlass io/lettuce/core/event/metrics/MetricEventPublisher
+instanceKlass io/lettuce/core/resource/SocketAddressResolver
+instanceKlass io/lettuce/core/metrics/CommandLatencyRecorder$1
+instanceKlass io/lettuce/core/metrics/DefaultCommandLatencyCollector$PauseDetectorWrapper$1
+instanceKlass io/lettuce/core/internal/LettuceClassUtils
+instanceKlass io/lettuce/core/metrics/DefaultCommandLatencyCollector$PauseDetectorWrapper
+instanceKlass io/lettuce/core/metrics/DefaultCommandLatencyCollector
+instanceKlass io/lettuce/core/metrics/CommandLatencyCollector
+instanceKlass io/lettuce/core/metrics/CommandLatencyRecorder
+instanceKlass io/lettuce/core/metrics/MetricCollector
+instanceKlass reactor/core/publisher/Hooks
+instanceKlass reactor/util/concurrent/MpscLinkedQueue$LinkedQueueNode
+instanceKlass reactor/util/concurrent/Queues$$Lambda$695
+instanceKlass reactor/util/concurrent/Queues$$Lambda$694
+instanceKlass reactor/util/concurrent/Queues$$Lambda$693
+instanceKlass reactor/util/concurrent/Queues$$Lambda$692
+instanceKlass reactor/util/concurrent/Queues$$Lambda$691
+instanceKlass reactor/util/concurrent/Queues$$Lambda$690
+instanceKlass reactor/util/concurrent/Queues$$Lambda$689
+instanceKlass reactor/util/concurrent/Queues
+instanceKlass reactor/core/publisher/FluxCreate$SerializedFluxSink
+instanceKlass reactor/util/context/Context0
+instanceKlass reactor/util/context/CoreContext
+instanceKlass reactor/core/publisher/Operators$1
+instanceKlass reactor/core/Fuseable$ConditionalSubscriber
+instanceKlass reactor/core/publisher/Operators
+instanceKlass java/util/concurrent/atomic/AtomicLongFieldUpdater$CASUpdater$1
+instanceKlass java/util/concurrent/atomic/AtomicLongFieldUpdater
+instanceKlass reactor/util/context/Context
+instanceKlass reactor/util/context/ContextView
+instanceKlass reactor/core/Disposables$AlwaysDisposable
+instanceKlass reactor/core/Disposables
+instanceKlass reactor/core/publisher/OperatorDisposables
+instanceKlass reactor/core/publisher/FluxSink
+instanceKlass reactor/core/publisher/FluxCreate$1
+instanceKlass reactor/core/publisher/SourceProducer
+instanceKlass reactor/core/publisher/InternalManySink
+instanceKlass reactor/core/publisher/Sinks$Many
+instanceKlass reactor/core/publisher/InnerProducer
+instanceKlass org/reactivestreams/Subscription
+instanceKlass reactor/core/publisher/Flux$$Lambda$688
+instanceKlass reactor/core/publisher/Flux$$Lambda$687
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass reactor/core/publisher/Flux$$Lambda$686
+instanceKlass reactor/core/publisher/Flux$$Lambda$685
+instanceKlass reactor/core/publisher/Flux$$Lambda$684
+instanceKlass reactor/util/function/Tuple2
+instanceKlass reactor/util/function/Tuples
+instanceKlass reactor/core/publisher/ContextHolder
+instanceKlass reactor/core/CoreSubscriber
+instanceKlass org/reactivestreams/Processor
+instanceKlass org/reactivestreams/Subscriber
+instanceKlass reactor/core/publisher/DirectInnerContainer
+instanceKlass reactor/core/scheduler/DelegateServiceScheduler
+instanceKlass reactor/core/Scannable
+instanceKlass reactor/util/Loggers$Slf4JLogger
+instanceKlass reactor/util/Logger
+instanceKlass reactor/util/Loggers$Slf4JLoggerFactory
+instanceKlass reactor/util/Loggers
+instanceKlass reactor/core/scheduler/Schedulers$1
+instanceKlass reactor/core/scheduler/Schedulers$Factory
+instanceKlass reactor/core/scheduler/Schedulers$$Lambda$683
+instanceKlass reactor/core/scheduler/Schedulers$$Lambda$682
+instanceKlass reactor/core/scheduler/Schedulers$$Lambda$681
+instanceKlass reactor/core/scheduler/Schedulers$$Lambda$680
+instanceKlass reactor/core/scheduler/Scheduler
+instanceKlass reactor/core/Disposable
+instanceKlass reactor/core/scheduler/Schedulers$$Lambda$679
+instanceKlass reactor/core/scheduler/Schedulers$$Lambda$678
+instanceKlass reactor/core/scheduler/Schedulers$$Lambda$677
+instanceKlass reactor/core/scheduler/Schedulers$$Lambda$676
+instanceKlass reactor/core/scheduler/Schedulers$$Lambda$675
+instanceKlass reactor/core/scheduler/Schedulers
+instanceKlass io/lettuce/core/event/DefaultEventBus
+instanceKlass io/lettuce/core/event/EventBus
+instanceKlass io/netty/util/ResourceLeak
+instanceKlass io/netty/util/concurrent/FastThreadLocalRunnable
+instanceKlass io/netty/util/internal/shaded/org/jctools/util/UnsafeRefArrayAccess
+instanceKlass io/netty/util/internal/shaded/org/jctools/util/Pow2
+instanceKlass io/netty/util/internal/shaded/org/jctools/util/RangeUtil
+instanceKlass io/netty/util/internal/shaded/org/jctools/queues/IndexedQueueSizeUtil$IndexedQueue
+instanceKlass io/netty/util/internal/shaded/org/jctools/queues/QueueProgressIndicators
+instanceKlass io/netty/util/internal/shaded/org/jctools/queues/MessagePassingQueue
+instanceKlass io/netty/util/internal/shaded/org/jctools/util/UnsafeAccess
+instanceKlass io/netty/util/internal/PlatformDependent$Mpsc$1
+instanceKlass io/netty/util/internal/PlatformDependent$Mpsc
+instanceKlass io/netty/util/internal/PlatformDependent$4
+instanceKlass io/netty/util/internal/CleanerJava6$1
+instanceKlass io/netty/util/internal/CleanerJava6
+instanceKlass io/netty/util/internal/PlatformDependent$2
+instanceKlass io/netty/util/internal/PlatformDependent$ThreadLocalRandomProvider
+instanceKlass io/netty/util/internal/PlatformDependent$1
+instanceKlass io/netty/util/internal/Cleaner
+instanceKlass sun/misc/VMNotification
+instanceKlass io/netty/util/internal/PlatformDependent0$5
+instanceKlass io/netty/util/internal/PlatformDependent0$4
+instanceKlass io/netty/util/internal/PlatformDependent0$3
+instanceKlass io/netty/util/internal/PlatformDependent0$2
+instanceKlass io/netty/util/internal/ReflectionUtil
+instanceKlass io/netty/util/internal/PlatformDependent0$1
+instanceKlass io/netty/util/internal/PlatformDependent0
+instanceKlass io/netty/util/internal/PlatformDependent
+instanceKlass io/netty/util/HashedWheelTimer$HashedWheelBucket
+instanceKlass io/netty/util/HashedWheelTimer$Worker
+instanceKlass io/netty/util/ResourceLeakTracker
+instanceKlass javax/security/cert/Certificate
+instanceKlass java/security/cert/X509Extension
+instanceKlass io/netty/util/AsciiString
+instanceKlass io/netty/util/internal/EmptyArrays
+instanceKlass io/netty/util/ResourceLeakDetector
+instanceKlass io/netty/util/ResourceLeakDetectorFactory
+instanceKlass io/netty/util/HashedWheelTimer
+instanceKlass io/netty/util/Timer
+instanceKlass io/netty/util/concurrent/MultithreadEventExecutorGroup$1
+instanceKlass io/netty/util/concurrent/FutureListener
+instanceKlass io/netty/util/concurrent/GenericFutureListener
+instanceKlass io/netty/util/concurrent/DefaultEventExecutorChooserFactory$PowerOfTwoEventExecutorChooser
+instanceKlass io/netty/util/concurrent/EventExecutorChooserFactory$EventExecutorChooser
+instanceKlass io/netty/util/internal/ThreadExecutorMap$1
+instanceKlass io/netty/util/internal/ThreadExecutorMap$3
+instanceKlass io/netty/util/internal/UnpaddedInternalThreadLocalMap
+instanceKlass io/netty/util/concurrent/FastThreadLocal
+instanceKlass io/netty/util/internal/ThreadExecutorMap
+instanceKlass io/netty/util/internal/StringUtil
+instanceKlass io/netty/util/internal/PriorityQueue
+instanceKlass io/netty/util/concurrent/GlobalEventExecutor$TaskRunner
+instanceKlass io/netty/util/concurrent/GlobalEventExecutor$1
+instanceKlass io/netty/util/concurrent/PromiseTask$SentinelRunnable
+instanceKlass io/netty/util/internal/PriorityQueueNode
+instanceKlass io/netty/util/concurrent/ScheduledFuture
+instanceKlass io/netty/util/internal/ThrowableUtil
+instanceKlass io/netty/util/concurrent/DefaultPromise$CauseHolder
+instanceKlass io/netty/util/concurrent/AbstractFuture
+instanceKlass io/netty/util/concurrent/DefaultEventExecutorChooserFactory
+instanceKlass io/netty/util/concurrent/EventExecutorChooserFactory
+instanceKlass io/netty/util/concurrent/ThreadPerTaskExecutor
+instanceKlass io/netty/util/concurrent/RejectedExecutionHandlers$1
+instanceKlass io/netty/util/concurrent/RejectedExecutionHandlers
+instanceKlass io/netty/util/concurrent/Promise
+instanceKlass io/netty/util/concurrent/Future
+instanceKlass io/netty/util/concurrent/RejectedExecutionHandler
+instanceKlass io/netty/util/concurrent/ThreadProperties
+instanceKlass java/util/concurrent/atomic/AtomicIntegerFieldUpdater$AtomicIntegerFieldUpdaterImpl$1
+instanceKlass java/util/concurrent/atomic/AtomicIntegerFieldUpdater
+instanceKlass io/netty/util/concurrent/SingleThreadEventExecutor$1
+instanceKlass io/netty/util/concurrent/AbstractScheduledEventExecutor$2
+instanceKlass io/netty/util/concurrent/AbstractScheduledEventExecutor$1
+instanceKlass io/netty/util/concurrent/OrderedEventExecutor
+instanceKlass io/netty/util/concurrent/EventExecutor
+instanceKlass io/netty/util/concurrent/DefaultThreadFactory
+instanceKlass io/netty/util/concurrent/AbstractEventExecutorGroup
+instanceKlass io/netty/util/concurrent/EventExecutorGroup
+instanceKlass io/lettuce/core/resource/DefaultEventLoopGroupProvider
+instanceKlass io/lettuce/core/resource/EventLoopGroupProvider
+instanceKlass io/lettuce/core/tracing/NoOpTracing$1
+instanceKlass io/lettuce/core/tracing/Tracing$Endpoint
+instanceKlass io/lettuce/core/tracing/TracerProvider
+instanceKlass io/lettuce/core/tracing/TraceContextProvider
+instanceKlass io/lettuce/core/tracing/Tracing
+instanceKlass io/lettuce/core/resource/ThreadFactoryProvider
+instanceKlass io/lettuce/core/resource/DnsResolver
+instanceKlass io/lettuce/core/internal/LettuceAssert
+instanceKlass io/lettuce/core/event/DefaultEventPublisherOptions$Builder
+instanceKlass io/lettuce/core/event/DefaultEventPublisherOptions
+instanceKlass io/lettuce/core/event/EventPublisherOptions
+instanceKlass io/lettuce/core/metrics/DefaultCommandLatencyCollectorOptions$Builder
+instanceKlass io/lettuce/core/metrics/CommandLatencyCollectorOptions$Builder
+instanceKlass io/lettuce/core/metrics/DefaultCommandLatencyCollectorOptions
+instanceKlass io/lettuce/core/metrics/CommandLatencyCollectorOptions
+instanceKlass io/lettuce/core/resource/DefaultClientResources$Builder
+instanceKlass io/lettuce/core/resource/ClientResources$Builder
+instanceKlass io/netty/util/internal/SystemPropertyUtil
+instanceKlass io/lettuce/core/resource/NettyCustomizer
+instanceKlass io/lettuce/core/resource/DefaultClientResources$$Lambda$674
+instanceKlass io/lettuce/core/resource/Delay
+instanceKlass io/netty/util/internal/ObjectUtil
+instanceKlass io/netty/util/internal/logging/AbstractInternalLogger
+instanceKlass io/netty/util/internal/logging/InternalLogger
+instanceKlass io/netty/util/internal/logging/InternalLoggerFactory
+instanceKlass java/time/Duration$1
+instanceKlass org/springframework/boot/convert/DurationStyle$Unit$$Lambda$673
+instanceKlass org/springframework/boot/convert/DurationStyle$Unit$$Lambda$672
+instanceKlass org/springframework/boot/convert/DurationStyle$Unit$$Lambda$671
+instanceKlass org/springframework/boot/convert/DurationStyle$Unit$$Lambda$670
+instanceKlass org/springframework/boot/convert/DurationStyle$Unit$$Lambda$669
+instanceKlass org/springframework/boot/convert/DurationStyle$Unit$$Lambda$668
+instanceKlass org/springframework/boot/convert/DurationStyle$Unit$$Lambda$667
+instanceKlass org/springframework/boot/convert/DurationUnit
+instanceKlass org/springframework/boot/convert/DurationFormat
+instanceKlass org/springframework/boot/autoconfigure/data/redis/RedisProperties$Lettuce$Cluster$Refresh
+instanceKlass org/springframework/boot/autoconfigure/data/redis/RedisProperties$Lettuce$Cluster
+instanceKlass org/springframework/boot/availability/AvailabilityState
+instanceKlass org/springframework/boot/admin/SpringApplicationAdminMXBeanRegistrar$SpringApplicationAdmin
+instanceKlass org/springframework/boot/admin/SpringApplicationAdminMXBean
+instanceKlass org/springframework/jmx/support/NotificationListenerHolder
+instanceKlass org/springframework/jmx/export/MBeanExporter$AutodetectCallback
+instanceKlass org/springframework/jmx/export/MBeanExporterListener
+instanceKlass javax/management/modelmbean/ModelMBeanInfo
+instanceKlass javax/management/modelmbean/ModelMBean
+instanceKlass javax/management/PersistentMBean
+instanceKlass javax/management/Attribute
+instanceKlass javax/management/NotificationFilter
+instanceKlass javax/management/NotificationListener
+instanceKlass org/springframework/jmx/support/JmxUtils
+instanceKlass org/springframework/jmx/support/MBeanServerFactoryBean
+instanceKlass org/springframework/context/annotation/MBeanExportConfiguration
+instanceKlass org/springframework/core/Constants$$Lambda$666
+instanceKlass org/springframework/jmx/export/assembler/AutodetectCapableMBeanInfoAssembler
+instanceKlass org/springframework/jmx/export/naming/KeyNamingStrategy
+instanceKlass org/springframework/jmx/export/assembler/AbstractMBeanInfoAssembler
+instanceKlass org/springframework/jmx/export/assembler/MBeanInfoAssembler
+instanceKlass org/springframework/jmx/export/annotation/AnnotationJmxAttributeSource
+instanceKlass org/springframework/jmx/export/metadata/JmxAttributeSource
+instanceKlass org/springframework/boot/autoconfigure/jdbc/metadata/DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration$$Lambda$665
+instanceKlass org/springframework/web/servlet/view/ContentNegotiatingViewResolver$1
+instanceKlass org/springframework/web/servlet/view/AbstractCachingViewResolver$$Lambda$664
+instanceKlass org/springframework/web/servlet/view/AbstractCachingViewResolver$CacheFilter
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/web/servlet/view/AbstractCachingViewResolver$1
+instanceKlass org/springframework/web/servlet/view/DefaultRequestToViewNameTranslator
+instanceKlass org/springframework/web/servlet/view/ViewResolverComposite
+instanceKlass org/springframework/web/servlet/handler/HandlerExceptionResolverComposite
+instanceKlass org/springframework/web/util/UriComponentsBuilder
+instanceKlass org/springframework/web/util/UriBuilder
+instanceKlass org/springframework/web/servlet/function/ServerResponse
+instanceKlass org/springframework/web/servlet/handler/SimpleUrlHandlerMapping$$Lambda$663
+instanceKlass org/springframework/web/servlet/resource/ResourceHttpRequestHandler$$Lambda$662
+instanceKlass org/springframework/web/servlet/resource/DefaultResourceTransformerChain
+instanceKlass org/springframework/web/servlet/resource/ResourceTransformerChain
+instanceKlass org/springframework/web/servlet/resource/DefaultResourceResolverChain
+instanceKlass org/springframework/web/servlet/resource/ResourceResolverChain
+instanceKlass org/springframework/web/servlet/resource/AbstractResourceResolver
+instanceKlass org/springframework/web/servlet/resource/ResourceResolver
+instanceKlass org/springframework/web/HttpRequestHandler
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$EnableWebMvcConfiguration$$Lambda$661
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Cache$Cachecontrol$$Lambda$660
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Cache$Cachecontrol$$Lambda$659
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Cache$Cachecontrol$$Lambda$658
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Cache$Cachecontrol$$Lambda$657
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Cache$Cachecontrol$$Lambda$656
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Cache$Cachecontrol$$Lambda$655
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Cache$Cachecontrol$$Lambda$654
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Cache$Cachecontrol$$Lambda$653
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Cache$Cachecontrol$$Lambda$652
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Cache$Cachecontrol$$Lambda$651
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Cache$Cachecontrol$$Lambda$650
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Cache$Cachecontrol$$Lambda$649
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Cache$Cachecontrol$$Lambda$648
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Cache$Cachecontrol$$Lambda$647
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Cache$Cachecontrol$$Lambda$646
+instanceKlass org/springframework/boot/context/properties/PropertyMapper$Source$$Lambda$645
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Cache$Cachecontrol$$Lambda$644
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$EnableWebMvcConfiguration$$Lambda$643
+instanceKlass java/util/stream/ReduceOps$2ReducingSink
+instanceKlass org/springframework/web/servlet/function/support/RouterFunctionMapping$$Lambda$642
+instanceKlass org/springframework/web/servlet/function/RouterFunction
+instanceKlass org/springframework/web/servlet/function/ServerRequest
+instanceKlass org/springframework/web/servlet/support/AbstractFlashMapManager
+instanceKlass org/springframework/web/servlet/theme/AbstractThemeResolver
+instanceKlass org/springframework/web/servlet/i18n/AcceptHeaderLocaleResolver
+instanceKlass org/springframework/http/server/RequestPath
+instanceKlass java/util/stream/Collectors$$Lambda$641
+instanceKlass java/util/stream/Collectors$$Lambda$640
+instanceKlass org/springframework/web/servlet/handler/AbstractHandlerMethodMapping$$Lambda$639
+instanceKlass org/springframework/web/servlet/handler/AbstractHandlerMethodMapping$$Lambda$638
+instanceKlass org/springframework/web/servlet/handler/AbstractHandlerMethodMapping$MappingRegistration
+instanceKlass org/springframework/web/servlet/handler/AbstractHandlerMethodMapping$$Lambda$637
+instanceKlass org/springframework/util/LinkedCaseInsensitiveMap$EntryIterator
+instanceKlass org/springframework/web/servlet/mvc/method/RequestMappingInfo$DefaultBuilder
+instanceKlass org/springframework/web/servlet/mvc/method/RequestMappingInfo$Builder
+instanceKlass org/springframework/http/MediaType$$Lambda$636
+instanceKlass org/springframework/util/MimeTypeUtils$$Lambda$635
+instanceKlass org/springframework/util/ConcurrentLruCache
+instanceKlass org/springframework/util/MimeTypeUtils
+instanceKlass org/springframework/web/servlet/mvc/condition/AbstractMediaTypeExpression
+instanceKlass org/springframework/web/servlet/mvc/condition/MediaTypeExpression
+instanceKlass java/util/Comparators$NullComparator
+instanceKlass org/springframework/web/util/pattern/PathPattern$$Lambda$634
+instanceKlass org/springframework/web/util/pattern/PathPattern$$Lambda$633
+instanceKlass java/util/Comparator$$Lambda$632
+instanceKlass org/springframework/web/util/pattern/PathPattern$$Lambda$631
+instanceKlass org/springframework/web/util/pattern/PathPattern$$Lambda$630
+instanceKlass org/springframework/http/server/DefaultPathContainer$DefaultSeparator
+instanceKlass org/springframework/http/server/PathContainer$Separator
+instanceKlass org/springframework/http/server/PathContainer$Element
+instanceKlass org/springframework/http/server/DefaultPathContainer
+instanceKlass org/springframework/web/util/pattern/InternalPathPatternParser
+instanceKlass org/springframework/http/server/PathContainer$Options
+instanceKlass org/springframework/web/servlet/handler/AbstractHandlerMethodMapping$$Lambda$629
+instanceKlass org/springframework/web/servlet/handler/MappedInterceptor
+instanceKlass org/springframework/http/server/PathContainer
+instanceKlass org/springframework/web/util/pattern/PathPattern
+instanceKlass org/springframework/web/servlet/mvc/condition/AbstractRequestCondition
+instanceKlass org/springframework/web/servlet/mvc/method/RequestMappingInfo
+instanceKlass org/springframework/web/servlet/mvc/condition/RequestCondition
+instanceKlass org/springframework/web/servlet/handler/RequestMatchResult
+instanceKlass org/springframework/web/servlet/config/annotation/InterceptorRegistry$$Lambda$628
+instanceKlass org/springframework/web/servlet/config/annotation/InterceptorRegistry$$Lambda$627
+instanceKlass org/springframework/web/servlet/resource/ResourceUrlProviderExposingInterceptor
+instanceKlass org/springframework/web/servlet/config/annotation/InterceptorRegistration
+instanceKlass org/springframework/web/servlet/handler/ConversionServiceExposingInterceptor
+instanceKlass org/springframework/web/servlet/HandlerInterceptor
+instanceKlass org/springframework/web/servlet/config/annotation/InterceptorRegistry$$Lambda$626
+instanceKlass org/springframework/web/servlet/mvc/method/RequestMappingInfo$BuilderConfiguration
+instanceKlass org/springframework/web/servlet/mvc/method/RequestMappingInfoHandlerMethodMappingNamingStrategy
+instanceKlass org/springframework/web/servlet/handler/HandlerMethodMappingNamingStrategy
+instanceKlass org/springframework/web/servlet/handler/AbstractHandlerMethodMapping$MappingRegistry
+instanceKlass org/springframework/web/cors/DefaultCorsProcessor
+instanceKlass org/springframework/web/cors/CorsProcessor
+instanceKlass org/springframework/web/servlet/mvc/method/RequestMappingInfoHandlerMapping$HttpOptionsHandler
+instanceKlass org/springframework/web/cors/CorsConfiguration$OriginPattern
+instanceKlass org/springframework/web/cors/CorsConfiguration
+instanceKlass org/springframework/web/bind/annotation/ResponseStatus
+instanceKlass org/springframework/web/servlet/handler/AbstractHandlerMethodMapping$EmptyHandler
+instanceKlass java/util/stream/ReduceOps$8ReducingSink
+instanceKlass java/util/stream/Sink$OfLong
+instanceKlass java/util/function/LongConsumer
+instanceKlass java/util/stream/LongPipeline$$Lambda$625
+instanceKlass java/util/function/LongBinaryOperator
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/util/stream/LongStream
+instanceKlass java/util/stream/ReferencePipeline$$Lambda$624
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$$Lambda$623
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$$Lambda$622
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$$Lambda$621
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/ViewNameMethodReturnValueHandler
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/AsyncTaskMethodReturnValueHandler
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/DeferredResultMethodReturnValueHandler
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/CallableMethodReturnValueHandler
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/HttpHeadersReturnValueHandler
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/StreamingResponseBodyReturnValueHandler
+instanceKlass org/springframework/core/task/SyncTaskExecutor
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/ReactiveTypeHandler
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/ResponseBodyEmitterReturnValueHandler
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/ViewMethodReturnValueHandler
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/ModelAndViewMethodReturnValueHandler
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/PrincipalMethodArgumentResolver
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/UriComponentsBuilderMethodArgumentResolver
+instanceKlass org/springframework/web/method/annotation/SessionStatusMethodArgumentResolver
+instanceKlass org/springframework/web/method/annotation/ErrorsMethodArgumentResolver
+instanceKlass org/springframework/web/method/annotation/MapMethodProcessor
+instanceKlass org/springframework/web/method/annotation/ModelMethodProcessor
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/RedirectAttributesMethodArgumentResolver
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/ServletResponseMethodArgumentResolver
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/ServletRequestMethodArgumentResolver
+instanceKlass javax/servlet/http/Part
+instanceKlass javax/servlet/http/HttpUpgradeHandler
+instanceKlass javax/servlet/http/PushBuilder
+instanceKlass javax/servlet/http/Cookie
+instanceKlass javax/servlet/http/HttpServletMapping
+instanceKlass org/springframework/web/method/annotation/RequestHeaderMapMethodArgumentResolver
+instanceKlass org/springframework/web/accept/ContentNegotiationManager$$Lambda$620
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/RequestResponseBodyAdviceChain
+instanceKlass org/springframework/core/io/support/ResourceRegion
+instanceKlass org/springframework/core/ParameterizedTypeReference
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/AbstractMessageConverterMethodArgumentResolver
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/MatrixVariableMapMethodArgumentResolver
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/PathVariableMapMethodArgumentResolver
+instanceKlass org/springframework/web/method/annotation/RequestParamMapMethodArgumentResolver
+instanceKlass org/springframework/web/method/annotation/AbstractNamedValueMethodArgumentResolver
+instanceKlass org/springframework/web/bind/annotation/ControllerAdvice
+instanceKlass org/springframework/web/method/support/HandlerMethodReturnValueHandlerComposite
+instanceKlass org/springframework/web/method/support/HandlerMethodArgumentResolverComposite
+instanceKlass org/springframework/http/CacheControl
+instanceKlass org/springframework/web/bind/support/DefaultDataBinderFactory
+instanceKlass org/springframework/web/method/annotation/SessionAttributesHandler
+instanceKlass org/springframework/web/method/ControllerAdviceBean
+instanceKlass org/springframework/web/method/HandlerMethod
+instanceKlass org/springframework/web/method/annotation/ModelFactory
+instanceKlass org/springframework/util/concurrent/ListenableFuture
+instanceKlass org/springframework/boot/task/TaskExecutorBuilder$$Lambda$619
+instanceKlass org/springframework/boot/task/TaskExecutorBuilder$$Lambda$618
+instanceKlass org/springframework/boot/task/TaskExecutorBuilder$$Lambda$617
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/task/TaskExecutorBuilder$$Lambda$616
+instanceKlass org/springframework/boot/task/TaskExecutorBuilder$$Lambda$615
+instanceKlass org/springframework/boot/task/TaskExecutorBuilder$$Lambda$614
+instanceKlass org/springframework/boot/task/TaskExecutorBuilder$$Lambda$613
+instanceKlass org/springframework/boot/task/TaskExecutorBuilder$$Lambda$612
+instanceKlass org/springframework/boot/task/TaskExecutorBuilder$$Lambda$611
+instanceKlass org/springframework/boot/task/TaskExecutorBuilder$$Lambda$610
+instanceKlass org/springframework/boot/task/TaskExecutorBuilder$$Lambda$609
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/AbstractMappingJacksonResponseBodyAdvice
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/ResponseBodyAdvice
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/RequestBodyAdviceAdapter
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/RequestBodyAdvice
+instanceKlass org/springframework/data/web/PageableDefault
+instanceKlass org/springframework/data/web/config/SpringDataWebConfiguration$$Lambda$608
+instanceKlass org/springframework/data/domain/AbstractPageRequest
+instanceKlass org/springframework/data/domain/Pageable
+instanceKlass org/springframework/web/bind/support/WebDataBinderFactory
+instanceKlass org/springframework/web/method/support/ModelAndViewContainer
+instanceKlass org/springframework/data/web/config/SpringDataWebConfiguration$$Lambda$607
+instanceKlass org/springframework/data/web/SortDefault
+instanceKlass org/springframework/data/web/SortDefault$SortDefaults
+instanceKlass org/springframework/data/domain/Sort$Order
+instanceKlass org/springframework/data/domain/Sort
+instanceKlass com/fasterxml/jackson/databind/deser/DeserializationProblemHandler
+instanceKlass com/fasterxml/jackson/databind/MappingIterator
+instanceKlass com/fasterxml/jackson/core/type/TypeReference
+instanceKlass com/fasterxml/jackson/databind/jsonschema/JsonSchema
+instanceKlass com/fasterxml/jackson/annotation/JsonAutoDetect$Value
+instanceKlass com/fasterxml/jackson/databind/jsonFormatVisitors/JsonFormatVisitorWrapper
+instanceKlass com/fasterxml/jackson/databind/jsonFormatVisitors/JsonFormatVisitorWithSerializerProvider
+instanceKlass com/fasterxml/jackson/core/io/CharacterEscapes
+instanceKlass com/fasterxml/jackson/databind/InjectableValues
+instanceKlass com/fasterxml/jackson/core/FormatSchema
+instanceKlass com/fasterxml/jackson/databind/ObjectWriter
+instanceKlass com/fasterxml/jackson/core/JsonParser
+instanceKlass com/fasterxml/jackson/module/paramnames/ParameterExtractor
+instanceKlass org/springframework/http/converter/json/Jackson2ObjectMapperBuilder$$Lambda$606
+instanceKlass java/lang/SafeVarargs
+instanceKlass com/fasterxml/jackson/databind/ser/FilterProvider
+instanceKlass com/fasterxml/jackson/databind/cfg/HandlerInstantiator
+instanceKlass org/springframework/data/geo/GeoModule$PolygonMixin
+instanceKlass org/springframework/data/geo/Polygon
+instanceKlass org/springframework/data/geo/GeoModule$CircleMixin
+instanceKlass org/springframework/data/geo/Circle
+instanceKlass org/springframework/data/geo/GeoModule$BoxMixin
+instanceKlass org/springframework/data/geo/Box
+instanceKlass org/springframework/data/geo/Shape
+instanceKlass org/springframework/data/geo/GeoModule$PointMixin
+instanceKlass org/springframework/data/geo/GeoModule$DistanceMixin
+instanceKlass org/springframework/beans/factory/support/DefaultListableBeanFactory$$Lambda$605
+instanceKlass org/springframework/boot/jackson/JsonComponent
+instanceKlass com/fasterxml/jackson/databind/deser/ValueInstantiator
+instanceKlass com/fasterxml/jackson/databind/PropertyNamingStrategy
+instanceKlass com/fasterxml/jackson/databind/jsontype/NamedType
+instanceKlass com/fasterxml/jackson/module/paramnames/PackageVersion
+instanceKlass java/util/EnumMap$EnumMapIterator
+instanceKlass org/springframework/boot/autoconfigure/jackson/JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration$StandardJackson2ObjectMapperBuilderCustomizer$$Lambda$604
+instanceKlass org/springframework/boot/autoconfigure/jackson/JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration$StandardJackson2ObjectMapperBuilderCustomizer$$Lambda$603
+instanceKlass org/springframework/http/HttpOutputMessage
+instanceKlass org/springframework/http/HttpInputMessage
+instanceKlass org/springframework/http/HttpHeaders
+instanceKlass org/springframework/boot/context/properties/bind/Binder$$Lambda$602
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$$Lambda$601
+instanceKlass org/springframework/web/bind/support/DefaultSessionAttributeStore
+instanceKlass org/springframework/web/bind/support/SessionAttributeStore
+instanceKlass org/springframework/web/context/request/async/DeferredResultProcessingInterceptor
+instanceKlass org/springframework/web/context/request/async/CallableProcessingInterceptor
+instanceKlass org/springframework/util/ConcurrencyThrottleSupport
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerAdapter$$Lambda$600
+instanceKlass org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerAdapter$$Lambda$599
+instanceKlass org/springframework/web/servlet/config/annotation/WebMvcConfigurationSupport$NoOpValidator
+instanceKlass org/springframework/data/repository/support/DomainClassConverter$$Lambda$598
+instanceKlass org/springframework/data/util/Lazy$$Lambda$597
+instanceKlass org/springframework/data/repository/support/Repositories
+instanceKlass org/springframework/data/repository/support/DomainClassConverter
+instanceKlass org/springframework/data/geo/Point
+instanceKlass org/springframework/data/geo/Distance
+instanceKlass org/springframework/data/geo/Metric
+instanceKlass org/springframework/boot/autoconfigure/web/format/DateTimeFormatters
+instanceKlass org/springframework/web/context/request/NativeWebRequest
+instanceKlass org/springframework/web/accept/MappingMediaTypeFileExtensionResolver$$Lambda$596
+instanceKlass org/springframework/web/accept/MappingMediaTypeFileExtensionResolver$$Lambda$595
+instanceKlass org/springframework/web/accept/MappingMediaTypeFileExtensionResolver
+instanceKlass org/springframework/web/accept/HeaderContentNegotiationStrategy
+instanceKlass org/springframework/web/accept/ContentNegotiationManagerFactoryBean$$Lambda$594
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$$Lambda$593
+instanceKlass org/springframework/web/accept/ContentNegotiationManagerFactoryBean
+instanceKlass org/springframework/core/annotation/AnnotationUtils$$Lambda$592
+instanceKlass org/springframework/core/annotation/TypeMappedAnnotation$$Lambda$591
+instanceKlass org/springframework/boot/autoconfigure/data/web/SpringDataWebAutoConfiguration$$Lambda$590
+instanceKlass org/springframework/boot/autoconfigure/data/web/SpringDataWebAutoConfiguration$$Lambda$589
+instanceKlass org/springframework/data/web/config/SpringDataWebConfiguration$$Lambda$588
+instanceKlass org/springframework/data/web/config/SpringDataWebConfiguration$$Lambda$587
+instanceKlass org/springframework/web/servlet/config/annotation/WebMvcConfigurerComposite
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/WebMvcRegistrations
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$ResourceChainCustomizerConfiguration
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$ResourceChainResourceHandlerRegistrationCustomizer
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$ResourceHandlerRegistrationCustomizer
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$OptionalPathExtensionContentNegotiationStrategy
+instanceKlass org/springframework/web/bind/annotation/ExceptionHandler
+instanceKlass org/springframework/http/HttpEntity
+instanceKlass org/springframework/boot/web/error/ErrorAttributeOptions
+instanceKlass org/springframework/validation/BindingResult
+instanceKlass org/springframework/validation/Errors
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Cache$Cachecontrol
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Chain$Strategy$Content
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Chain$Strategy$Fixed
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Chain$Strategy
+instanceKlass org/springframework/context/support/MessageSourceAccessor
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/error/ErrorMvcAutoConfiguration$StaticView
+instanceKlass org/springframework/boot/task/TaskExecutorBuilder$$Lambda$586
+instanceKlass org/springframework/boot/autoconfigure/task/TaskExecutionAutoConfiguration$$Lambda$585
+instanceKlass org/springframework/core/task/TaskDecorator
+instanceKlass org/springframework/boot/task/TaskExecutorCustomizer
+instanceKlass java/lang/invoke/LambdaForm$Hidden
+instanceKlass org/springframework/boot/validation/beanvalidation/MethodValidationExcludeFilter$$Lambda$584
+instanceKlass com/fasterxml/jackson/databind/jsontype/impl/StdTypeResolverBuilder
+instanceKlass com/fasterxml/jackson/databind/jsontype/TypeResolverBuilder
+instanceKlass org/springframework/cache/support/NullValue
+instanceKlass org/springframework/data/redis/serializer/GenericJackson2JsonRedisSerializer
+instanceKlass org/springframework/core/serializer/DefaultDeserializer
+instanceKlass org/springframework/core/serializer/Deserializer
+instanceKlass org/springframework/core/serializer/support/DeserializingConverter
+instanceKlass org/springframework/core/serializer/DefaultSerializer
+instanceKlass org/springframework/core/serializer/Serializer
+instanceKlass org/springframework/core/serializer/support/SerializingConverter
+instanceKlass org/springframework/data/redis/serializer/JdkSerializationRedisSerializer
+instanceKlass org/springframework/data/redis/serializer/DefaultRedisElementWriter
+instanceKlass org/springframework/data/redis/serializer/RedisElementWriter
+instanceKlass org/springframework/data/redis/serializer/DefaultRedisElementReader
+instanceKlass org/springframework/data/redis/serializer/RedisElementReader
+instanceKlass org/springframework/data/redis/serializer/DefaultSerializationPair
+instanceKlass org/springframework/data/redis/serializer/RedisSerializerToSerializationPairAdapter
+instanceKlass org/springframework/data/redis/serializer/RedisSerializationContext$SerializationPair
+instanceKlass org/springframework/data/redis/serializer/StringRedisSerializer
+instanceKlass org/springframework/data/redis/serializer/RedisSerializer
+instanceKlass org/springframework/data/redis/cache/CacheKeyPrefix$$Lambda$583
+instanceKlass org/springframework/data/redis/cache/CacheKeyPrefix
+instanceKlass org/springframework/data/redis/cache/RedisCacheConfiguration$$Lambda$582
+instanceKlass org/springframework/cache/interceptor/SimpleKey
+instanceKlass org/springframework/data/redis/cache/RedisCacheConfiguration$$Lambda$581
+instanceKlass org/springframework/scheduling/annotation/ScheduledAnnotationBeanPostProcessor$$Lambda$580
+instanceKlass org/springframework/scheduling/config/ScheduledTask
+instanceKlass org/springframework/scheduling/support/CronField
+instanceKlass org/springframework/scheduling/support/CronExpression
+instanceKlass java/time/zone/ZoneOffsetTransition
+instanceKlass java/time/zone/ZoneOffsetTransitionRule
+instanceKlass java/time/zone/ZoneRules
+instanceKlass java/time/zone/Ser
+instanceKlass java/time/zone/ZoneRulesProvider$1
+instanceKlass java/time/zone/ZoneRulesProvider
+instanceKlass org/springframework/scheduling/support/CronTrigger
+instanceKlass org/springframework/scheduling/Trigger
+instanceKlass org/springframework/scheduling/config/Task
+instanceKlass org/springframework/scheduling/support/ScheduledMethodRunnable
+instanceKlass org/springframework/scheduling/annotation/ScheduledAnnotationBeanPostProcessor$$Lambda$579
+instanceKlass org/springframework/scheduling/annotation/ScheduledAnnotationBeanPostProcessor$$Lambda$578
+instanceKlass org/springframework/aop/Advisor$1
+instanceKlass org/springframework/aop/framework/JdkDynamicAopProxy
+instanceKlass org/springframework/aop/framework/AopProxy
+instanceKlass org/springframework/core/SmartClassLoader
+instanceKlass org/springframework/aop/framework/DefaultAopProxyFactory
+instanceKlass org/springframework/aop/framework/AopProxyFactory
+instanceKlass org/springframework/aop/framework/DefaultAdvisorChainFactory
+instanceKlass org/springframework/aop/framework/AdvisorChainFactory
+instanceKlass org/springframework/aop/target/EmptyTargetSource
+instanceKlass org/springframework/aop/target/SingletonTargetSource
+instanceKlass org/springframework/cache/annotation/SpringCacheAnnotationParser$$Lambda$577
+instanceKlass org/springframework/cache/annotation/SpringCacheAnnotationParser$$Lambda$576
+instanceKlass org/springframework/cache/annotation/SpringCacheAnnotationParser$$Lambda$575
+instanceKlass org/springframework/cache/annotation/SpringCacheAnnotationParser$$Lambda$574
+instanceKlass org/springframework/core/annotation/AnnotatedElementUtils$$Lambda$573
+instanceKlass org/springframework/cache/interceptor/CacheOperation$Builder
+instanceKlass org/springframework/cache/annotation/SpringCacheAnnotationParser$$Lambda$572
+instanceKlass org/springframework/cache/annotation/SpringCacheAnnotationParser$$Lambda$571
+instanceKlass org/springframework/cache/annotation/SpringCacheAnnotationParser$$Lambda$570
+instanceKlass org/springframework/cache/annotation/SpringCacheAnnotationParser$$Lambda$569
+instanceKlass org/apache/ibatis/binding/MapperProxy
+instanceKlass org/apache/ibatis/cursor/Cursor
+instanceKlass org/mybatis/spring/SqlSessionTemplate$SqlSessionInterceptor
+instanceKlass org/mybatis/spring/MyBatisExceptionTranslator$$Lambda$568
+instanceKlass org/springframework/jdbc/support/SQLExceptionTranslator
+instanceKlass org/mybatis/spring/MyBatisExceptionTranslator
+instanceKlass org/springframework/asm/Handle
+instanceKlass org/mybatis/spring/boot/autoconfigure/ConfigurationCustomizer
+instanceKlass org/apache/ibatis/session/defaults/DefaultSqlSessionFactory
+instanceKlass org/apache/ibatis/scripting/xmltags/DynamicSqlSource
+instanceKlass org/apache/ibatis/scripting/xmltags/ExpressionEvaluator
+instanceKlass org/apache/ibatis/scripting/xmltags/ForEachSqlNode
+instanceKlass org/mybatis/spring/SqlSessionFactoryBean$$Lambda$567
+instanceKlass org/apache/ibatis/builder/annotation/MapperAnnotationBuilder$$Lambda$566
+instanceKlass org/apache/ibatis/annotations/DeleteProvider$List
+instanceKlass org/apache/ibatis/annotations/UpdateProvider$List
+instanceKlass org/apache/ibatis/annotations/InsertProvider$List
+instanceKlass org/apache/ibatis/annotations/Insert$List
+instanceKlass org/apache/ibatis/annotations/Delete$List
+instanceKlass org/apache/ibatis/annotations/Update$List
+instanceKlass org/apache/ibatis/annotations/Lang
+instanceKlass org/apache/ibatis/annotations/SelectProvider$List
+instanceKlass org/apache/ibatis/annotations/Select$List
+instanceKlass sun/reflect/annotation/AnnotationSupport
+instanceKlass java/util/stream/Collectors$$Lambda$565
+instanceKlass java/util/stream/Collectors$$Lambda$564
+instanceKlass java/util/stream/Collectors$$Lambda$563
+instanceKlass org/apache/ibatis/builder/annotation/MapperAnnotationBuilder$$Lambda$562
+instanceKlass org/apache/ibatis/builder/annotation/MapperAnnotationBuilder$$Lambda$561
+instanceKlass org/apache/ibatis/builder/annotation/MapperAnnotationBuilder$$Lambda$560
+instanceKlass org/apache/ibatis/builder/annotation/MapperAnnotationBuilder$$Lambda$559
+instanceKlass org/apache/ibatis/builder/annotation/MapperAnnotationBuilder$AnnotationWrapper
+instanceKlass org/apache/ibatis/builder/annotation/MapperAnnotationBuilder$$Lambda$558
+instanceKlass org/apache/ibatis/annotations/CacheNamespaceRef
+instanceKlass org/apache/ibatis/annotations/CacheNamespace
+instanceKlass org/apache/ibatis/annotations/DeleteProvider
+instanceKlass org/apache/ibatis/annotations/InsertProvider
+instanceKlass org/apache/ibatis/annotations/UpdateProvider
+instanceKlass org/apache/ibatis/annotations/SelectProvider
+instanceKlass org/apache/ibatis/annotations/Delete
+instanceKlass org/apache/ibatis/annotations/Insert
+instanceKlass org/apache/ibatis/annotations/Update
+instanceKlass org/apache/ibatis/annotations/Select
+instanceKlass org/apache/ibatis/builder/annotation/MapperAnnotationBuilder
+instanceKlass org/apache/ibatis/binding/MapperProxyFactory
+instanceKlass org/apache/ibatis/executor/keygen/Jdbc3KeyGenerator
+instanceKlass org/apache/ibatis/mapping/ResultMap$Builder
+instanceKlass org/apache/ibatis/mapping/ParameterMap$Builder
+instanceKlass org/apache/ibatis/mapping/MappedStatement$Builder
+instanceKlass org/apache/ibatis/builder/StaticSqlSource
+instanceKlass org/apache/ibatis/mapping/ParameterMapping
+instanceKlass org/apache/ibatis/mapping/ParameterMapping$Builder
+instanceKlass org/apache/ibatis/reflection/wrapper/BaseWrapper
+instanceKlass org/apache/ibatis/reflection/wrapper/ObjectWrapper
+instanceKlass org/apache/ibatis/scripting/xmltags/MixedSqlNode$$Lambda$557
+instanceKlass java/util/StringJoiner
+instanceKlass org/apache/ibatis/ognl/OgnlRuntime$ArgsCompatbilityReport
+instanceKlass org/apache/ibatis/ognl/ObjectMethodAccessor
+instanceKlass org/apache/ibatis/ognl/MethodAccessor
+instanceKlass org/apache/ibatis/ognl/ObjectNullHandler
+instanceKlass org/apache/ibatis/ognl/NullHandler
+instanceKlass org/apache/ibatis/ognl/NumberElementsAccessor
+instanceKlass org/apache/ibatis/ognl/NumericTypes
+instanceKlass org/apache/ibatis/ognl/EnumerationElementsAccessor
+instanceKlass org/apache/ibatis/ognl/IteratorElementsAccessor
+instanceKlass org/apache/ibatis/ognl/MapElementsAccessor
+instanceKlass org/apache/ibatis/ognl/CollectionElementsAccessor
+instanceKlass org/apache/ibatis/ognl/ObjectElementsAccessor
+instanceKlass org/apache/ibatis/ognl/ArrayElementsAccessor
+instanceKlass org/apache/ibatis/ognl/ElementsAccessor
+instanceKlass org/apache/ibatis/ognl/MapPropertyAccessor
+instanceKlass org/apache/ibatis/ognl/ObjectPropertyAccessor
+instanceKlass java/math/MathContext
+instanceKlass org/apache/ibatis/ognl/enhance/ExpressionCompiler
+instanceKlass org/apache/ibatis/ognl/enhance/OgnlExpressionCompiler
+instanceKlass org/apache/ibatis/javassist/ClassPool
+instanceKlass org/apache/ibatis/ognl/OgnlRuntime$ClassPropertyMethodCache
+instanceKlass org/apache/ibatis/ognl/ObjectArrayPool
+instanceKlass org/apache/ibatis/ognl/EvaluationPool
+instanceKlass org/apache/ibatis/ognl/internal/Entry
+instanceKlass org/apache/ibatis/ognl/internal/ClassCacheImpl
+instanceKlass org/apache/ibatis/ognl/internal/ClassCache
+instanceKlass java/io/Console
+instanceKlass org/apache/ibatis/ognl/AccessibleObjectHandlerPreJDK9
+instanceKlass org/apache/ibatis/ognl/AccessibleObjectHandler
+instanceKlass org/apache/ibatis/ognl/OgnlRuntime
+instanceKlass org/apache/ibatis/scripting/xmltags/DynamicContext$ContextAccessor
+instanceKlass org/apache/ibatis/ognl/PropertyAccessor
+instanceKlass org/apache/ibatis/scripting/xmltags/DynamicContext
+instanceKlass org/apache/ibatis/scripting/defaults/RawSqlSource
+instanceKlass org/apache/ibatis/mapping/SqlSource
+instanceKlass org/apache/ibatis/scripting/xmltags/MixedSqlNode
+instanceKlass org/apache/ibatis/scripting/xmltags/StaticTextSqlNode
+instanceKlass org/apache/ibatis/scripting/xmltags/TextSqlNode$DynamicCheckerTokenParser
+instanceKlass org/apache/ibatis/scripting/xmltags/TextSqlNode
+instanceKlass org/apache/ibatis/scripting/xmltags/SqlNode
+instanceKlass org/apache/ibatis/scripting/xmltags/XMLScriptBuilder$BindHandler
+instanceKlass org/apache/ibatis/scripting/xmltags/XMLScriptBuilder$OtherwiseHandler
+instanceKlass org/apache/ibatis/scripting/xmltags/XMLScriptBuilder$ChooseHandler
+instanceKlass org/apache/ibatis/scripting/xmltags/XMLScriptBuilder$IfHandler
+instanceKlass org/apache/ibatis/scripting/xmltags/XMLScriptBuilder$ForEachHandler
+instanceKlass org/apache/ibatis/scripting/xmltags/XMLScriptBuilder$SetHandler
+instanceKlass org/apache/ibatis/scripting/xmltags/XMLScriptBuilder$WhereHandler
+instanceKlass org/apache/ibatis/scripting/xmltags/XMLScriptBuilder$TrimHandler
+instanceKlass org/apache/ibatis/scripting/xmltags/XMLScriptBuilder$NodeHandler
+instanceKlass org/apache/ibatis/executor/keygen/NoKeyGenerator
+instanceKlass org/apache/ibatis/builder/xml/XMLIncludeTransformer$$Lambda$556
+instanceKlass org/apache/ibatis/builder/xml/XMLIncludeTransformer
+instanceKlass com/sun/org/apache/xpath/internal/XPathVisitor
+instanceKlass com/sun/org/apache/xpath/internal/axes/NodeSequence$IteratorCache
+instanceKlass com/sun/org/apache/xml/internal/dtm/ref/DTMNodeListBase
+instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/models/MixedContentModel
+instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/DTDGrammar$ChildrenList
+instanceKlass org/mybatis/spring/transaction/SpringManagedTransactionFactory
+instanceKlass org/mybatis/spring/SqlSessionFactoryBean$$Lambda$555
+instanceKlass org/apache/ibatis/reflection/property/PropertyTokenizer
+instanceKlass org/apache/ibatis/reflection/invoker/GetFieldInvoker
+instanceKlass org/apache/ibatis/reflection/invoker/SetFieldInvoker
+instanceKlass org/apache/ibatis/reflection/Reflector$$Lambda$554
+instanceKlass org/apache/ibatis/reflection/Reflector$$Lambda$553
+instanceKlass org/apache/ibatis/io/VFS
+instanceKlass org/apache/ibatis/reflection/TypeParameterResolver$WildcardTypeImpl
+instanceKlass org/apache/ibatis/reflection/TypeParameterResolver$ParameterizedTypeImpl
+instanceKlass org/apache/ibatis/reflection/TypeParameterResolver
+instanceKlass org/apache/ibatis/reflection/invoker/MethodInvoker
+instanceKlass org/apache/ibatis/reflection/invoker/Invoker
+instanceKlass org/apache/ibatis/reflection/Reflector$$Lambda$552
+instanceKlass org/apache/ibatis/reflection/property/PropertyNamer
+instanceKlass org/apache/ibatis/reflection/Reflector$$Lambda$551
+instanceKlass org/apache/ibatis/reflection/Reflector$$Lambda$550
+instanceKlass org/apache/ibatis/builder/CacheRefResolver
+instanceKlass org/apache/ibatis/builder/annotation/MethodResolver
+instanceKlass org/apache/ibatis/builder/ResultMapResolver
+instanceKlass org/apache/ibatis/executor/resultset/ResultSetHandler
+instanceKlass org/apache/ibatis/executor/parameter/ParameterHandler
+instanceKlass org/apache/ibatis/executor/statement/StatementHandler
+instanceKlass org/apache/ibatis/mapping/BoundSql
+instanceKlass org/apache/ibatis/session/ResultHandler
+instanceKlass org/apache/ibatis/session/RowBounds
+instanceKlass org/apache/ibatis/reflection/MetaObject
+instanceKlass org/apache/ibatis/executor/Executor
+instanceKlass org/apache/ibatis/transaction/Transaction
+instanceKlass org/apache/ibatis/mapping/ResultMap
+instanceKlass org/apache/ibatis/mapping/ParameterMap
+instanceKlass org/apache/ibatis/executor/keygen/KeyGenerator
+instanceKlass org/apache/ibatis/reflection/Reflector$$Lambda$549
+instanceKlass org/apache/ibatis/reflection/Reflector$$Lambda$548
+instanceKlass org/apache/ibatis/mapping/Environment
+instanceKlass org/apache/ibatis/reflection/DefaultReflectorFactory$$Lambda$547
+instanceKlass org/apache/ibatis/reflection/Reflector
+instanceKlass org/apache/ibatis/reflection/MetaClass
+instanceKlass com/sun/org/apache/xml/internal/utils/XMLCharacterRecognizer
+instanceKlass org/apache/ibatis/parsing/GenericTokenParser
+instanceKlass org/apache/ibatis/parsing/PropertyParser$VariableTokenHandler
+instanceKlass org/apache/ibatis/parsing/TokenHandler
+instanceKlass org/apache/ibatis/parsing/PropertyParser
+instanceKlass com/sun/org/apache/xerces/internal/dom/CharacterDataImpl$1
+instanceKlass org/apache/ibatis/parsing/XNode
+instanceKlass com/sun/org/apache/xerces/internal/dom/NamedNodeMapImpl
+instanceKlass org/w3c/dom/NamedNodeMap
+instanceKlass com/sun/org/apache/xml/internal/dtm/ref/DTMNodeIterator
+instanceKlass org/w3c/dom/traversal/NodeIterator
+instanceKlass com/sun/org/apache/xml/internal/dtm/DTMAxisTraverser
+instanceKlass com/sun/org/apache/xml/internal/dtm/Axis
+instanceKlass com/sun/org/apache/xpath/internal/objects/Comparator
+instanceKlass com/sun/org/apache/xml/internal/dtm/ref/dom2dtm/DOM2DTMdefaultNamespaceDeclarationNode
+instanceKlass com/sun/org/apache/xml/internal/utils/TreeWalker
+instanceKlass com/sun/org/apache/xml/internal/utils/SuballocatedIntVector
+instanceKlass com/sun/org/apache/xml/internal/dtm/ref/DTMDefaultBase
+instanceKlass com/sun/org/apache/xml/internal/dtm/ref/DTMNodeProxy
+instanceKlass org/w3c/dom/DocumentFragment
+instanceKlass org/w3c/dom/Comment
+instanceKlass org/w3c/dom/ProcessingInstruction
+instanceKlass org/w3c/dom/Attr
+instanceKlass org/w3c/dom/Text
+instanceKlass org/w3c/dom/CharacterData
+instanceKlass com/sun/org/apache/xml/internal/dtm/ref/ExpandedNameTable$HashEntry
+instanceKlass com/sun/org/apache/xml/internal/dtm/ref/ExtendedType
+instanceKlass com/sun/org/apache/xml/internal/dtm/ref/ExpandedNameTable
+instanceKlass com/sun/org/apache/xml/internal/dtm/DTM
+instanceKlass com/sun/org/apache/xml/internal/utils/XMLStringFactory
+instanceKlass com/sun/org/apache/xpath/internal/XPathContext$XPathExpressionContext
+instanceKlass com/sun/org/apache/xalan/internal/extensions/ExpressionContext
+instanceKlass com/sun/org/apache/xml/internal/utils/NodeVector
+instanceKlass com/sun/org/apache/xpath/internal/SourceTreeManager
+instanceKlass com/sun/org/apache/xpath/internal/VariableStack
+instanceKlass com/sun/org/apache/xml/internal/utils/IntVector
+instanceKlass com/sun/org/apache/xml/internal/dtm/DTMManager
+instanceKlass com/sun/org/apache/xpath/internal/axes/IteratorPool
+instanceKlass com/sun/org/apache/xpath/internal/axes/SubContextList
+instanceKlass com/sun/org/apache/xpath/internal/axes/PathComponent
+instanceKlass com/sun/org/apache/xml/internal/dtm/DTMIterator
+instanceKlass com/sun/org/apache/xpath/internal/axes/WalkerFactory
+instanceKlass sun/net/ResourceManager
+instanceKlass com/sun/org/apache/xpath/internal/compiler/OpMapVector
+instanceKlass com/sun/org/apache/xpath/internal/compiler/Lexer
+instanceKlass com/sun/org/apache/xml/internal/utils/ObjectVector
+instanceKlass com/sun/org/apache/xpath/internal/compiler/OpMap
+instanceKlass com/sun/org/apache/xpath/internal/compiler/XPathParser
+instanceKlass com/sun/org/apache/xml/internal/utils/DefaultErrorHandler
+instanceKlass com/sun/org/apache/xpath/internal/Expression
+instanceKlass com/sun/org/apache/xpath/internal/XPathVisitable
+instanceKlass com/sun/org/apache/xpath/internal/ExpressionNode
+instanceKlass javax/xml/transform/SourceLocator
+instanceKlass com/sun/org/apache/xpath/internal/compiler/FunctionTable
+instanceKlass com/sun/org/apache/xpath/internal/XPath
+instanceKlass com/sun/org/apache/xpath/internal/ExpressionOwner
+instanceKlass javax/xml/namespace/QName$1
+instanceKlass javax/xml/namespace/QName
+instanceKlass javax/xml/xpath/XPathConstants
+instanceKlass org/mybatis/spring/SqlSessionFactoryBean$$Lambda$546
+instanceKlass org/mybatis/spring/SqlSessionFactoryBean$$Lambda$545
+instanceKlass org/apache/ibatis/type/Alias
+instanceKlass org/mybatis/spring/SqlSessionFactoryBean$$Lambda$544
+instanceKlass org/mybatis/spring/SqlSessionFactoryBean$$Lambda$543
+instanceKlass org/mybatis/spring/SqlSessionFactoryBean$$Lambda$542
+instanceKlass org/mybatis/spring/SqlSessionFactoryBean$$Lambda$541
+instanceKlass com/rehome/weather/entity/WidEntity
+instanceKlass com/rehome/weather/entity/WeatherType
+instanceKlass com/rehome/weather/entity/WeatherRealtime
+instanceKlass com/rehome/weather/entity/WeatherFuture
+instanceKlass com/rehome/weather/entity/StormTrack
+instanceKlass com/rehome/weather/entity/StormForecast
+instanceKlass com/rehome/weather/entity/StormEntity
+instanceKlass com/rehome/weather/entity/CityEntity
+instanceKlass org/mybatis/spring/SqlSessionFactoryBean$$Lambda$540
+instanceKlass org/mybatis/spring/SqlSessionFactoryBean$$Lambda$539
+instanceKlass org/mybatis/spring/SqlSessionFactoryBean$$Lambda$538
+instanceKlass org/apache/ibatis/executor/ErrorContext$$Lambda$537
+instanceKlass org/apache/ibatis/executor/ErrorContext
+instanceKlass org/apache/ibatis/scripting/LanguageDriverRegistry$$Lambda$536
+instanceKlass org/apache/ibatis/executor/loader/cglib/CglibProxyFactory
+instanceKlass org/apache/ibatis/logging/nologging/NoLoggingImpl
+instanceKlass org/apache/ibatis/logging/stdout/StdOutImpl
+instanceKlass org/apache/ibatis/logging/jdk14/Jdk14LoggingImpl
+instanceKlass org/apache/ibatis/logging/log4j2/Log4j2Impl
+instanceKlass org/apache/ibatis/logging/log4j/Log4jImpl
+instanceKlass org/apache/ibatis/logging/commons/JakartaCommonsLoggingImpl
+instanceKlass org/apache/ibatis/scripting/xmltags/XMLLanguageDriver
+instanceKlass org/apache/ibatis/mapping/VendorDatabaseIdProvider
+instanceKlass org/apache/ibatis/cache/decorators/WeakCache
+instanceKlass org/apache/ibatis/cache/decorators/SoftCache
+instanceKlass org/apache/ibatis/cache/decorators/LruCache
+instanceKlass org/apache/ibatis/cache/decorators/FifoCache
+instanceKlass org/apache/ibatis/cache/impl/PerpetualCache
+instanceKlass org/apache/ibatis/datasource/unpooled/UnpooledDataSourceFactory
+instanceKlass org/apache/ibatis/datasource/jndi/JndiDataSourceFactory
+instanceKlass org/apache/ibatis/datasource/DataSourceFactory
+instanceKlass org/apache/ibatis/transaction/managed/ManagedTransactionFactory
+instanceKlass org/apache/ibatis/transaction/jdbc/JdbcTransactionFactory
+instanceKlass org/apache/ibatis/session/Configuration$$Lambda$535
+instanceKlass org/apache/ibatis/mapping/MappedStatement
+instanceKlass org/apache/ibatis/scripting/LanguageDriverRegistry
+instanceKlass java/sql/ResultSet
+instanceKlass org/apache/ibatis/type/TypeAliasRegistry
+instanceKlass java/time/chrono/ChronoLocalDateImpl
+instanceKlass org/apache/ibatis/type/MappedJdbcTypes
+instanceKlass org/apache/ibatis/type/UnknownTypeHandler$$Lambda$534
+instanceKlass org/apache/ibatis/type/TypeReference
+instanceKlass org/apache/ibatis/type/TypeHandlerRegistry
+instanceKlass org/apache/ibatis/plugin/InterceptorChain
+instanceKlass org/apache/ibatis/binding/MapperRegistry
+instanceKlass org/apache/ibatis/javassist/util/proxy/ProxyFactory$3
+instanceKlass org/apache/ibatis/javassist/util/proxy/ProxyFactory$2
+instanceKlass org/apache/ibatis/javassist/util/proxy/ProxyFactory$UniqueName
+instanceKlass org/apache/ibatis/javassist/util/proxy/ProxyFactory$1
+instanceKlass org/apache/ibatis/javassist/util/proxy/ProxyFactory$ClassLoaderProvider
+instanceKlass org/apache/ibatis/javassist/util/proxy/MethodHandler
+instanceKlass org/apache/ibatis/javassist/util/proxy/ProxyFactory
+instanceKlass org/apache/ibatis/executor/loader/javassist/JavassistProxyFactory
+instanceKlass org/apache/ibatis/executor/loader/ProxyFactory
+instanceKlass org/apache/ibatis/reflection/wrapper/DefaultObjectWrapperFactory
+instanceKlass org/apache/ibatis/reflection/factory/DefaultObjectFactory
+instanceKlass org/apache/ibatis/reflection/DefaultReflectorFactory
+instanceKlass org/apache/ibatis/reflection/ReflectorFactory
+instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/models/SimpleContentModel
+instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/models/CMStateSet
+instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/models/DFAContentModel
+instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/models/CMNode
+instanceKlass com/sun/xml/internal/stream/StaxXMLInputSource
+instanceKlass org/apache/ibatis/io/ClassLoaderWrapper
+instanceKlass org/apache/ibatis/io/Resources
+instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentScannerImpl$DTDDriver
+instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLContentSpec
+instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/models/ContentModelValidator
+instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/DTDGrammar
+instanceKlass com/sun/org/apache/xerces/internal/xni/grammars/Grammar
+instanceKlass com/sun/org/apache/xerces/internal/impl/validation/EntityState
+instanceKlass com/sun/org/apache/xerces/internal/dom/DeferredDocumentImpl$RefCount
+instanceKlass com/sun/org/apache/xerces/internal/dom/NodeListCache
+instanceKlass org/w3c/dom/TypeInfo
+instanceKlass org/w3c/dom/Element
+instanceKlass org/w3c/dom/DocumentType
+instanceKlass com/sun/org/apache/xerces/internal/dom/NodeImpl
+instanceKlass org/w3c/dom/events/EventTarget
+instanceKlass org/w3c/dom/NodeList
+instanceKlass org/w3c/dom/Document
+instanceKlass org/w3c/dom/ranges/DocumentRange
+instanceKlass org/w3c/dom/events/DocumentEvent
+instanceKlass org/w3c/dom/traversal/DocumentTraversal
+instanceKlass com/sun/org/apache/xerces/internal/dom/DeferredNode
+instanceKlass org/apache/ibatis/parsing/XPathParser$1
+instanceKlass javax/xml/parsers/DocumentBuilder
+instanceKlass javax/xml/parsers/DocumentBuilderFactory
+instanceKlass com/sun/org/apache/xpath/internal/jaxp/XPathImpl
+instanceKlass javax/xml/xpath/XPath
+instanceKlass javax/xml/xpath/XPathFactoryFinder$2
+instanceKlass javax/xml/xpath/SecuritySupport$8
+instanceKlass javax/xml/xpath/SecuritySupport$2
+instanceKlass javax/xml/xpath/XPathFactoryFinder
+instanceKlass javax/xml/xpath/SecuritySupport$1
+instanceKlass javax/xml/xpath/SecuritySupport
+instanceKlass javax/xml/xpath/XPathFactory
+instanceKlass org/apache/ibatis/builder/xml/XMLMapperEntityResolver
+instanceKlass org/apache/ibatis/parsing/XPathParser
+instanceKlass org/apache/ibatis/builder/BaseBuilder
+instanceKlass org/apache/ibatis/transaction/TransactionFactory
+instanceKlass org/apache/ibatis/mapping/DatabaseIdProvider
+instanceKlass org/apache/ibatis/reflection/wrapper/ObjectWrapperFactory
+instanceKlass org/apache/ibatis/reflection/factory/ObjectFactory
+instanceKlass org/apache/ibatis/type/TypeHandler
+instanceKlass org/apache/ibatis/plugin/Interceptor
+instanceKlass org/apache/ibatis/cache/Cache
+instanceKlass org/apache/ibatis/session/SqlSessionFactoryBuilder
+instanceKlass org/springframework/beans/factory/SmartFactoryBean
+instanceKlass org/springframework/context/weaving/LoadTimeWeaverAware
+instanceKlass org/springframework/boot/web/servlet/context/WebServerStartStopLifecycle
+instanceKlass org/springframework/boot/web/servlet/context/WebServerGracefulShutdownLifecycle
+instanceKlass org/springframework/context/SmartLifecycle
+instanceKlass org/springframework/context/Phased
+instanceKlass org/apache/naming/ContextAccessController
+instanceKlass org/apache/naming/StringManager
+instanceKlass org/apache/naming/ContextBindings
+instanceKlass org/apache/catalina/core/StandardServer$$Lambda$533
+instanceKlass org/apache/catalina/core/StandardServer$$Lambda$532
+instanceKlass org/apache/catalina/mapper/WrapperMappingInfo
+instanceKlass org/apache/catalina/core/ContainerBase$ContainerBackgroundProcessor
+instanceKlass org/apache/catalina/mapper/Mapper$ContextList
+instanceKlass org/apache/tomcat/util/threads/Constants
+instanceKlass org/apache/tomcat/util/threads/TaskThread$WrappingRunnable
+instanceKlass org/apache/catalina/core/ContainerBase$ContainerBackgroundProcessorMonitor
+instanceKlass org/apache/catalina/util/Introspection
+instanceKlass org/apache/catalina/core/ApplicationFilterConfig
+instanceKlass org/apache/catalina/core/StandardContext$NoPluggabilityServletContext
+instanceKlass org/apache/tomcat/websocket/server/WsContextListener
+instanceKlass javax/servlet/http/HttpSessionIdListener
+instanceKlass org/apache/tomcat/websocket/server/WsSessionListener
+instanceKlass javax/servlet/GenericFilter
+instanceKlass java/util/concurrent/ConcurrentSkipListMap$Node
+instanceKlass java/util/concurrent/ConcurrentSkipListMap$Index
+instanceKlass org/apache/tomcat/websocket/server/WsWriteTimeout$EndpointComparator
+instanceKlass java/util/concurrent/ConcurrentNavigableMap
+instanceKlass org/apache/tomcat/websocket/server/WsWriteTimeout
+instanceKlass org/apache/tomcat/websocket/WsExtension
+instanceKlass javax/websocket/Extension
+instanceKlass org/apache/tomcat/websocket/Constants
+instanceKlass javax/websocket/CloseReason$CloseCode
+instanceKlass javax/websocket/CloseReason
+instanceKlass org/apache/tomcat/websocket/WsWebSocketContainer
+instanceKlass org/apache/tomcat/websocket/BackgroundProcess
+instanceKlass org/apache/catalina/core/ApplicationFilterRegistration
+instanceKlass javax/servlet/FilterRegistration$Dynamic
+instanceKlass javax/servlet/FilterRegistration
+instanceKlass org/apache/tomcat/util/descriptor/web/Constants
+instanceKlass org/apache/catalina/core/ApplicationServletRegistration
+instanceKlass org/apache/tomcat/util/modeler/Util
+instanceKlass org/apache/catalina/core/StandardWrapperFacade
+instanceKlass org/springframework/boot/web/servlet/ServletContextInitializerBeans$$Lambda$531
+instanceKlass org/springframework/boot/web/servlet/ServletContextInitializerBeans$ServletListenerRegistrationBeanAdapter
+instanceKlass javax/servlet/ServletContextListener
+instanceKlass javax/servlet/http/HttpSessionListener
+instanceKlass javax/servlet/http/HttpSessionAttributeListener
+instanceKlass javax/servlet/ServletRequestAttributeListener
+instanceKlass javax/servlet/ServletContextAttributeListener
+instanceKlass org/apache/catalina/loader/WebappClassLoaderBase$CombinedEnumeration
+instanceKlass java/util/Collections$EmptyEnumeration
+instanceKlass javax/servlet/FilterChain
+instanceKlass javax/servlet/FilterConfig
+instanceKlass org/springframework/boot/web/servlet/ServletContextInitializerBeans$FilterRegistrationBeanAdapter
+instanceKlass org/springframework/boot/web/servlet/ServletContextInitializerBeans$ServletRegistrationBeanAdapter
+instanceKlass org/springframework/boot/web/servlet/ServletContextInitializerBeans$RegistrationBeanAdapter
+instanceKlass org/springframework/boot/web/servlet/ServletContextInitializerBeans$$Lambda$530
+instanceKlass org/springframework/web/context/support/ServletContextScope
+instanceKlass org/springframework/boot/web/servlet/server/AbstractServletWebServerFactory$$Lambda$529
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/apache/tomcat/InstanceManagerBindings
+instanceKlass org/apache/catalina/core/DefaultInstanceManager$AnnotationCacheEntry
+instanceKlass org/apache/catalina/core/DefaultInstanceManager
+instanceKlass org/apache/tomcat/InstanceManager
+instanceKlass org/apache/tomcat/util/descriptor/web/ResourceBase
+instanceKlass org/apache/tomcat/util/descriptor/web/Injectable
+instanceKlass org/apache/catalina/SessionIdGenerator
+instanceKlass org/apache/tomcat/util/http/ConcurrentDateFormat
+instanceKlass org/apache/tomcat/util/http/FastHttpDateFormat
+instanceKlass javax/security/auth/message/config/RegistrationListener
+instanceKlass org/apache/catalina/Authenticator
+instanceKlass org/apache/tomcat/util/descriptor/web/FilterDef
+instanceKlass org/apache/catalina/startup/WebAnnotationSet
+instanceKlass org/apache/catalina/security/SecurityUtil
+instanceKlass org/apache/catalina/webresources/EmptyResource
+instanceKlass org/apache/tomcat/util/compat/JrePlatform
+instanceKlass org/apache/catalina/webresources/CachedResource
+instanceKlass org/apache/catalina/util/Extension
+instanceKlass org/apache/catalina/util/ManifestResource
+instanceKlass org/apache/catalina/util/ExtensionValidator
+instanceKlass org/apache/tomcat/util/http/CookieProcessorBase$$Lambda$528
+instanceKlass org/apache/tomcat/util/http/CookieProcessorBase
+instanceKlass org/apache/tomcat/util/http/CookieProcessor
+instanceKlass org/apache/catalina/WebResource
+instanceKlass org/apache/tomcat/util/http/RequestUtil
+instanceKlass org/apache/catalina/WebResourceSet
+instanceKlass org/apache/catalina/webresources/TomcatURLStreamHandlerFactory
+instanceKlass org/apache/catalina/webresources/Cache
+instanceKlass org/apache/catalina/WebResourceRoot
+instanceKlass org/apache/catalina/core/ApplicationSessionCookieConfig
+instanceKlass javax/servlet/SessionCookieConfig
+instanceKlass org/apache/catalina/core/ApplicationContextFacade
+instanceKlass org/apache/catalina/core/ApplicationContext
+instanceKlass org/apache/catalina/util/ContextName
+instanceKlass org/apache/catalina/core/ContainerBase$StartChild
+instanceKlass org/apache/catalina/realm/X509SubjectDnRetriever
+instanceKlass org/apache/catalina/realm/X509UsernameRetriever
+instanceKlass java/util/logging/LogRecord
+instanceKlass org/apache/catalina/connector/CoyoteAdapter$$Lambda$527
+instanceKlass org/apache/catalina/util/ServerInfo
+instanceKlass org/apache/catalina/connector/CoyoteAdapter
+instanceKlass org/apache/catalina/Executor
+instanceKlass org/apache/catalina/mbeans/MBeanUtils
+instanceKlass org/apache/catalina/mbeans/MBeanFactory
+instanceKlass org/apache/tomcat/util/buf/StringCache
+instanceKlass org/apache/tomcat/util/threads/ScheduledThreadPoolExecutor
+instanceKlass org/apache/tomcat/util/threads/TaskThreadFactory
+instanceKlass org/springframework/boot/web/embedded/tomcat/TomcatWebServer$$Lambda$526
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$525
+instanceKlass org/springframework/boot/web/embedded/tomcat/DisableReferenceClearingContextCustomizer
+instanceKlass org/springframework/boot/web/embedded/tomcat/TomcatServletWebServerFactory$DisablePersistSessionListener
+instanceKlass org/springframework/boot/web/embedded/tomcat/TomcatStarter
+instanceKlass org/apache/catalina/core/StandardHost$MemoryLeakTrackingListener
+instanceKlass org/springframework/boot/web/servlet/server/AbstractServletWebServerFactory$SessionConfiguringInitializer
+instanceKlass org/springframework/boot/web/servlet/server/AbstractServletWebServerFactory$$Lambda$524
+instanceKlass org/springframework/boot/web/embedded/tomcat/TomcatServletWebServerFactory$StaticResourceConfigurer
+instanceKlass org/apache/tomcat/util/security/PermissionCheck
+instanceKlass org/apache/juli/WebappProperties
+instanceKlass org/apache/tomcat/InstrumentableClassLoader
+instanceKlass org/apache/catalina/Loader
+instanceKlass org/apache/tomcat/util/scan/StandardJarScanner
+instanceKlass org/apache/tomcat/JarScanner
+instanceKlass org/apache/tomcat/util/scan/StandardJarScanFilter
+instanceKlass org/apache/tomcat/JarScanFilter
+instanceKlass org/springframework/boot/web/embedded/tomcat/TomcatServletWebServerFactory$$Lambda$523
+instanceKlass org/apache/catalina/util/CharsetMapper
+instanceKlass org/apache/catalina/startup/Tomcat$FixContextListener
+instanceKlass org/apache/catalina/util/URLEncoder
+instanceKlass org/apache/catalina/Wrapper
+instanceKlass org/apache/catalina/core/StandardContext$ContextFilterMaps
+instanceKlass org/apache/catalina/util/ErrorPageSupport
+instanceKlass org/apache/tomcat/util/descriptor/web/XmlEncodingBase
+instanceKlass org/apache/tomcat/util/descriptor/web/ApplicationParameter
+instanceKlass org/apache/catalina/core/StandardContext$1
+instanceKlass org/apache/catalina/ThreadBindingListener
+instanceKlass org/apache/catalina/Globals
+instanceKlass org/apache/catalina/realm/RealmBase$AllRolesMode
+instanceKlass org/apache/catalina/realm/DigestCredentialHandlerBase
+instanceKlass org/apache/catalina/CredentialHandler
+instanceKlass org/apache/catalina/Realm
+instanceKlass org/apache/catalina/Pipeline
+instanceKlass org/apache/catalina/Contained
+instanceKlass org/apache/tomcat/util/threads/LimitLatch
+instanceKlass org/springframework/boot/web/embedded/tomcat/CompressionConnectorCustomizer
+instanceKlass org/apache/tomcat/util/net/SocketWrapperBase
+instanceKlass org/apache/tomcat/util/net/SSLImplementation
+instanceKlass org/apache/tomcat/util/buf/CharsetUtil
+instanceKlass org/apache/tomcat/util/buf/CharsetCache
+instanceKlass org/apache/tomcat/util/buf/B2CConverter
+instanceKlass org/springframework/boot/web/embedded/tomcat/TomcatServletWebServerFactory$$Lambda$522
+instanceKlass org/apache/coyote/Processor
+instanceKlass org/apache/coyote/Adapter
+instanceKlass org/apache/coyote/Response
+instanceKlass org/apache/coyote/Request
+instanceKlass org/apache/tomcat/util/net/SSLHostConfig
+instanceKlass org/apache/tomcat/util/XReflectionIntrospectionUtils
+instanceKlass org/apache/tomcat/util/IntrospectionUtils
+instanceKlass org/apache/catalina/ContainerListener
+instanceKlass org/apache/catalina/mapper/Mapper$MapElement
+instanceKlass org/apache/catalina/mapper/Mapper
+instanceKlass org/apache/tomcat/util/file/ConfigFileLoader
+instanceKlass org/apache/tomcat/util/file/ConfigurationSource$1
+instanceKlass org/apache/catalina/startup/CatalinaBaseConfigurationSource
+instanceKlass org/apache/tomcat/util/file/ConfigurationSource
+instanceKlass org/apache/tomcat/util/descriptor/web/NamingResources
+instanceKlass org/apache/catalina/Service
+instanceKlass org/apache/catalina/Server
+instanceKlass org/apache/tomcat/util/collections/SynchronizedStack
+instanceKlass org/apache/tomcat/util/modeler/BaseModelMBean
+instanceKlass javax/management/modelmbean/ModelMBeanNotificationBroadcaster
+instanceKlass org/apache/coyote/AbstractProtocol$ConnectionHandler
+instanceKlass org/apache/tomcat/util/net/AbstractEndpoint$Handler
+instanceKlass org/apache/coyote/CompressionConfig
+instanceKlass java/util/concurrent/ConcurrentLinkedQueue$Node
+instanceKlass org/apache/tomcat/util/net/NioSelectorPool
+instanceKlass org/apache/tomcat/util/net/SocketProperties
+instanceKlass org/apache/tomcat/util/net/AbstractEndpoint
+instanceKlass org/apache/tomcat/util/buf/UDecoder
+instanceKlass java/io/DeleteOnExitHook$1
+instanceKlass java/io/DeleteOnExitHook
+instanceKlass sun/nio/fs/WindowsPath$1
+instanceKlass java/nio/file/Paths
+instanceKlass java/nio/file/TempFileHelper
+instanceKlass org/apache/tomcat/util/ExceptionUtils
+instanceKlass javax/net/ssl/SSLSession
+instanceKlass javax/net/ssl/SSLEngineResult
+instanceKlass javax/net/ssl/SSLEngine
+instanceKlass javax/net/ssl/SSLParameters
+instanceKlass org/apache/tomcat/util/compat/JreCompat
+instanceKlass org/apache/tomcat/util/modeler/FeatureInfo
+instanceKlass org/apache/tomcat/util/modeler/ManagedBean
+instanceKlass org/apache/tomcat/util/modeler/NoDescriptorRegistry$NoJmxMBeanServer
+instanceKlass org/apache/tomcat/util/modeler/Registry
+instanceKlass org/apache/tomcat/util/modeler/RegistryMBean
+instanceKlass org/springframework/boot/web/servlet/context/ServletWebServerApplicationContext$$Lambda$521
+instanceKlass javax/servlet/ServletRegistration$Dynamic
+instanceKlass javax/servlet/Registration$Dynamic
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/MultipartProperties$$Lambda$520
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/MultipartProperties$$Lambda$519
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/MultipartProperties$$Lambda$518
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/MultipartProperties$$Lambda$517
+instanceKlass org/springframework/boot/web/servlet/MultipartConfigFactory
+instanceKlass org/springframework/boot/context/properties/bind/handler/NoUnboundElementsBindHandler$$Lambda$516
+instanceKlass org/springframework/boot/context/properties/source/UnboundElementsSourceFilter
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration$$Lambda$515
+instanceKlass org/springframework/web/context/request/AbstractRequestAttributes
+instanceKlass org/springframework/web/context/request/async/WebAsyncManager
+instanceKlass org/springframework/context/i18n/LocaleContext
+instanceKlass org/springframework/web/servlet/ModelAndView
+instanceKlass javax/servlet/http/HttpServletResponse
+instanceKlass org/springframework/web/servlet/HandlerExecutionChain
+instanceKlass javax/servlet/http/HttpServletRequest
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$514
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$513
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$512
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$511
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$510
+instanceKlass java/util/stream/Collectors$$Lambda$509
+instanceKlass java/util/stream/Collectors$$Lambda$508
+instanceKlass java/util/stream/Collectors$$Lambda$507
+instanceKlass java/util/stream/Collectors$$Lambda$506
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$505
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$504
+instanceKlass org/springframework/boot/context/properties/PropertyMapper$Source$$Lambda$503
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$502
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$501
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$500
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$499
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$498
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$497
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$496
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$495
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$494
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$493
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$492
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$491
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$490
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$489
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$488
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$487
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$486
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$485
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$484
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$483
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$482
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$481
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$480
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$479
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$478
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$477
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$476
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$475
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$474
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$473
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$472
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$471
+instanceKlass org/springframework/boot/context/properties/PropertyMapper$Source$$Lambda$470
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$469
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$468
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$467
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$466
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$465
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$464
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$463
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$462
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$461
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$460
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$459
+instanceKlass org/springframework/boot/context/properties/PropertyMapper$Source$$Lambda$458
+instanceKlass org/springframework/boot/context/properties/PropertyMapper$Source$$Lambda$457
+instanceKlass org/springframework/boot/context/properties/PropertyMapper$Source$$Lambda$456
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$455
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$454
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$453
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer$$Lambda$452
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/TomcatServletWebServerFactoryCustomizer$$Lambda$451
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/TomcatServletWebServerFactoryCustomizer$$Lambda$450
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$449
+instanceKlass org/springframework/boot/context/properties/PropertyMapper$$Lambda$448
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$447
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$446
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$445
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$444
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$443
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$442
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$441
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$440
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$439
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$438
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$437
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$436
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$435
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$434
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$433
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$432
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$431
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$430
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$429
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$428
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$427
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$426
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$425
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/context/properties/PropertyMapper$Source$$Lambda$424
+instanceKlass org/springframework/boot/context/properties/PropertyMapper$NullPointerExceptionSafeSupplier
+instanceKlass org/springframework/boot/context/properties/PropertyMapper$CachingSupplier
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer$$Lambda$423
+instanceKlass org/springframework/boot/context/properties/PropertyMapper$$Lambda$422
+instanceKlass org/springframework/boot/context/properties/PropertyMapper$SourceOperator
+instanceKlass org/springframework/boot/context/properties/PropertyMapper$Source
+instanceKlass org/springframework/boot/context/properties/PropertyMapper$$Lambda$421
+instanceKlass org/springframework/boot/context/properties/PropertyMapper
+instanceKlass org/springframework/boot/util/LambdaSafe$InvocationResult
+instanceKlass org/springframework/boot/autoconfigure/websocket/servlet/TomcatWebSocketServletWebServerCustomizer$$Lambda$420
+instanceKlass org/springframework/boot/util/LambdaSafe$Callbacks$$Lambda$419
+instanceKlass org/springframework/boot/util/LambdaSafe$Callbacks$$Lambda$418
+instanceKlass org/springframework/boot/web/server/WebServerFactoryCustomizerBeanPostProcessor$$Lambda$417
+instanceKlass org/springframework/boot/util/LambdaSafe$GenericTypeFilter
+instanceKlass org/springframework/boot/util/LambdaSafe$Filter
+instanceKlass org/springframework/boot/util/LambdaSafe$LambdaSafeCallback
+instanceKlass org/springframework/boot/util/LambdaSafe
+instanceKlass org/springframework/boot/context/properties/NestedConfigurationProperty
+instanceKlass org/springframework/boot/autoconfigure/web/ServerProperties$Undertow$Options
+instanceKlass org/springframework/boot/autoconfigure/web/ServerProperties$Undertow$Threads
+instanceKlass org/springframework/boot/autoconfigure/web/ServerProperties$Undertow$Accesslog
+instanceKlass org/springframework/boot/autoconfigure/web/ServerProperties$Jetty$Threads
+instanceKlass org/springframework/boot/autoconfigure/web/ServerProperties$Jetty$Accesslog
+instanceKlass org/springframework/boot/autoconfigure/web/ServerProperties$Tomcat$Remoteip
+instanceKlass org/springframework/boot/autoconfigure/web/ServerProperties$Tomcat$Mbeanregistry
+instanceKlass org/springframework/boot/autoconfigure/web/ServerProperties$Tomcat$Resource
+instanceKlass org/springframework/boot/autoconfigure/web/ServerProperties$Tomcat$Threads
+instanceKlass org/springframework/boot/autoconfigure/web/ServerProperties$Tomcat$Accesslog
+instanceKlass org/springframework/boot/web/servlet/server/Encoding
+instanceKlass org/springframework/boot/autoconfigure/web/ErrorProperties$Whitelabel
+instanceKlass org/springframework/boot/web/servlet/WebListenerRegistrar
+instanceKlass org/springframework/boot/web/server/ErrorPage
+instanceKlass org/springframework/boot/web/server/SslStoreProvider
+instanceKlass org/apache/catalina/Engine
+instanceKlass org/apache/catalina/Valve
+instanceKlass org/apache/coyote/AbstractProtocol
+instanceKlass org/apache/catalina/Manager
+instanceKlass org/apache/coyote/ProtocolHandler
+instanceKlass org/springframework/boot/web/embedded/tomcat/TomcatWebServer
+instanceKlass org/apache/catalina/Context
+instanceKlass org/apache/tomcat/ContextBind
+instanceKlass org/apache/catalina/util/LifecycleBase
+instanceKlass org/apache/catalina/JmxEnabled
+instanceKlass org/springframework/boot/web/server/WebServer
+instanceKlass org/apache/catalina/Host
+instanceKlass org/apache/catalina/Container
+instanceKlass org/apache/catalina/Lifecycle
+instanceKlass org/springframework/core/OrderComparator$$Lambda$416
+instanceKlass org/springframework/beans/factory/support/DefaultListableBeanFactory$FactoryAwareOrderSourceProvider
+instanceKlass org/springframework/core/OrderComparator$OrderSourceProvider
+instanceKlass org/springframework/beans/factory/support/DefaultListableBeanFactory$$Lambda$415
+instanceKlass org/springframework/beans/factory/support/DefaultListableBeanFactory$$Lambda$414
+instanceKlass org/springframework/beans/factory/support/DefaultListableBeanFactory$$Lambda$413
+instanceKlass org/springframework/boot/web/embedded/tomcat/TldPatterns
+instanceKlass java/lang/ClassLoaderHelper
+instanceKlass org/apache/tomcat/jni/Library
+instanceKlass org/apache/catalina/core/AprStatus
+instanceKlass org/apache/tomcat/util/res/StringManager
+instanceKlass org/apache/juli/logging/DirectJDKLog
+instanceKlass org/apache/juli/logging/Log
+instanceKlass org/apache/juli/logging/LogFactory
+instanceKlass org/apache/catalina/core/AprLifecycleListener
+instanceKlass org/apache/catalina/LifecycleListener
+instanceKlass org/springframework/boot/web/servlet/server/StaticResourceJars
+instanceKlass org/springframework/boot/web/servlet/server/DocumentRoot
+instanceKlass org/springframework/boot/web/servlet/server/Jsp
+instanceKlass org/springframework/boot/web/server/MimeMappings$Mapping
+instanceKlass org/springframework/boot/web/server/MimeMappings
+instanceKlass org/springframework/boot/web/servlet/server/SessionStoreDirectory
+instanceKlass org/springframework/boot/web/servlet/server/Session$Cookie
+instanceKlass org/springframework/boot/web/servlet/server/Session
+instanceKlass org/springframework/boot/web/embedded/tomcat/TomcatProtocolHandlerCustomizer
+instanceKlass org/springframework/boot/web/embedded/tomcat/TomcatContextCustomizer
+instanceKlass org/springframework/boot/web/embedded/tomcat/TomcatConnectorCustomizer
+instanceKlass org/springframework/ui/context/support/ResourceBundleThemeSource
+instanceKlass org/springframework/ui/context/HierarchicalThemeSource
+instanceKlass org/springframework/ui/context/support/UiApplicationContextUtils
+instanceKlass org/springframework/context/support/MessageSourceSupport
+instanceKlass org/springframework/context/HierarchicalMessageSource
+instanceKlass org/springframework/transaction/annotation/Transactional
+instanceKlass org/springframework/transaction/interceptor/TransactionalProxy
+instanceKlass org/springframework/transaction/interceptor/TransactionAttributeSourcePointcut$TransactionAttributeSourceClassFilter
+instanceKlass org/springframework/transaction/interceptor/TransactionAspectSupport$ReactiveTransactionSupport
+instanceKlass org/springframework/transaction/interceptor/TransactionAspectSupport$CoroutinesInvocationCallback
+instanceKlass org/springframework/transaction/TransactionStatus
+instanceKlass org/springframework/transaction/SavepointManager
+instanceKlass org/springframework/transaction/TransactionExecution
+instanceKlass org/springframework/transaction/interceptor/TransactionAspectSupport$ThrowableHolder
+instanceKlass org/springframework/transaction/interceptor/TransactionAspectSupport$TransactionInfo
+instanceKlass org/springframework/transaction/interceptor/TransactionAspectSupport$InvocationCallback
+instanceKlass org/springframework/core/ReactiveAdapterRegistry$ReactorRegistrar$$Lambda$412
+instanceKlass org/springframework/core/ReactiveAdapterRegistry$ReactorRegistrar$$Lambda$411
+instanceKlass org/springframework/core/ReactiveAdapterRegistry$ReactorRegistrar$$Lambda$410
+instanceKlass java/util/concurrent/CompletableFuture
+instanceKlass java/util/concurrent/CompletionStage
+instanceKlass org/springframework/core/ReactiveAdapterRegistry$ReactorRegistrar$$Lambda$409
+instanceKlass org/springframework/core/ReactiveAdapterRegistry$ReactorRegistrar$$Lambda$408
+instanceKlass org/springframework/core/ReactiveAdapterRegistry$ReactorRegistrar$$Lambda$407
+instanceKlass org/springframework/core/ReactiveAdapterRegistry$ReactorRegistrar$$Lambda$406
+instanceKlass org/springframework/core/ReactiveAdapterRegistry$ReactorRegistrar$$Lambda$405
+instanceKlass org/springframework/core/ReactiveAdapterRegistry$ReactorRegistrar$$Lambda$404
+instanceKlass org/springframework/core/ReactiveAdapter
+instanceKlass org/springframework/core/ReactiveAdapterRegistry$ReactorRegistrar$$Lambda$403
+instanceKlass org/springframework/core/ReactiveAdapterRegistry$ReactorRegistrar$$Lambda$402
+instanceKlass org/springframework/core/ReactiveTypeDescriptor
+instanceKlass org/springframework/core/ReactiveAdapterRegistry$ReactorRegistrar$$Lambda$401
+instanceKlass reactor/core/publisher/Mono
+instanceKlass org/springframework/core/ReactiveAdapterRegistry$ReactorRegistrar
+instanceKlass org/springframework/core/ReactiveAdapterRegistry
+instanceKlass org/springframework/transaction/annotation/SpringTransactionAnnotationParser
+instanceKlass org/springframework/transaction/annotation/TransactionAnnotationParser
+instanceKlass org/springframework/transaction/interceptor/TransactionAttribute
+instanceKlass org/springframework/transaction/interceptor/AbstractFallbackTransactionAttributeSource
+instanceKlass org/springframework/jdbc/datasource/DelegatingDataSource
+instanceKlass org/springframework/util/ClassUtils$$Lambda$400
+instanceKlass org/springframework/beans/factory/config/NamedBeanHolder
+instanceKlass org/springframework/beans/factory/NamedBean
+instanceKlass org/springframework/jdbc/config/SortedResourcesFactoryBean$$Lambda$399
+instanceKlass org/springframework/beans/factory/config/AbstractFactoryBean
+instanceKlass org/springframework/boot/context/properties/ConfigurationPropertiesBinder$$Lambda$398
+instanceKlass org/springframework/beans/factory/annotation/BeanFactoryAnnotationUtils
+instanceKlass org/springframework/boot/context/properties/ConversionServiceDeducer$Factory
+instanceKlass org/springframework/core/NestedExceptionUtils
+instanceKlass org/springframework/boot/context/properties/ConversionServiceDeducer
+instanceKlass org/springframework/beans/factory/support/DefaultListableBeanFactory$1
+instanceKlass org/springframework/boot/context/properties/ConfigurationPropertiesBindHandlerAdvisor
+instanceKlass org/springframework/core/annotation/SynthesizedMergedAnnotationInvocationHandler$$Lambda$397
+instanceKlass org/springframework/core/annotation/SynthesizedMergedAnnotationInvocationHandler$$Lambda$396
+instanceKlass org/springframework/boot/context/properties/ConfigurationPropertiesBinder$$Lambda$395
+instanceKlass org/springframework/validation/annotation/Validated
+instanceKlass org/springframework/core/annotation/SynthesizedMergedAnnotationInvocationHandler
+instanceKlass org/springframework/core/annotation/SynthesizedAnnotation
+instanceKlass org/springframework/boot/jdbc/EmbeddedDatabaseConnection$$Lambda$394
+instanceKlass org/springframework/boot/jdbc/EmbeddedDatabaseConnection$$Lambda$393
+instanceKlass org/springframework/boot/jdbc/EmbeddedDatabaseConnection$$Lambda$392
+instanceKlass org/springframework/boot/jdbc/EmbeddedDatabaseConnection$$Lambda$391
+instanceKlass org/springframework/boot/jdbc/EmbeddedDatabaseConnection$$Lambda$390
+instanceKlass org/springframework/boot/autoconfigure/jdbc/DataSourceInitializer
+instanceKlass com/mchange/v2/c3p0/impl/C3P0PooledConnectionPool
+instanceKlass com/mchange/v2/c3p0/impl/C3P0PooledConnectionPoolManager
+instanceKlass com/mchange/v2/c3p0/AbstractComboPooledDataSource$2
+instanceKlass com/mchange/v2/c3p0/AbstractComboPooledDataSource$1
+instanceKlass com/mchange/v2/c3p0/WrapperConnectionPoolDataSource$1
+instanceKlass com/mchange/v2/c3p0/DriverManagerDataSource$1
+instanceKlass com/mchange/v1/lang/BooleanUtils
+instanceKlass java/sql/DriverInfo
+instanceKlass com/mysql/jdbc/AbandonedConnectionCleanupThread$1
+instanceKlass com/mysql/jdbc/AbandonedConnectionCleanupThread
+instanceKlass com/mysql/jdbc/NonRegisteringDriver
+instanceKlass java/sql/Driver
+instanceKlass java/sql/DriverManager$2
+instanceKlass java/sql/DriverManager$1
+instanceKlass java/sql/DriverManager
+instanceKlass com/mchange/v2/c3p0/impl/AbstractPoolBackedDataSource$1
+instanceKlass sun/reflect/generics/tree/BooleanSignature
+instanceKlass javax/sql/ConnectionPoolDataSource
+instanceKlass javax/naming/Reference
+instanceKlass com/sun/beans/finder/InstanceFinder
+instanceKlass java/beans/WeakIdentityMap
+instanceKlass java/beans/ThreadGroupContext
+instanceKlass java/util/EventListenerProxy
+instanceKlass com/mchange/v2/c3p0/management/DynamicPooledDataSourceManagerMBean$1
+instanceKlass com/mchange/v2/management/ManagementUtils$2
+instanceKlass com/mchange/v2/management/ManagementUtils$1
+instanceKlass com/mchange/v2/management/ManagementUtils
+instanceKlass java/sql/Connection
+instanceKlass com/mchange/v2/c3p0/management/DynamicPooledDataSourceManagerMBean
+instanceKlass com/mchange/v2/util/DoubleWeakHashMap$UserKeySet
+instanceKlass com/mchange/v2/c3p0/management/C3P0RegistryManager
+instanceKlass com/mchange/v2/c3p0/management/C3P0RegistryManagerMBean
+instanceKlass com/mchange/v2/c3p0/management/ActiveManagementCoordinator
+instanceKlass com/mchange/v2/c3p0/management/ManagementCoordinator
+instanceKlass com/mchange/v2/c3p0/impl/ThreadLocalQuerylessTestRunner
+instanceKlass com/mchange/v2/c3p0/impl/DefaultConnectionTester$3
+instanceKlass com/mchange/v2/c3p0/impl/DefaultConnectionTester$2
+instanceKlass com/mchange/v2/c3p0/impl/DefaultConnectionTester$1
+instanceKlass com/mchange/v2/c3p0/impl/DefaultConnectionTester$QuerylessTestRunner
+instanceKlass com/mchange/v2/c3p0/AbstractConnectionTester
+instanceKlass com/mchange/v2/c3p0/UnifiedConnectionTester
+instanceKlass com/mchange/v2/c3p0/FullQueryConnectionTester
+instanceKlass com/mchange/v2/c3p0/QueryConnectionTester
+instanceKlass com/mchange/v2/c3p0/ConnectionTester
+instanceKlass com/mchange/v2/util/DoubleWeakHashMap$CheckKeyHolder
+instanceKlass com/mchange/v2/util/DoubleWeakHashMap
+instanceKlass com/mchange/v2/coalesce/CoalesceIdenticator
+instanceKlass com/mchange/v2/coalesce/AbstractWeakCoalescer
+instanceKlass com/mchange/v2/coalesce/Coalescer
+instanceKlass com/mchange/v2/coalesce/CoalescerFactory
+instanceKlass com/mchange/v2/c3p0/impl/IdentityTokenizedCoalesceChecker
+instanceKlass com/mchange/v2/coalesce/CoalesceChecker
+instanceKlass com/mchange/v2/c3p0/C3P0Registry
+instanceKlass com/mchange/v1/identicator/IdHashKey
+instanceKlass com/mchange/v2/uid/UidUtils
+instanceKlass com/mchange/v2/encounter/EncounterUtils$1
+instanceKlass com/mchange/v2/encounter/AbstractEncounterCounter
+instanceKlass com/mchange/v2/encounter/EncounterCounter
+instanceKlass com/mchange/v2/encounter/EncounterUtils
+instanceKlass com/mchange/v1/identicator/IdentityHashCodeIdenticator
+instanceKlass com/mchange/v1/identicator/Identicator
+instanceKlass com/mchange/v2/c3p0/impl/DbAuth
+instanceKlass com/mchange/v2/c3p0/impl/C3P0ImplUtils
+instanceKlass com/mchange/v2/c3p0/cfg/NamedScope
+instanceKlass com/mchange/v2/lang/Coerce
+instanceKlass com/mchange/v2/c3p0/cfg/C3P0ConfigUtils
+instanceKlass com/mchange/v2/c3p0/cfg/DefaultC3P0ConfigFinder
+instanceKlass com/mchange/v2/c3p0/cfg/C3P0ConfigFinder
+instanceKlass com/mchange/v2/c3p0/cfg/C3P0ConfigXmlUtils
+instanceKlass org/w3c/dom/Node
+instanceKlass com/mchange/v1/util/ArrayUtils
+instanceKlass com/mchange/v2/cfg/MConfig$PathsKey
+instanceKlass com/mchange/v2/lang/ObjectUtils
+instanceKlass com/mchange/v1/lang/Synchronizer$1
+instanceKlass com/mchange/v1/lang/Synchronizer
+instanceKlass com/mchange/v1/cachedstore/CachedStoreUtils
+instanceKlass com/mchange/v2/c3p0/cfg/C3P0Config
+instanceKlass com/mchange/v1/cachedstore/NoCleanupCachedStore
+instanceKlass com/mchange/v1/cachedstore/TweakableCachedStore
+instanceKlass com/mchange/v1/cachedstore/CachedStore
+instanceKlass com/mchange/v2/c3p0/impl/C3P0Defaults
+instanceKlass java/beans/VetoableChangeListener
+instanceKlass com/mchange/v1/cachedstore/CachedStoreFactory
+instanceKlass java/beans/VetoableChangeSupport
+instanceKlass com/mchange/v2/cfg/MConfig$CSManager
+instanceKlass com/mchange/v1/cachedstore/CachedStore$Manager
+instanceKlass java/beans/PropertyChangeListener
+instanceKlass java/beans/ChangeListenerMap
+instanceKlass java/beans/PropertyChangeSupport
+instanceKlass com/mchange/v2/cfg/MConfig
+instanceKlass com/mchange/v2/naming/ReferenceIndirector
+instanceKlass com/mchange/v2/ser/Indirector
+instanceKlass com/mchange/v2/log/slf4j/Slf4jMLog$Slf4jMLogger$OffLogger
+instanceKlass com/mchange/v2/log/slf4j/Slf4jMLog$Slf4jMLogger$ErrorLogger
+instanceKlass com/mchange/v2/log/slf4j/Slf4jMLog$Slf4jMLogger$WarnLogger
+instanceKlass com/mchange/v2/log/slf4j/Slf4jMLog$Slf4jMLogger$InfoLogger
+instanceKlass com/mchange/v2/log/slf4j/Slf4jMLog$Slf4jMLogger$DebugLogger
+instanceKlass com/mchange/v2/log/slf4j/Slf4jMLog$Slf4jMLogger$TraceLogger
+instanceKlass com/mchange/v2/log/slf4j/Slf4jMLog$Slf4jMLogger$LevelLogger
+instanceKlass com/mchange/v2/log/slf4j/Slf4jMLog$Slf4jMLogger
+instanceKlass com/mchange/v2/log/MLogger
+instanceKlass com/mchange/v2/log/MLevel
+instanceKlass com/mchange/v2/log/MLogClasses
+instanceKlass com/mchange/v2/cfg/BasicMultiPropertiesConfig$SystemPropertiesConfigSource
+instanceKlass com/mchange/v2/cfg/PropertiesConfigSource$Parse
+instanceKlass com/mchange/v2/cfg/BasicPropertiesConfigSource
+instanceKlass com/mchange/v2/cfg/PropertiesConfigSource
+instanceKlass com/mchange/v2/cfg/DelayedLogItem
+instanceKlass com/mchange/v2/cfg/MultiPropertiesConfig
+instanceKlass com/mchange/v2/cfg/PropertiesConfig
+instanceKlass com/mchange/v2/cfg/ConfigUtils
+instanceKlass com/mchange/v2/cfg/MLogConfigSource
+instanceKlass com/mchange/v2/log/MLogConfig
+instanceKlass com/mchange/v2/log/MLog
+instanceKlass com/mchange/v2/naming/JavaBeanReferenceMaker
+instanceKlass com/mchange/v2/naming/ReferenceMaker
+instanceKlass org/springframework/cglib/reflect/FastClassEmitter$4
+instanceKlass org/springframework/cglib/core/Block
+instanceKlass org/springframework/cglib/core/EmitUtils$14
+instanceKlass org/springframework/cglib/core/EmitUtils$13
+instanceKlass org/springframework/cglib/core/EmitUtils$12
+instanceKlass org/springframework/cglib/core/EmitUtils$11
+instanceKlass org/springframework/cglib/core/EmitUtils$10
+instanceKlass org/springframework/cglib/core/EmitUtils$ParameterTyper
+instanceKlass org/springframework/cglib/reflect/FastClassEmitter$GetIndexCallback
+instanceKlass org/springframework/cglib/reflect/FastClassEmitter$3
+instanceKlass org/springframework/cglib/reflect/FastClassEmitter$1
+instanceKlass org/springframework/cglib/reflect/FastClass
+instanceKlass org/springframework/cglib/proxy/MethodProxy$FastClassInfo
+instanceKlass org/springframework/cache/annotation/AnnotationCacheOperationSource$$Lambda$389
+instanceKlass java/util/stream/SortedOps$RefSortingSink$$Lambda$388
+instanceKlass org/springframework/core/annotation/MergedAnnotationPredicates$$Lambda$387
+instanceKlass org/springframework/core/annotation/MergedAnnotationPredicates$$Lambda$386
+instanceKlass java/util/stream/SortedOps
+instanceKlass org/springframework/core/annotation/AnnotatedElementUtils$$Lambda$385
+instanceKlass org/springframework/core/annotation/MergedAnnotationPredicates$$Lambda$384
+instanceKlass org/springframework/cache/annotation/SpringCacheAnnotationParser$DefaultCacheConfig
+instanceKlass org/springframework/cache/annotation/AnnotationCacheOperationSource$$Lambda$383
+instanceKlass org/springframework/core/MethodClassKey
+instanceKlass org/springframework/util/ReflectionUtils$$Lambda$382
+instanceKlass org/springframework/aop/IntroductionAwareMethodMatcher
+instanceKlass org/springframework/cache/interceptor/CacheOperationSourcePointcut$CacheOperationSourceClassFilter
+instanceKlass org/springframework/aop/TrueClassFilter
+instanceKlass org/springframework/aop/support/StaticMethodMatcher
+instanceKlass org/springframework/cache/interceptor/CacheAspectSupport$InvocationAwareResult
+instanceKlass org/springframework/cache/interceptor/CacheAspectSupport$CacheOperationMetadata
+instanceKlass org/springframework/cache/Cache$ValueWrapper
+instanceKlass org/springframework/cache/interceptor/CacheOperation
+instanceKlass org/springframework/cache/interceptor/BasicOperation
+instanceKlass org/springframework/cache/interceptor/CacheAspectSupport$CacheOperationContext
+instanceKlass org/springframework/cache/interceptor/CacheOperationInvocationContext
+instanceKlass org/springframework/cache/interceptor/CacheAspectSupport$CacheOperationContexts
+instanceKlass org/springframework/cache/interceptor/CacheOperationInvoker
+instanceKlass org/aopalliance/intercept/MethodInvocation
+instanceKlass org/aopalliance/intercept/Invocation
+instanceKlass org/aopalliance/intercept/Joinpoint
+instanceKlass org/springframework/cache/interceptor/CacheAspectSupport$$Lambda$381
+instanceKlass org/springframework/cache/interceptor/CacheResolver
+instanceKlass org/springframework/cache/interceptor/CacheAspectSupport$$Lambda$380
+instanceKlass org/springframework/cache/interceptor/CacheAspectSupport$$Lambda$379
+instanceKlass org/springframework/cache/interceptor/CacheAspectSupport$$Lambda$378
+instanceKlass org/springframework/cache/interceptor/SimpleKeyGenerator
+instanceKlass org/springframework/cache/interceptor/KeyGenerator
+instanceKlass org/springframework/util/function/SingletonSupplier
+instanceKlass org/springframework/cache/interceptor/AbstractCacheInvoker$$Lambda$377
+instanceKlass org/springframework/cache/interceptor/SimpleCacheErrorHandler
+instanceKlass org/springframework/cache/interceptor/CacheErrorHandler
+instanceKlass org/springframework/cache/annotation/AnnotationCacheOperationSource$CacheOperationProvider
+instanceKlass org/springframework/cache/annotation/Caching
+instanceKlass org/springframework/cache/annotation/CachePut
+instanceKlass org/springframework/cache/annotation/SpringCacheAnnotationParser
+instanceKlass org/springframework/cache/annotation/CacheAnnotationParser
+instanceKlass org/springframework/cache/interceptor/AbstractFallbackCacheOperationSource
+instanceKlass org/springframework/aop/IntroductionAdvisor
+instanceKlass org/springframework/aop/IntroductionInfo
+instanceKlass org/springframework/core/annotation/MergedAnnotationCollectors$$Lambda$376
+instanceKlass org/springframework/core/annotation/MergedAnnotationCollectors$$Lambda$375
+instanceKlass org/springframework/core/annotation/MergedAnnotationCollectors$$Lambda$374
+instanceKlass org/springframework/core/MethodIntrospector$$Lambda$373
+instanceKlass org/springframework/core/MethodIntrospector
+instanceKlass org/springframework/scheduling/annotation/ScheduledAnnotationBeanPostProcessor$$Lambda$372
+instanceKlass org/springframework/core/MethodIntrospector$MetadataLookup
+instanceKlass org/springframework/aop/framework/autoproxy/ProxyCreationContext
+instanceKlass sun/reflect/annotation/AnnotationInvocationHandler$1
+instanceKlass org/springframework/core/SerializableTypeWrapper$FieldTypeProvider
+instanceKlass org/springframework/core/annotation/AnnotationUtils$$Lambda$371
+instanceKlass org/springframework/core/annotation/AnnotationUtils$$Lambda$370
+instanceKlass org/springframework/beans/factory/annotation/InjectionMetadata$InjectedElement
+instanceKlass org/springframework/beans/factory/annotation/AutowiredAnnotationBeanPostProcessor$$Lambda$369
+instanceKlass org/springframework/data/projection/MethodInterceptorFactory
+instanceKlass org/springframework/data/util/NullableWrapper
+instanceKlass org/springframework/data/util/StreamUtils$$Lambda$368
+instanceKlass org/springframework/data/util/StreamUtils
+instanceKlass org/springframework/data/util/Streamable$$Lambda$367
+instanceKlass org/springframework/data/util/NullableWrapperConverters$AbstractWrapperTypeConverter$$Lambda$366
+instanceKlass org/springframework/data/util/NullableWrapperConverters$WrapperType
+instanceKlass org/springframework/data/util/NullableWrapperConverters$AbstractWrapperTypeConverter
+instanceKlass org/springframework/data/util/NullableWrapperConverters
+instanceKlass org/springframework/data/projection/ProxyProjectionFactory$$Lambda$365
+instanceKlass org/springframework/data/convert/Jsr310Converters
+instanceKlass org/springframework/data/projection/ProxyProjectionFactory
+instanceKlass org/springframework/data/projection/ProjectionFactory
+instanceKlass org/springframework/web/method/annotation/ModelAttributeMethodProcessor
+instanceKlass org/springframework/web/method/support/HandlerMethodReturnValueHandler
+instanceKlass org/springframework/beans/factory/support/DefaultListableBeanFactory$DependencyObjectProvider
+instanceKlass org/springframework/beans/factory/support/DefaultListableBeanFactory$BeanObjectProvider
+instanceKlass org/springframework/aop/TrueMethodMatcher
+instanceKlass org/springframework/aop/MethodMatcher
+instanceKlass org/springframework/aop/support/annotation/AnnotationClassFilter
+instanceKlass org/springframework/aop/ClassFilter
+instanceKlass org/springframework/aop/support/annotation/AnnotationMatchingPointcut
+instanceKlass org/springframework/aop/Pointcut
+instanceKlass org/springframework/dao/support/PersistenceExceptionTranslationInterceptor
+instanceKlass org/springframework/stereotype/Repository
+instanceKlass org/springframework/core/SimpleAliasRegistry$$Lambda$364
+instanceKlass org/springframework/beans/factory/support/DefaultListableBeanFactory$$Lambda$363
+instanceKlass com/rehome/weather/dao/WeatherTypeDao
+instanceKlass com/rehome/weather/dao/WeatherDao
+instanceKlass org/springframework/util/MethodInvoker
+instanceKlass com/rehome/weather/dao/StormDao
+instanceKlass org/springframework/core/LocalVariableTableParameterNameDiscoverer$$Lambda$362
+instanceKlass org/springframework/beans/factory/support/ConstructorResolver$ConstructorPropertiesChecker
+instanceKlass org/springframework/beans/factory/support/AutowireUtils$$Lambda$361
+instanceKlass org/springframework/beans/factory/support/AutowireUtils
+instanceKlass org/springframework/core/annotation/AnnotatedElementUtils$AnnotatedElementForAnnotations
+instanceKlass org/springframework/beans/factory/support/ConstructorResolver$ArgumentsHolder
+instanceKlass org/springframework/scheduling/config/ScheduledTaskRegistrar
+instanceKlass org/springframework/core/convert/support/NumberToNumberConverterFactory$NumberToNumber
+instanceKlass sun/reflect/generics/reflectiveObjects/GenericArrayTypeImpl
+instanceKlass org/springframework/beans/factory/annotation/AutowiredAnnotationBeanPostProcessor$$Lambda$360
+instanceKlass org/springframework/beans/factory/annotation/AutowiredAnnotationBeanPostProcessor$$Lambda$359
+instanceKlass org/springframework/aop/framework/autoproxy/BeanFactoryAdvisorRetrievalHelper
+instanceKlass org/springframework/context/annotation/CommonAnnotationBeanPostProcessor$$Lambda$358
+instanceKlass org/springframework/context/annotation/CommonAnnotationBeanPostProcessor$$Lambda$357
+instanceKlass org/springframework/util/ReflectionUtils$FieldCallback
+instanceKlass org/springframework/beans/factory/annotation/InjectionMetadata
+instanceKlass org/springframework/beans/factory/annotation/InitDestroyAnnotationBeanPostProcessor$$Lambda$356
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/aop/framework/adapter/ThrowsAdviceAdapter
+instanceKlass org/springframework/aop/framework/adapter/AfterReturningAdviceAdapter
+instanceKlass org/springframework/aop/framework/adapter/MethodBeforeAdviceAdapter
+instanceKlass org/springframework/aop/framework/adapter/AdvisorAdapter
+instanceKlass org/springframework/aop/framework/adapter/DefaultAdvisorAdapterRegistry
+instanceKlass org/springframework/aop/framework/adapter/GlobalAdvisorAdapterRegistry
+instanceKlass org/springframework/aop/framework/adapter/AdvisorAdapterRegistry
+instanceKlass org/springframework/aop/framework/autoproxy/TargetSourceCreator
+instanceKlass org/springframework/aop/TargetSource
+instanceKlass org/springframework/beans/factory/annotation/AutowiredAnnotationBeanPostProcessor$$Lambda$355
+instanceKlass org/springframework/beans/factory/annotation/Lookup
+instanceKlass org/springframework/boot/context/properties/ConfigurationPropertiesJsr303Validator
+instanceKlass org/springframework/boot/context/properties/PropertySourcesDeducer
+instanceKlass javax/annotation/PreDestroy
+instanceKlass javax/annotation/PostConstruct
+instanceKlass org/springframework/jndi/JndiTemplate
+instanceKlass org/springframework/beans/factory/annotation/InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata
+instanceKlass javax/xml/ws/WebServiceRef
+instanceKlass org/springframework/context/support/PostProcessorRegistrationDelegate$BeanPostProcessorChecker
+instanceKlass org/springframework/beans/factory/support/AbstractBeanFactory$$Lambda$354
+instanceKlass org/springframework/context/expression/CachedExpressionEvaluator
+instanceKlass java/util/concurrent/ConcurrentHashMap$MapEntry
+instanceKlass java/util/concurrent/ConcurrentHashMap$Traverser
+instanceKlass org/springframework/context/annotation/ConfigurationClassPostProcessor$ImportAwareBeanPostProcessor
+instanceKlass org/springframework/context/annotation/ConfigurationClassPostProcessor$$Lambda$353
+instanceKlass org/springframework/core/BridgeMethodResolver$$Lambda$352
+instanceKlass org/springframework/core/BridgeMethodResolver$$Lambda$351
+instanceKlass org/springframework/cglib/proxy/Enhancer$EnhancerFactoryData
+instanceKlass org/springframework/cglib/proxy/MethodProxy$CreateInfo
+instanceKlass org/springframework/cglib/proxy/MethodProxy
+instanceKlass org/springframework/cglib/core/EmitUtils$6
+instanceKlass org/springframework/cglib/core/ProcessSwitchCallback
+instanceKlass java/util/DualPivotQuicksort
+instanceKlass org/springframework/cglib/core/EmitUtils$5
+instanceKlass org/springframework/cglib/proxy/MethodInterceptorGenerator$2
+instanceKlass org/springframework/cglib/core/ObjectSwitchCallback
+instanceKlass org/springframework/cglib/proxy/Enhancer$6
+instanceKlass org/springframework/cglib/proxy/CallbackGenerator$Context
+instanceKlass org/springframework/cglib/proxy/BridgeMethodResolver
+instanceKlass org/springframework/cglib/core/MethodInfoTransformer
+instanceKlass org/springframework/cglib/proxy/Enhancer$2
+instanceKlass org/springframework/cglib/core/DuplicatesPredicate
+instanceKlass org/springframework/cglib/core/RejectModifierPredicate
+instanceKlass org/springframework/cglib/core/MethodWrapper$MethodWrapperKey
+instanceKlass org/springframework/cglib/core/MethodWrapper
+instanceKlass org/springframework/cglib/proxy/Factory
+instanceKlass org/springframework/cglib/core/VisibilityPredicate
+instanceKlass org/springframework/cglib/transform/TransformingClassGenerator
+instanceKlass org/springframework/cglib/proxy/ProxyRefDispatcher
+instanceKlass org/springframework/cglib/proxy/FixedValueGenerator
+instanceKlass org/springframework/cglib/proxy/FixedValue
+instanceKlass org/springframework/cglib/proxy/DispatcherGenerator
+instanceKlass org/springframework/cglib/proxy/Dispatcher
+instanceKlass org/springframework/cglib/proxy/LazyLoaderGenerator
+instanceKlass org/springframework/cglib/proxy/LazyLoader
+instanceKlass org/springframework/cglib/proxy/InvocationHandlerGenerator
+instanceKlass org/springframework/cglib/proxy/InvocationHandler
+instanceKlass org/springframework/cglib/proxy/MethodInterceptorGenerator$1
+instanceKlass org/springframework/cglib/core/Transformer
+instanceKlass org/springframework/cglib/proxy/MethodInterceptorGenerator
+instanceKlass org/springframework/cglib/proxy/NoOpGenerator
+instanceKlass org/springframework/cglib/proxy/CallbackGenerator
+instanceKlass org/springframework/cglib/proxy/CallbackInfo
+instanceKlass org/springframework/cglib/core/ClassNameReader
+instanceKlass org/springframework/cglib/core/DebuggingClassWriter$1
+instanceKlass org/springframework/asm/Handler
+instanceKlass org/springframework/cglib/core/EmitUtils$9
+instanceKlass org/springframework/cglib/core/EmitUtils$8
+instanceKlass org/springframework/cglib/core/Local
+instanceKlass org/springframework/cglib/core/EmitUtils$7
+instanceKlass org/springframework/cglib/core/ProcessArrayCallback
+instanceKlass org/springframework/asm/Edge
+instanceKlass org/springframework/asm/FieldVisitor
+instanceKlass org/springframework/cglib/core/ClassEmitter$FieldInfo
+instanceKlass org/springframework/cglib/core/MethodInfo
+instanceKlass org/springframework/cglib/core/LocalVariablesSorter$State
+instanceKlass org/springframework/asm/Frame
+instanceKlass org/springframework/asm/Label
+instanceKlass org/springframework/cglib/core/EmitUtils$ArrayDelimiters
+instanceKlass org/springframework/cglib/core/EmitUtils
+instanceKlass org/springframework/cglib/core/ClassInfo
+instanceKlass org/springframework/cglib/core/ReflectUtils$4
+instanceKlass org/springframework/cglib/core/ReflectUtils$5
+instanceKlass java/lang/AssertionStatusDirectives
+instanceKlass org/springframework/cglib/core/ReflectUtils$3
+instanceKlass org/springframework/cglib/core/ReflectUtils$2
+instanceKlass org/springframework/cglib/core/ReflectUtils$1
+instanceKlass org/springframework/cglib/core/ReflectUtils
+instanceKlass org/springframework/asm/ByteVector
+instanceKlass org/springframework/asm/Symbol
+instanceKlass org/springframework/asm/SymbolTable
+instanceKlass org/springframework/cglib/core/AsmApi
+instanceKlass org/springframework/cglib/core/Constants
+instanceKlass com/intellij/rt/debugger/agent/CaptureStorage$HardKey
+instanceKlass org/springframework/cglib/core/internal/LoadingCache$2
+instanceKlass org/springframework/cglib/core/internal/LoadingCache$1
+instanceKlass org/springframework/cglib/core/internal/LoadingCache
+instanceKlass org/springframework/cglib/core/AbstractClassGenerator$ClassLoaderData$3
+instanceKlass org/springframework/cglib/core/AbstractClassGenerator$ClassLoaderData$1
+instanceKlass org/springframework/cglib/core/Predicate
+instanceKlass org/springframework/cglib/core/AbstractClassGenerator$ClassLoaderData$2
+instanceKlass org/springframework/cglib/core/internal/Function
+instanceKlass org/springframework/cglib/core/AbstractClassGenerator$ClassLoaderData
+instanceKlass org/springframework/cglib/core/internal/CustomizerRegistry
+instanceKlass org/springframework/cglib/core/DefaultNamingPolicy
+instanceKlass org/springframework/cglib/core/NamingPolicy
+instanceKlass org/springframework/cglib/core/DefaultGeneratorStrategy
+instanceKlass org/springframework/cglib/core/GeneratorStrategy
+instanceKlass org/springframework/cglib/core/KeyFactory$4
+instanceKlass org/springframework/cglib/core/KeyFactory$3
+instanceKlass org/springframework/cglib/core/HashCodeCustomizer
+instanceKlass org/springframework/cglib/core/KeyFactory$2
+instanceKlass org/springframework/cglib/core/FieldTypeCustomizer
+instanceKlass org/springframework/cglib/core/KeyFactory$1
+instanceKlass org/springframework/cglib/core/Customizer
+instanceKlass org/springframework/cglib/core/KeyFactoryCustomizer
+instanceKlass org/springframework/cglib/core/Signature
+instanceKlass org/springframework/cglib/core/CollectionUtils
+instanceKlass org/springframework/cglib/core/TypeUtils
+instanceKlass org/springframework/cglib/core/KeyFactory
+instanceKlass org/springframework/cglib/proxy/Enhancer$EnhancerKey
+instanceKlass org/springframework/cglib/core/AbstractClassGenerator$Source
+instanceKlass org/springframework/cglib/proxy/Enhancer$1
+instanceKlass org/springframework/cglib/core/AbstractClassGenerator
+instanceKlass org/springframework/cglib/core/ClassGenerator
+instanceKlass org/springframework/context/annotation/ConfigurationClassEnhancer$EnhancedConfiguration
+instanceKlass org/springframework/aop/framework/autoproxy/AutoProxyUtils
+instanceKlass org/springframework/objenesis/strategy/BaseInstantiatorStrategy
+instanceKlass org/springframework/objenesis/strategy/InstantiatorStrategy
+instanceKlass org/springframework/objenesis/SpringObjenesis
+instanceKlass org/springframework/objenesis/Objenesis
+instanceKlass org/springframework/context/annotation/ConfigurationClassEnhancer$ConditionalCallbackFilter
+instanceKlass org/springframework/cglib/proxy/CallbackFilter
+instanceKlass org/springframework/cglib/proxy/NoOp$1
+instanceKlass org/springframework/cglib/proxy/NoOp
+instanceKlass org/springframework/context/annotation/ConfigurationClassEnhancer$BeanFactoryAwareMethodInterceptor
+instanceKlass org/springframework/context/annotation/ConfigurationClassEnhancer$BeanMethodInterceptor
+instanceKlass org/springframework/context/annotation/ConfigurationClassEnhancer$ConditionalCallback
+instanceKlass org/springframework/cglib/proxy/MethodInterceptor
+instanceKlass org/springframework/cglib/proxy/Callback
+instanceKlass org/springframework/context/annotation/ConfigurationClassEnhancer
+instanceKlass org/springframework/context/support/PostProcessorRegistrationDelegate$$Lambda$350
+instanceKlass org/mybatis/spring/mapper/ClassPathMapperScanner$$Lambda$349
+instanceKlass org/mybatis/spring/mapper/ClassPathMapperScanner$$Lambda$348
+instanceKlass org/mybatis/spring/mapper/ClassPathMapperScanner$$Lambda$347
+instanceKlass org/apache/ibatis/logging/LogFactory$$Lambda$346
+instanceKlass org/apache/ibatis/logging/LogFactory$$Lambda$345
+instanceKlass org/apache/ibatis/logging/LogFactory$$Lambda$344
+instanceKlass org/apache/ibatis/logging/LogFactory$$Lambda$343
+instanceKlass org/apache/ibatis/logging/LogFactory$$Lambda$342
+instanceKlass org/slf4j/helpers/BasicMarker
+instanceKlass org/slf4j/helpers/BasicMarkerFactory
+instanceKlass org/slf4j/IMarkerFactory
+instanceKlass org/slf4j/impl/StaticMarkerBinder
+instanceKlass org/slf4j/spi/MarkerFactoryBinder
+instanceKlass org/slf4j/MarkerFactory
+instanceKlass org/apache/ibatis/logging/slf4j/Slf4jLocationAwareLoggerImpl
+instanceKlass org/slf4j/event/LoggingEvent
+instanceKlass org/slf4j/Marker
+instanceKlass org/apache/ibatis/logging/slf4j/Slf4jImpl
+instanceKlass org/apache/ibatis/logging/Log
+instanceKlass org/apache/ibatis/logging/LogFactory$$Lambda$341
+instanceKlass org/apache/ibatis/logging/LogFactory
+instanceKlass org/mybatis/logging/Logger
+instanceKlass org/mybatis/logging/LoggerFactory
+instanceKlass org/mybatis/spring/mapper/MapperScannerConfigurer$$Lambda$340
+instanceKlass org/mybatis/spring/mapper/MapperScannerConfigurer$$Lambda$339
+instanceKlass org/mybatis/spring/mapper/MapperScannerConfigurer$$Lambda$338
+instanceKlass org/mybatis/spring/mapper/MapperScannerConfigurer$$Lambda$337
+instanceKlass org/mybatis/spring/mapper/MapperScannerConfigurer$$Lambda$336
+instanceKlass org/springframework/core/SimpleAliasRegistry$$Lambda$335
+instanceKlass org/springframework/beans/factory/config/BeanDefinitionVisitor
+instanceKlass org/springframework/context/support/PropertySourcesPlaceholderConfigurer$$Lambda$334
+instanceKlass org/springframework/beans/factory/support/ConstructorResolver
+instanceKlass java/lang/Class$EnclosingMethodInfo
+instanceKlass java/lang/reflect/AnnotatedType
+instanceKlass org/springframework/beans/Mergeable
+instanceKlass org/springframework/beans/factory/InjectionPoint
+instanceKlass org/springframework/beans/factory/config/RuntimeBeanNameReference
+instanceKlass org/springframework/boot/autoconfigure/task/TaskSchedulingProperties$Shutdown
+instanceKlass org/springframework/boot/autoconfigure/task/TaskSchedulingProperties$Pool
+instanceKlass org/springframework/boot/autoconfigure/jdbc/JdbcProperties$Template
+instanceKlass org/springframework/boot/autoconfigure/info/ProjectInfoProperties$Git
+instanceKlass org/springframework/boot/autoconfigure/info/ProjectInfoProperties$Build
+instanceKlass org/springframework/boot/autoconfigure/data/web/SpringDataWebProperties$Pageable
+instanceKlass org/springframework/boot/autoconfigure/data/web/SpringDataWebProperties$Sort
+instanceKlass org/springframework/data/redis/core/TimeToLive
+instanceKlass org/springframework/data/redis/core/RedisKeyValueAdapter$RedisUpdateObject
+instanceKlass org/springframework/data/util/CloseableIterator
+instanceKlass org/springframework/data/redis/core/RedisCallback
+instanceKlass org/springframework/data/redis/core/convert/IndexResolver
+instanceKlass org/springframework/data/redis/core/convert/Bucket
+instanceKlass org/springframework/data/redis/core/PartialUpdate$PropertyUpdate
+instanceKlass org/springframework/data/redis/core/PartialUpdate
+instanceKlass org/springframework/data/mapping/Association
+instanceKlass org/springframework/data/mapping/PersistentPropertyAccessor
+instanceKlass org/springframework/data/redis/core/convert/RedisData
+instanceKlass org/springframework/data/mapping/model/AbstractPersistentProperty
+instanceKlass org/springframework/data/mapping/PersistentProperty
+instanceKlass org/springframework/data/mapping/model/SimpleTypeHolder
+instanceKlass org/springframework/data/mapping/model/Property
+instanceKlass org/springframework/data/redis/core/mapping/RedisPersistentEntity
+instanceKlass org/springframework/data/keyvalue/core/mapping/KeyValuePersistentEntity
+instanceKlass org/springframework/data/mapping/model/MutablePersistentEntity
+instanceKlass org/springframework/data/mapping/PersistentEntity
+instanceKlass org/springframework/data/util/TypeInformation
+instanceKlass org/springframework/data/keyvalue/core/mapping/KeySpaceResolver
+instanceKlass org/springframework/boot/autoconfigure/cache/CacheProperties$Caffeine
+instanceKlass org/springframework/boot/autoconfigure/cache/CacheProperties$Couchbase
+instanceKlass org/springframework/boot/autoconfigure/cache/CacheProperties$Infinispan
+instanceKlass org/springframework/boot/autoconfigure/cache/CacheProperties$JCache
+instanceKlass org/springframework/boot/autoconfigure/cache/CacheProperties$EhCache
+instanceKlass org/springframework/boot/autoconfigure/cache/CacheProperties$Redis
+instanceKlass org/springframework/boot/autoconfigure/data/redis/RedisProperties$Cluster
+instanceKlass org/springframework/boot/autoconfigure/data/redis/RedisProperties$Lettuce
+instanceKlass org/springframework/boot/autoconfigure/data/redis/RedisProperties$Jedis
+instanceKlass org/apache/ibatis/session/Configuration
+instanceKlass org/springframework/boot/autoconfigure/jdbc/DataSourceProperties$Xa
+instanceKlass org/springframework/boot/autoconfigure/task/TaskExecutionProperties$Shutdown
+instanceKlass org/springframework/boot/autoconfigure/task/TaskExecutionProperties$Pool
+instanceKlass org/springframework/boot/context/properties/DeprecatedConfigurationProperty
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/WebMvcProperties$Async
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/WebMvcProperties$Pathmatch
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/WebMvcProperties$Contentnegotiation
+instanceKlass org/springframework/validation/MessageCodeFormatter
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/WebMvcProperties$Format
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/WebMvcProperties$Servlet
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/WebMvcProperties$View
+instanceKlass org/springframework/boot/autoconfigure/web/ServerProperties$Netty
+instanceKlass org/springframework/boot/autoconfigure/web/ServerProperties$Undertow
+instanceKlass org/springframework/boot/autoconfigure/web/ServerProperties$Jetty
+instanceKlass org/springframework/boot/autoconfigure/web/ServerProperties$Tomcat
+instanceKlass org/springframework/boot/web/server/Http2
+instanceKlass org/springframework/boot/web/server/Compression
+instanceKlass org/springframework/boot/web/server/Ssl
+instanceKlass org/springframework/boot/autoconfigure/web/ErrorProperties
+instanceKlass org/springframework/boot/autoconfigure/web/ServerProperties$Servlet
+instanceKlass org/springframework/boot/context/properties/ConfigurationPropertiesBean
+instanceKlass org/springframework/context/annotation/ConfigurationClassPostProcessor$$Lambda$333
+instanceKlass org/springframework/web/multipart/commons/CommonsFileUploadSupport
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/MultipartAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/HttpEncodingAutoConfiguration$LocaleCharsetMappingsCustomizer
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/MultipartProperties
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/HttpEncodingAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/EmbeddedWebServerFactoryCustomizerAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer
+instanceKlass org/springframework/boot/autoconfigure/web/embedded/EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration
+instanceKlass org/springframework/boot/web/client/RestTemplateBuilder
+instanceKlass org/springframework/boot/autoconfigure/web/client/RestTemplateAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/web/client/RestTemplateBuilderConfigurer
+instanceKlass org/springframework/transaction/reactive/TransactionalOperator
+instanceKlass org/springframework/transaction/ReactiveTransactionManager
+instanceKlass org/springframework/boot/autoconfigure/transaction/TransactionAutoConfiguration
+instanceKlass org/springframework/transaction/support/DefaultTransactionDefinition
+instanceKlass org/springframework/transaction/TransactionDefinition
+instanceKlass org/springframework/boot/autoconfigure/transaction/TransactionProperties
+instanceKlass org/springframework/boot/autoconfigure/transaction/PlatformTransactionManagerCustomizer
+instanceKlass org/springframework/boot/autoconfigure/data/neo4j/Neo4jDataAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/transaction/jta/JtaAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/transaction/TransactionAutoConfiguration$TransactionTemplateConfiguration
+instanceKlass org/springframework/transaction/support/TransactionOperations
+instanceKlass org/springframework/boot/autoconfigure/jdbc/DataSourceTransactionManagerAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/transaction/TransactionManagerCustomizers
+instanceKlass org/springframework/transaction/support/AbstractPlatformTransactionManager
+instanceKlass org/springframework/transaction/support/ResourceTransactionManager
+instanceKlass org/springframework/boot/autoconfigure/jdbc/DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration
+instanceKlass org/springframework/boot/task/TaskSchedulerBuilder
+instanceKlass org/springframework/boot/autoconfigure/task/TaskSchedulingAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/jdbc/JdbcTemplateAutoConfiguration
+instanceKlass org/springframework/jdbc/core/namedparam/NamedParameterJdbcTemplate
+instanceKlass org/springframework/scheduling/annotation/SchedulingConfigurer
+instanceKlass org/springframework/boot/autoconfigure/task/TaskSchedulingProperties
+instanceKlass org/springframework/boot/autoconfigure/jdbc/NamedParameterJdbcTemplateConfiguration
+instanceKlass org/springframework/jdbc/core/namedparam/NamedParameterJdbcOperations
+instanceKlass org/springframework/boot/autoconfigure/jdbc/JdbcProperties
+instanceKlass org/springframework/boot/autoconfigure/jdbc/JdbcTemplateConfiguration
+instanceKlass org/springframework/boot/autoconfigure/info/ProjectInfoAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/info/ProjectInfoProperties
+instanceKlass org/springframework/boot/autoconfigure/data/web/SpringDataWebAutoConfiguration
+instanceKlass org/springframework/data/web/config/SpringDataJacksonConfiguration
+instanceKlass org/springframework/data/web/config/SortHandlerMethodArgumentResolverCustomizer
+instanceKlass org/springframework/data/web/SortHandlerMethodArgumentResolverSupport
+instanceKlass org/springframework/data/web/SortArgumentResolver
+instanceKlass org/springframework/data/web/config/ProjectingArgumentResolverRegistrar$ProjectingArgumentResolverBeanPostProcessor
+instanceKlass org/springframework/data/web/config/PageableHandlerMethodArgumentResolverCustomizer
+instanceKlass org/springframework/boot/autoconfigure/data/rest/RepositoryRestMvcAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/data/web/SpringDataWebProperties
+instanceKlass org/springframework/boot/autoconfigure/http/HttpMessageConvertersAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/http/JsonbHttpMessageConvertersConfiguration
+instanceKlass org/springframework/boot/autoconfigure/http/GsonHttpMessageConvertersConfiguration
+instanceKlass org/springframework/boot/autoconfigure/http/JacksonHttpMessageConvertersConfiguration
+instanceKlass org/springframework/boot/autoconfigure/jsonb/JsonbAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/gson/GsonAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/http/JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration
+instanceKlass org/springframework/boot/autoconfigure/http/HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration
+instanceKlass org/springframework/boot/autoconfigure/jackson/JacksonAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/jackson/JacksonAutoConfiguration$JacksonObjectMapperConfiguration
+instanceKlass org/springframework/boot/autoconfigure/jackson/JacksonAutoConfiguration$ParameterNamesModuleConfiguration
+instanceKlass org/springframework/boot/autoconfigure/jackson/JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration
+instanceKlass org/springframework/boot/autoconfigure/jackson/JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration$StandardJackson2ObjectMapperBuilderCustomizer
+instanceKlass org/springframework/boot/autoconfigure/jackson/Jackson2ObjectMapperBuilderCustomizer
+instanceKlass org/springframework/boot/autoconfigure/jackson/JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration
+instanceKlass org/springframework/data/redis/core/convert/ReferenceResolverImpl
+instanceKlass org/springframework/data/redis/core/convert/ReferenceResolver
+instanceKlass org/springframework/beans/factory/config/ConstructorArgumentValues$$Lambda$332
+instanceKlass org/springframework/beans/factory/config/ConstructorArgumentValues$$Lambda$331
+instanceKlass org/springframework/beans/factory/config/ConstructorArgumentValues$$Lambda$330
+instanceKlass org/springframework/boot/autoconfigure/data/redis/RedisRepositoriesAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/jackson/JacksonProperties
+instanceKlass org/springframework/util/StopWatch$TaskInfo
+instanceKlass org/springframework/data/repository/config/RepositoryConfigurationSourceSupport$$Lambda$329
+instanceKlass org/springframework/data/util/Streamable$$Lambda$328
+instanceKlass org/springframework/data/repository/config/RepositoryConfigurationSourceSupport$$Lambda$327
+instanceKlass org/springframework/data/repository/config/RepositoryConfigurationSourceSupport$$Lambda$326
+instanceKlass org/springframework/data/repository/NoRepositoryBean
+instanceKlass org/springframework/data/repository/RepositoryDefinition
+instanceKlass org/springframework/data/repository/Repository
+instanceKlass org/springframework/data/repository/config/AnnotationRepositoryConfigurationSource$$Lambda$325
+instanceKlass org/springframework/data/util/LazyStreamable
+instanceKlass org/springframework/data/util/Streamable
+instanceKlass org/springframework/data/repository/config/AnnotationRepositoryConfigurationSource$$Lambda$324
+instanceKlass org/springframework/data/util/Lazy$$Lambda$323
+instanceKlass org/springframework/data/util/Lazy
+instanceKlass org/springframework/data/repository/config/CustomRepositoryImplementationDetector$$Lambda$322
+instanceKlass org/springframework/data/repository/config/RepositoryConfigurationSourceSupport$SpringImplementationDetectionConfiguration
+instanceKlass org/springframework/data/repository/config/ImplementationDetectionConfiguration
+instanceKlass org/springframework/data/repository/config/CustomRepositoryImplementationDetector
+instanceKlass org/springframework/data/repository/config/FragmentMetadata
+instanceKlass org/springframework/data/repository/config/RepositoryBeanDefinitionBuilder
+instanceKlass org/springframework/data/keyvalue/repository/config/KeyValueRepositoryConfigurationExtension$$Lambda$321
+instanceKlass org/springframework/data/keyvalue/core/KeyValueTemplate
+instanceKlass org/springframework/data/keyvalue/core/KeyValueOperations
+instanceKlass org/springframework/data/keyvalue/repository/config/KeyValueRepositoryConfigurationExtension$$Lambda$320
+instanceKlass org/springframework/data/keyvalue/core/AbstractKeyValueAdapter
+instanceKlass org/springframework/data/keyvalue/core/KeyValueAdapter
+instanceKlass org/springframework/data/redis/repository/configuration/RedisRepositoryConfigurationExtension$$Lambda$319
+instanceKlass org/springframework/data/redis/core/convert/MappingRedisConverter
+instanceKlass org/springframework/data/redis/core/convert/RedisConverter
+instanceKlass org/springframework/data/convert/EntityConverter
+instanceKlass org/springframework/data/convert/EntityWriter
+instanceKlass org/springframework/data/convert/EntityReader
+instanceKlass org/springframework/data/redis/repository/configuration/RedisRepositoryConfigurationExtension$$Lambda$318
+instanceKlass org/springframework/data/redis/repository/configuration/RedisRepositoryConfigurationExtension$$Lambda$317
+instanceKlass org/springframework/data/convert/CustomConversions
+instanceKlass org/springframework/data/redis/repository/configuration/RedisRepositoryConfigurationExtension$$Lambda$316
+instanceKlass org/springframework/beans/factory/config/ConstructorArgumentValues$ValueHolder
+instanceKlass org/springframework/beans/factory/config/ConstructorArgumentValues
+instanceKlass org/springframework/data/redis/core/convert/MappingConfiguration
+instanceKlass org/springframework/data/repository/config/RepositoryConfigurationSource$$Lambda$315
+instanceKlass org/springframework/data/mapping/context/AbstractMappingContext
+instanceKlass org/springframework/data/mapping/context/MappingContext
+instanceKlass org/springframework/data/redis/repository/configuration/RedisRepositoryConfigurationExtension$$Lambda$314
+instanceKlass org/springframework/data/repository/config/AnnotationRepositoryConfigurationSource$$Lambda$313
+instanceKlass org/springframework/data/repository/config/RepositoryConfigurationExtensionSupport
+instanceKlass org/springframework/data/repository/config/RepositoryConfigurationExtension
+instanceKlass org/springframework/data/repository/core/support/RepositoryFactorySupport
+instanceKlass org/springframework/data/repository/config/AnnotationRepositoryConfigurationSource$$Lambda$312
+instanceKlass org/springframework/data/repository/query/parser/AbstractQueryCreator
+instanceKlass org/springframework/data/keyvalue/repository/query/KeyValuePartTreeQuery
+instanceKlass org/springframework/data/repository/query/RepositoryQuery
+instanceKlass org/springframework/data/repository/config/RepositoryBeanDefinitionRegistrarSupport
+instanceKlass org/springframework/data/repository/config/RepositoryBeanNameGenerator
+instanceKlass org/springframework/data/config/ConfigurationUtils
+instanceKlass org/springframework/data/repository/config/RepositoryConfigurationSourceSupport
+instanceKlass org/springframework/data/repository/config/RepositoryConfigurationSource
+instanceKlass org/springframework/data/keyvalue/repository/config/QueryCreatorType
+instanceKlass org/springframework/data/redis/core/convert/KeyspaceConfiguration
+instanceKlass org/springframework/data/redis/core/index/IndexConfiguration
+instanceKlass org/springframework/data/redis/core/index/ConfigurableIndexDefinitionProvider
+instanceKlass org/springframework/data/redis/core/index/IndexDefinitionRegistry
+instanceKlass org/springframework/data/redis/core/index/IndexDefinitionProvider
+instanceKlass org/springframework/data/repository/config/DefaultRepositoryBaseClass
+instanceKlass org/springframework/boot/autoconfigure/data/redis/RedisRepositoriesRegistrar$EnableRedisRepositoriesConfiguration
+instanceKlass org/springframework/data/repository/config/RepositoryConfigurationDelegate
+instanceKlass org/springframework/data/repository/core/support/RepositoryFactoryBeanSupport
+instanceKlass org/springframework/data/repository/core/support/RepositoryFactoryInformation
+instanceKlass org/springframework/boot/autoconfigure/data/redis/RedisReactiveAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/dao/PersistenceExceptionTranslationAutoConfiguration
+instanceKlass org/springframework/context/support/DefaultLifecycleProcessor
+instanceKlass org/springframework/context/LifecycleProcessor
+instanceKlass org/springframework/boot/autoconfigure/context/LifecycleAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/context/ConfigurationPropertiesAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/cache/CacheAutoConfiguration$CacheManagerValidator
+instanceKlass org/springframework/boot/autoconfigure/context/LifecycleProperties
+instanceKlass org/springframework/boot/autoconfigure/cache/CacheAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/AbstractDependsOnBeanFactoryPostProcessor
+instanceKlass org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/hazelcast/HazelcastAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/data/couchbase/CouchbaseDataAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/cache/RedisCacheManagerBuilderCustomizer
+instanceKlass org/springframework/data/redis/cache/RedisCacheManager$RedisCacheManagerBuilder
+instanceKlass org/springframework/cache/support/AbstractCacheManager
+instanceKlass org/springframework/boot/autoconfigure/cache/CacheManagerCustomizers
+instanceKlass org/springframework/data/redis/core/RedisAccessor
+instanceKlass org/springframework/boot/autoconfigure/data/redis/RedisAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/data/redis/RedisProperties$Sentinel
+instanceKlass org/springframework/boot/autoconfigure/data/redis/RedisConnectionConfiguration$ConnectionInfo
+instanceKlass org/springframework/data/redis/connection/RedisStandaloneConfiguration
+instanceKlass org/springframework/data/redis/connection/RedisConfiguration$WithHostAndPort
+instanceKlass org/springframework/data/redis/connection/RedisSentinelConfiguration
+instanceKlass org/springframework/data/redis/connection/RedisConfiguration$SentinelConfiguration
+instanceKlass org/springframework/data/redis/connection/RedisConfiguration$WithDatabaseIndex
+instanceKlass org/springframework/data/redis/connection/RedisClusterConfiguration
+instanceKlass org/springframework/data/redis/connection/RedisConfiguration$ClusterConfiguration
+instanceKlass org/springframework/data/redis/connection/RedisConfiguration$WithPassword
+instanceKlass org/springframework/data/redis/connection/RedisConfiguration$WithAuthentication
+instanceKlass org/springframework/data/redis/connection/RedisConfiguration
+instanceKlass org/springframework/boot/autoconfigure/data/redis/RedisProperties
+instanceKlass io/lettuce/core/ClientOptions
+instanceKlass io/lettuce/core/ClientOptions$Builder
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceClientConfiguration
+instanceKlass org/springframework/boot/autoconfigure/data/redis/LettuceClientConfigurationBuilderCustomizer
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceClientConfiguration$LettuceClientConfigurationBuilder
+instanceKlass org/springframework/boot/autoconfigure/data/redis/RedisProperties$Pool
+instanceKlass io/lettuce/core/resource/DefaultClientResources
+instanceKlass org/springframework/data/redis/connection/lettuce/LettuceConnectionFactory
+instanceKlass org/springframework/boot/autoconfigure/data/redis/RedisConnectionConfiguration
+instanceKlass org/springframework/boot/availability/ApplicationAvailabilityBean
+instanceKlass org/springframework/boot/availability/ApplicationAvailability
+instanceKlass org/springframework/boot/autoconfigure/availability/ApplicationAvailabilityAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/aop/AopAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/aop/AopAutoConfiguration$ClassProxyingConfiguration
+instanceKlass io/lettuce/core/resource/ClientResources
+instanceKlass org/springframework/boot/autoconfigure/admin/SpringApplicationAdminJmxAutoConfiguration
+instanceKlass org/springframework/boot/admin/SpringApplicationAdminMXBeanRegistrar
+instanceKlass org/springframework/jmx/export/naming/MetadataNamingStrategy
+instanceKlass org/springframework/jmx/export/naming/ObjectNamingStrategy
+instanceKlass org/springframework/boot/autoconfigure/jmx/JmxAutoConfiguration
+instanceKlass org/mybatis/spring/boot/autoconfigure/MybatisAutoConfiguration$MapperScannerRegistrarNotFoundConfiguration
+instanceKlass org/mybatis/spring/boot/autoconfigure/MybatisProperties
+instanceKlass org/mybatis/spring/boot/autoconfigure/MybatisAutoConfiguration$AutoConfiguredMapperScannerRegistrar$$Lambda$311
+instanceKlass org/mybatis/spring/SqlSessionTemplate
+instanceKlass org/apache/ibatis/session/SqlSession
+instanceKlass org/mybatis/spring/boot/autoconfigure/MybatisAutoConfiguration
+instanceKlass org/mybatis/spring/mapper/MapperScannerConfigurer
+instanceKlass org/springframework/dao/support/DaoSupport
+instanceKlass org/mybatis/spring/boot/autoconfigure/MybatisLanguageDriverAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/jdbc/DataSourceAutoConfiguration
+instanceKlass org/springframework/boot/jdbc/metadata/DataSourcePoolMetadata
+instanceKlass org/springframework/boot/jdbc/metadata/DataSourcePoolMetadataProvider
+instanceKlass org/springframework/boot/autoconfigure/jdbc/metadata/DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration
+instanceKlass org/springframework/boot/autoconfigure/condition/OnBeanCondition$SingleCandidateSpec$$Lambda$310
+instanceKlass org/springframework/boot/autoconfigure/jdbc/DataSourceInitializationConfiguration
+instanceKlass org/springframework/boot/autoconfigure/jdbc/metadata/DataSourcePoolMetadataProvidersConfiguration
+instanceKlass org/springframework/boot/autoconfigure/jdbc/DataSourceProperties
+instanceKlass org/springframework/boot/autoconfigure/jdbc/DataSourceInitializationConfiguration$Registrar$$Lambda$309
+instanceKlass org/springframework/boot/autoconfigure/jdbc/DataSourceInitializerPostProcessor
+instanceKlass org/springframework/boot/autoconfigure/jdbc/DataSourceInitializerInvoker
+instanceKlass javax/sql/XADataSource
+instanceKlass org/springframework/boot/web/servlet/filter/OrderedFilter
+instanceKlass org/springframework/boot/autoconfigure/validation/ValidationAutoConfiguration
+instanceKlass org/springframework/web/context/request/RequestContextListener
+instanceKlass javax/servlet/ServletRequestListener
+instanceKlass org/springframework/boot/autoconfigure/condition/OnBeanCondition$$Lambda$308
+instanceKlass org/springframework/boot/autoconfigure/http/HttpMessageConverters
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter
+instanceKlass org/springframework/lang/Nullable
+instanceKlass org/springframework/web/util/pattern/PathPatternParser
+instanceKlass org/springframework/web/util/UrlPathHelper
+instanceKlass org/springframework/web/servlet/mvc/HttpRequestHandlerAdapter
+instanceKlass org/springframework/web/method/support/CompositeUriComponentsContributor
+instanceKlass org/springframework/web/method/support/UriComponentsContributor
+instanceKlass org/springframework/web/servlet/function/support/HandlerFunctionAdapter
+instanceKlass org/springframework/web/servlet/handler/HandlerMappingIntrospector
+instanceKlass org/springframework/web/cors/CorsConfigurationSource
+instanceKlass org/springframework/web/servlet/mvc/SimpleControllerHandlerAdapter
+instanceKlass org/springframework/web/servlet/RequestToViewNameTranslator
+instanceKlass org/springframework/web/servlet/config/annotation/InterceptorRegistry
+instanceKlass org/springframework/web/servlet/config/annotation/CorsRegistry
+instanceKlass org/springframework/web/servlet/config/annotation/ViewControllerRegistry
+instanceKlass org/springframework/web/servlet/config/annotation/DefaultServletHandlerConfigurer
+instanceKlass org/springframework/web/servlet/config/annotation/AsyncSupportConfigurer
+instanceKlass org/springframework/web/servlet/config/annotation/ContentNegotiationConfigurer
+instanceKlass org/springframework/web/servlet/config/annotation/PathMatchConfigurer
+instanceKlass org/springframework/web/servlet/config/annotation/ViewResolverRegistry
+instanceKlass org/springframework/validation/MessageCodesResolver
+instanceKlass org/springframework/web/servlet/handler/AbstractHandlerExceptionResolver
+instanceKlass org/springframework/web/bind/support/ConfigurableWebBindingInitializer
+instanceKlass org/springframework/web/bind/support/WebBindingInitializer
+instanceKlass org/springframework/web/servlet/config/annotation/ResourceHandlerRegistration
+instanceKlass javax/servlet/ServletContext
+instanceKlass org/springframework/web/servlet/HandlerAdapter
+instanceKlass org/springframework/validation/Validator
+instanceKlass org/springframework/web/servlet/handler/MatchableHandlerMapping
+instanceKlass org/springframework/web/servlet/HandlerMapping
+instanceKlass org/springframework/web/servlet/resource/ResourceUrlProvider
+instanceKlass org/springframework/web/accept/ContentNegotiationManager
+instanceKlass org/springframework/web/accept/MediaTypeFileExtensionResolver
+instanceKlass org/springframework/web/accept/ContentNegotiationStrategy
+instanceKlass org/springframework/web/servlet/config/annotation/ResourceHandlerRegistry
+instanceKlass org/springframework/web/servlet/ThemeResolver
+instanceKlass org/springframework/web/servlet/LocaleResolver
+instanceKlass org/springframework/web/servlet/FlashMapManager
+instanceKlass org/springframework/web/servlet/config/annotation/WebMvcConfigurationSupport
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/error/ErrorMvcAutoConfiguration$PreserveErrorControllerTargetClassPostProcessor
+instanceKlass org/springframework/boot/web/servlet/error/DefaultErrorAttributes
+instanceKlass org/springframework/web/servlet/HandlerExceptionResolver
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/error/AbstractErrorController
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/error/ErrorMvcAutoConfiguration$ErrorPageCustomizer
+instanceKlass org/springframework/boot/web/server/ErrorPageRegistrar
+instanceKlass org/springframework/boot/web/servlet/error/ErrorController
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/error/ErrorMvcAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/error/DefaultErrorViewResolver
+instanceKlass org/springframework/boot/web/servlet/error/ErrorAttributes
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/error/ErrorViewResolver
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/error/ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties
+instanceKlass org/springframework/web/servlet/View
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/error/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration
+instanceKlass org/springframework/context/support/ApplicationObjectSupport
+instanceKlass org/springframework/web/servlet/ViewResolver
+instanceKlass org/springframework/boot/autoconfigure/task/TaskExecutionAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/DispatcherServletAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/DispatcherServletPath
+instanceKlass org/springframework/boot/task/TaskExecutorBuilder
+instanceKlass org/springframework/boot/autoconfigure/task/TaskExecutionProperties
+instanceKlass org/springframework/aop/scope/ScopedProxyUtils
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/DispatcherServletAutoConfiguration$DispatcherServletConfiguration
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/WebMvcProperties
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryAutoConfiguration$BeanPostProcessorsRegistrar$$Lambda$307
+instanceKlass org/springframework/boot/web/server/ErrorPageRegistrarBeanPostProcessor
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/TomcatServletWebServerFactoryCustomizer
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryCustomizer
+instanceKlass org/springframework/boot/web/server/AbstractConfigurableWebServerFactory
+instanceKlass org/springframework/boot/web/servlet/server/ConfigurableServletWebServerFactory
+instanceKlass org/springframework/boot/web/servlet/WebListenerRegistry
+instanceKlass org/springframework/boot/web/embedded/tomcat/ConfigurableTomcatWebServerFactory
+instanceKlass org/springframework/boot/web/server/ConfigurableWebServerFactory
+instanceKlass org/springframework/boot/web/server/ErrorPageRegistry
+instanceKlass org/springframework/boot/web/server/WebServerFactory
+instanceKlass org/springframework/beans/factory/ObjectProvider
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryAutoConfiguration$BeanPostProcessorsRegistrar$$Lambda$306
+instanceKlass org/springframework/boot/web/server/WebServerFactoryCustomizerBeanPostProcessor
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryConfiguration$EmbeddedUndertow
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryConfiguration$EmbeddedJetty
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryConfiguration$EmbeddedTomcat
+instanceKlass org/springframework/boot/autoconfigure/web/ServerProperties
+instanceKlass org/springframework/boot/autoconfigure/websocket/servlet/WebSocketServletAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/websocket/servlet/TomcatWebSocketServletWebServerCustomizer
+instanceKlass org/springframework/boot/web/server/WebServerFactoryCustomizer
+instanceKlass org/springframework/boot/autoconfigure/websocket/servlet/WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration
+instanceKlass org/springframework/boot/web/servlet/server/ServletWebServerFactory
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/context/PropertyPlaceholderAutoConfiguration
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationPackages$BasePackagesBeanDefinition$$Lambda$305
+instanceKlass org/springframework/cache/annotation/CachingConfigurer
+instanceKlass org/springframework/cache/interceptor/CacheOperationSource
+instanceKlass org/springframework/transaction/event/TransactionalEventListenerFactory
+instanceKlass org/springframework/aop/support/AbstractPointcutAdvisor
+instanceKlass org/springframework/aop/PointcutAdvisor
+instanceKlass org/springframework/aop/Advisor
+instanceKlass org/springframework/transaction/interceptor/TransactionAspectSupport
+instanceKlass org/aopalliance/intercept/MethodInterceptor
+instanceKlass org/aopalliance/intercept/Interceptor
+instanceKlass org/aopalliance/aop/Advice
+instanceKlass org/springframework/transaction/interceptor/TransactionAttributeSource
+instanceKlass org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory$FactoryBeanMethodTypeFinder
+instanceKlass org/springframework/data/redis/cache/RedisCacheConfiguration
+instanceKlass org/springframework/boot/autoconfigure/cache/CacheProperties
+instanceKlass org/springframework/context/annotation/BeanAnnotationHelper
+instanceKlass com/mchange/v2/c3p0/impl/AbstractIdentityTokenized
+instanceKlass com/mchange/v2/c3p0/impl/IdentityTokenized
+instanceKlass com/mchange/v2/c3p0/PooledDataSource
+instanceKlass javax/naming/Referenceable
+instanceKlass sun/security/util/ManifestEntryVerifier
+instanceKlass sun/security/util/DisabledAlgorithmConstraints$1
+instanceKlass sun/security/util/DisabledAlgorithmConstraints$Constraint
+instanceKlass sun/security/util/DisabledAlgorithmConstraints$Constraints
+instanceKlass sun/security/util/AbstractAlgorithmConstraints$1
+instanceKlass sun/security/util/AlgorithmDecomposer
+instanceKlass sun/security/util/AbstractAlgorithmConstraints
+instanceKlass java/security/AlgorithmConstraints
+instanceKlass sun/security/util/SignatureFileVerifier
+instanceKlass org/springframework/util/ReflectionUtils$$Lambda$304
+instanceKlass org/springframework/util/ReflectionUtils$MethodCallback
+instanceKlass org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory$$Lambda$303
+instanceKlass org/springframework/boot/autoconfigure/condition/OnBeanCondition$MatchResult
+instanceKlass org/springframework/core/io/support/PropertiesLoaderSupport
+instanceKlass org/springframework/boot/autoconfigure/condition/OnBeanCondition$Spec$$Lambda$302
+instanceKlass org/springframework/boot/autoconfigure/condition/OnBeanCondition$Spec
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationPackages$BasePackages
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationPackages
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationPackages$PackageImports
+instanceKlass org/springframework/boot/context/properties/ConstructorBinding
+instanceKlass org/springframework/boot/context/properties/ConfigurationPropertiesBindConstructorProvider
+instanceKlass org/springframework/boot/context/properties/ConfigurationPropertiesBeanRegistrar$$Lambda$301
+instanceKlass org/springframework/boot/context/properties/EnableConfigurationPropertiesRegistrar$$Lambda$300
+instanceKlass org/springframework/boot/context/properties/EnableConfigurationPropertiesRegistrar$$Lambda$299
+instanceKlass org/springframework/boot/context/properties/EnableConfigurationPropertiesRegistrar$$Lambda$298
+instanceKlass org/springframework/boot/context/properties/ConfigurationPropertiesBeanRegistrar
+instanceKlass org/springframework/boot/context/properties/EnableConfigurationPropertiesRegistrar$$Lambda$297
+instanceKlass org/springframework/boot/validation/beanvalidation/MethodValidationExcludeFilter
+instanceKlass org/springframework/boot/context/properties/BoundConfigurationProperties$$Lambda$296
+instanceKlass org/springframework/boot/context/properties/BoundConfigurationProperties
+instanceKlass org/springframework/boot/context/properties/ConfigurationPropertiesBinder$$Lambda$295
+instanceKlass org/springframework/boot/context/properties/ConfigurationPropertiesBinder$$Lambda$294
+instanceKlass org/springframework/boot/context/properties/ConfigurationPropertiesBinder$Factory
+instanceKlass org/springframework/boot/context/properties/ConfigurationPropertiesBinder
+instanceKlass org/springframework/boot/context/properties/ConfigurationPropertiesBindingPostProcessor$$Lambda$293
+instanceKlass org/springframework/boot/context/properties/ConfigurationPropertiesBindingPostProcessor
+instanceKlass org/springframework/aop/config/AopConfigUtils
+instanceKlass org/springframework/context/annotation/ConfigurationClassBeanDefinitionReader$$Lambda$292
+instanceKlass org/springframework/context/annotation/ConfigurationClassBeanDefinitionReader$$Lambda$291
+instanceKlass org/springframework/beans/factory/annotation/RequiredAnnotationBeanPostProcessor
+instanceKlass org/springframework/context/annotation/ConfigurationClassBeanDefinitionReader$TrackedConditionEvaluator
+instanceKlass org/springframework/data/querydsl/QuerydslUtils
+instanceKlass org/springframework/data/web/config/EnableSpringDataWebSupport$SpringDataWebConfigurationImportSelector$$Lambda$290
+instanceKlass org/springframework/data/web/config/SpringDataJacksonModules
+instanceKlass org/springframework/data/web/config/EnableSpringDataWebSupport$SpringDataWebConfigurationImportSelector$$Lambda$289
+instanceKlass org/springframework/data/web/config/EnableSpringDataWebSupport$SpringDataWebConfigurationImportSelector$$Lambda$288
+instanceKlass org/springframework/data/web/config/SpringDataWebConfiguration
+instanceKlass org/springframework/data/web/config/EnableSpringDataWebSupport$SpringDataWebConfigurationImportSelector$$Lambda$287
+instanceKlass org/springframework/data/web/config/EnableSpringDataWebSupport$SpringDataWebConfigurationImportSelector$$Lambda$286
+instanceKlass org/springframework/data/web/config/EnableSpringDataWebSupport$SpringDataWebConfigurationImportSelector$$Lambda$285
+instanceKlass org/springframework/data/web/config/ProjectingArgumentResolverRegistrar
+instanceKlass org/springframework/data/web/config/EnableSpringDataWebSupport$SpringDataWebConfigurationImportSelector$$Lambda$284
+instanceKlass org/springframework/data/web/config/EnableSpringDataWebSupport$QuerydslActivator
+instanceKlass org/springframework/data/web/config/EnableSpringDataWebSupport$SpringDataWebConfigurationImportSelector
+instanceKlass org/springframework/data/web/config/EnableSpringDataWebSupport
+instanceKlass org/springframework/boot/autoconfigure/data/AbstractRepositoryConfigurationSourceSupport
+instanceKlass org/springframework/cache/Cache
+instanceKlass org/springframework/boot/autoconfigure/cache/CacheConfigurations$$Lambda$283
+instanceKlass org/springframework/boot/autoconfigure/cache/NoOpCacheConfiguration
+instanceKlass org/springframework/boot/autoconfigure/cache/SimpleCacheConfiguration
+instanceKlass org/springframework/boot/autoconfigure/cache/CaffeineCacheConfiguration
+instanceKlass org/springframework/boot/autoconfigure/cache/RedisCacheConfiguration
+instanceKlass org/springframework/boot/autoconfigure/cache/CouchbaseCacheConfiguration
+instanceKlass org/springframework/boot/autoconfigure/cache/JCacheCacheConfiguration
+instanceKlass org/springframework/boot/autoconfigure/cache/InfinispanCacheConfiguration
+instanceKlass org/springframework/boot/autoconfigure/cache/HazelcastCacheConfiguration
+instanceKlass org/springframework/boot/autoconfigure/cache/EhCacheCacheConfiguration
+instanceKlass org/springframework/boot/autoconfigure/cache/GenericCacheConfiguration
+instanceKlass org/springframework/boot/autoconfigure/cache/CacheConfigurations
+instanceKlass org/springframework/boot/autoconfigure/cache/CacheAutoConfiguration$CacheConfigurationImportSelector
+instanceKlass org/springframework/data/redis/connection/AbstractRedisConnection
+instanceKlass org/springframework/data/redis/connection/DefaultedRedisConnection
+instanceKlass org/springframework/data/redis/connection/RedisConnection
+instanceKlass org/springframework/data/redis/connection/RedisCommands
+instanceKlass org/springframework/data/redis/connection/RedisHyperLogLogCommands
+instanceKlass org/springframework/data/redis/connection/RedisGeoCommands
+instanceKlass org/springframework/data/redis/connection/RedisScriptingCommands
+instanceKlass org/springframework/data/redis/connection/RedisStreamCommands
+instanceKlass org/springframework/data/redis/connection/RedisServerCommands
+instanceKlass org/springframework/data/redis/connection/RedisConnectionCommands
+instanceKlass org/springframework/data/redis/connection/RedisPubSubCommands
+instanceKlass org/springframework/data/redis/connection/RedisTxCommands
+instanceKlass org/springframework/data/redis/connection/RedisHashCommands
+instanceKlass org/springframework/data/redis/connection/RedisZSetCommands
+instanceKlass org/springframework/data/redis/connection/RedisSetCommands
+instanceKlass org/springframework/data/redis/connection/RedisListCommands
+instanceKlass org/springframework/data/redis/connection/RedisStringCommands
+instanceKlass org/springframework/data/redis/connection/RedisKeyCommands
+instanceKlass io/lettuce/core/AbstractRedisClient
+instanceKlass org/mybatis/spring/boot/autoconfigure/MybatisAutoConfiguration$AutoConfiguredMapperScannerRegistrar
+instanceKlass org/springframework/boot/autoconfigure/jdbc/DataSourceInitializationConfiguration$Registrar
+instanceKlass org/springframework/boot/jdbc/DataSourceBuilder$DataSourceSettingsResolver$$Lambda$282
+instanceKlass org/springframework/boot/jdbc/DataSourceBuilder$DataSourceSettingsResolver$$Lambda$281
+instanceKlass org/springframework/boot/jdbc/DataSourceBuilder$DataSourceSettingsResolver$$Lambda$280
+instanceKlass org/springframework/boot/jdbc/DataSourceBuilder$DataSourceSettingsResolver$$Lambda$279
+instanceKlass org/springframework/jdbc/datasource/AbstractDataSource
+instanceKlass org/springframework/boot/jdbc/DataSourceBuilder$DataSourceSettingsResolver$$Lambda$278
+instanceKlass org/springframework/boot/jdbc/DataSourceBuilder$DataSourceSettingsResolver$$Lambda$277
+instanceKlass org/springframework/boot/jdbc/DataSourceBuilder$DataSourceSettingsResolver$$Lambda$276
+instanceKlass org/springframework/boot/jdbc/DataSourceBuilder$DataSourceSettingsResolver$$Lambda$275
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/jdbc/DataSourceBuilder$DataSourceSettingsResolver$$Lambda$274
+instanceKlass org/springframework/boot/context/properties/source/ConfigurationPropertyNameAliases
+instanceKlass com/zaxxer/hikari/HikariConfig
+instanceKlass com/zaxxer/hikari/HikariConfigMXBean
+instanceKlass org/springframework/boot/jdbc/DataSourceBuilder$DataSourceSettingsResolver$$Lambda$273
+instanceKlass org/springframework/boot/jdbc/DataSourceBuilder$DataSourceSettings
+instanceKlass org/springframework/boot/jdbc/DataSourceBuilder$DataSourceSettingsResolver
+instanceKlass org/springframework/boot/jdbc/DataSourceBuilder
+instanceKlass org/springframework/boot/autoconfigure/condition/AbstractNestedCondition$MemberOutcomes
+instanceKlass org/springframework/boot/autoconfigure/condition/AbstractNestedCondition$MemberConditions$$Lambda$272
+instanceKlass org/springframework/boot/autoconfigure/condition/AbstractNestedCondition$MemberMatchOutcomes
+instanceKlass org/springframework/boot/autoconfigure/condition/AbstractNestedCondition$MemberConditions
+instanceKlass org/springframework/boot/context/properties/bind/JavaBeanBinder$BeanProperty$$Lambda$271
+instanceKlass org/springframework/boot/context/properties/bind/JavaBeanBinder$Bean$$Lambda$270
+instanceKlass org/springframework/boot/context/properties/bind/JavaBeanBinder$BeanSupplier
+instanceKlass org/springframework/boot/context/properties/bind/JavaBeanBinder$Bean$$Lambda$269
+instanceKlass org/springframework/boot/context/properties/bind/JavaBeanBinder$Bean$$Lambda$268
+instanceKlass org/springframework/boot/context/properties/bind/JavaBeanBinder$Bean$$Lambda$267
+instanceKlass org/springframework/boot/context/properties/bind/JavaBeanBinder$Bean$$Lambda$266
+instanceKlass org/springframework/boot/context/properties/bind/JavaBeanBinder$BeanProperty
+instanceKlass org/springframework/boot/context/properties/bind/JavaBeanBinder$Bean$$Lambda$265
+instanceKlass org/springframework/boot/context/properties/bind/JavaBeanBinder$Bean$$Lambda$264
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Chain
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources$Cache
+instanceKlass org/springframework/boot/context/properties/bind/JavaBeanBinder$Bean$$Lambda$263
+instanceKlass org/springframework/boot/context/properties/bind/JavaBeanBinder$Bean$$Lambda$262
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass sun/invoke/util/ValueConversions$WrapperCache
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/MethodHandleImpl$BindCaller$T
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/MethodHandleImpl$ArrayAccessor
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass java/lang/invoke/MethodHandleImpl$BindCaller$T
+instanceKlass java/lang/invoke/MethodHandleImpl$BindCaller$2
+instanceKlass java/lang/invoke/MethodHandleImpl$BindCaller
+instanceKlass org/springframework/boot/autoconfigure/web/WebProperties$Resources
+instanceKlass org/springframework/boot/autoconfigure/web/ConditionalOnEnabledResourceChain
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/JspTemplateAvailabilityProvider
+instanceKlass org/springframework/boot/autoconfigure/thymeleaf/ThymeleafTemplateAvailabilityProvider
+instanceKlass org/springframework/boot/autoconfigure/mustache/MustacheTemplateAvailabilityProvider
+instanceKlass org/springframework/boot/autoconfigure/template/PathBasedTemplateAvailabilityProvider$TemplateAvailabilityProperties
+instanceKlass org/springframework/boot/autoconfigure/template/PathBasedTemplateAvailabilityProvider
+instanceKlass org/springframework/boot/autoconfigure/template/TemplateAvailabilityProviders$NoTemplateAvailabilityProvider
+instanceKlass org/springframework/boot/autoconfigure/template/TemplateAvailabilityProvider
+instanceKlass org/springframework/boot/autoconfigure/template/TemplateAvailabilityProviders
+instanceKlass org/springframework/boot/autoconfigure/condition/OnPropertyCondition$Spec
+instanceKlass org/springframework/boot/autoconfigure/condition/OnPropertyCondition$$Lambda$261
+instanceKlass com/rehome/weather/service/impl/WeatherTypeServiceImpl
+instanceKlass com/rehome/weather/service/WeatherTypeService
+instanceKlass com/rehome/weather/service/impl/WeatherServiceImpl
+instanceKlass com/rehome/weather/service/WeatherService
+instanceKlass com/rehome/weather/service/impl/StormServiceImpl
+instanceKlass com/rehome/weather/service/StormService
+instanceKlass com/rehome/weather/service/ScheduledService
+instanceKlass com/rehome/weather/controller/WeatherController
+instanceKlass com/rehome/weather/controller/StormController
+instanceKlass com/rehome/weather/config/service/TransactionManagementConfiguration
+instanceKlass org/springframework/transaction/annotation/TransactionManagementConfigurer
+instanceKlass com/rehome/weather/config/dao/SessionFactoryConfiguration
+instanceKlass com/rehome/weather/config/dao/RedisConfig
+instanceKlass com/rehome/weather/config/dao/DataSourceConfiguration
+instanceKlass org/apache/coyote/UpgradeProtocol
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ServletWebServerFactoryAutoConfiguration$BeanPostProcessorsRegistrar
+instanceKlass org/springframework/boot/web/servlet/RegistrationBean
+instanceKlass org/springframework/boot/web/servlet/ServletContextInitializer
+instanceKlass org/springframework/boot/autoconfigure/web/servlet/ConditionalOnMissingFilterBean
+instanceKlass org/apache/tomcat/websocket/server/WsSci
+instanceKlass javax/servlet/ServletContainerInitializer
+instanceKlass org/apache/catalina/startup/Tomcat
+instanceKlass org/springframework/boot/autoconfigure/condition/OnWebApplicationCondition$1
+instanceKlass org/springframework/boot/autoconfigure/condition/ConditionalOnMissingClass
+instanceKlass org/springframework/core/annotation/MergedAnnotationCollectors$$Lambda$260
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/core/annotation/TypeMappedAnnotation$$Lambda$259
+instanceKlass org/springframework/core/annotation/MergedAnnotationCollectors$$Lambda$258
+instanceKlass org/springframework/core/annotation/MergedAnnotationCollectors$$Lambda$257
+instanceKlass org/springframework/core/annotation/MergedAnnotationCollectors$$Lambda$256
+instanceKlass java/util/function/Function$$Lambda$255
+instanceKlass org/springframework/core/annotation/MergedAnnotationCollectors
+instanceKlass org/springframework/core/type/AnnotatedTypeMetadata$$Lambda$254
+instanceKlass org/springframework/core/type/AnnotatedTypeMetadata$$Lambda$253
+instanceKlass org/springframework/core/annotation/MergedAnnotationPredicates$UniquePredicate
+instanceKlass org/springframework/core/annotation/MergedAnnotationPredicates
+instanceKlass org/springframework/core/type/AnnotatedTypeMetadata$$Lambda$252
+instanceKlass org/springframework/context/annotation/ConfigurationClassParser$DeferredImportSelectorGroupingHandler$$Lambda$251
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationImportSelector$AutoConfigurationGroup$$Lambda$250
+instanceKlass org/springframework/context/annotation/DeferredImportSelector$Group$Entry
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationSorter$$Lambda$249
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationSorter$AutoConfigurationClasses$$Lambda$248
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigureOrder
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationSorter$$Lambda$247
+instanceKlass org/springframework/boot/autoconfigure/condition/ConditionalOnResource
+instanceKlass org/springframework/core/type/classreading/MergedAnnotationReadingVisitor$$Lambda$246
+instanceKlass org/springframework/boot/autoconfigure/condition/ConditionalOnMissingBean
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigureAfter
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigureBefore
+instanceKlass org/springframework/boot/autoconfigure/condition/ConditionalOnProperty
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationSorter$AutoConfigurationClass
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationSorter$AutoConfigurationClasses
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationSorter
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationImportSelector$AutoConfigurationGroup$$Lambda$245
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationImportSelector$AutoConfigurationGroup$$Lambda$244
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationImportSelector$AutoConfigurationGroup$$Lambda$243
+instanceKlass java/util/HashMap$HashMapSpliterator
+instanceKlass java/util/stream/Collectors$$Lambda$242
+instanceKlass java/util/stream/Collectors$$Lambda$241
+instanceKlass java/util/stream/Collectors$$Lambda$240
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationImportSelector$AutoConfigurationGroup$$Lambda$239
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationImportSelector$AutoConfigurationGroup$$Lambda$238
+instanceKlass org/springframework/boot/autoconfigure/condition/ConditionEvaluationReportAutoConfigurationImportListener
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationImportListener
+instanceKlass org/springframework/mail/javamail/JavaMailSenderImpl
+instanceKlass org/springframework/mail/javamail/JavaMailSender
+instanceKlass org/springframework/mail/MailSender
+instanceKlass org/springframework/data/redis/connection/RedisConnectionFactory
+instanceKlass org/springframework/cache/interceptor/AbstractCacheInvoker
+instanceKlass org/springframework/boot/autoconfigure/condition/ConditionalOnWebApplication
+instanceKlass org/springframework/boot/autoconfigure/condition/ConditionEvaluationReport$ConditionAndOutcome
+instanceKlass org/springframework/boot/autoconfigure/condition/ConditionEvaluationReport$ConditionAndOutcomes
+instanceKlass org/mybatis/spring/SqlSessionFactoryBean
+instanceKlass org/apache/ibatis/session/SqlSessionFactory
+instanceKlass org/apache/ibatis/scripting/LanguageDriver
+instanceKlass org/springframework/oxm/Unmarshaller
+instanceKlass org/springframework/oxm/Marshaller
+instanceKlass javax/websocket/server/ServerContainer
+instanceKlass javax/websocket/WebSocketContainer
+instanceKlass org/springframework/web/multipart/support/StandardServletMultipartResolver
+instanceKlass org/springframework/web/multipart/MultipartResolver
+instanceKlass javax/servlet/MultipartConfigElement
+instanceKlass org/springframework/web/filter/GenericFilterBean
+instanceKlass javax/servlet/Filter
+instanceKlass javax/servlet/GenericServlet
+instanceKlass javax/servlet/ServletConfig
+instanceKlass org/springframework/jmx/support/MBeanRegistrationSupport
+instanceKlass org/springframework/jmx/export/MBeanExportOperations
+instanceKlass org/springframework/jdbc/support/JdbcAccessor
+instanceKlass org/springframework/http/ReactiveHttpInputMessage
+instanceKlass org/springframework/http/HttpMessage
+instanceKlass org/springframework/jdbc/core/JdbcOperations
+instanceKlass org/springframework/http/server/reactive/HttpHandler
+instanceKlass org/springframework/http/client/support/HttpAccessor
+instanceKlass org/springframework/web/client/RestOperations
+instanceKlass org/springframework/http/codec/CodecConfigurer
+instanceKlass org/springframework/transaction/PlatformTransactionManager
+instanceKlass org/springframework/transaction/TransactionManager
+instanceKlass org/springframework/scheduling/TaskScheduler
+instanceKlass org/springframework/util/CustomizableThreadCreator
+instanceKlass org/springframework/web/servlet/config/annotation/WebMvcConfigurer
+instanceKlass org/springframework/data/web/PageableHandlerMethodArgumentResolverSupport
+instanceKlass org/springframework/scheduling/SchedulingTaskExecutor
+instanceKlass org/springframework/data/web/PageableArgumentResolver
+instanceKlass org/springframework/web/method/support/HandlerMethodArgumentResolver
+instanceKlass org/springframework/core/task/AsyncListenableTaskExecutor
+instanceKlass org/springframework/core/task/AsyncTaskExecutor
+instanceKlass org/springframework/core/task/TaskExecutor
+instanceKlass org/springframework/data/redis/repository/configuration/EnableRedisRepositories
+instanceKlass org/springframework/data/redis/core/ReactiveRedisTemplate
+instanceKlass org/springframework/data/redis/core/ReactiveRedisOperations
+instanceKlass org/springframework/data/redis/connection/ReactiveRedisConnectionFactory
+instanceKlass org/springframework/dao/support/PersistenceExceptionTranslator
+instanceKlass reactor/core/publisher/Flux
+instanceKlass reactor/core/CorePublisher
+instanceKlass org/reactivestreams/Publisher
+instanceKlass org/springframework/data/redis/core/RedisOperations
+instanceKlass io/netty/buffer/AbstractByteBufAllocator
+instanceKlass io/netty/buffer/ByteBufAllocator
+instanceKlass io/netty/buffer/ByteBufAllocatorMetricProvider
+instanceKlass javax/naming/ldap/LdapContext
+instanceKlass javax/naming/directory/DirContext
+instanceKlass javax/activation/MimeType
+instanceKlass org/springframework/aop/framework/ProxyConfig
+instanceKlass javax/servlet/ServletRegistration
+instanceKlass javax/servlet/Registration
+instanceKlass org/springframework/cache/CacheManager
+instanceKlass javax/sql/DataSource
+instanceKlass java/sql/Wrapper
+instanceKlass javax/sql/CommonDataSource
+instanceKlass org/springframework/boot/autoconfigure/condition/ConditionMessage$ItemsBuilder
+instanceKlass org/springframework/boot/autoconfigure/condition/ConditionMessage$Builder
+instanceKlass org/springframework/boot/autoconfigure/condition/ConditionMessage
+instanceKlass org/springframework/boot/autoconfigure/condition/ConditionalOnClass
+instanceKlass org/springframework/boot/autoconfigure/condition/OnClassCondition$ThreadedOutcomesResolver$$Lambda$237
+instanceKlass org/springframework/boot/autoconfigure/condition/OnClassCondition$ThreadedOutcomesResolver
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationImportSelector$$Lambda$236
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationImportSelector$$Lambda$235
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationImportSelector$AutoConfigurationGroup$$Lambda$234
+instanceKlass org/springframework/context/annotation/ConfigurationClassParser$DeferredImportSelectorGroupingHandler$$Lambda$233
+instanceKlass org/springframework/context/annotation/ConfigurationClassParser$DeferredImportSelectorGrouping
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationImportSelector$AutoConfigurationGroup
+instanceKlass org/springframework/context/annotation/DeferredImportSelector$Group
+instanceKlass org/springframework/context/annotation/ConfigurationClassParser$DeferredImportSelectorHandler$$Lambda$232
+instanceKlass org/springframework/context/annotation/ConfigurationClassParser$DeferredImportSelectorGroupingHandler
+instanceKlass org/springframework/cache/annotation/CachingConfigurationSelector$1
+instanceKlass org/springframework/cache/annotation/AbstractCachingConfiguration
+instanceKlass org/springframework/core/type/StandardMethodMetadata
+instanceKlass org/springframework/core/annotation/AnnotatedElementUtils
+instanceKlass org/springframework/scheduling/annotation/ScheduledAnnotationBeanPostProcessor
+instanceKlass org/springframework/scheduling/config/ScheduledTaskHolder
+instanceKlass org/springframework/boot/autoconfigure/condition/ConditionalOnSingleCandidate
+instanceKlass org/springframework/boot/autoconfigure/condition/ConditionalOnBean
+instanceKlass org/springframework/boot/autoconfigure/condition/ConditionOutcome
+instanceKlass org/springframework/boot/autoconfigure/condition/OnClassCondition$StandardOutcomesResolver
+instanceKlass org/springframework/boot/autoconfigure/condition/OnClassCondition$OutcomesResolver
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationMetadataLoader$PropertiesAutoConfigurationMetadata
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationMetadata
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationMetadataLoader
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationImportSelector$ConfigurationClassFilter
+instanceKlass org/springframework/boot/autoconfigure/condition/SpringBootCondition
+instanceKlass org/springframework/context/annotation/ConfigurationCondition
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationImportFilter
+instanceKlass java/util/function/Predicate$$Lambda$231
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationImportSelector$$Lambda$230
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationImportSelector$AutoConfigurationEntry
+instanceKlass org/springframework/beans/factory/annotation/Autowired
+instanceKlass org/springframework/transaction/annotation/AbstractTransactionManagementConfiguration
+instanceKlass org/springframework/context/annotation/ImportAware
+instanceKlass org/springframework/context/annotation/AutoProxyRegistrar
+instanceKlass org/springframework/transaction/annotation/TransactionManagementConfigurationSelector$1
+instanceKlass org/springframework/util/DefaultPropertiesPersister
+instanceKlass org/springframework/util/PropertiesPersister
+instanceKlass org/springframework/core/io/support/EncodedResource
+instanceKlass org/springframework/context/annotation/ConfigurationMethod
+instanceKlass com/rehome/weather/config/dao/JuheWeatherProperties
+instanceKlass org/springframework/core/annotation/MergedAnnotationsCollection$AnnotationsSpliterator
+instanceKlass org/springframework/cache/annotation/Cacheable
+instanceKlass org/springframework/cache/annotation/CacheEvict
+instanceKlass org/springframework/cache/annotation/CacheConfig
+instanceKlass org/springframework/stereotype/Service
+instanceKlass org/springframework/scheduling/annotation/Schedules
+instanceKlass org/springframework/scheduling/annotation/Scheduled
+instanceKlass org/apache/ibatis/annotations/Mapper
+instanceKlass org/springframework/core/type/classreading/MergedAnnotationReadingVisitor$ArrayVisitor$$Lambda$229
+instanceKlass org/springframework/web/bind/annotation/CrossOrigin
+instanceKlass org/springframework/boot/context/properties/EnableConfigurationPropertiesRegistrar
+instanceKlass org/springframework/boot/context/properties/EnableConfigurationProperties
+instanceKlass org/springframework/web/bind/annotation/Mapping
+instanceKlass org/springframework/web/bind/annotation/RequestMapping
+instanceKlass org/springframework/web/bind/annotation/ResponseBody
+instanceKlass org/springframework/stereotype/Controller
+instanceKlass org/springframework/web/bind/annotation/RestController
+instanceKlass org/springframework/transaction/annotation/EnableTransactionManagement
+instanceKlass org/springframework/boot/context/properties/ConfigurationProperties
+instanceKlass java/lang/Deprecated
+instanceKlass org/springframework/core/type/classreading/MergedAnnotationReadingVisitor$$Lambda$228
+instanceKlass org/springframework/core/type/classreading/SimpleMethodMetadataReadingVisitor$Source
+instanceKlass org/springframework/core/type/classreading/SimpleMethodMetadataReadingVisitor$$Lambda$227
+instanceKlass org/springframework/core/type/classreading/SimpleMethodMetadataReadingVisitor$$Lambda$226
+instanceKlass org/springframework/core/annotation/TypeMappedAnnotation$$Lambda$225
+instanceKlass org/springframework/asm/Type
+instanceKlass org/springframework/asm/AnnotationVisitor
+instanceKlass org/springframework/core/type/classreading/SimpleAnnotationMetadataReadingVisitor$$Lambda$224
+instanceKlass org/springframework/core/type/classreading/SimpleAnnotationMetadataReadingVisitor$$Lambda$223
+instanceKlass org/springframework/core/type/classreading/SimpleAnnotationMetadataReadingVisitor$Source
+instanceKlass org/springframework/core/type/AnnotationMetadata$$Lambda$222
+instanceKlass org/springframework/core/type/classreading/SimpleAnnotationMetadata
+instanceKlass org/springframework/core/annotation/MergedAnnotationsCollection
+instanceKlass org/springframework/core/type/classreading/SimpleAnnotationMetadataReadingVisitor$$Lambda$221
+instanceKlass org/springframework/core/type/classreading/SimpleMethodMetadata
+instanceKlass org/springframework/core/type/MethodMetadata
+instanceKlass org/springframework/asm/MethodVisitor
+instanceKlass org/springframework/asm/Context
+instanceKlass org/springframework/asm/Attribute
+instanceKlass sun/nio/ch/IOStatus
+instanceKlass java/nio/DirectByteBuffer$Deallocator
+instanceKlass sun/nio/ch/Util$BufferCache
+instanceKlass sun/nio/ch/Util$2
+instanceKlass sun/nio/ch/Util
+instanceKlass sun/nio/ch/NativeThread
+instanceKlass java/nio/channels/spi/AbstractInterruptibleChannel$1
+instanceKlass org/springframework/asm/ClassReader
+instanceKlass java/nio/channels/Channels
+instanceKlass sun/nio/ch/FileDispatcherImpl$1
+instanceKlass sun/nio/ch/NativeDispatcher
+instanceKlass sun/nio/ch/NativeThreadSet
+instanceKlass sun/nio/fs/WindowsChannelFactory$Flags
+instanceKlass sun/nio/fs/WindowsChannelFactory$1
+instanceKlass sun/nio/fs/WindowsChannelFactory
+instanceKlass sun/nio/fs/WindowsSecurityDescriptor
+instanceKlass java/nio/file/OpenOption
+instanceKlass org/springframework/asm/ClassVisitor
+instanceKlass org/springframework/core/type/classreading/SimpleMetadataReader
+instanceKlass org/springframework/util/AntPathMatcher$AntPathStringMatcher
+instanceKlass org/springframework/core/io/support/PathMatchingResourcePatternResolver$$Lambda$220
+instanceKlass org/springframework/core/env/AbstractPropertyResolver$$Lambda$219
+instanceKlass org/springframework/context/annotation/ParserStrategyUtils
+instanceKlass org/springframework/context/annotation/ComponentScanAnnotationParser$2
+instanceKlass org/springframework/context/annotation/PropertySource
+instanceKlass org/springframework/context/annotation/PropertySources
+instanceKlass org/springframework/context/annotation/ConfigurationClass
+instanceKlass org/springframework/context/annotation/ComponentScanAnnotationParser
+instanceKlass org/springframework/context/annotation/ConfigurationClassParser$SourceClass
+instanceKlass org/springframework/context/annotation/ConfigurationClassParser$DeferredImportSelectorHandler
+instanceKlass org/springframework/context/annotation/ImportRegistry
+instanceKlass org/springframework/context/annotation/ConfigurationClassParser$$Lambda$218
+instanceKlass org/springframework/context/annotation/ConfigurationClassParser$DeferredImportSelectorHolder
+instanceKlass org/springframework/context/annotation/ConfigurationClassParser$$Lambda$217
+instanceKlass org/springframework/core/io/support/DefaultPropertySourceFactory
+instanceKlass org/springframework/core/io/support/PropertySourceFactory
+instanceKlass org/springframework/context/annotation/ConfigurationClassParser
+instanceKlass org/springframework/context/annotation/ConfigurationClassPostProcessor$$Lambda$216
+instanceKlass org/springframework/core/annotation/AnnotationUtils
+instanceKlass org/springframework/context/annotation/Bean
+instanceKlass org/springframework/beans/BeanMetadataAttribute
+instanceKlass org/springframework/aop/framework/AopInfrastructureBean
+instanceKlass org/springframework/context/annotation/ImportResource
+instanceKlass org/springframework/core/Conventions
+instanceKlass org/springframework/context/annotation/ConfigurationClassUtils
+instanceKlass org/springframework/context/support/PostProcessorRegistrationDelegate$$Lambda$215
+instanceKlass org/springframework/beans/AbstractNestablePropertyAccessor$PropertyTokenHolder
+instanceKlass org/springframework/beans/factory/config/TypedStringValue
+instanceKlass org/springframework/context/annotation/ConfigurationClassBeanDefinitionReader
+instanceKlass org/springframework/core/convert/Property
+instanceKlass org/springframework/beans/AbstractNestablePropertyAccessor$PropertyHandler
+instanceKlass org/springframework/core/BridgeMethodResolver
+instanceKlass java/beans/SimpleBeanInfo
+instanceKlass com/sun/beans/WildcardTypeImpl
+instanceKlass com/sun/beans/TypeResolver
+instanceKlass java/beans/MethodRef
+instanceKlass com/sun/beans/util/Cache$CacheEntry
+instanceKlass com/sun/beans/util/Cache
+instanceKlass com/sun/beans/finder/AbstractFinder
+instanceKlass com/sun/beans/finder/ClassFinder
+instanceKlass org/springframework/beans/ExtendedBeanInfo
+instanceKlass java/beans/BeanInfo
+instanceKlass org/springframework/beans/ExtendedBeanInfoFactory
+instanceKlass org/springframework/beans/BeanInfoFactory
+instanceKlass org/springframework/beans/CachedIntrospectionResults
+instanceKlass org/springframework/beans/PropertyAccessorUtils
+instanceKlass org/springframework/beans/factory/support/DefaultSingletonBeanRegistry$$Lambda$214
+instanceKlass org/springframework/beans/factory/support/DefaultSingletonBeanRegistry$$Lambda$213
+instanceKlass org/springframework/beans/factory/support/DisposableBeanAdapter
+instanceKlass org/springframework/beans/factory/DisposableBean
+instanceKlass org/springframework/beans/factory/InitializingBean
+instanceKlass org/springframework/expression/spel/support/StandardTypeConverter
+instanceKlass org/springframework/expression/TypeConverter
+instanceKlass org/springframework/expression/spel/support/StandardTypeLocator
+instanceKlass org/springframework/expression/TypeLocator
+instanceKlass org/springframework/context/expression/BeanFactoryResolver
+instanceKlass org/springframework/expression/BeanResolver
+instanceKlass org/springframework/context/expression/EnvironmentAccessor
+instanceKlass org/springframework/context/expression/MapAccessor
+instanceKlass org/springframework/expression/spel/CompilablePropertyAccessor
+instanceKlass org/springframework/asm/Opcodes
+instanceKlass org/springframework/context/expression/BeanFactoryAccessor
+instanceKlass org/springframework/expression/spel/support/ReflectivePropertyAccessor
+instanceKlass org/springframework/context/expression/BeanExpressionContextAccessor
+instanceKlass org/springframework/expression/PropertyAccessor
+instanceKlass org/springframework/expression/TypedValue
+instanceKlass org/springframework/expression/spel/support/StandardOperatorOverloader
+instanceKlass org/springframework/expression/OperatorOverloader
+instanceKlass org/springframework/expression/spel/support/StandardTypeComparator
+instanceKlass org/springframework/expression/TypeComparator
+instanceKlass org/springframework/expression/spel/support/StandardEvaluationContext
+instanceKlass org/springframework/expression/EvaluationContext
+instanceKlass org/springframework/expression/common/LiteralExpression
+instanceKlass org/springframework/expression/Expression
+instanceKlass org/springframework/beans/factory/config/AutowiredPropertyMarker
+instanceKlass org/springframework/beans/factory/support/BeanDefinitionValueResolver
+instanceKlass org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory$$Lambda$212
+instanceKlass org/springframework/beans/BeanWrapper
+instanceKlass org/springframework/beans/ConfigurablePropertyAccessor
+instanceKlass org/springframework/beans/PropertyAccessor
+instanceKlass org/springframework/beans/factory/parsing/PassThroughSourceExtractor
+instanceKlass org/springframework/beans/factory/support/AbstractBeanFactory$$Lambda$211
+instanceKlass org/springframework/beans/factory/support/AbstractBeanFactory$$Lambda$210
+instanceKlass org/springframework/beans/factory/support/NullBean
+instanceKlass org/springframework/beans/factory/BeanFactoryUtils$$Lambda$209
+instanceKlass org/springframework/beans/factory/support/AbstractBeanFactory$BeanPostProcessorCache
+instanceKlass org/springframework/core/annotation/AnnotationAttributes$$Lambda$208
+instanceKlass org/springframework/core/annotation/TypeMappedAnnotation$$Lambda$207
+instanceKlass org/springframework/beans/factory/config/RuntimeBeanReference
+instanceKlass org/springframework/beans/factory/config/BeanReference
+instanceKlass org/springframework/beans/MutablePropertyValues
+instanceKlass org/springframework/beans/PropertyValues
+instanceKlass org/springframework/beans/factory/support/BeanDefinitionBuilder
+instanceKlass org/springframework/boot/autoconfigure/SharedMetadataReaderFactoryContextInitializer$CachingMetadataReaderFactoryPostProcessor$$Lambda$206
+instanceKlass org/springframework/boot/autoconfigure/SharedMetadataReaderFactoryContextInitializer$SharedMetadataReaderFactoryBean
+instanceKlass org/springframework/beans/factory/FactoryBean
+instanceKlass org/springframework/context/support/PostProcessorRegistrationDelegate
+instanceKlass org/springframework/boot/web/servlet/context/ServletWebServerApplicationContext$ExistingWebApplicationScopes$$Lambda$205
+instanceKlass org/springframework/web/context/support/WebApplicationContextUtils$WebRequestObjectFactory
+instanceKlass org/springframework/web/context/request/WebRequest
+instanceKlass org/springframework/web/context/request/RequestAttributes
+instanceKlass org/springframework/web/context/support/WebApplicationContextUtils$SessionObjectFactory
+instanceKlass javax/servlet/http/HttpSession
+instanceKlass org/springframework/web/context/support/WebApplicationContextUtils$ResponseObjectFactory
+instanceKlass javax/servlet/ServletResponse
+instanceKlass org/springframework/web/context/support/WebApplicationContextUtils$RequestObjectFactory
+instanceKlass javax/servlet/ServletRequest
+instanceKlass org/springframework/boot/autoconfigure/BackgroundPreinitializer$CharsetInitializer
+instanceKlass org/springframework/web/context/request/AbstractRequestAttributesScope
+instanceKlass org/springframework/beans/factory/config/Scope
+instanceKlass org/springframework/boot/autoconfigure/BackgroundPreinitializer$JacksonInitializer
+instanceKlass org/springframework/http/converter/json/Jackson2ObjectMapperBuilder$$Lambda$204
+instanceKlass org/springframework/boot/web/servlet/context/ServletWebServerApplicationContext$ExistingWebApplicationScopes
+instanceKlass org/springframework/http/converter/json/Jackson2ObjectMapperBuilder$$Lambda$203
+instanceKlass org/springframework/web/context/ServletContextAware
+instanceKlass org/springframework/http/converter/json/Jackson2ObjectMapperBuilder$$Lambda$202
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/web/context/support/ServletContextAwareProcessor
+instanceKlass com/fasterxml/jackson/databind/deser/ValueInstantiators$Base
+instanceKlass com/fasterxml/jackson/databind/type/TypeModifier
+instanceKlass org/springframework/context/support/ApplicationListenerDetector
+instanceKlass org/springframework/beans/factory/ObjectFactory
+instanceKlass org/springframework/context/MessageSourceAware
+instanceKlass com/fasterxml/jackson/databind/util/ArrayBuilders
+instanceKlass org/springframework/context/ApplicationEventPublisherAware
+instanceKlass org/springframework/beans/factory/config/BeanExpressionContext
+instanceKlass org/springframework/beans/factory/config/EmbeddedValueResolver
+instanceKlass org/springframework/util/StringValueResolver
+instanceKlass com/fasterxml/jackson/databind/ObjectMapper$1
+instanceKlass com/fasterxml/jackson/databind/Module$SetupContext
+instanceKlass org/springframework/context/support/ApplicationContextAwareProcessor
+instanceKlass com/fasterxml/jackson/datatype/jdk8/PackageVersion
+instanceKlass org/springframework/beans/support/ResourceEditorRegistrar
+instanceKlass org/springframework/beans/PropertyEditorRegistrar
+instanceKlass org/springframework/expression/spel/SpelParserConfiguration
+instanceKlass org/springframework/expression/common/TemplateAwareExpressionParser
+instanceKlass org/springframework/expression/ExpressionParser
+instanceKlass org/springframework/context/expression/StandardBeanExpressionResolver$1
+instanceKlass org/springframework/expression/ParserContext
+instanceKlass org/springframework/context/expression/StandardBeanExpressionResolver
+instanceKlass org/springframework/beans/factory/config/BeanExpressionResolver
+instanceKlass com/fasterxml/jackson/databind/module/SimpleKeyDeserializers
+instanceKlass com/fasterxml/jackson/databind/KeyDeserializer
+instanceKlass com/fasterxml/jackson/datatype/jsr310/ser/ZonedDateTimeSerializer$$Lambda$201
+instanceKlass com/fasterxml/jackson/datatype/jsr310/ser/ZonedDateTimeSerializer$$Lambda$200
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass com/fasterxml/jackson/datatype/jsr310/ser/ZonedDateTimeSerializer$$Lambda$199
+instanceKlass com/fasterxml/jackson/datatype/jsr310/ser/OffsetDateTimeSerializer$$Lambda$198
+instanceKlass com/fasterxml/jackson/datatype/jsr310/ser/OffsetDateTimeSerializer$$Lambda$197
+instanceKlass com/fasterxml/jackson/datatype/jsr310/ser/OffsetDateTimeSerializer$$Lambda$196
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass com/fasterxml/jackson/datatype/jsr310/ser/InstantSerializer$$Lambda$195
+instanceKlass com/fasterxml/jackson/datatype/jsr310/ser/InstantSerializer$$Lambda$194
+instanceKlass com/fasterxml/jackson/datatype/jsr310/ser/InstantSerializer$$Lambda$193
+instanceKlass java/util/function/ToLongFunction
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass com/fasterxml/jackson/databind/ser/Serializers$Base
+instanceKlass org/springframework/web/context/request/RequestContextHolder
+instanceKlass org/springframework/web/context/support/WebApplicationContextUtils
+instanceKlass org/springframework/beans/factory/BeanFactoryUtils
+instanceKlass org/springframework/boot/logging/DeferredLog$1
+instanceKlass com/fasterxml/jackson/databind/type/ClassKey
+instanceKlass org/springframework/boot/SpringApplicationRunListeners$$Lambda$192
+instanceKlass org/springframework/beans/factory/support/BeanDefinitionReaderUtils
+instanceKlass com/fasterxml/jackson/databind/deser/Deserializers$Base
+instanceKlass org/springframework/context/annotation/Description
+instanceKlass com/fasterxml/jackson/datatype/jsr310/deser/InstantDeserializer$$Lambda$191
+instanceKlass com/fasterxml/jackson/datatype/jsr310/deser/InstantDeserializer$$Lambda$190
+instanceKlass com/fasterxml/jackson/datatype/jsr310/deser/InstantDeserializer$$Lambda$189
+instanceKlass com/fasterxml/jackson/datatype/jsr310/deser/InstantDeserializer$$Lambda$188
+instanceKlass com/fasterxml/jackson/datatype/jsr310/deser/InstantDeserializer$$Lambda$187
+instanceKlass com/fasterxml/jackson/datatype/jsr310/deser/InstantDeserializer$$Lambda$186
+instanceKlass com/fasterxml/jackson/datatype/jsr310/deser/InstantDeserializer$$Lambda$185
+instanceKlass com/fasterxml/jackson/datatype/jsr310/deser/InstantDeserializer$$Lambda$184
+instanceKlass com/fasterxml/jackson/datatype/jsr310/deser/InstantDeserializer$$Lambda$183
+instanceKlass com/fasterxml/jackson/datatype/jsr310/deser/InstantDeserializer$$Lambda$182
+instanceKlass org/springframework/context/annotation/Role
+instanceKlass com/fasterxml/jackson/datatype/jsr310/deser/InstantDeserializer$FromDecimalArguments
+instanceKlass org/springframework/context/annotation/DependsOn
+instanceKlass com/fasterxml/jackson/datatype/jsr310/deser/InstantDeserializer$$Lambda$181
+instanceKlass com/fasterxml/jackson/datatype/jsr310/deser/InstantDeserializer$FromIntegerArguments
+instanceKlass org/springframework/context/annotation/Primary
+instanceKlass com/fasterxml/jackson/datatype/jsr310/deser/InstantDeserializer$$Lambda$180
+instanceKlass com/fasterxml/jackson/databind/JsonDeserializer
+instanceKlass com/fasterxml/jackson/databind/deser/NullValueProvider
+instanceKlass org/springframework/context/annotation/Lazy
+instanceKlass java/beans/FeatureDescriptor
+instanceKlass com/sun/beans/WeakCache
+instanceKlass java/beans/Introspector
+instanceKlass org/springframework/core/type/AnnotationMetadata$$Lambda$179
+instanceKlass org/springframework/core/type/AnnotationMetadata$$Lambda$178
+instanceKlass org/springframework/core/type/AnnotationMetadata$$Lambda$177
+instanceKlass org/springframework/context/annotation/AnnotationBeanNameGenerator$$Lambda$176
+instanceKlass com/fasterxml/jackson/databind/deser/ContextualDeserializer
+instanceKlass org/springframework/core/annotation/AbstractMergedAnnotation$$Lambda$175
+instanceKlass org/springframework/core/annotation/TypeMappedAnnotation$$Lambda$174
+instanceKlass com/fasterxml/jackson/core/Version
+instanceKlass java/util/stream/Collectors$$Lambda$173
+instanceKlass java/util/stream/Collectors$$Lambda$172
+instanceKlass com/fasterxml/jackson/core/util/VersionUtil
+instanceKlass org/springframework/core/type/AnnotationMetadata$$Lambda$171
+instanceKlass com/fasterxml/jackson/datatype/jsr310/PackageVersion
+instanceKlass org/springframework/core/type/AnnotationMetadata$$Lambda$170
+instanceKlass org/springframework/core/type/AnnotationMetadata$$Lambda$169
+instanceKlass org/springframework/core/annotation/TypeMappedAnnotations$Aggregate
+instanceKlass org/springframework/core/annotation/TypeMappedAnnotations$AggregatesCollector
+instanceKlass com/fasterxml/jackson/databind/Module
+instanceKlass org/springframework/core/annotation/TypeMappedAnnotations$AggregatesSpliterator
+instanceKlass com/fasterxml/jackson/databind/ser/BeanSerializerModifier
+instanceKlass com/fasterxml/jackson/databind/ser/Serializers
+instanceKlass com/fasterxml/jackson/databind/cfg/SerializerFactoryConfig
+instanceKlass org/springframework/core/annotation/AnnotationTypeMappings$$Lambda$168
+instanceKlass org/springframework/context/annotation/ScopeMetadata
+instanceKlass org/springframework/context/annotation/AdviceModeImportSelector
+instanceKlass org/springframework/scheduling/annotation/SchedulingConfiguration
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationPackages$Registrar
+instanceKlass org/springframework/boot/context/annotation/DeterminableImports
+instanceKlass org/springframework/context/annotation/ImportBeanDefinitionRegistrar
+instanceKlass com/fasterxml/jackson/databind/ser/std/StdJdkSerializers
+instanceKlass org/springframework/context/annotation/ComponentScans
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationImportSelector
+instanceKlass org/springframework/context/annotation/DeferredImportSelector
+instanceKlass org/springframework/context/annotation/ImportSelector
+instanceKlass com/fasterxml/jackson/databind/ser/ContextualSerializer
+instanceKlass org/springframework/core/annotation/AnnotationTypeMapping$$Lambda$167
+instanceKlass com/fasterxml/jackson/databind/ser/std/NumberSerializers
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationExcludeFilter
+instanceKlass org/springframework/boot/context/TypeExcludeFilter
+instanceKlass com/fasterxml/jackson/databind/ser/SerializerFactory
+instanceKlass java/lang/annotation/Repeatable
+instanceKlass org/springframework/boot/autoconfigure/AutoConfigurationPackage
+instanceKlass com/fasterxml/jackson/databind/deser/DeserializerCache
+instanceKlass com/fasterxml/jackson/databind/deser/std/StdKeyDeserializers
+instanceKlass com/fasterxml/jackson/databind/deser/KeyDeserializers
+instanceKlass com/fasterxml/jackson/databind/deser/ValueInstantiators
+instanceKlass com/fasterxml/jackson/databind/AbstractTypeResolver
+instanceKlass org/springframework/context/annotation/Configuration
+instanceKlass com/fasterxml/jackson/databind/deser/BeanDeserializerModifier
+instanceKlass com/fasterxml/jackson/databind/cfg/DeserializerFactoryConfig
+instanceKlass org/springframework/context/annotation/ComponentScan$Filter
+instanceKlass com/fasterxml/jackson/databind/PropertyName
+instanceKlass org/springframework/core/annotation/AnnotationTypeMapping$$Lambda$166
+instanceKlass com/fasterxml/jackson/databind/deser/Deserializers
+instanceKlass com/fasterxml/jackson/databind/deser/DeserializerFactory
+instanceKlass org/springframework/core/annotation/TypeMappedAnnotations$IsPresent
+instanceKlass org/springframework/context/annotation/Conditional
+instanceKlass org/springframework/cache/annotation/EnableCaching
+instanceKlass org/springframework/context/annotation/Import
+instanceKlass org/springframework/scheduling/annotation/EnableScheduling
+instanceKlass org/springframework/context/annotation/ComponentScan
+instanceKlass org/springframework/boot/autoconfigure/EnableAutoConfiguration
+instanceKlass org/springframework/boot/SpringBootConfiguration
+instanceKlass com/fasterxml/jackson/databind/ser/SerializerCache
+instanceKlass org/springframework/boot/autoconfigure/SpringBootApplication
+instanceKlass org/springframework/core/type/StandardClassMetadata
+instanceKlass com/fasterxml/jackson/databind/JsonSerializer
+instanceKlass com/fasterxml/jackson/databind/jsonschema/SchemaAware
+instanceKlass org/springframework/core/type/AnnotationMetadata
+instanceKlass org/springframework/core/type/AnnotatedTypeMetadata
+instanceKlass com/fasterxml/jackson/databind/jsonFormatVisitors/JsonFormatVisitable
+instanceKlass org/springframework/core/type/ClassMetadata
+instanceKlass org/springframework/beans/factory/annotation/AnnotatedBeanDefinition
+instanceKlass com/fasterxml/jackson/databind/DatabindContext
+instanceKlass com/fasterxml/jackson/databind/node/JsonNodeFactory
+instanceKlass com/fasterxml/jackson/databind/node/JsonNodeCreator
+instanceKlass org/springframework/util/xml/XmlValidationModeDetector
+instanceKlass org/springframework/util/xml/SimpleSaxErrorHandler
+instanceKlass org/springframework/beans/factory/xml/DefaultDocumentLoader
+instanceKlass org/springframework/beans/factory/xml/DocumentLoader
+instanceKlass org/springframework/beans/factory/parsing/NullSourceExtractor
+instanceKlass org/springframework/beans/factory/parsing/SourceExtractor
+instanceKlass org/springframework/beans/factory/parsing/EmptyReaderEventListener
+instanceKlass org/springframework/beans/factory/parsing/ReaderEventListener
+instanceKlass com/fasterxml/jackson/databind/cfg/ContextAttributes
+instanceKlass org/springframework/beans/factory/parsing/FailFastProblemReporter
+instanceKlass org/springframework/beans/factory/parsing/ProblemReporter
+instanceKlass com/fasterxml/jackson/core/util/Separators
+instanceKlass org/springframework/beans/factory/xml/DefaultBeanDefinitionDocumentReader
+instanceKlass org/springframework/beans/factory/xml/BeanDefinitionDocumentReader
+instanceKlass com/fasterxml/jackson/core/util/DefaultPrettyPrinter$NopIndenter
+instanceKlass com/fasterxml/jackson/core/util/DefaultPrettyPrinter$Indenter
+instanceKlass org/springframework/beans/factory/support/DefaultBeanNameGenerator
+instanceKlass com/fasterxml/jackson/databind/cfg/ConfigFeature
+instanceKlass org/springframework/core/Constants
+instanceKlass com/fasterxml/jackson/databind/cfg/ConfigOverride
+instanceKlass org/springframework/beans/factory/support/AbstractBeanDefinitionReader
+instanceKlass org/springframework/beans/factory/support/BeanDefinitionReader
+instanceKlass com/fasterxml/jackson/annotation/JsonFormat$Features
+instanceKlass com/fasterxml/jackson/annotation/JsonFormat$Value
+instanceKlass com/fasterxml/jackson/databind/cfg/MapperConfig
+instanceKlass org/springframework/boot/BeanDefinitionLoader
+instanceKlass org/springframework/boot/StartupInfoLogger$$Lambda$165
+instanceKlass ch/qos/logback/core/pattern/SpacePadder
+instanceKlass com/fasterxml/jackson/databind/introspect/VisibilityChecker$Std
+instanceKlass ch/qos/logback/classic/util/LogbackMDCAdapter
+instanceKlass com/fasterxml/jackson/databind/introspect/VisibilityChecker
+instanceKlass org/slf4j/spi/MDCAdapter
+instanceKlass org/slf4j/impl/StaticMDCBinder
+instanceKlass org/slf4j/MDC
+instanceKlass com/fasterxml/jackson/annotation/JsonSetter$Value
+instanceKlass ch/qos/logback/classic/spi/EventArgUtil
+instanceKlass ch/qos/logback/classic/spi/LoggingEvent
+instanceKlass com/fasterxml/jackson/annotation/JsonInclude$Value
+instanceKlass ch/qos/logback/classic/spi/ILoggingEvent
+instanceKlass ch/qos/logback/core/spi/DeferredProcessingAware
+instanceKlass com/fasterxml/jackson/annotation/JacksonAnnotationValue
+instanceKlass com/fasterxml/jackson/databind/cfg/ConfigOverrides
+instanceKlass org/springframework/boot/StartupInfoLogger$$Lambda$164
+instanceKlass org/springframework/boot/StartupInfoLogger$$Lambda$163
+instanceKlass com/fasterxml/jackson/databind/BeanDescription
+instanceKlass org/springframework/boot/system/ApplicationHome
+instanceKlass com/fasterxml/jackson/databind/introspect/AnnotatedClass$Creators
+instanceKlass org/springframework/boot/StartupInfoLogger$$Lambda$162
+instanceKlass com/fasterxml/jackson/databind/introspect/Annotated
+instanceKlass org/springframework/boot/StartupInfoLogger$$Lambda$161
+instanceKlass com/fasterxml/jackson/databind/introspect/TypeResolutionContext
+instanceKlass org/springframework/boot/StartupInfoLogger$$Lambda$160
+instanceKlass org/springframework/boot/StartupInfoLogger$$Lambda$159
+instanceKlass org/springframework/boot/StartupInfoLogger$$Lambda$158
+instanceKlass org/springframework/boot/StartupInfoLogger
+instanceKlass com/fasterxml/jackson/databind/introspect/AnnotationCollector$NoAnnotations
+instanceKlass com/fasterxml/jackson/databind/util/Annotations
+instanceKlass com/fasterxml/jackson/databind/introspect/AnnotationCollector
+instanceKlass com/fasterxml/jackson/databind/introspect/AnnotatedClassResolver
+instanceKlass org/springframework/boot/SpringApplicationRunListeners$$Lambda$157
+instanceKlass org/springframework/boot/autoconfigure/condition/ConditionEvaluationReport$AncestorsMatchedCondition
+instanceKlass org/springframework/context/annotation/Condition
+instanceKlass com/fasterxml/jackson/databind/introspect/ClassIntrospector
+instanceKlass org/springframework/boot/autoconfigure/condition/ConditionEvaluationReport
+instanceKlass com/fasterxml/jackson/databind/introspect/SimpleMixInResolver
+instanceKlass com/fasterxml/jackson/databind/introspect/ClassIntrospector$MixInResolver
+instanceKlass org/springframework/boot/autoconfigure/logging/ConditionEvaluationReportLoggingListener$ConditionEvaluationReportListener
+instanceKlass com/fasterxml/jackson/databind/util/RootNameLookup
+instanceKlass com/fasterxml/jackson/databind/jsontype/SubtypeResolver
+instanceKlass org/springframework/boot/rsocket/context/RSocketPortInfoApplicationContextInitializer$Listener
+instanceKlass org/springframework/boot/context/ConfigurationWarningsApplicationContextInitializer$ComponentScanPackageCheck
+instanceKlass com/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer$TableInfo
+instanceKlass org/springframework/boot/context/ConfigurationWarningsApplicationContextInitializer$Check
+instanceKlass com/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer
+instanceKlass org/springframework/boot/context/ConfigurationWarningsApplicationContextInitializer$ConfigurationWarningsPostProcessor
+instanceKlass org/springframework/beans/factory/support/DefaultListableBeanFactory$$Lambda$156
+instanceKlass org/springframework/beans/factory/support/DefaultListableBeanFactory$$Lambda$155
+instanceKlass com/fasterxml/jackson/core/sym/CharsToNameCanonicalizer$Bucket
+instanceKlass com/fasterxml/jackson/core/sym/CharsToNameCanonicalizer$TableInfo
+instanceKlass org/springframework/boot/context/ContextIdApplicationContextInitializer$ContextId
+instanceKlass com/fasterxml/jackson/core/sym/CharsToNameCanonicalizer
+instanceKlass org/springframework/boot/autoconfigure/SharedMetadataReaderFactoryContextInitializer$CachingMetadataReaderFactoryPostProcessor
+instanceKlass com/fasterxml/jackson/core/io/CharTypes
+instanceKlass com/fasterxml/jackson/core/io/JsonStringEncoder
+instanceKlass org/springframework/context/index/CandidateComponentsIndexLoader$$Lambda$154
+instanceKlass org/springframework/context/index/CandidateComponentsIndex
+instanceKlass com/fasterxml/jackson/core/io/SerializedString
+instanceKlass com/fasterxml/jackson/core/SerializableString
+instanceKlass org/springframework/context/index/CandidateComponentsIndexLoader
+instanceKlass com/fasterxml/jackson/core/util/DefaultPrettyPrinter
+instanceKlass com/fasterxml/jackson/core/util/Instantiatable
+instanceKlass org/springframework/core/io/DefaultResourceLoader$$Lambda$153
+instanceKlass com/fasterxml/jackson/core/PrettyPrinter
+instanceKlass org/springframework/core/type/classreading/MetadataReader
+instanceKlass org/springframework/core/type/classreading/SimpleMetadataReaderFactory
+instanceKlass org/springframework/core/type/classreading/MetadataReaderFactory
+instanceKlass org/springframework/core/io/support/ResourcePatternUtils
+instanceKlass com/fasterxml/jackson/core/TokenStreamFactory
+instanceKlass javax/annotation/ManagedBean
+instanceKlass com/fasterxml/jackson/databind/jsontype/PolymorphicTypeValidator
+instanceKlass org/springframework/stereotype/Indexed
+instanceKlass org/springframework/stereotype/Component
+instanceKlass org/springframework/core/type/filter/AbstractTypeHierarchyTraversingFilter
+instanceKlass org/springframework/core/type/filter/TypeFilter
+instanceKlass com/fasterxml/jackson/core/Base64Variant
+instanceKlass com/fasterxml/jackson/core/Base64Variants
+instanceKlass org/springframework/beans/factory/support/BeanDefinitionDefaults
+instanceKlass org/springframework/context/annotation/ClassPathScanningCandidateComponentProvider
+instanceKlass org/springframework/context/event/DefaultEventListenerFactory
+instanceKlass org/springframework/context/event/EventListenerFactory
+instanceKlass org/springframework/context/event/EventListenerMethodProcessor
+instanceKlass org/springframework/beans/factory/SmartInitializingSingleton
+instanceKlass com/fasterxml/jackson/databind/JsonSerializable$Base
+instanceKlass com/fasterxml/jackson/databind/JsonSerializable
+instanceKlass org/springframework/beans/factory/annotation/InitDestroyAnnotationBeanPostProcessor
+instanceKlass org/springframework/beans/factory/config/DestructionAwareBeanPostProcessor
+instanceKlass com/fasterxml/jackson/core/TreeNode
+instanceKlass com/fasterxml/jackson/databind/type/TypeBindings
+instanceKlass com/fasterxml/jackson/databind/type/TypeParser
+instanceKlass org/springframework/beans/factory/annotation/AutowiredAnnotationBeanPostProcessor
+instanceKlass org/springframework/beans/factory/support/MergedBeanDefinitionPostProcessor
+instanceKlass com/fasterxml/jackson/core/type/ResolvedType
+instanceKlass org/springframework/beans/factory/config/SmartInstantiationAwareBeanPostProcessor
+instanceKlass org/springframework/beans/factory/config/InstantiationAwareBeanPostProcessor
+instanceKlass org/springframework/beans/factory/config/BeanPostProcessor
+instanceKlass com/fasterxml/jackson/databind/type/TypeFactory
+instanceKlass org/springframework/beans/factory/config/BeanDefinitionHolder
+instanceKlass com/fasterxml/jackson/databind/cfg/BaseSettings
+instanceKlass org/springframework/beans/factory/support/DefaultListableBeanFactory$$Lambda$152
+instanceKlass org/springframework/beans/factory/support/DefaultListableBeanFactory$$Lambda$151
+instanceKlass com/fasterxml/jackson/databind/util/LRUMap
+instanceKlass org/springframework/beans/factory/support/MethodOverrides
+instanceKlass java/beans/ConstructorProperties
+instanceKlass java/beans/Transient
+instanceKlass org/springframework/context/annotation/ConfigurationClassPostProcessor
+instanceKlass org/springframework/context/EnvironmentAware
+instanceKlass com/fasterxml/jackson/databind/util/ClassUtil$Ctor
+instanceKlass org/springframework/context/ApplicationStartupAware
+instanceKlass org/springframework/context/ResourceLoaderAware
+instanceKlass com/fasterxml/jackson/databind/util/ClassUtil
+instanceKlass org/springframework/beans/factory/support/BeanDefinitionRegistryPostProcessor
+instanceKlass org/springframework/beans/factory/config/BeanFactoryPostProcessor
+instanceKlass com/fasterxml/jackson/databind/ext/Java7Support
+instanceKlass com/fasterxml/jackson/annotation/JsonMerge
+instanceKlass org/springframework/core/AttributeAccessorSupport
+instanceKlass com/fasterxml/jackson/databind/annotation/JsonDeserialize
+instanceKlass com/fasterxml/jackson/annotation/JsonManagedReference
+instanceKlass com/fasterxml/jackson/annotation/JsonBackReference
+instanceKlass org/springframework/beans/factory/config/BeanDefinition
+instanceKlass org/springframework/beans/BeanMetadataElement
+instanceKlass com/fasterxml/jackson/annotation/JsonUnwrapped
+instanceKlass com/fasterxml/jackson/annotation/JsonRawValue
+instanceKlass org/springframework/core/AttributeAccessor
+instanceKlass com/fasterxml/jackson/annotation/JsonTypeInfo
+instanceKlass com/fasterxml/jackson/annotation/JsonFormat
+instanceKlass com/fasterxml/jackson/annotation/JsonView
+instanceKlass com/fasterxml/jackson/databind/annotation/JsonSerialize
+instanceKlass com/fasterxml/jackson/databind/AnnotationIntrospector
+instanceKlass org/springframework/beans/factory/annotation/Qualifier
+instanceKlass org/springframework/beans/factory/annotation/Value
+instanceKlass org/springframework/http/converter/json/Jackson2ObjectMapperBuilder
+instanceKlass javax/annotation/Resource
+instanceKlass org/springframework/context/annotation/AnnotationConfigUtils
+instanceKlass org/springframework/http/converter/GenericHttpMessageConverter
+instanceKlass org/springframework/context/annotation/ConditionEvaluator$ConditionContextImpl
+instanceKlass org/springframework/context/annotation/ConditionContext
+instanceKlass org/springframework/context/annotation/ConditionEvaluator
+instanceKlass org/springframework/http/converter/xml/Jaxb2RootElementHttpMessageConverter$$Lambda$150
+instanceKlass org/springframework/context/annotation/Scope
+instanceKlass org/springframework/context/annotation/AnnotationScopeMetadataResolver
+instanceKlass org/springframework/context/annotation/ScopeMetadataResolver
+instanceKlass org/springframework/context/annotation/AnnotationBeanNameGenerator
+instanceKlass org/springframework/beans/factory/support/BeanNameGenerator
+instanceKlass com/sun/org/apache/xalan/internal/utils/XMLSecurityManager
+instanceKlass org/springframework/context/annotation/AnnotatedBeanDefinitionReader
+instanceKlass com/sun/org/apache/xalan/internal/utils/SecuritySupport$9
+instanceKlass com/sun/org/apache/xalan/internal/utils/SecuritySupport$4
+instanceKlass com/sun/org/apache/xalan/internal/utils/SecuritySupport
+instanceKlass org/springframework/beans/factory/support/SimpleAutowireCandidateResolver
+instanceKlass org/springframework/beans/factory/support/AutowireCandidateResolver
+instanceKlass com/sun/org/apache/xalan/internal/utils/FeaturePropertyBase
+instanceKlass org/springframework/beans/factory/support/SimpleInstantiationStrategy
+instanceKlass org/springframework/beans/factory/support/InstantiationStrategy
+instanceKlass jdk/xml/internal/JdkXmlFeatures
+instanceKlass javax/xml/transform/ErrorListener
+instanceKlass com/sun/org/apache/xalan/internal/xsltc/compiler/SourceLoader
+instanceKlass org/springframework/beans/factory/BeanNameAware
+instanceKlass javax/xml/transform/SecuritySupport$1
+instanceKlass javax/xml/transform/FactoryFinder$1
+instanceKlass javax/xml/transform/SecuritySupport$5
+instanceKlass javax/xml/transform/SecuritySupport$2
+instanceKlass javax/xml/transform/SecuritySupport
+instanceKlass javax/xml/transform/FactoryFinder
+instanceKlass javax/xml/transform/TransformerFactory
+instanceKlass javax/xml/transform/stream/StreamSource
+instanceKlass javax/xml/transform/stax/StAXSource
+instanceKlass javax/xml/transform/sax/SAXSource
+instanceKlass javax/xml/transform/dom/DOMSource
+instanceKlass javax/xml/transform/Source
+instanceKlass org/springframework/http/converter/xml/SourceHttpMessageConverter$$Lambda$149
+instanceKlass javax/xml/stream/XMLResolver
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/core/SimpleAliasRegistry
+instanceKlass org/springframework/http/converter/xml/SourceHttpMessageConverter$$Lambda$148
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass sun/invoke/util/VerifyAccess$1
+instanceKlass org/springframework/core/log/CompositeLog$$Lambda$147
+instanceKlass org/springframework/core/log/CompositeLog$$Lambda$146
+instanceKlass org/springframework/core/log/CompositeLog$$Lambda$145
+instanceKlass org/springframework/core/log/CompositeLog$$Lambda$144
+instanceKlass org/springframework/core/log/CompositeLog$$Lambda$143
+instanceKlass org/springframework/core/log/CompositeLog$$Lambda$142
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/apache/commons/logging/impl/NoOpLog
+instanceKlass org/springframework/core/log/CompositeLog
+instanceKlass org/springframework/beans/factory/config/ConfigurableListableBeanFactory
+instanceKlass org/springframework/beans/factory/config/ConfigurableBeanFactory
+instanceKlass org/springframework/beans/factory/config/SingletonBeanRegistry
+instanceKlass org/springframework/core/log/LogDelegateFactory
+instanceKlass org/springframework/beans/factory/config/AutowireCapableBeanFactory
+instanceKlass org/springframework/http/HttpLogging
+instanceKlass org/springframework/http/converter/AbstractHttpMessageConverter
+instanceKlass com/fasterxml/jackson/core/JsonGenerator
+instanceKlass com/fasterxml/jackson/core/TreeCodec
+instanceKlass org/springframework/beans/factory/support/BeanDefinitionRegistry
+instanceKlass org/springframework/core/AliasRegistry
+instanceKlass com/fasterxml/jackson/core/Versioned
+instanceKlass org/springframework/ui/context/ThemeSource
+instanceKlass org/springframework/boot/web/context/ConfigurableWebServerApplicationContext
+instanceKlass org/springframework/boot/web/context/WebServerApplicationContext
+instanceKlass javax/xml/bind/Binder
+instanceKlass org/springframework/util/MimeType$SpecificityComparator
+instanceKlass org/springframework/context/annotation/AnnotationConfigRegistry
+instanceKlass org/springframework/http/MediaType$$Lambda$141
+instanceKlass org/springframework/boot/ApplicationContextFactory$1
+instanceKlass org/springframework/util/MimeType$$Lambda$140
+instanceKlass org/springframework/boot/SpringApplicationBannerPrinter$PrintedBanner
+instanceKlass org/springframework/util/LinkedCaseInsensitiveMap
+instanceKlass org/springframework/boot/SpringBootVersion
+instanceKlass org/springframework/util/MimeType
+instanceKlass org/springframework/core/io/ContextResource
+instanceKlass org/springframework/http/converter/FormHttpMessageConverter
+instanceKlass org/springframework/http/converter/HttpMessageConverter
+instanceKlass org/springframework/boot/SpringApplicationBannerPrinter$Banners
+instanceKlass org/springframework/boot/SpringBootBanner
+instanceKlass org/springframework/boot/Banner
+instanceKlass org/springframework/boot/SpringApplicationBannerPrinter
+instanceKlass org/springframework/boot/autoconfigure/BackgroundPreinitializer$MessageConverterInitializer
+instanceKlass org/springframework/boot/autoconfigure/BackgroundPreinitializer$ValidationInitializer
+instanceKlass org/springframework/boot/EnvironmentConverter
+instanceKlass org/springframework/boot/autoconfigure/BackgroundPreinitializer$ConversionServiceInitializer
+instanceKlass org/springframework/boot/context/properties/bind/Bindable$$Lambda$139
+instanceKlass org/springframework/boot/context/properties/bind/Bindable$$Lambda$138
+instanceKlass org/springframework/boot/autoconfigure/BackgroundPreinitializer$1
+instanceKlass org/springframework/boot/context/logging/LoggingApplicationListener$$Lambda$137
+instanceKlass org/springframework/boot/context/logging/LoggingApplicationListener$$Lambda$136
+instanceKlass org/springframework/boot/context/logging/LoggingApplicationListener$$Lambda$135
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/context/logging/LoggingApplicationListener$$Lambda$134
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass ch/qos/logback/classic/jul/JULHelper
+instanceKlass ch/qos/logback/core/util/DefaultInvocationGate
+instanceKlass ch/qos/logback/core/util/InvocationGate
+instanceKlass ch/qos/logback/core/rolling/helper/ArchiveRemover
+instanceKlass ch/qos/logback/core/rolling/helper/RollingCalendar$1
+instanceKlass java/text/DontCareFieldPosition$1
+instanceKlass java/text/Format$FieldDelegate
+instanceKlass ch/qos/logback/core/rolling/helper/Compressor$1
+instanceKlass ch/qos/logback/core/rolling/helper/FileFilterUtil
+instanceKlass ch/qos/logback/core/rolling/helper/MonoTypedConverter
+instanceKlass ch/qos/logback/core/rolling/TimeBasedFileNamingAndTriggeringPolicy
+instanceKlass ch/qos/logback/core/rolling/RollingPolicy
+instanceKlass ch/qos/logback/core/rolling/TriggeringPolicy
+instanceKlass ch/qos/logback/core/util/FileSize
+instanceKlass ch/qos/logback/core/pattern/ConverterUtil
+instanceKlass ch/qos/logback/core/pattern/FormatInfo
+instanceKlass ch/qos/logback/core/pattern/parser/Node
+instanceKlass ch/qos/logback/core/pattern/util/AsIsEscapeUtil
+instanceKlass ch/qos/logback/core/pattern/parser/OptionTokenizer
+instanceKlass ch/qos/logback/core/pattern/parser/TokenStream$1
+instanceKlass ch/qos/logback/core/pattern/util/RestrictedEscapeUtil
+instanceKlass ch/qos/logback/core/pattern/parser/TokenStream
+instanceKlass ch/qos/logback/classic/pattern/EnsureExceptionHandling
+instanceKlass ch/qos/logback/core/pattern/PostCompileProcessor
+instanceKlass ch/qos/logback/core/pattern/parser/Token
+instanceKlass ch/qos/logback/core/joran/spi/NoAutoStart
+instanceKlass ch/qos/logback/core/joran/spi/NoAutoStartUtil
+instanceKlass ch/qos/logback/core/CoreConstants
+instanceKlass ch/qos/logback/core/joran/action/IADataForBasicProperty
+instanceKlass ch/qos/logback/core/joran/action/NestedBasicPropertyIA$1
+instanceKlass ch/qos/logback/core/joran/action/IADataForComplexProperty
+instanceKlass ch/qos/logback/core/joran/action/NestedComplexPropertyIA$1
+instanceKlass ch/qos/logback/core/joran/util/StringToObjectConverter
+instanceKlass ch/qos/logback/core/joran/util/beans/BeanDescription
+instanceKlass ch/qos/logback/core/joran/util/beans/BeanUtil
+instanceKlass ch/qos/logback/core/joran/action/ActionUtil$1
+instanceKlass java/util/Vector$Itr
+instanceKlass ch/qos/logback/core/pattern/util/RegularEscapeUtil
+instanceKlass ch/qos/logback/core/pattern/util/IEscapeUtil
+instanceKlass ch/qos/logback/core/joran/action/ActionUtil
+instanceKlass ch/qos/logback/core/subst/NodeToStringTransformer$1
+instanceKlass ch/qos/logback/core/subst/Node
+instanceKlass ch/qos/logback/core/subst/Parser$1
+instanceKlass ch/qos/logback/core/subst/Parser
+instanceKlass ch/qos/logback/core/subst/Token
+instanceKlass ch/qos/logback/core/subst/Tokenizer$1
+instanceKlass ch/qos/logback/core/subst/Tokenizer
+instanceKlass ch/qos/logback/core/subst/NodeToStringTransformer
+instanceKlass ch/qos/logback/core/net/ssl/SecureRandomFactoryBean
+instanceKlass ch/qos/logback/core/net/ssl/TrustManagerFactoryFactoryBean
+instanceKlass ch/qos/logback/core/net/ssl/KeyManagerFactoryFactoryBean
+instanceKlass ch/qos/logback/core/net/ssl/KeyStoreFactoryBean
+instanceKlass ch/qos/logback/core/net/ssl/SSLContextFactoryBean
+instanceKlass ch/qos/logback/core/net/ssl/SSLComponent
+instanceKlass ch/qos/logback/core/net/ssl/SSLNestedComponentRegistryRules
+instanceKlass ch/qos/logback/core/boolex/EventEvaluator
+instanceKlass ch/qos/logback/core/joran/spi/HostClassAndPropertyDouble
+instanceKlass ch/qos/logback/classic/util/DefaultNestedComponentRules
+instanceKlass ch/qos/logback/core/joran/spi/EventPlayer
+instanceKlass ch/qos/logback/core/joran/spi/DefaultNestedComponentRegistry
+instanceKlass ch/qos/logback/core/joran/spi/Interpreter
+instanceKlass ch/qos/logback/classic/spi/PlatformInfo
+instanceKlass ch/qos/logback/core/joran/event/InPlayListener
+instanceKlass ch/qos/logback/core/joran/spi/RuleStore
+instanceKlass org/xml/sax/helpers/AttributesImpl
+instanceKlass org/xml/sax/helpers/LocatorImpl
+instanceKlass ch/qos/logback/core/joran/event/SaxEvent
+instanceKlass com/sun/org/apache/xerces/internal/impl/Constants$ArrayEnumeration
+instanceKlass com/sun/org/apache/xerces/internal/impl/Constants
+instanceKlass com/sun/org/apache/xerces/internal/parsers/AbstractSAXParser$LocatorProxy
+instanceKlass org/xml/sax/ext/Locator2
+instanceKlass org/xml/sax/Locator
+instanceKlass com/sun/org/apache/xerces/internal/util/XMLSymbols
+instanceKlass com/sun/org/apache/xerces/internal/util/XMLChar
+instanceKlass com/sun/xml/internal/stream/Entity
+instanceKlass com/sun/xml/internal/stream/util/BufferAllocator
+instanceKlass com/sun/xml/internal/stream/util/ThreadLocalBufferAllocator
+instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityManager$EncodingInfo
+instanceKlass com/sun/org/apache/xerces/internal/util/URI
+instanceKlass com/sun/org/apache/xerces/internal/utils/XMLLimitAnalyzer
+instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLInputSource
+instanceKlass com/sun/org/apache/xerces/internal/util/ErrorHandlerWrapper
+instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLErrorHandler
+instanceKlass com/sun/org/apache/xerces/internal/impl/ExternalSubsetResolver
+instanceKlass com/sun/org/apache/xerces/internal/util/EntityResolverWrapper
+instanceKlass org/xml/sax/ext/EntityResolver2
+instanceKlass com/sun/org/apache/xerces/internal/parsers/AbstractSAXParser$AttributesProxy
+instanceKlass org/xml/sax/ext/Attributes2
+instanceKlass org/xml/sax/Attributes
+instanceKlass org/xml/sax/AttributeList
+instanceKlass com/sun/org/apache/xerces/internal/util/PropertyState
+instanceKlass com/sun/org/apache/xerces/internal/util/FeatureState
+instanceKlass com/sun/org/apache/xerces/internal/impl/msg/XMLMessageFormatter
+instanceKlass com/sun/org/apache/xerces/internal/util/MessageFormatter
+instanceKlass com/sun/org/apache/xerces/internal/impl/XMLVersionDetector
+instanceKlass com/sun/org/apache/xerces/internal/impl/validation/ValidationManager
+instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/NMTOKENDatatypeValidator
+instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/NOTATIONDatatypeValidator
+instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/ENTITYDatatypeValidator
+instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/ListDatatypeValidator
+instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/IDREFDatatypeValidator
+instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/IDDatatypeValidator
+instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/StringDatatypeValidator
+instanceKlass com/sun/org/apache/xerces/internal/impl/dv/DatatypeValidator
+instanceKlass com/sun/org/apache/xerces/internal/impl/dv/DTDDVFactory
+instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/DTDGrammarBucket
+instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLAttributeDecl
+instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLSimpleType
+instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLElementDecl
+instanceKlass com/sun/org/apache/xerces/internal/impl/validation/ValidationState
+instanceKlass com/sun/org/apache/xerces/internal/impl/dv/ValidationContext
+instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLDTDValidator
+instanceKlass com/sun/org/apache/xerces/internal/impl/RevalidationHandler
+instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLDTDValidatorFilter
+instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDocumentFilter
+instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLEntityDecl
+instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLDTDProcessor
+instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDTDContentModelFilter
+instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDTDFilter
+instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDTDScanner
+instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDTDContentModelSource
+instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDTDSource
+instanceKlass com/sun/org/apache/xerces/internal/xni/grammars/XMLDTDDescription
+instanceKlass com/sun/org/apache/xerces/internal/xni/grammars/XMLGrammarDescription
+instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentScannerImpl$TrailingMiscDriver
+instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentScannerImpl$PrologDriver
+instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentScannerImpl$XMLDeclDriver
+instanceKlass com/sun/org/apache/xerces/internal/util/NamespaceSupport
+instanceKlass com/sun/org/apache/xerces/internal/xni/NamespaceContext
+instanceKlass com/sun/org/apache/xerces/internal/util/XMLAttributesImpl$Attribute
+instanceKlass com/sun/org/apache/xerces/internal/util/XMLAttributesImpl
+instanceKlass com/sun/org/apache/xerces/internal/xni/XMLAttributes
+instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentFragmentScannerImpl$FragmentContentDriver
+instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentFragmentScannerImpl$Driver
+instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentFragmentScannerImpl$ElementStack2
+instanceKlass com/sun/org/apache/xerces/internal/xni/QName
+instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentFragmentScannerImpl$ElementStack
+instanceKlass com/sun/org/apache/xerces/internal/xni/XMLString
+instanceKlass com/sun/org/apache/xerces/internal/impl/XMLScanner
+instanceKlass com/sun/xml/internal/stream/XMLBufferListener
+instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityHandler
+instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDocumentScanner
+instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDocumentSource
+instanceKlass com/sun/org/apache/xerces/internal/impl/XMLErrorReporter
+instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityScanner
+instanceKlass com/sun/org/apache/xerces/internal/xni/XMLLocator
+instanceKlass com/sun/xml/internal/stream/XMLEntityStorage
+instanceKlass com/sun/org/apache/xerces/internal/util/AugmentationsImpl$AugmentationsItemsContainer
+instanceKlass com/sun/org/apache/xerces/internal/util/AugmentationsImpl
+instanceKlass com/sun/org/apache/xerces/internal/xni/Augmentations
+instanceKlass com/sun/org/apache/xerces/internal/util/XMLResourceIdentifierImpl
+instanceKlass com/sun/org/apache/xerces/internal/xni/XMLResourceIdentifier
+instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityManager
+instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLEntityResolver
+instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLComponent
+instanceKlass com/sun/org/apache/xerces/internal/util/SymbolTable$Entry
+instanceKlass com/sun/org/apache/xerces/internal/util/SymbolTable
+instanceKlass jdk/xml/internal/SecuritySupport$3
+instanceKlass jdk/xml/internal/SecuritySupport$1
+instanceKlass jdk/xml/internal/SecuritySupport
+instanceKlass jdk/xml/internal/JdkXmlUtils
+instanceKlass com/sun/org/apache/xerces/internal/util/ParserConfigurationSettings
+instanceKlass com/sun/org/apache/xerces/internal/parsers/XML11Configurable
+instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLPullParserConfiguration
+instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLParserConfiguration
+instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLComponentManager
+instanceKlass com/sun/org/apache/xerces/internal/parsers/XMLParser
+instanceKlass com/sun/org/apache/xerces/internal/xni/XMLDTDContentModelHandler
+instanceKlass com/sun/org/apache/xerces/internal/xni/XMLDTDHandler
+instanceKlass com/sun/org/apache/xerces/internal/xni/XMLDocumentHandler
+instanceKlass org/xml/sax/XMLReader
+instanceKlass org/xml/sax/Parser
+instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityPropertyManager
+instanceKlass com/sun/org/apache/xerces/internal/utils/SecuritySupport$8
+instanceKlass com/sun/org/apache/xerces/internal/utils/SecuritySupport$4
+instanceKlass com/sun/org/apache/xerces/internal/utils/SecuritySupport
+instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityManager
+instanceKlass javax/xml/parsers/SAXParser
+instanceKlass com/sun/org/apache/xerces/internal/xs/PSVIProvider
+instanceKlass com/sun/org/apache/xerces/internal/jaxp/JAXPConstants
+instanceKlass javax/xml/parsers/SecuritySupport$1
+instanceKlass javax/xml/parsers/FactoryFinder$1
+instanceKlass javax/xml/parsers/SecuritySupport$5
+instanceKlass javax/xml/parsers/SecuritySupport$2
+instanceKlass javax/xml/parsers/SecuritySupport
+instanceKlass javax/xml/parsers/FactoryFinder
+instanceKlass javax/xml/parsers/SAXParserFactory
+instanceKlass ch/qos/logback/core/spi/ContextAwareImpl
+instanceKlass ch/qos/logback/core/joran/spi/ElementPath
+instanceKlass org/xml/sax/helpers/DefaultHandler
+instanceKlass org/xml/sax/ErrorHandler
+instanceKlass org/xml/sax/ContentHandler
+instanceKlass org/xml/sax/DTDHandler
+instanceKlass org/xml/sax/EntityResolver
+instanceKlass java/net/URLEncoder
+instanceKlass java/net/URLDecoder
+instanceKlass ch/qos/logback/core/joran/util/ConfigurationWatchListUtil
+instanceKlass ch/qos/logback/classic/spi/LoggerContextListener
+instanceKlass ch/qos/logback/core/LifeCycleManager
+instanceKlass org/springframework/boot/logging/LoggingInitializationContext
+instanceKlass org/springframework/boot/logging/LoggerGroup
+instanceKlass org/springframework/boot/logging/LoggerGroups$$Lambda$133
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass org/springframework/boot/logging/LoggerGroups
+instanceKlass org/springframework/boot/logging/LogFile
+instanceKlass java/util/ArrayList$SubList$1
+instanceKlass org/springframework/boot/system/ApplicationPid
+instanceKlass org/springframework/boot/logging/LoggingSystemProperties$$Lambda$132
+instanceKlass org/springframework/boot/logging/LoggingSystemProperties
+instanceKlass org/springframework/boot/ansi/AnsiElement
+instanceKlass org/springframework/boot/context/config/AnsiOutputApplicationListener$$Lambda$131
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/util/RegularEnumSet$EnumSetIterator
+instanceKlass java/util/stream/Sink$ChainedInt
+instanceKlass org/springframework/boot/convert/LenientObjectToEnumConverterFactory$LenientToEnumConverter$$Lambda$130
+instanceKlass org/springframework/boot/convert/LenientObjectToEnumConverterFactory$LenientToEnumConverter$$Lambda$129
+instanceKlass java/util/function/IntUnaryOperator
+instanceKlass org/springframework/boot/convert/LenientObjectToEnumConverterFactory$LenientToEnumConverter$$Lambda$128
+instanceKlass org/springframework/boot/ansi/AnsiOutput
+instanceKlass org/springframework/core/convert/support/ConversionUtils
+instanceKlass org/springframework/boot/convert/LenientObjectToEnumConverterFactory$LenientToEnumConverter
+instanceKlass org/springframework/boot/convert/LenientObjectToEnumConverterFactory$$Lambda$127
+instanceKlass org/springframework/util/AntPathMatcher$PathSeparatorPatternCache
+instanceKlass org/springframework/util/AntPathMatcher
+instanceKlass org/springframework/util/PathMatcher
+instanceKlass org/springframework/core/io/support/PathMatchingResourcePatternResolver
+instanceKlass org/xml/sax/InputSource
+instanceKlass java/util/concurrent/ConcurrentLinkedDeque$AbstractItr
+instanceKlass org/springframework/core/convert/support/GenericConversionService$ConverterCacheKey
+instanceKlass org/springframework/boot/context/properties/bind/PropertySourcesPlaceholdersResolver$$Lambda$126
+instanceKlass org/springframework/util/PropertyPlaceholderHelper$PlaceholderResolver
+instanceKlass org/springframework/boot/context/properties/source/ConfigurationProperty
+instanceKlass org/springframework/boot/origin/PropertySourceOrigin
+instanceKlass org/springframework/boot/context/config/InvalidConfigDataPropertyException$$Lambda$125
+instanceKlass java/util/stream/MatchOps$$Lambda$124
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironmentContributor$$Lambda$123
+instanceKlass org/springframework/boot/context/config/ConfigDataLocationResolvers$$Lambda$122
+instanceKlass org/springframework/boot/context/config/Profiles$$Lambda$121
+instanceKlass org/springframework/boot/context/config/Profiles$$Lambda$120
+instanceKlass org/springframework/boot/context/config/Profiles$$Lambda$119
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/context/config/Profiles$$Lambda$118
+instanceKlass org/springframework/boot/context/config/Profiles$$Lambda$117
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/context/config/Profiles$$Lambda$116
+instanceKlass org/springframework/boot/context/properties/bind/MapBinder$EntryBinder
+instanceKlass org/springframework/boot/context/properties/bind/MapBinder$$Lambda$115
+instanceKlass org/springframework/core/CollectionFactory
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironment$$Lambda$114
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/context/properties/bind/CollectionBinder$$Lambda$113
+instanceKlass org/springframework/boot/context/config/Profiles
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironment$$Lambda$112
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironmentContributors$$Lambda$111
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironmentContributors$$Lambda$110
+instanceKlass java/util/Spliterators$IteratorSpliterator
+instanceKlass java/util/function/Predicate$$Lambda$109
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironmentContributors$$Lambda$108
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironmentContributors$InactiveSourceChecker
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironmentContributors$$Lambda$107
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/context/properties/bind/DefaultValue
+instanceKlass org/springframework/boot/context/properties/bind/DataObjectPropertyName
+instanceKlass org/springframework/boot/context/properties/bind/ValueObjectBinder$ConstructorParameter
+instanceKlass org/springframework/core/SerializableTypeWrapper$MethodInvokeTypeProvider
+instanceKlass java/lang/reflect/Proxy$1
+instanceKlass java/lang/reflect/Proxy$KeyX
+instanceKlass org/springframework/core/SerializableTypeWrapper$TypeProxyInvocationHandler
+instanceKlass sun/reflect/generics/tree/VoidDescriptor
+instanceKlass org/springframework/core/SerializableTypeWrapper$MethodParameterTypeProvider
+instanceKlass org/springframework/core/SerializableTypeWrapper$TypeProvider
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/core/MethodParameter$$Lambda$106
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/core/MethodParameter
+instanceKlass org/springframework/boot/context/properties/bind/Name
+instanceKlass org/springframework/boot/context/properties/bind/ValueObjectBinder$DefaultValueObject$$Lambda$105
+instanceKlass org/springframework/boot/context/config/ConfigDataProperties$Activate
+instanceKlass org/springframework/boot/context/properties/bind/AbstractBindHandler
+instanceKlass org/springframework/boot/context/config/ConfigDataProperties$LegacyProfilesBindHandler
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironmentContributorPlaceholdersResolver
+instanceKlass org/springframework/boot/context/config/ConfigData$AlwaysPropertySourceOptions
+instanceKlass org/springframework/boot/context/config/ConfigData$PropertySourceOptions
+instanceKlass org/springframework/boot/env/PropertiesPropertySourceLoader$$Lambda$104
+instanceKlass org/springframework/boot/origin/OriginTrackedValue
+instanceKlass org/springframework/boot/origin/TextResourceOrigin
+instanceKlass org/springframework/boot/env/OriginTrackedPropertiesLoader$$Lambda$103
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/origin/TextResourceOrigin$Location
+instanceKlass sun/net/DefaultProgressMeteringPolicy
+instanceKlass sun/net/ProgressMeteringPolicy
+instanceKlass sun/net/ProgressMonitor
+instanceKlass org/springframework/boot/env/OriginTrackedPropertiesLoader$CharacterReader
+instanceKlass org/springframework/boot/env/OriginTrackedPropertiesLoader$Document
+instanceKlass org/springframework/boot/env/OriginTrackedPropertiesLoader
+instanceKlass java/util/Formattable
+instanceKlass java/util/Formatter$Conversion
+instanceKlass java/util/Formatter$Flags
+instanceKlass java/util/Formatter$FormatSpecifier
+instanceKlass java/util/Formatter$FixedString
+instanceKlass java/util/Formatter$FormatString
+instanceKlass java/util/Formatter
+instanceKlass org/springframework/boot/origin/OriginTrackedResource
+instanceKlass org/springframework/boot/origin/Origin
+instanceKlass org/springframework/boot/context/config/ConfigDataLoaders$$Lambda$102
+instanceKlass org/springframework/boot/context/config/ConfigDataLoaders$$Lambda$101
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironmentContributor$$Lambda$100
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironmentContributors$$Lambda$99
+instanceKlass org/springframework/boot/context/config/ConfigData
+instanceKlass org/springframework/boot/context/config/ConfigDataResolutionResult
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironmentContributors$$Lambda$98
+instanceKlass org/springframework/core/io/WritableResource
+instanceKlass org/springframework/boot/context/config/LocationResourceLoader$$Lambda$97
+instanceKlass org/springframework/boot/context/config/LocationResourceLoader$$Lambda$96
+instanceKlass org/springframework/boot/context/config/LocationResourceLoader$$Lambda$95
+instanceKlass org/springframework/boot/context/config/LocationResourceLoader$$Lambda$94
+instanceKlass org/springframework/boot/context/config/LocationResourceLoader$$Lambda$93
+instanceKlass java/util/ArrayDeque$DeqIterator
+instanceKlass org/springframework/boot/context/config/StandardConfigDataReference
+instanceKlass org/springframework/boot/context/config/ConfigDataLocationResolvers$$Lambda$92
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironmentContributors$ContributorDataLoaderContext
+instanceKlass org/springframework/boot/context/config/ConfigDataLoaderContext
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironmentContributors$ContributorConfigDataLocationResolverContext
+instanceKlass org/springframework/boot/context/config/ConfigDataLocationResolverContext
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironmentContributor$ContributorIterator
+instanceKlass org/springframework/boot/DefaultBootstrapContext$$Lambda$91
+instanceKlass org/springframework/boot/BootstrapRegistry$InstanceSupplier$1
+instanceKlass org/springframework/boot/BootstrapRegistry$InstanceSupplier$$Lambda$90
+instanceKlass org/springframework/boot/BootstrapRegistry$InstanceSupplier
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironment$$Lambda$89
+instanceKlass org/springframework/boot/context/config/ConfigDataActivationContext
+instanceKlass org/springframework/boot/context/config/ConfigDataImporter
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironmentContributors$$Lambda$88
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironmentContributors
+instanceKlass org/springframework/boot/context/config/ConfigDataProperties
+instanceKlass org/springframework/boot/context/config/ConfigData$Options
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironmentContributor
+instanceKlass org/springframework/core/log/LogMessage
+instanceKlass org/springframework/boot/context/config/ConfigDataResource
+instanceKlass org/springframework/boot/context/config/StandardConfigDataLoader
+instanceKlass org/springframework/boot/context/config/ConfigTreeConfigDataLoader
+instanceKlass org/springframework/boot/context/config/ConfigDataLoaders$$Lambda$87
+instanceKlass org/springframework/boot/context/config/ConfigDataLoaders$$Lambda$86
+instanceKlass org/springframework/boot/context/config/ConfigDataLoader
+instanceKlass org/springframework/boot/context/config/ConfigDataLoaders
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironmentUpdateListener$1
+instanceKlass org/springframework/boot/context/config/StandardConfigDataLocationResolver$$Lambda$85
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/context/properties/bind/Binder$$Lambda$84
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/util/stream/StreamSpliterators$WrappingSpliterator$$Lambda$83
+instanceKlass java/util/function/BooleanSupplier
+instanceKlass java/util/stream/StreamSpliterators$WrappingSpliterator$$Lambda$82
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/util/stream/AbstractSpinedBuffer
+instanceKlass java/util/Spliterators$1Adapter
+instanceKlass java/util/stream/StreamSpliterators$AbstractWrappingSpliterator
+instanceKlass java/util/stream/AbstractPipeline$$Lambda$81
+instanceKlass org/springframework/boot/context/properties/source/SpringIterableConfigurationPropertySource$$Lambda$80
+instanceKlass org/springframework/boot/context/properties/source/FilteredConfigurationPropertiesSource
+instanceKlass org/springframework/boot/context/properties/bind/IndexedElementsBinder$$Lambda$79
+instanceKlass org/springframework/boot/context/properties/bind/ArrayBinder$$Lambda$78
+instanceKlass org/springframework/boot/context/properties/bind/AggregateBinder$AggregateSupplier
+instanceKlass org/springframework/boot/context/properties/bind/Binder$$Lambda$77
+instanceKlass org/springframework/boot/context/properties/bind/Binder$$Lambda$76
+instanceKlass org/springframework/boot/context/properties/bind/AggregateElementBinder
+instanceKlass org/springframework/boot/context/properties/bind/AggregateBinder
+instanceKlass org/springframework/boot/env/YamlPropertySourceLoader
+instanceKlass org/springframework/boot/env/PropertiesPropertySourceLoader
+instanceKlass org/springframework/boot/env/PropertySourceLoader
+instanceKlass org/springframework/boot/context/config/StandardConfigDataLocationResolver
+instanceKlass org/springframework/boot/context/config/LocationResourceLoader$$Lambda$75
+instanceKlass java/util/Comparator$$Lambda$74
+instanceKlass org/springframework/boot/context/config/LocationResourceLoader$$Lambda$73
+instanceKlass org/springframework/boot/context/config/LocationResourceLoader
+instanceKlass org/springframework/boot/context/config/ConfigTreeConfigDataLocationResolver
+instanceKlass org/springframework/boot/context/config/ConfigDataLocationResolvers$$Lambda$72
+instanceKlass org/springframework/boot/context/config/ConfigDataLocationResolvers$$Lambda$71
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/context/config/ConfigDataLocationResolver
+instanceKlass org/springframework/boot/context/config/ConfigDataLocationResolvers
+instanceKlass org/springframework/boot/context/properties/bind/JavaBeanBinder$Bean
+instanceKlass org/springframework/boot/context/properties/bind/ValueObjectBinder$ValueObject
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass org/springframework/boot/context/properties/bind/Binder$$Lambda$70
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass org/springframework/boot/context/properties/bind/Binder$$Lambda$69
+instanceKlass org/springframework/boot/context/properties/bind/DataObjectPropertyBinder
+instanceKlass org/springframework/boot/context/properties/bind/BindResult
+instanceKlass org/springframework/boot/context/properties/bind/BindConverter$CompositeConversionService
+instanceKlass org/springframework/beans/TypeConverterDelegate
+instanceKlass org/springframework/beans/PropertyEditorRegistrySupport
+instanceKlass org/springframework/beans/PropertyEditorRegistry
+instanceKlass org/springframework/beans/TypeConverter
+instanceKlass org/springframework/boot/context/properties/bind/BindConverter$TypeConverterConverter
+instanceKlass java/beans/PropertyEditorSupport
+instanceKlass java/beans/PropertyEditor
+instanceKlass org/springframework/boot/context/properties/bind/BindConverter
+instanceKlass org/springframework/boot/context/properties/bind/Binder$Context
+instanceKlass org/springframework/boot/context/properties/bind/BindContext
+instanceKlass org/springframework/boot/context/config/UseLegacyConfigProcessingException$UseLegacyProcessingBindHandler
+instanceKlass java/lang/Throwable$PrintStreamOrWriter
+instanceKlass org/springframework/boot/context/properties/bind/JavaBeanBinder
+instanceKlass javax/management/remote/rmi/RMIConnectionImpl$PrivilegedOperation
+instanceKlass org/springframework/boot/context/properties/bind/ValueObjectBinder
+instanceKlass org/springframework/boot/context/properties/bind/DataObjectBinder
+instanceKlass org/springframework/boot/context/properties/bind/DefaultBindConstructorProvider
+instanceKlass org/springframework/boot/context/properties/bind/BindConstructorProvider
+instanceKlass org/springframework/boot/context/properties/bind/BindHandler$1
+instanceKlass org/springframework/boot/context/properties/bind/BindHandler
+instanceKlass org/springframework/util/PropertyPlaceholderHelper
+instanceKlass org/springframework/boot/context/properties/bind/PropertySourcesPlaceholdersResolver
+instanceKlass org/springframework/boot/context/properties/bind/PlaceholdersResolver
+instanceKlass org/springframework/boot/context/properties/bind/Binder
+instanceKlass org/springframework/boot/context/config/ConfigDataLocation
+instanceKlass org/springframework/boot/origin/OriginProvider
+instanceKlass sun/rmi/transport/DGCAckHandler$1
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironment
+instanceKlass sun/rmi/transport/DGCAckHandler
+instanceKlass org/springframework/boot/context/properties/source/ConfigurationPropertyName$$Lambda$68
+instanceKlass org/springframework/boot/context/properties/source/ConfigurationPropertyName$ElementCharPredicate
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass com/sun/jmx/remote/internal/ServerCommunicatorAdmin$Timeout
+instanceKlass com/sun/jmx/remote/internal/ServerCommunicatorAdmin
+instanceKlass org/springframework/boot/env/SpringApplicationJsonEnvironmentPostProcessor$$Lambda$67
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass javax/management/remote/rmi/RMIConnectionImpl$3
+instanceKlass javax/management/remote/rmi/RMIConnectionImpl$2
+instanceKlass javax/management/remote/rmi/RMIConnectionImpl$1
+instanceKlass com/sun/jmx/remote/security/SubjectDelegator
+instanceKlass javax/management/remote/rmi/RMIConnectionImpl
+instanceKlass java/rmi/server/Unreferenced
+instanceKlass java/util/stream/Sink$OfInt
+instanceKlass java/util/function/IntConsumer
+instanceKlass sun/rmi/server/UnicastServerRef$MyChecker
+instanceKlass sun/rmi/server/MarshalInputStream$StreamChecker
+instanceKlass java/util/Spliterators$IntIteratorSpliterator
+instanceKlass java/lang/CharSequence$1CharIterator
+instanceKlass java/util/PrimitiveIterator$OfInt
+instanceKlass java/util/PrimitiveIterator
+instanceKlass java/util/stream/MatchOps$$Lambda$66
+instanceKlass java/util/stream/MatchOps$BooleanTerminalSink
+instanceKlass java/io/ObjectStreamClass$6
+instanceKlass java/util/stream/MatchOps$MatchOp
+instanceKlass java/util/stream/MatchOps
+instanceKlass java/io/ObjectStreamClass$5
+instanceKlass java/io/ObjectStreamClass$4
+instanceKlass java/io/ObjectStreamClass$MemberSignature
+instanceKlass java/io/ObjectStreamClass$2
+instanceKlass org/springframework/boot/context/properties/source/SystemEnvironmentPropertyMapper$$Lambda$65
+instanceKlass java/util/function/IntPredicate
+instanceKlass java/util/concurrent/locks/LockSupport
+instanceKlass sun/rmi/server/MarshalOutputStream$1
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass sun/rmi/transport/SequenceEntry
+instanceKlass java/util/stream/IntStream
+instanceKlass java/util/concurrent/Executors$RunnableAdapter
+instanceKlass java/util/concurrent/Executors
+instanceKlass com/intellij/rt/debugger/agent/CaptureStorage$ExceptionCapturedStack
+instanceKlass com/intellij/rt/debugger/agent/CaptureStorage$CapturedStack
+instanceKlass java/util/concurrent/FutureTask$WaitNode
+instanceKlass java/util/concurrent/Callable
+instanceKlass java/lang/CharSequence$$Lambda$64
+instanceKlass java/util/concurrent/FutureTask
+instanceKlass org/springframework/boot/context/properties/source/SystemEnvironmentPropertyMapper$$Lambda$63
+instanceKlass org/jetbrains/capture/org/objectweb/asm/Handler
+instanceKlass java/util/function/BiPredicate$$Lambda$62
+instanceKlass org/jetbrains/capture/org/objectweb/asm/Edge
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/context/properties/source/SystemEnvironmentPropertyMapper$$Lambda$61
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/util/regex/Matcher
+instanceKlass java/util/regex/MatchResult
+instanceKlass org/jetbrains/capture/org/objectweb/asm/Frame
+instanceKlass org/jetbrains/capture/org/objectweb/asm/Label
+instanceKlass org/springframework/boot/context/properties/source/SpringIterableConfigurationPropertySource$Mappings$$Lambda$60
+instanceKlass org/springframework/boot/context/properties/source/SpringIterableConfigurationPropertySource$$Lambda$59
+instanceKlass org/jetbrains/capture/org/objectweb/asm/Type
+instanceKlass org/springframework/boot/context/properties/source/SpringIterableConfigurationPropertySource$$Lambda$58
+instanceKlass java/util/function/UnaryOperator
+instanceKlass org/springframework/boot/context/properties/source/SpringIterableConfigurationPropertySource$$Lambda$57
+instanceKlass org/jetbrains/capture/org/objectweb/asm/MethodVisitor
+instanceKlass org/springframework/boot/context/properties/source/SpringIterableConfigurationPropertySource$Mappings
+instanceKlass org/springframework/boot/context/properties/source/DefaultPropertyMapper$LastMapping
+instanceKlass org/jetbrains/capture/org/objectweb/asm/FieldVisitor
+instanceKlass java/time/Clock
+instanceKlass org/jetbrains/capture/org/objectweb/asm/Context
+instanceKlass org/jetbrains/capture/org/objectweb/asm/Attribute
+instanceKlass org/springframework/boot/context/properties/source/SoftReferenceConfigurationPropertyCache
+instanceKlass org/springframework/boot/context/properties/source/ConfigurationPropertyCaching
+instanceKlass org/springframework/boot/context/properties/source/CachingConfigurationPropertySource
+instanceKlass org/jetbrains/capture/org/objectweb/asm/Item
+instanceKlass org/springframework/boot/context/properties/source/IterableConfigurationPropertySource
+instanceKlass org/jetbrains/capture/org/objectweb/asm/ByteVector
+instanceKlass org/jetbrains/capture/org/objectweb/asm/ClassVisitor
+instanceKlass org/springframework/boot/context/properties/source/SystemEnvironmentPropertyMapper
+instanceKlass org/springframework/boot/context/properties/source/PropertyMapper$$Lambda$56
+instanceKlass java/util/function/BiPredicate
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/jetbrains/capture/org/objectweb/asm/ClassReader
+instanceKlass org/springframework/boot/context/properties/source/DefaultPropertyMapper
+instanceKlass org/springframework/boot/context/properties/source/PropertyMapper
+instanceKlass sun/rmi/transport/DGCImpl$1
+instanceKlass org/springframework/boot/context/properties/source/SpringConfigurationPropertySource
+instanceKlass sun/rmi/transport/DGCImpl$LeaseInfo
+instanceKlass org/springframework/boot/context/properties/source/SpringConfigurationPropertySources$$Lambda$55
+instanceKlass org/springframework/boot/context/properties/source/ConfigurationPropertySource
+instanceKlass org/springframework/boot/context/properties/source/SpringConfigurationPropertySources$SourcesIterator
+instanceKlass java/rmi/dgc/VMID
+instanceKlass java/rmi/dgc/Lease
+instanceKlass java/util/stream/FindOps$$Lambda$54
+instanceKlass java/util/stream/FindOps$FindSink
+instanceKlass java/util/stream/FindOps$$Lambda$53
+instanceKlass java/util/stream/FindOps$FindOp
+instanceKlass java/util/stream/FindOps
+instanceKlass java/io/ObjectStreamClass$ExceptionInfo
+instanceKlass org/springframework/boot/env/SpringApplicationJsonEnvironmentPostProcessor$$Lambda$52
+instanceKlass java/util/function/Predicate
+instanceKlass java/util/ResourceBundle$Control$1
+instanceKlass org/springframework/boot/env/SpringApplicationJsonEnvironmentPostProcessor$$Lambda$51
+instanceKlass org/springframework/boot/env/SpringApplicationJsonEnvironmentPostProcessor$JsonPropertyValue
+instanceKlass java/util/logging/Logger$1
+instanceKlass java/util/Spliterators$ArraySpliterator
+instanceKlass java/io/ObjectInputStream$Logging
+instanceKlass java/util/Spliterator$OfDouble
+instanceKlass java/io/ObjectInputStream$FilterValues
+instanceKlass java/util/Spliterator$OfLong
+instanceKlass java/util/Spliterator$OfInt
+instanceKlass sun/rmi/server/LoaderHandler
+instanceKlass java/util/Spliterator$OfPrimitive
+instanceKlass java/util/Spliterators$EmptySpliterator
+instanceKlass java/util/Spliterators
+instanceKlass java/rmi/server/RMIClassLoader$1
+instanceKlass java/rmi/server/RMIClassLoaderSpi
+instanceKlass java/rmi/server/RMIClassLoader
+instanceKlass sun/rmi/server/UnicastServerRef$1
+instanceKlass org/springframework/boot/logging/DeferredLog$Line
+instanceKlass sun/rmi/transport/Transport$1
+instanceKlass sun/rmi/transport/Transport$$Lambda$50
+instanceKlass sun/misc/ObjectInputFilter$Config$$Lambda$49
+instanceKlass sun/misc/ObjectInputFilter$Config
+instanceKlass java/io/ObjectInputStream$ValidationList
+instanceKlass java/io/ObjectInputStream$HandleTable$HandleList
+instanceKlass java/io/ObjectInputStream$HandleTable
+instanceKlass org/springframework/boot/reactor/DebugAgentEnvironmentPostProcessor
+instanceKlass java/rmi/registry/Registry
+instanceKlass org/springframework/boot/env/SystemEnvironmentPropertySourceEnvironmentPostProcessor
+instanceKlass java/rmi/activation/ActivationGroupDesc
+instanceKlass java/rmi/activation/ActivationMonitor
+instanceKlass org/springframework/boot/env/SpringApplicationJsonEnvironmentPostProcessor
+instanceKlass java/rmi/activation/ActivationID
+instanceKlass java/rmi/activation/ActivationDesc
+instanceKlass java/rmi/activation/ActivationInstantiator
+instanceKlass java/rmi/activation/ActivationGroupID
+instanceKlass org/springframework/boot/env/RandomValuePropertySourceEnvironmentPostProcessor
+instanceKlass java/rmi/activation/ActivationSystem
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironmentUpdateListener
+instanceKlass java/io/ObjectInputStream$$Lambda$48
+instanceKlass sun/misc/JavaObjectInputStreamReadString
+instanceKlass org/springframework/boot/context/config/ConfigDataEnvironmentPostProcessor
+instanceKlass java/io/ObjectInputStream$$Lambda$47
+instanceKlass sun/misc/JavaObjectInputStreamAccess
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass sun/misc/ObjectStreamClassValidator
+instanceKlass java/io/ObjectInputStream$1
+instanceKlass org/springframework/boot/logging/DeferredLog
+instanceKlass sun/misc/JavaOISAccess
+instanceKlass org/springframework/boot/logging/DeferredLogs$$Lambda$46
+instanceKlass sun/rmi/transport/StreamRemoteCall
+instanceKlass java/rmi/server/RemoteCall
+instanceKlass java/util/Collections$UnmodifiableMap$UnmodifiableEntrySet$UnmodifiableEntry
+instanceKlass java/util/Collections$UnmodifiableMap$UnmodifiableEntrySet$1
+instanceKlass sun/rmi/transport/tcp/TCPConnection
+instanceKlass sun/rmi/transport/Connection
+instanceKlass org/springframework/boot/cloud/CloudFoundryVcapEnvironmentPostProcessor
+instanceKlass sun/rmi/transport/tcp/TCPChannel
+instanceKlass sun/rmi/transport/Channel
+instanceKlass org/springframework/boot/env/ReflectionEnvironmentPostProcessorsFactory$$Lambda$45
+instanceKlass java/net/Socket$3
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/net/Socket$2
+instanceKlass org/springframework/boot/util/Instantiator$1$$Lambda$44
+instanceKlass org/springframework/boot/util/Instantiator$1
+instanceKlass sun/rmi/transport/tcp/TCPTransport$ConnectionHandler$$Lambda$43
+instanceKlass org/springframework/boot/env/ReflectionEnvironmentPostProcessorsFactory$$Lambda$42
+instanceKlass org/springframework/boot/util/Instantiator$AvailableParameters
+instanceKlass sun/rmi/transport/tcp/TCPTransport$ConnectionHandler
+instanceKlass java/util/Collections$ReverseComparator2
+instanceKlass java/util/Comparator$$Lambda$41
+instanceKlass java/net/NetworkInterface$1checkedAddresses
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/util/Instantiator$$Lambda$40
+instanceKlass java/util/function/ToIntFunction
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/util/Instantiator
+instanceKlass org/springframework/boot/SpringApplicationRunListeners$$Lambda$39
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/context/properties/source/SpringConfigurationPropertySources
+instanceKlass org/springframework/boot/origin/OriginLookup
+instanceKlass org/springframework/boot/context/properties/source/ConfigurationPropertySources
+instanceKlass org/springframework/boot/convert/CharSequenceToObjectConverter
+instanceKlass org/springframework/boot/convert/LenientObjectToEnumConverterFactory
+instanceKlass sun/reflect/generics/tree/ByteSignature
+instanceKlass org/springframework/boot/convert/InputStreamSourceToByteArrayConverter
+instanceKlass org/springframework/core/io/DefaultResourceLoader
+instanceKlass org/springframework/boot/convert/StringToFileConverter
+instanceKlass org/springframework/boot/convert/NumberToDataSizeConverter
+instanceKlass org/springframework/util/unit/DataSize
+instanceKlass org/springframework/boot/convert/StringToDataSizeConverter
+instanceKlass org/springframework/boot/convert/NumberToPeriodConverter
+instanceKlass org/springframework/boot/convert/PeriodToStringConverter
+instanceKlass org/springframework/boot/convert/StringToPeriodConverter
+instanceKlass org/springframework/boot/convert/DurationToNumberConverter
+instanceKlass org/springframework/boot/convert/NumberToDurationConverter
+instanceKlass org/springframework/boot/convert/DurationToStringConverter
+instanceKlass org/springframework/boot/convert/StringToDurationConverter
+instanceKlass org/springframework/boot/convert/DelimitedStringToCollectionConverter
+instanceKlass org/springframework/boot/convert/DelimitedStringToArrayConverter
+instanceKlass org/springframework/boot/convert/CollectionToDelimitedStringConverter
+instanceKlass org/springframework/boot/convert/ArrayToDelimitedStringConverter
+instanceKlass org/springframework/boot/convert/IsoOffsetFormatter
+instanceKlass org/springframework/boot/convert/InetAddressFormatter
+instanceKlass org/springframework/format/support/FormattingConversionService$$Lambda$38
+instanceKlass sun/reflect/generics/tree/ArrayTypeSignature
+instanceKlass sun/reflect/generics/tree/CharSignature
+instanceKlass org/springframework/boot/convert/CharArrayFormatter
+instanceKlass org/springframework/format/annotation/DateTimeFormat
+instanceKlass org/springframework/format/datetime/standard/MonthDayFormatter
+instanceKlass java/time/MonthDay
+instanceKlass org/springframework/format/datetime/standard/YearMonthFormatter
+instanceKlass java/time/YearMonth
+instanceKlass org/springframework/format/datetime/standard/MonthFormatter
+instanceKlass org/springframework/format/datetime/standard/YearFormatter
+instanceKlass java/time/Year
+instanceKlass org/springframework/format/datetime/standard/DurationFormatter
+instanceKlass org/springframework/format/datetime/standard/PeriodFormatter
+instanceKlass org/springframework/format/datetime/standard/InstantFormatter
+instanceKlass org/springframework/format/Formatter
+instanceKlass java/time/OffsetTime
+instanceKlass org/springframework/format/support/FormattingConversionService$ParserConverter
+instanceKlass org/springframework/format/support/FormattingConversionService$PrinterConverter
+instanceKlass org/springframework/format/datetime/standard/TemporalAccessorParser
+instanceKlass org/springframework/format/Parser
+instanceKlass org/springframework/format/datetime/standard/TemporalAccessorPrinter
+instanceKlass org/springframework/format/Printer
+instanceKlass java/time/format/DateTimeFormatterBuilder$LocalizedPrinterParser
+instanceKlass java/time/format/DateTimeFormatter$$Lambda$37
+instanceKlass java/time/format/DateTimeFormatter$$Lambda$36
+instanceKlass java/time/Period
+instanceKlass java/time/chrono/ChronoPeriod
+instanceKlass java/time/format/DateTimeFormatterBuilder$TextPrinterParser
+instanceKlass java/time/format/DateTimeTextProvider$1
+instanceKlass java/time/format/DateTimeTextProvider
+instanceKlass java/util/AbstractMap$SimpleImmutableEntry
+instanceKlass java/time/format/DateTimeTextProvider$LocaleStore
+instanceKlass java/time/format/DateTimeFormatterBuilder$InstantPrinterParser
+instanceKlass java/time/format/DateTimeFormatterBuilder$StringLiteralPrinterParser
+instanceKlass java/time/format/DateTimeFormatterBuilder$ZoneIdPrinterParser
+instanceKlass java/time/format/DateTimeFormatterBuilder$FractionPrinterParser
+instanceKlass java/time/format/DateTimeFormatterBuilder$OffsetIdPrinterParser
+instanceKlass java/time/format/DecimalStyle
+instanceKlass java/time/format/DateTimeFormatterBuilder$CompositePrinterParser
+instanceKlass java/time/chrono/AbstractChronology$$Lambda$35
+instanceKlass java/time/chrono/AbstractChronology$$Lambda$34
+instanceKlass java/time/chrono/AbstractChronology$$Lambda$33
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass java/time/chrono/AbstractChronology
+instanceKlass java/time/chrono/Chronology
+instanceKlass java/time/format/DateTimeFormatterBuilder$CharLiteralPrinterParser
+instanceKlass java/time/format/DateTimeFormatterBuilder$NumberPrinterParser
+instanceKlass java/time/format/DateTimeFormatterBuilder$DateTimePrinterParser
+instanceKlass java/time/format/DateTimeFormatterBuilder$2
+instanceKlass java/time/temporal/IsoFields
+instanceKlass java/time/temporal/ValueRange
+instanceKlass java/util/regex/Pattern$TreeInfo
+instanceKlass java/util/regex/ASCII
+instanceKlass java/util/regex/Pattern$Node
+instanceKlass java/util/regex/Pattern
+instanceKlass java/time/Duration
+instanceKlass java/time/temporal/TemporalAmount
+instanceKlass java/time/temporal/TemporalUnit
+instanceKlass java/time/temporal/TemporalField
+instanceKlass java/time/format/DateTimeFormatterBuilder$$Lambda$32
+instanceKlass java/time/temporal/TemporalQuery
+instanceKlass java/time/format/DateTimeFormatterBuilder
+instanceKlass java/time/format/DateTimeFormatter
+instanceKlass org/springframework/format/datetime/standard/DateTimeFormatterRegistrar$1
+instanceKlass org/springframework/format/datetime/standard/DateTimeConverters$InstantToLongConverter
+instanceKlass org/springframework/format/datetime/standard/DateTimeConverters$LongToInstantConverter
+instanceKlass org/springframework/format/datetime/standard/DateTimeConverters$CalendarToInstantConverter
+instanceKlass org/springframework/format/datetime/standard/DateTimeConverters$CalendarToLocalDateTimeConverter
+instanceKlass org/springframework/format/datetime/standard/DateTimeConverters$CalendarToLocalTimeConverter
+instanceKlass org/springframework/format/datetime/standard/DateTimeConverters$CalendarToLocalDateConverter
+instanceKlass org/springframework/format/datetime/standard/DateTimeConverters$CalendarToOffsetDateTimeConverter
+instanceKlass org/springframework/format/datetime/standard/DateTimeConverters$CalendarToZonedDateTimeConverter
+instanceKlass org/springframework/format/datetime/standard/DateTimeConverters$OffsetDateTimeToInstantConverter
+instanceKlass org/springframework/format/datetime/standard/DateTimeConverters$OffsetDateTimeToZonedDateTimeConverter
+instanceKlass org/springframework/format/datetime/standard/DateTimeConverters$OffsetDateTimeToLocalDateTimeConverter
+instanceKlass org/springframework/format/datetime/standard/DateTimeConverters$OffsetDateTimeToLocalTimeConverter
+instanceKlass org/springframework/format/datetime/standard/DateTimeConverters$OffsetDateTimeToLocalDateConverter
+instanceKlass java/time/Instant
+instanceKlass org/springframework/format/datetime/standard/DateTimeConverters$ZonedDateTimeToInstantConverter
+instanceKlass java/time/OffsetDateTime
+instanceKlass org/springframework/format/datetime/standard/DateTimeConverters$ZonedDateTimeToOffsetDateTimeConverter
+instanceKlass org/springframework/format/datetime/standard/DateTimeConverters$ZonedDateTimeToLocalDateTimeConverter
+instanceKlass org/springframework/format/datetime/standard/DateTimeConverters$ZonedDateTimeToLocalTimeConverter
+instanceKlass org/springframework/format/datetime/standard/DateTimeConverters$ZonedDateTimeToLocalDateConverter
+instanceKlass java/time/LocalTime
+instanceKlass org/springframework/format/datetime/standard/DateTimeConverters$LocalDateTimeToLocalTimeConverter
+instanceKlass java/time/LocalDate
+instanceKlass java/time/chrono/ChronoLocalDate
+instanceKlass java/time/LocalDateTime
+instanceKlass java/time/chrono/ChronoLocalDateTime
+instanceKlass java/time/temporal/TemporalAdjuster
+instanceKlass org/springframework/format/datetime/standard/DateTimeConverters$LocalDateTimeToLocalDateConverter
+instanceKlass org/springframework/format/datetime/DateFormatterRegistrar$LongToCalendarConverter
+instanceKlass org/springframework/format/datetime/DateFormatterRegistrar$LongToDateConverter
+instanceKlass org/springframework/format/datetime/DateFormatterRegistrar$CalendarToLongConverter
+instanceKlass org/springframework/format/datetime/DateFormatterRegistrar$CalendarToDateConverter
+instanceKlass org/springframework/format/datetime/DateFormatterRegistrar$DateToCalendarConverter
+instanceKlass org/springframework/format/datetime/DateFormatterRegistrar$DateToLongConverter
+instanceKlass org/springframework/format/datetime/DateFormatterRegistrar
+instanceKlass org/springframework/format/datetime/standard/DateTimeConverters
+instanceKlass org/springframework/format/datetime/standard/DateTimeFormatterFactory
+instanceKlass org/springframework/format/datetime/standard/DateTimeFormatterRegistrar
+instanceKlass org/springframework/format/FormatterRegistrar
+instanceKlass org/springframework/format/support/FormattingConversionService$AnnotationParserConverter
+instanceKlass org/springframework/format/support/FormattingConversionService$AnnotationPrinterConverter
+instanceKlass org/springframework/util/NumberUtils
+instanceKlass org/springframework/core/GenericTypeResolver$$Lambda$31
+instanceKlass org/springframework/format/annotation/NumberFormat
+instanceKlass org/springframework/core/GenericTypeResolver
+instanceKlass org/springframework/context/support/EmbeddedValueResolutionSupport
+instanceKlass org/springframework/format/AnnotationFormatterFactory
+instanceKlass org/springframework/core/convert/support/ObjectToOptionalConverter
+instanceKlass org/springframework/core/convert/support/FallbackObjectToStringConverter
+instanceKlass org/springframework/core/convert/support/IdToEntityConverter
+instanceKlass org/springframework/core/convert/support/ObjectToObjectConverter
+instanceKlass java/time/ZonedDateTime
+instanceKlass java/time/chrono/ChronoZonedDateTime
+instanceKlass java/time/temporal/Temporal
+instanceKlass java/time/temporal/TemporalAccessor
+instanceKlass org/springframework/core/convert/support/ZonedDateTimeToCalendarConverter
+instanceKlass java/time/ZoneId
+instanceKlass org/springframework/core/convert/support/ZoneIdToTimeZoneConverter
+instanceKlass org/springframework/core/convert/support/StringToTimeZoneConverter
+instanceKlass org/springframework/core/convert/support/ByteBufferConverter
+instanceKlass org/springframework/core/convert/TypeDescriptor$AnnotatedElementAdapter
+instanceKlass org/springframework/core/convert/TypeDescriptor
+instanceKlass org/springframework/core/convert/support/StreamConverter
+instanceKlass org/springframework/core/convert/support/ObjectToCollectionConverter
+instanceKlass org/springframework/core/convert/support/CollectionToObjectConverter
+instanceKlass org/springframework/core/convert/support/StringToCollectionConverter
+instanceKlass org/springframework/core/convert/support/ObjectToArrayConverter
+instanceKlass org/springframework/core/convert/support/ArrayToObjectConverter
+instanceKlass org/springframework/core/convert/support/StringToArrayConverter
+instanceKlass org/springframework/core/convert/support/CollectionToStringConverter
+instanceKlass org/springframework/core/convert/support/ArrayToStringConverter
+instanceKlass org/springframework/core/convert/support/MapToMapConverter
+instanceKlass org/springframework/core/convert/support/CollectionToCollectionConverter
+instanceKlass org/springframework/core/convert/support/ArrayToArrayConverter
+instanceKlass org/springframework/core/convert/support/CollectionToArrayConverter
+instanceKlass org/springframework/core/convert/support/ArrayToCollectionConverter
+instanceKlass java/util/UUID
+instanceKlass org/springframework/core/convert/support/StringToUUIDConverter
+instanceKlass org/springframework/core/convert/support/PropertiesToStringConverter
+instanceKlass org/springframework/core/convert/support/StringToPropertiesConverter
+instanceKlass org/springframework/core/convert/support/StringToCurrencyConverter
+instanceKlass org/springframework/core/convert/support/StringToCharsetConverter
+instanceKlass org/springframework/core/convert/support/StringToLocaleConverter
+instanceKlass org/springframework/core/convert/support/IntegerToEnumConverterFactory
+instanceKlass sun/reflect/generics/tree/Wildcard
+instanceKlass sun/reflect/generics/tree/BottomSignature
+instanceKlass org/springframework/core/convert/support/AbstractConditionalEnumConverter
+instanceKlass org/springframework/core/convert/support/StringToEnumConverterFactory
+instanceKlass org/springframework/core/convert/support/StringToBooleanConverter
+instanceKlass org/springframework/core/convert/support/CharacterToNumberFactory
+instanceKlass org/springframework/core/convert/support/NumberToCharacterConverter
+instanceKlass org/springframework/core/convert/support/StringToCharacterConverter
+instanceKlass org/springframework/core/convert/support/GenericConversionService$ConverterAdapter
+instanceKlass org/springframework/core/convert/support/ObjectToStringConverter
+instanceKlass org/springframework/core/convert/converter/Converter
+instanceKlass org/springframework/core/convert/support/StringToNumberConverterFactory
+instanceKlass java/util/concurrent/ConcurrentLinkedDeque$Node
+instanceKlass org/springframework/core/convert/support/GenericConversionService$Converters$$Lambda$30
+instanceKlass org/springframework/core/convert/support/GenericConversionService$ConvertersForPair
+instanceKlass org/springframework/core/convert/converter/GenericConverter$ConvertiblePair
+instanceKlass org/springframework/core/convert/support/GenericConversionService$ConverterFactoryAdapter
+instanceKlass org/springframework/core/convert/converter/ConditionalGenericConverter
+instanceKlass org/springframework/core/convert/support/NumberToNumberConverterFactory
+instanceKlass org/springframework/core/convert/converter/ConditionalConverter
+instanceKlass org/springframework/core/convert/converter/ConverterFactory
+instanceKlass org/springframework/core/convert/support/GenericConversionService$Converters
+instanceKlass org/springframework/core/convert/support/GenericConversionService$NoOpConverter
+instanceKlass org/springframework/core/convert/converter/GenericConverter
+instanceKlass org/springframework/core/convert/support/GenericConversionService
+instanceKlass org/springframework/core/convert/support/ConfigurableConversionService
+instanceKlass org/springframework/core/convert/ConversionService
+instanceKlass org/springframework/context/EmbeddedValueResolverAware
+instanceKlass org/springframework/format/FormatterRegistry
+instanceKlass org/springframework/core/convert/converter/ConverterRegistry
+instanceKlass java/lang/ProcessEnvironment$CheckedEntry
+instanceKlass java/lang/ProcessEnvironment$CheckedEntrySet$1
+instanceKlass java/lang/ProcessEnvironment$EntryComparator
+instanceKlass java/lang/ProcessEnvironment$NameComparator
+instanceKlass javax/naming/spi/NamingManager
+instanceKlass com/sun/naming/internal/VersionHelper12$5
+instanceKlass com/sun/naming/internal/VersionHelper12$InputStreamEnumeration$1
+instanceKlass com/sun/naming/internal/VersionHelper12$InputStreamEnumeration
+instanceKlass javax/naming/NamingEnumeration
+instanceKlass com/sun/naming/internal/VersionHelper12$6
+instanceKlass com/sun/naming/internal/VersionHelper12$7
+instanceKlass com/sun/naming/internal/VersionHelper12$3
+instanceKlass com/sun/naming/internal/VersionHelper12$1
+instanceKlass com/sun/naming/internal/VersionHelper
+instanceKlass com/sun/naming/internal/ResourceManager
+instanceKlass javax/naming/InitialContext
+instanceKlass javax/naming/Context
+instanceKlass org/springframework/jndi/JndiAccessor
+instanceKlass org/springframework/core/env/AbstractPropertyResolver
+instanceKlass org/springframework/core/env/MutablePropertySources
+instanceKlass org/springframework/core/env/PropertySources
+instanceKlass org/springframework/core/env/AbstractEnvironment
+instanceKlass org/springframework/web/context/ConfigurableWebEnvironment
+instanceKlass org/springframework/core/env/ConfigurableEnvironment
+instanceKlass org/springframework/core/env/ConfigurablePropertyResolver
+instanceKlass org/springframework/core/env/Environment
+instanceKlass org/springframework/core/env/PropertyResolver
+instanceKlass org/springframework/boot/SpringApplication$1
+instanceKlass org/springframework/core/env/CommandLineArgs
+instanceKlass org/springframework/core/env/SimpleCommandLineArgsParser
+instanceKlass org/springframework/core/env/PropertySource
+instanceKlass org/springframework/boot/DefaultApplicationArguments
+instanceKlass org/springframework/boot/ApplicationArguments
+instanceKlass org/springframework/boot/logging/logback/LogbackLoggingSystem$$Lambda$29
+instanceKlass org/springframework/boot/logging/AbstractLoggingSystem$LogLevels
+instanceKlass org/springframework/boot/logging/LoggerConfigurationComparator
+instanceKlass org/springframework/boot/logging/java/JavaLoggingSystem$Factory
+instanceKlass org/springframework/boot/logging/log4j2/Log4J2LoggingSystem$Factory
+instanceKlass org/springframework/boot/logging/logback/LogbackLoggingSystem$Factory
+instanceKlass org/springframework/boot/logging/LoggingSystemFactory$$Lambda$28
+instanceKlass org/springframework/boot/logging/DelegatingLoggingSystemFactory
+instanceKlass org/springframework/boot/logging/LoggingSystemFactory
+instanceKlass org/springframework/boot/logging/LoggingSystem
+instanceKlass org/springframework/aop/SpringProxy
+instanceKlass org/springframework/aop/support/AopUtils
+instanceKlass org/springframework/core/ResolvableType$WildcardBounds
+instanceKlass org/springframework/context/event/GenericApplicationListenerAdapter
+instanceKlass org/springframework/context/event/AbstractApplicationEventMulticaster$CachedListenerRetriever
+instanceKlass org/springframework/context/event/AbstractApplicationEventMulticaster$ListenerCacheKey
+instanceKlass org/springframework/core/ResolvableTypeProvider
+instanceKlass org/springframework/core/metrics/DefaultApplicationStartup$DefaultStartupStep$DefaultTags
+instanceKlass org/springframework/core/metrics/StartupStep$Tags
+instanceKlass org/springframework/core/metrics/DefaultApplicationStartup$DefaultStartupStep
+instanceKlass org/springframework/boot/SpringApplicationRunListeners$$Lambda$27
+instanceKlass org/springframework/core/metrics/StartupStep
+instanceKlass org/springframework/boot/SpringApplicationRunListeners$$Lambda$26
+instanceKlass org/springframework/aop/framework/Advised
+instanceKlass org/springframework/aop/TargetClassAware
+instanceKlass org/springframework/aop/framework/AopProxyUtils
+instanceKlass org/springframework/boot/context/event/EventPublishingRunListener
+instanceKlass org/springframework/boot/SpringApplicationRunListener
+instanceKlass org/springframework/boot/SpringApplicationRunListeners
+instanceKlass org/springframework/boot/SpringApplication$$Lambda$25
+instanceKlass org/springframework/context/event/AbstractApplicationEventMulticaster$DefaultListenerRetriever
+instanceKlass org/springframework/context/event/AbstractApplicationEventMulticaster
+instanceKlass org/springframework/beans/factory/BeanFactoryAware
+instanceKlass org/springframework/beans/factory/BeanClassLoaderAware
+instanceKlass org/springframework/context/event/ApplicationEventMulticaster
+instanceKlass org/springframework/boot/DefaultBootstrapContext
+instanceKlass org/springframework/boot/ConfigurableBootstrapContext
+instanceKlass org/springframework/boot/BootstrapContext
+instanceKlass org/springframework/boot/BootstrapRegistry
+instanceKlass org/springframework/util/StopWatch
+instanceKlass org/springframework/core/annotation/TypeMappedAnnotation$$Lambda$24
+instanceKlass org/springframework/core/annotation/ValueExtractor
+instanceKlass org/springframework/core/annotation/AnnotationTypeMappings$$Lambda$23
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/core/annotation/AliasFor
+instanceKlass org/springframework/core/annotation/AnnotationTypeMapping$MirrorSets
+instanceKlass org/springframework/core/annotation/AnnotationTypeMapping$MirrorSets$MirrorSet
+instanceKlass org/springframework/core/annotation/AnnotationTypeMapping
+instanceKlass org/springframework/core/annotation/AnnotationTypeMappings$Cache$$Lambda$22
+instanceKlass org/springframework/core/annotation/AnnotationTypeMappings$$Lambda$21
+instanceKlass org/springframework/core/annotation/AnnotationTypeMappings$Cache
+instanceKlass org/springframework/core/annotation/AnnotationTypeMappings
+instanceKlass org/springframework/core/annotation/RepeatableContainers$StandardRepeatableContainers$$Lambda$20
+instanceKlass org/springframework/core/annotation/AttributeMethods$$Lambda$19
+instanceKlass org/springframework/core/annotation/AttributeMethods$$Lambda$18
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/core/annotation/AttributeMethods
+instanceKlass org/springframework/core/NativeDetector
+instanceKlass java/util/concurrent/CountDownLatch
+instanceKlass org/springframework/boot/autoconfigure/BackgroundPreinitializer
+instanceKlass org/springframework/boot/liquibase/LiquibaseServiceLocatorApplicationListener
+instanceKlass org/springframework/boot/logging/DeferredLog$Lines
+instanceKlass org/springframework/boot/env/EnvironmentPostProcessor
+instanceKlass org/springframework/boot/env/ReflectionEnvironmentPostProcessorsFactory
+instanceKlass org/springframework/boot/logging/DeferredLogs
+instanceKlass org/springframework/boot/logging/DeferredLogFactory
+instanceKlass org/springframework/boot/env/EnvironmentPostProcessorsFactory
+instanceKlass org/springframework/boot/env/EnvironmentPostProcessorApplicationListener
+instanceKlass org/springframework/util/MultiValueMapAdapter$$Lambda$17
+instanceKlass org/springframework/util/MultiValueMapAdapter
+instanceKlass org/springframework/core/ResolvableType$DefaultVariableResolver
+instanceKlass org/springframework/util/MultiValueMap
+instanceKlass org/springframework/core/ResolvableType$TypeVariablesVariableResolver
+instanceKlass org/springframework/core/ResolvableType$VariableResolver
+instanceKlass org/springframework/core/ResolvableType$SyntheticParameterizedType
+instanceKlass org/springframework/core/SerializableTypeWrapper$SerializableTypeProxy
+instanceKlass java/lang/reflect/WildcardType
+instanceKlass org/springframework/core/SerializableTypeWrapper
+instanceKlass org/springframework/core/ResolvableType$EmptyType
+instanceKlass org/springframework/core/ResolvableType
+instanceKlass org/springframework/boot/context/properties/bind/Bindable
+instanceKlass org/springframework/boot/context/properties/source/ConfigurationPropertyName$ElementsParser
+instanceKlass org/springframework/boot/context/properties/source/ConfigurationPropertyName$Elements
+instanceKlass org/springframework/boot/context/properties/source/ConfigurationPropertyName
+instanceKlass org/springframework/boot/context/logging/LoggingApplicationListener
+instanceKlass org/springframework/context/event/GenericApplicationListener
+instanceKlass org/springframework/context/event/SmartApplicationListener
+instanceKlass org/springframework/boot/context/config/DelegatingApplicationListener
+instanceKlass org/springframework/boot/context/config/AnsiOutputApplicationListener
+instanceKlass org/springframework/boot/context/FileEncodingApplicationListener
+instanceKlass org/springframework/boot/builder/ParentContextCloserApplicationListener
+instanceKlass org/springframework/context/ApplicationContextAware
+instanceKlass org/springframework/beans/factory/Aware
+instanceKlass org/springframework/boot/ClearCachesApplicationListener
+instanceKlass org/springframework/core/DecoratingProxy
+instanceKlass org/springframework/core/annotation/AbstractMergedAnnotation
+instanceKlass org/springframework/core/annotation/MergedAnnotation
+instanceKlass java/lang/FunctionalInterface
+instanceKlass org/springframework/core/annotation/AnnotationsScanner$1
+instanceKlass org/springframework/core/annotation/MergedAnnotationSelectors$FirstDirectlyDeclared
+instanceKlass org/springframework/core/annotation/MergedAnnotationSelectors$Nearest
+instanceKlass org/springframework/core/annotation/MergedAnnotationSelector
+instanceKlass org/springframework/core/annotation/MergedAnnotationSelectors
+instanceKlass org/springframework/core/annotation/TypeMappedAnnotations$MergedAnnotationFinder
+instanceKlass org/springframework/core/annotation/AnnotationsProcessor
+instanceKlass org/springframework/core/annotation/Order
+instanceKlass org/springframework/core/annotation/OrderUtils
+instanceKlass org/springframework/core/annotation/AnnotationsScanner
+instanceKlass org/springframework/core/annotation/TypeMappedAnnotations
+instanceKlass org/springframework/core/annotation/AnnotationFilter$2
+instanceKlass org/springframework/core/annotation/AnnotationFilter$1
+instanceKlass org/springframework/core/annotation/PackagesAnnotationFilter
+instanceKlass org/springframework/core/annotation/AnnotationFilter
+instanceKlass org/springframework/core/annotation/RepeatableContainers
+instanceKlass org/springframework/core/annotation/MergedAnnotations
+instanceKlass org/springframework/core/PriorityOrdered
+instanceKlass org/springframework/boot/autoconfigure/logging/ConditionEvaluationReportLoggingListener
+instanceKlass org/springframework/boot/autoconfigure/SharedMetadataReaderFactoryContextInitializer
+instanceKlass org/springframework/boot/web/context/ServerPortInfoApplicationContextInitializer
+instanceKlass org/springframework/context/ApplicationListener
+instanceKlass java/util/EventListener
+instanceKlass org/springframework/boot/rsocket/context/RSocketPortInfoApplicationContextInitializer
+instanceKlass org/springframework/boot/context/config/DelegatingApplicationContextInitializer
+instanceKlass org/springframework/boot/context/ContextIdApplicationContextInitializer
+instanceKlass org/springframework/core/Ordered
+instanceKlass org/springframework/util/ReflectionUtils$$Lambda$16
+instanceKlass org/springframework/util/ReflectionUtils$FieldFilter
+instanceKlass org/springframework/util/ReflectionUtils$$Lambda$15
+instanceKlass org/springframework/util/ReflectionUtils$MethodFilter
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/util/ReflectionUtils
+instanceKlass org/springframework/core/LocalVariableTableParameterNameDiscoverer
+instanceKlass org/springframework/core/StandardReflectionParameterNameDiscoverer
+instanceKlass org/springframework/core/KotlinDetector
+instanceKlass org/springframework/core/PrioritizedParameterNameDiscoverer
+instanceKlass org/springframework/core/ParameterNameDiscoverer
+instanceKlass org/springframework/beans/BeanUtils
+instanceKlass org/springframework/boot/context/ConfigurationWarningsApplicationContextInitializer
+instanceKlass org/springframework/context/ApplicationContextInitializer
+instanceKlass org/springframework/util/ObjectUtils
+instanceKlass java/util/stream/ForEachOps$ForEachOp
+instanceKlass java/util/stream/ForEachOps
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass org/springframework/boot/SpringApplication$$Lambda$14
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/boot/SpringApplication$$Lambda$13
+instanceKlass org/springframework/boot/BootstrapRegistryInitializer
+instanceKlass org/springframework/core/OrderComparator
+instanceKlass org/springframework/util/ConcurrentReferenceHashMap$Entry
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/util/ConcurrentReferenceHashMap$Segment$$Lambda$12
+instanceKlass org/springframework/util/ConcurrentReferenceHashMap$Entries
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/util/ConcurrentReferenceHashMap$Task
+instanceKlass java/util/stream/Sink$ChainedReference
+instanceKlass java/util/stream/ReduceOps$Box
+instanceKlass java/util/stream/ReduceOps$AccumulatingSink
+instanceKlass java/util/stream/TerminalSink
+instanceKlass java/util/stream/Sink
+instanceKlass java/util/function/Consumer
+instanceKlass java/util/stream/ReduceOps$ReduceOp
+instanceKlass java/util/stream/TerminalOp
+instanceKlass java/util/stream/ReduceOps
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/util/function/Function$$Lambda$11
+instanceKlass org/springframework/core/io/support/SpringFactoriesLoader$$Lambda$10
+instanceKlass java/util/stream/Collectors$$Lambda$9
+instanceKlass java/util/stream/Collectors$$Lambda$8
+instanceKlass java/util/function/BinaryOperator
+instanceKlass java/util/stream/Collectors$$Lambda$7
+instanceKlass java/util/function/BiConsumer
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/util/stream/Collectors$$Lambda$6
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/util/stream/Collectors$CollectorImpl
+instanceKlass java/util/stream/Collector
+instanceKlass java/util/stream/Collectors
+instanceKlass java/util/stream/DistinctOps
+instanceKlass java/util/EnumMap$1
+instanceKlass java/util/stream/StreamOpFlag$MaskBuilder
+instanceKlass java/util/stream/PipelineHelper
+instanceKlass java/util/stream/Stream
+instanceKlass java/util/stream/BaseStream
+instanceKlass java/util/stream/StreamSupport
+instanceKlass java/util/ArrayList$ArrayListSpliterator
+instanceKlass java/util/Spliterator
+instanceKlass org/springframework/core/io/support/SpringFactoriesLoader$$Lambda$5
+instanceKlass java/util/zip/ZipFile$ZipEntryIterator
+instanceKlass java/util/jar/JarFile$JarEntryIterator
+instanceKlass org/springframework/core/io/support/SpringFactoriesLoader$$Lambda$4
+instanceKlass org/springframework/util/CollectionUtils
+instanceKlass org/springframework/util/StringUtils
+instanceKlass org/springframework/util/ResourceUtils
+instanceKlass sun/net/www/protocol/jar/JarFileFactory
+instanceKlass sun/net/www/protocol/jar/URLJarFile$URLJarFileCloseController
+instanceKlass org/springframework/core/SpringProperties
+instanceKlass org/springframework/core/io/support/PropertiesLoaderUtils
+instanceKlass org/springframework/core/io/AbstractResource
+instanceKlass org/springframework/core/io/Resource
+instanceKlass org/springframework/core/io/InputStreamSource
+instanceKlass org/springframework/core/io/support/SpringFactoriesLoader
+instanceKlass org/springframework/boot/Bootstrapper
+instanceKlass org/springframework/web/context/ConfigurableWebApplicationContext
+instanceKlass org/springframework/web/context/WebApplicationContext
+instanceKlass javax/servlet/Servlet
+instanceKlass java/util/Optional
+instanceKlass java/util/IdentityHashMap$EntryIterator$Entry
+instanceKlass java/util/IdentityHashMap$IdentityHashMapIterator
+instanceKlass org/springframework/util/ConcurrentReferenceHashMap$Reference
+instanceKlass org/springframework/util/ConcurrentReferenceHashMap$ReferenceManager
+instanceKlass org/springframework/util/ClassUtils
+instanceKlass org/springframework/util/Assert
+instanceKlass org/springframework/core/metrics/DefaultApplicationStartup
+instanceKlass org/springframework/core/metrics/ApplicationStartup
+instanceKlass org/springframework/boot/ApplicationContextFactory$$Lambda$3
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass org/springframework/context/ConfigurableApplicationContext
+instanceKlass org/springframework/context/Lifecycle
+instanceKlass org/springframework/context/ApplicationContext
+instanceKlass org/springframework/core/io/support/ResourcePatternResolver
+instanceKlass org/springframework/core/io/ResourceLoader
+instanceKlass org/springframework/context/ApplicationEventPublisher
+instanceKlass org/springframework/context/MessageSource
+instanceKlass org/springframework/beans/factory/HierarchicalBeanFactory
+instanceKlass org/springframework/beans/factory/ListableBeanFactory
+instanceKlass org/springframework/beans/factory/BeanFactory
+instanceKlass org/springframework/core/env/EnvironmentCapable
+instanceKlass org/springframework/boot/ApplicationContextFactory
+instanceKlass org/apache/commons/logging/LogAdapter$Slf4jLog
+instanceKlass org/apache/commons/logging/Log
+instanceKlass ch/qos/logback/classic/util/LoggerNameUtil
+instanceKlass ch/qos/logback/classic/selector/DefaultContextSelector
+instanceKlass ch/qos/logback/classic/selector/ContextSelector
+instanceKlass ch/qos/logback/core/util/StatusPrinter
+instanceKlass ch/qos/logback/core/status/StatusUtil
+instanceKlass ch/qos/logback/core/spi/AppenderAttachableImpl
+instanceKlass ch/qos/logback/core/util/EnvUtil
+instanceKlass ch/qos/logback/core/pattern/Converter
+instanceKlass java/text/DigitList
+instanceKlass java/text/FieldPosition
+instanceKlass java/util/Currency$CurrencyNameGetter
+instanceKlass java/util/Currency$1
+instanceKlass java/util/Currency
+instanceKlass java/text/DecimalFormatSymbols
+instanceKlass java/util/concurrent/atomic/AtomicMarkableReference$Pair
+instanceKlass java/util/concurrent/atomic/AtomicMarkableReference
+instanceKlass java/text/DateFormatSymbols
+instanceKlass sun/util/locale/provider/CalendarDataUtility$CalendarWeekParameterGetter
+instanceKlass sun/util/locale/provider/CalendarDataUtility
+instanceKlass java/util/Calendar$Builder
+instanceKlass sun/util/locale/provider/AvailableLanguageTags
+instanceKlass java/util/Calendar
+instanceKlass java/util/Locale$1
+instanceKlass java/text/AttributedCharacterIterator$Attribute
+instanceKlass java/text/Format
+instanceKlass ch/qos/logback/core/util/CachingDateFormatter
+instanceKlass ch/qos/logback/core/Layout
+instanceKlass ch/qos/logback/core/encoder/Encoder
+instanceKlass ch/qos/logback/core/util/COWArrayList
+instanceKlass ch/qos/logback/core/spi/FilterAttachableImpl
+instanceKlass ch/qos/logback/core/Appender
+instanceKlass ch/qos/logback/core/spi/FilterAttachable
+instanceKlass ch/qos/logback/core/spi/ContextAwareBase
+instanceKlass ch/qos/logback/classic/util/EnvUtil
+instanceKlass ch/qos/logback/classic/spi/Configurator
+instanceKlass ch/qos/logback/core/spi/ContextAware
+instanceKlass ch/qos/logback/core/status/StatusBase
+instanceKlass ch/qos/logback/core/status/Status
+instanceKlass java/net/URLClassLoader$2
+instanceKlass java/util/Collections$3
+instanceKlass java/security/PermissionsEnumerator
+instanceKlass sun/security/provider/PolicyFile$7
+instanceKlass sun/security/provider/PolicyFile$5
+instanceKlass sun/security/provider/PolicyFile$PolicyEntry
+instanceKlass java/util/Vector$1
+instanceKlass sun/security/provider/PolicyParser$PermissionEntry
+instanceKlass sun/security/provider/PolicyParser$GrantEntry
+instanceKlass java/io/StreamTokenizer
+instanceKlass sun/security/util/PolicyUtil
+instanceKlass sun/security/provider/PolicyParser
+instanceKlass sun/security/util/PropertyExpander
+instanceKlass sun/security/provider/PolicyFile$3
+instanceKlass java/security/ProtectionDomain$2$1
+instanceKlass sun/misc/JavaSecurityProtectionDomainAccess$ProtectionDomainCache
+instanceKlass sun/util/locale/LanguageTag
+instanceKlass sun/security/provider/PolicyFile$PolicyInfo
+instanceKlass sun/security/provider/PolicyFile$1
+instanceKlass java/util/ResourceBundle$CacheKeyReference
+instanceKlass java/util/ResourceBundle$CacheKey
+instanceKlass java/util/ResourceBundle$RBClassLoader$1
+instanceKlass java/security/Policy$1
+instanceKlass java/util/spi/ResourceBundleControlProvider
+instanceKlass java/security/Policy$PolicyInfo
+instanceKlass java/util/concurrent/atomic/AtomicReference
+instanceKlass java/util/ResourceBundle
+instanceKlass java/security/Policy
+instanceKlass java/util/ResourceBundle$Control
+instanceKlass ch/qos/logback/core/util/Loader$1
+instanceKlass sun/util/resources/LocaleData$1
+instanceKlass sun/util/resources/LocaleData
+instanceKlass sun/util/locale/provider/LocaleResources
+instanceKlass ch/qos/logback/core/util/Loader
+instanceKlass sun/util/locale/provider/TimeZoneNameUtility$TimeZoneNameGetter
+instanceKlass sun/util/locale/provider/LocaleServiceProviderPool$LocalizedObjectGetter
+instanceKlass sun/util/locale/provider/SPILocaleProviderAdapter$1
+instanceKlass ch/qos/logback/core/util/OptionHelper
+instanceKlass sun/util/locale/provider/JRELocaleProviderAdapter$1
+instanceKlass sun/util/locale/provider/LocaleDataMetaInfo
+instanceKlass sun/util/locale/provider/LocaleProviderAdapter$1
+instanceKlass ch/qos/logback/core/util/StatusListenerConfigHelper
+instanceKlass sun/util/locale/provider/ResourceBundleBasedAdapter
+instanceKlass sun/util/locale/provider/LocaleProviderAdapter
+instanceKlass ch/qos/logback/classic/util/ContextInitializer
+instanceKlass sun/util/locale/provider/LocaleServiceProviderPool
+instanceKlass java/util/spi/LocaleServiceProvider
+instanceKlass sun/util/locale/provider/TimeZoneNameUtility
+instanceKlass ch/qos/logback/classic/util/ContextSelectorStaticBinder
+instanceKlass sun/util/calendar/CalendarUtils
+instanceKlass sun/util/calendar/CalendarDate
+instanceKlass java/util/TimeZone$1
+instanceKlass sun/util/calendar/ZoneInfoFile$ZoneOffsetTransitionRule
+instanceKlass ch/qos/logback/classic/Level
+instanceKlass ch/qos/logback/classic/Logger
+instanceKlass ch/qos/logback/core/spi/AppenderAttachable
+instanceKlass ch/qos/logback/classic/spi/LoggerContextVO
+instanceKlass sun/util/calendar/ZoneInfoFile$1
+instanceKlass sun/util/calendar/ZoneInfoFile
+instanceKlass ch/qos/logback/core/spi/LogbackLock
+instanceKlass ch/qos/logback/core/helpers/CyclicBuffer
+instanceKlass java/util/TimeZone
+instanceKlass ch/qos/logback/core/BasicStatusManager
+instanceKlass ch/qos/logback/core/status/StatusManager
+instanceKlass sun/nio/cs/Surrogate
+instanceKlass sun/nio/cs/Surrogate$Parser
+instanceKlass ch/qos/logback/core/ContextBase
+instanceKlass ch/qos/logback/core/Context
+instanceKlass ch/qos/logback/core/spi/PropertyContainer
+instanceKlass ch/qos/logback/core/spi/LifeCycle
+instanceKlass org/slf4j/impl/StaticLoggerBinder
+instanceKlass org/slf4j/spi/LoggerFactoryBinder
+instanceKlass org/slf4j/helpers/Util
+instanceKlass org/slf4j/helpers/NOPLoggerFactory
+instanceKlass java/util/concurrent/LinkedBlockingQueue$Node
+instanceKlass org/slf4j/helpers/SubstituteLoggerFactory
+instanceKlass org/slf4j/ILoggerFactory
+instanceKlass org/slf4j/LoggerFactory
+instanceKlass org/apache/commons/logging/LogAdapter$Slf4jAdapter
+instanceKlass org/apache/commons/logging/LogAdapter$1
+instanceKlass org/slf4j/spi/LocationAwareLogger
+instanceKlass org/slf4j/Logger
+instanceKlass org/apache/logging/log4j/spi/Provider
+instanceKlass org/apache/logging/log4j/spi/ExtendedLogger
+instanceKlass org/apache/logging/log4j/Logger
+instanceKlass org/apache/commons/logging/LogAdapter
+instanceKlass org/apache/commons/logging/LogFactory
+instanceKlass org/springframework/boot/SpringApplication
+instanceKlass sun/launcher/LauncherHelper$FXHelper
+instanceKlass com/rehome/weather/WeatherApplication
+instanceKlass java/io/FileOutputStream$1
+instanceKlass sun/usagetracker/UsageTrackerClient$3
+instanceKlass sun/usagetracker/UsageTrackerClient$2
+instanceKlass sun/usagetracker/UsageTrackerClient$4
+instanceKlass sun/usagetracker/UsageTrackerClient$1
+instanceKlass java/util/concurrent/atomic/AtomicBoolean
+instanceKlass sun/usagetracker/UsageTrackerClient
+instanceKlass sun/misc/PostVMInitHook$1
+instanceKlass jdk/internal/util/EnvUtils
+instanceKlass sun/misc/PostVMInitHook$2
+instanceKlass sun/misc/PostVMInitHook
+instanceKlass sun/management/counter/Units
+instanceKlass sun/management/ConnectorAddressLink
+instanceKlass java/io/SerialCallbackContext
+instanceKlass java/io/ObjectStreamClass$ClassDataSlot
+instanceKlass java/io/ObjectStreamClass$FieldReflector
+instanceKlass java/io/ObjectInput
+instanceKlass java/io/DataInput
+instanceKlass sun/reflect/ClassDefiner$1
+instanceKlass sun/reflect/ClassDefiner
+instanceKlass sun/reflect/MethodAccessorGenerator$1
+instanceKlass sun/reflect/Label$PatchInfo
+instanceKlass sun/reflect/Label
+instanceKlass sun/reflect/UTF8
+instanceKlass sun/reflect/ClassFileAssembler
+instanceKlass sun/reflect/ByteVectorImpl
+instanceKlass sun/reflect/ByteVector
+instanceKlass sun/reflect/ByteVectorFactory
+instanceKlass sun/reflect/AccessorGenerator
+instanceKlass sun/reflect/ClassFileConstants
+instanceKlass java/io/ObjectStreamClass$3
+instanceKlass java/lang/reflect/WeakCache$LookupValue
+instanceKlass java/io/ObjectStreamClass$EntryFuture
+instanceKlass java/io/ObjectStreamClass$Caches
+instanceKlass java/io/ObjectStreamClass$1
+instanceKlass java/io/ObjectStreamClass
+instanceKlass java/io/Bits
+instanceKlass java/io/ObjectOutputStream$ReplaceTable
+instanceKlass java/io/ObjectOutputStream$HandleTable
+instanceKlass java/io/ObjectStreamConstants
+instanceKlass java/io/ObjectOutput
+instanceKlass org/omg/CORBA/portable/ObjectImpl
+instanceKlass org/omg/CORBA/Object
+instanceKlass javax/management/remote/rmi/RMIConnector$2
+instanceKlass com/sun/jmx/remote/protocol/iiop/IIOPProxyImpl
+instanceKlass com/sun/jmx/remote/internal/IIOPProxy
+instanceKlass com/sun/jmx/remote/internal/IIOPHelper$1
+instanceKlass com/sun/jmx/remote/internal/IIOPHelper
+instanceKlass com/sun/jmx/remote/internal/ProxyRef
+instanceKlass javax/management/remote/NotificationResult
+instanceKlass javax/security/auth/Subject
+instanceKlass java/rmi/MarshalledObject
+instanceKlass javax/management/remote/rmi/RMIConnector$1
+instanceKlass javax/management/remote/rmi/RMIConnector
+instanceKlass javax/management/remote/JMXConnector
+instanceKlass java/net/Socket
+instanceKlass sun/rmi/server/UnicastServerRef$HashToMethod_Maps$1
+instanceKlass sun/rmi/server/WeakClassHashMap$ValueCell
+instanceKlass sun/rmi/transport/tcp/TCPTransport$AcceptLoop
+instanceKlass sun/rmi/runtime/NewThreadAction$2
+instanceKlass sun/rmi/runtime/NewThreadAction$1
+instanceKlass sun/rmi/runtime/NewThreadAction
+instanceKlass sun/net/NetHooks
+instanceKlass java/net/InetSocketAddress$InetSocketAddressHolder
+instanceKlass java/net/SocketAddress
+instanceKlass sun/misc/FloatingDecimal$ASCIIToBinaryBuffer
+instanceKlass java/net/PlainSocketImpl$1
+instanceKlass java/net/StandardSocketOptions$StdSocketOption
+instanceKlass java/net/StandardSocketOptions
+instanceKlass jdk/net/ExtendedSocketOptions$PlatformSocketOptions$1
+instanceKlass jdk/net/ExtendedSocketOptions$PlatformSocketOptions
+instanceKlass jdk/net/SocketFlow
+instanceKlass jdk/net/ExtendedSocketOptions$ExtSocketOption
+instanceKlass java/net/SocketOption
+instanceKlass jdk/net/ExtendedSocketOptions
+instanceKlass sun/net/ExtendedSocketOptions
+instanceKlass java/net/AbstractPlainSocketImpl$1
+instanceKlass java/net/SocketImpl
+instanceKlass java/net/SocketOptions
+instanceKlass java/net/SocksConsts
+instanceKlass java/net/ServerSocket
+instanceKlass sun/rmi/transport/ObjectEndpoint
+instanceKlass sun/rmi/transport/DGCImpl$2$1
+instanceKlass sun/rmi/transport/DGCImpl_Skel
+instanceKlass java/rmi/server/Skeleton
+instanceKlass java/rmi/server/Operation
+instanceKlass sun/rmi/transport/DGCImpl$2$$Lambda$2
+instanceKlass sun/misc/ObjectInputFilter$FilterInfo
+instanceKlass sun/rmi/transport/DGCImpl$2
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/InnerClassLambdaMetafactory$1
+instanceKlass sun/rmi/transport/DGCImpl$$Lambda$1
+instanceKlass java/lang/invoke/InfoFromMemberName
+instanceKlass java/lang/invoke/MethodHandleInfo
+instanceKlass sun/security/util/SecurityConstants
+instanceKlass java/security/AccessController$1
+instanceKlass java/lang/invoke/AbstractValidatingLambdaMetafactory
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass jdk/internal/org/objectweb/asm/FieldVisitor
+instanceKlass java/lang/invoke/BoundMethodHandle$Factory$1
+instanceKlass java/lang/invoke/BoundMethodHandle$SpeciesData$1
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaFormBuffer
+instanceKlass java/lang/invoke/LambdaFormEditor
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/MethodHandleImpl$Lazy
+instanceKlass java/lang/invoke/LambdaForm$BMH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass sun/misc/ObjectInputFilter
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/util/SubList$1
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/LambdaForm$MH
+instanceKlass java/lang/invoke/InvokerBytecodeGenerator$CpPatch
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass java/lang/invoke/LambdaForm$DMH
+instanceKlass sun/invoke/empty/Empty
+instanceKlass sun/invoke/util/VerifyType
+instanceKlass java/lang/invoke/InvokerBytecodeGenerator$2
+instanceKlass jdk/internal/org/objectweb/asm/AnnotationVisitor
+instanceKlass jdk/internal/org/objectweb/asm/Frame
+instanceKlass jdk/internal/org/objectweb/asm/Label
+instanceKlass jdk/internal/org/objectweb/asm/Type
+instanceKlass jdk/internal/org/objectweb/asm/MethodVisitor
+instanceKlass jdk/internal/org/objectweb/asm/Item
+instanceKlass jdk/internal/org/objectweb/asm/ByteVector
+instanceKlass jdk/internal/org/objectweb/asm/ClassVisitor
+instanceKlass java/lang/invoke/InvokerBytecodeGenerator
+instanceKlass java/lang/invoke/DirectMethodHandle$Lazy
+instanceKlass sun/invoke/util/BytecodeDescriptor
+instanceKlass java/lang/invoke/BoundMethodHandle$Factory
+instanceKlass java/lang/invoke/BoundMethodHandle$SpeciesData
+instanceKlass java/lang/invoke/LambdaForm$NamedFunction
+instanceKlass java/lang/invoke/LambdaForm$Name
+instanceKlass sun/invoke/util/ValueConversions
+instanceKlass sun/invoke/util/VerifyAccess
+instanceKlass java/lang/Long$LongCache
+instanceKlass java/lang/Character$CharacterCache
+instanceKlass java/lang/Short$ShortCache
+instanceKlass java/lang/Byte$ByteCache
+instanceKlass sun/invoke/util/Wrapper$Format
+instanceKlass java/lang/invoke/MethodHandles
+instanceKlass java/lang/invoke/Invokers
+instanceKlass java/lang/invoke/MethodTypeForm
+instanceKlass java/lang/invoke/MethodType$ConcurrentWeakInternSet
+instanceKlass java/lang/invoke/MethodHandles$Lookup
+instanceKlass java/lang/invoke/LambdaMetafactory
+instanceKlass java/util/concurrent/RunnableScheduledFuture
+instanceKlass java/util/concurrent/ScheduledFuture
+instanceKlass java/util/concurrent/Delayed
+instanceKlass java/util/concurrent/RunnableFuture
+instanceKlass java/util/concurrent/Future
+instanceKlass sun/rmi/runtime/RuntimeUtil$1
+instanceKlass java/util/concurrent/ScheduledExecutorService
+instanceKlass sun/rmi/runtime/RuntimeUtil
+instanceKlass sun/rmi/runtime/RuntimeUtil$GetInstanceAction
+instanceKlass sun/rmi/transport/DGCImpl
+instanceKlass java/rmi/dgc/DGC
+instanceKlass sun/rmi/transport/ObjectTable
+instanceKlass sun/rmi/transport/Target
+instanceKlass sun/rmi/server/Util$1
+instanceKlass java/rmi/server/RemoteObjectInvocationHandler$1
+instanceKlass java/rmi/server/RemoteObject
+instanceKlass javax/management/remote/rmi/RMIConnection
+instanceKlass java/rmi/server/RMISocketFactory
+instanceKlass java/rmi/server/RMIClientSocketFactory
+instanceKlass java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject
+instanceKlass java/util/concurrent/locks/Condition
+instanceKlass sun/rmi/transport/tcp/TCPTransport$1
+instanceKlass java/util/concurrent/ThreadFactory
+instanceKlass java/util/concurrent/SynchronousQueue$TransferStack$SNode
+instanceKlass java/util/concurrent/SynchronousQueue$Transferer
+instanceKlass java/util/concurrent/BlockingQueue
+instanceKlass java/util/concurrent/ThreadPoolExecutor$AbortPolicy
+instanceKlass java/util/concurrent/RejectedExecutionHandler
+instanceKlass java/util/concurrent/AbstractExecutorService
+instanceKlass java/util/concurrent/ExecutorService
+instanceKlass sun/security/action/GetLongAction
+instanceKlass sun/security/action/GetIntegerAction
+instanceKlass sun/rmi/transport/Transport
+instanceKlass sun/rmi/transport/tcp/TCPEndpoint
+instanceKlass sun/rmi/transport/Endpoint
+instanceKlass sun/nio/fs/BasicFileAttributesHolder
+instanceKlass sun/nio/fs/WindowsDirectoryStream$WindowsDirectoryIterator
+instanceKlass sun/nio/fs/WindowsFileAttributes
+instanceKlass java/nio/file/attribute/DosFileAttributes
+instanceKlass java/nio/file/attribute/BasicFileAttributes
+instanceKlass sun/nio/fs/NativeBuffer$Deallocator
+instanceKlass sun/nio/fs/NativeBuffer
+instanceKlass sun/nio/fs/NativeBuffers
+instanceKlass sun/nio/fs/WindowsNativeDispatcher$BackupResult
+instanceKlass sun/nio/fs/WindowsNativeDispatcher$CompletionStatus
+instanceKlass sun/nio/fs/WindowsNativeDispatcher$AclInformation
+instanceKlass sun/nio/fs/WindowsNativeDispatcher$Account
+instanceKlass sun/nio/fs/WindowsNativeDispatcher$DiskFreeSpace
+instanceKlass sun/nio/fs/WindowsNativeDispatcher$VolumeInformation
+instanceKlass sun/nio/fs/WindowsNativeDispatcher$FirstStream
+instanceKlass sun/nio/fs/WindowsNativeDispatcher$FirstFile
+instanceKlass sun/nio/fs/WindowsNativeDispatcher$1
+instanceKlass sun/nio/fs/WindowsNativeDispatcher
+instanceKlass sun/nio/fs/WindowsDirectoryStream
+instanceKlass java/nio/file/DirectoryStream
+instanceKlass java/nio/file/Files$AcceptAllFilter
+instanceKlass java/nio/file/DirectoryStream$Filter
+instanceKlass java/nio/file/Files
+instanceKlass sun/nio/fs/AbstractPath
+instanceKlass sun/nio/fs/Util
+instanceKlass sun/nio/fs/WindowsPathParser$Result
+instanceKlass sun/nio/fs/WindowsPathParser
+instanceKlass java/nio/file/FileSystem
+instanceKlass java/nio/file/spi/FileSystemProvider
+instanceKlass sun/nio/fs/DefaultFileSystemProvider
+instanceKlass java/nio/file/FileSystems$DefaultFileSystemHolder$1
+instanceKlass java/nio/file/FileSystems$DefaultFileSystemHolder
+instanceKlass java/nio/file/FileSystems
+instanceKlass java/net/NetworkInterface$2
+instanceKlass java/net/DefaultInterface
+instanceKlass java/net/InterfaceAddress
+instanceKlass java/net/NetworkInterface$1
+instanceKlass java/net/NetworkInterface
+instanceKlass sun/security/provider/ByteArrayAccess
+instanceKlass sun/security/provider/SeedGenerator$1
+instanceKlass sun/security/provider/SeedGenerator
+instanceKlass sun/security/provider/SecureRandom$SeederHolder
+instanceKlass sun/security/util/MessageDigestSpi2
+instanceKlass sun/security/jca/GetInstance$Instance
+instanceKlass sun/security/jca/GetInstance
+instanceKlass java/security/MessageDigestSpi
+instanceKlass java/security/SecureRandomSpi
+instanceKlass java/security/Provider$UString
+instanceKlass java/security/Provider$Service
+instanceKlass sun/security/provider/NativePRNG$NonBlocking
+instanceKlass sun/security/provider/NativePRNG$Blocking
+instanceKlass sun/security/provider/NativePRNG
+instanceKlass sun/security/provider/SunEntries$1
+instanceKlass sun/security/provider/SunEntries
+instanceKlass sun/security/jca/ProviderConfig$2
+instanceKlass sun/security/jca/ProviderList$2
+instanceKlass sun/misc/FDBigInteger
+instanceKlass sun/misc/FloatingDecimal$PreparedASCIIToBinaryBuffer
+instanceKlass sun/misc/FloatingDecimal$ASCIIToBinaryConverter
+instanceKlass sun/misc/FloatingDecimal$BinaryToASCIIBuffer
+instanceKlass sun/misc/FloatingDecimal$ExceptionalBinaryToASCIIBuffer
+instanceKlass sun/misc/FloatingDecimal$BinaryToASCIIConverter
+instanceKlass sun/misc/FloatingDecimal
+instanceKlass java/security/Provider$EngineDescription
+instanceKlass java/security/Provider$ServiceKey
+instanceKlass sun/security/jca/ProviderConfig
+instanceKlass sun/security/jca/ProviderList
+instanceKlass sun/security/jca/Providers
+instanceKlass java/util/Random
+instanceKlass java/rmi/server/UID
+instanceKlass java/rmi/server/ObjID
+instanceKlass sun/rmi/transport/LiveRef
+instanceKlass sun/rmi/server/WeakClassHashMap
+instanceKlass java/util/Collections$SynchronizedMap
+instanceKlass java/util/logging/ErrorManager
+instanceKlass sun/util/logging/LoggingSupport$2
+instanceKlass java/util/logging/Formatter
+instanceKlass sun/rmi/runtime/Log$LoggerLog$1
+instanceKlass sun/rmi/runtime/Log$LoggerLogFactory
+instanceKlass sun/rmi/runtime/Log$LogFactory
+instanceKlass sun/rmi/runtime/Log
+instanceKlass sun/rmi/server/Util
+instanceKlass sun/rmi/server/UnicastRef
+instanceKlass sun/rmi/server/Dispatcher
+instanceKlass java/rmi/server/ServerRef
+instanceKlass java/rmi/server/RemoteRef
+instanceKlass java/io/Externalizable
+instanceKlass javax/management/remote/rmi/RMIJRMPServerImpl$ExportedWrapper
+instanceKlass sun/rmi/server/DeserializationChecker
+instanceKlass javax/management/remote/rmi/RMIServerImpl
+instanceKlass javax/management/remote/rmi/RMIServer
+instanceKlass java/rmi/Remote
+instanceKlass java/util/Collections$UnmodifiableCollection$1
+instanceKlass javax/management/remote/JMXAddressable
+instanceKlass javax/management/remote/JMXConnectorServerMBean
+instanceKlass com/sun/jmx/remote/protocol/rmi/ServerProvider
+instanceKlass java/net/URLClassLoader$3$1
+instanceKlass sun/misc/CompoundEnumeration
+instanceKlass java/net/URLClassLoader$3
+instanceKlass sun/misc/URLClassPath$1
+instanceKlass java/lang/ClassLoader$2
+instanceKlass sun/misc/URLClassPath$2
+instanceKlass sun/misc/Launcher$BootClassPathHolder$1
+instanceKlass sun/misc/Launcher$BootClassPathHolder
+instanceKlass java/util/ServiceLoader$1
+instanceKlass java/util/ServiceLoader$LazyIterator
+instanceKlass java/util/ServiceLoader
+instanceKlass javax/management/remote/JMXConnectorFactory$1
+instanceKlass javax/management/remote/JMXConnectorFactory
+instanceKlass javax/management/remote/JMXConnectorServerProvider
+instanceKlass com/sun/jmx/remote/util/EnvHelp
+instanceKlass javax/management/remote/JMXConnectorServerFactory
+instanceKlass sun/management/jmxremote/LocalRMIServerSocketFactory
+instanceKlass java/rmi/server/RMIServerSocketFactory
+instanceKlass javax/management/remote/JMXServiceURL
+instanceKlass sun/management/Flag$1
+instanceKlass sun/management/Flag
+instanceKlass sun/management/ExtendedPlatformComponent
+instanceKlass java/util/Collections$UnmodifiableMap
+instanceKlass java/util/AbstractList$Itr
+instanceKlass sun/management/DiagnosticCommandImpl$Wrapper
+instanceKlass sun/management/DiagnosticCommandArgumentInfo
+instanceKlass sun/management/DiagnosticCommandInfo
+instanceKlass sun/management/DiagnosticCommandImpl$OperationInfoComparator
+instanceKlass java/lang/management/ManagementFactory$3
+instanceKlass com/sun/management/DiagnosticCommandMBean
+instanceKlass com/sun/management/VMOption
+instanceKlass sun/management/HotSpotDiagnostic
+instanceKlass com/sun/management/HotSpotDiagnosticMXBean
+instanceKlass java/util/Collections$EmptyIterator
+instanceKlass com/sun/management/UnixOperatingSystemMXBean
+instanceKlass sun/nio/ch/FileChannelImpl$1
+instanceKlass sun/nio/ch/IOUtil$1
+instanceKlass sun/nio/ch/IOUtil
+instanceKlass java/nio/file/attribute/FileAttribute
+instanceKlass java/nio/channels/spi/AbstractInterruptibleChannel
+instanceKlass java/nio/channels/InterruptibleChannel
+instanceKlass java/nio/channels/ScatteringByteChannel
+instanceKlass java/nio/channels/GatheringByteChannel
+instanceKlass java/nio/channels/SeekableByteChannel
+instanceKlass java/nio/channels/ByteChannel
+instanceKlass java/nio/channels/WritableByteChannel
+instanceKlass java/nio/channels/ReadableByteChannel
+instanceKlass java/nio/channels/Channel
+instanceKlass sun/management/ManagementFactoryHelper$1
+instanceKlass java/nio/Bits$1$1
+instanceKlass sun/misc/JavaNioAccess$BufferPool
+instanceKlass java/lang/management/BufferPoolMXBean
+instanceKlass javax/management/MBeanInfo$ArrayGettersSafeAction
+instanceKlass javax/management/openmbean/OpenMBeanOperationInfo
+instanceKlass sun/management/ManagementFactoryHelper$PlatformLoggingImpl
+instanceKlass sun/management/ManagementFactoryHelper$LoggingMXBean
+instanceKlass java/util/logging/LoggingMXBean
+instanceKlass java/lang/management/PlatformLoggingMXBean
+instanceKlass java/lang/management/LockInfo
+instanceKlass java/lang/management/ThreadInfo
+instanceKlass sun/management/ThreadImpl
+instanceKlass com/sun/management/ThreadMXBean
+instanceKlass java/lang/management/ThreadMXBean
+instanceKlass sun/reflect/generics/tree/TypeVariableSignature
+instanceKlass sun/management/RuntimeImpl
+instanceKlass java/lang/management/RuntimeMXBean
+instanceKlass sun/management/BaseOperatingSystemImpl
+instanceKlass com/sun/management/OperatingSystemMXBean
+instanceKlass java/lang/management/OperatingSystemMXBean
+instanceKlass sun/management/Sensor
+instanceKlass sun/management/MemoryPoolImpl
+instanceKlass java/lang/management/MemoryPoolMXBean
+instanceKlass javax/management/DescriptorKey
+instanceKlass sun/reflect/generics/reflectiveObjects/LazyReflectiveObjectGenerator
+instanceKlass java/lang/reflect/TypeVariable
+instanceKlass sun/reflect/generics/tree/ClassSignature
+instanceKlass sun/reflect/generics/reflectiveObjects/ParameterizedTypeImpl
+instanceKlass java/lang/reflect/ParameterizedType
+instanceKlass sun/reflect/generics/tree/MethodTypeSignature
+instanceKlass sun/reflect/generics/tree/Signature
+instanceKlass sun/reflect/generics/tree/FormalTypeParameter
+instanceKlass com/sun/management/GcInfo
+instanceKlass javax/management/openmbean/CompositeDataView
+instanceKlass java/lang/annotation/Target
+instanceKlass java/lang/reflect/WeakCache$Value
+instanceKlass sun/misc/ProxyGenerator$ExceptionTableEntry
+instanceKlass sun/misc/ProxyGenerator$PrimitiveTypeInfo
+instanceKlass sun/misc/ProxyGenerator$FieldInfo
+instanceKlass java/io/DataOutput
+instanceKlass sun/misc/ProxyGenerator$ConstantPool$Entry
+instanceKlass sun/misc/ProxyGenerator$MethodInfo
+instanceKlass sun/misc/ProxyGenerator$ProxyMethod
+instanceKlass sun/misc/ProxyGenerator$ConstantPool
+instanceKlass sun/misc/ProxyGenerator
+instanceKlass java/lang/reflect/WeakCache$Factory
+instanceKlass java/util/function/Supplier
+instanceKlass sun/reflect/annotation/AnnotationInvocationHandler
+instanceKlass sun/reflect/annotation/AnnotationParser$1
+instanceKlass java/lang/Class$4
+instanceKlass java/lang/annotation/Documented
+instanceKlass java/lang/annotation/Inherited
+instanceKlass java/lang/annotation/Retention
+instanceKlass sun/reflect/annotation/ExceptionProxy
+instanceKlass sun/reflect/annotation/AnnotationType$1
+instanceKlass jdk/Exported
+instanceKlass sun/reflect/generics/visitor/Reifier
+instanceKlass sun/reflect/generics/visitor/TypeTreeVisitor
+instanceKlass sun/reflect/generics/factory/CoreReflectionFactory
+instanceKlass sun/reflect/generics/factory/GenericsFactory
+instanceKlass sun/reflect/generics/scope/AbstractScope
+instanceKlass sun/reflect/generics/scope/Scope
+instanceKlass sun/reflect/generics/tree/ClassTypeSignature
+instanceKlass sun/reflect/generics/tree/SimpleClassTypeSignature
+instanceKlass sun/reflect/generics/tree/FieldTypeSignature
+instanceKlass sun/reflect/generics/tree/BaseType
+instanceKlass sun/reflect/generics/tree/TypeSignature
+instanceKlass sun/reflect/generics/tree/ReturnType
+instanceKlass sun/reflect/generics/tree/TypeArgument
+instanceKlass sun/reflect/generics/tree/TypeTree
+instanceKlass sun/reflect/generics/tree/Tree
+instanceKlass sun/reflect/generics/parser/SignatureParser
+instanceKlass com/sun/management/GarbageCollectorMXBean
+instanceKlass sun/management/ManagementFactory
+instanceKlass java/lang/management/GarbageCollectorMXBean
+instanceKlass java/lang/management/MemoryManagerMXBean
+instanceKlass com/sun/jmx/mbeanserver/PerInterface$MethodAndSig
+instanceKlass java/lang/management/MemoryUsage
+instanceKlass sun/management/NotificationEmitterSupport
+instanceKlass java/lang/management/MemoryMXBean
+instanceKlass sun/management/CompilationImpl
+instanceKlass sun/management/VMManagementImpl$1
+instanceKlass java/lang/management/CompilationMXBean
+instanceKlass com/sun/jmx/mbeanserver/WeakIdentityHashMap
+instanceKlass com/sun/jmx/mbeanserver/MXBeanLookup
+instanceKlass com/sun/jmx/mbeanserver/PerInterface$InitMaps
+instanceKlass com/sun/jmx/mbeanserver/PerInterface
+instanceKlass javax/management/openmbean/OpenMBeanAttributeInfo
+instanceKlass javax/management/openmbean/OpenMBeanParameterInfo
+instanceKlass java/lang/reflect/GenericArrayType
+instanceKlass com/sun/jmx/mbeanserver/MBeanIntrospector$MBeanInfoMaker
+instanceKlass com/sun/jmx/mbeanserver/MBeanAnalyzer$MBeanVisitor
+instanceKlass com/sun/jmx/mbeanserver/MBeanAnalyzer$AttrMethods
+instanceKlass com/sun/jmx/mbeanserver/MXBeanMapping
+instanceKlass java/lang/Void
+instanceKlass javax/management/openmbean/TabularData
+instanceKlass javax/management/openmbean/CompositeData
+instanceKlass javax/management/openmbean/OpenType
+instanceKlass com/sun/jmx/mbeanserver/MXBeanMappingFactory
+instanceKlass com/sun/jmx/mbeanserver/ConvertingMethod
+instanceKlass java/util/TimSort
+instanceKlass com/sun/jmx/mbeanserver/MBeanAnalyzer$MethodOrder
+instanceKlass java/lang/Class$MethodArray
+instanceKlass com/sun/jmx/mbeanserver/MBeanAnalyzer
+instanceKlass com/sun/jmx/mbeanserver/MBeanIntrospector
+instanceKlass java/lang/reflect/Proxy$ProxyClassFactory
+instanceKlass java/lang/reflect/Proxy$KeyFactory
+instanceKlass java/util/function/BiFunction
+instanceKlass java/lang/reflect/WeakCache
+instanceKlass java/lang/reflect/InvocationHandler
+instanceKlass java/lang/reflect/Proxy
+instanceKlass sun/reflect/annotation/AnnotationParser
+instanceKlass javax/management/MXBean
+instanceKlass com/sun/jmx/mbeanserver/MBeanSupport
+instanceKlass com/sun/jmx/mbeanserver/DescriptorCache
+instanceKlass javax/management/JMX
+instanceKlass javax/management/StandardMBean
+instanceKlass java/lang/management/ManagementFactory$2
+instanceKlass sun/management/Util
+instanceKlass java/util/Collections$1
+instanceKlass sun/management/ClassLoadingImpl
+instanceKlass sun/management/VMManagementImpl
+instanceKlass sun/management/VMManagement
+instanceKlass sun/management/ManagementFactoryHelper$4
+instanceKlass sun/management/ManagementFactoryHelper
+instanceKlass java/lang/management/ClassLoadingMXBean
+instanceKlass java/lang/management/PlatformManagedObject
+instanceKlass java/lang/management/PlatformComponent$15
+instanceKlass java/lang/management/PlatformComponent$14
+instanceKlass java/lang/management/PlatformComponent$13
+instanceKlass java/lang/management/PlatformComponent$12
+instanceKlass java/lang/management/PlatformComponent$11
+instanceKlass java/lang/management/PlatformComponent$10
+instanceKlass java/lang/management/PlatformComponent$9
+instanceKlass java/lang/management/PlatformComponent$8
+instanceKlass java/lang/management/PlatformComponent$7
+instanceKlass java/lang/management/PlatformComponent$6
+instanceKlass java/lang/management/PlatformComponent$5
+instanceKlass java/lang/management/PlatformComponent$4
+instanceKlass java/lang/management/PlatformComponent$3
+instanceKlass java/lang/management/PlatformComponent$2
+instanceKlass java/lang/management/PlatformComponent$1
+instanceKlass java/lang/management/PlatformComponent$MXBeanFetcher
+instanceKlass com/sun/jmx/mbeanserver/JmxMBeanServer$3
+instanceKlass javax/management/ObjectInstance
+instanceKlass java/util/concurrent/CopyOnWriteArrayList$COWIterator
+instanceKlass sun/util/calendar/CalendarSystem
+instanceKlass java/util/Date
+instanceKlass java/util/EventObject
+instanceKlass com/sun/jmx/mbeanserver/NamedObject
+instanceKlass com/sun/jmx/interceptor/DefaultMBeanServerInterceptor$ResourceContext$1
+instanceKlass com/sun/jmx/interceptor/DefaultMBeanServerInterceptor$ResourceContext
+instanceKlass com/sun/jmx/mbeanserver/Repository$RegistrationContext
+instanceKlass com/sun/jmx/mbeanserver/DynamicMBean2
+instanceKlass com/sun/jmx/defaults/JmxProperties
+instanceKlass com/sun/jmx/mbeanserver/Introspector
+instanceKlass com/sun/jmx/mbeanserver/JmxMBeanServer$2
+instanceKlass com/sun/jmx/interceptor/DefaultMBeanServerInterceptor
+instanceKlass com/sun/jmx/interceptor/MBeanServerInterceptor
+instanceKlass java/util/concurrent/locks/ReentrantReadWriteLock$WriteLock
+instanceKlass java/util/concurrent/locks/ReentrantReadWriteLock$ReadLock
+instanceKlass sun/nio/ch/Interruptible
+instanceKlass java/util/concurrent/locks/ReentrantReadWriteLock
+instanceKlass java/util/concurrent/locks/ReadWriteLock
+instanceKlass com/sun/jmx/mbeanserver/Repository
+instanceKlass com/sun/jmx/mbeanserver/JmxMBeanServer$1
+instanceKlass com/sun/jmx/mbeanserver/SecureClassLoaderRepository
+instanceKlass com/sun/jmx/mbeanserver/MBeanInstantiator
+instanceKlass com/sun/jmx/mbeanserver/ClassLoaderRepositorySupport$LoaderEntry
+instanceKlass com/sun/jmx/mbeanserver/ClassLoaderRepositorySupport
+instanceKlass com/sun/jmx/mbeanserver/ModifiableClassLoaderRepository
+instanceKlass javax/management/loading/ClassLoaderRepository
+instanceKlass java/util/NavigableSet
+instanceKlass java/util/SortedSet
+instanceKlass java/util/TreeMap$PrivateEntryIterator
+instanceKlass javax/management/ImmutableDescriptor
+instanceKlass javax/management/Descriptor
+instanceKlass javax/management/NotificationBroadcasterSupport$1
+instanceKlass java/util/concurrent/Executor
+instanceKlass javax/management/NotificationBroadcasterSupport
+instanceKlass java/util/ComparableTimSort
+instanceKlass java/util/Arrays$LegacyMergeSort
+instanceKlass javax/management/ObjectName$Property
+instanceKlass javax/management/ObjectName
+instanceKlass javax/management/QueryExp
+instanceKlass com/sun/jmx/mbeanserver/Util
+instanceKlass javax/management/MBeanInfo
+instanceKlass javax/management/MBeanFeatureInfo
+instanceKlass javax/management/DescriptorRead
+instanceKlass javax/management/MBeanServerDelegate
+instanceKlass javax/management/NotificationEmitter
+instanceKlass javax/management/NotificationBroadcaster
+instanceKlass javax/management/MBeanServerDelegateMBean
+instanceKlass javax/management/MBeanRegistration
+instanceKlass javax/management/DynamicMBean
+instanceKlass com/sun/jmx/mbeanserver/JmxMBeanServer
+instanceKlass com/sun/jmx/mbeanserver/SunJmxMBeanServer
+instanceKlass javax/management/MBeanServer
+instanceKlass javax/management/MBeanServerConnection
+instanceKlass javax/management/MBeanServerBuilder
+instanceKlass com/sun/jmx/mbeanserver/GetPropertyAction
+instanceKlass javax/management/MBeanServerFactory
+instanceKlass java/lang/management/ManagementFactory
+instanceKlass java/net/Inet6Address$Inet6AddressHolder
+instanceKlass java/net/InetAddress$CacheEntry
+instanceKlass java/util/LinkedList$ListItr
+instanceKlass java/util/ListIterator
+instanceKlass java/util/LinkedHashMap$LinkedHashIterator
+instanceKlass sun/net/InetAddressCachePolicy$2
+instanceKlass java/security/Security$1
+instanceKlass java/security/Security
+instanceKlass sun/net/InetAddressCachePolicy$1
+instanceKlass sun/net/InetAddressCachePolicy
+instanceKlass java/net/Inet4AddressImpl
+instanceKlass java/net/InetAddress$2
+instanceKlass sun/net/spi/nameservice/NameService
+instanceKlass java/net/Inet6AddressImpl
+instanceKlass java/net/InetAddressImpl
+instanceKlass java/net/InetAddressImplFactory
+instanceKlass java/net/InetAddress$Cache
+instanceKlass java/net/InetAddress$InetAddressHolder
+instanceKlass java/net/InetAddress$1
+instanceKlass sun/security/action/GetBooleanAction
+instanceKlass java/net/InetAddress
+instanceKlass sun/management/jmxremote/ConnectorBootstrap$PermanentExporter
+instanceKlass com/sun/jmx/remote/internal/RMIExporter
+instanceKlass java/util/logging/LogManager$5
+instanceKlass java/util/HashMap$HashIterator
+instanceKlass sun/reflect/UnsafeFieldAccessorFactory
+instanceKlass java/util/logging/LoggingProxyImpl
+instanceKlass sun/util/logging/LoggingProxy
+instanceKlass sun/util/logging/LoggingSupport$1
+instanceKlass sun/util/logging/LoggingSupport
+instanceKlass sun/util/logging/PlatformLogger$LoggerProxy
+instanceKlass sun/util/logging/PlatformLogger$1
+instanceKlass sun/util/logging/PlatformLogger
+instanceKlass java/util/logging/LogManager$LoggerContext$1
+instanceKlass java/util/ArrayList$Itr
+instanceKlass java/util/logging/LogManager$3
+instanceKlass java/util/logging/LogManager$2
+instanceKlass java/lang/Shutdown$Lock
+instanceKlass java/lang/Shutdown
+instanceKlass java/lang/ApplicationShutdownHooks$1
+instanceKlass java/lang/ApplicationShutdownHooks
+instanceKlass java/util/logging/LogManager$LogNode
+instanceKlass java/util/logging/LogManager$LoggerContext
+instanceKlass java/util/logging/LogManager$1
+instanceKlass java/util/logging/LogManager
+instanceKlass java/util/concurrent/locks/AbstractQueuedSynchronizer$Node
+instanceKlass java/util/concurrent/locks/AbstractOwnableSynchronizer
+instanceKlass java/util/concurrent/CopyOnWriteArrayList
+instanceKlass java/util/logging/Logger$LoggerBundle
+instanceKlass java/util/logging/Level$KnownLevel
+instanceKlass java/util/logging/Level
+instanceKlass java/util/logging/Handler
+instanceKlass java/util/zip/CRC32
+instanceKlass java/util/zip/Checksum
+instanceKlass java/lang/Package$1
+instanceKlass java/util/logging/Logger
+instanceKlass com/sun/jmx/remote/util/ClassLogger
+instanceKlass sun/management/jmxremote/ConnectorBootstrap
+instanceKlass java/util/Properties$LineReader
+instanceKlass sun/management/Agent
+instanceKlass java/lang/invoke/MethodHandleStatics$1
+instanceKlass java/lang/invoke/MethodHandleStatics
+instanceKlass java/lang/invoke/MemberName$Factory
+instanceKlass java/lang/ClassValue$Version
+instanceKlass java/lang/ClassValue$Identity
+instanceKlass java/lang/ClassValue
+instanceKlass java/lang/invoke/MethodHandleImpl$3
+instanceKlass java/lang/invoke/MethodHandleImpl$2
+instanceKlass java/util/function/Function
+instanceKlass java/lang/invoke/MethodHandleImpl$1
+instanceKlass java/lang/invoke/MethodHandleImpl
+instanceKlass com/intellij/rt/debugger/agent/CaptureStorage
+instanceKlass com/intellij/rt/debugger/agent/CaptureAgent$CaptureTransformer
+instanceKlass java/lang/instrument/ClassFileTransformer
+instanceKlass java/net/URI$Parser
+instanceKlass java/net/URI
+instanceKlass com/intellij/rt/debugger/agent/CaptureAgent$FieldKeyProvider
+instanceKlass com/intellij/rt/debugger/agent/CaptureAgent$1
+instanceKlass com/intellij/rt/debugger/agent/CaptureAgent$ParamKeyProvider
+instanceKlass sun/instrument/InstrumentationImpl$1
+instanceKlass com/intellij/rt/debugger/agent/CaptureAgent$InstrumentPoint
+instanceKlass com/intellij/rt/debugger/agent/CaptureAgent$KeyProvider
+instanceKlass com/intellij/rt/debugger/agent/CaptureAgent
+instanceKlass java/io/FilePermission$1
+instanceKlass sun/net/www/MessageHeader
+instanceKlass java/net/URLConnection
+instanceKlass java/security/PermissionCollection
+instanceKlass sun/nio/ByteBuffered
+instanceKlass java/lang/Package
+instanceKlass sun/misc/Resource
+instanceKlass java/util/jar/Attributes$Name
+instanceKlass java/util/jar/Attributes
+instanceKlass java/util/jar/JarVerifier$3
+instanceKlass java/security/CodeSigner
+instanceKlass java/util/jar/JarVerifier
+instanceKlass java/nio/file/attribute/FileTime
+instanceKlass java/util/zip/ZipUtils
+instanceKlass java/util/LinkedList$Node
+instanceKlass java/util/zip/ZStreamRef
+instanceKlass java/util/zip/Inflater
+instanceKlass sun/misc/IOUtils
+instanceKlass java/util/zip/ZipEntry
+instanceKlass sun/misc/ExtensionDependency
+instanceKlass sun/misc/JarIndex
+instanceKlass sun/nio/ch/DirectBuffer
+instanceKlass sun/misc/PerfCounter$CoreCounters
+instanceKlass sun/misc/Perf
+instanceKlass sun/misc/Perf$GetPerfAction
+instanceKlass sun/misc/PerfCounter
+instanceKlass java/util/zip/ZipCoder
+instanceKlass java/util/Deque
+instanceKlass java/util/Queue
+instanceKlass java/nio/charset/StandardCharsets
+instanceKlass java/util/jar/JavaUtilJarAccessImpl
+instanceKlass sun/misc/JavaUtilJarAccess
+instanceKlass sun/misc/FileURLMapper
+instanceKlass sun/misc/URLClassPath$JarLoader$1
+instanceKlass sun/nio/cs/ThreadLocalCoders$Cache
+instanceKlass sun/nio/cs/ThreadLocalCoders
+instanceKlass java/util/zip/ZipFile$1
+instanceKlass sun/misc/JavaUtilZipFileAccess
+instanceKlass java/util/zip/ZipFile
+instanceKlass java/util/zip/ZipConstants
+instanceKlass sun/misc/URLClassPath$Loader
+instanceKlass sun/misc/URLClassPath$3
+instanceKlass sun/net/util/URLUtil
+instanceKlass java/net/URLClassLoader$1
+instanceKlass sun/instrument/TransformerManager$TransformerInfo
+instanceKlass sun/instrument/TransformerManager
+instanceKlass sun/instrument/InstrumentationImpl
+instanceKlass java/lang/instrument/Instrumentation
+instanceKlass sun/misc/VMSupport
+instanceKlass java/lang/SystemClassLoaderAction
+instanceKlass sun/misc/Launcher$AppClassLoader$1
+instanceKlass sun/misc/URLClassPath
+instanceKlass java/security/Principal
+instanceKlass java/security/ProtectionDomain$Key
+instanceKlass java/security/ProtectionDomain$2
+instanceKlass sun/misc/JavaSecurityProtectionDomainAccess
+instanceKlass java/security/ProtectionDomain$JavaSecurityAccessImpl
+instanceKlass sun/misc/JavaSecurityAccess
+instanceKlass sun/net/util/IPAddressUtil
+instanceKlass java/net/URLStreamHandler
+instanceKlass java/net/Parts
+instanceKlass java/util/BitSet
+instanceKlass sun/net/www/ParseUtil
+instanceKlass java/io/FileInputStream$1
+instanceKlass java/lang/CharacterData
+instanceKlass sun/util/locale/LocaleUtils
+instanceKlass java/util/Locale$LocaleKey
+instanceKlass sun/util/locale/BaseLocale$Key
+instanceKlass sun/util/locale/BaseLocale
+instanceKlass java/util/concurrent/ConcurrentHashMap$CollectionView
+instanceKlass java/util/concurrent/ConcurrentHashMap$CounterCell
+instanceKlass java/util/concurrent/ConcurrentHashMap$Node
+instanceKlass java/util/concurrent/locks/ReentrantLock
+instanceKlass java/util/concurrent/locks/Lock
+instanceKlass java/util/concurrent/ConcurrentMap
+instanceKlass sun/util/locale/LocaleObjectCache
+instanceKlass java/util/Locale
+instanceKlass java/lang/reflect/Array
+instanceKlass java/io/Reader
+instanceKlass sun/misc/MetaIndex
+instanceKlass java/util/StringTokenizer
+instanceKlass sun/misc/Launcher$ExtClassLoader$1
+instanceKlass java/net/URLClassLoader$7
+instanceKlass sun/misc/JavaNetAccess
+instanceKlass java/lang/ClassLoader$ParallelLoaders
+instanceKlass sun/security/util/Debug
+instanceKlass sun/misc/Launcher$Factory
+instanceKlass java/net/URLStreamHandlerFactory
+instanceKlass java/lang/Compiler$1
+instanceKlass java/lang/Compiler
+instanceKlass java/lang/System$2
+instanceKlass sun/misc/JavaLangAccess
+instanceKlass sun/io/Win32ErrorMode
+instanceKlass sun/misc/OSEnvironment
+instanceKlass java/lang/Integer$IntegerCache
+instanceKlass sun/misc/NativeSignalHandler
+instanceKlass sun/misc/Signal
+instanceKlass java/lang/Terminator$1
+instanceKlass sun/misc/SignalHandler
+instanceKlass java/lang/Terminator
+instanceKlass java/lang/ClassLoader$NativeLibrary
+instanceKlass java/io/ExpiringCache$Entry
+instanceKlass java/lang/ClassLoader$3
+instanceKlass java/nio/charset/CoderResult$Cache
+instanceKlass java/nio/charset/CoderResult
+instanceKlass java/lang/Readable
+instanceKlass java/lang/StringCoding$StringEncoder
+instanceKlass java/nio/file/Path
+instanceKlass java/nio/file/Watchable
+instanceKlass java/lang/Enum
+instanceKlass java/io/ExpiringCache
+instanceKlass java/io/FileSystem
+instanceKlass java/io/DefaultFileSystem
+instanceKlass java/nio/Bits$1
+instanceKlass sun/misc/JavaNioAccess
+instanceKlass java/nio/ByteOrder
+instanceKlass java/nio/Bits
+instanceKlass java/nio/charset/CharsetEncoder
+instanceKlass sun/nio/cs/ArrayEncoder
+instanceKlass sun/security/action/GetPropertyAction
+instanceKlass java/io/Writer
+instanceKlass sun/reflect/misc/ReflectUtil
+instanceKlass java/util/concurrent/atomic/AtomicReferenceFieldUpdater$AtomicReferenceFieldUpdaterImpl$1
+instanceKlass java/security/PrivilegedExceptionAction
+instanceKlass java/util/concurrent/atomic/AtomicReferenceFieldUpdater
+instanceKlass java/io/OutputStream
+instanceKlass java/io/Flushable
+instanceKlass java/io/FileDescriptor$1
+instanceKlass sun/misc/JavaIOFileDescriptorAccess
+instanceKlass java/io/FileDescriptor
+instanceKlass sun/misc/Version
+instanceKlass java/lang/Runtime
+instanceKlass java/util/Hashtable$Enumerator
+instanceKlass java/util/Iterator
+instanceKlass java/util/Enumeration
+instanceKlass java/util/Objects
+instanceKlass java/util/Collections$SynchronizedCollection
+instanceKlass java/nio/charset/CodingErrorAction
+instanceKlass java/nio/charset/CharsetDecoder
+instanceKlass sun/nio/cs/ArrayDecoder
+instanceKlass sun/nio/cs/ext/DelegatableDecoder
+instanceKlass sun/nio/cs/ext/DoubleByte
+instanceKlass java/lang/StringCoding$StringDecoder
+instanceKlass java/lang/ThreadLocal$ThreadLocalMap
+instanceKlass java/lang/StringCoding
+instanceKlass sun/nio/cs/HistoricallyNamedCharset
+instanceKlass java/util/TreeMap$Entry
+instanceKlass sun/misc/ASCIICaseInsensitiveComparator
+instanceKlass java/util/NavigableMap
+instanceKlass java/util/SortedMap
+instanceKlass sun/reflect/ReflectionFactory$1
+instanceKlass java/lang/Class$1
+instanceKlass java/nio/charset/Charset$ExtendedProviderHolder$1
+instanceKlass java/nio/charset/Charset$ExtendedProviderHolder
+instanceKlass java/util/Arrays
+instanceKlass java/lang/reflect/ReflectAccess
+instanceKlass sun/reflect/LangReflectAccess
+instanceKlass java/lang/reflect/Modifier
+instanceKlass sun/reflect/annotation/AnnotationType
+instanceKlass java/lang/Class$AnnotationData
+instanceKlass sun/reflect/generics/repository/AbstractRepository
+instanceKlass java/lang/Class$Atomic
+instanceKlass java/lang/Class$ReflectionData
+instanceKlass java/lang/Class$3
+instanceKlass java/lang/ThreadLocal
+instanceKlass java/nio/charset/spi/CharsetProvider
+instanceKlass java/nio/charset/Charset
+instanceKlass java/lang/Math
+instanceKlass java/util/Hashtable$Entry
+instanceKlass sun/misc/VM
+instanceKlass java/util/HashMap$Node
+instanceKlass java/util/Map$Entry
+instanceKlass sun/reflect/Reflection
+instanceKlass sun/misc/SharedSecrets
+instanceKlass java/lang/ref/Reference$1
+instanceKlass sun/misc/JavaLangRefAccess
+instanceKlass java/lang/ref/ReferenceQueue$Lock
+instanceKlass java/util/Collections$UnmodifiableCollection
+instanceKlass java/util/AbstractMap
+instanceKlass java/util/Set
+instanceKlass java/util/Collections
+instanceKlass java/lang/ref/Reference$Lock
+instanceKlass sun/reflect/ReflectionFactory
+instanceKlass java/util/AbstractCollection
+instanceKlass java/util/RandomAccess
+instanceKlass java/util/List
+instanceKlass java/util/Collection
+instanceKlass java/lang/Iterable
+instanceKlass java/security/cert/Certificate
+instanceKlass sun/reflect/ReflectionFactory$GetReflectionFactoryAction
+instanceKlass java/security/PrivilegedAction
+instanceKlass java/security/AccessController
+instanceKlass java/security/Permission
+instanceKlass java/security/Guard
+instanceKlass java/lang/String$CaseInsensitiveComparator
+instanceKlass java/util/Comparator
+instanceKlass java/io/ObjectStreamField
+instanceKlass java/lang/Number
+instanceKlass java/lang/Character
+instanceKlass java/lang/Boolean
+instanceKlass java/nio/Buffer
+instanceKlass java/lang/StackTraceElement
+instanceKlass java/security/CodeSource
+instanceKlass sun/misc/Launcher
+instanceKlass java/util/jar/Manifest
+instanceKlass java/net/URL
+instanceKlass java/io/File
+instanceKlass java/io/InputStream
+instanceKlass java/io/Closeable
+instanceKlass java/lang/AutoCloseable
+instanceKlass sun/misc/Unsafe
+instanceKlass java/lang/AbstractStringBuilder
+instanceKlass java/lang/Appendable
+instanceKlass java/lang/invoke/CallSite
+instanceKlass java/lang/invoke/MethodType
+instanceKlass java/lang/invoke/LambdaForm
+instanceKlass java/lang/invoke/MethodHandleNatives
+instanceKlass java/lang/invoke/MemberName
+instanceKlass java/lang/invoke/MethodHandle
+instanceKlass sun/reflect/CallerSensitive
+instanceKlass java/lang/annotation/Annotation
+instanceKlass sun/reflect/FieldAccessor
+instanceKlass sun/reflect/ConstantPool
+instanceKlass sun/reflect/ConstructorAccessor
+instanceKlass sun/reflect/MethodAccessor
+instanceKlass sun/reflect/MagicAccessorImpl
+instanceKlass java/lang/reflect/Parameter
+instanceKlass java/lang/reflect/Member
+instanceKlass java/lang/reflect/AccessibleObject
+instanceKlass java/util/Dictionary
+instanceKlass java/util/Map
+instanceKlass java/lang/ThreadGroup
+instanceKlass java/lang/Thread$UncaughtExceptionHandler
+instanceKlass java/lang/Thread
+instanceKlass java/lang/Runnable
+instanceKlass java/lang/ref/ReferenceQueue
+instanceKlass java/lang/ref/Reference
+instanceKlass java/security/AccessControlContext
+instanceKlass java/security/ProtectionDomain
+instanceKlass java/lang/SecurityManager
+instanceKlass java/lang/Throwable
+instanceKlass java/lang/System
+instanceKlass java/lang/ClassLoader
+instanceKlass java/lang/Cloneable
+instanceKlass java/lang/Class
+instanceKlass java/lang/reflect/Type
+instanceKlass java/lang/reflect/GenericDeclaration
+instanceKlass java/lang/reflect/AnnotatedElement
+instanceKlass java/lang/String
+instanceKlass java/lang/CharSequence
+instanceKlass java/lang/Comparable
+instanceKlass java/io/Serializable
+ciInstanceKlass java/lang/Object 1 1 78 3 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 7 100 7 7 7 7 7 1 1 1 12 12 12 12 12 12 12 12 12 12 10 10 10 10 10 10 10 10 10 10 1
+ciInstanceKlass java/io/Serializable 1 0 7 1 1 1 100 100 1
+ciInstanceKlass java/lang/String 1 1 540 3 3 3 3 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 7 7 100 7 100 7 7 100 100 7 100 100 100 7 100 100 7 100 7 7 100 7 100 100 7 100 7 100 100 7 7 7 7 100 7 7 100 100 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 1 1
+staticfield java/lang/String serialPersistentFields [Ljava/io/ObjectStreamField; 0 [Ljava/io/ObjectStreamField;
+staticfield java/lang/String CASE_INSENSITIVE_ORDER Ljava/util/Comparator; java/lang/String$CaseInsensitiveComparator
+ciInstanceKlass java/lang/Class 1 1 1190 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 5 0 8 8 8 8 8 7 7 7 100 100 100 7 7 100 7 100 7 7 7 7 100 7 7 100 7 7 100 100 7 7 100 100 7 100 100 7 7 7 7 100 7 100 7 7 7 100 100 7 7 100 100 7 7 100 7 100 7 7 100 100 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 100 100 7 7 7 7 100 7 100 7 7 100 100 7 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 1 1 1 1 1 1 1 1
+staticfield java/lang/Class serialPersistentFields [Ljava/io/ObjectStreamField; 0 [Ljava/io/ObjectStreamField;
+ciInstanceKlass java/lang/Cloneable 1 0 7 1 1 1 100 100 1
+instanceKlass javax/management/remote/rmi/RMIConnectionImpl$CombinedClassLoader$ClassLoaderWrapper
+instanceKlass javax/management/remote/rmi/RMIConnectionImpl$CombinedClassLoader
+instanceKlass com/sun/jmx/remote/util/ClassLoaderWithRepository
+instanceKlass java/util/ResourceBundle$RBClassLoader
+instanceKlass javax/management/remote/rmi/NoCallStackClassLoader
+instanceKlass sun/reflect/DelegatingClassLoader
+instanceKlass java/security/SecureClassLoader
+ciInstanceKlass java/lang/ClassLoader 1 1 825 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 7 7 7 7 100 100 100 7 7 100 7 7 7 7 7 7 100 7 100 100 7 7 100 100 7 7 7 7 100 7 100 100 7 100 100 7 7 100 7 7 100 100 7 7 7 7 7 7 7 7 7 7 7 7 7 7 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 1 1
+staticfield java/lang/ClassLoader nocerts [Ljava/security/cert/Certificate; 0 [Ljava/security/cert/Certificate;
+ciInstanceKlass java/lang/System 1 1 369 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 7 7 7 7 7 7 100 100 100 100 100 100 7 7 100 100 7 100 100 7 7 7 7 100 100 100 7 100 100 7 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1
+staticfield java/lang/System in Ljava/io/InputStream; java/io/BufferedInputStream
+staticfield java/lang/System out Ljava/io/PrintStream; java/io/PrintStream
+staticfield java/lang/System err Ljava/io/PrintStream; java/io/PrintStream
+instanceKlass io/netty/util/ResourceLeakDetector$TraceRecord
+instanceKlass java/lang/Exception
+instanceKlass java/lang/Error
+ciInstanceKlass java/lang/Throwable 1 1 353 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 7 100 7 100 7 100 100 100 7 100 7 100 100 100 100 7 100 7 100 7 100 100 100 100 100 100 100 7 7 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 1 1 1 1 1
+staticfield java/lang/Throwable UNASSIGNED_STACK [Ljava/lang/StackTraceElement; 0 [Ljava/lang/StackTraceElement;
+staticfield java/lang/Throwable SUPPRESSED_SENTINEL Ljava/util/List; java/util/Collections$UnmodifiableRandomAccessList
+staticfield java/lang/Throwable EMPTY_THROWABLE_ARRAY [Ljava/lang/Throwable; 0 [Ljava/lang/Throwable;
+staticfield java/lang/Throwable $assertionsDisabled Z 1
+instanceKlass java/lang/VirtualMachineError
+instanceKlass java/lang/LinkageError
+instanceKlass java/lang/ThreadDeath
+ciInstanceKlass java/lang/Error 1 1 30 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 7 1 1 12 12 12 12 12 10 10 10 10 10 1
+ciInstanceKlass java/lang/ThreadDeath 0 0 18 1 1 1 1 1 1 1 1 1 1 5 0 100 100 12 10 1
+instanceKlass javax/servlet/ServletException
+instanceKlass java/util/TooManyListenersException
+instanceKlass java/sql/SQLException
+instanceKlass com/mchange/v1/cachedstore/CachedStoreException
+instanceKlass com/mchange/v2/log/MLogInitializationException
+instanceKlass java/beans/PropertyVetoException
+instanceKlass java/rmi/activation/ActivationException
+instanceKlass javax/naming/NamingException
+instanceKlass java/security/GeneralSecurityException
+instanceKlass java/lang/CloneNotSupportedException
+instanceKlass javax/management/JMException
+instanceKlass java/lang/instrument/UnmodifiableClassException
+instanceKlass java/security/PrivilegedActionException
+instanceKlass java/io/IOException
+instanceKlass java/lang/InterruptedException
+instanceKlass java/lang/ReflectiveOperationException
+instanceKlass java/lang/RuntimeException
+ciInstanceKlass java/lang/Exception 1 1 30 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 7 1 1 12 12 12 12 12 10 10 10 10 10 1
+instanceKlass org/springframework/data/mapping/MappingException
+instanceKlass java/lang/UnsupportedOperationException
+instanceKlass java/util/NoSuchElementException
+instanceKlass org/springframework/cache/interceptor/CacheOperationInvoker$ThrowableWrapper
+instanceKlass org/springframework/cglib/core/ClassNameReader$EarlyExitException
+instanceKlass java/lang/TypeNotPresentException
+instanceKlass org/springframework/core/NestedRuntimeException
+instanceKlass java/lang/IllegalStateException
+instanceKlass ch/qos/logback/core/LogbackException
+instanceKlass org/springframework/boot/context/config/ConfigDataException
+instanceKlass java/lang/SecurityException
+instanceKlass java/lang/invoke/WrongMethodTypeException
+instanceKlass java/lang/IndexOutOfBoundsException
+instanceKlass java/lang/IllegalArgumentException
+instanceKlass java/lang/ArithmeticException
+instanceKlass java/lang/NullPointerException
+instanceKlass java/lang/IllegalMonitorStateException
+instanceKlass java/lang/ArrayStoreException
+instanceKlass java/lang/ClassCastException
+ciInstanceKlass java/lang/RuntimeException 1 1 30 1 1 1 1 1 1 1 1 1 1 1 1 5 0 7 100 1 1 12 12 12 12 12 10 10 10 10 10 1
+ciInstanceKlass java/lang/SecurityManager 0 0 375 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1
+ciInstanceKlass java/security/ProtectionDomain 1 1 272 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 100 7 100 100 100 100 100 100 100 100 100 7 7 7 7 7 100 7 7 7 100 100 100 7 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 1 1
+staticfield java/security/ProtectionDomain debug Lsun/security/util/Debug; null
+ciInstanceKlass java/security/AccessControlContext 1 1 305 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 7 100 100 7 100 7 7 100 100 7 100 7 7 100 100 7 7 7 100 100 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 1
+instanceKlass sun/reflect/misc/MethodUtil
+instanceKlass java/net/URLClassLoader
+ciInstanceKlass java/security/SecureClassLoader 1 1 130 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 100 100 100 7 100 7 7 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1
+staticfield java/security/SecureClassLoader debug Lsun/security/util/Debug; null
+instanceKlass java/lang/reflect/InvocationTargetException
+instanceKlass java/lang/IllegalAccessException
+instanceKlass java/lang/InstantiationException
+instanceKlass java/lang/NoSuchMethodException
+instanceKlass java/lang/NoSuchFieldException
+instanceKlass java/lang/ClassNotFoundException
+ciInstanceKlass java/lang/ReflectiveOperationException 1 1 27 1 1 1 1 1 1 1 1 1 1 1 1 5 0 7 100 1 12 12 12 12 10 10 10 10 1
+ciInstanceKlass java/lang/ClassNotFoundException 1 1 32 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 7 100 1 1 1 12 12 12 9 10 10 1
+instanceKlass java/lang/UnsatisfiedLinkError
+instanceKlass java/lang/ClassFormatError
+instanceKlass java/lang/IncompatibleClassChangeError
+instanceKlass java/lang/BootstrapMethodError
+instanceKlass java/lang/NoClassDefFoundError
+ciInstanceKlass java/lang/LinkageError 1 1 24 1 1 1 1 1 1 1 1 1 1 1 5 0 7 100 1 12 12 12 10 10 10 1
+ciInstanceKlass java/lang/NoClassDefFoundError 1 1 21 1 1 1 1 1 1 1 1 1 1 1 5 0 7 100 12 12 10 10 1
+ciInstanceKlass java/lang/ClassCastException 1 1 21 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 1
+ciInstanceKlass java/lang/ArrayStoreException 1 1 21 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 1
+instanceKlass java/lang/InternalError
+instanceKlass java/lang/StackOverflowError
+instanceKlass java/lang/OutOfMemoryError
+ciInstanceKlass java/lang/VirtualMachineError 1 1 27 1 1 1 1 1 1 1 1 1 1 1 1 5 0 7 100 1 12 12 12 12 10 10 10 10 1
+ciInstanceKlass java/lang/OutOfMemoryError 1 1 21 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 1
+ciInstanceKlass java/lang/StackOverflowError 1 1 21 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 1
+ciInstanceKlass java/lang/IllegalMonitorStateException 1 1 21 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 1
+instanceKlass java/lang/ref/PhantomReference
+instanceKlass java/lang/ref/FinalReference
+instanceKlass java/lang/ref/WeakReference
+instanceKlass java/lang/ref/SoftReference
+ciInstanceKlass java/lang/ref/Reference 1 1 134 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 7 100 7 7 100 7 7 7 7 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1 1
+instanceKlass org/springframework/util/ConcurrentReferenceHashMap$SoftEntryReference
+instanceKlass sun/util/locale/provider/LocaleResources$ResourceReference
+instanceKlass java/util/ResourceBundle$BundleReference
+instanceKlass java/lang/invoke/LambdaFormEditor$Transform
+instanceKlass sun/util/locale/LocaleObjectCache$CacheEntry
+ciInstanceKlass java/lang/ref/SoftReference 1 1 35 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 7 7 1 1 1 1 12 12 12 12 12 9 9 10 10 10 1
+instanceKlass io/netty/util/ResourceLeakDetector$DefaultResourceLeak
+instanceKlass org/apache/tomcat/util/collections/ManagedConcurrentWeakHashMap$Key
+instanceKlass java/lang/reflect/Proxy$Key2
+instanceKlass java/beans/WeakIdentityMap$Entry
+instanceKlass com/mchange/v2/util/DoubleWeakHashMap$WVal
+instanceKlass com/mchange/v2/util/DoubleWeakHashMap$WKey
+instanceKlass com/mchange/v1/identicator/WeakIdHashKey$Ref
+instanceKlass org/springframework/cglib/core/WeakCacheKey
+instanceKlass com/intellij/rt/debugger/agent/CaptureStorage$WeakKey
+instanceKlass java/util/ResourceBundle$LoaderReference
+instanceKlass java/io/ObjectStreamClass$FieldReflectorKey
+instanceKlass java/io/ObjectStreamClass$WeakClassKey
+instanceKlass java/lang/invoke/MethodType$ConcurrentWeakInternSet$WeakEntry
+instanceKlass sun/rmi/transport/WeakRef
+instanceKlass java/lang/reflect/WeakCache$CacheValue
+instanceKlass java/lang/reflect/Proxy$Key1
+instanceKlass java/lang/reflect/WeakCache$CacheKey
+instanceKlass com/sun/jmx/mbeanserver/WeakIdentityHashMap$IdentityWeakReference
+instanceKlass java/util/logging/LogManager$LoggerWeakRef
+instanceKlass java/lang/ClassValue$Entry
+instanceKlass java/util/WeakHashMap$Entry
+instanceKlass java/lang/ThreadLocal$ThreadLocalMap$Entry
+ciInstanceKlass java/lang/ref/WeakReference 1 1 20 1 1 1 1 1 1 1 1 7 100 1 1 1 1 12 12 10 10 1
+instanceKlass java/lang/ref/Finalizer
+ciInstanceKlass java/lang/ref/FinalReference 1 1 16 1 1 1 1 1 1 1 100 7 1 1 1 12 10 1
+instanceKlass sun/misc/Cleaner
+ciInstanceKlass java/lang/ref/PhantomReference 1 1 19 1 1 1 1 1 1 1 1 1 1 100 7 1 1 1 12 10 1
+ciInstanceKlass sun/misc/Cleaner 1 1 74 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 7 7 100 7 100 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 10 10 10 10 10 10 10 11 1
+staticfield sun/misc/Cleaner dummyQueue Ljava/lang/ref/ReferenceQueue; java/lang/ref/ReferenceQueue
+ciInstanceKlass java/lang/ref/Finalizer 1 1 150 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 7 7 7 100 7 7 100 100 100 7 7 100 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 1
+staticfield java/lang/ref/Finalizer lock Ljava/lang/Object; java/lang/Object
+instanceKlass java/lang/ref/ReferenceQueue$Null
+ciInstanceKlass java/lang/ref/ReferenceQueue 1 1 130 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 7 100 100 7 100 100 7 7 100 7 7 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 11 1 1
+staticfield java/lang/ref/ReferenceQueue $assertionsDisabled Z 1
+instanceKlass io/netty/util/concurrent/FastThreadLocalThread
+instanceKlass org/springframework/boot/web/embedded/tomcat/TomcatWebServer$1
+instanceKlass org/apache/tomcat/util/threads/TaskThread
+instanceKlass com/mchange/v2/log/MLog$1
+instanceKlass org/springframework/context/support/AbstractApplicationContext$1
+instanceKlass java/util/logging/LogManager$Cleaner
+instanceKlass java/lang/ref/Finalizer$FinalizerThread
+instanceKlass java/lang/ref/Reference$ReferenceHandler
+ciInstanceKlass java/lang/Thread 1 1 539 3 3 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 100 100 100 100 100 100 7 100 100 100 100 100 7 7 7 100 7 100 7 7 100 100 100 100 100 100 7 100 100 100 100 100 100 100 7 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 1 1 1 1 1
+staticfield java/lang/Thread EMPTY_STACK_TRACE [Ljava/lang/StackTraceElement; 0 [Ljava/lang/StackTraceElement;
+staticfield java/lang/Thread SUBCLASS_IMPLEMENTATION_PERMISSION Ljava/lang/RuntimePermission; java/lang/RuntimePermission
+ciInstanceKlass java/lang/ThreadGroup 1 1 268 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 100 100 100 100 7 100 100 7 7 100 100 7 100 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 1
+instanceKlass java/util/Hashtable
+ciInstanceKlass java/util/Dictionary 1 1 31 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 1 1 1 1 1 1 12 10 1
+instanceKlass java/util/Properties
+ciInstanceKlass java/util/Hashtable 1 1 416 3 3 4 4 8 8 8 8 8 8 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 5 0 100 100 100 100 100 100 100 100 100 100 7 100 100 7 100 7 100 100 100 7 100 7 7 100 7 7 7 7 100 7 7 7 100 7 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 11 11 11 11 11 1 1 1 1 1
+instanceKlass com/mchange/v2/c3p0/impl/AuthMaskingProperties
+instanceKlass org/springframework/beans/factory/support/ManagedProperties
+instanceKlass java/security/Provider
+ciInstanceKlass java/util/Properties 1 1 263 3 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 7 100 100 100 7 100 100 100 100 100 7 7 7 100 7 7 7 100 100 7 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 1 1 1
+staticfield java/util/Properties hexDigit [C 16
+instanceKlass java/lang/reflect/Executable
+instanceKlass java/lang/reflect/Field
+ciInstanceKlass java/lang/reflect/AccessibleObject 1 1 144 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 7 7 100 7 7 7 7 100 7 7 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 1
+staticfield java/lang/reflect/AccessibleObject ACCESS_PERMISSION Ljava/security/Permission; java/lang/reflect/ReflectPermission
+staticfield java/lang/reflect/AccessibleObject reflectionFactory Lsun/reflect/ReflectionFactory; sun/reflect/ReflectionFactory
+ciInstanceKlass java/lang/reflect/Field 1 1 362 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 100 7 100 100 7 7 100 100 100 7 7 7 7 7 7 7 7 100 100 100 100 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 1 1
+ciInstanceKlass java/lang/reflect/Parameter 1 1 210 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 7 7 100 100 100 7 100 7 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 1
+instanceKlass java/lang/reflect/Constructor
+instanceKlass java/lang/reflect/Method
+ciInstanceKlass java/lang/reflect/Executable 1 1 378 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 7 100 100 7 100 7 100 100 7 7 7 7 7 7 100 100 100 7 7 7 100 7 7 7 7 7 7 100 100 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 1 1
+ciInstanceKlass java/lang/reflect/Method 1 1 346 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 7 7 100 100 7 7 7 100 7 100 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 1
+ciInstanceKlass java/lang/reflect/Constructor 1 1 330 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 7 7 100 100 100 7 100 100 7 7 100 100 100 100 100 7 7 7 100 100 100 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 1 1
+instanceKlass sun/reflect/FieldAccessorImpl
+instanceKlass sun/reflect/ConstructorAccessorImpl
+instanceKlass sun/reflect/MethodAccessorImpl
+ciInstanceKlass sun/reflect/MagicAccessorImpl 1 1 13 1 1 1 1 1 1 1 7 100 12 10 1
+instanceKlass sun/reflect/GeneratedMethodAccessor35
+instanceKlass sun/reflect/GeneratedMethodAccessor34
+instanceKlass sun/reflect/GeneratedMethodAccessor33
+instanceKlass sun/reflect/GeneratedMethodAccessor32
+instanceKlass sun/reflect/GeneratedMethodAccessor31
+instanceKlass sun/reflect/GeneratedMethodAccessor30
+instanceKlass sun/reflect/GeneratedMethodAccessor29
+instanceKlass sun/reflect/GeneratedMethodAccessor28
+instanceKlass sun/reflect/GeneratedMethodAccessor27
+instanceKlass sun/reflect/GeneratedMethodAccessor26
+instanceKlass sun/reflect/GeneratedMethodAccessor25
+instanceKlass sun/reflect/GeneratedMethodAccessor24
+instanceKlass sun/reflect/GeneratedMethodAccessor23
+instanceKlass sun/reflect/GeneratedMethodAccessor22
+instanceKlass sun/reflect/GeneratedMethodAccessor21
+instanceKlass sun/reflect/GeneratedMethodAccessor20
+instanceKlass sun/reflect/GeneratedMethodAccessor19
+instanceKlass sun/reflect/GeneratedMethodAccessor18
+instanceKlass sun/reflect/GeneratedMethodAccessor17
+instanceKlass sun/reflect/GeneratedMethodAccessor16
+instanceKlass sun/reflect/GeneratedMethodAccessor15
+instanceKlass sun/reflect/GeneratedMethodAccessor14
+instanceKlass sun/reflect/GeneratedMethodAccessor13
+instanceKlass sun/reflect/GeneratedMethodAccessor12
+instanceKlass sun/reflect/GeneratedMethodAccessor11
+instanceKlass sun/reflect/GeneratedMethodAccessor10
+instanceKlass sun/reflect/GeneratedMethodAccessor9
+instanceKlass sun/reflect/GeneratedMethodAccessor8
+instanceKlass sun/reflect/GeneratedMethodAccessor7
+instanceKlass sun/reflect/GeneratedMethodAccessor6
+instanceKlass sun/reflect/GeneratedMethodAccessor5
+instanceKlass sun/reflect/GeneratedMethodAccessor4
+instanceKlass sun/reflect/GeneratedMethodAccessor3
+instanceKlass sun/reflect/GeneratedMethodAccessor2
+instanceKlass sun/reflect/GeneratedMethodAccessor1
+instanceKlass sun/reflect/DelegatingMethodAccessorImpl
+instanceKlass sun/reflect/NativeMethodAccessorImpl
+ciInstanceKlass sun/reflect/MethodAccessorImpl 1 1 22 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 7 100 100 12 10 1
+instanceKlass sun/reflect/GeneratedConstructorAccessor27
+instanceKlass sun/reflect/GeneratedConstructorAccessor26
+instanceKlass sun/reflect/GeneratedConstructorAccessor25
+instanceKlass sun/reflect/GeneratedConstructorAccessor24
+instanceKlass sun/reflect/GeneratedConstructorAccessor23
+instanceKlass sun/reflect/GeneratedConstructorAccessor22
+instanceKlass sun/reflect/GeneratedConstructorAccessor21
+instanceKlass sun/reflect/GeneratedConstructorAccessor20
+instanceKlass sun/reflect/GeneratedConstructorAccessor19
+instanceKlass sun/reflect/GeneratedConstructorAccessor18
+instanceKlass sun/reflect/GeneratedConstructorAccessor17
+instanceKlass sun/reflect/GeneratedConstructorAccessor16
+instanceKlass sun/reflect/GeneratedConstructorAccessor15
+instanceKlass sun/reflect/GeneratedConstructorAccessor14
+instanceKlass sun/reflect/GeneratedConstructorAccessor13
+instanceKlass sun/reflect/GeneratedConstructorAccessor12
+instanceKlass sun/reflect/GeneratedConstructorAccessor11
+instanceKlass sun/reflect/GeneratedConstructorAccessor10
+instanceKlass sun/reflect/GeneratedConstructorAccessor9
+instanceKlass sun/reflect/GeneratedConstructorAccessor8
+instanceKlass sun/reflect/GeneratedConstructorAccessor7
+instanceKlass sun/reflect/GeneratedConstructorAccessor6
+instanceKlass sun/reflect/GeneratedConstructorAccessor5
+instanceKlass sun/reflect/GeneratedConstructorAccessor4
+instanceKlass sun/reflect/GeneratedConstructorAccessor3
+instanceKlass sun/reflect/GeneratedConstructorAccessor2
+instanceKlass sun/reflect/GeneratedConstructorAccessor1
+instanceKlass sun/reflect/BootstrapConstructorAccessorImpl
+instanceKlass sun/reflect/SerializationConstructorAccessorImpl
+instanceKlass sun/reflect/DelegatingConstructorAccessorImpl
+instanceKlass sun/reflect/NativeConstructorAccessorImpl
+ciInstanceKlass sun/reflect/ConstructorAccessorImpl 1 1 24 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 7 12 10 1
+ciInstanceKlass sun/reflect/DelegatingClassLoader 1 1 13 1 1 1 1 1 1 1 7 100 1 12 10
+ciInstanceKlass sun/reflect/ConstantPool 1 1 106 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1
+instanceKlass sun/reflect/UnsafeFieldAccessorImpl
+ciInstanceKlass sun/reflect/FieldAccessorImpl 1 1 56 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1
+instanceKlass sun/reflect/UnsafeObjectFieldAccessorImpl
+instanceKlass sun/reflect/UnsafeStaticFieldAccessorImpl
+ciInstanceKlass sun/reflect/UnsafeFieldAccessorImpl 1 1 229 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 7 100 100 100 100 100 100 7 100 100 100 7 7 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1
+staticfield sun/reflect/UnsafeFieldAccessorImpl unsafe Lsun/misc/Unsafe; sun/misc/Unsafe
+instanceKlass sun/reflect/UnsafeStaticObjectFieldAccessorImpl
+instanceKlass sun/reflect/UnsafeQualifiedStaticFieldAccessorImpl
+ciInstanceKlass sun/reflect/UnsafeStaticFieldAccessorImpl 1 1 38 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 7 7 7 1 1 1 1 12 12 12 12 12 9 9 10 10 10 1
+ciInstanceKlass sun/reflect/CallerSensitive 0 0 17 1 1 1 1 1 1 1 1 100 100 100 1 1 1 1 1
+instanceKlass java/lang/invoke/DelegatingMethodHandle
+instanceKlass java/lang/invoke/BoundMethodHandle
+instanceKlass java/lang/invoke/DirectMethodHandle
+ciInstanceKlass java/lang/invoke/MethodHandle 1 1 438 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 7 100 100 100 100 7 100 100 100 7 100 100 7 7 7 100 7 7 7 7 100 100 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 1 1
+staticfield java/lang/invoke/MethodHandle FORM_OFFSET J 20
+staticfield java/lang/invoke/MethodHandle $assertionsDisabled Z 1
+instanceKlass java/lang/invoke/DirectMethodHandle$Special
+instanceKlass java/lang/invoke/DirectMethodHandle$Constructor
+instanceKlass java/lang/invoke/DirectMethodHandle$Accessor
+instanceKlass java/lang/invoke/DirectMethodHandle$Interface
+ciInstanceKlass java/lang/invoke/DirectMethodHandle 1 1 701 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 7 7 7 7 7 7 7 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 7 7 7 100 7 100 7 7 100 7 7 100 7 7 7 7 7 7 100 7 7 100 7 7 100 7 7 7 100 100 100 7 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1 1 1 1 1 1 1 1 1
+staticfield java/lang/invoke/DirectMethodHandle IMPL_NAMES Ljava/lang/invoke/MemberName$Factory; java/lang/invoke/MemberName$Factory
+staticfield java/lang/invoke/DirectMethodHandle ACCESSOR_FORMS [Ljava/lang/invoke/LambdaForm; 132 [Ljava/lang/invoke/LambdaForm;
+staticfield java/lang/invoke/DirectMethodHandle $assertionsDisabled Z 1
+ciInstanceKlass java/lang/invoke/MemberName 1 1 642 3 3 3 3 3 3 3 3 3 3 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 7 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 3 3 3 3 7 7 100 100 100 7 7 100 100 100 100 100 100 100 100 100 7 100 7 7 7 7 7 100 7 7 100 100 100 100 7 100 100 100 7 7 7 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1 1 1
+staticfield java/lang/invoke/MemberName $assertionsDisabled Z 1
+ciInstanceKlass java/lang/invoke/MethodHandleNatives 1 1 427 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 100 100 7 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 7 100 100 100 100 100 100 100 100 100 100 100 100 100 7 100 7 100 100 100 7 7 7 7 7 7 100 7 7 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1 1
+staticfield java/lang/invoke/MethodHandleNatives COUNT_GWT Z 1
+staticfield java/lang/invoke/MethodHandleNatives $assertionsDisabled Z 1
+ciInstanceKlass java/lang/invoke/LambdaForm 1 1 967 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 100 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 8 100 100 100 100 7 7 100 100 100 7 100 100 100 100 100 100 100 100 7 7 7 100 7 7 100 100 100 7 100 7 100 100 7 7 7 7 7 100 100 7 7 7 7 100 100 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 1 1 1 1 1 1
+staticfield java/lang/invoke/LambdaForm COMPILE_THRESHOLD I 0
+staticfield java/lang/invoke/LambdaForm INTERNED_ARGUMENTS [[Ljava/lang/invoke/LambdaForm$Name; 5 [[Ljava/lang/invoke/LambdaForm$Name;
+staticfield java/lang/invoke/LambdaForm IMPL_NAMES Ljava/lang/invoke/MemberName$Factory; java/lang/invoke/MemberName$Factory
+staticfield java/lang/invoke/LambdaForm LF_identityForm [Ljava/lang/invoke/LambdaForm; 6 [Ljava/lang/invoke/LambdaForm;
+staticfield java/lang/invoke/LambdaForm LF_zeroForm [Ljava/lang/invoke/LambdaForm; 6 [Ljava/lang/invoke/LambdaForm;
+staticfield java/lang/invoke/LambdaForm NF_identity [Ljava/lang/invoke/LambdaForm$NamedFunction; 6 [Ljava/lang/invoke/LambdaForm$NamedFunction;
+staticfield java/lang/invoke/LambdaForm NF_zero [Ljava/lang/invoke/LambdaForm$NamedFunction; 6 [Ljava/lang/invoke/LambdaForm$NamedFunction;
+staticfield java/lang/invoke/LambdaForm DEBUG_NAME_COUNTERS Ljava/util/HashMap; null
+staticfield java/lang/invoke/LambdaForm TRACE_INTERPRETER Z 0
+staticfield java/lang/invoke/LambdaForm $assertionsDisabled Z 1
+ciInstanceKlass java/lang/invoke/MethodType 1 1 588 8 8 8 8 8 8 8 8 8 8 8 8 7 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 5 0 7 100 100 100 100 7 100 100 7 100 7 100 100 100 100 100 7 7 7 7 100 7 7 7 7 7 7 7 7 7 7 100 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 1 1
+staticfield java/lang/invoke/MethodType internTable Ljava/lang/invoke/MethodType$ConcurrentWeakInternSet; java/lang/invoke/MethodType$ConcurrentWeakInternSet
+staticfield java/lang/invoke/MethodType NO_PTYPES [Ljava/lang/Class; 0 [Ljava/lang/Class;
+staticfield java/lang/invoke/MethodType objectOnlyTypes [Ljava/lang/invoke/MethodType; 20 [Ljava/lang/invoke/MethodType;
+staticfield java/lang/invoke/MethodType serialPersistentFields [Ljava/io/ObjectStreamField; 0 [Ljava/io/ObjectStreamField;
+staticfield java/lang/invoke/MethodType rtypeOffset J 12
+staticfield java/lang/invoke/MethodType ptypesOffset J 16
+staticfield java/lang/invoke/MethodType $assertionsDisabled Z 1
+ciInstanceKlass java/lang/BootstrapMethodError 0 0 38 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 1 1 12 12 12 12 12 10 10 10 10 10 1
+instanceKlass java/lang/invoke/VolatileCallSite
+instanceKlass java/lang/invoke/MutableCallSite
+instanceKlass java/lang/invoke/ConstantCallSite
+ciInstanceKlass java/lang/invoke/CallSite 1 1 311 8 8 8 8 8 8 8 8 7 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 7 100 100 100 100 7 100 100 100 100 100 100 7 100 7 100 7 7 100 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1
+staticfield java/lang/invoke/CallSite GET_TARGET Ljava/lang/invoke/MethodHandle; java/lang/invoke/DirectMethodHandle
+staticfield java/lang/invoke/CallSite THROW_UCS Ljava/lang/invoke/MethodHandle; java/lang/invoke/MethodHandleImpl$AsVarargsCollector
+staticfield java/lang/invoke/CallSite TARGET_OFFSET J 12
+ciInstanceKlass java/lang/invoke/ConstantCallSite 1 1 42 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 7 7 1 1 12 12 12 12 12 12 9 9 10 10 10 10 10 1
+ciInstanceKlass java/lang/invoke/MutableCallSite 0 0 57 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 1
+ciInstanceKlass java/lang/invoke/VolatileCallSite 0 0 33 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 1 1 12 12 12 12 12 12 10 10 10 10 10 10 1
+instanceKlass java/lang/StringBuilder
+instanceKlass java/lang/StringBuffer
+ciInstanceKlass java/lang/AbstractStringBuilder 1 1 318 3 3 3 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 7 100 7 100 100 100 7 7 7 100 7 100 100 100 7 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 1
+ciInstanceKlass java/lang/StringBuffer 1 1 371 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 7 100 7 7 100 100 7 7 7 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1 1 1
+staticfield java/lang/StringBuffer serialPersistentFields [Ljava/io/ObjectStreamField; 3 [Ljava/io/ObjectStreamField;
+ciInstanceKlass java/lang/StringBuilder 1 1 326 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 7 100 100 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1
+ciInstanceKlass sun/misc/Unsafe 1 1 389 8 8 7 7 7 7 7 7 7 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 100 7 100 7 7 100 7 100 100 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1
+staticfield sun/misc/Unsafe theUnsafe Lsun/misc/Unsafe; sun/misc/Unsafe
+staticfield sun/misc/Unsafe ARRAY_BOOLEAN_BASE_OFFSET I 16
+staticfield sun/misc/Unsafe ARRAY_BYTE_BASE_OFFSET I 16
+staticfield sun/misc/Unsafe ARRAY_SHORT_BASE_OFFSET I 16
+staticfield sun/misc/Unsafe ARRAY_CHAR_BASE_OFFSET I 16
+staticfield sun/misc/Unsafe ARRAY_INT_BASE_OFFSET I 16
+staticfield sun/misc/Unsafe ARRAY_LONG_BASE_OFFSET I 16
+staticfield sun/misc/Unsafe ARRAY_FLOAT_BASE_OFFSET I 16
+staticfield sun/misc/Unsafe ARRAY_DOUBLE_BASE_OFFSET I 16
+staticfield sun/misc/Unsafe ARRAY_OBJECT_BASE_OFFSET I 16
+staticfield sun/misc/Unsafe ARRAY_BOOLEAN_INDEX_SCALE I 1
+staticfield sun/misc/Unsafe ARRAY_BYTE_INDEX_SCALE I 1
+staticfield sun/misc/Unsafe ARRAY_SHORT_INDEX_SCALE I 2
+staticfield sun/misc/Unsafe ARRAY_CHAR_INDEX_SCALE I 2
+staticfield sun/misc/Unsafe ARRAY_INT_INDEX_SCALE I 4
+staticfield sun/misc/Unsafe ARRAY_LONG_INDEX_SCALE I 8
+staticfield sun/misc/Unsafe ARRAY_FLOAT_INDEX_SCALE I 4
+staticfield sun/misc/Unsafe ARRAY_DOUBLE_INDEX_SCALE I 8
+staticfield sun/misc/Unsafe ARRAY_OBJECT_INDEX_SCALE I 4
+staticfield sun/misc/Unsafe ADDRESS_SIZE I 8
+instanceKlass sun/nio/ch/ChannelInputStream
+instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityManager$RewindableInputStream
+instanceKlass java/io/ObjectInputStream$PeekInputStream
+instanceKlass java/io/ObjectInputStream$BlockDataInputStream
+instanceKlass java/io/ObjectInputStream
+instanceKlass java/util/zip/ZipFile$ZipFileInputStream
+instanceKlass java/io/FilterInputStream
+instanceKlass java/io/FileInputStream
+instanceKlass java/io/ByteArrayInputStream
+ciInstanceKlass java/io/InputStream 1 1 61 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 5 0 100 100 100 7 100 100 100 7 12 12 12 12 12 10 10 10 10 10 10 10 1
+ciInstanceKlass java/io/ByteArrayInputStream 1 1 62 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 100 7 100 100 100 7 1 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 1
+ciInstanceKlass java/io/File 1 1 578 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 7 7 7 100 100 7 100 100 100 100 100 100 100 7 100 100 100 100 100 7 100 100 100 100 7 7 7 100 100 7 100 100 7 7 100 100 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 1 1 1 1
+staticfield java/io/File fs Ljava/io/FileSystem; java/io/WinNTFileSystem
+staticfield java/io/File separatorChar C 92
+staticfield java/io/File separator Ljava/lang/String; "\"
+staticfield java/io/File pathSeparatorChar C 59
+staticfield java/io/File pathSeparator Ljava/lang/String; ";"
+staticfield java/io/File PATH_OFFSET J 16
+staticfield java/io/File PREFIX_LENGTH_OFFSET J 12
+staticfield java/io/File UNSAFE Lsun/misc/Unsafe; sun/misc/Unsafe
+staticfield java/io/File $assertionsDisabled Z 1
+instanceKlass org/apache/catalina/loader/WebappClassLoaderBase
+instanceKlass sun/misc/Launcher$ExtClassLoader
+instanceKlass sun/misc/Launcher$AppClassLoader
+ciInstanceKlass java/net/URLClassLoader 1 1 527 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 7 7 7 100 100 7 7 7 100 100 7 100 100 100 7 7 7 100 7 100 7 7 7 7 7 100 100 100 7 7 100 100 100 7 7 7 7 100 7 100 100 100 7 7 7 100 7 7 7 7 7 7 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 11
+ciInstanceKlass java/net/URL 1 1 573 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 100 7 100 7 7 100 100 100 100 100 7 7 100 7 7 100 100 100 7 7 100 100 7 100 7 7 7 7 100 7 7 7 100 7 7 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1
+staticfield java/net/URL serialPersistentFields [Ljava/io/ObjectStreamField; 7 [Ljava/io/ObjectStreamField;
+ciInstanceKlass java/util/jar/Manifest 1 1 256 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 7 7 100 7 100 100 7 7 100 7 100 100 7 100 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 11 11 11 11 11 11 11 11 1 1
+ciInstanceKlass sun/misc/Launcher 1 1 218 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 7 100 100 100 100 100 100 100 100 7 100 7 100 7 7 100 7 7 100 7 7 7 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1 1 1
+ciInstanceKlass sun/misc/Launcher$AppClassLoader 1 1 201 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 7 100 7 7 7 7 100 7 7 100 100 7 100 7 100 7 100 7 7 7 100 7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 1
+staticfield sun/misc/Launcher$AppClassLoader $assertionsDisabled Z 1
+ciInstanceKlass sun/misc/Launcher$ExtClassLoader 1 1 243 8 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 7 100 7 100 7 7 100 100 100 7 7 100 100 100 7 100 100 100 7 7 7 7 7 100 7 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 1
+ciInstanceKlass java/security/CodeSource 1 1 324 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 100 100 100 100 100 100 100 7 7 100 100 7 100 7 100 100 100 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 11 11 1
+ciInstanceKlass java/lang/StackTraceElement 1 1 98 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 7 7 7 100 7 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 1
+instanceKlass java/nio/LongBuffer
+instanceKlass java/nio/CharBuffer
+instanceKlass java/nio/ByteBuffer
+ciInstanceKlass java/nio/Buffer 1 1 103 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 100 100 7 100 7 100 100 100 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 1
+ciInstanceKlass java/lang/Boolean 1 1 110 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 7 7 100 100 100 7 100 7 7 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 10 10 10 10 10 10 10 10 10 10 1
+staticfield java/lang/Boolean TRUE Ljava/lang/Boolean; java/lang/Boolean
+staticfield java/lang/Boolean FALSE Ljava/lang/Boolean; java/lang/Boolean
+staticfield java/lang/Boolean TYPE Ljava/lang/Class; java/lang/Class
+ciInstanceKlass java/lang/Character 1 1 459 3 3 3 3 3 3 3 3 8 8 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 5 0 5 0 100 100 7 7 100 100 100 7 100 7 100 100 100 100 7 7 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 11 11 1 1 1 1 1
+staticfield java/lang/Character TYPE Ljava/lang/Class; java/lang/Class
+staticfield java/lang/Character $assertionsDisabled Z 1
+instanceKlass java/math/BigInteger
+instanceKlass java/math/BigDecimal
+instanceKlass java/util/concurrent/atomic/AtomicLong
+instanceKlass java/util/concurrent/atomic/AtomicInteger
+instanceKlass java/lang/Long
+instanceKlass java/lang/Integer
+instanceKlass java/lang/Short
+instanceKlass java/lang/Byte
+instanceKlass java/lang/Double
+instanceKlass java/lang/Float
+ciInstanceKlass java/lang/Number 1 1 34 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 7 12 12 10 10 1
+ciInstanceKlass java/lang/Float 1 1 169 3 3 3 4 4 4 4 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 4 4 5 0 7 100 100 7 100 7 100 100 7 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1
+staticfield java/lang/Float TYPE Ljava/lang/Class; java/lang/Class
+ciInstanceKlass java/lang/Double 1 1 223 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 5 0 5 0 5 0 5 0 5 0 6 0 6 0 6 0 6 0 6 0 6 0 6 0 7 100 7 100 100 7 100 100 100 7 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1
+staticfield java/lang/Double TYPE Ljava/lang/Class; java/lang/Class
+ciInstanceKlass java/lang/Byte 1 1 153 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 5 0 5 0 7 7 7 100 100 7 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1
+staticfield java/lang/Byte TYPE Ljava/lang/Class; java/lang/Class
+ciInstanceKlass java/lang/Short 1 1 159 3 3 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 5 0 5 0 7 100 100 7 100 7 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1
+staticfield java/lang/Short TYPE Ljava/lang/Class; java/lang/Class
+ciInstanceKlass java/lang/Integer 1 1 309 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 5 0 5 0 5 0 100 7 7 100 100 7 7 100 7 100 7 100 100 100 7 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1
+staticfield java/lang/Integer TYPE Ljava/lang/Class; java/lang/Class
+staticfield java/lang/Integer digits [C 36
+staticfield java/lang/Integer DigitTens [C 100
+staticfield java/lang/Integer DigitOnes [C 100
+staticfield java/lang/Integer sizeTable [I 10
+ciInstanceKlass java/lang/Long 1 1 356 3 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 100 7 7 100 100 7 7 7 7 100 7 100 100 100 7 100 7 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 1 1
+staticfield java/lang/Long TYPE Ljava/lang/Class; java/lang/Class
+ciInstanceKlass java/lang/NullPointerException 1 1 21 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 1
+ciInstanceKlass java/lang/ArithmeticException 1 1 21 1 1 1 1 1 1 1 1 1 1 1 5 0 100 100 12 12 10 10 1
+ciInstanceKlass org/springframework/asm/ClassReader 1 1 1076 10 10 10 9 9 10 7 100 100 10 8 10 10 10 10 10 9 7 9 10 9 9 100 9 10 9 10 10 10 8 10 100 8 10 7 10 7 10 10 10 10 10 100 10 10 10 7 10 7 10 9 9 9 10 10 10 100 8 10 8 8 8 8 8 8 8 8 8 3 8 8 10 8 8 8 3 8 8 8 8 10 9 10 10 10 10 10 10 10 10 9 9 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 8 10 10 10 10 10 10 9 9 9 8 8 8 8 8 8 10 10 7 10 10 10 10 10 10 10 10 10 10 10 10 10 10 7 9 10 10 8 10 8 8 10 10 8 8 9 9 9 9 7 9 9 9 10 100 10 10 10 10 10 10 10 10 10 10 10 10 10 100 10 7 10 10 10 100 10 10 10 10 100 9 9 9 10 10 10 10 9 100 10 10 3 3 3 10 10 10 10 10 10 9 9 10 10 10 10 10 10 10 8 9 10 9 9 9 9 10 10 9 9 9 10 10 5 0 10 10 10 10 10 10 10 10 10 10 10 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 100 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 12 12 12 12 12 12 1 1 1 1 12 12 12 12 12 12 1 12 12 12 1 12 12 12 12 12 12 1 100 12 1 1 1 1 7 12 12 12 12 12 1 12 12 1 12 1 12 12 12 12 12 12 1 12 1 1 1 1 1 1 1 1 1 12 1 1 1 1 1 1 1 12 12 7 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 100 12 12 12 12 12 12 12 12 12 100 12 12 100 12 12 12 1 1 1 1 12 12 1 12 12 12 7 12 12 12 7 12 12 12 1 12 12 12 12 1 12 12 1 12 12 12 12 1 12 12 12 12 1 12 12 12 12 12 12 12 12 12 12 12 12 12 1 12 1 12 12 12 1 12 12 12 1 12 12 12 12 12 12 12 1 12 12 12 12 100 12 12 100 12 100 12 7 12 12 12 7 12 12 12 12 100 12 100 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 7 12 12 7 12 12 12 12 12 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
+ciInstanceKlass org/springframework/asm/Context 1 1 43 10 100 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 1 1
+instanceKlass org/springframework/core/LocalVariableTableParameterNameDiscoverer$LocalVariableTableVisitor
+instanceKlass org/springframework/cglib/proxy/BridgeMethodResolver$BridgedFinder$1
+instanceKlass org/springframework/cglib/core/ClassEmitter$2
+instanceKlass org/springframework/cglib/core/LocalVariablesSorter
+instanceKlass org/springframework/asm/MethodWriter
+instanceKlass org/springframework/core/type/classreading/SimpleMethodMetadataReadingVisitor
+ciInstanceKlass org/springframework/asm/MethodVisitor 1 1 251 10 10 100 3 3 3 3 3 3 3 100 100 10 8 10 10 10 10 9 9 100 7 8 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 8 10 10 10 10 100 100 10 100 8 10 10 10 10 10 10 10 10 10 10 10 10 10 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 12 1 1 1 1 12 12 12 12 12 12 1 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 1 12 12 12 12 1 1 12 1 1 12 12 12 12 12 12 12 12 12 12 12 12 12 1 1 1 1 1 1 1 1 1 1
+ciMethod org/springframework/asm/ClassReader readCode (Lorg/springframework/asm/MethodVisitor;Lorg/springframework/asm/Context;I)V 1449 116025 117 0 -1
+compile org/springframework/asm/ClassReader readCode (Lorg/springframework/asm/MethodVisitor;Lorg/springframework/asm/Context;I)V -1 1
diff --git a/20250705/weather/src/main/java/com/rehome/weather/WeatherApplication.java b/20250705/weather/src/main/java/com/rehome/weather/WeatherApplication.java
new file mode 100644
index 0000000..0046e32
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/WeatherApplication.java
@@ -0,0 +1,35 @@
+package com.rehome.weather;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.boot.builder.SpringApplicationBuilder;
+import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
+import org.springframework.cache.annotation.EnableCaching;
+import org.springframework.scheduling.annotation.EnableScheduling;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-04-25 9:35
+ * @description: springboot应用 启动入口
+ */
+@SpringBootApplication
+@EnableScheduling
+@EnableCaching
+public class WeatherApplication extends SpringBootServletInitializer {
+
+ public static void main(String[] args) {
+ SpringApplication.run(WeatherApplication.class, args);
+ }
+
+ /**
+ * @date 2021-05-18 09:20
+ * @description: 容器配置,springboot打war包布署必须添加这个配置 为了打包springboot项目
+ * @Param: SpringApplicationBuilder
+ */
+ @Override
+ protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
+ return application.sources(WeatherApplication.class);
+ }
+
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/config/dao/DataSourceConfiguration.java b/20250705/weather/src/main/java/com/rehome/weather/config/dao/DataSourceConfiguration.java
new file mode 100644
index 0000000..d2044d1
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/config/dao/DataSourceConfiguration.java
@@ -0,0 +1,47 @@
+package com.rehome.weather.config.dao;
+
+
+import com.mchange.v2.c3p0.ComboPooledDataSource;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import java.beans.PropertyVetoException;
+
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-04-25 9:35
+ * @description: 数据库配置,数据源配置类
+ */
+@Configuration
+public class DataSourceConfiguration {
+ //驱动
+ @Value("${jdbc.driver}")
+ private String jdbcDriver;
+ //数据库连接url
+ @Value("${jdbc.url}")
+ private String jdbcUrl;
+ //数据库名称
+ @Value("${jdbc.username}")
+ private String jdbcUsername;
+ //数据库密码
+ @Value("${jdbc.password}")
+ private String jdbcPassword;
+ /**
+ * @date 2021-04-29 10:24
+ * @description: 创建数据源,加入连接池管理
+ * @Param: null
+ */
+ @Bean(name = "dataSouce")
+ public ComboPooledDataSource createDataSouce() throws PropertyVetoException {
+ ComboPooledDataSource dataSource = new ComboPooledDataSource();
+ dataSource.setDriverClass(jdbcDriver);
+ dataSource.setJdbcUrl(jdbcUrl);
+ dataSource.setUser(jdbcUsername);
+ dataSource.setPassword(jdbcPassword);
+ //关闭连接后不自动commit
+ dataSource.setAutoCommitOnClose(false);
+ return dataSource;
+ }
+}
\ No newline at end of file
diff --git a/20250705/weather/src/main/java/com/rehome/weather/config/dao/JuheWeatherProperties.java b/20250705/weather/src/main/java/com/rehome/weather/config/dao/JuheWeatherProperties.java
new file mode 100644
index 0000000..ec84bf2
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/config/dao/JuheWeatherProperties.java
@@ -0,0 +1,40 @@
+package com.rehome.weather.config.dao;
+
+
+import org.springframework.boot.context.properties.ConfigurationProperties;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.context.annotation.PropertySource;
+import org.springframework.stereotype.Component;
+import lombok.Data;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-04-28 9:35
+ * @description: 读取配置文件,获取第三方平台 聚合数据 各接口的url key 查询天气的城市
+ */
+@Configuration
+@ConfigurationProperties(prefix = "weather", ignoreUnknownFields = false)
+@PropertySource(value="classpath:config/juheweather.properties",encoding = "UTF-8")
+@Data
+@Component
+public class JuheWeatherProperties {
+ //要查询天气的城市
+ private String city;
+ //查询天汽url
+ private String weatherQueryUrl;
+ //聚合平台key
+ private String weatherKey;
+ //天气支持城市列表url
+ private String cityListUrl;
+ //查询天气种类列表url
+ private String weatherTypeUrl;
+ //和风开发平台台风key
+ private String heFengStormKey;
+ //和风天气开发平台 台风列表url
+ private String stormListUrl;
+ //和风天气开发平台 台风预报url
+ private String stormForecastUrl;
+ //和风天气开发平台 台风实况和路径url
+ private String stormTrackUrl;
+}
\ No newline at end of file
diff --git a/20250705/weather/src/main/java/com/rehome/weather/config/dao/SessionFactoryConfiguration.java b/20250705/weather/src/main/java/com/rehome/weather/config/dao/SessionFactoryConfiguration.java
new file mode 100644
index 0000000..a1830cc
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/config/dao/SessionFactoryConfiguration.java
@@ -0,0 +1,50 @@
+package com.rehome.weather.config.dao;
+
+
+import org.mybatis.spring.SqlSessionFactoryBean;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.core.io.ClassPathResource;
+import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
+import javax.sql.DataSource;
+import java.io.IOException;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-04-25 9:35
+ * @description: 数据库配置,数据源sqlSession配置
+ */
+@Configuration
+public class SessionFactoryConfiguration {
+ //mapper映射路径
+ @Value("${mapper_path}")
+ private String mapperPath;
+ //mybatis配置文件
+ @Value("${mybatis_config_file}")
+ private String mybatisConfigFilePath;
+ //数据源
+ @Autowired
+ private DataSource dataSouce;
+ //bean所在的包
+ @Value("${entity_package}")
+ private String entityPackage;
+ /**
+ * @date 2021-04-29 10:35
+ * @description: 创建SqlSessionFactoryBean
+ * @Param: null
+ */
+ @Bean(name="sqlSessionFactory")
+ public SqlSessionFactoryBean createSqlSessionFactoryBean() throws IOException {
+ SqlSessionFactoryBean sqlSessionFactoryBean = new SqlSessionFactoryBean();
+ sqlSessionFactoryBean.setConfigLocation(new ClassPathResource(mybatisConfigFilePath));
+ PathMatchingResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();
+ String packageSearchPath = PathMatchingResourcePatternResolver.CLASSPATH_ALL_URL_PREFIX+mapperPath;
+ sqlSessionFactoryBean.setMapperLocations(resolver.getResources(packageSearchPath));
+ sqlSessionFactoryBean.setDataSource(dataSouce);
+ sqlSessionFactoryBean.setTypeAliasesPackage(entityPackage);
+ return sqlSessionFactoryBean;
+ }
+}
\ No newline at end of file
diff --git a/20250705/weather/src/main/java/com/rehome/weather/config/service/TransactionManagementConfiguration.java b/20250705/weather/src/main/java/com/rehome/weather/config/service/TransactionManagementConfiguration.java
new file mode 100644
index 0000000..1236388
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/config/service/TransactionManagementConfiguration.java
@@ -0,0 +1,34 @@
+package com.rehome.weather.config.service;
+
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.jdbc.datasource.DataSourceTransactionManager;
+import org.springframework.transaction.PlatformTransactionManager;
+import org.springframework.transaction.annotation.EnableTransactionManagement;
+import org.springframework.transaction.annotation.TransactionManagementConfigurer;
+
+import javax.sql.DataSource;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-04-25 9:35
+ * @description: 事务配置类,不可缺少
+ */
+@Configuration
+@EnableTransactionManagement
+public class TransactionManagementConfiguration implements TransactionManagementConfigurer{
+ //数据源
+ @Autowired
+ private DataSource dataSource;
+ /**
+ * @date 2021-04-25 10:45
+ * @description: 数据库配置,把数据源加入事务管理
+ * @Param: null
+ */
+ @Override
+ public PlatformTransactionManager annotationDrivenTransactionManager() {
+ return new DataSourceTransactionManager(dataSource);
+ }
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/controller/StormController.java b/20250705/weather/src/main/java/com/rehome/weather/controller/StormController.java
new file mode 100644
index 0000000..7b58172
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/controller/StormController.java
@@ -0,0 +1,63 @@
+package com.rehome.weather.controller;
+
+import com.rehome.weather.config.dao.JuheWeatherProperties;
+import com.rehome.weather.service.StormService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.context.properties.EnableConfigurationProperties;
+import org.springframework.web.bind.annotation.*;
+
+import java.text.SimpleDateFormat;
+import java.util.Date;
+import java.util.Map;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-05-08 13:48
+ * @description: 台风接口控制器
+ */
+
+@RestController
+@RequestMapping("/storm/service")
+@EnableConfigurationProperties(JuheWeatherProperties.class)
+public class StormController {
+ //台风服务
+ @Autowired
+ private StormService stormService ;
+
+ /**
+ * 功能描述 从本地数据库查台风列表,然后返回给前端
+ * @author huangwenfei
+ * Created DateTime 2021-05-08 14:03
+ */
+ @CrossOrigin
+ @RequestMapping(value = "/getLocalStormList",method = RequestMethod.GET)
+ public Map getLocalStormList(@RequestParam(value = "year", required = false) String year){
+ String currentYear = new SimpleDateFormat("yyyy").format(new Date());
+ String paramYear = year==null?currentYear:year;
+ return stormService.getLocalStormList(paramYear);
+ }
+ /**
+ * 功能描述 从本地数据库查台风预报,然后返回给前端
+ * @author huangwenfei
+ * Created DateTime 2021-05-10 14:15
+ */
+ @CrossOrigin
+ @ResponseBody
+ @RequestMapping(value = "/getLocalStormForecastByStormId",method = RequestMethod.GET, produces = "application/json;charset=UTF-8")
+ public String getLocalStormForecastByStormId(@RequestParam("stormid") String stormid) {
+ return stormService.getLocalStormForecastByStormId(stormid);
+ }
+
+ /**
+ * 功能描述 从本地数据库查台风实况和路径,然后返回给前端
+ * @author huangwenfei
+ * Created DateTime 2021-05-10 14:17
+ */
+ @CrossOrigin
+ @ResponseBody
+ @RequestMapping(value = "/getLocalStormTrackByStormId",method = RequestMethod.GET, produces = "application/json;charset=UTF-8")
+ public String getLocalStormTrackByStormId(@RequestParam("stormid") String stormid) {
+ return stormService.getLocalStormTrackByStormId(stormid);
+ }
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/controller/WeatherController.java b/20250705/weather/src/main/java/com/rehome/weather/controller/WeatherController.java
new file mode 100644
index 0000000..238e0ac
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/controller/WeatherController.java
@@ -0,0 +1,78 @@
+package com.rehome.weather.controller;
+
+import com.rehome.weather.config.dao.JuheWeatherProperties;
+import com.rehome.weather.entity.CityEntity;
+import com.rehome.weather.service.WeatherService;
+import com.rehome.weather.service.WeatherTypeService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.context.properties.EnableConfigurationProperties;
+import org.springframework.web.bind.annotation.*;
+import java.util.Map;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-04-25 14:35
+ * @description: 天气接口控制器
+ */
+@RestController
+@RequestMapping("/weather/service")
+@EnableConfigurationProperties(JuheWeatherProperties.class)
+public class WeatherController {
+ //天气服务
+ @Autowired
+ private WeatherService weatherService ;
+ //天气种类服务
+ @Autowired
+ private WeatherTypeService weatherTypeService ;
+ //聚合数据 配置文件相关参数
+ @Autowired
+ JuheWeatherProperties juheWeatherProperties;
+
+
+ /**
+ * @date 2021-04-29 11:42
+ * @description: 根据id获取支持天气查询的城市
+ * @Param: id 城市id
+ */
+ @RequestMapping(value = "/getCityById/{id}",method = RequestMethod.GET)
+ public CityEntity getCityById(@PathVariable Integer id){
+ return weatherService.getById(id);
+ }
+ /**
+ * @date 2021-04-29 11:45
+ * @description: 直接向聚合数据查询天气 不对外开放
+ * @Param: null
+ */
+ //@RequestMapping(value = "/getJuheWeather",method = RequestMethod.GET)
+ public String getJuheWeather(){
+ return weatherService.getJuheWeather();
+ }
+ /**
+ * @date 2021-04-29 11:45
+ * @description: 获取支持天气查询的城市列表 不对外开放
+ * @Param: null
+ */
+ //@RequestMapping(value = "/getWeatherCitySupporList",method = RequestMethod.GET)
+ public String getWeatherCitySupporList(){
+ return weatherService.getWeatherCitySupporList();
+ }
+ /**
+ * @date 2021-04-29 11:45
+ * @description: 获取天气种类列表 不对外开放
+ * @Param: null
+ */
+ //@RequestMapping(value = "/getWeatherTypesList",method = RequestMethod.GET)
+ public String getWeatherTypesList(){
+ return weatherTypeService.getWeatherTypeList();
+ }
+ /**
+ * @date 2021-04-29 11:45
+ * @description: 根据城市查询天气数据,查本地数据库
+ * @Param: null
+ */
+ @RequestMapping(value = "/getLocalWeatherByCity",method = RequestMethod.GET)
+ public Map getLocalWeatherByCity(@RequestParam("city") String city){
+ return weatherService.getLocalWeatherByCity(city);
+ }
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/dao/StormDao.java b/20250705/weather/src/main/java/com/rehome/weather/dao/StormDao.java
new file mode 100644
index 0000000..040ba9e
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/dao/StormDao.java
@@ -0,0 +1,32 @@
+package com.rehome.weather.dao;
+
+import com.rehome.weather.entity.StormEntity;
+import com.rehome.weather.entity.StormForecast;
+import com.rehome.weather.entity.StormTrack;
+import org.apache.ibatis.annotations.Mapper;
+import java.util.List;
+
+/**
+ * 功能描述 台风Dao层
+ * @author huangwenfei
+ * Created DateTime 2021-05-08 14:08
+ */
+@Mapper
+public interface StormDao {
+ //插入台风数据
+ int insertStorm(StormEntity stormEntity);
+ //更新台风数据
+ int updateStorm(StormEntity stormEntity);
+ //根据id查台风数据
+ StormEntity getStormById(String id);
+ //查本地库台风列表数据
+ List getLocalStorms(String year);
+ //插入台风预报数据
+ int insertStormForecast(StormForecast stormForecast);
+ //根据stormid查台风预报数据
+ StormForecast getStormForecastById(String stormid);
+ //插入台风实况和路径数据
+ int insertStormTrack(StormTrack stormTrack);
+ //根据stormid查台风实况和路径数据
+ StormTrack getStormTrackById(String stormid);
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/dao/WeatherDao.java b/20250705/weather/src/main/java/com/rehome/weather/dao/WeatherDao.java
new file mode 100644
index 0000000..d05f5ca
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/dao/WeatherDao.java
@@ -0,0 +1,34 @@
+package com.rehome.weather.dao;
+
+import com.rehome.weather.entity.CityEntity;
+import com.rehome.weather.entity.WeatherFuture;
+import com.rehome.weather.entity.WeatherRealtime;
+import org.apache.ibatis.annotations.Mapper;
+
+import java.util.List;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-04-25 14:35
+ * @description: 天气Dao层
+ */
+@Mapper
+public interface WeatherDao {
+ //根据id查城市
+ CityEntity getById(Integer id);
+ //插入支持天气查询的城市列表数据
+ int insertCitys(List list);
+ //插入实时天气数据
+ int insertRealtimeWeather(WeatherRealtime weatherRealtime);
+ //插入预报天气数据
+ int insertFutrueWeather(WeatherFuture weatherFuture);
+ //更新预报天气数据
+ int updateFutrueWeather(WeatherFuture weatherFuture);
+ //根据日期查预报天气数据
+ WeatherFuture getFutrueByDate(String date);
+ //查本地库实时天气数据
+ WeatherRealtime getLocalWeatherRealtime(String city);
+ //查本地库未来五天预报天气数据
+ List getLocalWeatherFuture(String city);
+}
\ No newline at end of file
diff --git a/20250705/weather/src/main/java/com/rehome/weather/dao/WeatherTypeDao.java b/20250705/weather/src/main/java/com/rehome/weather/dao/WeatherTypeDao.java
new file mode 100644
index 0000000..c472fa0
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/dao/WeatherTypeDao.java
@@ -0,0 +1,19 @@
+package com.rehome.weather.dao;
+
+import com.rehome.weather.entity.WeatherType;
+import org.apache.ibatis.annotations.Mapper;
+import java.util.List;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-04-25 14:35
+ * @description: 天气种类Dao层
+ */
+@Mapper
+public interface WeatherTypeDao {
+ //根据天气种类标识查天气种类数据
+ WeatherType getByWid(String wid);
+ //插入天气种类列表数据
+ int insertWeatherTypes(List list);
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/dto/BaseDto.java b/20250705/weather/src/main/java/com/rehome/weather/dto/BaseDto.java
new file mode 100644
index 0000000..91d3558
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/dto/BaseDto.java
@@ -0,0 +1,21 @@
+package com.rehome.weather.dto;
+
+import lombok.Getter;
+import lombok.Setter;
+
+import java.io.Serializable;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-04-29 14:40
+ * @description: dto基类
+ */
+@Setter
+@Getter
+public class BaseDto implements Serializable {
+ //响应码,请求成功返回0 请求失败返回1
+ protected Integer error_code ;
+ //接口请求状态描述
+ protected String reason ;
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/dto/BaseStormDto.java b/20250705/weather/src/main/java/com/rehome/weather/dto/BaseStormDto.java
new file mode 100644
index 0000000..1f8033a
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/dto/BaseStormDto.java
@@ -0,0 +1,23 @@
+package com.rehome.weather.dto;
+
+import lombok.Getter;
+import lombok.Setter;
+
+import java.io.Serializable;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-05-08 11:40
+ * @description: 台风相关接口基础Dto
+ */
+@Setter
+@Getter
+public class BaseStormDto implements Serializable {
+ //响应码,请求成功返回0 请求失败返回1
+ protected String code ;
+ //台风数据发布时间
+ protected String updateTime ;
+ //台风数据发布时间当前数据的响应式页面,便于嵌入网站或应用
+ protected String fxLink ;
+}
\ No newline at end of file
diff --git a/20250705/weather/src/main/java/com/rehome/weather/dto/StormDto.java b/20250705/weather/src/main/java/com/rehome/weather/dto/StormDto.java
new file mode 100644
index 0000000..625c49a
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/dto/StormDto.java
@@ -0,0 +1,20 @@
+package com.rehome.weather.dto;
+
+import com.rehome.weather.entity.StormEntity;
+import lombok.Getter;
+import lombok.Setter;
+import java.io.Serializable;
+import java.util.List;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-05-08 11:49
+ * @description: 获取台风列表接口Dto
+ */
+@Setter
+@Getter
+public class StormDto extends BaseStormDto implements Serializable {
+ //台风列表
+ private List storm;
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/dto/WeatherCityListDto.java b/20250705/weather/src/main/java/com/rehome/weather/dto/WeatherCityListDto.java
new file mode 100644
index 0000000..74dfd94
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/dto/WeatherCityListDto.java
@@ -0,0 +1,21 @@
+package com.rehome.weather.dto;
+
+import com.rehome.weather.entity.CityEntity;
+import lombok.Getter;
+import lombok.Setter;
+
+import java.io.Serializable;
+import java.util.List;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-04-29 14:42
+ * @description:
+ */
+@Setter
+@Getter
+public class WeatherCityListDto extends BaseDto implements Serializable {
+ //支持天气查询的城市列表
+ private List result;
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/dto/WeatherQueryDto.java b/20250705/weather/src/main/java/com/rehome/weather/dto/WeatherQueryDto.java
new file mode 100644
index 0000000..1d530f8
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/dto/WeatherQueryDto.java
@@ -0,0 +1,19 @@
+package com.rehome.weather.dto;
+
+import lombok.Getter;
+import lombok.Setter;
+
+import java.io.Serializable;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-04-29 14:47
+ * @description: 天气查询接口Dto
+ */
+@Setter
+@Getter
+public class WeatherQueryDto extends BaseDto implements Serializable {
+ //天气查询结果,包含实时天气和天气预报
+ private WeatherQueryResultDto result;
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/dto/WeatherQueryResultDto.java b/20250705/weather/src/main/java/com/rehome/weather/dto/WeatherQueryResultDto.java
new file mode 100644
index 0000000..38d9b5e
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/dto/WeatherQueryResultDto.java
@@ -0,0 +1,26 @@
+package com.rehome.weather.dto;
+
+import com.rehome.weather.entity.WeatherFuture;
+import com.rehome.weather.entity.WeatherRealtime;
+import lombok.Getter;
+import lombok.Setter;
+
+import java.io.Serializable;
+import java.util.List;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-04-29 14:52
+ * @description: 天气查询结果,包含实时天气和天气预报
+ */
+@Setter
+@Getter
+public class WeatherQueryResultDto implements Serializable {
+ //城市
+ private String city ;
+ //实时天气
+ private WeatherRealtime realtime;
+ //天气预报
+ private List future;
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/dto/WeatherTypeListDto.java b/20250705/weather/src/main/java/com/rehome/weather/dto/WeatherTypeListDto.java
new file mode 100644
index 0000000..d0ddd02
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/dto/WeatherTypeListDto.java
@@ -0,0 +1,21 @@
+package com.rehome.weather.dto;
+
+import com.rehome.weather.entity.WeatherType;
+import lombok.Getter;
+import lombok.Setter;
+
+import java.io.Serializable;
+import java.util.List;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-04-29 14:36
+ * @description: 天气种类列表接口Dto
+ */
+@Setter
+@Getter
+public class WeatherTypeListDto extends BaseDto implements Serializable {
+ //天气种类列表
+ private List result;
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/entity/CityEntity.java b/20250705/weather/src/main/java/com/rehome/weather/entity/CityEntity.java
new file mode 100644
index 0000000..317cae7
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/entity/CityEntity.java
@@ -0,0 +1,22 @@
+package com.rehome.weather.entity;
+
+import lombok.Getter;
+import lombok.Setter;
+
+import java.io.Serializable;
+
+/**
+ * 支持天气查询的城市
+ */
+@Setter
+@Getter
+public class CityEntity implements Serializable {
+ //id
+ private Integer id ;
+ //省份
+ private String province ;
+ //城市
+ private String city ;
+ //区
+ private String district ;
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/entity/StormEntity.java b/20250705/weather/src/main/java/com/rehome/weather/entity/StormEntity.java
new file mode 100644
index 0000000..fb33ca3
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/entity/StormEntity.java
@@ -0,0 +1,34 @@
+package com.rehome.weather.entity;
+
+import lombok.Getter;
+import lombok.Setter;
+
+import java.io.Serializable;
+import java.sql.Timestamp;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-05-08 11:53
+ * @description: 台风列表
+ */
+@Setter
+@Getter
+public class StormEntity implements Serializable {
+ //id
+ private String id ;
+ //台风名称
+ private String name ;
+ //台风所处流域
+ private String basin ;
+ //台风所处年份
+ private String year ;
+ //台风接入平台
+ private String platform;
+ //平台描述
+ private String platformdesc;
+ //是否为活跃台风 1:活跃台风 0:台风已停止
+ private String isActive ;
+ //最后更新时间
+ private Timestamp updatetime;
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/entity/StormForecast.java b/20250705/weather/src/main/java/com/rehome/weather/entity/StormForecast.java
new file mode 100644
index 0000000..c8b5af3
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/entity/StormForecast.java
@@ -0,0 +1,26 @@
+package com.rehome.weather.entity;
+
+import lombok.Getter;
+import lombok.Setter;
+
+import java.io.Serializable;
+import java.sql.Timestamp;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-05-10 11:04
+ * @description: 台风预报
+ */
+@Setter
+@Getter
+public class StormForecast implements Serializable {
+ //id
+ private Integer id ;
+ //台风id
+ private String stormid ;
+ //台风预报源数据
+ private String forecast ;
+ //最后更新时间
+ private Timestamp updatetime;
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/entity/StormTrack.java b/20250705/weather/src/main/java/com/rehome/weather/entity/StormTrack.java
new file mode 100644
index 0000000..49d4f7f
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/entity/StormTrack.java
@@ -0,0 +1,26 @@
+package com.rehome.weather.entity;
+
+import lombok.Getter;
+import lombok.Setter;
+
+import java.io.Serializable;
+import java.sql.Timestamp;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-05-10 11:04
+ * @description: 台风路径
+ */
+@Setter
+@Getter
+public class StormTrack implements Serializable {
+ //id
+ private Integer id ;
+ //台风id
+ private String stormid ;
+ //台风实况和路径源数据
+ private String track ;
+ //最后更新时间
+ private Timestamp updatetime;
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/entity/WeatherFuture.java b/20250705/weather/src/main/java/com/rehome/weather/entity/WeatherFuture.java
new file mode 100644
index 0000000..1f7e245
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/entity/WeatherFuture.java
@@ -0,0 +1,37 @@
+package com.rehome.weather.entity;
+import lombok.Getter;
+import lombok.Setter;
+import java.io.Serializable;
+import java.sql.Timestamp;
+
+/**
+ * 天气预报
+ */
+@Setter
+@Getter
+public class WeatherFuture implements Serializable{
+ //id
+ private Integer id ;
+ //预报日期
+ private String date ;
+ //温度
+ private String temperature ;
+ //天气情况
+ private String weather ;
+ //白天天气标识id
+ private String widday ;
+ //晚上天气标识id
+ private String widnight ;
+ //白天天气情况
+ private String widdayDesc ;
+ //晚上天气情况
+ private String widnightDesc ;
+ //风向
+ private String direct ;
+ //城市
+ private String city ;
+ //预报天气标识,从聚合数据平台拿到,然后提取出来,不会入库
+ private WidEntity wid;
+ //最后更新时间
+ private Timestamp updatetime;
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/entity/WeatherRealtime.java b/20250705/weather/src/main/java/com/rehome/weather/entity/WeatherRealtime.java
new file mode 100644
index 0000000..6775aa2
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/entity/WeatherRealtime.java
@@ -0,0 +1,34 @@
+package com.rehome.weather.entity;
+import lombok.Getter;
+import lombok.Setter;
+import java.io.Serializable;
+
+/**
+ * 实时天气
+ */
+@Setter
+@Getter
+public class WeatherRealtime implements Serializable{
+ //id
+ private Integer id ;
+ //温度,可能为空
+ private String temperature ;
+ //湿度,可能为空
+ private String humidity ;
+ //天气情况
+ private String info ;
+ //天气标识id
+ private String wid ;
+ //风向,可能为空
+ private String direct ;
+ //风力,可能为空
+ private String power ;
+ //空气质量指数,可能为空
+ private String aqi ;
+ //城市
+ private String city ;
+ //日期
+ private String date ;
+ //创建时间
+ private String createtime ;
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/entity/WeatherType.java b/20250705/weather/src/main/java/com/rehome/weather/entity/WeatherType.java
new file mode 100644
index 0000000..0eda7ca
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/entity/WeatherType.java
@@ -0,0 +1,19 @@
+package com.rehome.weather.entity;
+
+import lombok.Getter;
+import lombok.Setter;
+import java.io.Serializable;
+
+/**
+ * 天气种类
+ */
+@Setter
+@Getter
+public class WeatherType implements Serializable{
+ //id
+ private Integer id ;
+ //天气标识id
+ private String wid ;
+ //天气种类说明
+ private String weather ;
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/entity/WidEntity.java b/20250705/weather/src/main/java/com/rehome/weather/entity/WidEntity.java
new file mode 100644
index 0000000..22cbc22
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/entity/WidEntity.java
@@ -0,0 +1,16 @@
+package com.rehome.weather.entity;
+import lombok.Getter;
+import lombok.Setter;
+import java.io.Serializable;
+
+/**
+ * 天气预报标识
+ */
+@Setter
+@Getter
+public class WidEntity implements Serializable{
+ //白天天气标识id
+ private String day ;
+ //晚上天气标识id
+ private String night ;
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/service/ScheduledService.java b/20250705/weather/src/main/java/com/rehome/weather/service/ScheduledService.java
new file mode 100644
index 0000000..cb9b2a1
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/service/ScheduledService.java
@@ -0,0 +1,64 @@
+package com.rehome.weather.service;
+
+
+import com.alibaba.fastjson.JSON;
+import com.rehome.weather.config.dao.JuheWeatherProperties;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.context.properties.EnableConfigurationProperties;
+import org.springframework.scheduling.annotation.Scheduled;
+import org.springframework.stereotype.Component;
+import lombok.extern.slf4j.Slf4j;
+import java.text.SimpleDateFormat;
+import java.util.Date;
+import java.util.Map;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-04-26 14:35
+ * @description: 定时任务服务
+ */
+@Slf4j
+@Component
+@EnableConfigurationProperties(JuheWeatherProperties.class)
+public class ScheduledService {
+ //天气服务层
+ @Autowired
+ private WeatherService weatherService ;
+ //台风服务层
+ @Autowired
+ private StormService stormService ;
+ //聚合数据 配置文件相关参数
+ @Autowired
+ JuheWeatherProperties juheWeatherProperties;
+
+ /**
+ * @date 2021-04-29 14:07
+ * @description: 定时任务,每30分钟执行一次,从聚合数据平台查询天气数据并入库
+ * @Param: null
+ */
+ @Scheduled(cron = "0 0 */1 * * *")//每个小时执行一次
+ public void scheduled(){
+ log.info("scheduled");
+ log.info("=====>>>>>使用cron:"+String.valueOf(System.currentTimeMillis()));
+ String city = juheWeatherProperties.getCity();
+ Map map = weatherService.getJuheWeatherByScheduled(city);
+ String jsonString = JSON.toJSONString(map);
+ log.info(jsonString);
+ }
+
+ /**
+ * 功能描述 定时任务,每小时执行一次,从和风天气开发平台查询台风列表数据并入库
+ * @author huangwenfei
+ * Created DateTime 2021-05-08 14:50
+ */
+ @Scheduled(cron = "0 0 */3 * * *")//每3个小时执行一次
+ public void scheduledGetStormList(){
+ log.info("scheduledGetStormList");
+ log.info("=====>>>>>使用cron:"+String.valueOf(System.currentTimeMillis()));
+ String year = new SimpleDateFormat("yyyy").format(new Date());
+ Map map = stormService.getStormListByScheduled(year);
+ String jsonString = JSON.toJSONString(map);
+ log.info(jsonString);
+ }
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/service/StormService.java b/20250705/weather/src/main/java/com/rehome/weather/service/StormService.java
new file mode 100644
index 0000000..8d2257e
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/service/StormService.java
@@ -0,0 +1,24 @@
+package com.rehome.weather.service;
+
+import java.util.Map;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-04-26 14:35
+ * @description: 台风服务接口
+ */
+public interface StormService {
+ //从和风天气开发平台获取台风列表数据并入库
+ public Map getStormListByScheduled(String year);
+ //从和风天气开发平台获取台风预报并入库
+ public String getStormForecastByScheduled(String stormid);
+ //从和风天气开发平台获取台风实况和路径并入库
+ public String getStormTrackByScheduled(String stormid);
+ //从本地数据库查台风列表
+ public Map getLocalStormList(String year);
+ //从本地数据库查台风预报
+ public String getLocalStormForecastByStormId(String stormid);
+ //从本地数据库查台风实况和路径
+ public String getLocalStormTrackByStormId(String stormid);
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/service/WeatherService.java b/20250705/weather/src/main/java/com/rehome/weather/service/WeatherService.java
new file mode 100644
index 0000000..61eeecb
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/service/WeatherService.java
@@ -0,0 +1,30 @@
+package com.rehome.weather.service;
+
+import com.rehome.weather.entity.CityEntity;
+import java.util.Map;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-04-26 14:35
+ * @description: 天气服务接口
+ */
+public interface WeatherService {
+ //根据城市id查询城市数据
+ public CityEntity getById(Integer id);
+ //直接向聚合数据查询天气数据
+ public String getJuheWeather();
+ //获取支持天气查询的城市列表数据,同时入库
+ public String getWeatherCitySupporList();
+ //根据城市查询天气数据,然后把获取到的实时天气和预报天气入库
+ public Map getJuheWeatherByScheduled(String cityInput);
+ //从本地数据库查实时天气和预报天气数据,然后返回给前端
+ public Map getLocalWeatherByCity(String city);
+}
+
+/**
+ * 从mysql数据库中查询最新的一条数据的方法
+ * SELECT * from a where id = (SELECT max(id) FROM a);
+ * select * FROM 表名 ORDER BY id DESC LIMIT 0,1 ;
+ * SELECT * from a where id = (SELECT max(id) FROM a) and city = 珠海;
+ */
\ No newline at end of file
diff --git a/20250705/weather/src/main/java/com/rehome/weather/service/WeatherTypeService.java b/20250705/weather/src/main/java/com/rehome/weather/service/WeatherTypeService.java
new file mode 100644
index 0000000..da3b9b4
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/service/WeatherTypeService.java
@@ -0,0 +1,16 @@
+package com.rehome.weather.service;
+
+import com.rehome.weather.entity.WeatherType;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-04-26 14:35
+ * @description: 天气种类服务接口
+ */
+public interface WeatherTypeService {
+ //根据天气标识ID查天气种类数据
+ public WeatherType getByWId(String wid);
+ //获取天气种类列表,然后入库
+ public String getWeatherTypeList();
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/service/impl/StormServiceImpl.java b/20250705/weather/src/main/java/com/rehome/weather/service/impl/StormServiceImpl.java
new file mode 100644
index 0000000..5a6097a
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/service/impl/StormServiceImpl.java
@@ -0,0 +1,220 @@
+package com.rehome.weather.service.impl;
+
+import com.alibaba.fastjson.JSON;
+import com.rehome.weather.config.dao.JuheWeatherProperties;
+import com.rehome.weather.dao.StormDao;
+import com.rehome.weather.dto.BaseStormDto;
+import com.rehome.weather.dto.StormDto;
+import com.rehome.weather.entity.*;
+import com.rehome.weather.service.StormService;
+import com.rehome.weather.utils.WeatherUtil;
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.context.properties.EnableConfigurationProperties;
+import org.springframework.cache.annotation.CacheConfig;
+import org.springframework.cache.annotation.CacheEvict;
+import org.springframework.cache.annotation.Cacheable;
+import org.springframework.stereotype.Service;
+import java.sql.Timestamp;
+import java.text.SimpleDateFormat;
+import java.util.*;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-05-08 13:54
+ * @description: 台风服务接口实现类
+ */
+@Slf4j
+@Service
+@EnableConfigurationProperties(JuheWeatherProperties.class)
+public class StormServiceImpl implements StormService {
+ //台风dao
+ @Autowired
+ private StormDao stormDao ;
+ //聚合数据 配置文件相关参数
+ @Autowired
+ JuheWeatherProperties juheWeatherProperties;
+
+ /**
+ * 功能描述 从和风天气开发平台查询台风列表数据并入库
+ * @author huangwenfei
+ * Created DateTime 2021-05-08 17:29
+ */
+ @Override
+ public Map getStormListByScheduled(String year) {
+ String stormListUrl = juheWeatherProperties.getStormListUrl();
+ String heFengStormKey=juheWeatherProperties.getHeFengStormKey();
+ String url=stormListUrl+"?key="+heFengStormKey+"&basin=NP&year="+year;
+ String stormJson = WeatherUtil.analysisUrlGzip(url);
+ log.info(url);
+ log.info(stormJson);
+ StormDto stormDto = JSON.parseObject(stormJson, StormDto.class);
+ Map map = new HashMap();
+ if(stormDto!=null&&stormDto.getCode().equals("200")){
+ List storm=stormDto.getStorm();
+ if(storm.size()>0){
+ for (StormEntity stormEntity : storm) {
+ stormEntity.setPlatform("hefeng");
+ stormEntity.setPlatformdesc("和风天气开发平台");
+ StormEntity stormEntityDb=stormDao.getStormById(stormEntity.getId());
+ if(stormEntityDb==null){
+ //数据库不存在这条台风数据 插入这条台风数据,
+ //同时调用台风预报接口数据并入库,
+ //同时调用台风实况和路径接口数据并入库,
+ log.info("数据库不存在这条台风数据 插入这条台风数据,");
+ int resultId=stormDao.insertStorm(stormEntity);
+ log.info("插入台风数据成功,id:"+String.valueOf(resultId));
+ this.getStormForecastByScheduled(stormEntity.getId());
+ this.getStormTrackByScheduled(stormEntity.getId());
+
+ }else{
+ //数据库存在这条台风数据
+ if(stormEntity.getIsActive().equals("1")){
+ //台风处于活跃状态
+ //同时调用台风预报接口数据并入库,
+ //同时调用台风实况和路径接口数据并入库
+ log.info("台风处于活跃状态");
+ this.getStormForecastByScheduled(stormEntity.getId());
+ this.getStormTrackByScheduled(stormEntity.getId());
+ }
+ if(stormEntity.getIsActive().equals("0")){
+ //台风已停止状态
+ if(stormEntityDb.getIsActive().equals("1")){
+ //数据库里台风还处于活跃状态,更新台风状态
+ //同时调用台风预报接口数据并入库,
+ //同时调用台风实况和路径接口数据并入库
+ log.info("数据库里台风还处于活跃状态,更新台风状态");
+ //获得系统时间.
+ Date date = new Date();
+ //将时间格式转换成符合Timestamp要求的格式.
+ String nowTime = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(date);
+ //把时间转换
+ Timestamp updatetime =Timestamp.valueOf(nowTime);
+ stormEntity.setUpdatetime(updatetime);
+ int resultId=stormDao.updateStorm(stormEntity);
+ log.info("更新台风数据成功,id:"+String.valueOf(resultId));
+ this.getStormForecastByScheduled(stormEntity.getId());
+ this.getStormTrackByScheduled(stormEntity.getId());
+ }
+ }
+ }
+ }
+ }
+ map.put("reason","从和风天气开发平台查询台风列表数据成功!");
+ map.put("code","200");
+ map.put("storm",storm);
+ }else{
+ if(stormDto!=null){
+ map.put("code",stormDto.getCode());
+ }else{
+ map.put("code","10000");
+ map.put("reason","从和风天气开发平台获取台风列表数据失败!");
+ }
+ }
+ return map;
+ }
+
+ /**
+ * 功能描述 从和风天气开发平台获取台风预报并入库
+ * @author huangwenfei
+ * Created DateTime 2021-05-10 16:02
+ */
+ @Override
+ public String getStormForecastByScheduled(String stormid) {
+ String stormForecastUrl = juheWeatherProperties.getStormForecastUrl();
+ String heFengStormKey=juheWeatherProperties.getHeFengStormKey();
+ String url=stormForecastUrl+"?key="+heFengStormKey+"&stormid="+stormid;
+ String stormJson = WeatherUtil.analysisUrlGzip(url);
+ log.info(url);
+ log.info(stormJson);
+ BaseStormDto baseStormDto = JSON.parseObject(stormJson, BaseStormDto.class);
+ if(baseStormDto.getCode().equals("200")){
+ StormForecast stormForecast = new StormForecast();
+ stormForecast.setStormid(stormid);
+ stormForecast.setForecast(stormJson);
+ int resultId=stormDao.insertStormForecast(stormForecast);
+ log.info("插入台风预报数据成功,id:"+String.valueOf(resultId));
+ }
+ return stormJson;
+ }
+
+ /**
+ * 功能描述 从和风天气开发平台获取台风实况和路径并入库
+ * @author huangwenfei
+ * Created DateTime 2021-05-10 16:03
+ */
+ @Override
+ public String getStormTrackByScheduled(String stormid) {
+ String stormTrackUrl = juheWeatherProperties.getStormTrackUrl();
+ String heFengStormKey=juheWeatherProperties.getHeFengStormKey();
+ String url=stormTrackUrl+"?key="+heFengStormKey+"&stormid="+stormid;
+ String stormJson = WeatherUtil.analysisUrlGzip(url);
+ log.info(url);
+ log.info(stormJson);
+ BaseStormDto baseStormDto = JSON.parseObject(stormJson, BaseStormDto.class);
+ if(baseStormDto.getCode().equals("200")){
+ StormTrack stormTrack = new StormTrack();
+ stormTrack.setStormid(stormid);
+ stormTrack.setTrack(stormJson);
+ int resultId=stormDao.insertStormTrack(stormTrack);
+ log.info("插入台风实况和路径数据成功,id:"+String.valueOf(resultId));
+ }
+ return stormJson;
+ }
+
+ /**
+ * 功能描述 从本地数据库查台风列表
+ * @author huangwenfei
+ * Created DateTime 2021-05-10 14:18
+ */
+ @Override
+ public Map getLocalStormList(String year) {
+ Map map = new HashMap();
+ List storm=stormDao.getLocalStorms(year);
+ List stormEmpty=new ArrayList();
+ if(storm==null){
+ map.put("storm",stormEmpty);
+ }else{
+ map.put("storm",storm);
+ }
+ map.put("code","200");
+ return map;
+ }
+
+ /**
+ * 功能描述 从本地数据库查台风预报
+ * @author huangwenfei
+ * Created DateTime 2021-05-10 14:17
+ */
+ @Override
+ public String getLocalStormForecastByStormId(String stormid) {
+ StormForecast stormForecast = stormDao.getStormForecastById(stormid);
+ if(stormForecast!=null){
+ return stormForecast.getForecast();
+ }
+ Map map = new HashMap();
+ map.put("code","10000");
+ map.put("reason","查询不到数据");
+ String jsonString = JSON.toJSONString(map);
+ return jsonString;
+ }
+
+ /**
+ * 功能描述 从本地数据库查台风实况和路径
+ * @author huangwenfei
+ * Created DateTime 2021-05-10 14:18
+ */
+ @Override
+ public String getLocalStormTrackByStormId(String stormid) {
+ StormTrack stormTrack = stormDao.getStormTrackById(stormid);
+ if (stormTrack!=null){
+ return stormTrack.getTrack();
+ }
+ Map map = new HashMap();
+ map.put("code","10000");
+ map.put("reason","查询不到数据");
+ String jsonString = JSON.toJSONString(map);
+ return jsonString;
+ }
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/service/impl/WeatherServiceImpl.java b/20250705/weather/src/main/java/com/rehome/weather/service/impl/WeatherServiceImpl.java
new file mode 100644
index 0000000..de8d90e
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/service/impl/WeatherServiceImpl.java
@@ -0,0 +1,208 @@
+package com.rehome.weather.service.impl;
+
+import com.alibaba.fastjson.JSON;
+import com.rehome.weather.config.dao.JuheWeatherProperties;
+import com.rehome.weather.dao.WeatherDao;
+import com.rehome.weather.dao.WeatherTypeDao;
+import com.rehome.weather.dto.WeatherCityListDto;
+import com.rehome.weather.dto.WeatherQueryDto;
+import com.rehome.weather.dto.WeatherQueryResultDto;
+import com.rehome.weather.entity.*;
+import com.rehome.weather.service.WeatherService;
+import com.rehome.weather.utils.WeatherUtil;
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.context.properties.EnableConfigurationProperties;
+import org.springframework.cache.annotation.CacheConfig;
+import org.springframework.cache.annotation.CacheEvict;
+import org.springframework.cache.annotation.Cacheable;
+import org.springframework.stereotype.Service;
+
+import java.sql.Timestamp;
+import java.text.SimpleDateFormat;
+import java.util.*;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-04-26 14:35
+ * @description: 天气服务接口实现类
+ */
+@Slf4j
+@Service
+@EnableConfigurationProperties(JuheWeatherProperties.class)
+public class WeatherServiceImpl implements WeatherService {
+ //天气dao
+ @Autowired
+ private WeatherDao weatherDao ;
+ //聚合数据 配置文件相关参数
+ @Autowired
+ JuheWeatherProperties juheWeatherProperties;
+ //天气种类dao
+ @Autowired
+ private WeatherTypeDao weatherTypeDao;
+
+ /**
+ * @date 2021-04-29 13:47
+ * @description: 根据城市id查询城市数据
+ * @Param: id 城市id
+ */
+ @Override
+ public CityEntity getById(Integer id) {
+ return weatherDao.getById(id);
+ }
+
+ /**
+ * @date 2021-04-29 13:48
+ * @description: 直接向聚合数据查询天气数据
+ * @Param: null
+ */
+ @Override
+ public String getJuheWeather() {
+ String city = juheWeatherProperties.getCity();
+ String weatherQueryUrl = juheWeatherProperties.getWeatherQueryUrl();
+ String weatherKey=juheWeatherProperties.getWeatherKey();
+ String url=weatherQueryUrl+"?key="+weatherKey+"&city="+city;
+ System.out.println(url);
+ String weather = WeatherUtil.analysisUrl(url);
+ return weather;
+ }
+
+ /**
+ * @date 2021-04-29 13:50
+ * @description: 获取支持天气查询的城市列表数据,同时入库
+ * @Param: null
+ */
+ @Override
+ public String getWeatherCitySupporList() {
+ String cityListUrl = juheWeatherProperties.getCityListUrl();
+ String weatherKey=juheWeatherProperties.getWeatherKey();
+ String url=cityListUrl+"?key="+weatherKey;
+ System.out.println(url);
+ String cityListJson = WeatherUtil.analysisUrl(url);
+ WeatherCityListDto cityList = JSON.parseObject(cityListJson, WeatherCityListDto.class);
+ List weatherCitySupper=cityList.getResult();
+ Map map = new HashMap();
+
+ if(weatherCitySupper.size()>0){
+ CityEntity cityEntity=weatherCitySupper.get(0);
+ CityEntity cityEntityDB=weatherDao.getById(cityEntity.getId());
+ if(cityEntityDB!=null){
+ map.put("reason","查询成功!没有插入数据");
+ map.put("error_code",0);
+ map.put("result",weatherCitySupper);
+ }else{
+ weatherDao.insertCitys(weatherCitySupper);
+ map.put("reason","插入数据成功!");
+ map.put("error_code",0);
+ map.put("result",weatherCitySupper);
+ }
+ }
+ String jsonString = JSON.toJSONString(map);
+ return jsonString;
+ }
+
+ /**
+ * @date 2021-04-29 13:54
+ * @description: 根据城市查询天气数据,然后把获取到的实时天气和预报天气入库
+ * @Param: cityInput 要查询天气的城市
+ */
+ @Override
+ public Map getJuheWeatherByScheduled(String cityInput) {
+ String city = juheWeatherProperties.getCity();
+ String weatherQueryUrl = juheWeatherProperties.getWeatherQueryUrl();
+ String weatherKey=juheWeatherProperties.getWeatherKey();
+ String url=weatherQueryUrl+"?key="+weatherKey+"&city="+city;
+ String weatherJson = WeatherUtil.analysisUrl(url);
+ log.info(weatherJson);
+ WeatherQueryDto weatherQueryEntiry = JSON.parseObject(weatherJson, WeatherQueryDto.class);
+ Map map = new HashMap();
+ if(weatherQueryEntiry!=null&&weatherQueryEntiry.getError_code()==0){
+ WeatherQueryResultDto result=weatherQueryEntiry.getResult();
+ WeatherQueryResultDto resultToClient = new WeatherQueryResultDto();
+ resultToClient.setCity(result.getCity());
+ /*
+ 插入真时天汽数据
+ */
+ WeatherRealtime realtime=result.getRealtime();
+ realtime.setCity(result.getCity());
+ SimpleDateFormat formatYYYY = new SimpleDateFormat("YYYY-MM-dd");
+ realtime.setDate(formatYYYY.format(new Date()));
+ weatherDao.insertRealtimeWeather(realtime);
+ resultToClient.setRealtime(realtime);
+ /*
+ 插入未来天汽数据
+ */
+ List future=result.getFuture();
+ if(future.size()>0){
+ for (WeatherFuture weatherFuture : future) {
+ weatherFuture.setCity(result.getCity());
+ WeatherType weatherTypeDayDB=weatherTypeDao.getByWid(weatherFuture.getWid().getDay());
+ WeatherType weatherTypeNightDB=weatherTypeDao.getByWid(weatherFuture.getWid().getNight());
+ if(weatherTypeDayDB!=null){
+ weatherFuture.setWidday(weatherFuture.getWid().getDay());
+ weatherFuture.setWiddayDesc(weatherTypeDayDB.getWeather());
+ }
+ if(weatherTypeNightDB!=null){
+ weatherFuture.setWidnight(weatherFuture.getWid().getNight());
+ weatherFuture.setWidnightDesc(weatherTypeNightDB.getWeather());
+ }
+ //插入单条预报数据
+ WeatherFuture weatherFutureDB=weatherDao.getFutrueByDate(weatherFuture.getDate());
+ if(weatherFutureDB==null){
+ weatherDao.insertFutrueWeather(weatherFuture);
+ }else{
+ //获得系统时间.
+ Date date = new Date();
+ //将时间格式转换成符合Timestamp要求的格式.
+ String nowTime = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(date);
+ //把时间转换
+ Timestamp updatetime =Timestamp.valueOf(nowTime);
+ weatherFuture.setUpdatetime(updatetime);
+ weatherDao.updateFutrueWeather(weatherFuture);
+ }
+ }
+ resultToClient.setFuture(future);
+ map.put("reason","插入数据成功!");
+ map.put("error_code",0);
+ map.put("result",resultToClient);
+ }
+ }else{
+ map.put("reason","超过每日可允许请求次数");
+ map.put("error_code",10012);
+ }
+ return map;
+ }
+ /**
+ * @date 2021-04-29 13:58
+ * @description: 从本地数据库查实时天气和预报天气数据,然后返回给前端
+ * @Param: city 要查询天气的城市
+ */
+ @Override
+ public Map getLocalWeatherByCity(String city) {
+ String cityConfig = juheWeatherProperties.getCity();
+ Map map = new HashMap();
+ if(cityConfig.equals(city)){
+ WeatherQueryResultDto resultToClient = new WeatherQueryResultDto();
+ resultToClient.setCity(city);
+ WeatherRealtime weatherRealtime=weatherDao.getLocalWeatherRealtime(city);
+ if(weatherRealtime!=null){
+ resultToClient.setRealtime(weatherRealtime);
+ }
+ List future = weatherDao.getLocalWeatherFuture(city);
+ if(future!=null&&future.size()>0){
+ // 反转lists
+ Collections.reverse(future);
+ resultToClient.setFuture(future);
+ }
+ map.put("reason","查询数据成功!");
+ map.put("error_code",0);
+ map.put("result",resultToClient);
+ }else{
+ map.put("reason","查询数据失败!无当前查询的城市天气数据");
+ map.put("error_code",1);
+ }
+ log.info("从数据库存读取");
+ return map;
+ }
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/service/impl/WeatherTypeServiceImpl.java b/20250705/weather/src/main/java/com/rehome/weather/service/impl/WeatherTypeServiceImpl.java
new file mode 100644
index 0000000..f17aef2
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/service/impl/WeatherTypeServiceImpl.java
@@ -0,0 +1,76 @@
+package com.rehome.weather.service.impl;
+
+import com.alibaba.fastjson.JSON;
+import com.rehome.weather.config.dao.JuheWeatherProperties;
+import com.rehome.weather.dao.WeatherTypeDao;
+import com.rehome.weather.dto.WeatherTypeListDto;
+import com.rehome.weather.entity.WeatherType;
+import com.rehome.weather.service.WeatherTypeService;
+import com.rehome.weather.utils.WeatherUtil;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.context.properties.EnableConfigurationProperties;
+import org.springframework.stereotype.Service;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-04-26 14:35
+ * @description: 天气种类服务接口
+ */
+@Service
+@EnableConfigurationProperties(JuheWeatherProperties.class)
+public class WeatherTypeServiceImpl implements WeatherTypeService {
+ //天气种类dao
+ @Autowired
+ private WeatherTypeDao weatherTypeDao;
+ //聚合数据 配置文件相关参数
+ @Autowired
+ JuheWeatherProperties juheWeatherProperties;
+
+ /**
+ * @date 2021-04-29 14:14
+ * @description: 根据天气标识ID查天气种类数据
+ * @Param: wid 天气标识ID
+ */
+ @Override
+ public WeatherType getByWId(String wid) {
+ return weatherTypeDao.getByWid(wid);
+ }
+
+ /**
+ * @date 2021-04-29 14:17
+ * @description: 从聚合数据获取天气种类列表,然后入库
+ * @Param: null
+ */
+ @Override
+ public String getWeatherTypeList() {
+ String weatherTypeUrl = juheWeatherProperties.getWeatherTypeUrl();
+ String weatherKey=juheWeatherProperties.getWeatherKey();
+ String url=weatherTypeUrl+"?key="+weatherKey;
+ System.out.println(url);
+ String weatherTypeListJson = WeatherUtil.analysisUrl(url);
+ WeatherTypeListDto weatherTypeList = JSON.parseObject(weatherTypeListJson, WeatherTypeListDto.class);
+ List weatherTypes=weatherTypeList.getResult();
+ Map map = new HashMap();
+
+ if(weatherTypes.size()>0){
+ WeatherType weatherType=weatherTypes.get(0);
+ WeatherType weatherTypeDB=weatherTypeDao.getByWid(weatherType.getWid());
+ if(weatherTypeDB!=null){
+ map.put("reason","查询成功!没有插入数据");
+ map.put("error_code",0);
+ map.put("result",weatherTypes);
+ }else{
+ weatherTypeDao.insertWeatherTypes(weatherTypes);
+ map.put("reason","插入数据成功!");
+ map.put("error_code",0);
+ map.put("result",weatherTypes);
+ }
+ }
+ String jsonString = JSON.toJSONString(map);
+ return jsonString;
+ }
+}
diff --git a/20250705/weather/src/main/java/com/rehome/weather/utils/HttpURLConnectionUtil.java b/20250705/weather/src/main/java/com/rehome/weather/utils/HttpURLConnectionUtil.java
new file mode 100644
index 0000000..cb1c9f2
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/utils/HttpURLConnectionUtil.java
@@ -0,0 +1,91 @@
+package com.rehome.weather.utils;
+
+import java.io.BufferedReader;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.net.HttpURLConnection;
+import java.net.URL;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-04-27 9:35
+ * @description: http请求工具类
+ */
+public class HttpURLConnectionUtil {
+
+ /**
+ * @date 2021-04-29 11:23
+ * @description: get请求
+ * @Param: urlStr get请求的url
+ */
+ public static String getNetData(String urlStr) {
+ HttpURLConnection conn = null;
+
+ //连接成功后我们是要读取数据的 所以要有一个输入流
+ InputStream inputStream = null;
+
+ // 因为读取的都是文本信息 所以使用BufferedReader
+ BufferedReader bufferedReader = null;
+
+ //StringBuilder来把接收到的数据拼接起来
+ StringBuilder result = new StringBuilder();
+ try {
+ // 读取初始url 并且创建对象
+ URL url = new URL(urlStr);
+ //打开url连接
+ conn = (HttpURLConnection) url.openConnection();
+ //设置连接
+ //请求的方法
+ conn.setRequestMethod("GET");
+ //设置主机连接超时(单位:毫秒)
+ // 发送请求端 连接到 url目标地址端的时间 受距离长短和网络速度的影响
+ conn.setConnectTimeout(15000);
+ //设置从主机读取数据超时(单位:毫秒)
+ // 连接成功后 获取数据的时间 受数据量和服务器处理数据的影响
+ conn.setReadTimeout(60000);
+
+ //设置请求参数 可以指定接收json参数 服务端的key为content-type
+ conn.setRequestProperty("Accept", "application/json");
+
+ //发送请求
+ conn.connect();
+
+ //获取响应码 如果响应码不为200 表示请求不成功
+ if (conn.getResponseCode() != 200) {
+ //todo 此处应该增加异常处理手段
+ return "请求失败!!!";
+ }
+
+ //获取响应码 如果响应码为200 表示请求成功 然后可以读取数据
+ //获取输入流 然后读取数据
+ inputStream = conn.getInputStream();
+ bufferedReader = new BufferedReader(new InputStreamReader(inputStream, "UTF-8"));
+
+ //逐行读取数据
+ String line;//用来读取数据
+ while ((line = bufferedReader.readLine()) != null) {
+ result.append(line);
+ //System.out.print(line);
+ }
+
+ } catch (Exception e) {
+ e.printStackTrace();
+ } finally {
+ //关闭各种流
+ try {
+ if (bufferedReader != null) {
+ bufferedReader.close();
+ }
+ if (inputStream != null) {
+ inputStream.close();
+ }
+ } catch (IOException e) {
+ e.printStackTrace();
+ }
+ }
+
+ return result.toString();
+ }
+}
\ No newline at end of file
diff --git a/20250705/weather/src/main/java/com/rehome/weather/utils/WeatherUtil.java b/20250705/weather/src/main/java/com/rehome/weather/utils/WeatherUtil.java
new file mode 100644
index 0000000..ff3aca4
--- /dev/null
+++ b/20250705/weather/src/main/java/com/rehome/weather/utils/WeatherUtil.java
@@ -0,0 +1,67 @@
+package com.rehome.weather.utils;
+
+import org.apache.commons.io.IOUtils;
+import java.io.BufferedReader;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.net.HttpURLConnection;
+import java.net.URL;
+import java.util.zip.GZIPInputStream;
+
+/**
+ * @author huangwenfei
+ * @version v1.0.0.0
+ * Created DateTime 2021-04-26 9:35
+ * @description: http请求工具类
+ */
+public class WeatherUtil {
+ /**
+ * @date 2021-04-29 11:23
+ * @description: get请求
+ * @Param: url get请求的url
+ */
+ public static String analysisUrl(String url){
+ HttpURLConnection httpConnection = null;
+ String output = "";
+ try {
+ URL targetUrl = new URL(url);
+ httpConnection = (HttpURLConnection) targetUrl.openConnection();
+ httpConnection.setDoOutput(true);
+ httpConnection.setRequestMethod("GET");
+ httpConnection.setRequestProperty("Content-Type",
+ "application/json");
+ InputStreamReader isr = new InputStreamReader(httpConnection
+ .getInputStream(),"utf-8");
+ BufferedReader responseBuffer = new BufferedReader(isr);
+ output = responseBuffer.readLine();
+ } catch (Exception e) {
+
+ } finally {
+ httpConnection.disconnect();
+ }
+ return output;
+ }
+ /**
+ * @date 2021-04-29 11:23
+ * @description: get请求
+ * @Param: url get请求的url
+ */
+ public static String analysisUrlGzip(String url){
+ HttpURLConnection httpConnection = null;
+ String output = "";
+ try {
+ URL targetUrl = new URL(url);
+ httpConnection = (HttpURLConnection) targetUrl.openConnection();
+ httpConnection.setDoOutput(true);
+ httpConnection.setRequestMethod("GET");
+ httpConnection.setRequestProperty("Content-Type", "application/json");
+ InputStream stream = new GZIPInputStream(httpConnection.getInputStream());
+ output = IOUtils.toString(stream,"utf-8");
+ } catch (Exception e) {
+
+ } finally {
+ httpConnection.disconnect();
+ }
+ return output;
+ }
+}
diff --git a/20250705/weather/src/main/resources/application.properties b/20250705/weather/src/main/resources/application.properties
new file mode 100644
index 0000000..19e8128
--- /dev/null
+++ b/20250705/weather/src/main/resources/application.properties
@@ -0,0 +1,41 @@
+#1.项目启动的端口
+server.port=28902
+
+#2.数据库连接参数
+#2.1jdbc驱动,示数据库厂商决定,这是mysql的驱动
+#jdbc.driver=com.mysql.cj.jdbc.Driver
+jdbc.driver=com.mysql.jdbc.Driver
+#2.2数据库连接url,包括ip(127.0.0.1)、端口(3306)、数据库名(testdb)
+jdbc.url=jdbc:mysql://127.0.0.1:3306/weather?useUnicode=true&characterEncoding=utf-8&useSSL=false
+#2.3数据库账号名
+jdbc.username=root
+#2.4数据库密码
+jdbc.password=Skyinno251,
+
+#3.Mybatis配置
+#3.1 mybatis配置文件所在路径
+mybatis_config_file=mybatis-config.xml
+#3.2 mapper文件所在路径,这样写可匹配mapper目录下的所有mapper,包括其子目录下的
+mapper_path=/mapper/**/**.xml
+#3.3 entity所在包
+entity_package=com.rehome.weather.entity
+
+
+## Redis数据库索引(默认为0)
+#spring.redis.database=0
+## Redis服务器地址
+#spring.redis.host=192.168.1.28
+## Redis服务器连接端口
+#spring.redis.port=6379
+## Redis服务器连接密码(默认为空)
+#spring.redis.password=
+## 连接池最大连接数(使用负值表示没有限制)
+#spring.redis.jedis.pool.max-active=20
+## 连接池最大阻塞等待时间(使用负值表示没有限制)
+#spring.redis.jedis.pool.max-wait=-1
+## 连接池中的最大空闲连接
+#spring.redis.jedis.pool.max-idle=10
+## 连接池中的最小空闲连接
+#spring.redis.jedis.pool.min-idle=0
+## 连接超时时间(毫秒)
+#spring.redis.timeout=2000
diff --git a/20250705/weather/src/main/resources/config/juheweather.properties b/20250705/weather/src/main/resources/config/juheweather.properties
new file mode 100644
index 0000000..a55e569
--- /dev/null
+++ b/20250705/weather/src/main/resources/config/juheweather.properties
@@ -0,0 +1,18 @@
+#要查询天气的城市,
+weather.city=珠海
+#聚合数据查询天气url
+weather.weatherQueryUrl=http://apis.juhe.cn/simpleWeather/query
+#聚合数据天气API key,天气接口共用
+weather.weatherKey=ca980faee365078cb2bbb912c00f317e
+#聚合数据 支持天气查询的城市列表url
+weather.cityListUrl=http://apis.juhe.cn/simpleWeather/cityList
+#聚合数据 获取天气种类的url
+weather.weatherTypeUrl=http://apis.juhe.cn/simpleWeather/wids
+#和风天气开发平台 台风key
+weather.heFengStormKey=c06d26b86ff9424688b45f45906cab1d
+#和风天气开发平台 台风列表url
+weather.stormListUrl=https://api.qweather.com/v7/tropical/storm-list
+#和风天气开发平台 台风预报url
+weather.stormForecastUrl=https://api.qweather.com/v7/tropical/storm-forecast
+#和风天气开发平台 台风实况和路径url
+weather.stormTrackUrl=https://api.qweather.com/v7/tropical/storm-track
\ No newline at end of file
diff --git a/20250705/weather/src/main/resources/logback-spring.xml b/20250705/weather/src/main/resources/logback-spring.xml
new file mode 100644
index 0000000..35b26f6
--- /dev/null
+++ b/20250705/weather/src/main/resources/logback-spring.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+ %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger - %msg%n
+
+
+
+
+
+
+
+ ${LOG_HOME}/%d{yyyyMMdd}/${APP_NAME}.log
+
+ 15
+
+
+ 50MB
+
+
+ %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger - %msg%n
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/20250705/weather/src/main/resources/mapper/StormDaoMapper.xml b/20250705/weather/src/main/resources/mapper/StormDaoMapper.xml
new file mode 100644
index 0000000..5ce06c2
--- /dev/null
+++ b/20250705/weather/src/main/resources/mapper/StormDaoMapper.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+ insert into storm_data (id,name,basin,year,platform,platformdesc,isActive)
+ values (#{id},#{name},#{basin},#{year},#{platform},#{platformdesc},#{isActive});
+
+
+ update storm_data set isActive=#{isActive},updatetime=#{updatetime} where id=#{id}
+
+
+
+ insert into storm_forecast (stormid,forecast)
+ values (#{stormid}, #{forecast});
+
+
+
+ insert into storm_track (stormid,track)
+ values (#{stormid}, #{track});
+
+
+
\ No newline at end of file
diff --git a/20250705/weather/src/main/resources/mapper/WeatherDaoMapper.xml b/20250705/weather/src/main/resources/mapper/WeatherDaoMapper.xml
new file mode 100644
index 0000000..5534121
--- /dev/null
+++ b/20250705/weather/src/main/resources/mapper/WeatherDaoMapper.xml
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+ insert into weather_city (id, province, city,district)
+ values
+
+ (#{city.id,jdbcType=INTEGER}, #{city.province,jdbcType=VARCHAR}, #{city.city,jdbcType=VARCHAR},
+ #{city.district,jdbcType=VARCHAR})
+
+
+
+ insert into weather_realtime (temperature,humidity,info,wid,direct,power,aqi,city,date)
+ values (#{temperature}, #{humidity}, #{info},#{wid},#{direct},#{power},#{aqi},#{city},#{date});
+
+
+
+ insert into weather_future (date,temperature,weather,widday,widnight,widdayDesc,widnightDesc,direct,city)
+ values (#{date},#{temperature}, #{weather}, #{widday},#{widnight},#{widnightDesc},#{widnightDesc},#{direct},#{city});
+
+
+ update weather_future set temperature=#{temperature},weather=#{weather},widday=#{widday},widnight=#{widnight},widdayDesc=#{widdayDesc},widnightDesc=#{widnightDesc},direct=#{direct},updatetime=#{updatetime} where date=#{date}
+
+
+
+
\ No newline at end of file
diff --git a/20250705/weather/src/main/resources/mapper/WeatherTypeDaoMapper.xml b/20250705/weather/src/main/resources/mapper/WeatherTypeDaoMapper.xml
new file mode 100644
index 0000000..b84d809
--- /dev/null
+++ b/20250705/weather/src/main/resources/mapper/WeatherTypeDaoMapper.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+ insert into weather_type (wid, weather)
+ values
+
+ (#{weatherType.wid,jdbcType=VARCHAR}, #{weatherType.weather,jdbcType=VARCHAR})
+
+
+
+
\ No newline at end of file
diff --git a/20250705/weather/src/main/resources/mybatis-config.xml b/20250705/weather/src/main/resources/mybatis-config.xml
new file mode 100644
index 0000000..6f2731b
--- /dev/null
+++ b/20250705/weather/src/main/resources/mybatis-config.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/20250705/weather/src/sql/storm.sql b/20250705/weather/src/sql/storm.sql
new file mode 100644
index 0000000..60e6a26
--- /dev/null
+++ b/20250705/weather/src/sql/storm.sql
@@ -0,0 +1,61 @@
+/*
+Navicat MySQL Data Transfer
+
+Source Server : 本地mysql
+Source Server Version : 50734
+Source Host : localhost:3306
+Source Database : weather
+
+Target Server Type : MYSQL
+Target Server Version : 50734
+File Encoding : 65001
+
+Date: 2021-05-11 16:04:46
+*/
+
+SET FOREIGN_KEY_CHECKS=0;
+
+-- ----------------------------
+-- Table structure for storm_data
+-- ----------------------------
+DROP TABLE IF EXISTS `storm_data`;
+CREATE TABLE `storm_data` (
+ `id` varchar(20) NOT NULL COMMENT '平台描述',
+ `name` varchar(150) NOT NULL,
+ `basin` varchar(20) NOT NULL,
+ `year` varchar(20) NOT NULL,
+ `platform` varchar(30) DEFAULT NULL COMMENT '台风接入平台',
+ `platformdesc` varchar(50) DEFAULT NULL COMMENT '平台描述',
+ `isActive` varchar(10) NOT NULL,
+ `createtime` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
+ `updatetime` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='台风列表';
+
+-- ----------------------------
+-- Table structure for storm_forecast
+-- ----------------------------
+DROP TABLE IF EXISTS `storm_forecast`;
+CREATE TABLE `storm_forecast` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `stormid` varchar(20) NOT NULL,
+ `forecast` mediumtext NOT NULL,
+ `createtime` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
+ `updatetime` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COMMENT='台风预报';
+
+-- ----------------------------
+-- Table structure for storm_track
+-- ----------------------------
+DROP TABLE IF EXISTS `storm_track`;
+CREATE TABLE `storm_track` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `stormid` varbinary(20) NOT NULL,
+ `track` mediumtext NOT NULL,
+ `createtime` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
+ `updatetime` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COMMENT='台风实况和路径';
+
+
diff --git a/20250705/weather/src/sql/storm_sql/storm.sql b/20250705/weather/src/sql/storm_sql/storm.sql
new file mode 100644
index 0000000..60e6a26
--- /dev/null
+++ b/20250705/weather/src/sql/storm_sql/storm.sql
@@ -0,0 +1,61 @@
+/*
+Navicat MySQL Data Transfer
+
+Source Server : 本地mysql
+Source Server Version : 50734
+Source Host : localhost:3306
+Source Database : weather
+
+Target Server Type : MYSQL
+Target Server Version : 50734
+File Encoding : 65001
+
+Date: 2021-05-11 16:04:46
+*/
+
+SET FOREIGN_KEY_CHECKS=0;
+
+-- ----------------------------
+-- Table structure for storm_data
+-- ----------------------------
+DROP TABLE IF EXISTS `storm_data`;
+CREATE TABLE `storm_data` (
+ `id` varchar(20) NOT NULL COMMENT '平台描述',
+ `name` varchar(150) NOT NULL,
+ `basin` varchar(20) NOT NULL,
+ `year` varchar(20) NOT NULL,
+ `platform` varchar(30) DEFAULT NULL COMMENT '台风接入平台',
+ `platformdesc` varchar(50) DEFAULT NULL COMMENT '平台描述',
+ `isActive` varchar(10) NOT NULL,
+ `createtime` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
+ `updatetime` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='台风列表';
+
+-- ----------------------------
+-- Table structure for storm_forecast
+-- ----------------------------
+DROP TABLE IF EXISTS `storm_forecast`;
+CREATE TABLE `storm_forecast` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `stormid` varchar(20) NOT NULL,
+ `forecast` mediumtext NOT NULL,
+ `createtime` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
+ `updatetime` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COMMENT='台风预报';
+
+-- ----------------------------
+-- Table structure for storm_track
+-- ----------------------------
+DROP TABLE IF EXISTS `storm_track`;
+CREATE TABLE `storm_track` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `stormid` varbinary(20) NOT NULL,
+ `track` mediumtext NOT NULL,
+ `createtime` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
+ `updatetime` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COMMENT='台风实况和路径';
+
+
diff --git a/20250705/weather/src/sql/storm_sql/storm_data.sql b/20250705/weather/src/sql/storm_sql/storm_data.sql
new file mode 100644
index 0000000..2dbb48e
--- /dev/null
+++ b/20250705/weather/src/sql/storm_sql/storm_data.sql
@@ -0,0 +1,33 @@
+/*
+Navicat MySQL Data Transfer
+
+Source Server : 本地mysql
+Source Server Version : 50734
+Source Host : localhost:3306
+Source Database : weather
+
+Target Server Type : MYSQL
+Target Server Version : 50734
+File Encoding : 65001
+
+Date: 2021-05-11 16:09:19
+*/
+
+SET FOREIGN_KEY_CHECKS=0;
+
+-- ----------------------------
+-- Table structure for storm_data
+-- ----------------------------
+DROP TABLE IF EXISTS `storm_data`;
+CREATE TABLE `storm_data` (
+ `id` varchar(20) NOT NULL COMMENT '平台描述',
+ `name` varchar(150) NOT NULL,
+ `basin` varchar(20) NOT NULL,
+ `year` varchar(20) NOT NULL,
+ `platform` varchar(30) DEFAULT NULL COMMENT '台风接入平台',
+ `platformdesc` varchar(50) DEFAULT NULL COMMENT '平台描述',
+ `isActive` varchar(10) NOT NULL,
+ `createtime` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
+ `updatetime` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='台风列表';
diff --git a/20250705/weather/src/sql/storm_sql/storm_forecast.sql b/20250705/weather/src/sql/storm_sql/storm_forecast.sql
new file mode 100644
index 0000000..e2b9adc
--- /dev/null
+++ b/20250705/weather/src/sql/storm_sql/storm_forecast.sql
@@ -0,0 +1,29 @@
+/*
+Navicat MySQL Data Transfer
+
+Source Server : 本地mysql
+Source Server Version : 50734
+Source Host : localhost:3306
+Source Database : weather
+
+Target Server Type : MYSQL
+Target Server Version : 50734
+File Encoding : 65001
+
+Date: 2021-05-11 16:04:53
+*/
+
+SET FOREIGN_KEY_CHECKS=0;
+
+-- ----------------------------
+-- Table structure for storm_forecast
+-- ----------------------------
+DROP TABLE IF EXISTS `storm_forecast`;
+CREATE TABLE `storm_forecast` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `stormid` varchar(20) NOT NULL,
+ `forecast` mediumtext NOT NULL,
+ `createtime` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
+ `updatetime` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COMMENT='台风预报';
diff --git a/20250705/weather/src/sql/storm_sql/storm_track.sql b/20250705/weather/src/sql/storm_sql/storm_track.sql
new file mode 100644
index 0000000..f46b060
--- /dev/null
+++ b/20250705/weather/src/sql/storm_sql/storm_track.sql
@@ -0,0 +1,29 @@
+/*
+Navicat MySQL Data Transfer
+
+Source Server : 本地mysql
+Source Server Version : 50734
+Source Host : localhost:3306
+Source Database : weather
+
+Target Server Type : MYSQL
+Target Server Version : 50734
+File Encoding : 65001
+
+Date: 2021-05-11 16:05:02
+*/
+
+SET FOREIGN_KEY_CHECKS=0;
+
+-- ----------------------------
+-- Table structure for storm_track
+-- ----------------------------
+DROP TABLE IF EXISTS `storm_track`;
+CREATE TABLE `storm_track` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `stormid` varbinary(20) NOT NULL,
+ `track` mediumtext NOT NULL,
+ `createtime` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
+ `updatetime` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COMMENT='台风实况和路径';
diff --git a/20250705/weather/src/sql/weather.sql b/20250705/weather/src/sql/weather.sql
new file mode 100644
index 0000000..3eaf63a
--- /dev/null
+++ b/20250705/weather/src/sql/weather.sql
@@ -0,0 +1,2794 @@
+CREATE DATABASE IF NOT EXISTS weather DEFAULT CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_general_ci;
+
+/*
+Navicat MySQL Data Transfer
+
+Source Server : 本地mysql
+Source Server Version : 50734
+Source Host : localhost:3306
+Source Database : weather
+
+Target Server Type : MYSQL
+Target Server Version : 50734
+File Encoding : 65001
+
+Date: 2021-04-27 17:40:38
+*/
+
+SET FOREIGN_KEY_CHECKS=0;
+
+-- ----------------------------
+-- Table structure for test
+-- ----------------------------
+DROP TABLE IF EXISTS `test`;
+CREATE TABLE `test` (
+ `id` int(11) NOT NULL,
+ `magic_id` int(11) DEFAULT NULL,
+ `first_name` varchar(255) DEFAULT NULL,
+ `last_name` varchar(255) DEFAULT NULL
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+
+-- ----------------------------
+-- Records of test
+-- ----------------------------
+INSERT INTO `test` VALUES ('1', '23', 'wenfei', 'huang');
+INSERT INTO `test` VALUES ('2', '32', 'wengui', 'huang');
+INSERT INTO `test` VALUES ('3', '33', 'wenjing', 'huang');
+
+-- ----------------------------
+-- Table structure for weather_city
+-- ----------------------------
+DROP TABLE IF EXISTS `weather_city`;
+CREATE TABLE `weather_city` (
+ `id` int(11) NOT NULL COMMENT '天气支持城市列表',
+ `province` varchar(255) NOT NULL,
+ `city` varchar(255) NOT NULL,
+ `district` varchar(255) DEFAULT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+
+-- ----------------------------
+-- Records of weather_city
+-- ----------------------------
+INSERT INTO `weather_city` VALUES ('1', '北京', '北京', '北京');
+INSERT INTO `weather_city` VALUES ('2', '北京', '北京', '海淀');
+INSERT INTO `weather_city` VALUES ('3', '北京', '北京', '朝阳');
+INSERT INTO `weather_city` VALUES ('4', '北京', '北京', '顺义');
+INSERT INTO `weather_city` VALUES ('5', '北京', '北京', '怀柔');
+INSERT INTO `weather_city` VALUES ('6', '北京', '北京', '通州');
+INSERT INTO `weather_city` VALUES ('7', '北京', '北京', '昌平');
+INSERT INTO `weather_city` VALUES ('8', '北京', '北京', '延庆');
+INSERT INTO `weather_city` VALUES ('9', '北京', '北京', '丰台');
+INSERT INTO `weather_city` VALUES ('10', '北京', '北京', '石景山');
+INSERT INTO `weather_city` VALUES ('11', '北京', '北京', '大兴');
+INSERT INTO `weather_city` VALUES ('12', '北京', '北京', '房山');
+INSERT INTO `weather_city` VALUES ('13', '北京', '北京', '密云');
+INSERT INTO `weather_city` VALUES ('14', '北京', '北京', '门头沟');
+INSERT INTO `weather_city` VALUES ('15', '北京', '北京', '平谷');
+INSERT INTO `weather_city` VALUES ('16', '上海', '上海', '上海');
+INSERT INTO `weather_city` VALUES ('17', '上海', '上海', '闵行');
+INSERT INTO `weather_city` VALUES ('18', '上海', '上海', '宝山');
+INSERT INTO `weather_city` VALUES ('19', '上海', '上海', '嘉定');
+INSERT INTO `weather_city` VALUES ('20', '上海', '上海', '南汇');
+INSERT INTO `weather_city` VALUES ('21', '上海', '上海', '金山');
+INSERT INTO `weather_city` VALUES ('22', '上海', '上海', '青浦');
+INSERT INTO `weather_city` VALUES ('23', '上海', '上海', '松江');
+INSERT INTO `weather_city` VALUES ('24', '上海', '上海', '奉贤');
+INSERT INTO `weather_city` VALUES ('25', '上海', '上海', '崇明');
+INSERT INTO `weather_city` VALUES ('26', '上海', '上海', '徐家汇');
+INSERT INTO `weather_city` VALUES ('27', '上海', '上海', '浦东');
+INSERT INTO `weather_city` VALUES ('28', '天津', '天津', '天津');
+INSERT INTO `weather_city` VALUES ('29', '天津', '天津', '武清');
+INSERT INTO `weather_city` VALUES ('30', '天津', '天津', '宝坻');
+INSERT INTO `weather_city` VALUES ('31', '天津', '天津', '东丽');
+INSERT INTO `weather_city` VALUES ('32', '天津', '天津', '西青');
+INSERT INTO `weather_city` VALUES ('33', '天津', '天津', '北辰');
+INSERT INTO `weather_city` VALUES ('34', '天津', '天津', '宁河');
+INSERT INTO `weather_city` VALUES ('35', '天津', '天津', '汉沽');
+INSERT INTO `weather_city` VALUES ('36', '天津', '天津', '静海');
+INSERT INTO `weather_city` VALUES ('37', '天津', '天津', '津南');
+INSERT INTO `weather_city` VALUES ('38', '天津', '天津', '塘沽');
+INSERT INTO `weather_city` VALUES ('39', '天津', '天津', '大港');
+INSERT INTO `weather_city` VALUES ('40', '天津', '天津', '蓟县');
+INSERT INTO `weather_city` VALUES ('41', '重庆', '重庆', '重庆');
+INSERT INTO `weather_city` VALUES ('42', '重庆', '重庆', '永川');
+INSERT INTO `weather_city` VALUES ('43', '重庆', '重庆', '合川');
+INSERT INTO `weather_city` VALUES ('44', '重庆', '重庆', '南川');
+INSERT INTO `weather_city` VALUES ('45', '重庆', '重庆', '江津');
+INSERT INTO `weather_city` VALUES ('46', '重庆', '重庆', '万盛');
+INSERT INTO `weather_city` VALUES ('47', '重庆', '重庆', '渝北');
+INSERT INTO `weather_city` VALUES ('48', '重庆', '重庆', '北碚');
+INSERT INTO `weather_city` VALUES ('49', '重庆', '重庆', '巴南');
+INSERT INTO `weather_city` VALUES ('50', '重庆', '重庆', '长寿');
+INSERT INTO `weather_city` VALUES ('51', '重庆', '重庆', '黔江');
+INSERT INTO `weather_city` VALUES ('52', '重庆', '重庆', '万州');
+INSERT INTO `weather_city` VALUES ('53', '重庆', '重庆', '涪陵');
+INSERT INTO `weather_city` VALUES ('54', '重庆', '重庆', '开县');
+INSERT INTO `weather_city` VALUES ('55', '重庆', '重庆', '城口');
+INSERT INTO `weather_city` VALUES ('56', '重庆', '重庆', '云阳');
+INSERT INTO `weather_city` VALUES ('57', '重庆', '重庆', '巫溪');
+INSERT INTO `weather_city` VALUES ('58', '重庆', '重庆', '奉节');
+INSERT INTO `weather_city` VALUES ('59', '重庆', '重庆', '巫山');
+INSERT INTO `weather_city` VALUES ('60', '重庆', '重庆', '潼南');
+INSERT INTO `weather_city` VALUES ('61', '重庆', '重庆', '垫江');
+INSERT INTO `weather_city` VALUES ('62', '重庆', '重庆', '梁平');
+INSERT INTO `weather_city` VALUES ('63', '重庆', '重庆', '忠县');
+INSERT INTO `weather_city` VALUES ('64', '重庆', '重庆', '石柱');
+INSERT INTO `weather_city` VALUES ('65', '重庆', '重庆', '大足');
+INSERT INTO `weather_city` VALUES ('66', '重庆', '重庆', '荣昌');
+INSERT INTO `weather_city` VALUES ('67', '重庆', '重庆', '铜梁');
+INSERT INTO `weather_city` VALUES ('68', '重庆', '重庆', '璧山');
+INSERT INTO `weather_city` VALUES ('69', '重庆', '重庆', '丰都');
+INSERT INTO `weather_city` VALUES ('70', '重庆', '重庆', '武隆');
+INSERT INTO `weather_city` VALUES ('71', '重庆', '重庆', '彭水');
+INSERT INTO `weather_city` VALUES ('72', '重庆', '重庆', '綦江');
+INSERT INTO `weather_city` VALUES ('73', '重庆', '重庆', '酉阳');
+INSERT INTO `weather_city` VALUES ('74', '重庆', '重庆', '秀山');
+INSERT INTO `weather_city` VALUES ('75', '黑龙江', '哈尔滨', '哈尔滨');
+INSERT INTO `weather_city` VALUES ('76', '黑龙江', '哈尔滨', '双城');
+INSERT INTO `weather_city` VALUES ('77', '黑龙江', '哈尔滨', '呼兰');
+INSERT INTO `weather_city` VALUES ('78', '黑龙江', '哈尔滨', '阿城');
+INSERT INTO `weather_city` VALUES ('79', '黑龙江', '哈尔滨', '宾县');
+INSERT INTO `weather_city` VALUES ('80', '黑龙江', '哈尔滨', '依兰');
+INSERT INTO `weather_city` VALUES ('81', '黑龙江', '哈尔滨', '巴彦');
+INSERT INTO `weather_city` VALUES ('82', '黑龙江', '哈尔滨', '通河');
+INSERT INTO `weather_city` VALUES ('83', '黑龙江', '哈尔滨', '方正');
+INSERT INTO `weather_city` VALUES ('84', '黑龙江', '哈尔滨', '延寿');
+INSERT INTO `weather_city` VALUES ('85', '黑龙江', '哈尔滨', '尚志');
+INSERT INTO `weather_city` VALUES ('86', '黑龙江', '哈尔滨', '五常');
+INSERT INTO `weather_city` VALUES ('87', '黑龙江', '哈尔滨', '木兰');
+INSERT INTO `weather_city` VALUES ('88', '黑龙江', '齐齐哈尔', '齐齐哈尔');
+INSERT INTO `weather_city` VALUES ('89', '黑龙江', '齐齐哈尔', '讷河');
+INSERT INTO `weather_city` VALUES ('90', '黑龙江', '齐齐哈尔', '龙江');
+INSERT INTO `weather_city` VALUES ('91', '黑龙江', '齐齐哈尔', '甘南');
+INSERT INTO `weather_city` VALUES ('92', '黑龙江', '齐齐哈尔', '富裕');
+INSERT INTO `weather_city` VALUES ('93', '黑龙江', '齐齐哈尔', '依安');
+INSERT INTO `weather_city` VALUES ('94', '黑龙江', '齐齐哈尔', '拜泉');
+INSERT INTO `weather_city` VALUES ('95', '黑龙江', '齐齐哈尔', '克山');
+INSERT INTO `weather_city` VALUES ('96', '黑龙江', '齐齐哈尔', '克东');
+INSERT INTO `weather_city` VALUES ('97', '黑龙江', '齐齐哈尔', '泰来');
+INSERT INTO `weather_city` VALUES ('98', '黑龙江', '牡丹江', '牡丹江');
+INSERT INTO `weather_city` VALUES ('99', '黑龙江', '牡丹江', '海林');
+INSERT INTO `weather_city` VALUES ('100', '黑龙江', '牡丹江', '穆棱');
+INSERT INTO `weather_city` VALUES ('101', '黑龙江', '牡丹江', '林口');
+INSERT INTO `weather_city` VALUES ('102', '黑龙江', '牡丹江', '绥芬河');
+INSERT INTO `weather_city` VALUES ('103', '黑龙江', '牡丹江', '宁安');
+INSERT INTO `weather_city` VALUES ('104', '黑龙江', '牡丹江', '东宁');
+INSERT INTO `weather_city` VALUES ('105', '黑龙江', '佳木斯', '佳木斯');
+INSERT INTO `weather_city` VALUES ('106', '黑龙江', '佳木斯', '汤原');
+INSERT INTO `weather_city` VALUES ('107', '黑龙江', '佳木斯', '抚远');
+INSERT INTO `weather_city` VALUES ('108', '黑龙江', '佳木斯', '桦川');
+INSERT INTO `weather_city` VALUES ('109', '黑龙江', '佳木斯', '桦南');
+INSERT INTO `weather_city` VALUES ('110', '黑龙江', '佳木斯', '同江');
+INSERT INTO `weather_city` VALUES ('111', '黑龙江', '佳木斯', '富锦');
+INSERT INTO `weather_city` VALUES ('112', '黑龙江', '绥化', '绥化');
+INSERT INTO `weather_city` VALUES ('113', '黑龙江', '绥化', '肇东');
+INSERT INTO `weather_city` VALUES ('114', '黑龙江', '绥化', '安达');
+INSERT INTO `weather_city` VALUES ('115', '黑龙江', '绥化', '海伦');
+INSERT INTO `weather_city` VALUES ('116', '黑龙江', '绥化', '明水');
+INSERT INTO `weather_city` VALUES ('117', '黑龙江', '绥化', '望奎');
+INSERT INTO `weather_city` VALUES ('118', '黑龙江', '绥化', '兰西');
+INSERT INTO `weather_city` VALUES ('119', '黑龙江', '绥化', '青冈');
+INSERT INTO `weather_city` VALUES ('120', '黑龙江', '绥化', '庆安');
+INSERT INTO `weather_city` VALUES ('121', '黑龙江', '绥化', '绥棱');
+INSERT INTO `weather_city` VALUES ('122', '黑龙江', '黑河', '黑河');
+INSERT INTO `weather_city` VALUES ('123', '黑龙江', '黑河', '嫩江');
+INSERT INTO `weather_city` VALUES ('124', '黑龙江', '黑河', '孙吴');
+INSERT INTO `weather_city` VALUES ('125', '黑龙江', '黑河', '逊克');
+INSERT INTO `weather_city` VALUES ('126', '黑龙江', '黑河', '五大连池');
+INSERT INTO `weather_city` VALUES ('127', '黑龙江', '黑河', '北安');
+INSERT INTO `weather_city` VALUES ('128', '黑龙江', '大兴安岭', '大兴安岭');
+INSERT INTO `weather_city` VALUES ('129', '黑龙江', '大兴安岭', '塔河');
+INSERT INTO `weather_city` VALUES ('130', '黑龙江', '大兴安岭', '漠河');
+INSERT INTO `weather_city` VALUES ('131', '黑龙江', '大兴安岭', '呼玛');
+INSERT INTO `weather_city` VALUES ('132', '黑龙江', '大兴安岭', '呼中');
+INSERT INTO `weather_city` VALUES ('133', '黑龙江', '大兴安岭', '新林');
+INSERT INTO `weather_city` VALUES ('134', '黑龙江', '大兴安岭', '加格达奇');
+INSERT INTO `weather_city` VALUES ('135', '黑龙江', '伊春', '伊春');
+INSERT INTO `weather_city` VALUES ('136', '黑龙江', '伊春', '乌伊岭');
+INSERT INTO `weather_city` VALUES ('137', '黑龙江', '伊春', '五营');
+INSERT INTO `weather_city` VALUES ('138', '黑龙江', '伊春', '铁力');
+INSERT INTO `weather_city` VALUES ('139', '黑龙江', '伊春', '嘉荫');
+INSERT INTO `weather_city` VALUES ('140', '黑龙江', '大庆', '大庆');
+INSERT INTO `weather_city` VALUES ('141', '黑龙江', '大庆', '林甸');
+INSERT INTO `weather_city` VALUES ('142', '黑龙江', '大庆', '肇州');
+INSERT INTO `weather_city` VALUES ('143', '黑龙江', '大庆', '肇源');
+INSERT INTO `weather_city` VALUES ('144', '黑龙江', '大庆', '杜尔伯特');
+INSERT INTO `weather_city` VALUES ('145', '黑龙江', '七台河', '七台河');
+INSERT INTO `weather_city` VALUES ('146', '黑龙江', '七台河', '勃利');
+INSERT INTO `weather_city` VALUES ('147', '黑龙江', '鸡西', '鸡西');
+INSERT INTO `weather_city` VALUES ('148', '黑龙江', '鸡西', '虎林');
+INSERT INTO `weather_city` VALUES ('149', '黑龙江', '鸡西', '密山');
+INSERT INTO `weather_city` VALUES ('150', '黑龙江', '鸡西', '鸡东');
+INSERT INTO `weather_city` VALUES ('151', '黑龙江', '鹤岗', '鹤岗');
+INSERT INTO `weather_city` VALUES ('152', '黑龙江', '鹤岗', '绥滨');
+INSERT INTO `weather_city` VALUES ('153', '黑龙江', '鹤岗', '萝北');
+INSERT INTO `weather_city` VALUES ('154', '黑龙江', '双鸭山', '双鸭山');
+INSERT INTO `weather_city` VALUES ('155', '黑龙江', '双鸭山', '集贤');
+INSERT INTO `weather_city` VALUES ('156', '黑龙江', '双鸭山', '宝清');
+INSERT INTO `weather_city` VALUES ('157', '黑龙江', '双鸭山', '饶河');
+INSERT INTO `weather_city` VALUES ('158', '黑龙江', '双鸭山', '友谊');
+INSERT INTO `weather_city` VALUES ('159', '吉林', '长春', '长春');
+INSERT INTO `weather_city` VALUES ('160', '吉林', '长春', '农安');
+INSERT INTO `weather_city` VALUES ('161', '吉林', '长春', '德惠');
+INSERT INTO `weather_city` VALUES ('162', '吉林', '长春', '九台');
+INSERT INTO `weather_city` VALUES ('163', '吉林', '长春', '榆树');
+INSERT INTO `weather_city` VALUES ('164', '吉林', '长春', '双阳');
+INSERT INTO `weather_city` VALUES ('165', '吉林', '吉林', '吉林');
+INSERT INTO `weather_city` VALUES ('166', '吉林', '吉林', '舒兰');
+INSERT INTO `weather_city` VALUES ('167', '吉林', '吉林', '永吉');
+INSERT INTO `weather_city` VALUES ('168', '吉林', '吉林', '蛟河');
+INSERT INTO `weather_city` VALUES ('169', '吉林', '吉林', '磐石');
+INSERT INTO `weather_city` VALUES ('170', '吉林', '吉林', '桦甸');
+INSERT INTO `weather_city` VALUES ('171', '吉林', '延边', '延吉');
+INSERT INTO `weather_city` VALUES ('172', '吉林', '延边', '敦化');
+INSERT INTO `weather_city` VALUES ('173', '吉林', '延边', '安图');
+INSERT INTO `weather_city` VALUES ('174', '吉林', '延边', '汪清');
+INSERT INTO `weather_city` VALUES ('175', '吉林', '延边', '和龙');
+INSERT INTO `weather_city` VALUES ('176', '吉林', '延边', '龙井');
+INSERT INTO `weather_city` VALUES ('177', '吉林', '延边', '珲春');
+INSERT INTO `weather_city` VALUES ('178', '吉林', '延边', '图们');
+INSERT INTO `weather_city` VALUES ('179', '吉林', '四平', '四平');
+INSERT INTO `weather_city` VALUES ('180', '吉林', '四平', '双辽');
+INSERT INTO `weather_city` VALUES ('181', '吉林', '四平', '梨树');
+INSERT INTO `weather_city` VALUES ('182', '吉林', '四平', '公主岭');
+INSERT INTO `weather_city` VALUES ('183', '吉林', '四平', '伊通');
+INSERT INTO `weather_city` VALUES ('184', '吉林', '通化', '通化');
+INSERT INTO `weather_city` VALUES ('185', '吉林', '通化', '梅河口');
+INSERT INTO `weather_city` VALUES ('186', '吉林', '通化', '柳河');
+INSERT INTO `weather_city` VALUES ('187', '吉林', '通化', '辉南');
+INSERT INTO `weather_city` VALUES ('188', '吉林', '通化', '集安');
+INSERT INTO `weather_city` VALUES ('189', '吉林', '通化', '通化县');
+INSERT INTO `weather_city` VALUES ('190', '吉林', '白城', '白城');
+INSERT INTO `weather_city` VALUES ('191', '吉林', '白城', '洮南');
+INSERT INTO `weather_city` VALUES ('192', '吉林', '白城', '大安');
+INSERT INTO `weather_city` VALUES ('193', '吉林', '白城', '镇赉');
+INSERT INTO `weather_city` VALUES ('194', '吉林', '白城', '通榆');
+INSERT INTO `weather_city` VALUES ('195', '吉林', '辽源', '辽源');
+INSERT INTO `weather_city` VALUES ('196', '吉林', '辽源', '东丰');
+INSERT INTO `weather_city` VALUES ('197', '吉林', '辽源', '东辽');
+INSERT INTO `weather_city` VALUES ('198', '吉林', '松原', '松原');
+INSERT INTO `weather_city` VALUES ('199', '吉林', '松原', '乾安');
+INSERT INTO `weather_city` VALUES ('200', '吉林', '松原', '前郭');
+INSERT INTO `weather_city` VALUES ('201', '吉林', '松原', '长岭');
+INSERT INTO `weather_city` VALUES ('202', '吉林', '松原', '扶余');
+INSERT INTO `weather_city` VALUES ('203', '吉林', '白山', '白山');
+INSERT INTO `weather_city` VALUES ('204', '吉林', '白山', '靖宇');
+INSERT INTO `weather_city` VALUES ('205', '吉林', '白山', '临江');
+INSERT INTO `weather_city` VALUES ('206', '吉林', '白山', '东岗');
+INSERT INTO `weather_city` VALUES ('207', '吉林', '白山', '长白');
+INSERT INTO `weather_city` VALUES ('208', '吉林', '白山', '抚松');
+INSERT INTO `weather_city` VALUES ('209', '吉林', '白山', '江源');
+INSERT INTO `weather_city` VALUES ('210', '辽宁', '沈阳', '沈阳');
+INSERT INTO `weather_city` VALUES ('211', '辽宁', '沈阳', '辽中');
+INSERT INTO `weather_city` VALUES ('212', '辽宁', '沈阳', '康平');
+INSERT INTO `weather_city` VALUES ('213', '辽宁', '沈阳', '法库');
+INSERT INTO `weather_city` VALUES ('214', '辽宁', '沈阳', '新民');
+INSERT INTO `weather_city` VALUES ('215', '辽宁', '大连', '大连');
+INSERT INTO `weather_city` VALUES ('216', '辽宁', '大连', '瓦房店');
+INSERT INTO `weather_city` VALUES ('217', '辽宁', '大连', '金州');
+INSERT INTO `weather_city` VALUES ('218', '辽宁', '大连', '普兰店');
+INSERT INTO `weather_city` VALUES ('219', '辽宁', '大连', '旅顺');
+INSERT INTO `weather_city` VALUES ('220', '辽宁', '大连', '长海');
+INSERT INTO `weather_city` VALUES ('221', '辽宁', '大连', '庄河');
+INSERT INTO `weather_city` VALUES ('222', '辽宁', '鞍山', '鞍山');
+INSERT INTO `weather_city` VALUES ('223', '辽宁', '鞍山', '台安');
+INSERT INTO `weather_city` VALUES ('224', '辽宁', '鞍山', '岫岩');
+INSERT INTO `weather_city` VALUES ('225', '辽宁', '鞍山', '海城');
+INSERT INTO `weather_city` VALUES ('226', '辽宁', '抚顺', '抚顺');
+INSERT INTO `weather_city` VALUES ('227', '辽宁', '抚顺', '新宾');
+INSERT INTO `weather_city` VALUES ('228', '辽宁', '抚顺', '清原');
+INSERT INTO `weather_city` VALUES ('229', '辽宁', '抚顺', '章党');
+INSERT INTO `weather_city` VALUES ('230', '辽宁', '本溪', '本溪');
+INSERT INTO `weather_city` VALUES ('231', '辽宁', '本溪', '本溪县');
+INSERT INTO `weather_city` VALUES ('232', '辽宁', '本溪', '桓仁');
+INSERT INTO `weather_city` VALUES ('233', '辽宁', '丹东', '丹东');
+INSERT INTO `weather_city` VALUES ('234', '辽宁', '丹东', '凤城');
+INSERT INTO `weather_city` VALUES ('235', '辽宁', '丹东', '宽甸');
+INSERT INTO `weather_city` VALUES ('236', '辽宁', '丹东', '东港');
+INSERT INTO `weather_city` VALUES ('237', '辽宁', '锦州', '锦州');
+INSERT INTO `weather_city` VALUES ('238', '辽宁', '锦州', '凌海');
+INSERT INTO `weather_city` VALUES ('239', '辽宁', '锦州', '义县');
+INSERT INTO `weather_city` VALUES ('240', '辽宁', '锦州', '黑山');
+INSERT INTO `weather_city` VALUES ('241', '辽宁', '锦州', '北镇');
+INSERT INTO `weather_city` VALUES ('242', '辽宁', '营口', '营口');
+INSERT INTO `weather_city` VALUES ('243', '辽宁', '营口', '大石桥');
+INSERT INTO `weather_city` VALUES ('244', '辽宁', '营口', '盖州');
+INSERT INTO `weather_city` VALUES ('245', '辽宁', '阜新', '阜新');
+INSERT INTO `weather_city` VALUES ('246', '辽宁', '阜新', '彰武');
+INSERT INTO `weather_city` VALUES ('247', '辽宁', '辽阳', '辽阳');
+INSERT INTO `weather_city` VALUES ('248', '辽宁', '辽阳', '辽阳县');
+INSERT INTO `weather_city` VALUES ('249', '辽宁', '辽阳', '灯塔');
+INSERT INTO `weather_city` VALUES ('250', '辽宁', '辽阳', '弓长岭');
+INSERT INTO `weather_city` VALUES ('251', '辽宁', '铁岭', '铁岭');
+INSERT INTO `weather_city` VALUES ('252', '辽宁', '铁岭', '开原');
+INSERT INTO `weather_city` VALUES ('253', '辽宁', '铁岭', '昌图');
+INSERT INTO `weather_city` VALUES ('254', '辽宁', '铁岭', '西丰');
+INSERT INTO `weather_city` VALUES ('255', '辽宁', '铁岭', '铁法');
+INSERT INTO `weather_city` VALUES ('256', '辽宁', '朝阳', '朝阳');
+INSERT INTO `weather_city` VALUES ('257', '辽宁', '朝阳', '凌源');
+INSERT INTO `weather_city` VALUES ('258', '辽宁', '朝阳', '喀左');
+INSERT INTO `weather_city` VALUES ('259', '辽宁', '朝阳', '北票');
+INSERT INTO `weather_city` VALUES ('260', '辽宁', '朝阳', '建平县');
+INSERT INTO `weather_city` VALUES ('261', '辽宁', '盘锦', '盘锦');
+INSERT INTO `weather_city` VALUES ('262', '辽宁', '盘锦', '大洼');
+INSERT INTO `weather_city` VALUES ('263', '辽宁', '盘锦', '盘山');
+INSERT INTO `weather_city` VALUES ('264', '辽宁', '葫芦岛', '葫芦岛');
+INSERT INTO `weather_city` VALUES ('265', '辽宁', '葫芦岛', '建昌');
+INSERT INTO `weather_city` VALUES ('266', '辽宁', '葫芦岛', '绥中');
+INSERT INTO `weather_city` VALUES ('267', '辽宁', '葫芦岛', '兴城');
+INSERT INTO `weather_city` VALUES ('268', '内蒙古', '呼和浩特', '呼和浩特');
+INSERT INTO `weather_city` VALUES ('269', '内蒙古', '呼和浩特', '土左旗');
+INSERT INTO `weather_city` VALUES ('270', '内蒙古', '呼和浩特', '托县');
+INSERT INTO `weather_city` VALUES ('271', '内蒙古', '呼和浩特', '和林');
+INSERT INTO `weather_city` VALUES ('272', '内蒙古', '呼和浩特', '清水河');
+INSERT INTO `weather_city` VALUES ('273', '内蒙古', '呼和浩特', '呼市郊区');
+INSERT INTO `weather_city` VALUES ('274', '内蒙古', '呼和浩特', '武川');
+INSERT INTO `weather_city` VALUES ('275', '内蒙古', '包头', '包头');
+INSERT INTO `weather_city` VALUES ('276', '内蒙古', '包头', '白云鄂博');
+INSERT INTO `weather_city` VALUES ('277', '内蒙古', '包头', '满都拉');
+INSERT INTO `weather_city` VALUES ('278', '内蒙古', '包头', '土右旗');
+INSERT INTO `weather_city` VALUES ('279', '内蒙古', '包头', '固阳');
+INSERT INTO `weather_city` VALUES ('280', '内蒙古', '包头', '达茂旗');
+INSERT INTO `weather_city` VALUES ('281', '内蒙古', '包头', '希拉穆仁');
+INSERT INTO `weather_city` VALUES ('282', '内蒙古', '乌海', '乌海');
+INSERT INTO `weather_city` VALUES ('283', '内蒙古', '乌兰察布', '集宁');
+INSERT INTO `weather_city` VALUES ('284', '内蒙古', '乌兰察布', '卓资');
+INSERT INTO `weather_city` VALUES ('285', '内蒙古', '乌兰察布', '化德');
+INSERT INTO `weather_city` VALUES ('286', '内蒙古', '乌兰察布', '商都');
+INSERT INTO `weather_city` VALUES ('287', '内蒙古', '乌兰察布', '兴和');
+INSERT INTO `weather_city` VALUES ('288', '内蒙古', '乌兰察布', '凉城');
+INSERT INTO `weather_city` VALUES ('289', '内蒙古', '乌兰察布', '察右前旗');
+INSERT INTO `weather_city` VALUES ('290', '内蒙古', '乌兰察布', '察右中旗');
+INSERT INTO `weather_city` VALUES ('291', '内蒙古', '乌兰察布', '察右后旗');
+INSERT INTO `weather_city` VALUES ('292', '内蒙古', '乌兰察布', '四子王旗');
+INSERT INTO `weather_city` VALUES ('293', '内蒙古', '乌兰察布', '丰镇');
+INSERT INTO `weather_city` VALUES ('294', '内蒙古', '通辽', '通辽');
+INSERT INTO `weather_city` VALUES ('295', '内蒙古', '通辽', '舍伯吐');
+INSERT INTO `weather_city` VALUES ('296', '内蒙古', '通辽', '科左中旗');
+INSERT INTO `weather_city` VALUES ('297', '内蒙古', '通辽', '科左后旗');
+INSERT INTO `weather_city` VALUES ('298', '内蒙古', '通辽', '青龙山');
+INSERT INTO `weather_city` VALUES ('299', '内蒙古', '通辽', '开鲁');
+INSERT INTO `weather_city` VALUES ('300', '内蒙古', '通辽', '库伦');
+INSERT INTO `weather_city` VALUES ('301', '内蒙古', '通辽', '奈曼');
+INSERT INTO `weather_city` VALUES ('302', '内蒙古', '通辽', '扎鲁特');
+INSERT INTO `weather_city` VALUES ('303', '内蒙古', '兴安盟', '高力板');
+INSERT INTO `weather_city` VALUES ('304', '内蒙古', '通辽', '巴雅尔吐胡硕');
+INSERT INTO `weather_city` VALUES ('305', '内蒙古', '赤峰', '赤峰');
+INSERT INTO `weather_city` VALUES ('306', '内蒙古', '赤峰', '阿鲁旗');
+INSERT INTO `weather_city` VALUES ('307', '内蒙古', '赤峰', '浩尔吐');
+INSERT INTO `weather_city` VALUES ('308', '内蒙古', '赤峰', '巴林左旗');
+INSERT INTO `weather_city` VALUES ('309', '内蒙古', '赤峰', '巴林右旗');
+INSERT INTO `weather_city` VALUES ('310', '内蒙古', '赤峰', '林西');
+INSERT INTO `weather_city` VALUES ('311', '内蒙古', '赤峰', '克什克腾');
+INSERT INTO `weather_city` VALUES ('312', '内蒙古', '赤峰', '翁牛特');
+INSERT INTO `weather_city` VALUES ('313', '内蒙古', '赤峰', '岗子');
+INSERT INTO `weather_city` VALUES ('314', '内蒙古', '赤峰', '喀喇沁');
+INSERT INTO `weather_city` VALUES ('315', '内蒙古', '赤峰', '八里罕');
+INSERT INTO `weather_city` VALUES ('316', '内蒙古', '赤峰', '宁城');
+INSERT INTO `weather_city` VALUES ('317', '内蒙古', '赤峰', '敖汉');
+INSERT INTO `weather_city` VALUES ('318', '内蒙古', '赤峰', '宝国吐');
+INSERT INTO `weather_city` VALUES ('319', '内蒙古', '鄂尔多斯', '鄂尔多斯');
+INSERT INTO `weather_city` VALUES ('320', '内蒙古', '鄂尔多斯', '达拉特');
+INSERT INTO `weather_city` VALUES ('321', '内蒙古', '鄂尔多斯', '准格尔');
+INSERT INTO `weather_city` VALUES ('322', '内蒙古', '鄂尔多斯', '鄂前旗');
+INSERT INTO `weather_city` VALUES ('323', '内蒙古', '鄂尔多斯', '河南');
+INSERT INTO `weather_city` VALUES ('324', '内蒙古', '鄂尔多斯', '伊克乌素');
+INSERT INTO `weather_city` VALUES ('325', '内蒙古', '鄂尔多斯', '鄂托克');
+INSERT INTO `weather_city` VALUES ('326', '内蒙古', '鄂尔多斯', '杭锦旗');
+INSERT INTO `weather_city` VALUES ('327', '内蒙古', '鄂尔多斯', '乌审旗');
+INSERT INTO `weather_city` VALUES ('328', '内蒙古', '鄂尔多斯', '伊金霍洛');
+INSERT INTO `weather_city` VALUES ('329', '内蒙古', '鄂尔多斯', '乌审召');
+INSERT INTO `weather_city` VALUES ('330', '内蒙古', '鄂尔多斯', '东胜');
+INSERT INTO `weather_city` VALUES ('331', '内蒙古', '巴彦淖尔', '临河');
+INSERT INTO `weather_city` VALUES ('332', '内蒙古', '巴彦淖尔', '五原');
+INSERT INTO `weather_city` VALUES ('333', '内蒙古', '巴彦淖尔', '磴口');
+INSERT INTO `weather_city` VALUES ('334', '内蒙古', '巴彦淖尔', '乌前旗');
+INSERT INTO `weather_city` VALUES ('335', '内蒙古', '巴彦淖尔', '大佘太');
+INSERT INTO `weather_city` VALUES ('336', '内蒙古', '巴彦淖尔', '乌中旗');
+INSERT INTO `weather_city` VALUES ('337', '内蒙古', '巴彦淖尔', '乌后旗');
+INSERT INTO `weather_city` VALUES ('338', '内蒙古', '巴彦淖尔', '海力素');
+INSERT INTO `weather_city` VALUES ('339', '内蒙古', '巴彦淖尔', '那仁宝力格');
+INSERT INTO `weather_city` VALUES ('340', '内蒙古', '巴彦淖尔', '杭锦后旗');
+INSERT INTO `weather_city` VALUES ('341', '内蒙古', '锡林郭勒', '锡林浩特');
+INSERT INTO `weather_city` VALUES ('342', '内蒙古', '锡林郭勒', '二连浩特');
+INSERT INTO `weather_city` VALUES ('343', '内蒙古', '锡林郭勒', '阿巴嘎');
+INSERT INTO `weather_city` VALUES ('344', '内蒙古', '锡林郭勒', '苏左旗');
+INSERT INTO `weather_city` VALUES ('345', '内蒙古', '锡林郭勒', '苏右旗');
+INSERT INTO `weather_city` VALUES ('346', '内蒙古', '锡林郭勒', '朱日和');
+INSERT INTO `weather_city` VALUES ('347', '内蒙古', '锡林郭勒', '东乌旗');
+INSERT INTO `weather_city` VALUES ('348', '内蒙古', '锡林郭勒', '西乌旗');
+INSERT INTO `weather_city` VALUES ('349', '内蒙古', '锡林郭勒', '太仆寺');
+INSERT INTO `weather_city` VALUES ('350', '内蒙古', '锡林郭勒', '镶黄旗');
+INSERT INTO `weather_city` VALUES ('351', '内蒙古', '锡林郭勒', '正镶白旗');
+INSERT INTO `weather_city` VALUES ('352', '内蒙古', '锡林郭勒', '正兰旗');
+INSERT INTO `weather_city` VALUES ('353', '内蒙古', '锡林郭勒', '多伦');
+INSERT INTO `weather_city` VALUES ('354', '内蒙古', '锡林郭勒', '博克图');
+INSERT INTO `weather_city` VALUES ('355', '内蒙古', '锡林郭勒', '乌拉盖');
+INSERT INTO `weather_city` VALUES ('356', '内蒙古', '呼伦贝尔', '呼伦贝尔');
+INSERT INTO `weather_city` VALUES ('357', '内蒙古', '呼伦贝尔', '海拉尔');
+INSERT INTO `weather_city` VALUES ('358', '内蒙古', '呼伦贝尔', '小二沟');
+INSERT INTO `weather_city` VALUES ('359', '内蒙古', '呼伦贝尔', '阿荣旗');
+INSERT INTO `weather_city` VALUES ('360', '内蒙古', '呼伦贝尔', '莫力达瓦');
+INSERT INTO `weather_city` VALUES ('361', '内蒙古', '呼伦贝尔', '鄂伦春旗');
+INSERT INTO `weather_city` VALUES ('362', '内蒙古', '呼伦贝尔', '鄂温克旗');
+INSERT INTO `weather_city` VALUES ('363', '内蒙古', '呼伦贝尔', '陈旗');
+INSERT INTO `weather_city` VALUES ('364', '内蒙古', '呼伦贝尔', '新左旗');
+INSERT INTO `weather_city` VALUES ('365', '内蒙古', '呼伦贝尔', '新右旗');
+INSERT INTO `weather_city` VALUES ('366', '内蒙古', '呼伦贝尔', '满洲里');
+INSERT INTO `weather_city` VALUES ('367', '内蒙古', '呼伦贝尔', '牙克石');
+INSERT INTO `weather_city` VALUES ('368', '内蒙古', '呼伦贝尔', '扎兰屯');
+INSERT INTO `weather_city` VALUES ('369', '内蒙古', '呼伦贝尔', '额尔古纳');
+INSERT INTO `weather_city` VALUES ('370', '内蒙古', '呼伦贝尔', '根河');
+INSERT INTO `weather_city` VALUES ('371', '内蒙古', '呼伦贝尔', '图里河');
+INSERT INTO `weather_city` VALUES ('372', '内蒙古', '兴安盟', '乌兰浩特');
+INSERT INTO `weather_city` VALUES ('373', '内蒙古', '兴安盟', '阿尔山');
+INSERT INTO `weather_city` VALUES ('374', '内蒙古', '兴安盟', '科右中旗');
+INSERT INTO `weather_city` VALUES ('375', '内蒙古', '兴安盟', '胡尔勒');
+INSERT INTO `weather_city` VALUES ('376', '内蒙古', '兴安盟', '扎赉特');
+INSERT INTO `weather_city` VALUES ('377', '内蒙古', '兴安盟', '索伦');
+INSERT INTO `weather_city` VALUES ('378', '内蒙古', '兴安盟', '突泉');
+INSERT INTO `weather_city` VALUES ('379', '内蒙古', '通辽', '霍林郭勒');
+INSERT INTO `weather_city` VALUES ('380', '内蒙古', '兴安盟', '科右前旗');
+INSERT INTO `weather_city` VALUES ('381', '内蒙古', '阿拉善盟', '阿左旗');
+INSERT INTO `weather_city` VALUES ('382', '内蒙古', '阿拉善盟', '阿右旗');
+INSERT INTO `weather_city` VALUES ('383', '内蒙古', '阿拉善盟', '额济纳');
+INSERT INTO `weather_city` VALUES ('384', '内蒙古', '阿拉善盟', '拐子湖');
+INSERT INTO `weather_city` VALUES ('385', '内蒙古', '阿拉善盟', '吉兰太');
+INSERT INTO `weather_city` VALUES ('386', '内蒙古', '阿拉善盟', '锡林高勒');
+INSERT INTO `weather_city` VALUES ('387', '内蒙古', '阿拉善盟', '头道湖');
+INSERT INTO `weather_city` VALUES ('388', '内蒙古', '阿拉善盟', '中泉子');
+INSERT INTO `weather_city` VALUES ('389', '内蒙古', '阿拉善盟', '诺尔公');
+INSERT INTO `weather_city` VALUES ('390', '内蒙古', '阿拉善盟', '雅布赖');
+INSERT INTO `weather_city` VALUES ('391', '内蒙古', '阿拉善盟', '乌斯泰');
+INSERT INTO `weather_city` VALUES ('392', '内蒙古', '阿拉善盟', '孪井滩');
+INSERT INTO `weather_city` VALUES ('393', '河北', '石家庄', '石家庄');
+INSERT INTO `weather_city` VALUES ('394', '河北', '石家庄', '井陉');
+INSERT INTO `weather_city` VALUES ('395', '河北', '石家庄', '正定');
+INSERT INTO `weather_city` VALUES ('396', '河北', '石家庄', '栾城');
+INSERT INTO `weather_city` VALUES ('397', '河北', '石家庄', '行唐');
+INSERT INTO `weather_city` VALUES ('398', '河北', '石家庄', '灵寿');
+INSERT INTO `weather_city` VALUES ('399', '河北', '石家庄', '高邑');
+INSERT INTO `weather_city` VALUES ('400', '河北', '石家庄', '深泽');
+INSERT INTO `weather_city` VALUES ('401', '河北', '石家庄', '赞皇');
+INSERT INTO `weather_city` VALUES ('402', '河北', '石家庄', '无极');
+INSERT INTO `weather_city` VALUES ('403', '河北', '石家庄', '平山');
+INSERT INTO `weather_city` VALUES ('404', '河北', '石家庄', '元氏');
+INSERT INTO `weather_city` VALUES ('405', '河北', '石家庄', '赵县');
+INSERT INTO `weather_city` VALUES ('406', '河北', '石家庄', '辛集');
+INSERT INTO `weather_city` VALUES ('407', '河北', '石家庄', '藁城');
+INSERT INTO `weather_city` VALUES ('408', '河北', '石家庄', '晋州');
+INSERT INTO `weather_city` VALUES ('409', '河北', '石家庄', '新乐');
+INSERT INTO `weather_city` VALUES ('410', '河北', '石家庄', '鹿泉');
+INSERT INTO `weather_city` VALUES ('411', '河北', '保定', '保定');
+INSERT INTO `weather_city` VALUES ('412', '河北', '保定', '满城');
+INSERT INTO `weather_city` VALUES ('413', '河北', '保定', '阜平');
+INSERT INTO `weather_city` VALUES ('414', '河北', '保定', '徐水');
+INSERT INTO `weather_city` VALUES ('415', '河北', '保定', '唐县');
+INSERT INTO `weather_city` VALUES ('416', '河北', '保定', '高阳');
+INSERT INTO `weather_city` VALUES ('417', '河北', '保定', '容城');
+INSERT INTO `weather_city` VALUES ('418', '河北', '保定', '涞源');
+INSERT INTO `weather_city` VALUES ('419', '河北', '保定', '望都');
+INSERT INTO `weather_city` VALUES ('420', '河北', '保定', '安新');
+INSERT INTO `weather_city` VALUES ('421', '河北', '保定', '易县');
+INSERT INTO `weather_city` VALUES ('422', '河北', '保定', '曲阳');
+INSERT INTO `weather_city` VALUES ('423', '河北', '保定', '蠡县');
+INSERT INTO `weather_city` VALUES ('424', '河北', '保定', '顺平');
+INSERT INTO `weather_city` VALUES ('425', '河北', '保定', '雄县');
+INSERT INTO `weather_city` VALUES ('426', '河北', '保定', '涿州');
+INSERT INTO `weather_city` VALUES ('427', '河北', '保定', '定州');
+INSERT INTO `weather_city` VALUES ('428', '河北', '保定', '安国');
+INSERT INTO `weather_city` VALUES ('429', '河北', '保定', '高碑店');
+INSERT INTO `weather_city` VALUES ('430', '河北', '保定', '涞水');
+INSERT INTO `weather_city` VALUES ('431', '河北', '保定', '定兴');
+INSERT INTO `weather_city` VALUES ('432', '河北', '保定', '清苑');
+INSERT INTO `weather_city` VALUES ('433', '河北', '保定', '博野');
+INSERT INTO `weather_city` VALUES ('434', '河北', '张家口', '张家口');
+INSERT INTO `weather_city` VALUES ('435', '河北', '张家口', '宣化');
+INSERT INTO `weather_city` VALUES ('436', '河北', '张家口', '张北');
+INSERT INTO `weather_city` VALUES ('437', '河北', '张家口', '康保');
+INSERT INTO `weather_city` VALUES ('438', '河北', '张家口', '沽源');
+INSERT INTO `weather_city` VALUES ('439', '河北', '张家口', '尚义');
+INSERT INTO `weather_city` VALUES ('440', '河北', '张家口', '蔚县');
+INSERT INTO `weather_city` VALUES ('441', '河北', '张家口', '阳原');
+INSERT INTO `weather_city` VALUES ('442', '河北', '张家口', '怀安');
+INSERT INTO `weather_city` VALUES ('443', '河北', '张家口', '万全');
+INSERT INTO `weather_city` VALUES ('444', '河北', '张家口', '怀来');
+INSERT INTO `weather_city` VALUES ('445', '河北', '张家口', '涿鹿');
+INSERT INTO `weather_city` VALUES ('446', '河北', '张家口', '赤城');
+INSERT INTO `weather_city` VALUES ('447', '河北', '张家口', '崇礼');
+INSERT INTO `weather_city` VALUES ('448', '河北', '承德', '承德');
+INSERT INTO `weather_city` VALUES ('449', '河北', '承德', '承德县');
+INSERT INTO `weather_city` VALUES ('450', '河北', '承德', '兴隆');
+INSERT INTO `weather_city` VALUES ('451', '河北', '承德', '平泉');
+INSERT INTO `weather_city` VALUES ('452', '河北', '承德', '滦平');
+INSERT INTO `weather_city` VALUES ('453', '河北', '承德', '隆化');
+INSERT INTO `weather_city` VALUES ('454', '河北', '承德', '丰宁');
+INSERT INTO `weather_city` VALUES ('455', '河北', '承德', '宽城');
+INSERT INTO `weather_city` VALUES ('456', '河北', '承德', '围场');
+INSERT INTO `weather_city` VALUES ('457', '河北', '唐山', '唐山');
+INSERT INTO `weather_city` VALUES ('458', '河北', '唐山', '丰南');
+INSERT INTO `weather_city` VALUES ('459', '河北', '唐山', '丰润');
+INSERT INTO `weather_city` VALUES ('460', '河北', '唐山', '滦县');
+INSERT INTO `weather_city` VALUES ('461', '河北', '唐山', '滦南');
+INSERT INTO `weather_city` VALUES ('462', '河北', '唐山', '乐亭');
+INSERT INTO `weather_city` VALUES ('463', '河北', '唐山', '迁西');
+INSERT INTO `weather_city` VALUES ('464', '河北', '唐山', '玉田');
+INSERT INTO `weather_city` VALUES ('465', '河北', '唐山', '唐海');
+INSERT INTO `weather_city` VALUES ('466', '河北', '唐山', '遵化');
+INSERT INTO `weather_city` VALUES ('467', '河北', '唐山', '迁安');
+INSERT INTO `weather_city` VALUES ('468', '河北', '唐山', '曹妃甸');
+INSERT INTO `weather_city` VALUES ('469', '河北', '廊坊', '廊坊');
+INSERT INTO `weather_city` VALUES ('470', '河北', '廊坊', '固安');
+INSERT INTO `weather_city` VALUES ('471', '河北', '廊坊', '永清');
+INSERT INTO `weather_city` VALUES ('472', '河北', '廊坊', '香河');
+INSERT INTO `weather_city` VALUES ('473', '河北', '廊坊', '大城');
+INSERT INTO `weather_city` VALUES ('474', '河北', '廊坊', '文安');
+INSERT INTO `weather_city` VALUES ('475', '河北', '廊坊', '大厂');
+INSERT INTO `weather_city` VALUES ('476', '河北', '廊坊', '霸州');
+INSERT INTO `weather_city` VALUES ('477', '河北', '廊坊', '三河');
+INSERT INTO `weather_city` VALUES ('478', '河北', '沧州', '沧州');
+INSERT INTO `weather_city` VALUES ('479', '河北', '沧州', '青县');
+INSERT INTO `weather_city` VALUES ('480', '河北', '沧州', '东光');
+INSERT INTO `weather_city` VALUES ('481', '河北', '沧州', '海兴');
+INSERT INTO `weather_city` VALUES ('482', '河北', '沧州', '盐山');
+INSERT INTO `weather_city` VALUES ('483', '河北', '沧州', '肃宁');
+INSERT INTO `weather_city` VALUES ('484', '河北', '沧州', '南皮');
+INSERT INTO `weather_city` VALUES ('485', '河北', '沧州', '吴桥');
+INSERT INTO `weather_city` VALUES ('486', '河北', '沧州', '献县');
+INSERT INTO `weather_city` VALUES ('487', '河北', '沧州', '孟村');
+INSERT INTO `weather_city` VALUES ('488', '河北', '沧州', '泊头');
+INSERT INTO `weather_city` VALUES ('489', '河北', '沧州', '任丘');
+INSERT INTO `weather_city` VALUES ('490', '河北', '沧州', '黄骅');
+INSERT INTO `weather_city` VALUES ('491', '河北', '沧州', '河间');
+INSERT INTO `weather_city` VALUES ('492', '河北', '沧州', '沧县');
+INSERT INTO `weather_city` VALUES ('493', '河北', '衡水', '衡水');
+INSERT INTO `weather_city` VALUES ('494', '河北', '衡水', '枣强');
+INSERT INTO `weather_city` VALUES ('495', '河北', '衡水', '武邑');
+INSERT INTO `weather_city` VALUES ('496', '河北', '衡水', '武强');
+INSERT INTO `weather_city` VALUES ('497', '河北', '衡水', '饶阳');
+INSERT INTO `weather_city` VALUES ('498', '河北', '衡水', '安平');
+INSERT INTO `weather_city` VALUES ('499', '河北', '衡水', '故城');
+INSERT INTO `weather_city` VALUES ('500', '河北', '衡水', '景县');
+INSERT INTO `weather_city` VALUES ('501', '河北', '衡水', '阜城');
+INSERT INTO `weather_city` VALUES ('502', '河北', '衡水', '冀州');
+INSERT INTO `weather_city` VALUES ('503', '河北', '衡水', '深州');
+INSERT INTO `weather_city` VALUES ('504', '河北', '邢台', '邢台');
+INSERT INTO `weather_city` VALUES ('505', '河北', '邢台', '临城');
+INSERT INTO `weather_city` VALUES ('506', '河北', '邢台', '内丘');
+INSERT INTO `weather_city` VALUES ('507', '河北', '邢台', '柏乡');
+INSERT INTO `weather_city` VALUES ('508', '河北', '邢台', '隆尧');
+INSERT INTO `weather_city` VALUES ('509', '河北', '邢台', '南和');
+INSERT INTO `weather_city` VALUES ('510', '河北', '邢台', '宁晋');
+INSERT INTO `weather_city` VALUES ('511', '河北', '邢台', '巨鹿');
+INSERT INTO `weather_city` VALUES ('512', '河北', '邢台', '新河');
+INSERT INTO `weather_city` VALUES ('513', '河北', '邢台', '广宗');
+INSERT INTO `weather_city` VALUES ('514', '河北', '邢台', '平乡');
+INSERT INTO `weather_city` VALUES ('515', '河北', '邢台', '威县');
+INSERT INTO `weather_city` VALUES ('516', '河北', '邢台', '清河');
+INSERT INTO `weather_city` VALUES ('517', '河北', '邢台', '临西');
+INSERT INTO `weather_city` VALUES ('518', '河北', '邢台', '南宫');
+INSERT INTO `weather_city` VALUES ('519', '河北', '邢台', '沙河');
+INSERT INTO `weather_city` VALUES ('520', '河北', '邢台', '任县');
+INSERT INTO `weather_city` VALUES ('521', '河北', '邯郸', '邯郸');
+INSERT INTO `weather_city` VALUES ('522', '河北', '邯郸', '峰峰');
+INSERT INTO `weather_city` VALUES ('523', '河北', '邯郸', '临漳');
+INSERT INTO `weather_city` VALUES ('524', '河北', '邯郸', '成安');
+INSERT INTO `weather_city` VALUES ('525', '河北', '邯郸', '大名');
+INSERT INTO `weather_city` VALUES ('526', '河北', '邯郸', '涉县');
+INSERT INTO `weather_city` VALUES ('527', '河北', '邯郸', '磁县');
+INSERT INTO `weather_city` VALUES ('528', '河北', '邯郸', '肥乡');
+INSERT INTO `weather_city` VALUES ('529', '河北', '邯郸', '永年');
+INSERT INTO `weather_city` VALUES ('530', '河北', '邯郸', '邱县');
+INSERT INTO `weather_city` VALUES ('531', '河北', '邯郸', '鸡泽');
+INSERT INTO `weather_city` VALUES ('532', '河北', '邯郸', '广平');
+INSERT INTO `weather_city` VALUES ('533', '河北', '邯郸', '馆陶');
+INSERT INTO `weather_city` VALUES ('534', '河北', '邯郸', '魏县');
+INSERT INTO `weather_city` VALUES ('535', '河北', '邯郸', '曲周');
+INSERT INTO `weather_city` VALUES ('536', '河北', '邯郸', '武安');
+INSERT INTO `weather_city` VALUES ('537', '河北', '秦皇岛', '秦皇岛');
+INSERT INTO `weather_city` VALUES ('538', '河北', '秦皇岛', '青龙');
+INSERT INTO `weather_city` VALUES ('539', '河北', '秦皇岛', '昌黎');
+INSERT INTO `weather_city` VALUES ('540', '河北', '秦皇岛', '抚宁');
+INSERT INTO `weather_city` VALUES ('541', '河北', '秦皇岛', '卢龙');
+INSERT INTO `weather_city` VALUES ('542', '河北', '秦皇岛', '北戴河');
+INSERT INTO `weather_city` VALUES ('543', '山西', '太原', '太原');
+INSERT INTO `weather_city` VALUES ('544', '山西', '太原', '清徐');
+INSERT INTO `weather_city` VALUES ('545', '山西', '太原', '阳曲');
+INSERT INTO `weather_city` VALUES ('546', '山西', '太原', '娄烦');
+INSERT INTO `weather_city` VALUES ('547', '山西', '太原', '古交');
+INSERT INTO `weather_city` VALUES ('548', '山西', '太原', '尖草坪区');
+INSERT INTO `weather_city` VALUES ('549', '山西', '太原', '小店区');
+INSERT INTO `weather_city` VALUES ('550', '山西', '大同', '大同');
+INSERT INTO `weather_city` VALUES ('551', '山西', '大同', '阳高');
+INSERT INTO `weather_city` VALUES ('552', '山西', '大同', '大同县');
+INSERT INTO `weather_city` VALUES ('553', '山西', '大同', '天镇');
+INSERT INTO `weather_city` VALUES ('554', '山西', '大同', '广灵');
+INSERT INTO `weather_city` VALUES ('555', '山西', '大同', '灵丘');
+INSERT INTO `weather_city` VALUES ('556', '山西', '大同', '浑源');
+INSERT INTO `weather_city` VALUES ('557', '山西', '大同', '左云');
+INSERT INTO `weather_city` VALUES ('558', '山西', '阳泉', '阳泉');
+INSERT INTO `weather_city` VALUES ('559', '山西', '阳泉', '盂县');
+INSERT INTO `weather_city` VALUES ('560', '山西', '阳泉', '平定');
+INSERT INTO `weather_city` VALUES ('561', '山西', '晋中', '晋中');
+INSERT INTO `weather_city` VALUES ('562', '山西', '晋中', '榆次');
+INSERT INTO `weather_city` VALUES ('563', '山西', '晋中', '榆社');
+INSERT INTO `weather_city` VALUES ('564', '山西', '晋中', '左权');
+INSERT INTO `weather_city` VALUES ('565', '山西', '晋中', '和顺');
+INSERT INTO `weather_city` VALUES ('566', '山西', '晋中', '昔阳');
+INSERT INTO `weather_city` VALUES ('567', '山西', '晋中', '寿阳');
+INSERT INTO `weather_city` VALUES ('568', '山西', '晋中', '太谷');
+INSERT INTO `weather_city` VALUES ('569', '山西', '晋中', '祁县');
+INSERT INTO `weather_city` VALUES ('570', '山西', '晋中', '平遥');
+INSERT INTO `weather_city` VALUES ('571', '山西', '晋中', '灵石');
+INSERT INTO `weather_city` VALUES ('572', '山西', '晋中', '介休');
+INSERT INTO `weather_city` VALUES ('573', '山西', '长治', '长治');
+INSERT INTO `weather_city` VALUES ('574', '山西', '长治', '黎城');
+INSERT INTO `weather_city` VALUES ('575', '山西', '长治', '屯留');
+INSERT INTO `weather_city` VALUES ('576', '山西', '长治', '潞城');
+INSERT INTO `weather_city` VALUES ('577', '山西', '长治', '襄垣');
+INSERT INTO `weather_city` VALUES ('578', '山西', '长治', '平顺');
+INSERT INTO `weather_city` VALUES ('579', '山西', '长治', '武乡');
+INSERT INTO `weather_city` VALUES ('580', '山西', '长治', '沁县');
+INSERT INTO `weather_city` VALUES ('581', '山西', '长治', '长子');
+INSERT INTO `weather_city` VALUES ('582', '山西', '长治', '沁源');
+INSERT INTO `weather_city` VALUES ('583', '山西', '长治', '壶关');
+INSERT INTO `weather_city` VALUES ('584', '山西', '晋城', '晋城');
+INSERT INTO `weather_city` VALUES ('585', '山西', '晋城', '沁水');
+INSERT INTO `weather_city` VALUES ('586', '山西', '晋城', '阳城');
+INSERT INTO `weather_city` VALUES ('587', '山西', '晋城', '陵川');
+INSERT INTO `weather_city` VALUES ('588', '山西', '晋城', '高平');
+INSERT INTO `weather_city` VALUES ('589', '山西', '晋城', '泽州');
+INSERT INTO `weather_city` VALUES ('590', '山西', '临汾', '临汾');
+INSERT INTO `weather_city` VALUES ('591', '山西', '临汾', '曲沃');
+INSERT INTO `weather_city` VALUES ('592', '山西', '临汾', '永和');
+INSERT INTO `weather_city` VALUES ('593', '山西', '临汾', '隰县');
+INSERT INTO `weather_city` VALUES ('594', '山西', '临汾', '大宁');
+INSERT INTO `weather_city` VALUES ('595', '山西', '临汾', '吉县');
+INSERT INTO `weather_city` VALUES ('596', '山西', '临汾', '襄汾');
+INSERT INTO `weather_city` VALUES ('597', '山西', '临汾', '蒲县');
+INSERT INTO `weather_city` VALUES ('598', '山西', '临汾', '汾西');
+INSERT INTO `weather_city` VALUES ('599', '山西', '临汾', '洪洞');
+INSERT INTO `weather_city` VALUES ('600', '山西', '临汾', '霍州');
+INSERT INTO `weather_city` VALUES ('601', '山西', '临汾', '乡宁');
+INSERT INTO `weather_city` VALUES ('602', '山西', '临汾', '翼城');
+INSERT INTO `weather_city` VALUES ('603', '山西', '临汾', '侯马');
+INSERT INTO `weather_city` VALUES ('604', '山西', '临汾', '浮山');
+INSERT INTO `weather_city` VALUES ('605', '山西', '临汾', '安泽');
+INSERT INTO `weather_city` VALUES ('606', '山西', '临汾', '古县');
+INSERT INTO `weather_city` VALUES ('607', '山西', '运城', '运城');
+INSERT INTO `weather_city` VALUES ('608', '山西', '运城', '临猗');
+INSERT INTO `weather_city` VALUES ('609', '山西', '运城', '稷山');
+INSERT INTO `weather_city` VALUES ('610', '山西', '运城', '万荣');
+INSERT INTO `weather_city` VALUES ('611', '山西', '运城', '河津');
+INSERT INTO `weather_city` VALUES ('612', '山西', '运城', '新绛');
+INSERT INTO `weather_city` VALUES ('613', '山西', '运城', '绛县');
+INSERT INTO `weather_city` VALUES ('614', '山西', '运城', '闻喜');
+INSERT INTO `weather_city` VALUES ('615', '山西', '运城', '垣曲');
+INSERT INTO `weather_city` VALUES ('616', '山西', '运城', '永济');
+INSERT INTO `weather_city` VALUES ('617', '山西', '运城', '芮城');
+INSERT INTO `weather_city` VALUES ('618', '山西', '运城', '夏县');
+INSERT INTO `weather_city` VALUES ('619', '山西', '运城', '平陆');
+INSERT INTO `weather_city` VALUES ('620', '山西', '朔州', '朔州');
+INSERT INTO `weather_city` VALUES ('621', '山西', '朔州', '平鲁');
+INSERT INTO `weather_city` VALUES ('622', '山西', '朔州', '山阴');
+INSERT INTO `weather_city` VALUES ('623', '山西', '朔州', '右玉');
+INSERT INTO `weather_city` VALUES ('624', '山西', '朔州', '应县');
+INSERT INTO `weather_city` VALUES ('625', '山西', '朔州', '怀仁');
+INSERT INTO `weather_city` VALUES ('626', '山西', '忻州', '忻州');
+INSERT INTO `weather_city` VALUES ('627', '山西', '忻州', '定襄');
+INSERT INTO `weather_city` VALUES ('628', '山西', '忻州', '五台县');
+INSERT INTO `weather_city` VALUES ('629', '山西', '忻州', '河曲');
+INSERT INTO `weather_city` VALUES ('630', '山西', '忻州', '偏关');
+INSERT INTO `weather_city` VALUES ('631', '山西', '忻州', '神池');
+INSERT INTO `weather_city` VALUES ('632', '山西', '忻州', '宁武');
+INSERT INTO `weather_city` VALUES ('633', '山西', '忻州', '代县');
+INSERT INTO `weather_city` VALUES ('634', '山西', '忻州', '繁峙');
+INSERT INTO `weather_city` VALUES ('635', '山西', '忻州', '五台山');
+INSERT INTO `weather_city` VALUES ('636', '山西', '忻州', '保德');
+INSERT INTO `weather_city` VALUES ('637', '山西', '忻州', '静乐');
+INSERT INTO `weather_city` VALUES ('638', '山西', '忻州', '岢岚');
+INSERT INTO `weather_city` VALUES ('639', '山西', '忻州', '五寨');
+INSERT INTO `weather_city` VALUES ('640', '山西', '忻州', '原平');
+INSERT INTO `weather_city` VALUES ('641', '山西', '吕梁', '吕梁');
+INSERT INTO `weather_city` VALUES ('642', '山西', '吕梁', '离石');
+INSERT INTO `weather_city` VALUES ('643', '山西', '吕梁', '临县');
+INSERT INTO `weather_city` VALUES ('644', '山西', '吕梁', '兴县');
+INSERT INTO `weather_city` VALUES ('645', '山西', '吕梁', '岚县');
+INSERT INTO `weather_city` VALUES ('646', '山西', '吕梁', '柳林');
+INSERT INTO `weather_city` VALUES ('647', '山西', '吕梁', '石楼');
+INSERT INTO `weather_city` VALUES ('648', '山西', '吕梁', '方山');
+INSERT INTO `weather_city` VALUES ('649', '山西', '吕梁', '交口');
+INSERT INTO `weather_city` VALUES ('650', '山西', '吕梁', '中阳');
+INSERT INTO `weather_city` VALUES ('651', '山西', '吕梁', '孝义');
+INSERT INTO `weather_city` VALUES ('652', '山西', '吕梁', '汾阳');
+INSERT INTO `weather_city` VALUES ('653', '山西', '吕梁', '文水');
+INSERT INTO `weather_city` VALUES ('654', '山西', '吕梁', '交城');
+INSERT INTO `weather_city` VALUES ('655', '陕西', '西安', '西安');
+INSERT INTO `weather_city` VALUES ('656', '陕西', '西安', '长安');
+INSERT INTO `weather_city` VALUES ('657', '陕西', '西安', '临潼');
+INSERT INTO `weather_city` VALUES ('658', '陕西', '西安', '蓝田');
+INSERT INTO `weather_city` VALUES ('659', '陕西', '西安', '周至');
+INSERT INTO `weather_city` VALUES ('660', '陕西', '西安', '户县');
+INSERT INTO `weather_city` VALUES ('661', '陕西', '西安', '高陵');
+INSERT INTO `weather_city` VALUES ('662', '陕西', '咸阳', '咸阳');
+INSERT INTO `weather_city` VALUES ('663', '陕西', '咸阳', '三原');
+INSERT INTO `weather_city` VALUES ('664', '陕西', '咸阳', '礼泉');
+INSERT INTO `weather_city` VALUES ('665', '陕西', '咸阳', '永寿');
+INSERT INTO `weather_city` VALUES ('666', '陕西', '咸阳', '淳化');
+INSERT INTO `weather_city` VALUES ('667', '陕西', '咸阳', '泾阳');
+INSERT INTO `weather_city` VALUES ('668', '陕西', '咸阳', '武功');
+INSERT INTO `weather_city` VALUES ('669', '陕西', '咸阳', '乾县');
+INSERT INTO `weather_city` VALUES ('670', '陕西', '咸阳', '彬县');
+INSERT INTO `weather_city` VALUES ('671', '陕西', '咸阳', '长武');
+INSERT INTO `weather_city` VALUES ('672', '陕西', '咸阳', '旬邑');
+INSERT INTO `weather_city` VALUES ('673', '陕西', '咸阳', '兴平');
+INSERT INTO `weather_city` VALUES ('674', '陕西', '延安', '延安');
+INSERT INTO `weather_city` VALUES ('675', '陕西', '延安', '延长');
+INSERT INTO `weather_city` VALUES ('676', '陕西', '延安', '延川');
+INSERT INTO `weather_city` VALUES ('677', '陕西', '延安', '子长');
+INSERT INTO `weather_city` VALUES ('678', '陕西', '延安', '宜川');
+INSERT INTO `weather_city` VALUES ('679', '陕西', '延安', '富县');
+INSERT INTO `weather_city` VALUES ('680', '陕西', '延安', '志丹');
+INSERT INTO `weather_city` VALUES ('681', '陕西', '延安', '安塞');
+INSERT INTO `weather_city` VALUES ('682', '陕西', '延安', '甘泉');
+INSERT INTO `weather_city` VALUES ('683', '陕西', '延安', '洛川');
+INSERT INTO `weather_city` VALUES ('684', '陕西', '延安', '黄陵');
+INSERT INTO `weather_city` VALUES ('685', '陕西', '延安', '黄龙');
+INSERT INTO `weather_city` VALUES ('686', '陕西', '延安', '吴起');
+INSERT INTO `weather_city` VALUES ('687', '陕西', '榆林', '榆林');
+INSERT INTO `weather_city` VALUES ('688', '陕西', '榆林', '府谷');
+INSERT INTO `weather_city` VALUES ('689', '陕西', '榆林', '神木');
+INSERT INTO `weather_city` VALUES ('690', '陕西', '榆林', '佳县');
+INSERT INTO `weather_city` VALUES ('691', '陕西', '榆林', '定边');
+INSERT INTO `weather_city` VALUES ('692', '陕西', '榆林', '靖边');
+INSERT INTO `weather_city` VALUES ('693', '陕西', '榆林', '横山');
+INSERT INTO `weather_city` VALUES ('694', '陕西', '榆林', '米脂');
+INSERT INTO `weather_city` VALUES ('695', '陕西', '榆林', '子洲');
+INSERT INTO `weather_city` VALUES ('696', '陕西', '榆林', '绥德');
+INSERT INTO `weather_city` VALUES ('697', '陕西', '榆林', '吴堡');
+INSERT INTO `weather_city` VALUES ('698', '陕西', '榆林', '清涧');
+INSERT INTO `weather_city` VALUES ('699', '陕西', '榆林', '榆阳');
+INSERT INTO `weather_city` VALUES ('700', '陕西', '渭南', '渭南');
+INSERT INTO `weather_city` VALUES ('701', '陕西', '渭南', '华县');
+INSERT INTO `weather_city` VALUES ('702', '陕西', '渭南', '潼关');
+INSERT INTO `weather_city` VALUES ('703', '陕西', '渭南', '大荔');
+INSERT INTO `weather_city` VALUES ('704', '陕西', '渭南', '白水');
+INSERT INTO `weather_city` VALUES ('705', '陕西', '渭南', '富平');
+INSERT INTO `weather_city` VALUES ('706', '陕西', '渭南', '蒲城');
+INSERT INTO `weather_city` VALUES ('707', '陕西', '渭南', '澄城');
+INSERT INTO `weather_city` VALUES ('708', '陕西', '渭南', '合阳');
+INSERT INTO `weather_city` VALUES ('709', '陕西', '渭南', '韩城');
+INSERT INTO `weather_city` VALUES ('710', '陕西', '渭南', '华阴');
+INSERT INTO `weather_city` VALUES ('711', '陕西', '商洛', '商洛');
+INSERT INTO `weather_city` VALUES ('712', '陕西', '商洛', '洛南');
+INSERT INTO `weather_city` VALUES ('713', '陕西', '商洛', '柞水');
+INSERT INTO `weather_city` VALUES ('714', '陕西', '商洛', '商州');
+INSERT INTO `weather_city` VALUES ('715', '陕西', '商洛', '镇安');
+INSERT INTO `weather_city` VALUES ('716', '陕西', '商洛', '丹凤');
+INSERT INTO `weather_city` VALUES ('717', '陕西', '商洛', '商南');
+INSERT INTO `weather_city` VALUES ('718', '陕西', '商洛', '山阳');
+INSERT INTO `weather_city` VALUES ('719', '陕西', '安康', '安康');
+INSERT INTO `weather_city` VALUES ('720', '陕西', '安康', '紫阳');
+INSERT INTO `weather_city` VALUES ('721', '陕西', '安康', '石泉');
+INSERT INTO `weather_city` VALUES ('722', '陕西', '安康', '汉阴');
+INSERT INTO `weather_city` VALUES ('723', '陕西', '安康', '旬阳');
+INSERT INTO `weather_city` VALUES ('724', '陕西', '安康', '岚皋');
+INSERT INTO `weather_city` VALUES ('725', '陕西', '安康', '平利');
+INSERT INTO `weather_city` VALUES ('726', '陕西', '安康', '白河');
+INSERT INTO `weather_city` VALUES ('727', '陕西', '安康', '镇坪');
+INSERT INTO `weather_city` VALUES ('728', '陕西', '安康', '宁陕');
+INSERT INTO `weather_city` VALUES ('729', '陕西', '汉中', '汉中');
+INSERT INTO `weather_city` VALUES ('730', '陕西', '汉中', '略阳');
+INSERT INTO `weather_city` VALUES ('731', '陕西', '汉中', '勉县');
+INSERT INTO `weather_city` VALUES ('732', '陕西', '汉中', '留坝');
+INSERT INTO `weather_city` VALUES ('733', '陕西', '汉中', '洋县');
+INSERT INTO `weather_city` VALUES ('734', '陕西', '汉中', '城固');
+INSERT INTO `weather_city` VALUES ('735', '陕西', '汉中', '西乡');
+INSERT INTO `weather_city` VALUES ('736', '陕西', '汉中', '佛坪');
+INSERT INTO `weather_city` VALUES ('737', '陕西', '汉中', '宁强');
+INSERT INTO `weather_city` VALUES ('738', '陕西', '汉中', '南郑');
+INSERT INTO `weather_city` VALUES ('739', '陕西', '汉中', '镇巴');
+INSERT INTO `weather_city` VALUES ('740', '陕西', '宝鸡', '宝鸡');
+INSERT INTO `weather_city` VALUES ('741', '陕西', '宝鸡', '千阳');
+INSERT INTO `weather_city` VALUES ('742', '陕西', '宝鸡', '麟游');
+INSERT INTO `weather_city` VALUES ('743', '陕西', '宝鸡', '岐山');
+INSERT INTO `weather_city` VALUES ('744', '陕西', '宝鸡', '凤翔');
+INSERT INTO `weather_city` VALUES ('745', '陕西', '宝鸡', '扶风');
+INSERT INTO `weather_city` VALUES ('746', '陕西', '宝鸡', '眉县');
+INSERT INTO `weather_city` VALUES ('747', '陕西', '宝鸡', '太白');
+INSERT INTO `weather_city` VALUES ('748', '陕西', '宝鸡', '凤县');
+INSERT INTO `weather_city` VALUES ('749', '陕西', '宝鸡', '陇县');
+INSERT INTO `weather_city` VALUES ('750', '陕西', '宝鸡', '陈仓');
+INSERT INTO `weather_city` VALUES ('751', '陕西', '铜川', '铜川');
+INSERT INTO `weather_city` VALUES ('752', '陕西', '铜川', '耀县');
+INSERT INTO `weather_city` VALUES ('753', '陕西', '铜川', '宜君');
+INSERT INTO `weather_city` VALUES ('754', '陕西', '铜川', '耀州');
+INSERT INTO `weather_city` VALUES ('755', '陕西', '杨凌', '杨凌');
+INSERT INTO `weather_city` VALUES ('756', '山东', '济南', '济南');
+INSERT INTO `weather_city` VALUES ('757', '山东', '济南', '长清');
+INSERT INTO `weather_city` VALUES ('758', '山东', '济南', '商河');
+INSERT INTO `weather_city` VALUES ('759', '山东', '济南', '章丘');
+INSERT INTO `weather_city` VALUES ('760', '山东', '济南', '平阴');
+INSERT INTO `weather_city` VALUES ('761', '山东', '济南', '济阳');
+INSERT INTO `weather_city` VALUES ('763', '山东', '青岛', '青岛');
+INSERT INTO `weather_city` VALUES ('764', '山东', '青岛', '崂山');
+INSERT INTO `weather_city` VALUES ('765', '山东', '青岛', '即墨');
+INSERT INTO `weather_city` VALUES ('766', '山东', '青岛', '胶州');
+INSERT INTO `weather_city` VALUES ('767', '山东', '青岛', '胶南');
+INSERT INTO `weather_city` VALUES ('768', '山东', '青岛', '莱西');
+INSERT INTO `weather_city` VALUES ('769', '山东', '青岛', '平度');
+INSERT INTO `weather_city` VALUES ('770', '山东', '淄博', '淄博');
+INSERT INTO `weather_city` VALUES ('771', '山东', '淄博', '淄川');
+INSERT INTO `weather_city` VALUES ('772', '山东', '淄博', '博山');
+INSERT INTO `weather_city` VALUES ('773', '山东', '淄博', '高青');
+INSERT INTO `weather_city` VALUES ('774', '山东', '淄博', '周村');
+INSERT INTO `weather_city` VALUES ('775', '山东', '淄博', '沂源');
+INSERT INTO `weather_city` VALUES ('776', '山东', '淄博', '桓台');
+INSERT INTO `weather_city` VALUES ('777', '山东', '淄博', '临淄');
+INSERT INTO `weather_city` VALUES ('778', '山东', '德州', '德州');
+INSERT INTO `weather_city` VALUES ('779', '山东', '德州', '武城');
+INSERT INTO `weather_city` VALUES ('780', '山东', '德州', '临邑');
+INSERT INTO `weather_city` VALUES ('781', '山东', '德州', '陵县');
+INSERT INTO `weather_city` VALUES ('782', '山东', '德州', '齐河');
+INSERT INTO `weather_city` VALUES ('783', '山东', '德州', '乐陵');
+INSERT INTO `weather_city` VALUES ('784', '山东', '德州', '庆云');
+INSERT INTO `weather_city` VALUES ('785', '山东', '德州', '平原');
+INSERT INTO `weather_city` VALUES ('786', '山东', '德州', '宁津');
+INSERT INTO `weather_city` VALUES ('787', '山东', '德州', '夏津');
+INSERT INTO `weather_city` VALUES ('788', '山东', '德州', '禹城');
+INSERT INTO `weather_city` VALUES ('789', '山东', '烟台', '烟台');
+INSERT INTO `weather_city` VALUES ('790', '山东', '烟台', '莱州');
+INSERT INTO `weather_city` VALUES ('791', '山东', '烟台', '长岛');
+INSERT INTO `weather_city` VALUES ('792', '山东', '烟台', '蓬莱');
+INSERT INTO `weather_city` VALUES ('793', '山东', '烟台', '龙口');
+INSERT INTO `weather_city` VALUES ('794', '山东', '烟台', '招远');
+INSERT INTO `weather_city` VALUES ('795', '山东', '烟台', '栖霞');
+INSERT INTO `weather_city` VALUES ('796', '山东', '烟台', '福山');
+INSERT INTO `weather_city` VALUES ('797', '山东', '烟台', '牟平');
+INSERT INTO `weather_city` VALUES ('798', '山东', '烟台', '莱阳');
+INSERT INTO `weather_city` VALUES ('799', '山东', '烟台', '海阳');
+INSERT INTO `weather_city` VALUES ('800', '山东', '潍坊', '潍坊');
+INSERT INTO `weather_city` VALUES ('801', '山东', '潍坊', '青州');
+INSERT INTO `weather_city` VALUES ('802', '山东', '潍坊', '寿光');
+INSERT INTO `weather_city` VALUES ('803', '山东', '潍坊', '临朐');
+INSERT INTO `weather_city` VALUES ('804', '山东', '潍坊', '昌乐');
+INSERT INTO `weather_city` VALUES ('805', '山东', '潍坊', '昌邑');
+INSERT INTO `weather_city` VALUES ('806', '山东', '潍坊', '安丘');
+INSERT INTO `weather_city` VALUES ('807', '山东', '潍坊', '高密');
+INSERT INTO `weather_city` VALUES ('808', '山东', '潍坊', '诸城');
+INSERT INTO `weather_city` VALUES ('809', '山东', '济宁', '济宁');
+INSERT INTO `weather_city` VALUES ('810', '山东', '济宁', '嘉祥');
+INSERT INTO `weather_city` VALUES ('811', '山东', '济宁', '微山');
+INSERT INTO `weather_city` VALUES ('812', '山东', '济宁', '鱼台');
+INSERT INTO `weather_city` VALUES ('813', '山东', '济宁', '兖州');
+INSERT INTO `weather_city` VALUES ('814', '山东', '济宁', '金乡');
+INSERT INTO `weather_city` VALUES ('815', '山东', '济宁', '汶上');
+INSERT INTO `weather_city` VALUES ('816', '山东', '济宁', '泗水');
+INSERT INTO `weather_city` VALUES ('817', '山东', '济宁', '梁山');
+INSERT INTO `weather_city` VALUES ('818', '山东', '济宁', '曲阜');
+INSERT INTO `weather_city` VALUES ('819', '山东', '济宁', '邹城');
+INSERT INTO `weather_city` VALUES ('820', '山东', '泰安', '泰安');
+INSERT INTO `weather_city` VALUES ('821', '山东', '泰安', '新泰');
+INSERT INTO `weather_city` VALUES ('822', '山东', '泰安', '肥城');
+INSERT INTO `weather_city` VALUES ('823', '山东', '泰安', '东平');
+INSERT INTO `weather_city` VALUES ('824', '山东', '泰安', '宁阳');
+INSERT INTO `weather_city` VALUES ('825', '山东', '临沂', '临沂');
+INSERT INTO `weather_city` VALUES ('826', '山东', '临沂', '莒南');
+INSERT INTO `weather_city` VALUES ('827', '山东', '临沂', '沂南');
+INSERT INTO `weather_city` VALUES ('828', '山东', '临沂', '苍山');
+INSERT INTO `weather_city` VALUES ('829', '山东', '临沂', '临沭');
+INSERT INTO `weather_city` VALUES ('830', '山东', '临沂', '郯城');
+INSERT INTO `weather_city` VALUES ('831', '山东', '临沂', '蒙阴');
+INSERT INTO `weather_city` VALUES ('832', '山东', '临沂', '平邑');
+INSERT INTO `weather_city` VALUES ('833', '山东', '临沂', '费县');
+INSERT INTO `weather_city` VALUES ('834', '山东', '临沂', '沂水');
+INSERT INTO `weather_city` VALUES ('835', '山东', '菏泽', '菏泽');
+INSERT INTO `weather_city` VALUES ('836', '山东', '菏泽', '鄄城');
+INSERT INTO `weather_city` VALUES ('837', '山东', '菏泽', '郓城');
+INSERT INTO `weather_city` VALUES ('838', '山东', '菏泽', '东明');
+INSERT INTO `weather_city` VALUES ('839', '山东', '菏泽', '定陶');
+INSERT INTO `weather_city` VALUES ('840', '山东', '菏泽', '巨野');
+INSERT INTO `weather_city` VALUES ('841', '山东', '菏泽', '曹县');
+INSERT INTO `weather_city` VALUES ('842', '山东', '菏泽', '成武');
+INSERT INTO `weather_city` VALUES ('843', '山东', '菏泽', '单县');
+INSERT INTO `weather_city` VALUES ('844', '山东', '滨州', '滨州');
+INSERT INTO `weather_city` VALUES ('845', '山东', '滨州', '博兴');
+INSERT INTO `weather_city` VALUES ('846', '山东', '滨州', '无棣');
+INSERT INTO `weather_city` VALUES ('847', '山东', '滨州', '阳信');
+INSERT INTO `weather_city` VALUES ('848', '山东', '滨州', '惠民');
+INSERT INTO `weather_city` VALUES ('849', '山东', '滨州', '沾化');
+INSERT INTO `weather_city` VALUES ('850', '山东', '滨州', '邹平');
+INSERT INTO `weather_city` VALUES ('851', '山东', '东营', '东营');
+INSERT INTO `weather_city` VALUES ('852', '山东', '东营', '河口');
+INSERT INTO `weather_city` VALUES ('853', '山东', '东营', '垦利');
+INSERT INTO `weather_city` VALUES ('854', '山东', '东营', '利津');
+INSERT INTO `weather_city` VALUES ('855', '山东', '东营', '广饶');
+INSERT INTO `weather_city` VALUES ('856', '山东', '威海', '威海');
+INSERT INTO `weather_city` VALUES ('857', '山东', '威海', '文登');
+INSERT INTO `weather_city` VALUES ('858', '山东', '威海', '荣成');
+INSERT INTO `weather_city` VALUES ('859', '山东', '威海', '乳山');
+INSERT INTO `weather_city` VALUES ('860', '山东', '威海', '成山头');
+INSERT INTO `weather_city` VALUES ('861', '山东', '威海', '石岛');
+INSERT INTO `weather_city` VALUES ('862', '山东', '枣庄', '枣庄');
+INSERT INTO `weather_city` VALUES ('863', '山东', '枣庄', '薛城');
+INSERT INTO `weather_city` VALUES ('864', '山东', '枣庄', '峄城');
+INSERT INTO `weather_city` VALUES ('865', '山东', '枣庄', '台儿庄');
+INSERT INTO `weather_city` VALUES ('866', '山东', '枣庄', '滕州');
+INSERT INTO `weather_city` VALUES ('867', '山东', '日照', '日照');
+INSERT INTO `weather_city` VALUES ('868', '山东', '日照', '五莲');
+INSERT INTO `weather_city` VALUES ('869', '山东', '日照', '莒县');
+INSERT INTO `weather_city` VALUES ('870', '山东', '莱芜', '莱芜');
+INSERT INTO `weather_city` VALUES ('871', '山东', '聊城', '聊城');
+INSERT INTO `weather_city` VALUES ('872', '山东', '聊城', '冠县');
+INSERT INTO `weather_city` VALUES ('873', '山东', '聊城', '阳谷');
+INSERT INTO `weather_city` VALUES ('874', '山东', '聊城', '高唐');
+INSERT INTO `weather_city` VALUES ('875', '山东', '聊城', '茌平');
+INSERT INTO `weather_city` VALUES ('876', '山东', '聊城', '东阿');
+INSERT INTO `weather_city` VALUES ('877', '山东', '聊城', '临清');
+INSERT INTO `weather_city` VALUES ('878', '山东', '聊城', '莘县');
+INSERT INTO `weather_city` VALUES ('879', '新疆', '乌鲁木齐', '乌鲁木齐');
+INSERT INTO `weather_city` VALUES ('880', '新疆', '乌鲁木齐', '小渠子');
+INSERT INTO `weather_city` VALUES ('881', '新疆', '乌鲁木齐', '巴仑台');
+INSERT INTO `weather_city` VALUES ('882', '新疆', '乌鲁木齐', '达坂城');
+INSERT INTO `weather_city` VALUES ('883', '新疆', '乌鲁木齐', '乌鲁木齐牧试站');
+INSERT INTO `weather_city` VALUES ('884', '新疆', '乌鲁木齐', '天池');
+INSERT INTO `weather_city` VALUES ('885', '新疆', '乌鲁木齐', '白杨沟');
+INSERT INTO `weather_city` VALUES ('886', '新疆', '克拉玛依', '克拉玛依');
+INSERT INTO `weather_city` VALUES ('887', '新疆', '克拉玛依', '乌尔禾');
+INSERT INTO `weather_city` VALUES ('888', '新疆', '克拉玛依', '白碱滩');
+INSERT INTO `weather_city` VALUES ('889', '新疆', '石河子', '石河子');
+INSERT INTO `weather_city` VALUES ('890', '新疆', '石河子', '炮台');
+INSERT INTO `weather_city` VALUES ('891', '新疆', '石河子', '莫索湾');
+INSERT INTO `weather_city` VALUES ('892', '新疆', '昌吉', '昌吉');
+INSERT INTO `weather_city` VALUES ('893', '新疆', '昌吉', '呼图壁');
+INSERT INTO `weather_city` VALUES ('894', '新疆', '昌吉', '米泉');
+INSERT INTO `weather_city` VALUES ('895', '新疆', '昌吉', '阜康');
+INSERT INTO `weather_city` VALUES ('896', '新疆', '昌吉', '吉木萨尔');
+INSERT INTO `weather_city` VALUES ('897', '新疆', '昌吉', '奇台');
+INSERT INTO `weather_city` VALUES ('898', '新疆', '昌吉', '玛纳斯');
+INSERT INTO `weather_city` VALUES ('899', '新疆', '昌吉', '木垒');
+INSERT INTO `weather_city` VALUES ('900', '新疆', '昌吉', '蔡家湖');
+INSERT INTO `weather_city` VALUES ('901', '新疆', '吐鲁番', '吐鲁番');
+INSERT INTO `weather_city` VALUES ('902', '新疆', '吐鲁番', '托克逊');
+INSERT INTO `weather_city` VALUES ('903', '新疆', '吐鲁番', '克孜勒');
+INSERT INTO `weather_city` VALUES ('904', '新疆', '吐鲁番', '鄯善');
+INSERT INTO `weather_city` VALUES ('905', '新疆', '巴音郭楞', '库尔勒');
+INSERT INTO `weather_city` VALUES ('906', '新疆', '巴音郭楞', '轮台');
+INSERT INTO `weather_city` VALUES ('907', '新疆', '巴音郭楞', '尉犁');
+INSERT INTO `weather_city` VALUES ('908', '新疆', '巴音郭楞', '若羌');
+INSERT INTO `weather_city` VALUES ('909', '新疆', '巴音郭楞', '且末');
+INSERT INTO `weather_city` VALUES ('910', '新疆', '巴音郭楞', '和静');
+INSERT INTO `weather_city` VALUES ('911', '新疆', '巴音郭楞', '焉耆');
+INSERT INTO `weather_city` VALUES ('912', '新疆', '巴音郭楞', '和硕');
+INSERT INTO `weather_city` VALUES ('913', '新疆', '巴音郭楞', '巴音布鲁克');
+INSERT INTO `weather_city` VALUES ('914', '新疆', '巴音郭楞', '铁干里克');
+INSERT INTO `weather_city` VALUES ('915', '新疆', '巴音郭楞', '博湖');
+INSERT INTO `weather_city` VALUES ('916', '新疆', '巴音郭楞', '塔中');
+INSERT INTO `weather_city` VALUES ('917', '新疆', '阿拉尔', '阿拉尔');
+INSERT INTO `weather_city` VALUES ('918', '新疆', '阿克苏', '阿克苏');
+INSERT INTO `weather_city` VALUES ('919', '新疆', '阿克苏', '乌什');
+INSERT INTO `weather_city` VALUES ('920', '新疆', '阿克苏', '温宿');
+INSERT INTO `weather_city` VALUES ('921', '新疆', '阿克苏', '拜城');
+INSERT INTO `weather_city` VALUES ('922', '新疆', '阿克苏', '新和');
+INSERT INTO `weather_city` VALUES ('923', '新疆', '阿克苏', '沙雅');
+INSERT INTO `weather_city` VALUES ('924', '新疆', '阿克苏', '库车');
+INSERT INTO `weather_city` VALUES ('925', '新疆', '阿克苏', '柯坪');
+INSERT INTO `weather_city` VALUES ('926', '新疆', '阿克苏', '阿瓦提');
+INSERT INTO `weather_city` VALUES ('927', '新疆', '喀什', '喀什');
+INSERT INTO `weather_city` VALUES ('928', '新疆', '喀什', '英吉沙');
+INSERT INTO `weather_city` VALUES ('929', '新疆', '喀什', '塔什库尔干');
+INSERT INTO `weather_city` VALUES ('930', '新疆', '喀什', '麦盖提');
+INSERT INTO `weather_city` VALUES ('931', '新疆', '喀什', '莎车');
+INSERT INTO `weather_city` VALUES ('932', '新疆', '喀什', '叶城');
+INSERT INTO `weather_city` VALUES ('933', '新疆', '喀什', '泽普');
+INSERT INTO `weather_city` VALUES ('934', '新疆', '喀什', '巴楚');
+INSERT INTO `weather_city` VALUES ('935', '新疆', '喀什', '岳普湖');
+INSERT INTO `weather_city` VALUES ('936', '新疆', '喀什', '伽师');
+INSERT INTO `weather_city` VALUES ('937', '新疆', '喀什', '疏附');
+INSERT INTO `weather_city` VALUES ('938', '新疆', '喀什', '疏勒');
+INSERT INTO `weather_city` VALUES ('939', '新疆', '伊犁', '伊宁');
+INSERT INTO `weather_city` VALUES ('940', '新疆', '伊犁', '察布查尔');
+INSERT INTO `weather_city` VALUES ('941', '新疆', '伊犁', '尼勒克');
+INSERT INTO `weather_city` VALUES ('942', '新疆', '伊犁', '伊宁县');
+INSERT INTO `weather_city` VALUES ('943', '新疆', '伊犁', '巩留');
+INSERT INTO `weather_city` VALUES ('944', '新疆', '伊犁', '新源');
+INSERT INTO `weather_city` VALUES ('945', '新疆', '伊犁', '昭苏');
+INSERT INTO `weather_city` VALUES ('946', '新疆', '伊犁', '特克斯');
+INSERT INTO `weather_city` VALUES ('947', '新疆', '伊犁', '霍城');
+INSERT INTO `weather_city` VALUES ('948', '新疆', '伊犁', '霍尔果斯');
+INSERT INTO `weather_city` VALUES ('949', '新疆', '伊犁', '奎屯');
+INSERT INTO `weather_city` VALUES ('950', '新疆', '塔城', '塔城');
+INSERT INTO `weather_city` VALUES ('951', '新疆', '塔城', '裕民');
+INSERT INTO `weather_city` VALUES ('952', '新疆', '塔城', '额敏');
+INSERT INTO `weather_city` VALUES ('953', '新疆', '塔城', '和布克赛尔');
+INSERT INTO `weather_city` VALUES ('954', '新疆', '塔城', '托里');
+INSERT INTO `weather_city` VALUES ('955', '新疆', '塔城', '乌苏');
+INSERT INTO `weather_city` VALUES ('956', '新疆', '塔城', '沙湾');
+INSERT INTO `weather_city` VALUES ('957', '新疆', '塔城', '和丰');
+INSERT INTO `weather_city` VALUES ('958', '新疆', '哈密', '哈密');
+INSERT INTO `weather_city` VALUES ('959', '新疆', '哈密', '巴里坤');
+INSERT INTO `weather_city` VALUES ('960', '新疆', '哈密', '伊吾');
+INSERT INTO `weather_city` VALUES ('961', '新疆', '和田', '和田');
+INSERT INTO `weather_city` VALUES ('962', '新疆', '和田', '皮山');
+INSERT INTO `weather_city` VALUES ('963', '新疆', '和田', '策勒');
+INSERT INTO `weather_city` VALUES ('964', '新疆', '和田', '墨玉');
+INSERT INTO `weather_city` VALUES ('965', '新疆', '和田', '洛浦');
+INSERT INTO `weather_city` VALUES ('966', '新疆', '和田', '民丰');
+INSERT INTO `weather_city` VALUES ('967', '新疆', '和田', '于田');
+INSERT INTO `weather_city` VALUES ('968', '新疆', '阿勒泰', '阿勒泰');
+INSERT INTO `weather_city` VALUES ('969', '新疆', '阿勒泰', '哈巴河');
+INSERT INTO `weather_city` VALUES ('970', '新疆', '阿勒泰', '吉木乃');
+INSERT INTO `weather_city` VALUES ('971', '新疆', '阿勒泰', '布尔津');
+INSERT INTO `weather_city` VALUES ('972', '新疆', '阿勒泰', '福海');
+INSERT INTO `weather_city` VALUES ('973', '新疆', '阿勒泰', '富蕴');
+INSERT INTO `weather_city` VALUES ('974', '新疆', '阿勒泰', '青河');
+INSERT INTO `weather_city` VALUES ('975', '新疆', '克州', '阿图什');
+INSERT INTO `weather_city` VALUES ('976', '新疆', '克州', '乌恰');
+INSERT INTO `weather_city` VALUES ('977', '新疆', '克州', '阿克陶');
+INSERT INTO `weather_city` VALUES ('978', '新疆', '克州', '阿合奇');
+INSERT INTO `weather_city` VALUES ('979', '新疆', '博尔塔拉', '博乐');
+INSERT INTO `weather_city` VALUES ('980', '新疆', '博尔塔拉', '温泉');
+INSERT INTO `weather_city` VALUES ('981', '新疆', '博尔塔拉', '精河');
+INSERT INTO `weather_city` VALUES ('982', '新疆', '博尔塔拉', '阿拉山口');
+INSERT INTO `weather_city` VALUES ('983', '西藏', '拉萨', '拉萨');
+INSERT INTO `weather_city` VALUES ('984', '西藏', '拉萨', '当雄');
+INSERT INTO `weather_city` VALUES ('985', '西藏', '拉萨', '尼木');
+INSERT INTO `weather_city` VALUES ('986', '西藏', '拉萨', '林周');
+INSERT INTO `weather_city` VALUES ('987', '西藏', '拉萨', '堆龙德庆');
+INSERT INTO `weather_city` VALUES ('988', '西藏', '拉萨', '曲水');
+INSERT INTO `weather_city` VALUES ('989', '西藏', '拉萨', '达孜');
+INSERT INTO `weather_city` VALUES ('990', '西藏', '拉萨', '墨竹工卡');
+INSERT INTO `weather_city` VALUES ('991', '西藏', '日喀则', '日喀则');
+INSERT INTO `weather_city` VALUES ('992', '西藏', '日喀则', '拉孜');
+INSERT INTO `weather_city` VALUES ('993', '西藏', '日喀则', '南木林');
+INSERT INTO `weather_city` VALUES ('994', '西藏', '日喀则', '聂拉木');
+INSERT INTO `weather_city` VALUES ('995', '西藏', '日喀则', '定日');
+INSERT INTO `weather_city` VALUES ('996', '西藏', '日喀则', '江孜');
+INSERT INTO `weather_city` VALUES ('997', '西藏', '日喀则', '帕里');
+INSERT INTO `weather_city` VALUES ('998', '西藏', '日喀则', '仲巴');
+INSERT INTO `weather_city` VALUES ('999', '西藏', '日喀则', '萨嘎');
+INSERT INTO `weather_city` VALUES ('1000', '西藏', '日喀则', '吉隆');
+INSERT INTO `weather_city` VALUES ('1001', '西藏', '日喀则', '昂仁');
+INSERT INTO `weather_city` VALUES ('1002', '西藏', '日喀则', '定结');
+INSERT INTO `weather_city` VALUES ('1003', '西藏', '日喀则', '萨迦');
+INSERT INTO `weather_city` VALUES ('1004', '西藏', '日喀则', '谢通门');
+INSERT INTO `weather_city` VALUES ('1005', '西藏', '日喀则', '岗巴');
+INSERT INTO `weather_city` VALUES ('1006', '西藏', '日喀则', '白朗');
+INSERT INTO `weather_city` VALUES ('1007', '西藏', '日喀则', '亚东');
+INSERT INTO `weather_city` VALUES ('1008', '西藏', '日喀则', '康马');
+INSERT INTO `weather_city` VALUES ('1009', '西藏', '日喀则', '仁布');
+INSERT INTO `weather_city` VALUES ('1010', '西藏', '山南', '山南');
+INSERT INTO `weather_city` VALUES ('1011', '西藏', '山南', '贡嘎');
+INSERT INTO `weather_city` VALUES ('1012', '西藏', '山南', '札囊');
+INSERT INTO `weather_city` VALUES ('1013', '西藏', '山南', '加查');
+INSERT INTO `weather_city` VALUES ('1014', '西藏', '山南', '浪卡子');
+INSERT INTO `weather_city` VALUES ('1015', '西藏', '山南', '错那');
+INSERT INTO `weather_city` VALUES ('1016', '西藏', '山南', '隆子');
+INSERT INTO `weather_city` VALUES ('1017', '西藏', '山南', '泽当');
+INSERT INTO `weather_city` VALUES ('1018', '西藏', '山南', '乃东');
+INSERT INTO `weather_city` VALUES ('1019', '西藏', '山南', '桑日');
+INSERT INTO `weather_city` VALUES ('1020', '西藏', '山南', '洛扎');
+INSERT INTO `weather_city` VALUES ('1021', '西藏', '山南', '措美');
+INSERT INTO `weather_city` VALUES ('1022', '西藏', '山南', '琼结');
+INSERT INTO `weather_city` VALUES ('1023', '西藏', '山南', '曲松');
+INSERT INTO `weather_city` VALUES ('1024', '西藏', '林芝', '林芝');
+INSERT INTO `weather_city` VALUES ('1025', '西藏', '林芝', '波密');
+INSERT INTO `weather_city` VALUES ('1026', '西藏', '林芝', '米林');
+INSERT INTO `weather_city` VALUES ('1027', '西藏', '林芝', '察隅');
+INSERT INTO `weather_city` VALUES ('1028', '西藏', '林芝', '工布江达');
+INSERT INTO `weather_city` VALUES ('1029', '西藏', '林芝', '朗县');
+INSERT INTO `weather_city` VALUES ('1030', '西藏', '林芝', '墨脱');
+INSERT INTO `weather_city` VALUES ('1031', '西藏', '昌都', '昌都');
+INSERT INTO `weather_city` VALUES ('1032', '西藏', '昌都', '丁青');
+INSERT INTO `weather_city` VALUES ('1033', '西藏', '昌都', '边坝');
+INSERT INTO `weather_city` VALUES ('1034', '西藏', '昌都', '洛隆');
+INSERT INTO `weather_city` VALUES ('1035', '西藏', '昌都', '左贡');
+INSERT INTO `weather_city` VALUES ('1036', '西藏', '昌都', '芒康');
+INSERT INTO `weather_city` VALUES ('1037', '西藏', '昌都', '类乌齐');
+INSERT INTO `weather_city` VALUES ('1038', '西藏', '昌都', '八宿');
+INSERT INTO `weather_city` VALUES ('1039', '西藏', '昌都', '江达');
+INSERT INTO `weather_city` VALUES ('1040', '西藏', '昌都', '察雅');
+INSERT INTO `weather_city` VALUES ('1041', '西藏', '昌都', '贡觉');
+INSERT INTO `weather_city` VALUES ('1042', '西藏', '那曲', '那曲');
+INSERT INTO `weather_city` VALUES ('1043', '西藏', '那曲', '尼玛');
+INSERT INTO `weather_city` VALUES ('1044', '西藏', '那曲', '嘉黎');
+INSERT INTO `weather_city` VALUES ('1045', '西藏', '那曲', '班戈');
+INSERT INTO `weather_city` VALUES ('1046', '西藏', '那曲', '安多');
+INSERT INTO `weather_city` VALUES ('1047', '西藏', '那曲', '索县');
+INSERT INTO `weather_city` VALUES ('1048', '西藏', '那曲', '聂荣');
+INSERT INTO `weather_city` VALUES ('1049', '西藏', '那曲', '巴青');
+INSERT INTO `weather_city` VALUES ('1050', '西藏', '那曲', '比如');
+INSERT INTO `weather_city` VALUES ('1051', '西藏', '阿里', '阿里');
+INSERT INTO `weather_city` VALUES ('1052', '西藏', '阿里', '改则');
+INSERT INTO `weather_city` VALUES ('1053', '西藏', '阿里', '申扎');
+INSERT INTO `weather_city` VALUES ('1054', '西藏', '阿里', '狮泉河');
+INSERT INTO `weather_city` VALUES ('1055', '西藏', '阿里', '普兰');
+INSERT INTO `weather_city` VALUES ('1056', '西藏', '阿里', '札达');
+INSERT INTO `weather_city` VALUES ('1057', '西藏', '阿里', '噶尔');
+INSERT INTO `weather_city` VALUES ('1058', '西藏', '阿里', '日土');
+INSERT INTO `weather_city` VALUES ('1059', '西藏', '阿里', '革吉');
+INSERT INTO `weather_city` VALUES ('1060', '西藏', '阿里', '措勤');
+INSERT INTO `weather_city` VALUES ('1061', '青海', '西宁', '西宁');
+INSERT INTO `weather_city` VALUES ('1062', '青海', '西宁', '大通');
+INSERT INTO `weather_city` VALUES ('1063', '青海', '西宁', '湟源');
+INSERT INTO `weather_city` VALUES ('1064', '青海', '西宁', '湟中');
+INSERT INTO `weather_city` VALUES ('1065', '青海', '海东', '海东');
+INSERT INTO `weather_city` VALUES ('1066', '青海', '海东', '乐都');
+INSERT INTO `weather_city` VALUES ('1067', '青海', '海东', '民和');
+INSERT INTO `weather_city` VALUES ('1068', '青海', '海东', '互助');
+INSERT INTO `weather_city` VALUES ('1069', '青海', '海东', '化隆');
+INSERT INTO `weather_city` VALUES ('1070', '青海', '海东', '循化');
+INSERT INTO `weather_city` VALUES ('1071', '青海', '海东', '冷湖');
+INSERT INTO `weather_city` VALUES ('1072', '青海', '海东', '平安');
+INSERT INTO `weather_city` VALUES ('1073', '青海', '黄南', '黄南');
+INSERT INTO `weather_city` VALUES ('1074', '青海', '黄南', '尖扎');
+INSERT INTO `weather_city` VALUES ('1075', '青海', '黄南', '泽库');
+INSERT INTO `weather_city` VALUES ('1076', '青海', '黄南', '河南');
+INSERT INTO `weather_city` VALUES ('1077', '青海', '黄南', '同仁');
+INSERT INTO `weather_city` VALUES ('1078', '青海', '海南', '海南');
+INSERT INTO `weather_city` VALUES ('1079', '青海', '海南', '贵德');
+INSERT INTO `weather_city` VALUES ('1080', '青海', '海南', '兴海');
+INSERT INTO `weather_city` VALUES ('1081', '青海', '海南', '贵南');
+INSERT INTO `weather_city` VALUES ('1082', '青海', '海南', '同德');
+INSERT INTO `weather_city` VALUES ('1083', '青海', '海南', '共和');
+INSERT INTO `weather_city` VALUES ('1084', '青海', '果洛', '果洛');
+INSERT INTO `weather_city` VALUES ('1085', '青海', '果洛', '班玛');
+INSERT INTO `weather_city` VALUES ('1086', '青海', '果洛', '甘德');
+INSERT INTO `weather_city` VALUES ('1087', '青海', '果洛', '达日');
+INSERT INTO `weather_city` VALUES ('1088', '青海', '果洛', '久治');
+INSERT INTO `weather_city` VALUES ('1089', '青海', '果洛', '玛多');
+INSERT INTO `weather_city` VALUES ('1090', '青海', '果洛', '多县');
+INSERT INTO `weather_city` VALUES ('1091', '青海', '果洛', '玛沁');
+INSERT INTO `weather_city` VALUES ('1092', '青海', '玉树', '玉树');
+INSERT INTO `weather_city` VALUES ('1093', '青海', '玉树', '称多');
+INSERT INTO `weather_city` VALUES ('1094', '青海', '玉树', '治多');
+INSERT INTO `weather_city` VALUES ('1095', '青海', '玉树', '杂多');
+INSERT INTO `weather_city` VALUES ('1096', '青海', '玉树', '囊谦');
+INSERT INTO `weather_city` VALUES ('1097', '青海', '玉树', '曲麻莱');
+INSERT INTO `weather_city` VALUES ('1098', '青海', '海西', '海西');
+INSERT INTO `weather_city` VALUES ('1099', '青海', '海西', '天峻');
+INSERT INTO `weather_city` VALUES ('1100', '青海', '海西', '乌兰');
+INSERT INTO `weather_city` VALUES ('1101', '青海', '海西', '茫崖');
+INSERT INTO `weather_city` VALUES ('1102', '青海', '海西', '大柴旦');
+INSERT INTO `weather_city` VALUES ('1103', '青海', '海西', '德令哈');
+INSERT INTO `weather_city` VALUES ('1104', '青海', '海北', '海北');
+INSERT INTO `weather_city` VALUES ('1105', '青海', '海北', '门源');
+INSERT INTO `weather_city` VALUES ('1106', '青海', '海北', '祁连');
+INSERT INTO `weather_city` VALUES ('1107', '青海', '海北', '海晏');
+INSERT INTO `weather_city` VALUES ('1108', '青海', '海北', '刚察');
+INSERT INTO `weather_city` VALUES ('1109', '青海', '格尔木', '格尔木');
+INSERT INTO `weather_city` VALUES ('1110', '青海', '格尔木', '都兰');
+INSERT INTO `weather_city` VALUES ('1111', '甘肃', '兰州', '兰州');
+INSERT INTO `weather_city` VALUES ('1112', '甘肃', '兰州', '皋兰');
+INSERT INTO `weather_city` VALUES ('1113', '甘肃', '兰州', '永登');
+INSERT INTO `weather_city` VALUES ('1114', '甘肃', '兰州', '榆中');
+INSERT INTO `weather_city` VALUES ('1115', '甘肃', '定西', '定西');
+INSERT INTO `weather_city` VALUES ('1116', '甘肃', '定西', '通渭');
+INSERT INTO `weather_city` VALUES ('1117', '甘肃', '定西', '陇西');
+INSERT INTO `weather_city` VALUES ('1118', '甘肃', '定西', '渭源');
+INSERT INTO `weather_city` VALUES ('1119', '甘肃', '定西', '临洮');
+INSERT INTO `weather_city` VALUES ('1120', '甘肃', '定西', '漳县');
+INSERT INTO `weather_city` VALUES ('1121', '甘肃', '定西', '岷县');
+INSERT INTO `weather_city` VALUES ('1122', '甘肃', '定西', '安定');
+INSERT INTO `weather_city` VALUES ('1123', '甘肃', '平凉', '平凉');
+INSERT INTO `weather_city` VALUES ('1124', '甘肃', '平凉', '泾川');
+INSERT INTO `weather_city` VALUES ('1125', '甘肃', '平凉', '灵台');
+INSERT INTO `weather_city` VALUES ('1126', '甘肃', '平凉', '崇信');
+INSERT INTO `weather_city` VALUES ('1127', '甘肃', '平凉', '华亭');
+INSERT INTO `weather_city` VALUES ('1128', '甘肃', '平凉', '庄浪');
+INSERT INTO `weather_city` VALUES ('1129', '甘肃', '平凉', '静宁');
+INSERT INTO `weather_city` VALUES ('1130', '甘肃', '平凉', '崆峒');
+INSERT INTO `weather_city` VALUES ('1131', '甘肃', '庆阳', '庆阳');
+INSERT INTO `weather_city` VALUES ('1132', '甘肃', '庆阳', '西峰');
+INSERT INTO `weather_city` VALUES ('1133', '甘肃', '庆阳', '环县');
+INSERT INTO `weather_city` VALUES ('1134', '甘肃', '庆阳', '华池');
+INSERT INTO `weather_city` VALUES ('1135', '甘肃', '庆阳', '合水');
+INSERT INTO `weather_city` VALUES ('1136', '甘肃', '庆阳', '正宁');
+INSERT INTO `weather_city` VALUES ('1137', '甘肃', '庆阳', '宁县');
+INSERT INTO `weather_city` VALUES ('1138', '甘肃', '庆阳', '镇原');
+INSERT INTO `weather_city` VALUES ('1139', '甘肃', '庆阳', '庆城');
+INSERT INTO `weather_city` VALUES ('1140', '甘肃', '武威', '武威');
+INSERT INTO `weather_city` VALUES ('1141', '甘肃', '武威', '民勤');
+INSERT INTO `weather_city` VALUES ('1142', '甘肃', '武威', '古浪');
+INSERT INTO `weather_city` VALUES ('1143', '甘肃', '武威', '天祝');
+INSERT INTO `weather_city` VALUES ('1144', '甘肃', '金昌', '金昌');
+INSERT INTO `weather_city` VALUES ('1145', '甘肃', '金昌', '永昌');
+INSERT INTO `weather_city` VALUES ('1146', '甘肃', '张掖', '张掖');
+INSERT INTO `weather_city` VALUES ('1147', '甘肃', '张掖', '肃南');
+INSERT INTO `weather_city` VALUES ('1148', '甘肃', '张掖', '民乐');
+INSERT INTO `weather_city` VALUES ('1149', '甘肃', '张掖', '临泽');
+INSERT INTO `weather_city` VALUES ('1150', '甘肃', '张掖', '高台');
+INSERT INTO `weather_city` VALUES ('1151', '甘肃', '张掖', '山丹');
+INSERT INTO `weather_city` VALUES ('1152', '甘肃', '酒泉', '酒泉');
+INSERT INTO `weather_city` VALUES ('1153', '甘肃', '酒泉', '金塔');
+INSERT INTO `weather_city` VALUES ('1154', '甘肃', '酒泉', '阿克塞');
+INSERT INTO `weather_city` VALUES ('1155', '甘肃', '酒泉', '瓜州');
+INSERT INTO `weather_city` VALUES ('1156', '甘肃', '酒泉', '肃北');
+INSERT INTO `weather_city` VALUES ('1157', '甘肃', '酒泉', '玉门');
+INSERT INTO `weather_city` VALUES ('1158', '甘肃', '酒泉', '敦煌');
+INSERT INTO `weather_city` VALUES ('1159', '甘肃', '天水', '天水');
+INSERT INTO `weather_city` VALUES ('1160', '甘肃', '天水', '清水');
+INSERT INTO `weather_city` VALUES ('1161', '甘肃', '天水', '秦安');
+INSERT INTO `weather_city` VALUES ('1162', '甘肃', '天水', '甘谷');
+INSERT INTO `weather_city` VALUES ('1163', '甘肃', '天水', '武山');
+INSERT INTO `weather_city` VALUES ('1164', '甘肃', '天水', '张家川');
+INSERT INTO `weather_city` VALUES ('1165', '甘肃', '天水', '麦积');
+INSERT INTO `weather_city` VALUES ('1166', '甘肃', '陇南', '武都');
+INSERT INTO `weather_city` VALUES ('1167', '甘肃', '陇南', '成县');
+INSERT INTO `weather_city` VALUES ('1168', '甘肃', '陇南', '文县');
+INSERT INTO `weather_city` VALUES ('1169', '甘肃', '陇南', '宕昌');
+INSERT INTO `weather_city` VALUES ('1170', '甘肃', '陇南', '康县');
+INSERT INTO `weather_city` VALUES ('1171', '甘肃', '陇南', '西和');
+INSERT INTO `weather_city` VALUES ('1172', '甘肃', '陇南', '礼县');
+INSERT INTO `weather_city` VALUES ('1173', '甘肃', '陇南', '徽县');
+INSERT INTO `weather_city` VALUES ('1174', '甘肃', '陇南', '两当');
+INSERT INTO `weather_city` VALUES ('1175', '甘肃', '临夏', '临夏');
+INSERT INTO `weather_city` VALUES ('1176', '甘肃', '临夏', '康乐');
+INSERT INTO `weather_city` VALUES ('1177', '甘肃', '临夏', '永靖');
+INSERT INTO `weather_city` VALUES ('1178', '甘肃', '临夏', '广河');
+INSERT INTO `weather_city` VALUES ('1179', '甘肃', '临夏', '和政');
+INSERT INTO `weather_city` VALUES ('1180', '甘肃', '临夏', '东乡');
+INSERT INTO `weather_city` VALUES ('1181', '甘肃', '临夏', '积石山');
+INSERT INTO `weather_city` VALUES ('1182', '甘肃', '甘南', '合作');
+INSERT INTO `weather_city` VALUES ('1183', '甘肃', '甘南', '临潭');
+INSERT INTO `weather_city` VALUES ('1184', '甘肃', '甘南', '卓尼');
+INSERT INTO `weather_city` VALUES ('1185', '甘肃', '甘南', '舟曲');
+INSERT INTO `weather_city` VALUES ('1186', '甘肃', '甘南', '迭部');
+INSERT INTO `weather_city` VALUES ('1187', '甘肃', '甘南', '玛曲');
+INSERT INTO `weather_city` VALUES ('1188', '甘肃', '甘南', '碌曲');
+INSERT INTO `weather_city` VALUES ('1189', '甘肃', '甘南', '夏河');
+INSERT INTO `weather_city` VALUES ('1190', '甘肃', '白银', '白银');
+INSERT INTO `weather_city` VALUES ('1191', '甘肃', '白银', '靖远');
+INSERT INTO `weather_city` VALUES ('1192', '甘肃', '白银', '会宁');
+INSERT INTO `weather_city` VALUES ('1193', '甘肃', '白银', '平川');
+INSERT INTO `weather_city` VALUES ('1194', '甘肃', '白银', '景泰');
+INSERT INTO `weather_city` VALUES ('1195', '甘肃', '嘉峪关', '嘉峪关');
+INSERT INTO `weather_city` VALUES ('1196', '宁夏', '银川', '银川');
+INSERT INTO `weather_city` VALUES ('1197', '宁夏', '银川', '永宁');
+INSERT INTO `weather_city` VALUES ('1198', '宁夏', '银川', '灵武');
+INSERT INTO `weather_city` VALUES ('1199', '宁夏', '银川', '贺兰');
+INSERT INTO `weather_city` VALUES ('1200', '宁夏', '石嘴山', '石嘴山');
+INSERT INTO `weather_city` VALUES ('1201', '宁夏', '石嘴山', '惠农');
+INSERT INTO `weather_city` VALUES ('1202', '宁夏', '石嘴山', '平罗');
+INSERT INTO `weather_city` VALUES ('1203', '宁夏', '石嘴山', '陶乐');
+INSERT INTO `weather_city` VALUES ('1204', '宁夏', '石嘴山', '大武口');
+INSERT INTO `weather_city` VALUES ('1205', '宁夏', '吴忠', '吴忠');
+INSERT INTO `weather_city` VALUES ('1206', '宁夏', '吴忠', '同心');
+INSERT INTO `weather_city` VALUES ('1207', '宁夏', '吴忠', '盐池');
+INSERT INTO `weather_city` VALUES ('1208', '宁夏', '吴忠', '青铜峡');
+INSERT INTO `weather_city` VALUES ('1209', '宁夏', '固原', '固原');
+INSERT INTO `weather_city` VALUES ('1210', '宁夏', '固原', '西吉');
+INSERT INTO `weather_city` VALUES ('1211', '宁夏', '固原', '隆德');
+INSERT INTO `weather_city` VALUES ('1212', '宁夏', '固原', '泾源');
+INSERT INTO `weather_city` VALUES ('1213', '宁夏', '固原', '彭阳');
+INSERT INTO `weather_city` VALUES ('1214', '宁夏', '中卫', '中卫');
+INSERT INTO `weather_city` VALUES ('1215', '宁夏', '中卫', '中宁');
+INSERT INTO `weather_city` VALUES ('1216', '宁夏', '中卫', '海原');
+INSERT INTO `weather_city` VALUES ('1217', '河南', '郑州', '郑州');
+INSERT INTO `weather_city` VALUES ('1218', '河南', '郑州', '巩义');
+INSERT INTO `weather_city` VALUES ('1219', '河南', '郑州', '荥阳');
+INSERT INTO `weather_city` VALUES ('1220', '河南', '郑州', '登封');
+INSERT INTO `weather_city` VALUES ('1221', '河南', '郑州', '新密');
+INSERT INTO `weather_city` VALUES ('1222', '河南', '郑州', '新郑');
+INSERT INTO `weather_city` VALUES ('1223', '河南', '郑州', '中牟');
+INSERT INTO `weather_city` VALUES ('1224', '河南', '郑州', '上街');
+INSERT INTO `weather_city` VALUES ('1225', '河南', '安阳', '安阳');
+INSERT INTO `weather_city` VALUES ('1226', '河南', '安阳', '汤阴');
+INSERT INTO `weather_city` VALUES ('1227', '河南', '安阳', '滑县');
+INSERT INTO `weather_city` VALUES ('1228', '河南', '安阳', '内黄');
+INSERT INTO `weather_city` VALUES ('1229', '河南', '安阳', '林州');
+INSERT INTO `weather_city` VALUES ('1230', '河南', '新乡', '新乡');
+INSERT INTO `weather_city` VALUES ('1231', '河南', '新乡', '获嘉');
+INSERT INTO `weather_city` VALUES ('1232', '河南', '新乡', '原阳');
+INSERT INTO `weather_city` VALUES ('1233', '河南', '新乡', '辉县');
+INSERT INTO `weather_city` VALUES ('1234', '河南', '新乡', '卫辉');
+INSERT INTO `weather_city` VALUES ('1235', '河南', '新乡', '延津');
+INSERT INTO `weather_city` VALUES ('1236', '河南', '新乡', '封丘');
+INSERT INTO `weather_city` VALUES ('1237', '河南', '新乡', '长垣');
+INSERT INTO `weather_city` VALUES ('1238', '河南', '许昌', '许昌');
+INSERT INTO `weather_city` VALUES ('1239', '河南', '许昌', '鄢陵');
+INSERT INTO `weather_city` VALUES ('1240', '河南', '许昌', '襄城');
+INSERT INTO `weather_city` VALUES ('1241', '河南', '许昌', '长葛');
+INSERT INTO `weather_city` VALUES ('1242', '河南', '许昌', '禹州');
+INSERT INTO `weather_city` VALUES ('1243', '河南', '平顶山', '平顶山');
+INSERT INTO `weather_city` VALUES ('1244', '河南', '平顶山', '郏县');
+INSERT INTO `weather_city` VALUES ('1245', '河南', '平顶山', '宝丰');
+INSERT INTO `weather_city` VALUES ('1246', '河南', '平顶山', '汝州');
+INSERT INTO `weather_city` VALUES ('1247', '河南', '平顶山', '叶县');
+INSERT INTO `weather_city` VALUES ('1248', '河南', '平顶山', '舞钢');
+INSERT INTO `weather_city` VALUES ('1249', '河南', '平顶山', '鲁山');
+INSERT INTO `weather_city` VALUES ('1250', '河南', '平顶山', '石龙');
+INSERT INTO `weather_city` VALUES ('1251', '河南', '信阳', '信阳');
+INSERT INTO `weather_city` VALUES ('1252', '河南', '信阳', '息县');
+INSERT INTO `weather_city` VALUES ('1253', '河南', '信阳', '罗山');
+INSERT INTO `weather_city` VALUES ('1254', '河南', '信阳', '光山');
+INSERT INTO `weather_city` VALUES ('1255', '河南', '信阳', '新县');
+INSERT INTO `weather_city` VALUES ('1256', '河南', '信阳', '淮滨');
+INSERT INTO `weather_city` VALUES ('1257', '河南', '信阳', '潢川');
+INSERT INTO `weather_city` VALUES ('1258', '河南', '信阳', '固始');
+INSERT INTO `weather_city` VALUES ('1259', '河南', '信阳', '商城');
+INSERT INTO `weather_city` VALUES ('1260', '河南', '南阳', '南阳');
+INSERT INTO `weather_city` VALUES ('1261', '河南', '南阳', '南召');
+INSERT INTO `weather_city` VALUES ('1262', '河南', '南阳', '方城');
+INSERT INTO `weather_city` VALUES ('1263', '河南', '南阳', '社旗');
+INSERT INTO `weather_city` VALUES ('1264', '河南', '南阳', '西峡');
+INSERT INTO `weather_city` VALUES ('1265', '河南', '南阳', '内乡');
+INSERT INTO `weather_city` VALUES ('1266', '河南', '南阳', '镇平');
+INSERT INTO `weather_city` VALUES ('1267', '河南', '南阳', '淅川');
+INSERT INTO `weather_city` VALUES ('1268', '河南', '南阳', '新野');
+INSERT INTO `weather_city` VALUES ('1269', '河南', '南阳', '唐河');
+INSERT INTO `weather_city` VALUES ('1270', '河南', '南阳', '邓州');
+INSERT INTO `weather_city` VALUES ('1271', '河南', '南阳', '桐柏');
+INSERT INTO `weather_city` VALUES ('1272', '河南', '开封', '开封');
+INSERT INTO `weather_city` VALUES ('1273', '河南', '开封', '杞县');
+INSERT INTO `weather_city` VALUES ('1274', '河南', '开封', '尉氏');
+INSERT INTO `weather_city` VALUES ('1275', '河南', '开封', '通许');
+INSERT INTO `weather_city` VALUES ('1276', '河南', '开封', '兰考');
+INSERT INTO `weather_city` VALUES ('1277', '河南', '洛阳', '洛阳');
+INSERT INTO `weather_city` VALUES ('1278', '河南', '洛阳', '新安');
+INSERT INTO `weather_city` VALUES ('1279', '河南', '洛阳', '孟津');
+INSERT INTO `weather_city` VALUES ('1280', '河南', '洛阳', '宜阳');
+INSERT INTO `weather_city` VALUES ('1281', '河南', '洛阳', '洛宁');
+INSERT INTO `weather_city` VALUES ('1282', '河南', '洛阳', '伊川');
+INSERT INTO `weather_city` VALUES ('1283', '河南', '洛阳', '嵩县');
+INSERT INTO `weather_city` VALUES ('1284', '河南', '洛阳', '偃师');
+INSERT INTO `weather_city` VALUES ('1285', '河南', '洛阳', '栾川');
+INSERT INTO `weather_city` VALUES ('1286', '河南', '洛阳', '汝阳');
+INSERT INTO `weather_city` VALUES ('1287', '河南', '洛阳', '吉利');
+INSERT INTO `weather_city` VALUES ('1288', '河南', '商丘', '商丘');
+INSERT INTO `weather_city` VALUES ('1289', '河南', '商丘', '睢县');
+INSERT INTO `weather_city` VALUES ('1290', '河南', '商丘', '民权');
+INSERT INTO `weather_city` VALUES ('1291', '河南', '商丘', '虞城');
+INSERT INTO `weather_city` VALUES ('1292', '河南', '商丘', '柘城');
+INSERT INTO `weather_city` VALUES ('1293', '河南', '商丘', '宁陵');
+INSERT INTO `weather_city` VALUES ('1294', '河南', '商丘', '夏邑');
+INSERT INTO `weather_city` VALUES ('1295', '河南', '商丘', '永城');
+INSERT INTO `weather_city` VALUES ('1296', '河南', '焦作', '焦作');
+INSERT INTO `weather_city` VALUES ('1297', '河南', '焦作', '修武');
+INSERT INTO `weather_city` VALUES ('1298', '河南', '焦作', '武陟');
+INSERT INTO `weather_city` VALUES ('1299', '河南', '焦作', '沁阳');
+INSERT INTO `weather_city` VALUES ('1300', '河南', '焦作', '博爱');
+INSERT INTO `weather_city` VALUES ('1301', '河南', '焦作', '温县');
+INSERT INTO `weather_city` VALUES ('1302', '河南', '焦作', '孟州');
+INSERT INTO `weather_city` VALUES ('1303', '河南', '鹤壁', '鹤壁');
+INSERT INTO `weather_city` VALUES ('1304', '河南', '鹤壁', '浚县');
+INSERT INTO `weather_city` VALUES ('1305', '河南', '鹤壁', '淇县');
+INSERT INTO `weather_city` VALUES ('1306', '河南', '濮阳', '濮阳');
+INSERT INTO `weather_city` VALUES ('1307', '河南', '濮阳', '台前');
+INSERT INTO `weather_city` VALUES ('1308', '河南', '濮阳', '南乐');
+INSERT INTO `weather_city` VALUES ('1309', '河南', '濮阳', '清丰');
+INSERT INTO `weather_city` VALUES ('1310', '河南', '濮阳', '范县');
+INSERT INTO `weather_city` VALUES ('1311', '河南', '周口', '周口');
+INSERT INTO `weather_city` VALUES ('1312', '河南', '周口', '扶沟');
+INSERT INTO `weather_city` VALUES ('1313', '河南', '周口', '太康');
+INSERT INTO `weather_city` VALUES ('1314', '河南', '周口', '淮阳');
+INSERT INTO `weather_city` VALUES ('1315', '河南', '周口', '西华');
+INSERT INTO `weather_city` VALUES ('1316', '河南', '周口', '商水');
+INSERT INTO `weather_city` VALUES ('1317', '河南', '周口', '项城');
+INSERT INTO `weather_city` VALUES ('1318', '河南', '周口', '郸城');
+INSERT INTO `weather_city` VALUES ('1319', '河南', '周口', '鹿邑');
+INSERT INTO `weather_city` VALUES ('1320', '河南', '周口', '沈丘');
+INSERT INTO `weather_city` VALUES ('1321', '河南', '漯河', '漯河');
+INSERT INTO `weather_city` VALUES ('1322', '河南', '漯河', '临颍');
+INSERT INTO `weather_city` VALUES ('1323', '河南', '漯河', '舞阳');
+INSERT INTO `weather_city` VALUES ('1324', '河南', '驻马店', '驻马店');
+INSERT INTO `weather_city` VALUES ('1325', '河南', '驻马店', '西平');
+INSERT INTO `weather_city` VALUES ('1326', '河南', '驻马店', '遂平');
+INSERT INTO `weather_city` VALUES ('1327', '河南', '驻马店', '上蔡');
+INSERT INTO `weather_city` VALUES ('1328', '河南', '驻马店', '汝南');
+INSERT INTO `weather_city` VALUES ('1329', '河南', '驻马店', '泌阳');
+INSERT INTO `weather_city` VALUES ('1330', '河南', '驻马店', '平舆');
+INSERT INTO `weather_city` VALUES ('1331', '河南', '驻马店', '新蔡');
+INSERT INTO `weather_city` VALUES ('1332', '河南', '驻马店', '确山');
+INSERT INTO `weather_city` VALUES ('1333', '河南', '驻马店', '正阳');
+INSERT INTO `weather_city` VALUES ('1334', '河南', '三门峡', '三门峡');
+INSERT INTO `weather_city` VALUES ('1335', '河南', '三门峡', '灵宝');
+INSERT INTO `weather_city` VALUES ('1336', '河南', '三门峡', '渑池');
+INSERT INTO `weather_city` VALUES ('1337', '河南', '三门峡', '卢氏');
+INSERT INTO `weather_city` VALUES ('1338', '河南', '三门峡', '义马');
+INSERT INTO `weather_city` VALUES ('1339', '河南', '三门峡', '陕县');
+INSERT INTO `weather_city` VALUES ('1340', '河南', '济源', '济源');
+INSERT INTO `weather_city` VALUES ('1341', '江苏', '南京', '南京');
+INSERT INTO `weather_city` VALUES ('1342', '江苏', '南京', '溧水');
+INSERT INTO `weather_city` VALUES ('1343', '江苏', '南京', '高淳');
+INSERT INTO `weather_city` VALUES ('1344', '江苏', '南京', '江宁');
+INSERT INTO `weather_city` VALUES ('1345', '江苏', '南京', '六合');
+INSERT INTO `weather_city` VALUES ('1346', '江苏', '南京', '江浦');
+INSERT INTO `weather_city` VALUES ('1347', '江苏', '南京', '浦口');
+INSERT INTO `weather_city` VALUES ('1348', '江苏', '无锡', '无锡');
+INSERT INTO `weather_city` VALUES ('1349', '江苏', '无锡', '江阴');
+INSERT INTO `weather_city` VALUES ('1350', '江苏', '无锡', '宜兴');
+INSERT INTO `weather_city` VALUES ('1351', '江苏', '无锡', '锡山');
+INSERT INTO `weather_city` VALUES ('1352', '江苏', '镇江', '镇江');
+INSERT INTO `weather_city` VALUES ('1353', '江苏', '镇江', '丹阳');
+INSERT INTO `weather_city` VALUES ('1354', '江苏', '镇江', '扬中');
+INSERT INTO `weather_city` VALUES ('1355', '江苏', '镇江', '句容');
+INSERT INTO `weather_city` VALUES ('1356', '江苏', '镇江', '丹徒');
+INSERT INTO `weather_city` VALUES ('1357', '江苏', '苏州', '苏州');
+INSERT INTO `weather_city` VALUES ('1358', '江苏', '苏州', '常熟');
+INSERT INTO `weather_city` VALUES ('1359', '江苏', '苏州', '张家港');
+INSERT INTO `weather_city` VALUES ('1360', '江苏', '苏州', '昆山');
+INSERT INTO `weather_city` VALUES ('1361', '江苏', '苏州', '吴中');
+INSERT INTO `weather_city` VALUES ('1362', '江苏', '苏州', '吴江');
+INSERT INTO `weather_city` VALUES ('1363', '江苏', '苏州', '太仓');
+INSERT INTO `weather_city` VALUES ('1364', '江苏', '南通', '南通');
+INSERT INTO `weather_city` VALUES ('1365', '江苏', '南通', '海安');
+INSERT INTO `weather_city` VALUES ('1366', '江苏', '南通', '如皋');
+INSERT INTO `weather_city` VALUES ('1367', '江苏', '南通', '如东');
+INSERT INTO `weather_city` VALUES ('1368', '江苏', '南通', '启东');
+INSERT INTO `weather_city` VALUES ('1369', '江苏', '南通', '海门');
+INSERT INTO `weather_city` VALUES ('1370', '江苏', '南通', '通州');
+INSERT INTO `weather_city` VALUES ('1371', '江苏', '扬州', '扬州');
+INSERT INTO `weather_city` VALUES ('1372', '江苏', '扬州', '宝应');
+INSERT INTO `weather_city` VALUES ('1373', '江苏', '扬州', '仪征');
+INSERT INTO `weather_city` VALUES ('1374', '江苏', '扬州', '高邮');
+INSERT INTO `weather_city` VALUES ('1375', '江苏', '扬州', '江都');
+INSERT INTO `weather_city` VALUES ('1376', '江苏', '扬州', '邗江');
+INSERT INTO `weather_city` VALUES ('1377', '江苏', '盐城', '盐城');
+INSERT INTO `weather_city` VALUES ('1378', '江苏', '盐城', '响水');
+INSERT INTO `weather_city` VALUES ('1379', '江苏', '盐城', '滨海');
+INSERT INTO `weather_city` VALUES ('1380', '江苏', '盐城', '阜宁');
+INSERT INTO `weather_city` VALUES ('1381', '江苏', '盐城', '射阳');
+INSERT INTO `weather_city` VALUES ('1382', '江苏', '盐城', '建湖');
+INSERT INTO `weather_city` VALUES ('1383', '江苏', '盐城', '东台');
+INSERT INTO `weather_city` VALUES ('1384', '江苏', '盐城', '大丰');
+INSERT INTO `weather_city` VALUES ('1385', '江苏', '盐城', '盐都');
+INSERT INTO `weather_city` VALUES ('1386', '江苏', '徐州', '徐州');
+INSERT INTO `weather_city` VALUES ('1387', '江苏', '徐州', '铜山');
+INSERT INTO `weather_city` VALUES ('1388', '江苏', '徐州', '丰县');
+INSERT INTO `weather_city` VALUES ('1389', '江苏', '徐州', '沛县');
+INSERT INTO `weather_city` VALUES ('1390', '江苏', '徐州', '邳州');
+INSERT INTO `weather_city` VALUES ('1391', '江苏', '徐州', '睢宁');
+INSERT INTO `weather_city` VALUES ('1392', '江苏', '徐州', '新沂');
+INSERT INTO `weather_city` VALUES ('1393', '江苏', '淮安', '淮安');
+INSERT INTO `weather_city` VALUES ('1394', '江苏', '淮安', '金湖');
+INSERT INTO `weather_city` VALUES ('1395', '江苏', '淮安', '盱眙');
+INSERT INTO `weather_city` VALUES ('1396', '江苏', '淮安', '洪泽');
+INSERT INTO `weather_city` VALUES ('1397', '江苏', '淮安', '涟水');
+INSERT INTO `weather_city` VALUES ('1398', '江苏', '淮安', '淮阴区');
+INSERT INTO `weather_city` VALUES ('1399', '江苏', '淮安', '淮安区');
+INSERT INTO `weather_city` VALUES ('1400', '江苏', '连云港', '连云港');
+INSERT INTO `weather_city` VALUES ('1401', '江苏', '连云港', '东海');
+INSERT INTO `weather_city` VALUES ('1402', '江苏', '连云港', '赣榆');
+INSERT INTO `weather_city` VALUES ('1403', '江苏', '连云港', '灌云');
+INSERT INTO `weather_city` VALUES ('1404', '江苏', '连云港', '灌南');
+INSERT INTO `weather_city` VALUES ('1405', '江苏', '常州', '常州');
+INSERT INTO `weather_city` VALUES ('1406', '江苏', '常州', '溧阳');
+INSERT INTO `weather_city` VALUES ('1407', '江苏', '常州', '金坛');
+INSERT INTO `weather_city` VALUES ('1408', '江苏', '常州', '武进');
+INSERT INTO `weather_city` VALUES ('1409', '江苏', '泰州', '泰州');
+INSERT INTO `weather_city` VALUES ('1410', '江苏', '泰州', '兴化');
+INSERT INTO `weather_city` VALUES ('1411', '江苏', '泰州', '泰兴');
+INSERT INTO `weather_city` VALUES ('1412', '江苏', '泰州', '姜堰');
+INSERT INTO `weather_city` VALUES ('1413', '江苏', '泰州', '靖江');
+INSERT INTO `weather_city` VALUES ('1414', '江苏', '宿迁', '宿迁');
+INSERT INTO `weather_city` VALUES ('1415', '江苏', '宿迁', '沭阳');
+INSERT INTO `weather_city` VALUES ('1416', '江苏', '宿迁', '泗阳');
+INSERT INTO `weather_city` VALUES ('1417', '江苏', '宿迁', '泗洪');
+INSERT INTO `weather_city` VALUES ('1418', '江苏', '宿迁', '宿豫');
+INSERT INTO `weather_city` VALUES ('1419', '湖北', '武汉', '武汉');
+INSERT INTO `weather_city` VALUES ('1420', '湖北', '武汉', '蔡甸');
+INSERT INTO `weather_city` VALUES ('1421', '湖北', '武汉', '黄陂');
+INSERT INTO `weather_city` VALUES ('1422', '湖北', '武汉', '新洲');
+INSERT INTO `weather_city` VALUES ('1423', '湖北', '武汉', '江夏');
+INSERT INTO `weather_city` VALUES ('1424', '湖北', '武汉', '东西湖');
+INSERT INTO `weather_city` VALUES ('1425', '湖北', '襄阳', '襄阳');
+INSERT INTO `weather_city` VALUES ('1426', '湖北', '襄阳', '襄州');
+INSERT INTO `weather_city` VALUES ('1427', '湖北', '襄阳', '保康');
+INSERT INTO `weather_city` VALUES ('1428', '湖北', '襄阳', '南漳');
+INSERT INTO `weather_city` VALUES ('1429', '湖北', '襄阳', '宜城');
+INSERT INTO `weather_city` VALUES ('1430', '湖北', '襄阳', '老河口');
+INSERT INTO `weather_city` VALUES ('1431', '湖北', '襄阳', '谷城');
+INSERT INTO `weather_city` VALUES ('1432', '湖北', '襄阳', '枣阳');
+INSERT INTO `weather_city` VALUES ('1433', '湖北', '鄂州', '鄂州');
+INSERT INTO `weather_city` VALUES ('1434', '湖北', '鄂州', '梁子湖');
+INSERT INTO `weather_city` VALUES ('1435', '湖北', '孝感', '孝感');
+INSERT INTO `weather_city` VALUES ('1436', '湖北', '孝感', '安陆');
+INSERT INTO `weather_city` VALUES ('1437', '湖北', '孝感', '云梦');
+INSERT INTO `weather_city` VALUES ('1438', '湖北', '孝感', '大悟');
+INSERT INTO `weather_city` VALUES ('1439', '湖北', '孝感', '应城');
+INSERT INTO `weather_city` VALUES ('1440', '湖北', '孝感', '汉川');
+INSERT INTO `weather_city` VALUES ('1441', '湖北', '孝感', '孝昌');
+INSERT INTO `weather_city` VALUES ('1442', '湖北', '黄冈', '黄冈');
+INSERT INTO `weather_city` VALUES ('1443', '湖北', '黄冈', '红安');
+INSERT INTO `weather_city` VALUES ('1444', '湖北', '黄冈', '麻城');
+INSERT INTO `weather_city` VALUES ('1445', '湖北', '黄冈', '罗田');
+INSERT INTO `weather_city` VALUES ('1446', '湖北', '黄冈', '英山');
+INSERT INTO `weather_city` VALUES ('1447', '湖北', '黄冈', '浠水');
+INSERT INTO `weather_city` VALUES ('1448', '湖北', '黄冈', '蕲春');
+INSERT INTO `weather_city` VALUES ('1449', '湖北', '黄冈', '黄梅');
+INSERT INTO `weather_city` VALUES ('1450', '湖北', '黄冈', '武穴');
+INSERT INTO `weather_city` VALUES ('1451', '湖北', '黄冈', '团风');
+INSERT INTO `weather_city` VALUES ('1452', '湖北', '黄石', '黄石');
+INSERT INTO `weather_city` VALUES ('1453', '湖北', '黄石', '大冶');
+INSERT INTO `weather_city` VALUES ('1454', '湖北', '黄石', '阳新');
+INSERT INTO `weather_city` VALUES ('1455', '湖北', '黄石', '铁山');
+INSERT INTO `weather_city` VALUES ('1456', '湖北', '黄石', '下陆');
+INSERT INTO `weather_city` VALUES ('1457', '湖北', '黄石', '西塞山');
+INSERT INTO `weather_city` VALUES ('1458', '湖北', '咸宁', '咸宁');
+INSERT INTO `weather_city` VALUES ('1459', '湖北', '咸宁', '赤壁');
+INSERT INTO `weather_city` VALUES ('1460', '湖北', '咸宁', '嘉鱼');
+INSERT INTO `weather_city` VALUES ('1461', '湖北', '咸宁', '崇阳');
+INSERT INTO `weather_city` VALUES ('1462', '湖北', '咸宁', '通城');
+INSERT INTO `weather_city` VALUES ('1463', '湖北', '咸宁', '通山');
+INSERT INTO `weather_city` VALUES ('1464', '湖北', '荆州', '荆州');
+INSERT INTO `weather_city` VALUES ('1465', '湖北', '荆州', '江陵');
+INSERT INTO `weather_city` VALUES ('1466', '湖北', '荆州', '公安');
+INSERT INTO `weather_city` VALUES ('1467', '湖北', '荆州', '石首');
+INSERT INTO `weather_city` VALUES ('1468', '湖北', '荆州', '监利');
+INSERT INTO `weather_city` VALUES ('1469', '湖北', '荆州', '洪湖');
+INSERT INTO `weather_city` VALUES ('1470', '湖北', '荆州', '松滋');
+INSERT INTO `weather_city` VALUES ('1471', '湖北', '宜昌', '宜昌');
+INSERT INTO `weather_city` VALUES ('1472', '湖北', '宜昌', '远安');
+INSERT INTO `weather_city` VALUES ('1473', '湖北', '宜昌', '秭归');
+INSERT INTO `weather_city` VALUES ('1474', '湖北', '宜昌', '兴山');
+INSERT INTO `weather_city` VALUES ('1475', '湖北', '宜昌', '宜昌县');
+INSERT INTO `weather_city` VALUES ('1476', '湖北', '宜昌', '五峰');
+INSERT INTO `weather_city` VALUES ('1477', '湖北', '宜昌', '当阳');
+INSERT INTO `weather_city` VALUES ('1478', '湖北', '宜昌', '长阳');
+INSERT INTO `weather_city` VALUES ('1479', '湖北', '宜昌', '宜都');
+INSERT INTO `weather_city` VALUES ('1480', '湖北', '宜昌', '枝江');
+INSERT INTO `weather_city` VALUES ('1481', '湖北', '宜昌', '三峡');
+INSERT INTO `weather_city` VALUES ('1482', '湖北', '宜昌', '夷陵');
+INSERT INTO `weather_city` VALUES ('1483', '湖北', '恩施', '恩施');
+INSERT INTO `weather_city` VALUES ('1484', '湖北', '恩施', '利川');
+INSERT INTO `weather_city` VALUES ('1485', '湖北', '恩施', '建始');
+INSERT INTO `weather_city` VALUES ('1486', '湖北', '恩施', '咸丰');
+INSERT INTO `weather_city` VALUES ('1487', '湖北', '恩施', '宣恩');
+INSERT INTO `weather_city` VALUES ('1488', '湖北', '恩施', '鹤峰');
+INSERT INTO `weather_city` VALUES ('1489', '湖北', '恩施', '来凤');
+INSERT INTO `weather_city` VALUES ('1490', '湖北', '恩施', '巴东');
+INSERT INTO `weather_city` VALUES ('1491', '湖北', '十堰', '十堰');
+INSERT INTO `weather_city` VALUES ('1492', '湖北', '十堰', '竹溪');
+INSERT INTO `weather_city` VALUES ('1493', '湖北', '十堰', '郧西');
+INSERT INTO `weather_city` VALUES ('1494', '湖北', '十堰', '郧县');
+INSERT INTO `weather_city` VALUES ('1495', '湖北', '十堰', '竹山');
+INSERT INTO `weather_city` VALUES ('1496', '湖北', '十堰', '房县');
+INSERT INTO `weather_city` VALUES ('1497', '湖北', '十堰', '丹江口');
+INSERT INTO `weather_city` VALUES ('1498', '湖北', '十堰', '茅箭');
+INSERT INTO `weather_city` VALUES ('1499', '湖北', '十堰', '张湾');
+INSERT INTO `weather_city` VALUES ('1500', '湖北', '神农架', '神农架');
+INSERT INTO `weather_city` VALUES ('1501', '湖北', '随州', '随州');
+INSERT INTO `weather_city` VALUES ('1502', '湖北', '随州', '广水');
+INSERT INTO `weather_city` VALUES ('1503', '湖北', '荆门', '荆门');
+INSERT INTO `weather_city` VALUES ('1504', '湖北', '荆门', '钟祥');
+INSERT INTO `weather_city` VALUES ('1505', '湖北', '荆门', '京山');
+INSERT INTO `weather_city` VALUES ('1506', '湖北', '荆门', '掇刀');
+INSERT INTO `weather_city` VALUES ('1507', '湖北', '荆门', '沙洋');
+INSERT INTO `weather_city` VALUES ('1508', '湖北', '荆州', '沙市');
+INSERT INTO `weather_city` VALUES ('1509', '湖北', '天门', '天门');
+INSERT INTO `weather_city` VALUES ('1510', '湖北', '仙桃', '仙桃');
+INSERT INTO `weather_city` VALUES ('1511', '湖北', '潜江', '潜江');
+INSERT INTO `weather_city` VALUES ('1512', '浙江', '杭州', '杭州');
+INSERT INTO `weather_city` VALUES ('1513', '浙江', '杭州', '萧山');
+INSERT INTO `weather_city` VALUES ('1514', '浙江', '杭州', '桐庐');
+INSERT INTO `weather_city` VALUES ('1515', '浙江', '杭州', '淳安');
+INSERT INTO `weather_city` VALUES ('1516', '浙江', '杭州', '建德');
+INSERT INTO `weather_city` VALUES ('1517', '浙江', '杭州', '余杭');
+INSERT INTO `weather_city` VALUES ('1518', '浙江', '杭州', '临安');
+INSERT INTO `weather_city` VALUES ('1519', '浙江', '杭州', '富阳');
+INSERT INTO `weather_city` VALUES ('1520', '浙江', '湖州', '湖州');
+INSERT INTO `weather_city` VALUES ('1521', '浙江', '湖州', '长兴');
+INSERT INTO `weather_city` VALUES ('1522', '浙江', '湖州', '安吉');
+INSERT INTO `weather_city` VALUES ('1523', '浙江', '湖州', '德清');
+INSERT INTO `weather_city` VALUES ('1524', '浙江', '嘉兴', '嘉兴');
+INSERT INTO `weather_city` VALUES ('1525', '浙江', '嘉兴', '嘉善');
+INSERT INTO `weather_city` VALUES ('1526', '浙江', '嘉兴', '海宁');
+INSERT INTO `weather_city` VALUES ('1527', '浙江', '嘉兴', '桐乡');
+INSERT INTO `weather_city` VALUES ('1528', '浙江', '嘉兴', '平湖');
+INSERT INTO `weather_city` VALUES ('1529', '浙江', '嘉兴', '海盐');
+INSERT INTO `weather_city` VALUES ('1530', '浙江', '宁波', '宁波');
+INSERT INTO `weather_city` VALUES ('1531', '浙江', '宁波', '慈溪');
+INSERT INTO `weather_city` VALUES ('1532', '浙江', '宁波', '余姚');
+INSERT INTO `weather_city` VALUES ('1533', '浙江', '宁波', '奉化');
+INSERT INTO `weather_city` VALUES ('1534', '浙江', '宁波', '象山');
+INSERT INTO `weather_city` VALUES ('1535', '浙江', '宁波', '宁海');
+INSERT INTO `weather_city` VALUES ('1536', '浙江', '宁波', '北仑');
+INSERT INTO `weather_city` VALUES ('1537', '浙江', '宁波', '鄞州');
+INSERT INTO `weather_city` VALUES ('1538', '浙江', '宁波', '镇海');
+INSERT INTO `weather_city` VALUES ('1539', '浙江', '绍兴', '绍兴');
+INSERT INTO `weather_city` VALUES ('1540', '浙江', '绍兴', '诸暨');
+INSERT INTO `weather_city` VALUES ('1541', '浙江', '绍兴', '上虞');
+INSERT INTO `weather_city` VALUES ('1542', '浙江', '绍兴', '新昌');
+INSERT INTO `weather_city` VALUES ('1543', '浙江', '绍兴', '嵊州');
+INSERT INTO `weather_city` VALUES ('1544', '浙江', '台州', '台州');
+INSERT INTO `weather_city` VALUES ('1545', '浙江', '台州', '玉环');
+INSERT INTO `weather_city` VALUES ('1546', '浙江', '台州', '三门');
+INSERT INTO `weather_city` VALUES ('1547', '浙江', '台州', '天台');
+INSERT INTO `weather_city` VALUES ('1548', '浙江', '台州', '仙居');
+INSERT INTO `weather_city` VALUES ('1549', '浙江', '台州', '温岭');
+INSERT INTO `weather_city` VALUES ('1550', '浙江', '台州', '洪家');
+INSERT INTO `weather_city` VALUES ('1551', '浙江', '台州', '临海');
+INSERT INTO `weather_city` VALUES ('1552', '浙江', '台州', '椒江');
+INSERT INTO `weather_city` VALUES ('1553', '浙江', '台州', '黄岩');
+INSERT INTO `weather_city` VALUES ('1554', '浙江', '台州', '路桥');
+INSERT INTO `weather_city` VALUES ('1555', '浙江', '温州', '温州');
+INSERT INTO `weather_city` VALUES ('1556', '浙江', '温州', '泰顺');
+INSERT INTO `weather_city` VALUES ('1557', '浙江', '温州', '文成');
+INSERT INTO `weather_city` VALUES ('1558', '浙江', '温州', '平阳');
+INSERT INTO `weather_city` VALUES ('1559', '浙江', '温州', '瑞安');
+INSERT INTO `weather_city` VALUES ('1560', '浙江', '温州', '洞头');
+INSERT INTO `weather_city` VALUES ('1561', '浙江', '温州', '乐清');
+INSERT INTO `weather_city` VALUES ('1562', '浙江', '温州', '永嘉');
+INSERT INTO `weather_city` VALUES ('1563', '浙江', '温州', '苍南');
+INSERT INTO `weather_city` VALUES ('1564', '浙江', '丽水', '丽水');
+INSERT INTO `weather_city` VALUES ('1565', '浙江', '丽水', '遂昌');
+INSERT INTO `weather_city` VALUES ('1566', '浙江', '丽水', '龙泉');
+INSERT INTO `weather_city` VALUES ('1567', '浙江', '丽水', '缙云');
+INSERT INTO `weather_city` VALUES ('1568', '浙江', '丽水', '青田');
+INSERT INTO `weather_city` VALUES ('1569', '浙江', '丽水', '云和');
+INSERT INTO `weather_city` VALUES ('1570', '浙江', '丽水', '庆元');
+INSERT INTO `weather_city` VALUES ('1571', '浙江', '丽水', '松阳');
+INSERT INTO `weather_city` VALUES ('1572', '浙江', '丽水', '景宁');
+INSERT INTO `weather_city` VALUES ('1573', '浙江', '金华', '金华');
+INSERT INTO `weather_city` VALUES ('1574', '浙江', '金华', '浦江');
+INSERT INTO `weather_city` VALUES ('1575', '浙江', '金华', '兰溪');
+INSERT INTO `weather_city` VALUES ('1576', '浙江', '金华', '义乌');
+INSERT INTO `weather_city` VALUES ('1577', '浙江', '金华', '东阳');
+INSERT INTO `weather_city` VALUES ('1578', '浙江', '金华', '武义');
+INSERT INTO `weather_city` VALUES ('1579', '浙江', '金华', '永康');
+INSERT INTO `weather_city` VALUES ('1580', '浙江', '金华', '磐安');
+INSERT INTO `weather_city` VALUES ('1581', '浙江', '衢州', '衢州');
+INSERT INTO `weather_city` VALUES ('1582', '浙江', '衢州', '常山');
+INSERT INTO `weather_city` VALUES ('1583', '浙江', '衢州', '开化');
+INSERT INTO `weather_city` VALUES ('1584', '浙江', '衢州', '龙游');
+INSERT INTO `weather_city` VALUES ('1585', '浙江', '衢州', '江山');
+INSERT INTO `weather_city` VALUES ('1586', '浙江', '衢州', '衢江');
+INSERT INTO `weather_city` VALUES ('1587', '浙江', '舟山', '舟山');
+INSERT INTO `weather_city` VALUES ('1588', '浙江', '舟山', '嵊泗');
+INSERT INTO `weather_city` VALUES ('1589', '浙江', '舟山', '岱山');
+INSERT INTO `weather_city` VALUES ('1590', '浙江', '舟山', '普陀');
+INSERT INTO `weather_city` VALUES ('1591', '浙江', '舟山', '定海');
+INSERT INTO `weather_city` VALUES ('1592', '安徽', '合肥', '合肥');
+INSERT INTO `weather_city` VALUES ('1593', '安徽', '合肥', '长丰');
+INSERT INTO `weather_city` VALUES ('1594', '安徽', '合肥', '肥东');
+INSERT INTO `weather_city` VALUES ('1595', '安徽', '合肥', '肥西');
+INSERT INTO `weather_city` VALUES ('1596', '安徽', '蚌埠', '蚌埠');
+INSERT INTO `weather_city` VALUES ('1597', '安徽', '蚌埠', '怀远');
+INSERT INTO `weather_city` VALUES ('1598', '安徽', '蚌埠', '固镇');
+INSERT INTO `weather_city` VALUES ('1599', '安徽', '蚌埠', '五河');
+INSERT INTO `weather_city` VALUES ('1600', '安徽', '芜湖', '芜湖');
+INSERT INTO `weather_city` VALUES ('1601', '安徽', '芜湖', '繁昌');
+INSERT INTO `weather_city` VALUES ('1602', '安徽', '芜湖', '芜湖县');
+INSERT INTO `weather_city` VALUES ('1603', '安徽', '芜湖', '南陵');
+INSERT INTO `weather_city` VALUES ('1604', '安徽', '淮南', '淮南');
+INSERT INTO `weather_city` VALUES ('1605', '安徽', '淮南', '凤台');
+INSERT INTO `weather_city` VALUES ('1606', '安徽', '淮南', '潘集');
+INSERT INTO `weather_city` VALUES ('1607', '安徽', '马鞍山', '马鞍山');
+INSERT INTO `weather_city` VALUES ('1608', '安徽', '马鞍山', '当涂');
+INSERT INTO `weather_city` VALUES ('1609', '安徽', '安庆', '安庆');
+INSERT INTO `weather_city` VALUES ('1610', '安徽', '安庆', '枞阳');
+INSERT INTO `weather_city` VALUES ('1611', '安徽', '安庆', '太湖');
+INSERT INTO `weather_city` VALUES ('1612', '安徽', '安庆', '潜山');
+INSERT INTO `weather_city` VALUES ('1613', '安徽', '安庆', '怀宁');
+INSERT INTO `weather_city` VALUES ('1614', '安徽', '安庆', '宿松');
+INSERT INTO `weather_city` VALUES ('1615', '安徽', '安庆', '望江');
+INSERT INTO `weather_city` VALUES ('1616', '安徽', '安庆', '岳西');
+INSERT INTO `weather_city` VALUES ('1617', '安徽', '安庆', '桐城');
+INSERT INTO `weather_city` VALUES ('1618', '安徽', '宿州', '宿州');
+INSERT INTO `weather_city` VALUES ('1619', '安徽', '宿州', '砀山');
+INSERT INTO `weather_city` VALUES ('1620', '安徽', '宿州', '灵璧');
+INSERT INTO `weather_city` VALUES ('1621', '安徽', '宿州', '泗县');
+INSERT INTO `weather_city` VALUES ('1622', '安徽', '宿州', '萧县');
+INSERT INTO `weather_city` VALUES ('1623', '安徽', '阜阳', '阜阳');
+INSERT INTO `weather_city` VALUES ('1624', '安徽', '阜阳', '阜南');
+INSERT INTO `weather_city` VALUES ('1625', '安徽', '阜阳', '颍上');
+INSERT INTO `weather_city` VALUES ('1626', '安徽', '阜阳', '临泉');
+INSERT INTO `weather_city` VALUES ('1627', '安徽', '阜阳', '界首');
+INSERT INTO `weather_city` VALUES ('1628', '安徽', '阜阳', '太和');
+INSERT INTO `weather_city` VALUES ('1629', '安徽', '亳州', '亳州');
+INSERT INTO `weather_city` VALUES ('1630', '安徽', '亳州', '涡阳');
+INSERT INTO `weather_city` VALUES ('1631', '安徽', '亳州', '利辛');
+INSERT INTO `weather_city` VALUES ('1632', '安徽', '亳州', '蒙城');
+INSERT INTO `weather_city` VALUES ('1633', '安徽', '黄山', '黄山');
+INSERT INTO `weather_city` VALUES ('1634', '安徽', '黄山', '黄山区');
+INSERT INTO `weather_city` VALUES ('1635', '安徽', '黄山', '屯溪');
+INSERT INTO `weather_city` VALUES ('1636', '安徽', '黄山', '祁门');
+INSERT INTO `weather_city` VALUES ('1637', '安徽', '黄山', '黟县');
+INSERT INTO `weather_city` VALUES ('1638', '安徽', '黄山', '歙县');
+INSERT INTO `weather_city` VALUES ('1639', '安徽', '黄山', '休宁');
+INSERT INTO `weather_city` VALUES ('1640', '安徽', '黄山', '黄山风景区');
+INSERT INTO `weather_city` VALUES ('1641', '安徽', '滁州', '滁州');
+INSERT INTO `weather_city` VALUES ('1642', '安徽', '滁州', '凤阳');
+INSERT INTO `weather_city` VALUES ('1643', '安徽', '滁州', '明光');
+INSERT INTO `weather_city` VALUES ('1644', '安徽', '滁州', '定远');
+INSERT INTO `weather_city` VALUES ('1645', '安徽', '滁州', '全椒');
+INSERT INTO `weather_city` VALUES ('1646', '安徽', '滁州', '来安');
+INSERT INTO `weather_city` VALUES ('1647', '安徽', '滁州', '天长');
+INSERT INTO `weather_city` VALUES ('1648', '安徽', '淮北', '淮北');
+INSERT INTO `weather_city` VALUES ('1649', '安徽', '淮北', '濉溪');
+INSERT INTO `weather_city` VALUES ('1650', '安徽', '铜陵', '铜陵');
+INSERT INTO `weather_city` VALUES ('1651', '安徽', '宣城', '宣城');
+INSERT INTO `weather_city` VALUES ('1652', '安徽', '宣城', '泾县');
+INSERT INTO `weather_city` VALUES ('1653', '安徽', '宣城', '旌德');
+INSERT INTO `weather_city` VALUES ('1654', '安徽', '宣城', '宁国');
+INSERT INTO `weather_city` VALUES ('1655', '安徽', '宣城', '绩溪');
+INSERT INTO `weather_city` VALUES ('1656', '安徽', '宣城', '广德');
+INSERT INTO `weather_city` VALUES ('1657', '安徽', '宣城', '郎溪');
+INSERT INTO `weather_city` VALUES ('1658', '安徽', '六安', '六安');
+INSERT INTO `weather_city` VALUES ('1659', '安徽', '六安', '霍邱');
+INSERT INTO `weather_city` VALUES ('1660', '安徽', '六安', '寿县');
+INSERT INTO `weather_city` VALUES ('1661', '安徽', '六安', '金寨');
+INSERT INTO `weather_city` VALUES ('1662', '安徽', '六安', '霍山');
+INSERT INTO `weather_city` VALUES ('1663', '安徽', '六安', '舒城');
+INSERT INTO `weather_city` VALUES ('1664', '安徽', '巢湖', '巢湖');
+INSERT INTO `weather_city` VALUES ('1665', '安徽', '巢湖', '庐江');
+INSERT INTO `weather_city` VALUES ('1666', '安徽', '巢湖', '无为');
+INSERT INTO `weather_city` VALUES ('1667', '安徽', '巢湖', '含山');
+INSERT INTO `weather_city` VALUES ('1668', '安徽', '巢湖', '和县');
+INSERT INTO `weather_city` VALUES ('1669', '安徽', '池州', '池州');
+INSERT INTO `weather_city` VALUES ('1670', '安徽', '池州', '东至');
+INSERT INTO `weather_city` VALUES ('1671', '安徽', '池州', '青阳');
+INSERT INTO `weather_city` VALUES ('1672', '安徽', '池州', '九华山');
+INSERT INTO `weather_city` VALUES ('1673', '安徽', '池州', '石台');
+INSERT INTO `weather_city` VALUES ('1674', '福建', '福州', '福州');
+INSERT INTO `weather_city` VALUES ('1675', '福建', '福州', '闽清');
+INSERT INTO `weather_city` VALUES ('1676', '福建', '福州', '闽侯');
+INSERT INTO `weather_city` VALUES ('1677', '福建', '福州', '罗源');
+INSERT INTO `weather_city` VALUES ('1678', '福建', '福州', '连江');
+INSERT INTO `weather_city` VALUES ('1679', '福建', '福州', '永泰');
+INSERT INTO `weather_city` VALUES ('1680', '福建', '福州', '平潭');
+INSERT INTO `weather_city` VALUES ('1681', '福建', '福州', '长乐');
+INSERT INTO `weather_city` VALUES ('1682', '福建', '福州', '福清');
+INSERT INTO `weather_city` VALUES ('1683', '福建', '厦门', '厦门');
+INSERT INTO `weather_city` VALUES ('1684', '福建', '厦门', '同安');
+INSERT INTO `weather_city` VALUES ('1685', '福建', '宁德', '宁德');
+INSERT INTO `weather_city` VALUES ('1686', '福建', '宁德', '古田');
+INSERT INTO `weather_city` VALUES ('1687', '福建', '宁德', '霞浦');
+INSERT INTO `weather_city` VALUES ('1688', '福建', '宁德', '寿宁');
+INSERT INTO `weather_city` VALUES ('1689', '福建', '宁德', '周宁');
+INSERT INTO `weather_city` VALUES ('1690', '福建', '宁德', '福安');
+INSERT INTO `weather_city` VALUES ('1691', '福建', '宁德', '柘荣');
+INSERT INTO `weather_city` VALUES ('1692', '福建', '宁德', '福鼎');
+INSERT INTO `weather_city` VALUES ('1693', '福建', '宁德', '屏南');
+INSERT INTO `weather_city` VALUES ('1694', '福建', '莆田', '莆田');
+INSERT INTO `weather_city` VALUES ('1695', '福建', '莆田', '仙游');
+INSERT INTO `weather_city` VALUES ('1696', '福建', '莆田', '秀屿港');
+INSERT INTO `weather_city` VALUES ('1697', '福建', '莆田', '涵江');
+INSERT INTO `weather_city` VALUES ('1698', '福建', '莆田', '秀屿');
+INSERT INTO `weather_city` VALUES ('1699', '福建', '莆田', '荔城');
+INSERT INTO `weather_city` VALUES ('1700', '福建', '莆田', '城厢');
+INSERT INTO `weather_city` VALUES ('1701', '福建', '泉州', '泉州');
+INSERT INTO `weather_city` VALUES ('1702', '福建', '泉州', '安溪');
+INSERT INTO `weather_city` VALUES ('1703', '福建', '泉州', '永春');
+INSERT INTO `weather_city` VALUES ('1704', '福建', '泉州', '德化');
+INSERT INTO `weather_city` VALUES ('1705', '福建', '泉州', '南安');
+INSERT INTO `weather_city` VALUES ('1706', '福建', '泉州', '崇武');
+INSERT INTO `weather_city` VALUES ('1707', '福建', '泉州', '惠安');
+INSERT INTO `weather_city` VALUES ('1708', '福建', '泉州', '晋江');
+INSERT INTO `weather_city` VALUES ('1709', '福建', '泉州', '石狮');
+INSERT INTO `weather_city` VALUES ('1710', '福建', '漳州', '漳州');
+INSERT INTO `weather_city` VALUES ('1711', '福建', '漳州', '长泰');
+INSERT INTO `weather_city` VALUES ('1712', '福建', '漳州', '南靖');
+INSERT INTO `weather_city` VALUES ('1713', '福建', '漳州', '平和');
+INSERT INTO `weather_city` VALUES ('1714', '福建', '漳州', '龙海');
+INSERT INTO `weather_city` VALUES ('1715', '福建', '漳州', '漳浦');
+INSERT INTO `weather_city` VALUES ('1716', '福建', '漳州', '诏安');
+INSERT INTO `weather_city` VALUES ('1717', '福建', '漳州', '东山');
+INSERT INTO `weather_city` VALUES ('1718', '福建', '漳州', '云霄');
+INSERT INTO `weather_city` VALUES ('1719', '福建', '漳州', '华安');
+INSERT INTO `weather_city` VALUES ('1720', '福建', '龙岩', '龙岩');
+INSERT INTO `weather_city` VALUES ('1721', '福建', '龙岩', '长汀');
+INSERT INTO `weather_city` VALUES ('1722', '福建', '龙岩', '连城');
+INSERT INTO `weather_city` VALUES ('1723', '福建', '龙岩', '武平');
+INSERT INTO `weather_city` VALUES ('1724', '福建', '龙岩', '上杭');
+INSERT INTO `weather_city` VALUES ('1725', '福建', '龙岩', '永定');
+INSERT INTO `weather_city` VALUES ('1726', '福建', '龙岩', '漳平');
+INSERT INTO `weather_city` VALUES ('1727', '福建', '三明', '三明');
+INSERT INTO `weather_city` VALUES ('1728', '福建', '三明', '宁化');
+INSERT INTO `weather_city` VALUES ('1729', '福建', '三明', '清流');
+INSERT INTO `weather_city` VALUES ('1730', '福建', '三明', '泰宁');
+INSERT INTO `weather_city` VALUES ('1731', '福建', '三明', '将乐');
+INSERT INTO `weather_city` VALUES ('1732', '福建', '三明', '建宁');
+INSERT INTO `weather_city` VALUES ('1733', '福建', '三明', '明溪');
+INSERT INTO `weather_city` VALUES ('1734', '福建', '三明', '沙县');
+INSERT INTO `weather_city` VALUES ('1735', '福建', '三明', '尤溪');
+INSERT INTO `weather_city` VALUES ('1736', '福建', '三明', '永安');
+INSERT INTO `weather_city` VALUES ('1737', '福建', '三明', '大田');
+INSERT INTO `weather_city` VALUES ('1738', '福建', '南平', '南平');
+INSERT INTO `weather_city` VALUES ('1739', '福建', '南平', '顺昌');
+INSERT INTO `weather_city` VALUES ('1740', '福建', '南平', '光泽');
+INSERT INTO `weather_city` VALUES ('1741', '福建', '南平', '邵武');
+INSERT INTO `weather_city` VALUES ('1742', '福建', '南平', '武夷山');
+INSERT INTO `weather_city` VALUES ('1743', '福建', '南平', '浦城');
+INSERT INTO `weather_city` VALUES ('1744', '福建', '南平', '建阳');
+INSERT INTO `weather_city` VALUES ('1745', '福建', '南平', '松溪');
+INSERT INTO `weather_city` VALUES ('1746', '福建', '南平', '政和');
+INSERT INTO `weather_city` VALUES ('1747', '福建', '南平', '建瓯');
+INSERT INTO `weather_city` VALUES ('1748', '福建', '钓鱼岛', '钓鱼岛');
+INSERT INTO `weather_city` VALUES ('1749', '江西', '南昌', '南昌');
+INSERT INTO `weather_city` VALUES ('1750', '江西', '南昌', '新建');
+INSERT INTO `weather_city` VALUES ('1751', '江西', '南昌', '南昌县');
+INSERT INTO `weather_city` VALUES ('1752', '江西', '南昌', '安义');
+INSERT INTO `weather_city` VALUES ('1753', '江西', '南昌', '进贤');
+INSERT INTO `weather_city` VALUES ('1754', '江西', '南昌', '莲塘');
+INSERT INTO `weather_city` VALUES ('1755', '江西', '九江', '九江');
+INSERT INTO `weather_city` VALUES ('1756', '江西', '九江', '瑞昌');
+INSERT INTO `weather_city` VALUES ('1757', '江西', '九江', '庐山');
+INSERT INTO `weather_city` VALUES ('1758', '江西', '九江', '武宁');
+INSERT INTO `weather_city` VALUES ('1759', '江西', '九江', '德安');
+INSERT INTO `weather_city` VALUES ('1760', '江西', '九江', '永修');
+INSERT INTO `weather_city` VALUES ('1761', '江西', '九江', '湖口');
+INSERT INTO `weather_city` VALUES ('1762', '江西', '九江', '彭泽');
+INSERT INTO `weather_city` VALUES ('1763', '江西', '九江', '星子');
+INSERT INTO `weather_city` VALUES ('1764', '江西', '九江', '都昌');
+INSERT INTO `weather_city` VALUES ('1765', '江西', '九江', '修水');
+INSERT INTO `weather_city` VALUES ('1766', '江西', '九江', '澎泽');
+INSERT INTO `weather_city` VALUES ('1767', '江西', '上饶', '上饶');
+INSERT INTO `weather_city` VALUES ('1768', '江西', '上饶', '鄱阳');
+INSERT INTO `weather_city` VALUES ('1769', '江西', '上饶', '婺源');
+INSERT INTO `weather_city` VALUES ('1770', '江西', '上饶', '余干');
+INSERT INTO `weather_city` VALUES ('1771', '江西', '上饶', '万年');
+INSERT INTO `weather_city` VALUES ('1772', '江西', '上饶', '德兴');
+INSERT INTO `weather_city` VALUES ('1773', '江西', '上饶', '上饶县');
+INSERT INTO `weather_city` VALUES ('1774', '江西', '上饶', '弋阳');
+INSERT INTO `weather_city` VALUES ('1775', '江西', '上饶', '横峰');
+INSERT INTO `weather_city` VALUES ('1776', '江西', '上饶', '铅山');
+INSERT INTO `weather_city` VALUES ('1777', '江西', '上饶', '玉山');
+INSERT INTO `weather_city` VALUES ('1778', '江西', '上饶', '广丰');
+INSERT INTO `weather_city` VALUES ('1779', '江西', '抚州', '抚州');
+INSERT INTO `weather_city` VALUES ('1780', '江西', '抚州', '广昌');
+INSERT INTO `weather_city` VALUES ('1781', '江西', '抚州', '乐安');
+INSERT INTO `weather_city` VALUES ('1782', '江西', '抚州', '崇仁');
+INSERT INTO `weather_city` VALUES ('1783', '江西', '抚州', '金溪');
+INSERT INTO `weather_city` VALUES ('1784', '江西', '抚州', '资溪');
+INSERT INTO `weather_city` VALUES ('1785', '江西', '抚州', '宜黄');
+INSERT INTO `weather_city` VALUES ('1786', '江西', '抚州', '南城');
+INSERT INTO `weather_city` VALUES ('1787', '江西', '抚州', '南丰');
+INSERT INTO `weather_city` VALUES ('1788', '江西', '抚州', '黎川');
+INSERT INTO `weather_city` VALUES ('1789', '江西', '抚州', '东乡');
+INSERT INTO `weather_city` VALUES ('1790', '江西', '宜春', '宜春');
+INSERT INTO `weather_city` VALUES ('1791', '江西', '宜春', '铜鼓');
+INSERT INTO `weather_city` VALUES ('1792', '江西', '宜春', '宜丰');
+INSERT INTO `weather_city` VALUES ('1793', '江西', '宜春', '万载');
+INSERT INTO `weather_city` VALUES ('1794', '江西', '宜春', '上高');
+INSERT INTO `weather_city` VALUES ('1795', '江西', '宜春', '靖安');
+INSERT INTO `weather_city` VALUES ('1796', '江西', '宜春', '奉新');
+INSERT INTO `weather_city` VALUES ('1797', '江西', '宜春', '高安');
+INSERT INTO `weather_city` VALUES ('1798', '江西', '宜春', '樟树');
+INSERT INTO `weather_city` VALUES ('1799', '江西', '宜春', '丰城');
+INSERT INTO `weather_city` VALUES ('1800', '江西', '吉安', '吉安');
+INSERT INTO `weather_city` VALUES ('1801', '江西', '吉安', '吉安县');
+INSERT INTO `weather_city` VALUES ('1802', '江西', '吉安', '吉水');
+INSERT INTO `weather_city` VALUES ('1803', '江西', '吉安', '新干');
+INSERT INTO `weather_city` VALUES ('1804', '江西', '吉安', '峡江');
+INSERT INTO `weather_city` VALUES ('1805', '江西', '吉安', '永丰');
+INSERT INTO `weather_city` VALUES ('1806', '江西', '吉安', '永新');
+INSERT INTO `weather_city` VALUES ('1807', '江西', '吉安', '井冈山');
+INSERT INTO `weather_city` VALUES ('1808', '江西', '吉安', '万安');
+INSERT INTO `weather_city` VALUES ('1809', '江西', '吉安', '遂川');
+INSERT INTO `weather_city` VALUES ('1810', '江西', '吉安', '泰和');
+INSERT INTO `weather_city` VALUES ('1811', '江西', '吉安', '安福');
+INSERT INTO `weather_city` VALUES ('1812', '江西', '吉安', '宁冈');
+INSERT INTO `weather_city` VALUES ('1813', '江西', '赣州', '赣州');
+INSERT INTO `weather_city` VALUES ('1814', '江西', '赣州', '崇义');
+INSERT INTO `weather_city` VALUES ('1815', '江西', '赣州', '上犹');
+INSERT INTO `weather_city` VALUES ('1816', '江西', '赣州', '南康');
+INSERT INTO `weather_city` VALUES ('1817', '江西', '赣州', '大余');
+INSERT INTO `weather_city` VALUES ('1818', '江西', '赣州', '信丰');
+INSERT INTO `weather_city` VALUES ('1819', '江西', '赣州', '宁都');
+INSERT INTO `weather_city` VALUES ('1820', '江西', '赣州', '石城');
+INSERT INTO `weather_city` VALUES ('1821', '江西', '赣州', '瑞金');
+INSERT INTO `weather_city` VALUES ('1822', '江西', '赣州', '于都');
+INSERT INTO `weather_city` VALUES ('1823', '江西', '赣州', '会昌');
+INSERT INTO `weather_city` VALUES ('1824', '江西', '赣州', '安远');
+INSERT INTO `weather_city` VALUES ('1825', '江西', '赣州', '全南');
+INSERT INTO `weather_city` VALUES ('1826', '江西', '赣州', '龙南');
+INSERT INTO `weather_city` VALUES ('1827', '江西', '赣州', '定南');
+INSERT INTO `weather_city` VALUES ('1828', '江西', '赣州', '寻乌');
+INSERT INTO `weather_city` VALUES ('1829', '江西', '赣州', '兴国');
+INSERT INTO `weather_city` VALUES ('1830', '江西', '赣州', '赣县');
+INSERT INTO `weather_city` VALUES ('1831', '江西', '景德镇', '景德镇');
+INSERT INTO `weather_city` VALUES ('1832', '江西', '景德镇', '乐平');
+INSERT INTO `weather_city` VALUES ('1833', '江西', '景德镇', '浮梁');
+INSERT INTO `weather_city` VALUES ('1834', '江西', '萍乡', '萍乡');
+INSERT INTO `weather_city` VALUES ('1835', '江西', '萍乡', '莲花');
+INSERT INTO `weather_city` VALUES ('1836', '江西', '萍乡', '上栗');
+INSERT INTO `weather_city` VALUES ('1837', '江西', '萍乡', '安源');
+INSERT INTO `weather_city` VALUES ('1838', '江西', '萍乡', '芦溪');
+INSERT INTO `weather_city` VALUES ('1839', '江西', '萍乡', '湘东');
+INSERT INTO `weather_city` VALUES ('1840', '江西', '新余', '新余');
+INSERT INTO `weather_city` VALUES ('1841', '江西', '新余', '分宜');
+INSERT INTO `weather_city` VALUES ('1842', '江西', '鹰潭', '鹰潭');
+INSERT INTO `weather_city` VALUES ('1843', '江西', '鹰潭', '余江');
+INSERT INTO `weather_city` VALUES ('1844', '江西', '鹰潭', '贵溪');
+INSERT INTO `weather_city` VALUES ('1845', '湖南', '长沙', '长沙');
+INSERT INTO `weather_city` VALUES ('1846', '湖南', '长沙', '宁乡');
+INSERT INTO `weather_city` VALUES ('1847', '湖南', '长沙', '浏阳');
+INSERT INTO `weather_city` VALUES ('1848', '湖南', '长沙', '马坡岭');
+INSERT INTO `weather_city` VALUES ('1849', '湖南', '长沙', '望城');
+INSERT INTO `weather_city` VALUES ('1850', '湖南', '湘潭', '湘潭');
+INSERT INTO `weather_city` VALUES ('1851', '湖南', '湘潭', '韶山');
+INSERT INTO `weather_city` VALUES ('1852', '湖南', '湘潭', '湘乡');
+INSERT INTO `weather_city` VALUES ('1853', '湖南', '株洲', '株洲');
+INSERT INTO `weather_city` VALUES ('1854', '湖南', '株洲', '攸县');
+INSERT INTO `weather_city` VALUES ('1855', '湖南', '株洲', '醴陵');
+INSERT INTO `weather_city` VALUES ('1856', '湖南', '株洲', '茶陵');
+INSERT INTO `weather_city` VALUES ('1857', '湖南', '株洲', '炎陵');
+INSERT INTO `weather_city` VALUES ('1858', '湖南', '衡阳', '衡阳');
+INSERT INTO `weather_city` VALUES ('1859', '湖南', '衡阳', '衡山');
+INSERT INTO `weather_city` VALUES ('1860', '湖南', '衡阳', '衡东');
+INSERT INTO `weather_city` VALUES ('1861', '湖南', '衡阳', '祁东');
+INSERT INTO `weather_city` VALUES ('1862', '湖南', '衡阳', '衡阳县');
+INSERT INTO `weather_city` VALUES ('1863', '湖南', '衡阳', '常宁');
+INSERT INTO `weather_city` VALUES ('1864', '湖南', '衡阳', '衡南');
+INSERT INTO `weather_city` VALUES ('1865', '湖南', '衡阳', '耒阳');
+INSERT INTO `weather_city` VALUES ('1866', '湖南', '衡阳', '南岳');
+INSERT INTO `weather_city` VALUES ('1867', '湖南', '郴州', '郴州');
+INSERT INTO `weather_city` VALUES ('1868', '湖南', '郴州', '桂阳');
+INSERT INTO `weather_city` VALUES ('1869', '湖南', '郴州', '嘉禾');
+INSERT INTO `weather_city` VALUES ('1870', '湖南', '郴州', '宜章');
+INSERT INTO `weather_city` VALUES ('1871', '湖南', '郴州', '临武');
+INSERT INTO `weather_city` VALUES ('1872', '湖南', '郴州', '资兴');
+INSERT INTO `weather_city` VALUES ('1873', '湖南', '郴州', '汝城');
+INSERT INTO `weather_city` VALUES ('1874', '湖南', '郴州', '安仁');
+INSERT INTO `weather_city` VALUES ('1875', '湖南', '郴州', '永兴');
+INSERT INTO `weather_city` VALUES ('1876', '湖南', '郴州', '桂东');
+INSERT INTO `weather_city` VALUES ('1877', '湖南', '郴州', '苏仙');
+INSERT INTO `weather_city` VALUES ('1878', '湖南', '常德', '常德');
+INSERT INTO `weather_city` VALUES ('1879', '湖南', '常德', '安乡');
+INSERT INTO `weather_city` VALUES ('1880', '湖南', '常德', '桃源');
+INSERT INTO `weather_city` VALUES ('1881', '湖南', '常德', '汉寿');
+INSERT INTO `weather_city` VALUES ('1882', '湖南', '常德', '澧县');
+INSERT INTO `weather_city` VALUES ('1883', '湖南', '常德', '临澧');
+INSERT INTO `weather_city` VALUES ('1884', '湖南', '常德', '石门');
+INSERT INTO `weather_city` VALUES ('1885', '湖南', '常德', '津市');
+INSERT INTO `weather_city` VALUES ('1886', '湖南', '益阳', '益阳');
+INSERT INTO `weather_city` VALUES ('1887', '湖南', '益阳', '赫山区');
+INSERT INTO `weather_city` VALUES ('1888', '湖南', '益阳', '南县');
+INSERT INTO `weather_city` VALUES ('1889', '湖南', '益阳', '桃江');
+INSERT INTO `weather_city` VALUES ('1890', '湖南', '益阳', '安化');
+INSERT INTO `weather_city` VALUES ('1891', '湖南', '益阳', '沅江');
+INSERT INTO `weather_city` VALUES ('1892', '湖南', '娄底', '娄底');
+INSERT INTO `weather_city` VALUES ('1893', '湖南', '娄底', '双峰');
+INSERT INTO `weather_city` VALUES ('1894', '湖南', '娄底', '冷水江');
+INSERT INTO `weather_city` VALUES ('1895', '湖南', '娄底', '新化');
+INSERT INTO `weather_city` VALUES ('1896', '湖南', '娄底', '涟源');
+INSERT INTO `weather_city` VALUES ('1897', '湖南', '邵阳', '邵阳');
+INSERT INTO `weather_city` VALUES ('1898', '湖南', '邵阳', '隆回');
+INSERT INTO `weather_city` VALUES ('1899', '湖南', '邵阳', '洞口');
+INSERT INTO `weather_city` VALUES ('1900', '湖南', '邵阳', '新邵');
+INSERT INTO `weather_city` VALUES ('1901', '湖南', '邵阳', '邵东');
+INSERT INTO `weather_city` VALUES ('1902', '湖南', '邵阳', '绥宁');
+INSERT INTO `weather_city` VALUES ('1903', '湖南', '邵阳', '新宁');
+INSERT INTO `weather_city` VALUES ('1904', '湖南', '邵阳', '武冈');
+INSERT INTO `weather_city` VALUES ('1905', '湖南', '邵阳', '城步');
+INSERT INTO `weather_city` VALUES ('1906', '湖南', '邵阳', '邵阳县');
+INSERT INTO `weather_city` VALUES ('1907', '湖南', '岳阳', '岳阳');
+INSERT INTO `weather_city` VALUES ('1908', '湖南', '岳阳', '华容');
+INSERT INTO `weather_city` VALUES ('1909', '湖南', '岳阳', '湘阴');
+INSERT INTO `weather_city` VALUES ('1910', '湖南', '岳阳', '汨罗');
+INSERT INTO `weather_city` VALUES ('1911', '湖南', '岳阳', '平江');
+INSERT INTO `weather_city` VALUES ('1912', '湖南', '岳阳', '临湘');
+INSERT INTO `weather_city` VALUES ('1913', '湖南', '张家界', '张家界');
+INSERT INTO `weather_city` VALUES ('1914', '湖南', '张家界', '桑植');
+INSERT INTO `weather_city` VALUES ('1915', '湖南', '张家界', '慈利');
+INSERT INTO `weather_city` VALUES ('1916', '湖南', '张家界', '武陵源');
+INSERT INTO `weather_city` VALUES ('1917', '湖南', '怀化', '怀化');
+INSERT INTO `weather_city` VALUES ('1918', '湖南', '怀化', '沅陵');
+INSERT INTO `weather_city` VALUES ('1919', '湖南', '怀化', '辰溪');
+INSERT INTO `weather_city` VALUES ('1920', '湖南', '怀化', '靖州');
+INSERT INTO `weather_city` VALUES ('1921', '湖南', '怀化', '会同');
+INSERT INTO `weather_city` VALUES ('1922', '湖南', '怀化', '通道');
+INSERT INTO `weather_city` VALUES ('1923', '湖南', '怀化', '麻阳');
+INSERT INTO `weather_city` VALUES ('1924', '湖南', '怀化', '新晃');
+INSERT INTO `weather_city` VALUES ('1925', '湖南', '怀化', '芷江');
+INSERT INTO `weather_city` VALUES ('1926', '湖南', '怀化', '溆浦');
+INSERT INTO `weather_city` VALUES ('1927', '湖南', '怀化', '中方');
+INSERT INTO `weather_city` VALUES ('1928', '湖南', '怀化', '洪江');
+INSERT INTO `weather_city` VALUES ('1929', '湖南', '永州', '永州');
+INSERT INTO `weather_city` VALUES ('1930', '湖南', '永州', '祁阳');
+INSERT INTO `weather_city` VALUES ('1931', '湖南', '永州', '东安');
+INSERT INTO `weather_city` VALUES ('1932', '湖南', '永州', '双牌');
+INSERT INTO `weather_city` VALUES ('1933', '湖南', '永州', '道县');
+INSERT INTO `weather_city` VALUES ('1934', '湖南', '永州', '宁远');
+INSERT INTO `weather_city` VALUES ('1935', '湖南', '永州', '江永');
+INSERT INTO `weather_city` VALUES ('1936', '湖南', '永州', '蓝山');
+INSERT INTO `weather_city` VALUES ('1937', '湖南', '永州', '新田');
+INSERT INTO `weather_city` VALUES ('1938', '湖南', '永州', '江华');
+INSERT INTO `weather_city` VALUES ('1939', '湖南', '永州', '冷水滩');
+INSERT INTO `weather_city` VALUES ('1940', '湖南', '湘西', '吉首');
+INSERT INTO `weather_city` VALUES ('1941', '湖南', '湘西', '保靖');
+INSERT INTO `weather_city` VALUES ('1942', '湖南', '湘西', '永顺');
+INSERT INTO `weather_city` VALUES ('1943', '湖南', '湘西', '古丈');
+INSERT INTO `weather_city` VALUES ('1944', '湖南', '湘西', '凤凰');
+INSERT INTO `weather_city` VALUES ('1945', '湖南', '湘西', '泸溪');
+INSERT INTO `weather_city` VALUES ('1946', '湖南', '湘西', '龙山');
+INSERT INTO `weather_city` VALUES ('1947', '湖南', '湘西', '花垣');
+INSERT INTO `weather_city` VALUES ('1948', '贵州', '贵阳', '贵阳');
+INSERT INTO `weather_city` VALUES ('1949', '贵州', '贵阳', '白云');
+INSERT INTO `weather_city` VALUES ('1950', '贵州', '贵阳', '花溪');
+INSERT INTO `weather_city` VALUES ('1951', '贵州', '贵阳', '乌当');
+INSERT INTO `weather_city` VALUES ('1952', '贵州', '贵阳', '息烽');
+INSERT INTO `weather_city` VALUES ('1953', '贵州', '贵阳', '开阳');
+INSERT INTO `weather_city` VALUES ('1954', '贵州', '贵阳', '修文');
+INSERT INTO `weather_city` VALUES ('1955', '贵州', '贵阳', '清镇');
+INSERT INTO `weather_city` VALUES ('1956', '贵州', '贵阳', '小河');
+INSERT INTO `weather_city` VALUES ('1957', '贵州', '贵阳', '云岩');
+INSERT INTO `weather_city` VALUES ('1958', '贵州', '贵阳', '南明');
+INSERT INTO `weather_city` VALUES ('1959', '贵州', '遵义', '遵义');
+INSERT INTO `weather_city` VALUES ('1960', '贵州', '遵义', '遵义县');
+INSERT INTO `weather_city` VALUES ('1961', '贵州', '遵义', '仁怀');
+INSERT INTO `weather_city` VALUES ('1962', '贵州', '遵义', '绥阳');
+INSERT INTO `weather_city` VALUES ('1963', '贵州', '遵义', '湄潭');
+INSERT INTO `weather_city` VALUES ('1964', '贵州', '遵义', '凤冈');
+INSERT INTO `weather_city` VALUES ('1965', '贵州', '遵义', '桐梓');
+INSERT INTO `weather_city` VALUES ('1966', '贵州', '遵义', '赤水');
+INSERT INTO `weather_city` VALUES ('1967', '贵州', '遵义', '习水');
+INSERT INTO `weather_city` VALUES ('1968', '贵州', '遵义', '道真');
+INSERT INTO `weather_city` VALUES ('1969', '贵州', '遵义', '正安');
+INSERT INTO `weather_city` VALUES ('1970', '贵州', '遵义', '务川');
+INSERT INTO `weather_city` VALUES ('1971', '贵州', '遵义', '余庆');
+INSERT INTO `weather_city` VALUES ('1972', '贵州', '遵义', '汇川');
+INSERT INTO `weather_city` VALUES ('1973', '贵州', '遵义', '红花岗');
+INSERT INTO `weather_city` VALUES ('1974', '贵州', '安顺', '安顺');
+INSERT INTO `weather_city` VALUES ('1975', '贵州', '安顺', '普定');
+INSERT INTO `weather_city` VALUES ('1976', '贵州', '安顺', '镇宁');
+INSERT INTO `weather_city` VALUES ('1977', '贵州', '安顺', '平坝');
+INSERT INTO `weather_city` VALUES ('1978', '贵州', '安顺', '紫云');
+INSERT INTO `weather_city` VALUES ('1979', '贵州', '安顺', '关岭');
+INSERT INTO `weather_city` VALUES ('1980', '贵州', '黔南', '都匀');
+INSERT INTO `weather_city` VALUES ('1981', '贵州', '黔南', '贵定');
+INSERT INTO `weather_city` VALUES ('1982', '贵州', '黔南', '瓮安');
+INSERT INTO `weather_city` VALUES ('1983', '贵州', '黔南', '长顺');
+INSERT INTO `weather_city` VALUES ('1984', '贵州', '黔南', '福泉');
+INSERT INTO `weather_city` VALUES ('1985', '贵州', '黔南', '惠水');
+INSERT INTO `weather_city` VALUES ('1986', '贵州', '黔南', '龙里');
+INSERT INTO `weather_city` VALUES ('1987', '贵州', '黔南', '罗甸');
+INSERT INTO `weather_city` VALUES ('1988', '贵州', '黔南', '平塘');
+INSERT INTO `weather_city` VALUES ('1989', '贵州', '黔南', '独山');
+INSERT INTO `weather_city` VALUES ('1990', '贵州', '黔南', '三都');
+INSERT INTO `weather_city` VALUES ('1991', '贵州', '黔南', '荔波');
+INSERT INTO `weather_city` VALUES ('1992', '贵州', '黔东南', '凯里');
+INSERT INTO `weather_city` VALUES ('1993', '贵州', '黔东南', '岑巩');
+INSERT INTO `weather_city` VALUES ('1994', '贵州', '黔东南', '施秉');
+INSERT INTO `weather_city` VALUES ('1995', '贵州', '黔东南', '镇远');
+INSERT INTO `weather_city` VALUES ('1996', '贵州', '黔东南', '黄平');
+INSERT INTO `weather_city` VALUES ('1997', '贵州', '黔东南', '麻江');
+INSERT INTO `weather_city` VALUES ('1998', '贵州', '黔东南', '丹寨');
+INSERT INTO `weather_city` VALUES ('1999', '贵州', '黔东南', '三穗');
+INSERT INTO `weather_city` VALUES ('2000', '贵州', '黔东南', '台江');
+INSERT INTO `weather_city` VALUES ('2001', '贵州', '黔东南', '剑河');
+INSERT INTO `weather_city` VALUES ('2002', '贵州', '黔东南', '雷山');
+INSERT INTO `weather_city` VALUES ('2003', '贵州', '黔东南', '黎平');
+INSERT INTO `weather_city` VALUES ('2004', '贵州', '黔东南', '天柱');
+INSERT INTO `weather_city` VALUES ('2005', '贵州', '黔东南', '锦屏');
+INSERT INTO `weather_city` VALUES ('2006', '贵州', '黔东南', '榕江');
+INSERT INTO `weather_city` VALUES ('2007', '贵州', '黔东南', '从江');
+INSERT INTO `weather_city` VALUES ('2008', '贵州', '铜仁', '铜仁');
+INSERT INTO `weather_city` VALUES ('2009', '贵州', '铜仁', '江口');
+INSERT INTO `weather_city` VALUES ('2010', '贵州', '铜仁', '玉屏');
+INSERT INTO `weather_city` VALUES ('2011', '贵州', '铜仁', '万山');
+INSERT INTO `weather_city` VALUES ('2012', '贵州', '铜仁', '思南');
+INSERT INTO `weather_city` VALUES ('2013', '贵州', '铜仁', '印江');
+INSERT INTO `weather_city` VALUES ('2014', '贵州', '铜仁', '石阡');
+INSERT INTO `weather_city` VALUES ('2015', '贵州', '铜仁', '沿河');
+INSERT INTO `weather_city` VALUES ('2016', '贵州', '铜仁', '德江');
+INSERT INTO `weather_city` VALUES ('2017', '贵州', '铜仁', '松桃');
+INSERT INTO `weather_city` VALUES ('2018', '贵州', '毕节', '毕节');
+INSERT INTO `weather_city` VALUES ('2019', '贵州', '毕节', '赫章');
+INSERT INTO `weather_city` VALUES ('2020', '贵州', '毕节', '金沙');
+INSERT INTO `weather_city` VALUES ('2021', '贵州', '毕节', '威宁');
+INSERT INTO `weather_city` VALUES ('2022', '贵州', '毕节', '大方');
+INSERT INTO `weather_city` VALUES ('2023', '贵州', '毕节', '纳雍');
+INSERT INTO `weather_city` VALUES ('2024', '贵州', '毕节', '织金');
+INSERT INTO `weather_city` VALUES ('2025', '贵州', '毕节', '黔西');
+INSERT INTO `weather_city` VALUES ('2026', '贵州', '六盘水', '水城');
+INSERT INTO `weather_city` VALUES ('2027', '贵州', '六盘水', '六枝');
+INSERT INTO `weather_city` VALUES ('2028', '贵州', '六盘水', '盘县');
+INSERT INTO `weather_city` VALUES ('2029', '贵州', '黔西南', '兴义');
+INSERT INTO `weather_city` VALUES ('2030', '贵州', '黔西南', '晴隆');
+INSERT INTO `weather_city` VALUES ('2031', '贵州', '黔西南', '兴仁');
+INSERT INTO `weather_city` VALUES ('2032', '贵州', '黔西南', '贞丰');
+INSERT INTO `weather_city` VALUES ('2033', '贵州', '黔西南', '望谟');
+INSERT INTO `weather_city` VALUES ('2034', '贵州', '黔西南', '安龙');
+INSERT INTO `weather_city` VALUES ('2035', '贵州', '黔西南', '册亨');
+INSERT INTO `weather_city` VALUES ('2036', '贵州', '黔西南', '普安');
+INSERT INTO `weather_city` VALUES ('2037', '四川', '成都', '成都');
+INSERT INTO `weather_city` VALUES ('2038', '四川', '成都', '龙泉驿');
+INSERT INTO `weather_city` VALUES ('2039', '四川', '成都', '新都');
+INSERT INTO `weather_city` VALUES ('2040', '四川', '成都', '温江');
+INSERT INTO `weather_city` VALUES ('2041', '四川', '成都', '金堂');
+INSERT INTO `weather_city` VALUES ('2042', '四川', '成都', '双流');
+INSERT INTO `weather_city` VALUES ('2043', '四川', '成都', '郫县');
+INSERT INTO `weather_city` VALUES ('2044', '四川', '成都', '大邑');
+INSERT INTO `weather_city` VALUES ('2045', '四川', '成都', '蒲江');
+INSERT INTO `weather_city` VALUES ('2046', '四川', '成都', '新津');
+INSERT INTO `weather_city` VALUES ('2047', '四川', '成都', '都江堰');
+INSERT INTO `weather_city` VALUES ('2048', '四川', '成都', '彭州');
+INSERT INTO `weather_city` VALUES ('2049', '四川', '成都', '邛崃');
+INSERT INTO `weather_city` VALUES ('2050', '四川', '成都', '崇州');
+INSERT INTO `weather_city` VALUES ('2051', '四川', '攀枝花', '攀枝花');
+INSERT INTO `weather_city` VALUES ('2052', '四川', '攀枝花', '仁和');
+INSERT INTO `weather_city` VALUES ('2053', '四川', '攀枝花', '米易');
+INSERT INTO `weather_city` VALUES ('2054', '四川', '攀枝花', '盐边');
+INSERT INTO `weather_city` VALUES ('2055', '四川', '自贡', '自贡');
+INSERT INTO `weather_city` VALUES ('2056', '四川', '自贡', '富顺');
+INSERT INTO `weather_city` VALUES ('2057', '四川', '自贡', '荣县');
+INSERT INTO `weather_city` VALUES ('2058', '四川', '绵阳', '绵阳');
+INSERT INTO `weather_city` VALUES ('2059', '四川', '绵阳', '三台');
+INSERT INTO `weather_city` VALUES ('2060', '四川', '绵阳', '盐亭');
+INSERT INTO `weather_city` VALUES ('2061', '四川', '绵阳', '安县');
+INSERT INTO `weather_city` VALUES ('2062', '四川', '绵阳', '梓潼');
+INSERT INTO `weather_city` VALUES ('2063', '四川', '绵阳', '北川');
+INSERT INTO `weather_city` VALUES ('2064', '四川', '绵阳', '平武');
+INSERT INTO `weather_city` VALUES ('2065', '四川', '绵阳', '江油');
+INSERT INTO `weather_city` VALUES ('2066', '四川', '南充', '南充');
+INSERT INTO `weather_city` VALUES ('2067', '四川', '南充', '南部');
+INSERT INTO `weather_city` VALUES ('2068', '四川', '南充', '营山');
+INSERT INTO `weather_city` VALUES ('2069', '四川', '南充', '蓬安');
+INSERT INTO `weather_city` VALUES ('2070', '四川', '南充', '仪陇');
+INSERT INTO `weather_city` VALUES ('2071', '四川', '南充', '西充');
+INSERT INTO `weather_city` VALUES ('2072', '四川', '南充', '阆中');
+INSERT INTO `weather_city` VALUES ('2073', '四川', '达州', '达州');
+INSERT INTO `weather_city` VALUES ('2074', '四川', '达州', '宣汉');
+INSERT INTO `weather_city` VALUES ('2075', '四川', '达州', '开江');
+INSERT INTO `weather_city` VALUES ('2076', '四川', '达州', '大竹');
+INSERT INTO `weather_city` VALUES ('2077', '四川', '达州', '渠县');
+INSERT INTO `weather_city` VALUES ('2078', '四川', '达州', '万源');
+INSERT INTO `weather_city` VALUES ('2079', '四川', '达州', '通川');
+INSERT INTO `weather_city` VALUES ('2080', '四川', '达州', '达县');
+INSERT INTO `weather_city` VALUES ('2081', '四川', '遂宁', '遂宁');
+INSERT INTO `weather_city` VALUES ('2082', '四川', '遂宁', '蓬溪');
+INSERT INTO `weather_city` VALUES ('2083', '四川', '遂宁', '射洪');
+INSERT INTO `weather_city` VALUES ('2084', '四川', '广安', '广安');
+INSERT INTO `weather_city` VALUES ('2085', '四川', '广安', '岳池');
+INSERT INTO `weather_city` VALUES ('2086', '四川', '广安', '武胜');
+INSERT INTO `weather_city` VALUES ('2087', '四川', '广安', '邻水');
+INSERT INTO `weather_city` VALUES ('2088', '四川', '广安', '华蓥');
+INSERT INTO `weather_city` VALUES ('2089', '四川', '巴中', '巴中');
+INSERT INTO `weather_city` VALUES ('2090', '四川', '巴中', '通江');
+INSERT INTO `weather_city` VALUES ('2091', '四川', '巴中', '南江');
+INSERT INTO `weather_city` VALUES ('2092', '四川', '巴中', '平昌');
+INSERT INTO `weather_city` VALUES ('2093', '四川', '泸州', '泸州');
+INSERT INTO `weather_city` VALUES ('2094', '四川', '泸州', '泸县');
+INSERT INTO `weather_city` VALUES ('2095', '四川', '泸州', '合江');
+INSERT INTO `weather_city` VALUES ('2096', '四川', '泸州', '叙永');
+INSERT INTO `weather_city` VALUES ('2097', '四川', '泸州', '古蔺');
+INSERT INTO `weather_city` VALUES ('2098', '四川', '泸州', '纳溪');
+INSERT INTO `weather_city` VALUES ('2099', '四川', '宜宾', '宜宾');
+INSERT INTO `weather_city` VALUES ('2100', '四川', '宜宾', '宜宾县');
+INSERT INTO `weather_city` VALUES ('2101', '四川', '宜宾', '南溪');
+INSERT INTO `weather_city` VALUES ('2102', '四川', '宜宾', '江安');
+INSERT INTO `weather_city` VALUES ('2103', '四川', '宜宾', '长宁');
+INSERT INTO `weather_city` VALUES ('2104', '四川', '宜宾', '高县');
+INSERT INTO `weather_city` VALUES ('2105', '四川', '宜宾', '珙县');
+INSERT INTO `weather_city` VALUES ('2106', '四川', '宜宾', '筠连');
+INSERT INTO `weather_city` VALUES ('2107', '四川', '宜宾', '兴文');
+INSERT INTO `weather_city` VALUES ('2108', '四川', '宜宾', '屏山');
+INSERT INTO `weather_city` VALUES ('2109', '四川', '内江', '内江');
+INSERT INTO `weather_city` VALUES ('2110', '四川', '内江', '东兴');
+INSERT INTO `weather_city` VALUES ('2111', '四川', '内江', '威远');
+INSERT INTO `weather_city` VALUES ('2112', '四川', '内江', '资中');
+INSERT INTO `weather_city` VALUES ('2113', '四川', '内江', '隆昌');
+INSERT INTO `weather_city` VALUES ('2114', '四川', '资阳', '资阳');
+INSERT INTO `weather_city` VALUES ('2115', '四川', '资阳', '安岳');
+INSERT INTO `weather_city` VALUES ('2116', '四川', '资阳', '乐至');
+INSERT INTO `weather_city` VALUES ('2117', '四川', '资阳', '简阳');
+INSERT INTO `weather_city` VALUES ('2118', '四川', '乐山', '乐山');
+INSERT INTO `weather_city` VALUES ('2119', '四川', '乐山', '犍为');
+INSERT INTO `weather_city` VALUES ('2120', '四川', '乐山', '井研');
+INSERT INTO `weather_city` VALUES ('2121', '四川', '乐山', '夹江');
+INSERT INTO `weather_city` VALUES ('2122', '四川', '乐山', '沐川');
+INSERT INTO `weather_city` VALUES ('2123', '四川', '乐山', '峨边');
+INSERT INTO `weather_city` VALUES ('2124', '四川', '乐山', '马边');
+INSERT INTO `weather_city` VALUES ('2125', '四川', '乐山', '峨眉');
+INSERT INTO `weather_city` VALUES ('2126', '四川', '乐山', '峨眉山');
+INSERT INTO `weather_city` VALUES ('2127', '四川', '眉山', '眉山');
+INSERT INTO `weather_city` VALUES ('2128', '四川', '眉山', '仁寿');
+INSERT INTO `weather_city` VALUES ('2129', '四川', '眉山', '彭山');
+INSERT INTO `weather_city` VALUES ('2130', '四川', '眉山', '洪雅');
+INSERT INTO `weather_city` VALUES ('2131', '四川', '眉山', '丹棱');
+INSERT INTO `weather_city` VALUES ('2132', '四川', '眉山', '青神');
+INSERT INTO `weather_city` VALUES ('2133', '四川', '凉山', '凉山');
+INSERT INTO `weather_city` VALUES ('2134', '四川', '凉山', '木里');
+INSERT INTO `weather_city` VALUES ('2135', '四川', '凉山', '盐源');
+INSERT INTO `weather_city` VALUES ('2136', '四川', '凉山', '德昌');
+INSERT INTO `weather_city` VALUES ('2137', '四川', '凉山', '会理');
+INSERT INTO `weather_city` VALUES ('2138', '四川', '凉山', '会东');
+INSERT INTO `weather_city` VALUES ('2139', '四川', '凉山', '宁南');
+INSERT INTO `weather_city` VALUES ('2140', '四川', '凉山', '普格');
+INSERT INTO `weather_city` VALUES ('2141', '四川', '凉山', '西昌');
+INSERT INTO `weather_city` VALUES ('2142', '四川', '凉山', '金阳');
+INSERT INTO `weather_city` VALUES ('2143', '四川', '凉山', '昭觉');
+INSERT INTO `weather_city` VALUES ('2144', '四川', '凉山', '喜德');
+INSERT INTO `weather_city` VALUES ('2145', '四川', '凉山', '冕宁');
+INSERT INTO `weather_city` VALUES ('2146', '四川', '凉山', '越西');
+INSERT INTO `weather_city` VALUES ('2147', '四川', '凉山', '甘洛');
+INSERT INTO `weather_city` VALUES ('2148', '四川', '凉山', '雷波');
+INSERT INTO `weather_city` VALUES ('2149', '四川', '凉山', '美姑');
+INSERT INTO `weather_city` VALUES ('2150', '四川', '凉山', '布拖');
+INSERT INTO `weather_city` VALUES ('2151', '四川', '雅安', '雅安');
+INSERT INTO `weather_city` VALUES ('2152', '四川', '雅安', '名山');
+INSERT INTO `weather_city` VALUES ('2153', '四川', '雅安', '荥经');
+INSERT INTO `weather_city` VALUES ('2154', '四川', '雅安', '汉源');
+INSERT INTO `weather_city` VALUES ('2155', '四川', '雅安', '石棉');
+INSERT INTO `weather_city` VALUES ('2156', '四川', '雅安', '天全');
+INSERT INTO `weather_city` VALUES ('2157', '四川', '雅安', '芦山');
+INSERT INTO `weather_city` VALUES ('2158', '四川', '雅安', '宝兴');
+INSERT INTO `weather_city` VALUES ('2159', '四川', '甘孜', '甘孜');
+INSERT INTO `weather_city` VALUES ('2160', '四川', '甘孜', '康定');
+INSERT INTO `weather_city` VALUES ('2161', '四川', '甘孜', '泸定');
+INSERT INTO `weather_city` VALUES ('2162', '四川', '甘孜', '丹巴');
+INSERT INTO `weather_city` VALUES ('2163', '四川', '甘孜', '九龙');
+INSERT INTO `weather_city` VALUES ('2164', '四川', '甘孜', '雅江');
+INSERT INTO `weather_city` VALUES ('2165', '四川', '甘孜', '道孚');
+INSERT INTO `weather_city` VALUES ('2166', '四川', '甘孜', '炉霍');
+INSERT INTO `weather_city` VALUES ('2167', '四川', '甘孜', '新龙');
+INSERT INTO `weather_city` VALUES ('2168', '四川', '甘孜', '德格');
+INSERT INTO `weather_city` VALUES ('2169', '四川', '甘孜', '白玉');
+INSERT INTO `weather_city` VALUES ('2170', '四川', '甘孜', '石渠');
+INSERT INTO `weather_city` VALUES ('2171', '四川', '甘孜', '色达');
+INSERT INTO `weather_city` VALUES ('2172', '四川', '甘孜', '理塘');
+INSERT INTO `weather_city` VALUES ('2173', '四川', '甘孜', '巴塘');
+INSERT INTO `weather_city` VALUES ('2174', '四川', '甘孜', '乡城');
+INSERT INTO `weather_city` VALUES ('2175', '四川', '甘孜', '稻城');
+INSERT INTO `weather_city` VALUES ('2176', '四川', '甘孜', '得荣');
+INSERT INTO `weather_city` VALUES ('2177', '四川', '阿坝', '阿坝');
+INSERT INTO `weather_city` VALUES ('2178', '四川', '阿坝', '汶川');
+INSERT INTO `weather_city` VALUES ('2179', '四川', '阿坝', '理县');
+INSERT INTO `weather_city` VALUES ('2180', '四川', '阿坝', '茂县');
+INSERT INTO `weather_city` VALUES ('2181', '四川', '阿坝', '松潘');
+INSERT INTO `weather_city` VALUES ('2182', '四川', '阿坝', '九寨沟');
+INSERT INTO `weather_city` VALUES ('2183', '四川', '阿坝', '金川');
+INSERT INTO `weather_city` VALUES ('2184', '四川', '阿坝', '小金');
+INSERT INTO `weather_city` VALUES ('2185', '四川', '阿坝', '黑水');
+INSERT INTO `weather_city` VALUES ('2186', '四川', '阿坝', '马尔康');
+INSERT INTO `weather_city` VALUES ('2187', '四川', '阿坝', '壤塘');
+INSERT INTO `weather_city` VALUES ('2188', '四川', '阿坝', '若尔盖');
+INSERT INTO `weather_city` VALUES ('2189', '四川', '阿坝', '红原');
+INSERT INTO `weather_city` VALUES ('2190', '四川', '阿坝', '南坪');
+INSERT INTO `weather_city` VALUES ('2191', '四川', '德阳', '德阳');
+INSERT INTO `weather_city` VALUES ('2192', '四川', '德阳', '中江');
+INSERT INTO `weather_city` VALUES ('2193', '四川', '德阳', '广汉');
+INSERT INTO `weather_city` VALUES ('2194', '四川', '德阳', '什邡');
+INSERT INTO `weather_city` VALUES ('2195', '四川', '德阳', '绵竹');
+INSERT INTO `weather_city` VALUES ('2196', '四川', '德阳', '罗江');
+INSERT INTO `weather_city` VALUES ('2197', '四川', '广元', '广元');
+INSERT INTO `weather_city` VALUES ('2198', '四川', '广元', '旺苍');
+INSERT INTO `weather_city` VALUES ('2199', '四川', '广元', '青川');
+INSERT INTO `weather_city` VALUES ('2200', '四川', '广元', '剑阁');
+INSERT INTO `weather_city` VALUES ('2201', '四川', '广元', '苍溪');
+INSERT INTO `weather_city` VALUES ('2202', '广东', '广州', '广州');
+INSERT INTO `weather_city` VALUES ('2203', '广东', '广州', '番禺');
+INSERT INTO `weather_city` VALUES ('2204', '广东', '广州', '从化');
+INSERT INTO `weather_city` VALUES ('2205', '广东', '广州', '增城');
+INSERT INTO `weather_city` VALUES ('2206', '广东', '广州', '花都');
+INSERT INTO `weather_city` VALUES ('2207', '广东', '韶关', '韶关');
+INSERT INTO `weather_city` VALUES ('2208', '广东', '韶关', '乳源');
+INSERT INTO `weather_city` VALUES ('2209', '广东', '韶关', '始兴');
+INSERT INTO `weather_city` VALUES ('2210', '广东', '韶关', '翁源');
+INSERT INTO `weather_city` VALUES ('2211', '广东', '韶关', '乐昌');
+INSERT INTO `weather_city` VALUES ('2212', '广东', '韶关', '仁化');
+INSERT INTO `weather_city` VALUES ('2213', '广东', '韶关', '南雄');
+INSERT INTO `weather_city` VALUES ('2214', '广东', '韶关', '新丰');
+INSERT INTO `weather_city` VALUES ('2215', '广东', '韶关', '曲江');
+INSERT INTO `weather_city` VALUES ('2216', '广东', '韶关', '浈江');
+INSERT INTO `weather_city` VALUES ('2217', '广东', '韶关', '武江');
+INSERT INTO `weather_city` VALUES ('2218', '广东', '惠州', '惠州');
+INSERT INTO `weather_city` VALUES ('2219', '广东', '惠州', '博罗');
+INSERT INTO `weather_city` VALUES ('2220', '广东', '惠州', '惠阳');
+INSERT INTO `weather_city` VALUES ('2221', '广东', '惠州', '惠东');
+INSERT INTO `weather_city` VALUES ('2222', '广东', '惠州', '龙门');
+INSERT INTO `weather_city` VALUES ('2223', '广东', '梅州', '梅州');
+INSERT INTO `weather_city` VALUES ('2224', '广东', '梅州', '兴宁');
+INSERT INTO `weather_city` VALUES ('2225', '广东', '梅州', '蕉岭');
+INSERT INTO `weather_city` VALUES ('2226', '广东', '梅州', '大埔');
+INSERT INTO `weather_city` VALUES ('2227', '广东', '梅州', '丰顺');
+INSERT INTO `weather_city` VALUES ('2228', '广东', '梅州', '平远');
+INSERT INTO `weather_city` VALUES ('2229', '广东', '梅州', '五华');
+INSERT INTO `weather_city` VALUES ('2230', '广东', '梅州', '梅县');
+INSERT INTO `weather_city` VALUES ('2231', '广东', '汕头', '汕头');
+INSERT INTO `weather_city` VALUES ('2232', '广东', '汕头', '潮阳');
+INSERT INTO `weather_city` VALUES ('2233', '广东', '汕头', '澄海');
+INSERT INTO `weather_city` VALUES ('2234', '广东', '汕头', '南澳');
+INSERT INTO `weather_city` VALUES ('2235', '广东', '深圳', '深圳');
+INSERT INTO `weather_city` VALUES ('2236', '广东', '珠海', '珠海');
+INSERT INTO `weather_city` VALUES ('2237', '广东', '珠海', '斗门');
+INSERT INTO `weather_city` VALUES ('2238', '广东', '珠海', '金湾');
+INSERT INTO `weather_city` VALUES ('2239', '广东', '佛山', '佛山');
+INSERT INTO `weather_city` VALUES ('2240', '广东', '佛山', '顺德');
+INSERT INTO `weather_city` VALUES ('2241', '广东', '佛山', '三水');
+INSERT INTO `weather_city` VALUES ('2242', '广东', '佛山', '南海');
+INSERT INTO `weather_city` VALUES ('2243', '广东', '佛山', '高明');
+INSERT INTO `weather_city` VALUES ('2244', '广东', '肇庆', '肇庆');
+INSERT INTO `weather_city` VALUES ('2245', '广东', '肇庆', '广宁');
+INSERT INTO `weather_city` VALUES ('2246', '广东', '肇庆', '四会');
+INSERT INTO `weather_city` VALUES ('2247', '广东', '肇庆', '德庆');
+INSERT INTO `weather_city` VALUES ('2248', '广东', '肇庆', '怀集');
+INSERT INTO `weather_city` VALUES ('2249', '广东', '肇庆', '封开');
+INSERT INTO `weather_city` VALUES ('2250', '广东', '肇庆', '高要');
+INSERT INTO `weather_city` VALUES ('2251', '广东', '湛江', '湛江');
+INSERT INTO `weather_city` VALUES ('2252', '广东', '湛江', '吴川');
+INSERT INTO `weather_city` VALUES ('2253', '广东', '湛江', '雷州');
+INSERT INTO `weather_city` VALUES ('2254', '广东', '湛江', '徐闻');
+INSERT INTO `weather_city` VALUES ('2255', '广东', '湛江', '廉江');
+INSERT INTO `weather_city` VALUES ('2256', '广东', '湛江', '赤坎');
+INSERT INTO `weather_city` VALUES ('2257', '广东', '湛江', '遂溪');
+INSERT INTO `weather_city` VALUES ('2258', '广东', '湛江', '坡头');
+INSERT INTO `weather_city` VALUES ('2259', '广东', '湛江', '霞山');
+INSERT INTO `weather_city` VALUES ('2260', '广东', '湛江', '麻章');
+INSERT INTO `weather_city` VALUES ('2261', '广东', '江门', '江门');
+INSERT INTO `weather_city` VALUES ('2262', '广东', '江门', '开平');
+INSERT INTO `weather_city` VALUES ('2263', '广东', '江门', '新会');
+INSERT INTO `weather_city` VALUES ('2264', '广东', '江门', '恩平');
+INSERT INTO `weather_city` VALUES ('2265', '广东', '江门', '台山');
+INSERT INTO `weather_city` VALUES ('2266', '广东', '江门', '蓬江');
+INSERT INTO `weather_city` VALUES ('2267', '广东', '江门', '鹤山');
+INSERT INTO `weather_city` VALUES ('2268', '广东', '江门', '江海');
+INSERT INTO `weather_city` VALUES ('2269', '广东', '河源', '河源');
+INSERT INTO `weather_city` VALUES ('2270', '广东', '河源', '紫金');
+INSERT INTO `weather_city` VALUES ('2271', '广东', '河源', '连平');
+INSERT INTO `weather_city` VALUES ('2272', '广东', '河源', '和平');
+INSERT INTO `weather_city` VALUES ('2273', '广东', '河源', '龙川');
+INSERT INTO `weather_city` VALUES ('2274', '广东', '河源', '东源');
+INSERT INTO `weather_city` VALUES ('2275', '广东', '清远', '清远');
+INSERT INTO `weather_city` VALUES ('2276', '广东', '清远', '连南');
+INSERT INTO `weather_city` VALUES ('2277', '广东', '清远', '连州');
+INSERT INTO `weather_city` VALUES ('2278', '广东', '清远', '连山');
+INSERT INTO `weather_city` VALUES ('2279', '广东', '清远', '阳山');
+INSERT INTO `weather_city` VALUES ('2280', '广东', '清远', '佛冈');
+INSERT INTO `weather_city` VALUES ('2281', '广东', '清远', '英德');
+INSERT INTO `weather_city` VALUES ('2282', '广东', '清远', '清新');
+INSERT INTO `weather_city` VALUES ('2283', '广东', '云浮', '云浮');
+INSERT INTO `weather_city` VALUES ('2284', '广东', '云浮', '罗定');
+INSERT INTO `weather_city` VALUES ('2285', '广东', '云浮', '新兴');
+INSERT INTO `weather_city` VALUES ('2286', '广东', '云浮', '郁南');
+INSERT INTO `weather_city` VALUES ('2287', '广东', '云浮', '云安');
+INSERT INTO `weather_city` VALUES ('2288', '广东', '潮州', '潮州');
+INSERT INTO `weather_city` VALUES ('2289', '广东', '潮州', '饶平');
+INSERT INTO `weather_city` VALUES ('2290', '广东', '潮州', '潮安');
+INSERT INTO `weather_city` VALUES ('2291', '广东', '东莞', '东莞');
+INSERT INTO `weather_city` VALUES ('2292', '广东', '中山', '中山');
+INSERT INTO `weather_city` VALUES ('2293', '广东', '阳江', '阳江');
+INSERT INTO `weather_city` VALUES ('2294', '广东', '阳江', '阳春');
+INSERT INTO `weather_city` VALUES ('2295', '广东', '阳江', '阳东');
+INSERT INTO `weather_city` VALUES ('2296', '广东', '阳江', '阳西');
+INSERT INTO `weather_city` VALUES ('2297', '广东', '揭阳', '揭阳');
+INSERT INTO `weather_city` VALUES ('2298', '广东', '揭阳', '揭西');
+INSERT INTO `weather_city` VALUES ('2299', '广东', '揭阳', '普宁');
+INSERT INTO `weather_city` VALUES ('2300', '广东', '揭阳', '惠来');
+INSERT INTO `weather_city` VALUES ('2301', '广东', '揭阳', '揭东');
+INSERT INTO `weather_city` VALUES ('2302', '广东', '茂名', '茂名');
+INSERT INTO `weather_city` VALUES ('2303', '广东', '茂名', '高州');
+INSERT INTO `weather_city` VALUES ('2304', '广东', '茂名', '化州');
+INSERT INTO `weather_city` VALUES ('2305', '广东', '茂名', '电白');
+INSERT INTO `weather_city` VALUES ('2306', '广东', '茂名', '信宜');
+INSERT INTO `weather_city` VALUES ('2307', '广东', '茂名', '茂港');
+INSERT INTO `weather_city` VALUES ('2308', '广东', '汕尾', '汕尾');
+INSERT INTO `weather_city` VALUES ('2309', '广东', '汕尾', '海丰');
+INSERT INTO `weather_city` VALUES ('2310', '广东', '汕尾', '陆丰');
+INSERT INTO `weather_city` VALUES ('2311', '广东', '汕尾', '陆河');
+INSERT INTO `weather_city` VALUES ('2312', '云南', '昆明', '昆明');
+INSERT INTO `weather_city` VALUES ('2313', '云南', '昆明', '东川');
+INSERT INTO `weather_city` VALUES ('2314', '云南', '昆明', '寻甸');
+INSERT INTO `weather_city` VALUES ('2315', '云南', '昆明', '晋宁');
+INSERT INTO `weather_city` VALUES ('2316', '云南', '昆明', '宜良');
+INSERT INTO `weather_city` VALUES ('2317', '云南', '昆明', '石林');
+INSERT INTO `weather_city` VALUES ('2318', '云南', '昆明', '呈贡');
+INSERT INTO `weather_city` VALUES ('2319', '云南', '昆明', '富民');
+INSERT INTO `weather_city` VALUES ('2320', '云南', '昆明', '嵩明');
+INSERT INTO `weather_city` VALUES ('2321', '云南', '昆明', '禄劝');
+INSERT INTO `weather_city` VALUES ('2322', '云南', '昆明', '安宁');
+INSERT INTO `weather_city` VALUES ('2323', '云南', '昆明', '太华山');
+INSERT INTO `weather_city` VALUES ('2324', '云南', '大理', '大理');
+INSERT INTO `weather_city` VALUES ('2325', '云南', '大理', '云龙');
+INSERT INTO `weather_city` VALUES ('2326', '云南', '大理', '漾濞');
+INSERT INTO `weather_city` VALUES ('2327', '云南', '大理', '永平');
+INSERT INTO `weather_city` VALUES ('2328', '云南', '大理', '宾川');
+INSERT INTO `weather_city` VALUES ('2329', '云南', '大理', '弥渡');
+INSERT INTO `weather_city` VALUES ('2330', '云南', '大理', '祥云');
+INSERT INTO `weather_city` VALUES ('2331', '云南', '大理', '巍山');
+INSERT INTO `weather_city` VALUES ('2332', '云南', '大理', '剑川');
+INSERT INTO `weather_city` VALUES ('2333', '云南', '大理', '洱源');
+INSERT INTO `weather_city` VALUES ('2334', '云南', '大理', '鹤庆');
+INSERT INTO `weather_city` VALUES ('2335', '云南', '大理', '南涧');
+INSERT INTO `weather_city` VALUES ('2336', '云南', '红河', '红河');
+INSERT INTO `weather_city` VALUES ('2337', '云南', '红河', '石屏');
+INSERT INTO `weather_city` VALUES ('2338', '云南', '红河', '建水');
+INSERT INTO `weather_city` VALUES ('2339', '云南', '红河', '弥勒');
+INSERT INTO `weather_city` VALUES ('2340', '云南', '红河', '元阳');
+INSERT INTO `weather_city` VALUES ('2341', '云南', '红河', '绿春');
+INSERT INTO `weather_city` VALUES ('2342', '云南', '红河', '开远');
+INSERT INTO `weather_city` VALUES ('2343', '云南', '红河', '个旧');
+INSERT INTO `weather_city` VALUES ('2344', '云南', '红河', '蒙自');
+INSERT INTO `weather_city` VALUES ('2345', '云南', '红河', '屏边');
+INSERT INTO `weather_city` VALUES ('2346', '云南', '红河', '泸西');
+INSERT INTO `weather_city` VALUES ('2347', '云南', '红河', '金平');
+INSERT INTO `weather_city` VALUES ('2348', '云南', '红河', '河口');
+INSERT INTO `weather_city` VALUES ('2349', '云南', '曲靖', '曲靖');
+INSERT INTO `weather_city` VALUES ('2350', '云南', '曲靖', '沾益');
+INSERT INTO `weather_city` VALUES ('2351', '云南', '曲靖', '陆良');
+INSERT INTO `weather_city` VALUES ('2352', '云南', '曲靖', '富源');
+INSERT INTO `weather_city` VALUES ('2353', '云南', '曲靖', '马龙');
+INSERT INTO `weather_city` VALUES ('2354', '云南', '曲靖', '师宗');
+INSERT INTO `weather_city` VALUES ('2355', '云南', '曲靖', '罗平');
+INSERT INTO `weather_city` VALUES ('2356', '云南', '曲靖', '会泽');
+INSERT INTO `weather_city` VALUES ('2357', '云南', '曲靖', '宣威');
+INSERT INTO `weather_city` VALUES ('2358', '云南', '保山', '保山');
+INSERT INTO `weather_city` VALUES ('2359', '云南', '保山', '龙陵');
+INSERT INTO `weather_city` VALUES ('2360', '云南', '保山', '施甸');
+INSERT INTO `weather_city` VALUES ('2361', '云南', '保山', '昌宁');
+INSERT INTO `weather_city` VALUES ('2362', '云南', '保山', '腾冲');
+INSERT INTO `weather_city` VALUES ('2363', '云南', '文山', '文山');
+INSERT INTO `weather_city` VALUES ('2364', '云南', '文山', '西畴');
+INSERT INTO `weather_city` VALUES ('2365', '云南', '文山', '马关');
+INSERT INTO `weather_city` VALUES ('2366', '云南', '文山', '麻栗坡');
+INSERT INTO `weather_city` VALUES ('2367', '云南', '文山', '砚山');
+INSERT INTO `weather_city` VALUES ('2368', '云南', '文山', '丘北');
+INSERT INTO `weather_city` VALUES ('2369', '云南', '文山', '广南');
+INSERT INTO `weather_city` VALUES ('2370', '云南', '文山', '富宁');
+INSERT INTO `weather_city` VALUES ('2371', '云南', '玉溪', '玉溪');
+INSERT INTO `weather_city` VALUES ('2372', '云南', '玉溪', '澄江');
+INSERT INTO `weather_city` VALUES ('2373', '云南', '玉溪', '江川');
+INSERT INTO `weather_city` VALUES ('2374', '云南', '玉溪', '通海');
+INSERT INTO `weather_city` VALUES ('2375', '云南', '玉溪', '华宁');
+INSERT INTO `weather_city` VALUES ('2376', '云南', '玉溪', '新平');
+INSERT INTO `weather_city` VALUES ('2377', '云南', '玉溪', '易门');
+INSERT INTO `weather_city` VALUES ('2378', '云南', '玉溪', '峨山');
+INSERT INTO `weather_city` VALUES ('2379', '云南', '玉溪', '元江');
+INSERT INTO `weather_city` VALUES ('2380', '云南', '楚雄', '楚雄');
+INSERT INTO `weather_city` VALUES ('2381', '云南', '楚雄', '大姚');
+INSERT INTO `weather_city` VALUES ('2382', '云南', '楚雄', '元谋');
+INSERT INTO `weather_city` VALUES ('2383', '云南', '楚雄', '姚安');
+INSERT INTO `weather_city` VALUES ('2384', '云南', '楚雄', '牟定');
+INSERT INTO `weather_city` VALUES ('2385', '云南', '楚雄', '南华');
+INSERT INTO `weather_city` VALUES ('2386', '云南', '楚雄', '武定');
+INSERT INTO `weather_city` VALUES ('2387', '云南', '楚雄', '禄丰');
+INSERT INTO `weather_city` VALUES ('2388', '云南', '楚雄', '双柏');
+INSERT INTO `weather_city` VALUES ('2389', '云南', '楚雄', '永仁');
+INSERT INTO `weather_city` VALUES ('2390', '云南', '普洱', '普洱');
+INSERT INTO `weather_city` VALUES ('2391', '云南', '普洱', '景谷');
+INSERT INTO `weather_city` VALUES ('2392', '云南', '普洱', '景东');
+INSERT INTO `weather_city` VALUES ('2393', '云南', '普洱', '澜沧');
+INSERT INTO `weather_city` VALUES ('2394', '云南', '普洱', '墨江');
+INSERT INTO `weather_city` VALUES ('2395', '云南', '普洱', '江城');
+INSERT INTO `weather_city` VALUES ('2396', '云南', '普洱', '孟连');
+INSERT INTO `weather_city` VALUES ('2397', '云南', '普洱', '西盟');
+INSERT INTO `weather_city` VALUES ('2398', '云南', '普洱', '镇沅');
+INSERT INTO `weather_city` VALUES ('2399', '云南', '普洱', '宁洱');
+INSERT INTO `weather_city` VALUES ('2400', '云南', '昭通', '昭通');
+INSERT INTO `weather_city` VALUES ('2401', '云南', '昭通', '鲁甸');
+INSERT INTO `weather_city` VALUES ('2402', '云南', '昭通', '彝良');
+INSERT INTO `weather_city` VALUES ('2403', '云南', '昭通', '镇雄');
+INSERT INTO `weather_city` VALUES ('2404', '云南', '昭通', '威信');
+INSERT INTO `weather_city` VALUES ('2405', '云南', '昭通', '巧家');
+INSERT INTO `weather_city` VALUES ('2406', '云南', '昭通', '绥江');
+INSERT INTO `weather_city` VALUES ('2407', '云南', '昭通', '永善');
+INSERT INTO `weather_city` VALUES ('2408', '云南', '昭通', '盐津');
+INSERT INTO `weather_city` VALUES ('2409', '云南', '昭通', '大关');
+INSERT INTO `weather_city` VALUES ('2410', '云南', '昭通', '水富');
+INSERT INTO `weather_city` VALUES ('2411', '云南', '临沧', '临沧');
+INSERT INTO `weather_city` VALUES ('2412', '云南', '临沧', '沧源');
+INSERT INTO `weather_city` VALUES ('2413', '云南', '临沧', '耿马');
+INSERT INTO `weather_city` VALUES ('2414', '云南', '临沧', '双江');
+INSERT INTO `weather_city` VALUES ('2415', '云南', '临沧', '凤庆');
+INSERT INTO `weather_city` VALUES ('2416', '云南', '临沧', '永德');
+INSERT INTO `weather_city` VALUES ('2417', '云南', '临沧', '云县');
+INSERT INTO `weather_city` VALUES ('2418', '云南', '临沧', '镇康');
+INSERT INTO `weather_city` VALUES ('2419', '云南', '怒江', '怒江');
+INSERT INTO `weather_city` VALUES ('2420', '云南', '怒江', '福贡');
+INSERT INTO `weather_city` VALUES ('2421', '云南', '怒江', '兰坪');
+INSERT INTO `weather_city` VALUES ('2422', '云南', '怒江', '泸水');
+INSERT INTO `weather_city` VALUES ('2423', '云南', '怒江', '六库');
+INSERT INTO `weather_city` VALUES ('2424', '云南', '怒江', '贡山');
+INSERT INTO `weather_city` VALUES ('2425', '云南', '迪庆', '香格里拉');
+INSERT INTO `weather_city` VALUES ('2426', '云南', '迪庆', '德钦');
+INSERT INTO `weather_city` VALUES ('2427', '云南', '迪庆', '维西');
+INSERT INTO `weather_city` VALUES ('2428', '云南', '迪庆', '中甸');
+INSERT INTO `weather_city` VALUES ('2429', '云南', '丽江', '丽江');
+INSERT INTO `weather_city` VALUES ('2430', '云南', '丽江', '永胜');
+INSERT INTO `weather_city` VALUES ('2431', '云南', '丽江', '华坪');
+INSERT INTO `weather_city` VALUES ('2432', '云南', '丽江', '宁蒗');
+INSERT INTO `weather_city` VALUES ('2433', '云南', '德宏', '德宏');
+INSERT INTO `weather_city` VALUES ('2434', '云南', '德宏', '陇川');
+INSERT INTO `weather_city` VALUES ('2435', '云南', '德宏', '盈江');
+INSERT INTO `weather_city` VALUES ('2436', '云南', '德宏', '瑞丽');
+INSERT INTO `weather_city` VALUES ('2437', '云南', '德宏', '梁河');
+INSERT INTO `weather_city` VALUES ('2438', '云南', '德宏', '潞西');
+INSERT INTO `weather_city` VALUES ('2439', '云南', '西双版纳', '景洪');
+INSERT INTO `weather_city` VALUES ('2440', '云南', '西双版纳', '勐海');
+INSERT INTO `weather_city` VALUES ('2441', '云南', '西双版纳', '勐腊');
+INSERT INTO `weather_city` VALUES ('2442', '广西', '南宁', '南宁');
+INSERT INTO `weather_city` VALUES ('2443', '广西', '南宁', '邕宁');
+INSERT INTO `weather_city` VALUES ('2444', '广西', '南宁', '横县');
+INSERT INTO `weather_city` VALUES ('2445', '广西', '南宁', '隆安');
+INSERT INTO `weather_city` VALUES ('2446', '广西', '南宁', '马山');
+INSERT INTO `weather_city` VALUES ('2447', '广西', '南宁', '上林');
+INSERT INTO `weather_city` VALUES ('2448', '广西', '南宁', '武鸣');
+INSERT INTO `weather_city` VALUES ('2449', '广西', '南宁', '宾阳');
+INSERT INTO `weather_city` VALUES ('2450', '广西', '崇左', '崇左');
+INSERT INTO `weather_city` VALUES ('2451', '广西', '崇左', '天等');
+INSERT INTO `weather_city` VALUES ('2452', '广西', '崇左', '龙州');
+INSERT INTO `weather_city` VALUES ('2453', '广西', '崇左', '凭祥');
+INSERT INTO `weather_city` VALUES ('2454', '广西', '崇左', '大新');
+INSERT INTO `weather_city` VALUES ('2455', '广西', '崇左', '扶绥');
+INSERT INTO `weather_city` VALUES ('2456', '广西', '崇左', '宁明');
+INSERT INTO `weather_city` VALUES ('2457', '广西', '柳州', '柳州');
+INSERT INTO `weather_city` VALUES ('2458', '广西', '柳州', '柳城');
+INSERT INTO `weather_city` VALUES ('2459', '广西', '柳州', '鹿寨');
+INSERT INTO `weather_city` VALUES ('2460', '广西', '柳州', '柳江');
+INSERT INTO `weather_city` VALUES ('2461', '广西', '柳州', '融安');
+INSERT INTO `weather_city` VALUES ('2462', '广西', '柳州', '融水');
+INSERT INTO `weather_city` VALUES ('2463', '广西', '柳州', '三江');
+INSERT INTO `weather_city` VALUES ('2464', '广西', '来宾', '来宾');
+INSERT INTO `weather_city` VALUES ('2465', '广西', '来宾', '忻城');
+INSERT INTO `weather_city` VALUES ('2466', '广西', '来宾', '金秀');
+INSERT INTO `weather_city` VALUES ('2467', '广西', '来宾', '象州');
+INSERT INTO `weather_city` VALUES ('2468', '广西', '来宾', '武宣');
+INSERT INTO `weather_city` VALUES ('2469', '广西', '来宾', '合山');
+INSERT INTO `weather_city` VALUES ('2470', '广西', '桂林', '桂林');
+INSERT INTO `weather_city` VALUES ('2471', '广西', '桂林', '龙胜');
+INSERT INTO `weather_city` VALUES ('2472', '广西', '桂林', '永福');
+INSERT INTO `weather_city` VALUES ('2473', '广西', '桂林', '临桂');
+INSERT INTO `weather_city` VALUES ('2474', '广西', '桂林', '兴安');
+INSERT INTO `weather_city` VALUES ('2475', '广西', '桂林', '灵川');
+INSERT INTO `weather_city` VALUES ('2476', '广西', '桂林', '全州');
+INSERT INTO `weather_city` VALUES ('2477', '广西', '桂林', '灌阳');
+INSERT INTO `weather_city` VALUES ('2478', '广西', '桂林', '阳朔');
+INSERT INTO `weather_city` VALUES ('2479', '广西', '桂林', '恭城');
+INSERT INTO `weather_city` VALUES ('2480', '广西', '桂林', '平乐');
+INSERT INTO `weather_city` VALUES ('2481', '广西', '桂林', '荔浦');
+INSERT INTO `weather_city` VALUES ('2482', '广西', '桂林', '资源');
+INSERT INTO `weather_city` VALUES ('2483', '广西', '梧州', '梧州');
+INSERT INTO `weather_city` VALUES ('2484', '广西', '梧州', '藤县');
+INSERT INTO `weather_city` VALUES ('2485', '广西', '梧州', '苍梧');
+INSERT INTO `weather_city` VALUES ('2486', '广西', '梧州', '蒙山');
+INSERT INTO `weather_city` VALUES ('2487', '广西', '梧州', '岑溪');
+INSERT INTO `weather_city` VALUES ('2488', '广西', '梧州', '长洲');
+INSERT INTO `weather_city` VALUES ('2489', '广西', '贺州', '贺州');
+INSERT INTO `weather_city` VALUES ('2490', '广西', '贺州', '昭平');
+INSERT INTO `weather_city` VALUES ('2491', '广西', '贺州', '富川');
+INSERT INTO `weather_city` VALUES ('2492', '广西', '贺州', '钟山');
+INSERT INTO `weather_city` VALUES ('2493', '广西', '贵港', '贵港');
+INSERT INTO `weather_city` VALUES ('2494', '广西', '贵港', '桂平');
+INSERT INTO `weather_city` VALUES ('2495', '广西', '贵港', '平南');
+INSERT INTO `weather_city` VALUES ('2496', '广西', '玉林', '玉林');
+INSERT INTO `weather_city` VALUES ('2497', '广西', '玉林', '博白');
+INSERT INTO `weather_city` VALUES ('2498', '广西', '玉林', '北流');
+INSERT INTO `weather_city` VALUES ('2499', '广西', '玉林', '容县');
+INSERT INTO `weather_city` VALUES ('2500', '广西', '玉林', '陆川');
+INSERT INTO `weather_city` VALUES ('2501', '广西', '玉林', '兴业');
+INSERT INTO `weather_city` VALUES ('2502', '广西', '百色', '百色');
+INSERT INTO `weather_city` VALUES ('2503', '广西', '百色', '那坡');
+INSERT INTO `weather_city` VALUES ('2504', '广西', '百色', '田阳');
+INSERT INTO `weather_city` VALUES ('2505', '广西', '百色', '德保');
+INSERT INTO `weather_city` VALUES ('2506', '广西', '百色', '靖西');
+INSERT INTO `weather_city` VALUES ('2507', '广西', '百色', '田东');
+INSERT INTO `weather_city` VALUES ('2508', '广西', '百色', '平果');
+INSERT INTO `weather_city` VALUES ('2509', '广西', '百色', '隆林');
+INSERT INTO `weather_city` VALUES ('2510', '广西', '百色', '西林');
+INSERT INTO `weather_city` VALUES ('2511', '广西', '百色', '乐业');
+INSERT INTO `weather_city` VALUES ('2512', '广西', '百色', '凌云');
+INSERT INTO `weather_city` VALUES ('2513', '广西', '百色', '田林');
+INSERT INTO `weather_city` VALUES ('2514', '广西', '钦州', '钦州');
+INSERT INTO `weather_city` VALUES ('2515', '广西', '钦州', '浦北');
+INSERT INTO `weather_city` VALUES ('2516', '广西', '钦州', '灵山');
+INSERT INTO `weather_city` VALUES ('2517', '广西', '河池', '河池');
+INSERT INTO `weather_city` VALUES ('2518', '广西', '河池', '天峨');
+INSERT INTO `weather_city` VALUES ('2519', '广西', '河池', '东兰');
+INSERT INTO `weather_city` VALUES ('2520', '广西', '河池', '巴马');
+INSERT INTO `weather_city` VALUES ('2521', '广西', '河池', '环江');
+INSERT INTO `weather_city` VALUES ('2522', '广西', '河池', '罗城');
+INSERT INTO `weather_city` VALUES ('2523', '广西', '河池', '宜州');
+INSERT INTO `weather_city` VALUES ('2524', '广西', '河池', '凤山');
+INSERT INTO `weather_city` VALUES ('2525', '广西', '河池', '南丹');
+INSERT INTO `weather_city` VALUES ('2526', '广西', '河池', '都安');
+INSERT INTO `weather_city` VALUES ('2527', '广西', '河池', '大化');
+INSERT INTO `weather_city` VALUES ('2528', '广西', '北海', '北海');
+INSERT INTO `weather_city` VALUES ('2529', '广西', '北海', '合浦');
+INSERT INTO `weather_city` VALUES ('2530', '广西', '北海', '涠洲岛');
+INSERT INTO `weather_city` VALUES ('2531', '广西', '防城港', '防城港');
+INSERT INTO `weather_city` VALUES ('2532', '广西', '防城港', '上思');
+INSERT INTO `weather_city` VALUES ('2533', '广西', '防城港', '东兴');
+INSERT INTO `weather_city` VALUES ('2534', '广西', '防城港', '防城');
+INSERT INTO `weather_city` VALUES ('2535', '海南', '海口', '海口');
+INSERT INTO `weather_city` VALUES ('2536', '海南', '三亚', '三亚');
+INSERT INTO `weather_city` VALUES ('2537', '海南', '东方', '东方');
+INSERT INTO `weather_city` VALUES ('2538', '海南', '临高', '临高');
+INSERT INTO `weather_city` VALUES ('2539', '海南', '澄迈', '澄迈');
+INSERT INTO `weather_city` VALUES ('2540', '海南', '儋州', '儋州');
+INSERT INTO `weather_city` VALUES ('2541', '海南', '昌江', '昌江');
+INSERT INTO `weather_city` VALUES ('2542', '海南', '白沙', '白沙');
+INSERT INTO `weather_city` VALUES ('2543', '海南', '琼中', '琼中');
+INSERT INTO `weather_city` VALUES ('2544', '海南', '定安', '定安');
+INSERT INTO `weather_city` VALUES ('2545', '海南', '屯昌', '屯昌');
+INSERT INTO `weather_city` VALUES ('2546', '海南', '琼海', '琼海');
+INSERT INTO `weather_city` VALUES ('2547', '海南', '文昌', '文昌');
+INSERT INTO `weather_city` VALUES ('2548', '海南', '保亭', '保亭');
+INSERT INTO `weather_city` VALUES ('2549', '海南', '万宁', '万宁');
+INSERT INTO `weather_city` VALUES ('2550', '海南', '陵水', '陵水');
+INSERT INTO `weather_city` VALUES ('2551', '海南', '西沙', '西沙');
+INSERT INTO `weather_city` VALUES ('2552', '海南', '南沙', '南沙');
+INSERT INTO `weather_city` VALUES ('2553', '海南', '乐东', '乐东');
+INSERT INTO `weather_city` VALUES ('2554', '海南', '五指山', '五指山');
+INSERT INTO `weather_city` VALUES ('2555', '香港', '香港', '香港');
+INSERT INTO `weather_city` VALUES ('2556', '香港', '香港', '新界');
+INSERT INTO `weather_city` VALUES ('2557', '澳门', '澳门', '澳门');
+INSERT INTO `weather_city` VALUES ('2558', '澳门', '澳门', '氹仔岛');
+INSERT INTO `weather_city` VALUES ('2559', '澳门', '澳门', '路环岛');
+INSERT INTO `weather_city` VALUES ('2560', '台湾', '台北', '台北');
+INSERT INTO `weather_city` VALUES ('2561', '台湾', '台北', '桃园');
+INSERT INTO `weather_city` VALUES ('2562', '台湾', '台北', '新竹');
+INSERT INTO `weather_city` VALUES ('2563', '台湾', '台北', '宜兰');
+INSERT INTO `weather_city` VALUES ('2564', '台湾', '高雄', '高雄');
+INSERT INTO `weather_city` VALUES ('2565', '台湾', '高雄', '嘉义');
+INSERT INTO `weather_city` VALUES ('2566', '台湾', '高雄', '台南');
+INSERT INTO `weather_city` VALUES ('2567', '台湾', '高雄', '台东');
+INSERT INTO `weather_city` VALUES ('2568', '台湾', '高雄', '屏东');
+INSERT INTO `weather_city` VALUES ('2569', '台湾', '台中', '台中');
+INSERT INTO `weather_city` VALUES ('2570', '台湾', '台中', '苗栗');
+INSERT INTO `weather_city` VALUES ('2571', '台湾', '台中', '彰化');
+INSERT INTO `weather_city` VALUES ('2572', '台湾', '台中', '南投');
+INSERT INTO `weather_city` VALUES ('2573', '台湾', '台中', '花莲');
+INSERT INTO `weather_city` VALUES ('2574', '台湾', '台中', '云林');
+INSERT INTO `weather_city` VALUES ('2575', '甘肃', '陇南', '陇南');
+INSERT INTO `weather_city` VALUES ('2576', '贵州', '六盘水', '六盘水');
+INSERT INTO `weather_city` VALUES ('2577', '内蒙古', '阿拉善盟', '阿拉善盟');
+INSERT INTO `weather_city` VALUES ('2578', '新疆', '伊犁', '伊犁');
+INSERT INTO `weather_city` VALUES ('2579', '新疆', '博尔塔拉', '博尔塔拉');
+INSERT INTO `weather_city` VALUES ('2580', '新疆', '巴音郭楞', '巴音郭楞');
+INSERT INTO `weather_city` VALUES ('2581', '甘肃', '甘南', '甘南');
+INSERT INTO `weather_city` VALUES ('2582', '吉林', '延边', '延边');
+INSERT INTO `weather_city` VALUES ('2583', '云南', '西双版纳', '西双版纳');
+INSERT INTO `weather_city` VALUES ('2584', '贵州', '黔南', '黔南');
+INSERT INTO `weather_city` VALUES ('2585', '贵州', '黔南', '黔南');
+INSERT INTO `weather_city` VALUES ('2586', '湖南', '湘西', '湘西');
+INSERT INTO `weather_city` VALUES ('2587', '云南', '迪庆', '迪庆');
+INSERT INTO `weather_city` VALUES ('2588', '广东', '广州', '越秀');
+INSERT INTO `weather_city` VALUES ('2589', '广东', '广州', '荔湾');
+INSERT INTO `weather_city` VALUES ('2590', '广东', '广州', '海珠');
+INSERT INTO `weather_city` VALUES ('2591', '广东', '广州', '天河');
+INSERT INTO `weather_city` VALUES ('2592', '广东', '广州', '白云');
+INSERT INTO `weather_city` VALUES ('2593', '广东', '广州', '黄埔');
+INSERT INTO `weather_city` VALUES ('2594', '广东', '广州', '南沙');
+INSERT INTO `weather_city` VALUES ('2595', '广东', '深圳', '罗湖');
+INSERT INTO `weather_city` VALUES ('2596', '广东', '深圳', '福田');
+INSERT INTO `weather_city` VALUES ('2597', '广东', '深圳', '南山');
+INSERT INTO `weather_city` VALUES ('2598', '广东', '深圳', '宝安');
+INSERT INTO `weather_city` VALUES ('2599', '广东', '深圳', '龙岗');
+INSERT INTO `weather_city` VALUES ('2600', '广东', '深圳', '盐田');
+INSERT INTO `weather_city` VALUES ('2601', '北京', '北京', '东城');
+INSERT INTO `weather_city` VALUES ('2602', '山东', '济南', '市中');
+INSERT INTO `weather_city` VALUES ('2603', '海南', '三沙', '三沙');
+INSERT INTO `weather_city` VALUES ('2604', '贵州', '黔东南', '黔东南');
+INSERT INTO `weather_city` VALUES ('2605', '贵州', '黔西南', '黔西南');
+INSERT INTO `weather_city` VALUES ('2606', '内蒙古', '巴彦淖尔', '巴彦淖尔');
+INSERT INTO `weather_city` VALUES ('2607', '内蒙古', '乌兰察布', '乌兰察布');
+INSERT INTO `weather_city` VALUES ('2608', '内蒙古', '兴安盟', '兴安盟');
+INSERT INTO `weather_city` VALUES ('2609', '内蒙古', '锡林郭勒', '锡林郭勒');
+
+-- ----------------------------
+-- Table structure for weather_future
+-- ----------------------------
+DROP TABLE IF EXISTS `weather_future`;
+CREATE TABLE `weather_future` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `date` varchar(20) DEFAULT NULL,
+ `temperature` varchar(50) DEFAULT NULL,
+ `weather` varchar(255) DEFAULT NULL,
+ `widday` varchar(11) DEFAULT NULL,
+ `widnight` varchar(11) DEFAULT NULL,
+ `widdayDesc` varchar(255) DEFAULT NULL,
+ `widnightDesc` varchar(255) DEFAULT NULL,
+ `direct` varchar(255) DEFAULT NULL,
+ `city` varchar(255) DEFAULT NULL,
+ `createtime` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
+ `updatetime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4;
+
+-- ----------------------------
+-- Records of weather_future
+-- ----------------------------
+INSERT INTO `weather_future` VALUES ('1', '2021-04-27', '22/26℃', '阵雨', '03', '03', '阵雨', '阵雨', '东南风转持续无风向', '珠海', '2021-04-27 10:43:13', '2021-04-27 17:33:02');
+INSERT INTO `weather_future` VALUES ('2', '2021-04-28', '20/27℃', '中雨转阵雨', '08', '03', '中雨', '阵雨', '持续无风向转北风', '珠海', '2021-04-27 10:43:13', '2021-04-27 17:33:02');
+INSERT INTO `weather_future` VALUES ('3', '2021-04-29', '20/27℃', '多云', '01', '01', '多云', '多云', '持续无风向', '珠海', '2021-04-27 10:43:13', '2021-04-27 17:33:02');
+INSERT INTO `weather_future` VALUES ('4', '2021-04-30', '21/28℃', '多云', '01', '01', '多云', '多云', '持续无风向', '珠海', '2021-04-27 10:43:13', '2021-04-27 17:33:02');
+INSERT INTO `weather_future` VALUES ('6', '2021-05-01', '23/28℃', '多云', '01', '01', '多云', '多云', '持续无风向', '珠海', '2021-04-27 10:44:19', '2021-04-27 17:33:02');
+
+-- ----------------------------
+-- Table structure for weather_realtime
+-- ----------------------------
+DROP TABLE IF EXISTS `weather_realtime`;
+CREATE TABLE `weather_realtime` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `temperature` varchar(255) DEFAULT NULL,
+ `humidity` varchar(255) DEFAULT NULL,
+ `info` varchar(255) DEFAULT NULL,
+ `wid` varchar(11) DEFAULT NULL,
+ `direct` varchar(255) DEFAULT NULL,
+ `power` varchar(255) DEFAULT NULL,
+ `aqi` varchar(255) DEFAULT NULL,
+ `city` varchar(255) DEFAULT NULL,
+ `date` varchar(30) DEFAULT NULL,
+ `createtime` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4;
+
+-- ----------------------------
+-- Records of weather_realtime
+-- ----------------------------
+INSERT INTO `weather_realtime` VALUES ('1', '23', '73', '阴', '02', '东风', '3级', '35', '珠海', '2021-04-26', '2021-04-27 08:44:16');
+INSERT INTO `weather_realtime` VALUES ('2', '23', '98', '阵雨', '03', '东风', '2级', '20', '珠海', '2021-04-27', '2021-04-27 08:47:50');
+INSERT INTO `weather_realtime` VALUES ('3', '23', '98', '阵雨', '03', '东风', '2级', '18', '珠海', '2021-04-27', '2021-04-27 10:41:45');
+INSERT INTO `weather_realtime` VALUES ('4', '23', '98', '阵雨', '03', '东风', '2级', '18', '珠海', '2021-04-27', '2021-04-27 10:43:13');
+INSERT INTO `weather_realtime` VALUES ('5', '23', '98', '阵雨', '03', '东风', '2级', '18', '珠海', '2021-04-27', '2021-04-27 10:44:19');
+INSERT INTO `weather_realtime` VALUES ('6', '22', '98', '阴', '02', '东风', '2级', '18', '珠海', '2021-04-27', '2021-04-27 12:00:00');
+INSERT INTO `weather_realtime` VALUES ('7', '22', '98', '阵雨', '03', '东北风', '3级', '20', '珠海', '2021-04-27', '2021-04-27 13:00:00');
+INSERT INTO `weather_realtime` VALUES ('8', '22', '98', '阴', '02', '东风', '3级', '20', '珠海', '2021-04-27', '2021-04-27 14:00:00');
+INSERT INTO `weather_realtime` VALUES ('9', '23', '98', '阵雨', '03', '东南风', '4级', '17', '珠海', '2021-04-27', '2021-04-27 15:00:00');
+INSERT INTO `weather_realtime` VALUES ('10', '23', '98', '阵雨', '03', '东南风', '4级', '17', '珠海', '2021-04-27', '2021-04-27 15:03:40');
+INSERT INTO `weather_realtime` VALUES ('11', '23', '98', '阵雨', '03', '东南风', '4级', '17', '珠海', '2021-04-27', '2021-04-27 15:03:50');
+INSERT INTO `weather_realtime` VALUES ('12', '23', '98', '阵雨', '03', '东南风', '4级', '17', '珠海', '2021-04-27', '2021-04-27 15:04:00');
+INSERT INTO `weather_realtime` VALUES ('13', '23', '98', '阵雨', '03', '东南风', '4级', '17', '珠海', '2021-04-27', '2021-04-27 15:04:10');
+INSERT INTO `weather_realtime` VALUES ('14', '23', '98', '阵雨', '03', '东南风', '4级', '17', '珠海', '2021-04-27', '2021-04-27 15:04:20');
+INSERT INTO `weather_realtime` VALUES ('15', '23', '98', '阵雨', '03', '东南风', '4级', '17', '珠海', '2021-04-27', '2021-04-27 15:04:30');
+INSERT INTO `weather_realtime` VALUES ('16', '23', '98', '阵雨', '03', '东南风', '4级', '17', '珠海', '2021-04-27', '2021-04-27 15:08:00');
+INSERT INTO `weather_realtime` VALUES ('17', '23', '98', '阵雨', '03', '东南风', '4级', '17', '珠海', '2021-04-27', '2021-04-27 15:10:00');
+INSERT INTO `weather_realtime` VALUES ('18', '23', '98', '阵雨', '03', '东南风', '4级', '17', '珠海', '2021-04-27', '2021-04-27 15:11:00');
+INSERT INTO `weather_realtime` VALUES ('19', '23', '98', '阵雨', '03', '东南风', '4级', '17', '珠海', '2021-04-27', '2021-04-27 15:12:00');
+INSERT INTO `weather_realtime` VALUES ('20', '23', '98', '阵雨', '03', '东风', '3级', '17', '珠海', '2021-04-27', '2021-04-27 16:00:00');
+INSERT INTO `weather_realtime` VALUES ('21', '22', '98', '阴', '02', '东南风', '3级', '22', '珠海', '2021-04-27', '2021-04-27 16:21:26');
+INSERT INTO `weather_realtime` VALUES ('22', '22', '98', '阴', '02', '东南风', '3级', '22', '珠海', '2021-04-27', '2021-04-27 16:21:29');
+INSERT INTO `weather_realtime` VALUES ('23', '22', '98', '阴', '02', '东南风', '3级', '22', '珠海', '2021-04-27', '2021-04-27 16:21:43');
+INSERT INTO `weather_realtime` VALUES ('24', '22', '98', '阴', '02', '东南风', '3级', '22', '珠海', '2021-04-27', '2021-04-27 16:25:00');
+INSERT INTO `weather_realtime` VALUES ('25', '22', '98', '阴', '02', '东南风', '3级', '22', '珠海', '2021-04-27', '2021-04-27 16:30:25');
+INSERT INTO `weather_realtime` VALUES ('26', '22', '98', '阴', '02', '东南风', '3级', '22', '珠海', '2021-04-27', '2021-04-27 17:00:00');
+INSERT INTO `weather_realtime` VALUES ('27', '23', '98', '阴', '02', '东南风', '2级', '22', '珠海', '2021-04-27', '2021-04-27 17:22:00');
+INSERT INTO `weather_realtime` VALUES ('28', '23', '98', '阴', '02', '东南风', '2级', '22', '珠海', '2021-04-27', '2021-04-27 17:24:00');
+INSERT INTO `weather_realtime` VALUES ('29', '23', '98', '阴', '02', '东南风', '2级', '22', '珠海', '2021-04-27', '2021-04-27 17:25:00');
+INSERT INTO `weather_realtime` VALUES ('30', '23', '98', '阴', '02', '东南风', '2级', '22', '珠海', '2021-04-27', '2021-04-27 17:27:00');
+INSERT INTO `weather_realtime` VALUES ('31', '23', '98', '阴', '02', '东南风', '2级', '22', '珠海', '2021-04-27', '2021-04-27 17:28:00');
+INSERT INTO `weather_realtime` VALUES ('32', '23', '98', '阴', '02', '东南风', '2级', '22', '珠海', '2021-04-27', '2021-04-27 17:29:00');
+INSERT INTO `weather_realtime` VALUES ('33', '23', '98', '阴', '02', '东南风', '2级', '22', '珠海', '2021-04-27', '2021-04-27 17:30:00');
+INSERT INTO `weather_realtime` VALUES ('34', '23', '98', '阴', '02', '东南风', '2级', '22', '珠海', '2021-04-27', '2021-04-27 17:33:02');
+
+-- ----------------------------
+-- Table structure for weather_type
+-- ----------------------------
+DROP TABLE IF EXISTS `weather_type`;
+CREATE TABLE `weather_type` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `wid` varchar(255) NOT NULL,
+ `weather` varchar(255) NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4;
+
+-- ----------------------------
+-- Records of weather_type
+-- ----------------------------
+INSERT INTO `weather_type` VALUES ('1', '00', '晴');
+INSERT INTO `weather_type` VALUES ('2', '01', '多云');
+INSERT INTO `weather_type` VALUES ('3', '02', '阴');
+INSERT INTO `weather_type` VALUES ('4', '03', '阵雨');
+INSERT INTO `weather_type` VALUES ('5', '04', '雷阵雨');
+INSERT INTO `weather_type` VALUES ('6', '05', '雷阵雨伴有冰雹');
+INSERT INTO `weather_type` VALUES ('7', '06', '雨夹雪');
+INSERT INTO `weather_type` VALUES ('8', '07', '小雨');
+INSERT INTO `weather_type` VALUES ('9', '08', '中雨');
+INSERT INTO `weather_type` VALUES ('10', '09', '大雨');
+INSERT INTO `weather_type` VALUES ('11', '10', '暴雨');
+INSERT INTO `weather_type` VALUES ('12', '11', '大暴雨');
+INSERT INTO `weather_type` VALUES ('13', '12', '特大暴雨');
+INSERT INTO `weather_type` VALUES ('14', '13', '阵雪');
+INSERT INTO `weather_type` VALUES ('15', '14', '小雪');
+INSERT INTO `weather_type` VALUES ('16', '15', '中雪');
+INSERT INTO `weather_type` VALUES ('17', '16', '大雪');
+INSERT INTO `weather_type` VALUES ('18', '17', '暴雪');
+INSERT INTO `weather_type` VALUES ('19', '18', '雾');
+INSERT INTO `weather_type` VALUES ('20', '19', '冻雨');
+INSERT INTO `weather_type` VALUES ('21', '20', '沙尘暴');
+INSERT INTO `weather_type` VALUES ('22', '21', '小到中雨');
+INSERT INTO `weather_type` VALUES ('23', '22', '中到大雨');
+INSERT INTO `weather_type` VALUES ('24', '23', '大到暴雨');
+INSERT INTO `weather_type` VALUES ('25', '24', '暴雨到大暴雨');
+INSERT INTO `weather_type` VALUES ('26', '25', '大暴雨到特大暴雨');
+INSERT INTO `weather_type` VALUES ('27', '26', '小到中雪');
+INSERT INTO `weather_type` VALUES ('28', '27', '中到大雪');
+INSERT INTO `weather_type` VALUES ('29', '28', '大到暴雪');
+INSERT INTO `weather_type` VALUES ('30', '29', '浮尘');
+INSERT INTO `weather_type` VALUES ('31', '30', '扬沙');
+INSERT INTO `weather_type` VALUES ('32', '31', '强沙尘暴');
+INSERT INTO `weather_type` VALUES ('33', '53', '霾');
diff --git a/20250705/weather/src/test/java/com/rehome/weather/WeatherApplicationTests.java b/20250705/weather/src/test/java/com/rehome/weather/WeatherApplicationTests.java
new file mode 100644
index 0000000..213da54
--- /dev/null
+++ b/20250705/weather/src/test/java/com/rehome/weather/WeatherApplicationTests.java
@@ -0,0 +1,13 @@
+package com.rehome.weather;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+class WeatherApplicationTests {
+
+ @Test
+ void contextLoads() {
+ }
+
+}