当前位置:   article > 正文

Python通过pyecharts对爬虫房地产数据进行数据可视化分析(一)_房价可视化分析

房价可视化分析

一、背景

Python通过代理使用多线程爬取安居客二手房数据(二)中爬取的房地产数据进行数据分析与可视化展示

我们爬取到的房产数据,主要是武汉二手房的房源信息,主要包括了待售房源的户型、面积、朝向、楼层、建筑年份、小区名称、小区所在的城区-镇-街道、房子被打的标签、总价、单价等信息。
在这里插入图片描述

:numpy、pandas、pyecharts、jieba
图形:Bar(柱状图)、Pie(饼图)、Histogram(直方图) 、Scatter(散点图)、Map(地图)和WordCloud(词云图)

分析思路

  1. 按房屋面积区间分布的房屋单价情况:柱状图
  2. 按房子户型的房屋单价情况:柱状图
  3. 小区房价Top10:柱状图(横向
  4. 待售卖的二手房中,不同建筑年份的房子数量占比情况:饼图
  5. 不同单价和总价的房子在不同价格区间的分布数量情况:直方图
    6.分析 房子面积跟房子单价之间是什么关系:散点图
  6. 不同区的二手房房价情况:地图
  7. 分析购房者最关注的房屋关键词有哪些:词云

二、代码实战

"""
读取excel数据,分析数据并生成图表
"""

import pandas as pd
from pyecharts import options as opts
from pyecharts.charts import Bar, Pie, Scatter, WordCloud, Map, Page
import numpy as np
import jieba
import jieba.analyse
from pyecharts.commons.utils import JsCode


# 面积分区
def cal_square_district(row):
    if row['面积'] <= 60:
        return '[0,60]'
    if row['面积'] > 60 and row['面积'] <= 90:
        return '[60,90]'
    if row['面积'] > 90 and row['面积'] <= 120:
        return '[90,120]'
    if row['面积'] > 120 and row['面积'] <= 150:
        return '[120,150]'
    if row['面积'] > 150 and row['面积'] <= 200:
        return '[150,200]'
    if row['面积'] > 200 and row['面积'] <= 300:
        return '[200, 300]'
    if row['面积'] > 300:
        return '[300,-]'
    return '[未知]'


# 几室量化
def order_layout_ascending(row):
    if row['室'] == '1室':
        return 0
    if row['室'] == '2室':
        return 1
    if row['室'] == '3室':
        return 2
    if row['室'] == '4室':
        return 3
    if row['室'] == '5室':
        return 4
    if row['室'] == '6室':
        return 5

# 颜色配置
layout_color_function = """
        function (params) {
            if (params.value > 17000 && params.value < 18000) {
                return 'red';
            } else if (params.value > 18000 && params.value < 20000) {
                return 'blue';
            }else if (params.value > 20000 && params.value < 25000){
                return 'green'
            }else if (params.value > 25000 && params.value < 35000){
                return 'purple'
            }else if (params.value > 35000 && params.value < 40000){
                return 'black'
            }
            return 'brown';
        }
        """


# 按室均价
def unit_price_analysis_by_layout(df, isembed):
    # 增加一列[面积区间]
    df['面积区间'] = df.apply(cal_square_district, args=(), axis=1)
    # 获取要分析的数据行和列
    analysis_df = df.loc[:, ['室', '均价']]
    analysis_df.loc[:, '室'] = analysis_df.loc[:, '室'].astype('str')
    # 对面积区间列group by,然后按分组计算总价和均价的平均值
    group = analysis_df.groupby('室', as_index=False)
    group_df = group.mean()
    group_df.loc[:, '均价'] = group_df.loc[:, '均价'].astype('int')
    # 给室这个字段排个序
    group_df['order'] = group_df.apply(order_layout_ascending, axis=1)
    group_df.sort_values('order', ascending=True, inplace=True)
	
    bar = (
        Bar()
            .add_xaxis(group_df['室'].tolist())
            .add_yaxis("单价均价", group_df["均价"].tolist(),
                       itemstyle_opts=opts.ItemStyleOpts(color=JsCode(layout_color_function)))
            .set_global_opts(title_opts=opts.TitleOpts(title="武汉二手房按户型的房屋单价"),
                             legend_opts=opts.LegendOpts(is_show=False))
    )

    # 判断是否单独显示,还是和其他图表一起显示
    if isembed:
        return bar.render_embed()
    else:
        return bar


def order_square_ascending(row):
    if row['面积区间'] == '[0,60]':
        return 0
    if row['面积区间'] == '[60,90]':
        return 1
    if row['面积区间'] == '[90,120]':
        return 2
    if row['面积区间'] == '[120,150]':
        return 3
    if row['面积区间'] == '[150,200]':
        return 4
    if row['面积区间'] == '[200,300]':
        return 5
    if row['面积区间'] == '[300,-]':
        return 6


square_color_function = """
        function (params) {
            if (params.value > 17000 && params.value < 18000) {
                return 'red';
            } else if (params.value > 18000 && params.value < 20000) {
                return 'blue';
            }else if (params.value > 20000 && params.value < 25000){
                return 'green'
            }else if (params.value > 25000 && params.value < 35000){
                return 'purple'
            }else if (params.value > 35000 && params.value < 40000){
                return 'black'
            }
            return 'brown';
        }
        """

# 按面积区间均价分布
def unit_price_analysis_by_square(df, isembed):
    # 增加一列[面积区间]
    df['面积区间'] = df.apply(cal_square_district, args=(), axis=1)
    # 获取要分析的数据行和列
    analysis_df = df.loc[:, ['面积区间', '均价']]
    analysis_df.loc[:, '面积区间'] = analysis_df.loc[:, '面积区间'].astype('str')
    # 对面积区间列group by,然后按分组计算总价和均价的平均值
    group = analysis_df.groupby('面积区间', as_index=False)
    group_df = group.mean()
    group_df.loc[:, '均价'] = group_df.loc[:, '均价'].astype('int')
    # 把面积区间按从小到大排个序
    group_df['order'] = group_df.apply(order_square_ascending, axis=1)
    group_df.sort_values('order', ascending=True, inplace=True)


    bar = (
        Bar()
            .add_xaxis(group_df['面积区间'].tolist())
            .add_yaxis("单价均价", group_df["均价"].tolist(),
                       itemstyle_opts=opts.ItemStyleOpts(color=JsCode(square_color_function)))
            .set_global_opts(
            title_opts=opts.TitleOpts(title="武汉二手房按面积区间的房屋单价"),
            legend_opts=opts.LegendOpts(is_show=False))
    )

    # 判断是否单独显示,还是和其他图表一起显示
    if isembed:
        return bar.render_embed()
    else:
        return bar


top10_color_function = """
        function (params) {
            if (params.value > 27000 && params.value < 27500) {
                return 'red';
            } else if (params.value > 27500 && params.value < 27800) {
                return 'blue';
            }else if (params.value > 27800 && params.value < 28000){
                return 'green'
            }else if (params.value > 28000 && params.value < 29000){
                return 'purple'
            }else if (params.value > 29000 && params.value < 30000){
                return 'brown'
            }else if (params.value > 30000 && params.value < 35200){
                return 'gray'
            }else if (params.value > 35200 && params.value < 37000){
                return 'orange'
            }else if (params.value > 37000 && params.value < 40000){
                return 'pink'
            }else if (params.value > 40000 && params.value < 45000){
                return 'navy'
            }
            return 'gold';
        }
        """

# 小区均价top10
def unit_price_analysis_by_estate(df, isembed):
    # 获取要分析的数据列
    analysis_df = df.loc[:, ['小区名称', '均价']]
    analysis_df.loc[:, '小区名称'] = analysis_df.loc[:, '小区名称'].astype('str')
    # 对小区名称分组,然后按照分组计算单价均价
    group = analysis_df.groupby('小区名称', as_index=False)
    group_df = group.mean()
    group_df.loc[:, '均价'] = group_df.loc[:, '均价'].astype('int')
    # 按照均价列降序排序
    group_df.sort_values('均价', ascending=False, inplace=True)
    # 取Top10
    top10_df = group_df.head(10)
    # print(top10_df)
    # 为了横向柱状图展示,再从低到高排序一下
    top10_df.sort_values('均价', ascending=True, inplace=True)

    bar = (
        Bar(init_opts=opts.InitOpts(width="1500px"))
            .add_xaxis(top10_df['小区名称'].tolist())
            .add_yaxis("房价单价", top10_df['均价'].tolist(),
                       itemstyle_opts=opts.ItemStyleOpts(color=JsCode(top10_color_function)))
            .reversal_axis()
            .set_series_opts(label_opts=opts.LabelOpts(position="right"))
            .set_global_opts(title_opts=opts.TitleOpts(title="武汉各小区二手房房价TOP10"),
                             xaxis_opts=opts.AxisOpts(axislabel_opts={'interval': '0'}),
                             legend_opts=opts.LegendOpts(is_show=False))
    )

    # 判断是否单独显示,还是和其他图表一起显示
    if isembed:
        return bar.render_embed()
    else:
        return bar

# 按区均价分布
def unit_price_analysis_by_district(df):
    # 获取要分析的数据列
    analysis_df = df.loc[:, ['区', '均价']]
    analysis_df.loc[:, '区'] = analysis_df.loc[:, '区'].astype('str')
    # 对小区名称分组,然后按照分组计算单价均价
    group = analysis_df.groupby('区', as_index=False)
    group_df = group.mean()
    group_df.loc[:, '均价'] = group_df.loc[:, '均价'].astype('int')
    # 按照均价列降序排序
    group_df.sort_values('均价', ascending=True, inplace=True)

    bar = (
        Bar(init_opts=opts.InitOpts(width="1500px"))
            .add_xaxis(group_df['区'].tolist())
            .add_yaxis("房价单价", group_df['均价'].tolist())
            .reversal_axis()
            .set_series_opts(label_opts=opts.LabelOpts(position="right"))
            .set_global_opts(title_opts=opts.TitleOpts(title="武汉各区域二手房房价排行榜"),
                             xaxis_opts=opts.AxisOpts(axislabel_opts={'interval': '0'}))
    )

    return bar.render_embed()


def add_sale_estate_col(row):
    return 0

# 不同建筑年份的待售数量
def sale_estate_analysis_by_year(df, isembed):
    # 增加一列待售房屋数,初始值均为0
    df.loc[:, '待售房屋数'] = df.apply(add_sale_estate_col, axis=1)
    # 获取要用作数据分析的两列:建筑年份和待售房屋数
    analysis_df = df.loc[:, ['建筑年份', '待售房屋数']]
    # 因为建筑年份列有空值,先预处理一下
    analysis_df.dropna(inplace=True)
    # 按照建筑年份进行分组
    group = analysis_df.groupby('建筑年份', as_index=False)
    # 对每个分组进行统计计数
    group_df = group.count()
    group_df.loc[:, '待售房屋数'] = group_df.loc[:, '待售房屋数'].astype('int')

    pie = Pie(init_opts=opts.InitOpts(width='800px', height='600px', bg_color='white'))
    pie.add("pie", [list(z) for z in zip(group_df['建筑年份'].tolist(), group_df['待售房屋数'].tolist())]
            , radius=['40%', '60%']
            , center=['50%', '50%']
            , label_opts=opts.LabelOpts(
            position="outside",
            formatter="{b}:{c}:{d}%", )
            ).set_global_opts(
        title_opts=opts.TitleOpts(title='武汉二手房不同建筑年份的待售数量', pos_left='300', pos_top='20',
                                  title_textstyle_opts=opts.TextStyleOpts(color='black', font_size=16)),
        legend_opts=opts.LegendOpts(is_show=False))

    # 判断是否单独显示,还是和其他图表一起显示
    if isembed:
        return pie.render_embed()
    else:
        return pie

# 均价价格分布
def unit_price_analysis_by_histogram(df, isembed):
    hist, bin_edges = np.histogram(df['均价'], bins=100)

    bar = (
        Bar()
            .add_xaxis([str(x) for x in bin_edges[:-1]])
            .add_yaxis('价格分布', [float(x) for x in hist], category_gap=0)
            .set_global_opts(
            title_opts=opts.TitleOpts(title='武汉二手房房价-单价分布-直方图', pos_left='center'),
            legend_opts=opts.LegendOpts(is_show=False)
        )
    )

    # 判断是否单独显示,还是和其他图表一起显示
    if isembed:
        return bar.render_embed()
    else:
        return bar

# 总价价格分布
def total_price_analysis_by_histogram(df, isembed):
    hist, bin_edges = np.histogram(df['总价'], bins=100)

    bar = (
        Bar()
            .add_xaxis([str(x) for x in bin_edges[:-1]])
            .add_yaxis('价格分布', [float(x) for x in hist], category_gap=0)
            .set_global_opts(
            title_opts=opts.TitleOpts(title='武汉二手房房价-总价分布-直方图', pos_left='center'),
            legend_opts=opts.LegendOpts(is_show=False)
        )
    )

    # 判断是否单独显示,还是和其他图表一起显示
    if isembed:
        return bar.render_embed()
    else:
        return bar

# 面积——单价关系
def unit_price_analysis_by_scatter(df, isembed):
    df.sort_values('面积', ascending=True, inplace=True)

    square = df['面积'].to_list()
    unit_price = df['均价'].to_list()

    scatter = (
        Scatter()
            .add_xaxis(xaxis_data=square)
            .add_yaxis(
            series_name='',
            y_axis=unit_price,
            symbol_size=4,
            label_opts=opts.LabelOpts(is_show=False)
        )
            .set_global_opts(
            xaxis_opts=opts.AxisOpts(type_='value'),
            yaxis_opts=opts.AxisOpts(type_='value'),
            title_opts=opts.TitleOpts(title='武汉二手房面积-单价关系图', pos_left='center')
        )
    )

    # 判断是否单独显示,还是和其他图表一起显示
    if isembed:
        return scatter.render_embed()
    else:
        return scatter

# 房屋标题标签热度词
def hot_word_analysis_by_wordcloud(df, isembed):
    txt = ''
    for index, row in df.iterrows():
        txt = txt + str(row['待售房屋']) + ';' + str(row['标签']) + '\n'

    word_weights = jieba.analyse.extract_tags(txt, topK=100, withWeight=True)

    word_cloud = (
        WordCloud()
            .add(series_name='高频词语', data_pair=word_weights, word_size_range=[10, 100])
            .set_global_opts(
            title_opts=opts.TitleOpts(
                title='武汉二手房销售热度词',
                title_textstyle_opts=opts.TextStyleOpts(font_size=23),
                pos_left='center'
            )
        )
    )

    # 判断是否单独显示,还是和其他图表一起显示
    if isembed:
        return word_cloud.render_embed()
    else:
        # png_name = 'hot_word_analysis_by_wordcloud.png'
        # make_snapshot(snapshot, word_cloud.render(), f"crawler/anjuke/static/{png_name}")
        # return png_name
        return word_cloud

# 规范区名
def transform_name(row):
    district_name = row['区'].strip()
    if district_name == '江汉' or district_name == '江岸' or district_name == '硚口' or district_name == '汉阳' or district_name == '武昌' or district_name == '东西湖' or district_name == '洪山':
        district_name = district_name + '区'
    return district_name

# 按区均价分布地图
def unit_price_analysis_by_map(df, isembed):
    data = []
    # 获取要分析的数据列
    analysis_df = df.loc[:, ['区', '均价']]
    # 按区列分组
    group_df = analysis_df.groupby('区', as_index=False)
    # 根据分组对均价列求平均值
    group_df = group_df.mean('均价')
    # print(group_df)
    # 将区的名字做一下转换,为下面的地图匹配做准备
    group_df['区'] = group_df.apply(transform_name, axis=1)
    group_df.loc[:, '均价'] = group_df.loc[:, '均价'].astype('int')
    # 将数据转换成map需要的数据格式
    for index, row in group_df.iterrows():
        district_array = [row['区'], row['均价']]
        data.append(district_array)

    map = (
        Map()
            .add('武汉各区域二手房房价', data, '武汉')
            .set_global_opts(
            title_opts=opts.TitleOpts(title='武汉各区域二手房房价地图', pos_left='center'),
            visualmap_opts=opts.VisualMapOpts(max_=26000),
            legend_opts=opts.LegendOpts(is_show=False)
        )
    )
    # 判断是否单独显示,还是和其他图表一起显示
    if isembed:
        return map.render_embed()
    else:
        # png_name = 'unit_price_analysis_by_map.png'
        # make_snapshot(snapshot, map.render(), f"crawler/anjuke/static/{png_name}")
        # return png_name
        return map


# 主函数
if __name__ == '__main__':

    # 读取csv
    fpath = 'data/wuhanSecondHouse.csv'
    df = pd.read_csv(fpath, header=[0], encoding='gbk')
    df.drop_duplicates(keep='first', inplace=True)

	# 可视化
	
    # 获取按面积区间的单价分析-柱状图
    unit_price_analysis_by_square = unit_price_analysis_by_square(df, False)
    # 获取按室区分的单价分析-柱状图
    unit_price_analysis_by_layout = unit_price_analysis_by_layout(df, False)
    # 获取苏州各小区二手房房价TOP10横向-柱状图
    unit_price_analysis_by_estate = unit_price_analysis_by_estate(df, False)
    # 获取不同建筑年份的待售房屋数-饼图
    sale_estate_analysis_by_year = sale_estate_analysis_by_year(df, False)
    # 苏州二手房房价-单价分布-直方图
    unit_price_analysis_by_histogram = unit_price_analysis_by_histogram(df, False)
    # 苏州二手房房价-总价分布-直方图
    total_price_analysis_by_histogram = total_price_analysis_by_histogram(df, False)
    # 苏州二手房面积-单价关系图
    unit_price_analysis_by_scatter = unit_price_analysis_by_scatter(df, False)
    # 苏州二手房销售热度词-词云
    # hot_word_analysis_by_wordcloud_png_name = dbc.hot_word_analysis_by_wordcloud(df,False)
    hot_word_analysis_by_wordcloud = hot_word_analysis_by_wordcloud(df, False)
    # 苏州各区域二手房房价分布-地图
    # unit_price_analysis_by_map_png_name = dbc.unit_price_analysis_by_map(df,False)
    unit_price_analysis_by_map = unit_price_analysis_by_map(df, False)


    # web展示所有图
    page = Page(layout=Page.DraggablePageLayout)  # 可拖动布局

    page.add(
        unit_price_analysis_by_square,
        unit_price_analysis_by_layout,
        unit_price_analysis_by_estate,
        sale_estate_analysis_by_year,
        unit_price_analysis_by_histogram,
        total_price_analysis_by_histogram,
        unit_price_analysis_by_scatter,
        hot_word_analysis_by_wordcloud,
        unit_price_analysis_by_map
    )

    page.render("武汉二手房数据分析.html")

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 351
  • 352
  • 353
  • 354
  • 355
  • 356
  • 357
  • 358
  • 359
  • 360
  • 361
  • 362
  • 363
  • 364
  • 365
  • 366
  • 367
  • 368
  • 369
  • 370
  • 371
  • 372
  • 373
  • 374
  • 375
  • 376
  • 377
  • 378
  • 379
  • 380
  • 381
  • 382
  • 383
  • 384
  • 385
  • 386
  • 387
  • 388
  • 389
  • 390
  • 391
  • 392
  • 393
  • 394
  • 395
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • 407
  • 408
  • 409
  • 410
  • 411
  • 412
  • 413
  • 414
  • 415
  • 416
  • 417
  • 418
  • 419
  • 420
  • 421
  • 422
  • 423
  • 424
  • 425
  • 426
  • 427
  • 428
  • 429
  • 430
  • 431
  • 432
  • 433
  • 434
  • 435
  • 436
  • 437
  • 438
  • 439
  • 440
  • 441
  • 442
  • 443
  • 444
  • 445
  • 446
  • 447
  • 448
  • 449
  • 450
  • 451
  • 452
  • 453
  • 454
  • 455
  • 456
  • 457
  • 458
  • 459
  • 460
  • 461
  • 462
  • 463
  • 464
  • 465
  • 466
  • 467
  • 468
  • 469
  • 470
  • 471
  • 472
  • 473
  • 474
  • 475

三、可视化展示效果

执行上述代码后会生成一个网页文件:武汉二手房数据分析.html,如下图所示:
在这里插入图片描述
完整代码:

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Awesome-pyecharts</title>
                <script type="text/javascript" src="https://assets.pyecharts.org/assets/v5/echarts.min.js"></script>
            <script type="text/javascript" src="https://assets.pyecharts.org/assets/v5/echarts-wordcloud.min.js"></script>
            <script type="text/javascript" src="https://assets.pyecharts.org/assets/v5/maps/hu2_bei3_wu3_han4.js"></script>
            <script type="text/javascript" src="https://assets.pyecharts.org/assets/v5/jquery.min.js"></script>
            <script type="text/javascript" src="https://assets.pyecharts.org/assets/v5/jquery-ui.min.js"></script>
            <script type="text/javascript" src="https://assets.pyecharts.org/assets/v5/ResizeSensor.js"></script>

            <link rel="stylesheet"  href="https://assets.pyecharts.org/assets/v5/jquery-ui.css">

</head>
<body >
    <style>.box {  } </style>
        <button onclick="downloadCfg()">Save Config</button>
    <div class="box">
                <div id="1b112349eb8148e0b585ffd506a12607" class="chart-container" style="width:900px; height:500px; "></div>
    <script>
        var chart_1b112349eb8148e0b585ffd506a12607 = echarts.init(
            document.getElementById('1b112349eb8148e0b585ffd506a12607'), 'white', {renderer: 'canvas'});
        var option_1b112349eb8148e0b585ffd506a12607 = {
    "animation": true,
    "animationThreshold": 2000,
    "animationDuration": 1000,
    "animationEasing": "cubicOut",
    "animationDelay": 0,
    "animationDurationUpdate": 300,
    "animationEasingUpdate": "cubicOut",
    "animationDelayUpdate": 0,
    "aria": {
        "enabled": false
    },
    "color": [
        "#5470c6",
        "#91cc75",
        "#fac858",
        "#ee6666",
        "#73c0de",
        "#3ba272",
        "#fc8452",
        "#9a60b4",
        "#ea7ccc"
    ],
    "series": [
        {
            "type": "bar",
            "name": "\u5355\u4ef7\u5747\u4ef7",
            "legendHoverLink": true,
            "data": [
                17466.0,
                18258.0,
                18405.0,
                17497.0,
                31886.0,
                42885.0,
                40402.0
            ],
            "realtimeSort": false,
            "showBackground": false,
            "stackStrategy": "samesign",
            "cursor": "pointer",
            "barMinHeight": 0,
            "barCategoryGap": "20%",
            "barGap": "30%",
            "large": false,
            "largeThreshold": 400,
            "seriesLayoutBy": "column",
            "datasetIndex": 0,
            "clip": true,
            "zlevel": 0,
            "z": 2,
            "label": {
                "show": true,
                "margin": 8
            },
            "itemStyle": {
                "color":         function (params) {            if (params.value > 17000 && params.value < 18000) {                return 'red';            } else if (params.value > 18000 && params.value < 20000) {                return 'blue';            }else if (params.value > 20000 && params.value < 25000){                return 'green'            }else if (params.value > 25000 && params.value < 35000){                return 'purple'            }else if (params.value > 35000 && params.value < 40000){                return 'black'            }            return 'brown';        }        
            }
        }
    ],
    "legend": [
        {
            "data": [
                "\u5355\u4ef7\u5747\u4ef7"
            ],
            "selected": {},
            "show": false,
            "padding": 5,
            "itemGap": 10,
            "itemWidth": 25,
            "itemHeight": 14,
            "backgroundColor": "transparent",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "borderRadius": 0,
            "pageButtonItemGap": 5,
            "pageButtonPosition": "end",
            "pageFormatter": "{current}/{total}",
            "pageIconColor": "#2f4554",
            "pageIconInactiveColor": "#aaa",
            "pageIconSize": 15,
            "animationDurationUpdate": 800,
            "selector": false,
            "selectorPosition": "auto",
            "selectorItemGap": 7,
            "selectorButtonGap": 10
        }
    ],
    "tooltip": {
        "show": true,
        "trigger": "item",
        "triggerOn": "mousemove|click",
        "axisPointer": {
            "type": "line"
        },
        "showContent": true,
        "alwaysShowContent": false,
        "showDelay": 0,
        "hideDelay": 100,
        "enterable": false,
        "confine": false,
        "appendToBody": false,
        "transitionDuration": 0.4,
        "textStyle": {
            "fontSize": 14
        },
        "borderWidth": 0,
        "padding": 5,
        "order": "seriesAsc"
    },
    "xAxis": [
        {
            "show": true,
            "scale": false,
            "nameLocation": "end",
            "nameGap": 15,
            "gridIndex": 0,
            "inverse": false,
            "offset": 0,
            "splitNumber": 5,
            "minInterval": 0,
            "splitLine": {
                "show": true,
                "lineStyle": {
                    "show": true,
                    "width": 1,
                    "opacity": 1,
                    "curveness": 0,
                    "type": "solid"
                }
            },
            "data": [
                "[0,60]",
                "[60,90]",
                "[90,120]",
                "[120,150]",
                "[150,200]",
                "[300,-]",
                "[200, 300]"
            ]
        }
    ],
    "yAxis": [
        {
            "show": true,
            "scale": false,
            "nameLocation": "end",
            "nameGap": 15,
            "gridIndex": 0,
            "inverse": false,
            "offset": 0,
            "splitNumber": 5,
            "minInterval": 0,
            "splitLine": {
                "show": true,
                "lineStyle": {
                    "show": true,
                    "width": 1,
                    "opacity": 1,
                    "curveness": 0,
                    "type": "solid"
                }
            }
        }
    ],
    "title": [
        {
            "show": true,
            "text": "\u6b66\u6c49\u4e8c\u624b\u623f\u6309\u9762\u79ef\u533a\u95f4\u7684\u623f\u5c4b\u5355\u4ef7",
            "target": "blank",
            "subtarget": "blank",
            "padding": 5,
            "itemGap": 10,
            "textAlign": "auto",
            "textVerticalAlign": "auto",
            "triggerEvent": false
        }
    ]
};
        chart_1b112349eb8148e0b585ffd506a12607.setOption(option_1b112349eb8148e0b585ffd506a12607);
    </script>
<br/>                <div id="d3edb43c0efe44c1b7ac21dcca195423" class="chart-container" style="width:900px; height:500px; "></div>
    <script>
        var chart_d3edb43c0efe44c1b7ac21dcca195423 = echarts.init(
            document.getElementById('d3edb43c0efe44c1b7ac21dcca195423'), 'white', {renderer: 'canvas'});
        var option_d3edb43c0efe44c1b7ac21dcca195423 = {
    "animation": true,
    "animationThreshold": 2000,
    "animationDuration": 1000,
    "animationEasing": "cubicOut",
    "animationDelay": 0,
    "animationDurationUpdate": 300,
    "animationEasingUpdate": "cubicOut",
    "animationDelayUpdate": 0,
    "aria": {
        "enabled": false
    },
    "color": [
        "#5470c6",
        "#91cc75",
        "#fac858",
        "#ee6666",
        "#73c0de",
        "#3ba272",
        "#fc8452",
        "#9a60b4",
        "#ea7ccc"
    ],
    "series": [
        {
            "type": "bar",
            "name": "\u5355\u4ef7\u5747\u4ef7",
            "legendHoverLink": true,
            "data": [
                17311.0,
                18147.0,
                18591.0,
                25413.0,
                42885.0
            ],
            "realtimeSort": false,
            "showBackground": false,
            "stackStrategy": "samesign",
            "cursor": "pointer",
            "barMinHeight": 0,
            "barCategoryGap": "20%",
            "barGap": "30%",
            "large": false,
            "largeThreshold": 400,
            "seriesLayoutBy": "column",
            "datasetIndex": 0,
            "clip": true,
            "zlevel": 0,
            "z": 2,
            "label": {
                "show": true,
                "margin": 8
            },
            "itemStyle": {
                "color":         function (params) {            if (params.value > 17000 && params.value < 18000) {                return 'red';            } else if (params.value > 18000 && params.value < 20000) {                return 'blue';            }else if (params.value > 20000 && params.value < 25000){                return 'green'            }else if (params.value > 25000 && params.value < 35000){                return 'purple'            }else if (params.value > 35000 && params.value < 40000){                return 'black'            }            return 'brown';        }        
            }
        }
    ],
    "legend": [
        {
            "data": [
                "\u5355\u4ef7\u5747\u4ef7"
            ],
            "selected": {},
            "show": false,
            "padding": 5,
            "itemGap": 10,
            "itemWidth": 25,
            "itemHeight": 14,
            "backgroundColor": "transparent",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "borderRadius": 0,
            "pageButtonItemGap": 5,
            "pageButtonPosition": "end",
            "pageFormatter": "{current}/{total}",
            "pageIconColor": "#2f4554",
            "pageIconInactiveColor": "#aaa",
            "pageIconSize": 15,
            "animationDurationUpdate": 800,
            "selector": false,
            "selectorPosition": "auto",
            "selectorItemGap": 7,
            "selectorButtonGap": 10
        }
    ],
    "tooltip": {
        "show": true,
        "trigger": "item",
        "triggerOn": "mousemove|click",
        "axisPointer": {
            "type": "line"
        },
        "showContent": true,
        "alwaysShowContent": false,
        "showDelay": 0,
        "hideDelay": 100,
        "enterable": false,
        "confine": false,
        "appendToBody": false,
        "transitionDuration": 0.4,
        "textStyle": {
            "fontSize": 14
        },
        "borderWidth": 0,
        "padding": 5,
        "order": "seriesAsc"
    },
    "xAxis": [
        {
            "show": true,
            "scale": false,
            "nameLocation": "end",
            "nameGap": 15,
            "gridIndex": 0,
            "inverse": false,
            "offset": 0,
            "splitNumber": 5,
            "minInterval": 0,
            "splitLine": {
                "show": true,
                "lineStyle": {
                    "show": true,
                    "width": 1,
                    "opacity": 1,
                    "curveness": 0,
                    "type": "solid"
                }
            },
            "data": [
                "1\u5ba4",
                "2\u5ba4",
                "3\u5ba4",
                "4\u5ba4",
                "5\u5ba4"
            ]
        }
    ],
    "yAxis": [
        {
            "show": true,
            "scale": false,
            "nameLocation": "end",
            "nameGap": 15,
            "gridIndex": 0,
            "inverse": false,
            "offset": 0,
            "splitNumber": 5,
            "minInterval": 0,
            "splitLine": {
                "show": true,
                "lineStyle": {
                    "show": true,
                    "width": 1,
                    "opacity": 1,
                    "curveness": 0,
                    "type": "solid"
                }
            }
        }
    ],
    "title": [
        {
            "show": true,
            "text": "\u6b66\u6c49\u4e8c\u624b\u623f\u6309\u6237\u578b\u7684\u623f\u5c4b\u5355\u4ef7",
            "target": "blank",
            "subtarget": "blank",
            "padding": 5,
            "itemGap": 10,
            "textAlign": "auto",
            "textVerticalAlign": "auto",
            "triggerEvent": false
        }
    ]
};
        chart_d3edb43c0efe44c1b7ac21dcca195423.setOption(option_d3edb43c0efe44c1b7ac21dcca195423);
    </script>
<br/>                <div id="75379e6d5dd245edb0df0f9e3963849a" class="chart-container" style="width:1500px; height:500px; "></div>
    <script>
        var chart_75379e6d5dd245edb0df0f9e3963849a = echarts.init(
            document.getElementById('75379e6d5dd245edb0df0f9e3963849a'), 'white', {renderer: 'canvas'});
        var option_75379e6d5dd245edb0df0f9e3963849a = {
    "animation": true,
    "animationThreshold": 2000,
    "animationDuration": 1000,
    "animationEasing": "cubicOut",
    "animationDelay": 0,
    "animationDurationUpdate": 300,
    "animationEasingUpdate": "cubicOut",
    "animationDelayUpdate": 0,
    "aria": {
        "enabled": false
    },
    "color": [
        "#5470c6",
        "#91cc75",
        "#fac858",
        "#ee6666",
        "#73c0de",
        "#3ba272",
        "#fc8452",
        "#9a60b4",
        "#ea7ccc"
    ],
    "series": [
        {
            "type": "bar",
            "name": "\u623f\u4ef7\u5355\u4ef7",
            "legendHoverLink": true,
            "data": [
                27402.0,
                27525.0,
                27815.0,
                28354.0,
                29212.0,
                29537.0,
                35191.0,
                35285.0,
                37022.0,
                41643.0
            ],
            "realtimeSort": false,
            "showBackground": false,
            "stackStrategy": "samesign",
            "cursor": "pointer",
            "barMinHeight": 0,
            "barCategoryGap": "20%",
            "barGap": "30%",
            "large": false,
            "largeThreshold": 400,
            "seriesLayoutBy": "column",
            "datasetIndex": 0,
            "clip": true,
            "zlevel": 0,
            "z": 2,
            "label": {
                "show": true,
                "position": "right",
                "margin": 8
            },
            "itemStyle": {
                "color":         function (params) {            if (params.value > 27000 && params.value < 27500) {                return 'red';            } else if (params.value > 27500 && params.value < 27800) {                return 'blue';            }else if (params.value > 27800 && params.value < 28000){                return 'green'            }else if (params.value > 28000 && params.value < 29000){                return 'purple'            }else if (params.value > 29000 && params.value < 30000){                return 'brown'            }else if (params.value > 30000 && params.value < 35200){                return 'gray'            }else if (params.value > 35200 && params.value < 37000){                return 'orange'            }else if (params.value > 37000 && params.value < 40000){                return 'pink'            }else if (params.value > 40000 && params.value < 45000){                return 'navy'            }            return 'gold';        }        
            },
            "rippleEffect": {
                "show": true,
                "brushType": "stroke",
                "scale": 2.5,
                "period": 4
            }
        }
    ],
    "legend": [
        {
            "data": [
                "\u623f\u4ef7\u5355\u4ef7"
            ],
            "selected": {},
            "show": false,
            "padding": 5,
            "itemGap": 10,
            "itemWidth": 25,
            "itemHeight": 14,
            "backgroundColor": "transparent",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "borderRadius": 0,
            "pageButtonItemGap": 5,
            "pageButtonPosition": "end",
            "pageFormatter": "{current}/{total}",
            "pageIconColor": "#2f4554",
            "pageIconInactiveColor": "#aaa",
            "pageIconSize": 15,
            "animationDurationUpdate": 800,
            "selector": false,
            "selectorPosition": "auto",
            "selectorItemGap": 7,
            "selectorButtonGap": 10
        }
    ],
    "tooltip": {
        "show": true,
        "trigger": "item",
        "triggerOn": "mousemove|click",
        "axisPointer": {
            "type": "line"
        },
        "showContent": true,
        "alwaysShowContent": false,
        "showDelay": 0,
        "hideDelay": 100,
        "enterable": false,
        "confine": false,
        "appendToBody": false,
        "transitionDuration": 0.4,
        "textStyle": {
            "fontSize": 14
        },
        "borderWidth": 0,
        "padding": 5,
        "order": "seriesAsc"
    },
    "xAxis": [
        {
            "show": true,
            "scale": false,
            "nameLocation": "end",
            "nameGap": 15,
            "gridIndex": 0,
            "axisLabel": {
                "interval": "0"
            },
            "inverse": false,
            "offset": 0,
            "splitNumber": 5,
            "minInterval": 0,
            "splitLine": {
                "show": true,
                "lineStyle": {
                    "show": true,
                    "width": 1,
                    "opacity": 1,
                    "curveness": 0,
                    "type": "solid"
                }
            }
        }
    ],
    "yAxis": [
        {
            "show": true,
            "scale": false,
            "nameLocation": "end",
            "nameGap": 15,
            "gridIndex": 0,
            "inverse": false,
            "offset": 0,
            "splitNumber": 5,
            "minInterval": 0,
            "splitLine": {
                "show": true,
                "lineStyle": {
                    "show": true,
                    "width": 1,
                    "opacity": 1,
                    "curveness": 0,
                    "type": "solid"
                }
            },
            "data": [
                "\u4e07\u79d1\u7fe1\u7fe0\u56fd\u9645",
                "\u6cdb\u6d77\u56fd\u9645\u5c45\u4f4f\u533a\u60a6\u6d77\u56ed",
                "\u7231\u7279\u57ce",
                "\u4e5d\u5934\u9e1f\u5c0f\u533a",
                "\u6cdb\u6d77\u56fd\u9645\u5c45\u4f4f\u533a\u7af9\u6d77\u56ed",
                "\u6cdb\u6d77\u56fd\u9645\u5c45\u4f4f\u533a\u6a31\u6d77\u56ed",
                "\u4e16\u7eaa\u6c5f\u5c1a",
                "\u6cdb\u6d77\u56fd\u9645\u5c45\u4f4f\u533a\u677e\u6d77\u56ed",
                "\u90fd\u4f1a\u8f69",
                "\u897f\u5317\u6e56\u58f9\u53f7\u5fa1\u73ba\u6e7e"
            ]
        }
    ],
    "title": [
        {
            "show": true,
            "text": "\u6b66\u6c49\u5404\u5c0f\u533a\u4e8c\u624b\u623f\u623f\u4ef7TOP10",
            "target": "blank",
            "subtarget": "blank",
            "padding": 5,
            "itemGap": 10,
            "textAlign": "auto",
            "textVerticalAlign": "auto",
            "triggerEvent": false
        }
    ]
};
        chart_75379e6d5dd245edb0df0f9e3963849a.setOption(option_75379e6d5dd245edb0df0f9e3963849a);
    </script>
<br/>                <div id="3914dd802e17484cb32e1013f7305d40" class="chart-container" style="width:800px; height:600px; "></div>
    <script>
        var chart_3914dd802e17484cb32e1013f7305d40 = echarts.init(
            document.getElementById('3914dd802e17484cb32e1013f7305d40'), 'white', {renderer: 'canvas'});
        var option_3914dd802e17484cb32e1013f7305d40 = {
    "backgroundColor": "white",
    "animation": true,
    "animationThreshold": 2000,
    "animationDuration": 1000,
    "animationEasing": "cubicOut",
    "animationDelay": 0,
    "animationDurationUpdate": 300,
    "animationEasingUpdate": "cubicOut",
    "animationDelayUpdate": 0,
    "aria": {
        "enabled": false
    },
    "color": [
        "#5470c6",
        "#91cc75",
        "#fac858",
        "#ee6666",
        "#73c0de",
        "#3ba272",
        "#fc8452",
        "#9a60b4",
        "#ea7ccc"
    ],
    "series": [
        {
            "type": "pie",
            "name": "pie",
            "colorBy": "data",
            "legendHoverLink": true,
            "selectedMode": false,
            "selectedOffset": 10,
            "clockwise": true,
            "startAngle": 90,
            "minAngle": 0,
            "minShowLabelAngle": 0,
            "avoidLabelOverlap": true,
            "stillShowZeroSum": true,
            "percentPrecision": 2,
            "showEmptyCircle": true,
            "emptyCircleStyle": {
                "color": "lightgray",
                "borderColor": "#000",
                "borderWidth": 0,
                "borderType": "solid",
                "borderDashOffset": 0,
                "borderCap": "butt",
                "borderJoin": "bevel",
                "borderMiterLimit": 10,
                "opacity": 1
            },
            "data": [
                {
                    "name": "1992\u5e74\u5efa\u9020",
                    "value": 1
                },
                {
                    "name": "1995\u5e74\u5efa\u9020",
                    "value": 5
                },
                {
                    "name": "1996\u5e74\u5efa\u9020",
                    "value": 2
                },
                {
                    "name": "1997\u5e74\u5efa\u9020",
                    "value": 2
                },
                {
                    "name": "1998\u5e74\u5efa\u9020",
                    "value": 4
                },
                {
                    "name": "1999\u5e74\u5efa\u9020",
                    "value": 3
                },
                {
                    "name": "2000\u5e74\u5efa\u9020",
                    "value": 6
                },
                {
                    "name": "2001\u5e74\u5efa\u9020",
                    "value": 2
                },
                {
                    "name": "2002\u5e74\u5efa\u9020",
                    "value": 2
                },
                {
                    "name": "2003\u5e74\u5efa\u9020",
                    "value": 6
                },
                {
                    "name": "2004\u5e74\u5efa\u9020",
                    "value": 5
                },
                {
                    "name": "2005\u5e74\u5efa\u9020",
                    "value": 17
                },
                {
                    "name": "2006\u5e74\u5efa\u9020",
                    "value": 13
                },
                {
                    "name": "2007\u5e74\u5efa\u9020",
                    "value": 5
                },
                {
                    "name": "2008\u5e74\u5efa\u9020",
                    "value": 9
                },
                {
                    "name": "2009\u5e74\u5efa\u9020",
                    "value": 2
                },
                {
                    "name": "2010\u5e74\u5efa\u9020",
                    "value": 11
                },
                {
                    "name": "2011\u5e74\u5efa\u9020",
                    "value": 24
                },
                {
                    "name": "2012\u5e74\u5efa\u9020",
                    "value": 3
                },
                {
                    "name": "2013\u5e74\u5efa\u9020",
                    "value": 10
                },
                {
                    "name": "2014\u5e74\u5efa\u9020",
                    "value": 2
                },
                {
                    "name": "2015\u5e74\u5efa\u9020",
                    "value": 12
                },
                {
                    "name": "2016\u5e74\u5efa\u9020",
                    "value": 10
                },
                {
                    "name": "2017\u5e74\u5efa\u9020",
                    "value": 22
                },
                {
                    "name": "2018\u5e74\u5efa\u9020",
                    "value": 10
                },
                {
                    "name": "2019\u5e74\u5efa\u9020",
                    "value": 53
                },
                {
                    "name": "2020\u5e74\u5efa\u9020",
                    "value": 4
                },
                {
                    "name": "2021\u5e74\u5efa\u9020",
                    "value": 3
                },
                {
                    "name": "2023\u5e74\u5efa\u9020",
                    "value": 1
                }
            ],
            "radius": [
                "40%",
                "60%"
            ],
            "center": [
                "50%",
                "50%"
            ],
            "label": {
                "show": true,
                "position": "outside",
                "margin": 8,
                "formatter": "{b}:{c}:{d}%"
            },
            "labelLine": {
                "show": true,
                "showAbove": false,
                "length": 15,
                "length2": 15,
                "smooth": false,
                "minTurnAngle": 90,
                "maxSurfaceAngle": 90
            }
        }
    ],
    "legend": [
        {
            "data": [
                "1992\u5e74\u5efa\u9020",
                "1995\u5e74\u5efa\u9020",
                "1996\u5e74\u5efa\u9020",
                "1997\u5e74\u5efa\u9020",
                "1998\u5e74\u5efa\u9020",
                "1999\u5e74\u5efa\u9020",
                "2000\u5e74\u5efa\u9020",
                "2001\u5e74\u5efa\u9020",
                "2002\u5e74\u5efa\u9020",
                "2003\u5e74\u5efa\u9020",
                "2004\u5e74\u5efa\u9020",
                "2005\u5e74\u5efa\u9020",
                "2006\u5e74\u5efa\u9020",
                "2007\u5e74\u5efa\u9020",
                "2008\u5e74\u5efa\u9020",
                "2009\u5e74\u5efa\u9020",
                "2010\u5e74\u5efa\u9020",
                "2011\u5e74\u5efa\u9020",
                "2012\u5e74\u5efa\u9020",
                "2013\u5e74\u5efa\u9020",
                "2014\u5e74\u5efa\u9020",
                "2015\u5e74\u5efa\u9020",
                "2016\u5e74\u5efa\u9020",
                "2017\u5e74\u5efa\u9020",
                "2018\u5e74\u5efa\u9020",
                "2019\u5e74\u5efa\u9020",
                "2020\u5e74\u5efa\u9020",
                "2021\u5e74\u5efa\u9020",
                "2023\u5e74\u5efa\u9020"
            ],
            "selected": {},
            "show": false,
            "padding": 5,
            "itemGap": 10,
            "itemWidth": 25,
            "itemHeight": 14,
            "backgroundColor": "transparent",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "borderRadius": 0,
            "pageButtonItemGap": 5,
            "pageButtonPosition": "end",
            "pageFormatter": "{current}/{total}",
            "pageIconColor": "#2f4554",
            "pageIconInactiveColor": "#aaa",
            "pageIconSize": 15,
            "animationDurationUpdate": 800,
            "selector": false,
            "selectorPosition": "auto",
            "selectorItemGap": 7,
            "selectorButtonGap": 10
        }
    ],
    "tooltip": {
        "show": true,
        "trigger": "item",
        "triggerOn": "mousemove|click",
        "axisPointer": {
            "type": "line"
        },
        "showContent": true,
        "alwaysShowContent": false,
        "showDelay": 0,
        "hideDelay": 100,
        "enterable": false,
        "confine": false,
        "appendToBody": false,
        "transitionDuration": 0.4,
        "textStyle": {
            "fontSize": 14
        },
        "borderWidth": 0,
        "padding": 5,
        "order": "seriesAsc"
    },
    "title": [
        {
            "show": true,
            "text": "\u6b66\u6c49\u4e8c\u624b\u623f\u4e0d\u540c\u5efa\u7b51\u5e74\u4efd\u7684\u5f85\u552e\u6570\u91cf",
            "target": "blank",
            "subtarget": "blank",
            "left": "300",
            "top": "20",
            "padding": 5,
            "itemGap": 10,
            "textAlign": "auto",
            "textVerticalAlign": "auto",
            "triggerEvent": false,
            "textStyle": {
                "color": "black",
                "fontSize": 16
            }
        }
    ]
};
        chart_3914dd802e17484cb32e1013f7305d40.setOption(option_3914dd802e17484cb32e1013f7305d40);
    </script>
<br/>                <div id="638df3547b2541d4a04be6281ac41627" class="chart-container" style="width:900px; height:500px; "></div>
    <script>
        var chart_638df3547b2541d4a04be6281ac41627 = echarts.init(
            document.getElementById('638df3547b2541d4a04be6281ac41627'), 'white', {renderer: 'canvas'});
        var option_638df3547b2541d4a04be6281ac41627 = {
    "animation": true,
    "animationThreshold": 2000,
    "animationDuration": 1000,
    "animationEasing": "cubicOut",
    "animationDelay": 0,
    "animationDurationUpdate": 300,
    "animationEasingUpdate": "cubicOut",
    "animationDelayUpdate": 0,
    "aria": {
        "enabled": false
    },
    "color": [
        "#5470c6",
        "#91cc75",
        "#fac858",
        "#ee6666",
        "#73c0de",
        "#3ba272",
        "#fc8452",
        "#9a60b4",
        "#ea7ccc"
    ],
    "series": [
        {
            "type": "bar",
            "name": "\u4ef7\u683c\u5206\u5e03",
            "legendHoverLink": true,
            "data": [
                1.0,
                1.0,
                5.0,
                3.0,
                2.0,
                4.0,
                0.0,
                5.0,
                2.0,
                4.0,
                6.0,
                11.0,
                11.0,
                10.0,
                10.0,
                8.0,
                13.0,
                7.0,
                12.0,
                11.0,
                13.0,
                14.0,
                14.0,
                24.0,
                10.0,
                10.0,
                11.0,
                8.0,
                10.0,
                6.0,
                7.0,
                5.0,
                3.0,
                8.0,
                3.0,
                5.0,
                2.0,
                3.0,
                2.0,
                3.0,
                2.0,
                1.0,
                4.0,
                3.0,
                2.0,
                1.0,
                3.0,
                2.0,
                2.0,
                2.0,
                1.0,
                1.0,
                3.0,
                1.0,
                0.0,
                1.0,
                1.0,
                1.0,
                1.0,
                0.0,
                0.0,
                0.0,
                1.0,
                0.0,
                1.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                1.0,
                2.0,
                0.0,
                2.0,
                2.0,
                0.0,
                0.0,
                1.0,
                0.0,
                0.0,
                0.0,
                1.0,
                0.0,
                1.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                1.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                1.0,
                1.0
            ],
            "realtimeSort": false,
            "showBackground": false,
            "stackStrategy": "samesign",
            "cursor": "pointer",
            "barMinHeight": 0,
            "barCategoryGap": 0,
            "barGap": "30%",
            "large": false,
            "largeThreshold": 400,
            "seriesLayoutBy": "column",
            "datasetIndex": 0,
            "clip": true,
            "zlevel": 0,
            "z": 2,
            "label": {
                "show": true,
                "margin": 8
            }
        }
    ],
    "legend": [
        {
            "data": [
                "\u4ef7\u683c\u5206\u5e03"
            ],
            "selected": {},
            "show": false,
            "padding": 5,
            "itemGap": 10,
            "itemWidth": 25,
            "itemHeight": 14,
            "backgroundColor": "transparent",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "borderRadius": 0,
            "pageButtonItemGap": 5,
            "pageButtonPosition": "end",
            "pageFormatter": "{current}/{total}",
            "pageIconColor": "#2f4554",
            "pageIconInactiveColor": "#aaa",
            "pageIconSize": 15,
            "animationDurationUpdate": 800,
            "selector": false,
            "selectorPosition": "auto",
            "selectorItemGap": 7,
            "selectorButtonGap": 10
        }
    ],
    "tooltip": {
        "show": true,
        "trigger": "item",
        "triggerOn": "mousemove|click",
        "axisPointer": {
            "type": "line"
        },
        "showContent": true,
        "alwaysShowContent": false,
        "showDelay": 0,
        "hideDelay": 100,
        "enterable": false,
        "confine": false,
        "appendToBody": false,
        "transitionDuration": 0.4,
        "textStyle": {
            "fontSize": 14
        },
        "borderWidth": 0,
        "padding": 5,
        "order": "seriesAsc"
    },
    "xAxis": [
        {
            "show": true,
            "scale": false,
            "nameLocation": "end",
            "nameGap": 15,
            "gridIndex": 0,
            "inverse": false,
            "offset": 0,
            "splitNumber": 5,
            "minInterval": 0,
            "splitLine": {
                "show": true,
                "lineStyle": {
                    "show": true,
                    "width": 1,
                    "opacity": 1,
                    "curveness": 0,
                    "type": "solid"
                }
            },
            "data": [
                "10000.0",
                "10332.44",
                "10664.88",
                "10997.32",
                "11329.76",
                "11662.2",
                "11994.64",
                "12327.08",
                "12659.52",
                "12991.96",
                "13324.4",
                "13656.84",
                "13989.279999999999",
                "14321.720000000001",
                "14654.16",
                "14986.6",
                "15319.04",
                "15651.48",
                "15983.92",
                "16316.36",
                "16648.8",
                "16981.239999999998",
                "17313.68",
                "17646.12",
                "17978.559999999998",
                "18311.0",
                "18643.440000000002",
                "18975.879999999997",
                "19308.32",
                "19640.760000000002",
                "19973.2",
                "20305.64",
                "20638.08",
                "20970.52",
                "21302.96",
                "21635.4",
                "21967.84",
                "22300.28",
                "22632.72",
                "22965.16",
                "23297.6",
                "23630.04",
                "23962.48",
                "24294.92",
                "24627.36",
                "24959.8",
                "25292.239999999998",
                "25624.68",
                "25957.12",
                "26289.559999999998",
                "26622.0",
                "26954.44",
                "27286.88",
                "27619.32",
                "27951.76",
                "28284.2",
                "28616.64",
                "28949.079999999998",
                "29281.52",
                "29613.96",
                "29946.4",
                "30278.84",
                "30611.28",
                "30943.72",
                "31276.16",
                "31608.6",
                "31941.04",
                "32273.48",
                "32605.92",
                "32938.36",
                "33270.8",
                "33603.240000000005",
                "33935.68",
                "34268.119999999995",
                "34600.56",
                "34933.0",
                "35265.44",
                "35597.880000000005",
                "35930.32",
                "36262.759999999995",
                "36595.2",
                "36927.64",
                "37260.08",
                "37592.520000000004",
                "37924.96",
                "38257.4",
                "38589.84",
                "38922.28",
                "39254.72",
                "39587.16",
                "39919.6",
                "40252.04",
                "40584.479999999996",
                "40916.92",
                "41249.36",
                "41581.8",
                "41914.24",
                "42246.68",
                "42579.119999999995",
                "42911.56"
            ]
        }
    ],
    "yAxis": [
        {
            "show": true,
            "scale": false,
            "nameLocation": "end",
            "nameGap": 15,
            "gridIndex": 0,
            "inverse": false,
            "offset": 0,
            "splitNumber": 5,
            "minInterval": 0,
            "splitLine": {
                "show": true,
                "lineStyle": {
                    "show": true,
                    "width": 1,
                    "opacity": 1,
                    "curveness": 0,
                    "type": "solid"
                }
            }
        }
    ],
    "title": [
        {
            "show": true,
            "text": "\u6b66\u6c49\u4e8c\u624b\u623f\u623f\u4ef7-\u5355\u4ef7\u5206\u5e03-\u76f4\u65b9\u56fe",
            "target": "blank",
            "subtarget": "blank",
            "left": "center",
            "padding": 5,
            "itemGap": 10,
            "textAlign": "auto",
            "textVerticalAlign": "auto",
            "triggerEvent": false
        }
    ]
};
        chart_638df3547b2541d4a04be6281ac41627.setOption(option_638df3547b2541d4a04be6281ac41627);
    </script>
<br/>                <div id="f38908fc9c6e4a2d90ff1e538122ad22" class="chart-container" style="width:900px; height:500px; "></div>
    <script>
        var chart_f38908fc9c6e4a2d90ff1e538122ad22 = echarts.init(
            document.getElementById('f38908fc9c6e4a2d90ff1e538122ad22'), 'white', {renderer: 'canvas'});
        var option_f38908fc9c6e4a2d90ff1e538122ad22 = {
    "animation": true,
    "animationThreshold": 2000,
    "animationDuration": 1000,
    "animationEasing": "cubicOut",
    "animationDelay": 0,
    "animationDurationUpdate": 300,
    "animationEasingUpdate": "cubicOut",
    "animationDelayUpdate": 0,
    "aria": {
        "enabled": false
    },
    "color": [
        "#5470c6",
        "#91cc75",
        "#fac858",
        "#ee6666",
        "#73c0de",
        "#3ba272",
        "#fc8452",
        "#9a60b4",
        "#ea7ccc"
    ],
    "series": [
        {
            "type": "bar",
            "name": "\u4ef7\u683c\u5206\u5e03",
            "legendHoverLink": true,
            "data": [
                4.0,
                8.0,
                10.0,
                9.0,
                33.0,
                19.0,
                16.0,
                41.0,
                45.0,
                35.0,
                21.0,
                19.0,
                7.0,
                15.0,
                15.0,
                4.0,
                4.0,
                3.0,
                5.0,
                4.0,
                4.0,
                2.0,
                1.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                2.0,
                0.0,
                1.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                1.0,
                0.0,
                0.0,
                0.0,
                2.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                1.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                1.0,
                0.0,
                0.0,
                1.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                0.0,
                1.0
            ],
            "realtimeSort": false,
            "showBackground": false,
            "stackStrategy": "samesign",
            "cursor": "pointer",
            "barMinHeight": 0,
            "barCategoryGap": 0,
            "barGap": "30%",
            "large": false,
            "largeThreshold": 400,
            "seriesLayoutBy": "column",
            "datasetIndex": 0,
            "clip": true,
            "zlevel": 0,
            "z": 2,
            "label": {
                "show": true,
                "margin": 8
            }
        }
    ],
    "legend": [
        {
            "data": [
                "\u4ef7\u683c\u5206\u5e03"
            ],
            "selected": {},
            "show": false,
            "padding": 5,
            "itemGap": 10,
            "itemWidth": 25,
            "itemHeight": 14,
            "backgroundColor": "transparent",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "borderRadius": 0,
            "pageButtonItemGap": 5,
            "pageButtonPosition": "end",
            "pageFormatter": "{current}/{total}",
            "pageIconColor": "#2f4554",
            "pageIconInactiveColor": "#aaa",
            "pageIconSize": 15,
            "animationDurationUpdate": 800,
            "selector": false,
            "selectorPosition": "auto",
            "selectorItemGap": 7,
            "selectorButtonGap": 10
        }
    ],
    "tooltip": {
        "show": true,
        "trigger": "item",
        "triggerOn": "mousemove|click",
        "axisPointer": {
            "type": "line"
        },
        "showContent": true,
        "alwaysShowContent": false,
        "showDelay": 0,
        "hideDelay": 100,
        "enterable": false,
        "confine": false,
        "appendToBody": false,
        "transitionDuration": 0.4,
        "textStyle": {
            "fontSize": 14
        },
        "borderWidth": 0,
        "padding": 5,
        "order": "seriesAsc"
    },
    "xAxis": [
        {
            "show": true,
            "scale": false,
            "nameLocation": "end",
            "nameGap": 15,
            "gridIndex": 0,
            "inverse": false,
            "offset": 0,
            "splitNumber": 5,
            "minInterval": 0,
            "splitLine": {
                "show": true,
                "lineStyle": {
                    "show": true,
                    "width": 1,
                    "opacity": 1,
                    "curveness": 0,
                    "type": "solid"
                }
            },
            "data": [
                "55.0",
                "68.05",
                "81.1",
                "94.15",
                "107.2",
                "120.25",
                "133.3",
                "146.35000000000002",
                "159.4",
                "172.45",
                "185.5",
                "198.55",
                "211.60000000000002",
                "224.65",
                "237.70000000000002",
                "250.75",
                "263.8",
                "276.85",
                "289.9",
                "302.95000000000005",
                "316.0",
                "329.05",
                "342.1",
                "355.15000000000003",
                "368.20000000000005",
                "381.25",
                "394.3",
                "407.35",
                "420.40000000000003",
                "433.45000000000005",
                "446.5",
                "459.55",
                "472.6",
                "485.65000000000003",
                "498.70000000000005",
                "511.75",
                "524.8",
                "537.85",
                "550.9000000000001",
                "563.95",
                "577.0",
                "590.0500000000001",
                "603.1",
                "616.15",
                "629.2",
                "642.25",
                "655.3000000000001",
                "668.35",
                "681.4000000000001",
                "694.45",
                "707.5",
                "720.5500000000001",
                "733.6",
                "746.6500000000001",
                "759.7",
                "772.75",
                "785.8000000000001",
                "798.85",
                "811.9000000000001",
                "824.95",
                "838.0",
                "851.0500000000001",
                "864.1",
                "877.1500000000001",
                "890.2",
                "903.25",
                "916.3000000000001",
                "929.35",
                "942.4000000000001",
                "955.45",
                "968.5",
                "981.5500000000001",
                "994.6",
                "1007.6500000000001",
                "1020.7",
                "1033.75",
                "1046.8000000000002",
                "1059.85",
                "1072.9",
                "1085.95",
                "1099.0",
                "1112.05",
                "1125.1000000000001",
                "1138.15",
                "1151.2",
                "1164.25",
                "1177.3",
                "1190.3500000000001",
                "1203.4",
                "1216.45",
                "1229.5",
                "1242.55",
                "1255.6000000000001",
                "1268.65",
                "1281.7",
                "1294.75",
                "1307.8000000000002",
                "1320.8500000000001",
                "1333.9",
                "1346.95"
            ]
        }
    ],
    "yAxis": [
        {
            "show": true,
            "scale": false,
            "nameLocation": "end",
            "nameGap": 15,
            "gridIndex": 0,
            "inverse": false,
            "offset": 0,
            "splitNumber": 5,
            "minInterval": 0,
            "splitLine": {
                "show": true,
                "lineStyle": {
                    "show": true,
                    "width": 1,
                    "opacity": 1,
                    "curveness": 0,
                    "type": "solid"
                }
            }
        }
    ],
    "title": [
        {
            "show": true,
            "text": "\u6b66\u6c49\u4e8c\u624b\u623f\u623f\u4ef7-\u603b\u4ef7\u5206\u5e03-\u76f4\u65b9\u56fe",
            "target": "blank",
            "subtarget": "blank",
            "left": "center",
            "padding": 5,
            "itemGap": 10,
            "textAlign": "auto",
            "textVerticalAlign": "auto",
            "triggerEvent": false
        }
    ]
};
        chart_f38908fc9c6e4a2d90ff1e538122ad22.setOption(option_f38908fc9c6e4a2d90ff1e538122ad22);
    </script>
<br/>                <div id="5d28d7c693a34e46af8b33f0f224c0b1" class="chart-container" style="width:900px; height:500px; "></div>
    <script>
        var chart_5d28d7c693a34e46af8b33f0f224c0b1 = echarts.init(
            document.getElementById('5d28d7c693a34e46af8b33f0f224c0b1'), 'white', {renderer: 'canvas'});
        var option_5d28d7c693a34e46af8b33f0f224c0b1 = {
    "animation": true,
    "animationThreshold": 2000,
    "animationDuration": 1000,
    "animationEasing": "cubicOut",
    "animationDelay": 0,
    "animationDurationUpdate": 300,
    "animationEasingUpdate": "cubicOut",
    "animationDelayUpdate": 0,
    "aria": {
        "enabled": false
    },
    "color": [
        "#5470c6",
        "#91cc75",
        "#fac858",
        "#ee6666",
        "#73c0de",
        "#3ba272",
        "#fc8452",
        "#9a60b4",
        "#ea7ccc"
    ],
    "series": [
        {
            "type": "scatter",
            "symbolSize": 4,
            "data": [
                [
                    35.5,
                    18592
                ],
                [
                    41.0,
                    18537
                ],
                [
                    41.5,
                    13254
                ],
                [
                    43.0,
                    19070
                ],
                [
                    43.81,
                    19174
                ],
                [
                    43.81,
                    20087
                ],
                [
                    44.24,
                    18310
                ],
                [
                    47.0,
                    18086
                ],
                [
                    47.14,
                    14850
                ],
                [
                    47.14,
                    14850
                ],
                [
                    47.25,
                    15239
                ],
                [
                    50.0,
                    15840
                ],
                [
                    50.62,
                    23311
                ],
                [
                    50.76,
                    10836
                ],
                [
                    52.55,
                    28354
                ],
                [
                    53.21,
                    27815
                ],
                [
                    56.45,
                    16298
                ],
                [
                    57.22,
                    11360
                ],
                [
                    58.15,
                    13001
                ],
                [
                    59.39,
                    12461
                ],
                [
                    60.76,
                    21890
                ],
                [
                    60.81,
                    13978
                ],
                [
                    61.35,
                    14833
                ],
                [
                    61.61,
                    17530
                ],
                [
                    61.77,
                    21856
                ],
                [
                    62.6,
                    15336
                ],
                [
                    62.71,
                    13395
                ],
                [
                    63.25,
                    18973
                ],
                [
                    64.66,
                    18559
                ],
                [
                    65.0,
                    14616
                ],
                [
                    66.54,
                    20890
                ],
                [
                    67.33,
                    16041
                ],
                [
                    68.47,
                    16796
                ],
                [
                    69.05,
                    21724
                ],
                [
                    69.13,
                    16780
                ],
                [
                    69.42,
                    19447
                ],
                [
                    70.5,
                    15178
                ],
                [
                    70.54,
                    14177
                ],
                [
                    70.91,
                    22987
                ],
                [
                    70.91,
                    21436
                ],
                [
                    71.0,
                    15493
                ],
                [
                    71.28,
                    14871
                ],
                [
                    71.39,
                    17510
                ],
                [
                    71.75,
                    15053
                ],
                [
                    71.95,
                    16679
                ],
                [
                    72.55,
                    15989
                ],
                [
                    72.67,
                    17064
                ],
                [
                    73.0,
                    15069
                ],
                [
                    73.0,
                    13425
                ],
                [
                    74.0,
                    20000
                ],
                [
                    74.64,
                    17283
                ],
                [
                    74.64,
                    17819
                ],
                [
                    74.64,
                    17819
                ],
                [
                    74.85,
                    15765
                ],
                [
                    75.0,
                    20000
                ],
                [
                    75.57,
                    14557
                ],
                [
                    75.6,
                    19709
                ],
                [
                    75.9,
                    25297
                ],
                [
                    77.25,
                    15923
                ],
                [
                    77.37,
                    14218
                ],
                [
                    77.44,
                    15496
                ],
                [
                    77.95,
                    17319
                ],
                [
                    78.07,
                    13834
                ],
                [
                    78.1,
                    15365
                ],
                [
                    78.21,
                    15190
                ],
                [
                    78.49,
                    16308
                ],
                [
                    78.57,
                    16292
                ],
                [
                    79.11,
                    12641
                ],
                [
                    79.11,
                    15801
                ],
                [
                    79.7,
                    10665
                ],
                [
                    79.93,
                    19392
                ],
                [
                    80.28,
                    16817
                ],
                [
                    80.33,
                    14067
                ],
                [
                    80.37,
                    17793
                ],
                [
                    80.54,
                    17631
                ],
                [
                    80.82,
                    13611
                ],
                [
                    80.82,
                    14230
                ],
                [
                    81.0,
                    16050
                ],
                [
                    81.66,
                    19594
                ],
                [
                    81.66,
                    17022
                ],
                [
                    81.77,
                    24826
                ],
                [
                    81.97,
                    18910
                ],
                [
                    82.05,
                    15601
                ],
                [
                    82.68,
                    20320
                ],
                [
                    82.79,
                    10630
                ],
                [
                    83.29,
                    21131
                ],
                [
                    83.29,
                    18850
                ],
                [
                    83.47,
                    24560
                ],
                [
                    83.51,
                    18920
                ],
                [
                    83.51,
                    21435
                ],
                [
                    83.51,
                    20357
                ],
                [
                    83.95,
                    17868
                ],
                [
                    84.0,
                    22024
                ],
                [
                    85.0,
                    13765
                ],
                [
                    85.38,
                    27525
                ],
                [
                    85.46,
                    16733
                ],
                [
                    85.99,
                    22096
                ],
                [
                    85.99,
                    24422
                ],
                [
                    86.24,
                    24351
                ],
                [
                    86.28,
                    20283
                ],
                [
                    86.31,
                    15989
                ],
                [
                    86.4,
                    22801
                ],
                [
                    86.54,
                    11903
                ],
                [
                    86.77,
                    29043
                ],
                [
                    86.83,
                    21882
                ],
                [
                    87.28,
                    24061
                ],
                [
                    87.31,
                    13401
                ],
                [
                    87.6,
                    14727
                ],
                [
                    87.6,
                    13357
                ],
                [
                    88.28,
                    18111
                ],
                [
                    88.28,
                    18125
                ],
                [
                    88.31,
                    19591
                ],
                [
                    88.44,
                    12438
                ],
                [
                    89.0,
                    11236
                ],
                [
                    89.0,
                    33708
                ],
                [
                    89.06,
                    17404
                ],
                [
                    89.06,
                    17741
                ],
                [
                    89.16,
                    25236
                ],
                [
                    89.16,
                    25797
                ],
                [
                    89.33,
                    16792
                ],
                [
                    89.37,
                    12533
                ],
                [
                    89.38,
                    20139
                ],
                [
                    89.39,
                    19018
                ],
                [
                    89.46,
                    33311
                ],
                [
                    89.6,
                    34822
                ],
                [
                    89.78,
                    17822
                ],
                [
                    89.85,
                    17697
                ],
                [
                    89.87,
                    18694
                ],
                [
                    89.87,
                    19473
                ],
                [
                    89.87,
                    17693
                ],
                [
                    89.96,
                    16452
                ],
                [
                    90.04,
                    14439
                ],
                [
                    90.18,
                    15525
                ],
                [
                    90.2,
                    18626
                ],
                [
                    90.2,
                    17517
                ],
                [
                    90.39,
                    25999
                ],
                [
                    90.41,
                    17698
                ],
                [
                    90.41,
                    17698
                ],
                [
                    90.54,
                    14359
                ],
                [
                    90.59,
                    17883
                ],
                [
                    90.74,
                    17413
                ],
                [
                    90.74,
                    30858
                ],
                [
                    90.83,
                    18276
                ],
                [
                    90.87,
                    18709
                ],
                [
                    90.91,
                    17050
                ],
                [
                    91.0,
                    17363
                ],
                [
                    91.02,
                    17030
                ],
                [
                    91.02,
                    16810
                ],
                [
                    91.31,
                    17839
                ],
                [
                    91.56,
                    17475
                ],
                [
                    91.61,
                    17357
                ],
                [
                    91.74,
                    16885
                ],
                [
                    91.74,
                    17550
                ],
                [
                    91.74,
                    16547
                ],
                [
                    91.74,
                    17986
                ],
                [
                    91.85,
                    17747
                ],
                [
                    91.91,
                    19041
                ],
                [
                    91.91,
                    16538
                ],
                [
                    91.91,
                    16538
                ],
                [
                    92.0,
                    12500
                ],
                [
                    92.2,
                    20066
                ],
                [
                    92.33,
                    17871
                ],
                [
                    92.82,
                    19393
                ],
                [
                    92.82,
                    19393
                ],
                [
                    92.88,
                    17227
                ],
                [
                    92.95,
                    13449
                ],
                [
                    93.0,
                    21076
                ],
                [
                    93.18,
                    19425
                ],
                [
                    93.25,
                    23057
                ],
                [
                    93.94,
                    20013
                ],
                [
                    94.0,
                    37022
                ],
                [
                    94.0,
                    18724
                ],
                [
                    94.53,
                    16397
                ],
                [
                    94.53,
                    18196
                ],
                [
                    94.59,
                    17761
                ],
                [
                    95.0,
                    16632
                ],
                [
                    95.0,
                    19790
                ],
                [
                    95.1,
                    17351
                ],
                [
                    95.31,
                    11437
                ],
                [
                    95.72,
                    19850
                ],
                [
                    95.98,
                    19796
                ],
                [
                    96.0,
                    27084
                ],
                [
                    96.02,
                    24891
                ],
                [
                    96.28,
                    34899
                ],
                [
                    96.41,
                    14522
                ],
                [
                    96.51,
                    21035
                ],
                [
                    96.53,
                    14297
                ],
                [
                    96.57,
                    17190
                ],
                [
                    96.57,
                    15844
                ],
                [
                    97.06,
                    17309
                ],
                [
                    97.17,
                    17290
                ],
                [
                    97.55,
                    16402
                ],
                [
                    97.66,
                    18329
                ],
                [
                    97.66,
                    15565
                ],
                [
                    97.66,
                    16589
                ],
                [
                    97.66,
                    18432
                ],
                [
                    98.09,
                    15496
                ],
                [
                    98.09,
                    15089
                ],
                [
                    98.24,
                    14455
                ],
                [
                    98.3,
                    11801
                ],
                [
                    98.43,
                    21132
                ],
                [
                    98.44,
                    18286
                ],
                [
                    98.61,
                    15212
                ],
                [
                    98.63,
                    14905
                ],
                [
                    98.9,
                    24267
                ],
                [
                    99.0,
                    12829
                ],
                [
                    99.0,
                    14243
                ],
                [
                    99.26,
                    16825
                ],
                [
                    100.0,
                    18500
                ],
                [
                    100.19,
                    31341
                ],
                [
                    100.24,
                    16860
                ],
                [
                    100.55,
                    17902
                ],
                [
                    100.77,
                    23817
                ],
                [
                    101.5,
                    19015
                ],
                [
                    102.0,
                    19510
                ],
                [
                    102.04,
                    11173
                ],
                [
                    102.06,
                    10974
                ],
                [
                    102.37,
                    18561
                ],
                [
                    102.48,
                    14638
                ],
                [
                    102.58,
                    22422
                ],
                [
                    103.24,
                    15498
                ],
                [
                    103.27,
                    17527
                ],
                [
                    103.57,
                    23173
                ],
                [
                    103.75,
                    18892
                ],
                [
                    104.66,
                    17963
                ],
                [
                    104.99,
                    21907
                ],
                [
                    105.0,
                    17048
                ],
                [
                    105.58,
                    15439
                ],
                [
                    106.0,
                    18868
                ],
                [
                    106.0,
                    16038
                ],
                [
                    106.04,
                    17824
                ],
                [
                    107.0,
                    21029
                ],
                [
                    107.16,
                    17918
                ],
                [
                    107.3,
                    11930
                ],
                [
                    107.58,
                    16267
                ],
                [
                    107.69,
                    11886
                ],
                [
                    108.0,
                    21019
                ],
                [
                    108.0,
                    22963
                ],
                [
                    108.0,
                    21297
                ],
                [
                    108.59,
                    17313
                ],
                [
                    108.59,
                    17958
                ],
                [
                    109.32,
                    16009
                ],
                [
                    109.78,
                    12935
                ],
                [
                    110.0,
                    10000
                ],
                [
                    110.0,
                    18546
                ],
                [
                    110.3,
                    14053
                ],
                [
                    110.56,
                    15829
                ],
                [
                    111.31,
                    20484
                ],
                [
                    111.69,
                    18444
                ],
                [
                    112.0,
                    18215
                ],
                [
                    112.42,
                    16635
                ],
                [
                    112.47,
                    14671
                ],
                [
                    112.9,
                    15501
                ],
                [
                    113.04,
                    23444
                ],
                [
                    113.18,
                    15463
                ],
                [
                    114.0,
                    20965
                ],
                [
                    115.01,
                    18781
                ],
                [
                    115.43,
                    24258
                ],
                [
                    115.49,
                    20782
                ],
                [
                    115.79,
                    17964
                ],
                [
                    116.0,
                    21035
                ],
                [
                    116.81,
                    13869
                ],
                [
                    116.81,
                    28680
                ],
                [
                    117.0,
                    14018
                ],
                [
                    117.11,
                    26301
                ],
                [
                    117.26,
                    26864
                ],
                [
                    117.32,
                    13860
                ],
                [
                    117.41,
                    16864
                ],
                [
                    117.59,
                    25513
                ],
                [
                    117.84,
                    27580
                ],
                [
                    117.98,
                    25429
                ],
                [
                    118.04,
                    17113
                ],
                [
                    119.34,
                    19273
                ],
                [
                    120.0,
                    15000
                ],
                [
                    120.0,
                    16084
                ],
                [
                    120.47,
                    19756
                ],
                [
                    120.47,
                    19092
                ],
                [
                    120.59,
                    20566
                ],
                [
                    120.7,
                    13671
                ],
                [
                    120.88,
                    14064
                ],
                [
                    120.99,
                    17771
                ],
                [
                    121.42,
                    14001
                ],
                [
                    121.56,
                    26325
                ],
                [
                    121.8,
                    22578
                ],
                [
                    121.8,
                    22578
                ],
                [
                    121.83,
                    14365
                ],
                [
                    122.0,
                    26230
                ],
                [
                    122.22,
                    13910
                ],
                [
                    122.22,
                    14973
                ],
                [
                    122.46,
                    17149
                ],
                [
                    122.54,
                    17954
                ],
                [
                    123.0,
                    14228
                ],
                [
                    123.16,
                    24197
                ],
                [
                    123.72,
                    25865
                ],
                [
                    123.81,
                    20597
                ],
                [
                    124.09,
                    13684
                ],
                [
                    124.44,
                    16555
                ],
                [
                    125.02,
                    14398
                ],
                [
                    125.2,
                    19010
                ],
                [
                    125.77,
                    34587
                ],
                [
                    126.5,
                    18973
                ],
                [
                    126.66,
                    19344
                ],
                [
                    127.0,
                    14410
                ],
                [
                    127.87,
                    17440
                ],
                [
                    128.99,
                    17676
                ],
                [
                    129.05,
                    15498
                ],
                [
                    129.63,
                    13732
                ],
                [
                    131.79,
                    14797
                ],
                [
                    132.01,
                    16666
                ],
                [
                    132.72,
                    13940
                ],
                [
                    132.72,
                    13940
                ],
                [
                    132.83,
                    13251
                ],
                [
                    134.43,
                    21424
                ],
                [
                    135.42,
                    19791
                ],
                [
                    135.51,
                    15866
                ],
                [
                    136.77,
                    16451
                ],
                [
                    137.55,
                    10906
                ],
                [
                    138.9,
                    14903
                ],
                [
                    141.47,
                    11310
                ],
                [
                    141.64,
                    18216
                ],
                [
                    144.09,
                    10966
                ],
                [
                    144.26,
                    16984
                ],
                [
                    144.62,
                    16665
                ],
                [
                    145.89,
                    16109
                ],
                [
                    158.45,
                    29537
                ],
                [
                    160.98,
                    13046
                ],
                [
                    162.0,
                    34568
                ],
                [
                    162.4,
                    27402
                ],
                [
                    171.01,
                    35671
                ],
                [
                    182.32,
                    33787
                ],
                [
                    185.0,
                    37838
                ],
                [
                    185.0,
                    43244
                ],
                [
                    210.39,
                    40402
                ],
                [
                    317.13,
                    42885
                ]
            ],
            "label": {
                "show": false,
                "margin": 8
            }
        }
    ],
    "legend": [
        {
            "data": [
                ""
            ],
            "selected": {},
            "show": true,
            "padding": 5,
            "itemGap": 10,
            "itemWidth": 25,
            "itemHeight": 14,
            "backgroundColor": "transparent",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "borderRadius": 0,
            "pageButtonItemGap": 5,
            "pageButtonPosition": "end",
            "pageFormatter": "{current}/{total}",
            "pageIconColor": "#2f4554",
            "pageIconInactiveColor": "#aaa",
            "pageIconSize": 15,
            "animationDurationUpdate": 800,
            "selector": false,
            "selectorPosition": "auto",
            "selectorItemGap": 7,
            "selectorButtonGap": 10
        }
    ],
    "tooltip": {
        "show": true,
        "trigger": "item",
        "triggerOn": "mousemove|click",
        "axisPointer": {
            "type": "line"
        },
        "showContent": true,
        "alwaysShowContent": false,
        "showDelay": 0,
        "hideDelay": 100,
        "enterable": false,
        "confine": false,
        "appendToBody": false,
        "transitionDuration": 0.4,
        "textStyle": {
            "fontSize": 14
        },
        "borderWidth": 0,
        "padding": 5,
        "order": "seriesAsc"
    },
    "xAxis": [
        {
            "type": "value",
            "show": true,
            "scale": false,
            "nameLocation": "end",
            "nameGap": 15,
            "gridIndex": 0,
            "inverse": false,
            "offset": 0,
            "splitNumber": 5,
            "minInterval": 0,
            "splitLine": {
                "show": true,
                "lineStyle": {
                    "show": true,
                    "width": 1,
                    "opacity": 1,
                    "curveness": 0,
                    "type": "solid"
                }
            },
            "data": [
                35.5,
                41.0,
                41.5,
                43.0,
                43.81,
                43.81,
                44.24,
                47.0,
                47.14,
                47.14,
                47.25,
                50.0,
                50.62,
                50.76,
                52.55,
                53.21,
                56.45,
                57.22,
                58.15,
                59.39,
                60.76,
                60.81,
                61.35,
                61.61,
                61.77,
                62.6,
                62.71,
                63.25,
                64.66,
                65.0,
                66.54,
                67.33,
                68.47,
                69.05,
                69.13,
                69.42,
                70.5,
                70.54,
                70.91,
                70.91,
                71.0,
                71.28,
                71.39,
                71.75,
                71.95,
                72.55,
                72.67,
                73.0,
                73.0,
                74.0,
                74.64,
                74.64,
                74.64,
                74.85,
                75.0,
                75.57,
                75.6,
                75.9,
                77.25,
                77.37,
                77.44,
                77.95,
                78.07,
                78.1,
                78.21,
                78.49,
                78.57,
                79.11,
                79.11,
                79.7,
                79.93,
                80.28,
                80.33,
                80.37,
                80.54,
                80.82,
                80.82,
                81.0,
                81.66,
                81.66,
                81.77,
                81.97,
                82.05,
                82.68,
                82.79,
                83.29,
                83.29,
                83.47,
                83.51,
                83.51,
                83.51,
                83.95,
                84.0,
                85.0,
                85.38,
                85.46,
                85.99,
                85.99,
                86.24,
                86.28,
                86.31,
                86.4,
                86.54,
                86.77,
                86.83,
                87.28,
                87.31,
                87.6,
                87.6,
                88.28,
                88.28,
                88.31,
                88.44,
                89.0,
                89.0,
                89.06,
                89.06,
                89.16,
                89.16,
                89.33,
                89.37,
                89.38,
                89.39,
                89.46,
                89.6,
                89.78,
                89.85,
                89.87,
                89.87,
                89.87,
                89.96,
                90.04,
                90.18,
                90.2,
                90.2,
                90.39,
                90.41,
                90.41,
                90.54,
                90.59,
                90.74,
                90.74,
                90.83,
                90.87,
                90.91,
                91.0,
                91.02,
                91.02,
                91.31,
                91.56,
                91.61,
                91.74,
                91.74,
                91.74,
                91.74,
                91.85,
                91.91,
                91.91,
                91.91,
                92.0,
                92.2,
                92.33,
                92.82,
                92.82,
                92.88,
                92.95,
                93.0,
                93.18,
                93.25,
                93.94,
                94.0,
                94.0,
                94.53,
                94.53,
                94.59,
                95.0,
                95.0,
                95.1,
                95.31,
                95.72,
                95.98,
                96.0,
                96.02,
                96.28,
                96.41,
                96.51,
                96.53,
                96.57,
                96.57,
                97.06,
                97.17,
                97.55,
                97.66,
                97.66,
                97.66,
                97.66,
                98.09,
                98.09,
                98.24,
                98.3,
                98.43,
                98.44,
                98.61,
                98.63,
                98.9,
                99.0,
                99.0,
                99.26,
                100.0,
                100.19,
                100.24,
                100.55,
                100.77,
                101.5,
                102.0,
                102.04,
                102.06,
                102.37,
                102.48,
                102.58,
                103.24,
                103.27,
                103.57,
                103.75,
                104.66,
                104.99,
                105.0,
                105.58,
                106.0,
                106.0,
                106.04,
                107.0,
                107.16,
                107.3,
                107.58,
                107.69,
                108.0,
                108.0,
                108.0,
                108.59,
                108.59,
                109.32,
                109.78,
                110.0,
                110.0,
                110.3,
                110.56,
                111.31,
                111.69,
                112.0,
                112.42,
                112.47,
                112.9,
                113.04,
                113.18,
                114.0,
                115.01,
                115.43,
                115.49,
                115.79,
                116.0,
                116.81,
                116.81,
                117.0,
                117.11,
                117.26,
                117.32,
                117.41,
                117.59,
                117.84,
                117.98,
                118.04,
                119.34,
                120.0,
                120.0,
                120.47,
                120.47,
                120.59,
                120.7,
                120.88,
                120.99,
                121.42,
                121.56,
                121.8,
                121.8,
                121.83,
                122.0,
                122.22,
                122.22,
                122.46,
                122.54,
                123.0,
                123.16,
                123.72,
                123.81,
                124.09,
                124.44,
                125.02,
                125.2,
                125.77,
                126.5,
                126.66,
                127.0,
                127.87,
                128.99,
                129.05,
                129.63,
                131.79,
                132.01,
                132.72,
                132.72,
                132.83,
                134.43,
                135.42,
                135.51,
                136.77,
                137.55,
                138.9,
                141.47,
                141.64,
                144.09,
                144.26,
                144.62,
                145.89,
                158.45,
                160.98,
                162.0,
                162.4,
                171.01,
                182.32,
                185.0,
                185.0,
                210.39,
                317.13
            ]
        }
    ],
    "yAxis": [
        {
            "type": "value",
            "show": true,
            "scale": false,
            "nameLocation": "end",
            "nameGap": 15,
            "gridIndex": 0,
            "inverse": false,
            "offset": 0,
            "splitNumber": 5,
            "minInterval": 0,
            "splitLine": {
                "show": true,
                "lineStyle": {
                    "show": true,
                    "width": 1,
                    "opacity": 1,
                    "curveness": 0,
                    "type": "solid"
                }
            }
        }
    ],
    "title": [
        {
            "show": true,
            "text": "\u6b66\u6c49\u4e8c\u624b\u623f\u9762\u79ef-\u5355\u4ef7\u5173\u7cfb\u56fe",
            "target": "blank",
            "subtarget": "blank",
            "left": "center",
            "padding": 5,
            "itemGap": 10,
            "textAlign": "auto",
            "textVerticalAlign": "auto",
            "triggerEvent": false
        }
    ]
};
        chart_5d28d7c693a34e46af8b33f0f224c0b1.setOption(option_5d28d7c693a34e46af8b33f0f224c0b1);
    </script>
<br/>                <div id="76eda51d430b4041999acb9a6b2f4d53" class="chart-container" style="width:900px; height:500px; "></div>
    <script>
        var chart_76eda51d430b4041999acb9a6b2f4d53 = echarts.init(
            document.getElementById('76eda51d430b4041999acb9a6b2f4d53'), 'white', {renderer: 'canvas'});
        var option_76eda51d430b4041999acb9a6b2f4d53 = {
    "animation": true,
    "animationThreshold": 2000,
    "animationDuration": 1000,
    "animationEasing": "cubicOut",
    "animationDelay": 0,
    "animationDurationUpdate": 300,
    "animationEasingUpdate": "cubicOut",
    "animationDelayUpdate": 0,
    "aria": {
        "enabled": false
    },
    "color": [
        "#5470c6",
        "#91cc75",
        "#fac858",
        "#ee6666",
        "#73c0de",
        "#3ba272",
        "#fc8452",
        "#9a60b4",
        "#ea7ccc"
    ],
    "series": [
        {
            "type": "wordCloud",
            "name": "\u9ad8\u9891\u8bcd\u8bed",
            "shape": "circle",
            "rotationRange": [
                -90,
                90
            ],
            "rotationStep": 45,
            "girdSize": 20,
            "sizeRange": [
                10,
                100
            ],
            "data": [
                {
                    "name": "\u5730\u94c1",
                    "value": 0.6124656158282988,
                    "textStyle": {
                        "color": "rgb(132,30,6)"
                    }
                },
                {
                    "name": "\u8001\u8bc1",
                    "value": 0.2480242220518672,
                    "textStyle": {
                        "color": "rgb(42,91,36)"
                    }
                },
                {
                    "name": "\u5357\u5317",
                    "value": 0.22915513408010635,
                    "textStyle": {
                        "color": "rgb(135,83,122)"
                    }
                },
                {
                    "name": "\u7cbe\u88c5",
                    "value": 0.20021496762323648,
                    "textStyle": {
                        "color": "rgb(132,26,0)"
                    }
                },
                {
                    "name": "\u4e8c\u5e74",
                    "value": 0.19587207756752076,
                    "textStyle": {
                        "color": "rgb(10,143,121)"
                    }
                },
                {
                    "name": "nan",
                    "value": 0.1860181665389004,
                    "textStyle": {
                        "color": "rgb(73,77,113)"
                    }
                },
                {
                    "name": "\u901a\u900f",
                    "value": 0.17321397440086878,
                    "textStyle": {
                        "color": "rgb(48,156,124)"
                    }
                },
                {
                    "name": "\u65b0\u623f",
                    "value": 0.1503840463253838,
                    "textStyle": {
                        "color": "rgb(88,10,84)"
                    }
                },
                {
                    "name": "\u4e09\u623f",
                    "value": 0.13850884111903528,
                    "textStyle": {
                        "color": "rgb(42,2,127)"
                    }
                },
                {
                    "name": "\u697c\u5c42",
                    "value": 0.13814265888638486,
                    "textStyle": {
                        "color": "rgb(104,64,70)"
                    }
                },
                {
                    "name": "\u7535\u68af",
                    "value": 0.11485026627411828,
                    "textStyle": {
                        "color": "rgb(33,135,49)"
                    }
                },
                {
                    "name": "\u770b\u623f",
                    "value": 0.11161089992334024,
                    "textStyle": {
                        "color": "rgb(138,132,58)"
                    }
                },
                {
                    "name": "\u6237\u578b",
                    "value": 0.10714522780089211,
                    "textStyle": {
                        "color": "rgb(124,88,14)"
                    }
                },
                {
                    "name": "\u4e94\u5e74",
                    "value": 0.10418283393401452,
                    "textStyle": {
                        "color": "rgb(64,143,29)"
                    }
                },
                {
                    "name": "\u798f\u661f",
                    "value": 0.10354744730565094,
                    "textStyle": {
                        "color": "rgb(67,11,71)"
                    }
                },
                {
                    "name": "\u623f\u4e1c",
                    "value": 0.10300862499688278,
                    "textStyle": {
                        "color": "rgb(50,44,57)"
                    }
                },
                {
                    "name": "\u534e\u5e9c",
                    "value": 0.09769721034040456,
                    "textStyle": {
                        "color": "rgb(119,9,85)"
                    }
                },
                {
                    "name": "\u8f66\u4f4d",
                    "value": 0.09632202118412862,
                    "textStyle": {
                        "color": "rgb(160,27,150)"
                    }
                },
                {
                    "name": "\u6025\u552e",
                    "value": 0.09610938604509854,
                    "textStyle": {
                        "color": "rgb(109,22,96)"
                    }
                },
                {
                    "name": "\u671d\u5357",
                    "value": 0.09510783222790456,
                    "textStyle": {
                        "color": "rgb(134,147,30)"
                    }
                },
                {
                    "name": "\u76f4\u5356",
                    "value": 0.0930090832694502,
                    "textStyle": {
                        "color": "rgb(138,49,135)"
                    }
                },
                {
                    "name": "\u5c0f\u533a",
                    "value": 0.09146165867420124,
                    "textStyle": {
                        "color": "rgb(154,115,33)"
                    }
                },
                {
                    "name": "\u8bda\u5fc3",
                    "value": 0.09140995432318984,
                    "textStyle": {
                        "color": "rgb(20,8,100)"
                    }
                },
                {
                    "name": "\u5730\u94c1\u53e3",
                    "value": 0.0892517408469917,
                    "textStyle": {
                        "color": "rgb(36,2,11)"
                    }
                },
                {
                    "name": "\u91c7\u5149",
                    "value": 0.08209692534618776,
                    "textStyle": {
                        "color": "rgb(4,99,144)"
                    }
                },
                {
                    "name": "\u4e24\u623f",
                    "value": 0.07975632333869294,
                    "textStyle": {
                        "color": "rgb(70,147,25)"
                    }
                },
                {
                    "name": "\u62ce\u5305",
                    "value": 0.07891332467313279,
                    "textStyle": {
                        "color": "rgb(128,45,125)"
                    }
                },
                {
                    "name": "\u51fa\u552e",
                    "value": 0.0732196149004279,
                    "textStyle": {
                        "color": "rgb(31,3,43)"
                    }
                },
                {
                    "name": "\u4e07\u79d1",
                    "value": 0.07005573855896265,
                    "textStyle": {
                        "color": "rgb(37,90,155)"
                    }
                },
                {
                    "name": "\u5165\u4f4f",
                    "value": 0.06799405917549015,
                    "textStyle": {
                        "color": "rgb(44,37,88)"
                    }
                },
                {
                    "name": "\u7cbe\u88c5\u4fee",
                    "value": 0.067172527856639,
                    "textStyle": {
                        "color": "rgb(64,76,87)"
                    }
                },
                {
                    "name": "\u968f\u65f6",
                    "value": 0.06564012248575726,
                    "textStyle": {
                        "color": "rgb(12,81,13)"
                    }
                },
                {
                    "name": "\u6bdb\u576f",
                    "value": 0.06385835163895227,
                    "textStyle": {
                        "color": "rgb(46,37,106)"
                    }
                },
                {
                    "name": "\u4e07\u8fbe",
                    "value": 0.06250966047759336,
                    "textStyle": {
                        "color": "rgb(116,94,139)"
                    }
                },
                {
                    "name": "\u6c49\u53e3",
                    "value": 0.060232499066141074,
                    "textStyle": {
                        "color": "rgb(77,114,156)"
                    }
                },
                {
                    "name": "\u5145\u8db3",
                    "value": 0.05786008160838174,
                    "textStyle": {
                        "color": "rgb(20,97,154)"
                    }
                },
                {
                    "name": "\u4e00\u521d",
                    "value": 0.052705147186021775,
                    "textStyle": {
                        "color": "rgb(14,33,4)"
                    }
                },
                {
                    "name": "\u5168\u660e",
                    "value": 0.052705147186021775,
                    "textStyle": {
                        "color": "rgb(76,25,92)"
                    }
                },
                {
                    "name": "\u5927\u5174",
                    "value": 0.05190001176329875,
                    "textStyle": {
                        "color": "rgb(89,46,119)"
                    }
                },
                {
                    "name": "\u6ee1\u4e94",
                    "value": 0.0465045416347251,
                    "textStyle": {
                        "color": "rgb(146,47,34)"
                    }
                },
                {
                    "name": "\u5e7f\u573a",
                    "value": 0.04612999226510633,
                    "textStyle": {
                        "color": "rgb(160,155,26)"
                    }
                },
                {
                    "name": "\u8a89\u5883",
                    "value": 0.04340423885907676,
                    "textStyle": {
                        "color": "rgb(32,32,109)"
                    }
                },
                {
                    "name": "\u4f4f\u5b85\u5c0f\u533a",
                    "value": 0.043288727682961624,
                    "textStyle": {
                        "color": "rgb(34,25,49)"
                    }
                },
                {
                    "name": "\u53a8\u536b",
                    "value": 0.043160490073366184,
                    "textStyle": {
                        "color": "rgb(37,127,7)"
                    }
                },
                {
                    "name": "\u4ea4\u623f",
                    "value": 0.04316044201052904,
                    "textStyle": {
                        "color": "rgb(75,102,97)"
                    }
                },
                {
                    "name": "\u9ad8\u6027\u4ef7\u6bd4",
                    "value": 0.04111179904745851,
                    "textStyle": {
                        "color": "rgb(88,8,65)"
                    }
                },
                {
                    "name": "\u914d\u5957",
                    "value": 0.040858273480715766,
                    "textStyle": {
                        "color": "rgb(60,4,45)"
                    }
                },
                {
                    "name": "\u53f7\u7ebf",
                    "value": 0.040303936083428415,
                    "textStyle": {
                        "color": "rgb(74,13,59)"
                    }
                },
                {
                    "name": "\u9633\u53f0",
                    "value": 0.04010455454436722,
                    "textStyle": {
                        "color": "rgb(47,86,38)"
                    }
                },
                {
                    "name": "\u6210\u719f",
                    "value": 0.03977088144424274,
                    "textStyle": {
                        "color": "rgb(3,73,18)"
                    }
                },
                {
                    "name": "\u7ea2\u9886\u5dfe",
                    "value": 0.037774476469657675,
                    "textStyle": {
                        "color": "rgb(96,130,92)"
                    }
                },
                {
                    "name": "\u65b9\u4fbf",
                    "value": 0.03594840903551349,
                    "textStyle": {
                        "color": "rgb(33,48,41)"
                    }
                },
                {
                    "name": "\u65e0\u906e\u6321",
                    "value": 0.035699744865119294,
                    "textStyle": {
                        "color": "rgb(148,39,152)"
                    }
                },
                {
                    "name": "\u4e2d\u95f4",
                    "value": 0.035051559601296675,
                    "textStyle": {
                        "color": "rgb(68,112,6)"
                    }
                },
                {
                    "name": "\u65b0\u4e0a",
                    "value": 0.03410333053213174,
                    "textStyle": {
                        "color": "rgb(149,77,118)"
                    }
                },
                {
                    "name": "\u5510\u6a3e",
                    "value": 0.03410333053213174,
                    "textStyle": {
                        "color": "rgb(127,154,69)"
                    }
                },
                {
                    "name": "\u4e24\u5ba4",
                    "value": 0.0310030277564834,
                    "textStyle": {
                        "color": "rgb(126,145,130)"
                    }
                },
                {
                    "name": "\u4e0d\u4e34",
                    "value": 0.0310030277564834,
                    "textStyle": {
                        "color": "rgb(44,65,150)"
                    }
                },
                {
                    "name": "\u83f1\u89d2",
                    "value": 0.029277491289989625,
                    "textStyle": {
                        "color": "rgb(44,25,143)"
                    }
                },
                {
                    "name": "\u89c6\u91ce",
                    "value": 0.02870695724724585,
                    "textStyle": {
                        "color": "rgb(41,142,17)"
                    }
                },
                {
                    "name": "\u82b1\u56ed",
                    "value": 0.028416352974623964,
                    "textStyle": {
                        "color": "rgb(22,23,102)"
                    }
                },
                {
                    "name": "\u6c5f\u57ce",
                    "value": 0.02803328630342324,
                    "textStyle": {
                        "color": "rgb(72,68,81)"
                    }
                },
                {
                    "name": "\u597d\u623f",
                    "value": 0.02790272498083506,
                    "textStyle": {
                        "color": "rgb(108,99,149)"
                    }
                },
                {
                    "name": "\u6167\u6cc9",
                    "value": 0.02790272498083506,
                    "textStyle": {
                        "color": "rgb(95,141,96)"
                    }
                },
                {
                    "name": "\u6c5f\u5c1a",
                    "value": 0.02790272498083506,
                    "textStyle": {
                        "color": "rgb(144,151,23)"
                    }
                },
                {
                    "name": "\u88c5\u4fee",
                    "value": 0.02776070086363589,
                    "textStyle": {
                        "color": "rgb(61,63,14)"
                    }
                },
                {
                    "name": "\u65b9\u6b63",
                    "value": 0.027728978418672202,
                    "textStyle": {
                        "color": "rgb(3,46,64)"
                    }
                },
                {
                    "name": "\u9ad8\u5c42",
                    "value": 0.026875917280860997,
                    "textStyle": {
                        "color": "rgb(148,46,76)"
                    }
                },
                {
                    "name": "\u5546\u5708",
                    "value": 0.026177425213174274,
                    "textStyle": {
                        "color": "rgb(38,30,144)"
                    }
                },
                {
                    "name": "\u6cdb\u6d77",
                    "value": 0.025903619540993256,
                    "textStyle": {
                        "color": "rgb(33,92,50)"
                    }
                },
                {
                    "name": "\u5355\u4ef7",
                    "value": 0.025106048616610477,
                    "textStyle": {
                        "color": "rgb(101,29,62)"
                    }
                },
                {
                    "name": "\u6ee1\u4e8c",
                    "value": 0.02480242220518672,
                    "textStyle": {
                        "color": "rgb(21,100,132)"
                    }
                },
                {
                    "name": "\u4e3b\u5367",
                    "value": 0.02480242220518672,
                    "textStyle": {
                        "color": "rgb(13,72,40)"
                    }
                },
                {
                    "name": "\u56fd\u9645",
                    "value": 0.0232013060218361,
                    "textStyle": {
                        "color": "rgb(90,17,34)"
                    }
                },
                {
                    "name": "\u524d\u6392",
                    "value": 0.023197226645150414,
                    "textStyle": {
                        "color": "rgb(54,13,83)"
                    }
                },
                {
                    "name": "\u5bb6\u56ed",
                    "value": 0.02259671121924274,
                    "textStyle": {
                        "color": "rgb(20,150,6)"
                    }
                },
                {
                    "name": "\u4e09\u73af",
                    "value": 0.022596091680809133,
                    "textStyle": {
                        "color": "rgb(143,67,93)"
                    }
                },
                {
                    "name": "\u4ef7\u683c",
                    "value": 0.02240362408684647,
                    "textStyle": {
                        "color": "rgb(75,22,135)"
                    }
                },
                {
                    "name": "\u53ef\u8c08",
                    "value": 0.02170211942953838,
                    "textStyle": {
                        "color": "rgb(34,3,125)"
                    }
                },
                {
                    "name": "\u53cc\u536b",
                    "value": 0.02170211942953838,
                    "textStyle": {
                        "color": "rgb(117,5,4)"
                    }
                },
                {
                    "name": "\u5e38\u9752",
                    "value": 0.02164925674107884,
                    "textStyle": {
                        "color": "rgb(146,140,20)"
                    }
                },
                {
                    "name": "\u76db\u4e16",
                    "value": 0.021214641792971993,
                    "textStyle": {
                        "color": "rgb(11,152,51)"
                    }
                },
                {
                    "name": "\u770b\u597d",
                    "value": 0.020899203516932054,
                    "textStyle": {
                        "color": "rgb(30,12,38)"
                    }
                },
                {
                    "name": "\u53cc\u9633\u53f0",
                    "value": 0.020551136625622406,
                    "textStyle": {
                        "color": "rgb(90,151,42)"
                    }
                },
                {
                    "name": "\u70ed\u95e8",
                    "value": 0.01986630012952282,
                    "textStyle": {
                        "color": "rgb(30,85,31)"
                    }
                },
                {
                    "name": "\u5546\u4e1a",
                    "value": 0.01945886089939056,
                    "textStyle": {
                        "color": "rgb(87,158,17)"
                    }
                },
                {
                    "name": "\u591a\u4eba",
                    "value": 0.01905645685928423,
                    "textStyle": {
                        "color": "rgb(104,118,0)"
                    }
                },
                {
                    "name": "\u957f\u6e2f\u8def",
                    "value": 0.01860181665389004,
                    "textStyle": {
                        "color": "rgb(115,147,22)"
                    }
                },
                {
                    "name": "CBD",
                    "value": 0.01860181665389004,
                    "textStyle": {
                        "color": "rgb(16,24,120)"
                    }
                },
                {
                    "name": "\u8303\u6e56",
                    "value": 0.01860181665389004,
                    "textStyle": {
                        "color": "rgb(20,58,101)"
                    }
                },
                {
                    "name": "\u603b\u4ef7",
                    "value": 0.018100680330705395,
                    "textStyle": {
                        "color": "rgb(100,47,97)"
                    }
                },
                {
                    "name": "\u4e8c\u73af",
                    "value": 0.01804682452126556,
                    "textStyle": {
                        "color": "rgb(61,108,103)"
                    }
                },
                {
                    "name": "\u793e\u533a",
                    "value": 0.0178659590192972,
                    "textStyle": {
                        "color": "rgb(58,109,158)"
                    }
                },
                {
                    "name": "\u4f18\u60e0",
                    "value": 0.017494974831587136,
                    "textStyle": {
                        "color": "rgb(89,58,45)"
                    }
                },
                {
                    "name": "\u8fdc\u6d0b",
                    "value": 0.017134378798838175,
                    "textStyle": {
                        "color": "rgb(48,34,106)"
                    }
                },
                {
                    "name": "\u4fbf\u5229",
                    "value": 0.01697760350740923,
                    "textStyle": {
                        "color": "rgb(94,57,46)"
                    }
                },
                {
                    "name": "\u4ea4\u901a",
                    "value": 0.01696000471827282,
                    "textStyle": {
                        "color": "rgb(75,86,18)"
                    }
                },
                {
                    "name": "\u5957\u623f",
                    "value": 0.016692128070062238,
                    "textStyle": {
                        "color": "rgb(123,150,107)"
                    }
                },
                {
                    "name": "\u6c5f\u6c49",
                    "value": 0.01665275644004668,
                    "textStyle": {
                        "color": "rgb(52,104,74)"
                    }
                },
                {
                    "name": "\u6c5f\u6c49\u8def",
                    "value": 0.016600188489756224,
                    "textStyle": {
                        "color": "rgb(137,66,112)"
                    }
                }
            ],
            "drawOutOfBound": false,
            "textStyle": {
                "emphasis": {}
            }
        }
    ],
    "legend": [
        {
            "data": [],
            "selected": {},
            "show": true,
            "padding": 5,
            "itemGap": 10,
            "itemWidth": 25,
            "itemHeight": 14,
            "backgroundColor": "transparent",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "borderRadius": 0,
            "pageButtonItemGap": 5,
            "pageButtonPosition": "end",
            "pageFormatter": "{current}/{total}",
            "pageIconColor": "#2f4554",
            "pageIconInactiveColor": "#aaa",
            "pageIconSize": 15,
            "animationDurationUpdate": 800,
            "selector": false,
            "selectorPosition": "auto",
            "selectorItemGap": 7,
            "selectorButtonGap": 10
        }
    ],
    "tooltip": {
        "show": true,
        "trigger": "item",
        "triggerOn": "mousemove|click",
        "axisPointer": {
            "type": "line"
        },
        "showContent": true,
        "alwaysShowContent": false,
        "showDelay": 0,
        "hideDelay": 100,
        "enterable": false,
        "confine": false,
        "appendToBody": false,
        "transitionDuration": 0.4,
        "textStyle": {
            "fontSize": 14
        },
        "borderWidth": 0,
        "padding": 5,
        "order": "seriesAsc"
    },
    "title": [
        {
            "show": true,
            "text": "\u6b66\u6c49\u4e8c\u624b\u623f\u9500\u552e\u70ed\u5ea6\u8bcd",
            "target": "blank",
            "subtarget": "blank",
            "left": "center",
            "padding": 5,
            "itemGap": 10,
            "textAlign": "auto",
            "textVerticalAlign": "auto",
            "triggerEvent": false,
            "textStyle": {
                "fontSize": 23
            }
        }
    ]
};
        chart_76eda51d430b4041999acb9a6b2f4d53.setOption(option_76eda51d430b4041999acb9a6b2f4d53);
    </script>
<br/>                <div id="d6b3ebb61fb94bba91a9d94e1b9a5063" class="chart-container" style="width:900px; height:500px; "></div>
    <script>
        var chart_d6b3ebb61fb94bba91a9d94e1b9a5063 = echarts.init(
            document.getElementById('d6b3ebb61fb94bba91a9d94e1b9a5063'), 'white', {renderer: 'canvas'});
        var option_d6b3ebb61fb94bba91a9d94e1b9a5063 = {
    "animation": true,
    "animationThreshold": 2000,
    "animationDuration": 1000,
    "animationEasing": "cubicOut",
    "animationDelay": 0,
    "animationDurationUpdate": 300,
    "animationEasingUpdate": "cubicOut",
    "animationDelayUpdate": 0,
    "aria": {
        "enabled": false
    },
    "color": [
        "#5470c6",
        "#91cc75",
        "#fac858",
        "#ee6666",
        "#73c0de",
        "#3ba272",
        "#fc8452",
        "#9a60b4",
        "#ea7ccc"
    ],
    "series": [
        {
            "type": "map",
            "name": "\u6b66\u6c49\u5404\u533a\u57df\u4e8c\u624b\u623f\u623f\u4ef7",
            "label": {
                "show": true,
                "margin": 8
            },
            "map": "\u6b66\u6c49",
            "data": [
                {
                    "name": "\u4e1c\u897f\u6e56\u533a",
                    "value": 13423.0
                },
                {
                    "name": "\u6b66\u660c\u533a",
                    "value": 16642.0
                },
                {
                    "name": "\u6c49\u9633\u533a",
                    "value": 16654.0
                },
                {
                    "name": "\u6c5f\u5cb8\u533a",
                    "value": 20071.0
                },
                {
                    "name": "\u6c5f\u6c49\u533a",
                    "value": 18725.0
                },
                {
                    "name": "\u6d2a\u5c71\u533a",
                    "value": 20000.0
                },
                {
                    "name": "\u785a\u53e3\u533a",
                    "value": 16960.0
                }
            ],
            "roam": true,
            "aspectScale": 0.75,
            "nameProperty": "name",
            "selectedMode": false,
            "zoom": 1,
            "zlevel": 0,
            "z": 2,
            "seriesLayoutBy": "column",
            "datasetIndex": 0,
            "mapValueCalculation": "sum",
            "showLegendSymbol": true,
            "emphasis": {}
        }
    ],
    "legend": [
        {
            "data": [
                "\u6b66\u6c49\u5404\u533a\u57df\u4e8c\u624b\u623f\u623f\u4ef7"
            ],
            "selected": {},
            "show": false,
            "padding": 5,
            "itemGap": 10,
            "itemWidth": 25,
            "itemHeight": 14,
            "backgroundColor": "transparent",
            "borderColor": "#ccc",
            "borderWidth": 1,
            "borderRadius": 0,
            "pageButtonItemGap": 5,
            "pageButtonPosition": "end",
            "pageFormatter": "{current}/{total}",
            "pageIconColor": "#2f4554",
            "pageIconInactiveColor": "#aaa",
            "pageIconSize": 15,
            "animationDurationUpdate": 800,
            "selector": false,
            "selectorPosition": "auto",
            "selectorItemGap": 7,
            "selectorButtonGap": 10
        }
    ],
    "tooltip": {
        "show": true,
        "trigger": "item",
        "triggerOn": "mousemove|click",
        "axisPointer": {
            "type": "line"
        },
        "showContent": true,
        "alwaysShowContent": false,
        "showDelay": 0,
        "hideDelay": 100,
        "enterable": false,
        "confine": false,
        "appendToBody": false,
        "transitionDuration": 0.4,
        "textStyle": {
            "fontSize": 14
        },
        "borderWidth": 0,
        "padding": 5,
        "order": "seriesAsc"
    },
    "title": [
        {
            "show": true,
            "text": "\u6b66\u6c49\u5404\u533a\u57df\u4e8c\u624b\u623f\u623f\u4ef7\u5730\u56fe",
            "target": "blank",
            "subtarget": "blank",
            "left": "center",
            "padding": 5,
            "itemGap": 10,
            "textAlign": "auto",
            "textVerticalAlign": "auto",
            "triggerEvent": false
        }
    ],
    "visualMap": {
        "show": true,
        "type": "continuous",
        "min": 0,
        "max": 26000,
        "inRange": {
            "color": [
                "#50a3ba",
                "#eac763",
                "#d94e5d"
            ]
        },
        "calculable": true,
        "inverse": false,
        "splitNumber": 5,
        "hoverLink": true,
        "orient": "vertical",
        "padding": 5,
        "showLabel": true,
        "itemWidth": 20,
        "itemHeight": 140,
        "borderWidth": 0
    }
};
        chart_d6b3ebb61fb94bba91a9d94e1b9a5063.setOption(option_d6b3ebb61fb94bba91a9d94e1b9a5063);
    </script>
<br/>    </div>
    <script>
            $('#1b112349eb8148e0b585ffd506a12607').resizable().draggable().css('border-style', 'dashed').css('border-width', '1px');$("#1b112349eb8148e0b585ffd506a12607>div:nth-child(1)").width("100%").height("100%");
            new ResizeSensor(jQuery('#1b112349eb8148e0b585ffd506a12607'), function() { chart_1b112349eb8148e0b585ffd506a12607.resize()});
            $('#d3edb43c0efe44c1b7ac21dcca195423').resizable().draggable().css('border-style', 'dashed').css('border-width', '1px');$("#d3edb43c0efe44c1b7ac21dcca195423>div:nth-child(1)").width("100%").height("100%");
            new ResizeSensor(jQuery('#d3edb43c0efe44c1b7ac21dcca195423'), function() { chart_d3edb43c0efe44c1b7ac21dcca195423.resize()});
            $('#75379e6d5dd245edb0df0f9e3963849a').resizable().draggable().css('border-style', 'dashed').css('border-width', '1px');$("#75379e6d5dd245edb0df0f9e3963849a>div:nth-child(1)").width("100%").height("100%");
            new ResizeSensor(jQuery('#75379e6d5dd245edb0df0f9e3963849a'), function() { chart_75379e6d5dd245edb0df0f9e3963849a.resize()});
            $('#3914dd802e17484cb32e1013f7305d40').resizable().draggable().css('border-style', 'dashed').css('border-width', '1px');$("#3914dd802e17484cb32e1013f7305d40>div:nth-child(1)").width("100%").height("100%");
            new ResizeSensor(jQuery('#3914dd802e17484cb32e1013f7305d40'), function() { chart_3914dd802e17484cb32e1013f7305d40.resize()});
            $('#638df3547b2541d4a04be6281ac41627').resizable().draggable().css('border-style', 'dashed').css('border-width', '1px');$("#638df3547b2541d4a04be6281ac41627>div:nth-child(1)").width("100%").height("100%");
            new ResizeSensor(jQuery('#638df3547b2541d4a04be6281ac41627'), function() { chart_638df3547b2541d4a04be6281ac41627.resize()});
            $('#f38908fc9c6e4a2d90ff1e538122ad22').resizable().draggable().css('border-style', 'dashed').css('border-width', '1px');$("#f38908fc9c6e4a2d90ff1e538122ad22>div:nth-child(1)").width("100%").height("100%");
            new ResizeSensor(jQuery('#f38908fc9c6e4a2d90ff1e538122ad22'), function() { chart_f38908fc9c6e4a2d90ff1e538122ad22.resize()});
            $('#5d28d7c693a34e46af8b33f0f224c0b1').resizable().draggable().css('border-style', 'dashed').css('border-width', '1px');$("#5d28d7c693a34e46af8b33f0f224c0b1>div:nth-child(1)").width("100%").height("100%");
            new ResizeSensor(jQuery('#5d28d7c693a34e46af8b33f0f224c0b1'), function() { chart_5d28d7c693a34e46af8b33f0f224c0b1.resize()});
            $('#76eda51d430b4041999acb9a6b2f4d53').resizable().draggable().css('border-style', 'dashed').css('border-width', '1px');$("#76eda51d430b4041999acb9a6b2f4d53>div:nth-child(1)").width("100%").height("100%");
            new ResizeSensor(jQuery('#76eda51d430b4041999acb9a6b2f4d53'), function() { chart_76eda51d430b4041999acb9a6b2f4d53.resize()});
            $('#d6b3ebb61fb94bba91a9d94e1b9a5063').resizable().draggable().css('border-style', 'dashed').css('border-width', '1px');$("#d6b3ebb61fb94bba91a9d94e1b9a5063>div:nth-child(1)").width("100%").height("100%");
            new ResizeSensor(jQuery('#d6b3ebb61fb94bba91a9d94e1b9a5063'), function() { chart_d6b3ebb61fb94bba91a9d94e1b9a5063.resize()});
            var charts_id = ['1b112349eb8148e0b585ffd506a12607','d3edb43c0efe44c1b7ac21dcca195423','75379e6d5dd245edb0df0f9e3963849a','3914dd802e17484cb32e1013f7305d40','638df3547b2541d4a04be6281ac41627','f38908fc9c6e4a2d90ff1e538122ad22','5d28d7c693a34e46af8b33f0f224c0b1','76eda51d430b4041999acb9a6b2f4d53','d6b3ebb61fb94bba91a9d94e1b9a5063'];
function downloadCfg () {
    const fileName = 'chart_config.json'
    let downLink = document.createElement('a')
    downLink.download = fileName

    let result = []
    for(let i=0; i<charts_id.length; i++) {
        chart = $('#'+charts_id[i])
        result.push({
            cid: charts_id[i],
            width: chart.css("width"),
            height: chart.css("height"),
            top: chart.offset().top + "px",
            left: chart.offset().left + "px"
        })
    }

    let blob = new Blob([JSON.stringify(result)])
    downLink.href = URL.createObjectURL(blob)
    document.body.appendChild(downLink)
    downLink.click()
    document.body.removeChild(downLink)
}
    </script>
</body>
</html>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 351
  • 352
  • 353
  • 354
  • 355
  • 356
  • 357
  • 358
  • 359
  • 360
  • 361
  • 362
  • 363
  • 364
  • 365
  • 366
  • 367
  • 368
  • 369
  • 370
  • 371
  • 372
  • 373
  • 374
  • 375
  • 376
  • 377
  • 378
  • 379
  • 380
  • 381
  • 382
  • 383
  • 384
  • 385
  • 386
  • 387
  • 388
  • 389
  • 390
  • 391
  • 392
  • 393
  • 394
  • 395
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • 407
  • 408
  • 409
  • 410
  • 411
  • 412
  • 413
  • 414
  • 415
  • 416
  • 417
  • 418
  • 419
  • 420
  • 421
  • 422
  • 423
  • 424
  • 425
  • 426
  • 427
  • 428
  • 429
  • 430
  • 431
  • 432
  • 433
  • 434
  • 435
  • 436
  • 437
  • 438
  • 439
  • 440
  • 441
  • 442
  • 443
  • 444
  • 445
  • 446
  • 447
  • 448
  • 449
  • 450
  • 451
  • 452
  • 453
  • 454
  • 455
  • 456
  • 457
  • 458
  • 459
  • 460
  • 461
  • 462
  • 463
  • 464
  • 465
  • 466
  • 467
  • 468
  • 469
  • 470
  • 471
  • 472
  • 473
  • 474
  • 475
  • 476
  • 477
  • 478
  • 479
  • 480
  • 481
  • 482
  • 483
  • 484
  • 485
  • 486
  • 487
  • 488
  • 489
  • 490
  • 491
  • 492
  • 493
  • 494
  • 495
  • 496
  • 497
  • 498
  • 499
  • 500
  • 501
  • 502
  • 503
  • 504
  • 505
  • 506
  • 507
  • 508
  • 509
  • 510
  • 511
  • 512
  • 513
  • 514
  • 515
  • 516
  • 517
  • 518
  • 519
  • 520
  • 521
  • 522
  • 523
  • 524
  • 525
  • 526
  • 527
  • 528
  • 529
  • 530
  • 531
  • 532
  • 533
  • 534
  • 535
  • 536
  • 537
  • 538
  • 539
  • 540
  • 541
  • 542
  • 543
  • 544
  • 545
  • 546
  • 547
  • 548
  • 549
  • 550
  • 551
  • 552
  • 553
  • 554
  • 555
  • 556
  • 557
  • 558
  • 559
  • 560
  • 561
  • 562
  • 563
  • 564
  • 565
  • 566
  • 567
  • 568
  • 569
  • 570
  • 571
  • 572
  • 573
  • 574
  • 575
  • 576
  • 577
  • 578
  • 579
  • 580
  • 581
  • 582
  • 583
  • 584
  • 585
  • 586
  • 587
  • 588
  • 589
  • 590
  • 591
  • 592
  • 593
  • 594
  • 595
  • 596
  • 597
  • 598
  • 599
  • 600
  • 601
  • 602
  • 603
  • 604
  • 605
  • 606
  • 607
  • 608
  • 609
  • 610
  • 611
  • 612
  • 613
  • 614
  • 615
  • 616
  • 617
  • 618
  • 619
  • 620
  • 621
  • 622
  • 623
  • 624
  • 625
  • 626
  • 627
  • 628
  • 629
  • 630
  • 631
  • 632
  • 633
  • 634
  • 635
  • 636
  • 637
  • 638
  • 639
  • 640
  • 641
  • 642
  • 643
  • 644
  • 645
  • 646
  • 647
  • 648
  • 649
  • 650
  • 651
  • 652
  • 653
  • 654
  • 655
  • 656
  • 657
  • 658
  • 659
  • 660
  • 661
  • 662
  • 663
  • 664
  • 665
  • 666
  • 667
  • 668
  • 669
  • 670
  • 671
  • 672
  • 673
  • 674
  • 675
  • 676
  • 677
  • 678
  • 679
  • 680
  • 681
  • 682
  • 683
  • 684
  • 685
  • 686
  • 687
  • 688
  • 689
  • 690
  • 691
  • 692
  • 693
  • 694
  • 695
  • 696
  • 697
  • 698
  • 699
  • 700
  • 701
  • 702
  • 703
  • 704
  • 705
  • 706
  • 707
  • 708
  • 709
  • 710
  • 711
  • 712
  • 713
  • 714
  • 715
  • 716
  • 717
  • 718
  • 719
  • 720
  • 721
  • 722
  • 723
  • 724
  • 725
  • 726
  • 727
  • 728
  • 729
  • 730
  • 731
  • 732
  • 733
  • 734
  • 735
  • 736
  • 737
  • 738
  • 739
  • 740
  • 741
  • 742
  • 743
  • 744
  • 745
  • 746
  • 747
  • 748
  • 749
  • 750
  • 751
  • 752
  • 753
  • 754
  • 755
  • 756
  • 757
  • 758
  • 759
  • 760
  • 761
  • 762
  • 763
  • 764
  • 765
  • 766
  • 767
  • 768
  • 769
  • 770
  • 771
  • 772
  • 773
  • 774
  • 775
  • 776
  • 777
  • 778
  • 779
  • 780
  • 781
  • 782
  • 783
  • 784
  • 785
  • 786
  • 787
  • 788
  • 789
  • 790
  • 791
  • 792
  • 793
  • 794
  • 795
  • 796
  • 797
  • 798
  • 799
  • 800
  • 801
  • 802
  • 803
  • 804
  • 805
  • 806
  • 807
  • 808
  • 809
  • 810
  • 811
  • 812
  • 813
  • 814
  • 815
  • 816
  • 817
  • 818
  • 819
  • 820
  • 821
  • 822
  • 823
  • 824
  • 825
  • 826
  • 827
  • 828
  • 829
  • 830
  • 831
  • 832
  • 833
  • 834
  • 835
  • 836
  • 837
  • 838
  • 839
  • 840
  • 841
  • 842
  • 843
  • 844
  • 845
  • 846
  • 847
  • 848
  • 849
  • 850
  • 851
  • 852
  • 853
  • 854
  • 855
  • 856
  • 857
  • 858
  • 859
  • 860
  • 861
  • 862
  • 863
  • 864
  • 865
  • 866
  • 867
  • 868
  • 869
  • 870
  • 871
  • 872
  • 873
  • 874
  • 875
  • 876
  • 877
  • 878
  • 879
  • 880
  • 881
  • 882
  • 883
  • 884
  • 885
  • 886
  • 887
  • 888
  • 889
  • 890
  • 891
  • 892
  • 893
  • 894
  • 895
  • 896
  • 897
  • 898
  • 899
  • 900
  • 901
  • 902
  • 903
  • 904
  • 905
  • 906
  • 907
  • 908
  • 909
  • 910
  • 911
  • 912
  • 913
  • 914
  • 915
  • 916
  • 917
  • 918
  • 919
  • 920
  • 921
  • 922
  • 923
  • 924
  • 925
  • 926
  • 927
  • 928
  • 929
  • 930
  • 931
  • 932
  • 933
  • 934
  • 935
  • 936
  • 937
  • 938
  • 939
  • 940
  • 941
  • 942
  • 943
  • 944
  • 945
  • 946
  • 947
  • 948
  • 949
  • 950
  • 951
  • 952
  • 953
  • 954
  • 955
  • 956
  • 957
  • 958
  • 959
  • 960
  • 961
  • 962
  • 963
  • 964
  • 965
  • 966
  • 967
  • 968
  • 969
  • 970
  • 971
  • 972
  • 973
  • 974
  • 975
  • 976
  • 977
  • 978
  • 979
  • 980
  • 981
  • 982
  • 983
  • 984
  • 985
  • 986
  • 987
  • 988
  • 989
  • 990
  • 991
  • 992
  • 993
  • 994
  • 995
  • 996
  • 997
  • 998
  • 999
  • 1000
  • 1001
  • 1002
  • 1003
  • 1004
  • 1005
  • 1006
  • 1007
  • 1008
  • 1009
  • 1010
  • 1011
  • 1012
  • 1013
  • 1014
  • 1015
  • 1016
  • 1017
  • 1018
  • 1019
  • 1020
  • 1021
  • 1022
  • 1023
  • 1024
  • 1025
  • 1026
  • 1027
  • 1028
  • 1029
  • 1030
  • 1031
  • 1032
  • 1033
  • 1034
  • 1035
  • 1036
  • 1037
  • 1038
  • 1039
  • 1040
  • 1041
  • 1042
  • 1043
  • 1044
  • 1045
  • 1046
  • 1047
  • 1048
  • 1049
  • 1050
  • 1051
  • 1052
  • 1053
  • 1054
  • 1055
  • 1056
  • 1057
  • 1058
  • 1059
  • 1060
  • 1061
  • 1062
  • 1063
  • 1064
  • 1065
  • 1066
  • 1067
  • 1068
  • 1069
  • 1070
  • 1071
  • 1072
  • 1073
  • 1074
  • 1075
  • 1076
  • 1077
  • 1078
  • 1079
  • 1080
  • 1081
  • 1082
  • 1083
  • 1084
  • 1085
  • 1086
  • 1087
  • 1088
  • 1089
  • 1090
  • 1091
  • 1092
  • 1093
  • 1094
  • 1095
  • 1096
  • 1097
  • 1098
  • 1099
  • 1100
  • 1101
  • 1102
  • 1103
  • 1104
  • 1105
  • 1106
  • 1107
  • 1108
  • 1109
  • 1110
  • 1111
  • 1112
  • 1113
  • 1114
  • 1115
  • 1116
  • 1117
  • 1118
  • 1119
  • 1120
  • 1121
  • 1122
  • 1123
  • 1124
  • 1125
  • 1126
  • 1127
  • 1128
  • 1129
  • 1130
  • 1131
  • 1132
  • 1133
  • 1134
  • 1135
  • 1136
  • 1137
  • 1138
  • 1139
  • 1140
  • 1141
  • 1142
  • 1143
  • 1144
  • 1145
  • 1146
  • 1147
  • 1148
  • 1149
  • 1150
  • 1151
  • 1152
  • 1153
  • 1154
  • 1155
  • 1156
  • 1157
  • 1158
  • 1159
  • 1160
  • 1161
  • 1162
  • 1163
  • 1164
  • 1165
  • 1166
  • 1167
  • 1168
  • 1169
  • 1170
  • 1171
  • 1172
  • 1173
  • 1174
  • 1175
  • 1176
  • 1177
  • 1178
  • 1179
  • 1180
  • 1181
  • 1182
  • 1183
  • 1184
  • 1185
  • 1186
  • 1187
  • 1188
  • 1189
  • 1190
  • 1191
  • 1192
  • 1193
  • 1194
  • 1195
  • 1196
  • 1197
  • 1198
  • 1199
  • 1200
  • 1201
  • 1202
  • 1203
  • 1204
  • 1205
  • 1206
  • 1207
  • 1208
  • 1209
  • 1210
  • 1211
  • 1212
  • 1213
  • 1214
  • 1215
  • 1216
  • 1217
  • 1218
  • 1219
  • 1220
  • 1221
  • 1222
  • 1223
  • 1224
  • 1225
  • 1226
  • 1227
  • 1228
  • 1229
  • 1230
  • 1231
  • 1232
  • 1233
  • 1234
  • 1235
  • 1236
  • 1237
  • 1238
  • 1239
  • 1240
  • 1241
  • 1242
  • 1243
  • 1244
  • 1245
  • 1246
  • 1247
  • 1248
  • 1249
  • 1250
  • 1251
  • 1252
  • 1253
  • 1254
  • 1255
  • 1256
  • 1257
  • 1258
  • 1259
  • 1260
  • 1261
  • 1262
  • 1263
  • 1264
  • 1265
  • 1266
  • 1267
  • 1268
  • 1269
  • 1270
  • 1271
  • 1272
  • 1273
  • 1274
  • 1275
  • 1276
  • 1277
  • 1278
  • 1279
  • 1280
  • 1281
  • 1282
  • 1283
  • 1284
  • 1285
  • 1286
  • 1287
  • 1288
  • 1289
  • 1290
  • 1291
  • 1292
  • 1293
  • 1294
  • 1295
  • 1296
  • 1297
  • 1298
  • 1299
  • 1300
  • 1301
  • 1302
  • 1303
  • 1304
  • 1305
  • 1306
  • 1307
  • 1308
  • 1309
  • 1310
  • 1311
  • 1312
  • 1313
  • 1314
  • 1315
  • 1316
  • 1317
  • 1318
  • 1319
  • 1320
  • 1321
  • 1322
  • 1323
  • 1324
  • 1325
  • 1326
  • 1327
  • 1328
  • 1329
  • 1330
  • 1331
  • 1332
  • 1333
  • 1334
  • 1335
  • 1336
  • 1337
  • 1338
  • 1339
  • 1340
  • 1341
  • 1342
  • 1343
  • 1344
  • 1345
  • 1346
  • 1347
  • 1348
  • 1349
  • 1350
  • 1351
  • 1352
  • 1353
  • 1354
  • 1355
  • 1356
  • 1357
  • 1358
  • 1359
  • 1360
  • 1361
  • 1362
  • 1363
  • 1364
  • 1365
  • 1366
  • 1367
  • 1368
  • 1369
  • 1370
  • 1371
  • 1372
  • 1373
  • 1374
  • 1375
  • 1376
  • 1377
  • 1378
  • 1379
  • 1380
  • 1381
  • 1382
  • 1383
  • 1384
  • 1385
  • 1386
  • 1387
  • 1388
  • 1389
  • 1390
  • 1391
  • 1392
  • 1393
  • 1394
  • 1395
  • 1396
  • 1397
  • 1398
  • 1399
  • 1400
  • 1401
  • 1402
  • 1403
  • 1404
  • 1405
  • 1406
  • 1407
  • 1408
  • 1409
  • 1410
  • 1411
  • 1412
  • 1413
  • 1414
  • 1415
  • 1416
  • 1417
  • 1418
  • 1419
  • 1420
  • 1421
  • 1422
  • 1423
  • 1424
  • 1425
  • 1426
  • 1427
  • 1428
  • 1429
  • 1430
  • 1431
  • 1432
  • 1433
  • 1434
  • 1435
  • 1436
  • 1437
  • 1438
  • 1439
  • 1440
  • 1441
  • 1442
  • 1443
  • 1444
  • 1445
  • 1446
  • 1447
  • 1448
  • 1449
  • 1450
  • 1451
  • 1452
  • 1453
  • 1454
  • 1455
  • 1456
  • 1457
  • 1458
  • 1459
  • 1460
  • 1461
  • 1462
  • 1463
  • 1464
  • 1465
  • 1466
  • 1467
  • 1468
  • 1469
  • 1470
  • 1471
  • 1472
  • 1473
  • 1474
  • 1475
  • 1476
  • 1477
  • 1478
  • 1479
  • 1480
  • 1481
  • 1482
  • 1483
  • 1484
  • 1485
  • 1486
  • 1487
  • 1488
  • 1489
  • 1490
  • 1491
  • 1492
  • 1493
  • 1494
  • 1495
  • 1496
  • 1497
  • 1498
  • 1499
  • 1500
  • 1501
  • 1502
  • 1503
  • 1504
  • 1505
  • 1506
  • 1507
  • 1508
  • 1509
  • 1510
  • 1511
  • 1512
  • 1513
  • 1514
  • 1515
  • 1516
  • 1517
  • 1518
  • 1519
  • 1520
  • 1521
  • 1522
  • 1523
  • 1524
  • 1525
  • 1526
  • 1527
  • 1528
  • 1529
  • 1530
  • 1531
  • 1532
  • 1533
  • 1534
  • 1535
  • 1536
  • 1537
  • 1538
  • 1539
  • 1540
  • 1541
  • 1542
  • 1543
  • 1544
  • 1545
  • 1546
  • 1547
  • 1548
  • 1549
  • 1550
  • 1551
  • 1552
  • 1553
  • 1554
  • 1555
  • 1556
  • 1557
  • 1558
  • 1559
  • 1560
  • 1561
  • 1562
  • 1563
  • 1564
  • 1565
  • 1566
  • 1567
  • 1568
  • 1569
  • 1570
  • 1571
  • 1572
  • 1573
  • 1574
  • 1575
  • 1576
  • 1577
  • 1578
  • 1579
  • 1580
  • 1581
  • 1582
  • 1583
  • 1584
  • 1585
  • 1586
  • 1587
  • 1588
  • 1589
  • 1590
  • 1591
  • 1592
  • 1593
  • 1594
  • 1595
  • 1596
  • 1597
  • 1598
  • 1599
  • 1600
  • 1601
  • 1602
  • 1603
  • 1604
  • 1605
  • 1606
  • 1607
  • 1608
  • 1609
  • 1610
  • 1611
  • 1612
  • 1613
  • 1614
  • 1615
  • 1616
  • 1617
  • 1618
  • 1619
  • 1620
  • 1621
  • 1622
  • 1623
  • 1624
  • 1625
  • 1626
  • 1627
  • 1628
  • 1629
  • 1630
  • 1631
  • 1632
  • 1633
  • 1634
  • 1635
  • 1636
  • 1637
  • 1638
  • 1639
  • 1640
  • 1641
  • 1642
  • 1643
  • 1644
  • 1645
  • 1646
  • 1647
  • 1648
  • 1649
  • 1650
  • 1651
  • 1652
  • 1653
  • 1654
  • 1655
  • 1656
  • 1657
  • 1658
  • 1659
  • 1660
  • 1661
  • 1662
  • 1663
  • 1664
  • 1665
  • 1666
  • 1667
  • 1668
  • 1669
  • 1670
  • 1671
  • 1672
  • 1673
  • 1674
  • 1675
  • 1676
  • 1677
  • 1678
  • 1679
  • 1680
  • 1681
  • 1682
  • 1683
  • 1684
  • 1685
  • 1686
  • 1687
  • 1688
  • 1689
  • 1690
  • 1691
  • 1692
  • 1693
  • 1694
  • 1695
  • 1696
  • 1697
  • 1698
  • 1699
  • 1700
  • 1701
  • 1702
  • 1703
  • 1704
  • 1705
  • 1706
  • 1707
  • 1708
  • 1709
  • 1710
  • 1711
  • 1712
  • 1713
  • 1714
  • 1715
  • 1716
  • 1717
  • 1718
  • 1719
  • 1720
  • 1721
  • 1722
  • 1723
  • 1724
  • 1725
  • 1726
  • 1727
  • 1728
  • 1729
  • 1730
  • 1731
  • 1732
  • 1733
  • 1734
  • 1735
  • 1736
  • 1737
  • 1738
  • 1739
  • 1740
  • 1741
  • 1742
  • 1743
  • 1744
  • 1745
  • 1746
  • 1747
  • 1748
  • 1749
  • 1750
  • 1751
  • 1752
  • 1753
  • 1754
  • 1755
  • 1756
  • 1757
  • 1758
  • 1759
  • 1760
  • 1761
  • 1762
  • 1763
  • 1764
  • 1765
  • 1766
  • 1767
  • 1768
  • 1769
  • 1770
  • 1771
  • 1772
  • 1773
  • 1774
  • 1775
  • 1776
  • 1777
  • 1778
  • 1779
  • 1780
  • 1781
  • 1782
  • 1783
  • 1784
  • 1785
  • 1786
  • 1787
  • 1788
  • 1789
  • 1790
  • 1791
  • 1792
  • 1793
  • 1794
  • 1795
  • 1796
  • 1797
  • 1798
  • 1799
  • 1800
  • 1801
  • 1802
  • 1803
  • 1804
  • 1805
  • 1806
  • 1807
  • 1808
  • 1809
  • 1810
  • 1811
  • 1812
  • 1813
  • 1814
  • 1815
  • 1816
  • 1817
  • 1818
  • 1819
  • 1820
  • 1821
  • 1822
  • 1823
  • 1824
  • 1825
  • 1826
  • 1827
  • 1828
  • 1829
  • 1830
  • 1831
  • 1832
  • 1833
  • 1834
  • 1835
  • 1836
  • 1837
  • 1838
  • 1839
  • 1840
  • 1841
  • 1842
  • 1843
  • 1844
  • 1845
  • 1846
  • 1847
  • 1848
  • 1849
  • 1850
  • 1851
  • 1852
  • 1853
  • 1854
  • 1855
  • 1856
  • 1857
  • 1858
  • 1859
  • 1860
  • 1861
  • 1862
  • 1863
  • 1864
  • 1865
  • 1866
  • 1867
  • 1868
  • 1869
  • 1870
  • 1871
  • 1872
  • 1873
  • 1874
  • 1875
  • 1876
  • 1877
  • 1878
  • 1879
  • 1880
  • 1881
  • 1882
  • 1883
  • 1884
  • 1885
  • 1886
  • 1887
  • 1888
  • 1889
  • 1890
  • 1891
  • 1892
  • 1893
  • 1894
  • 1895
  • 1896
  • 1897
  • 1898
  • 1899
  • 1900
  • 1901
  • 1902
  • 1903
  • 1904
  • 1905
  • 1906
  • 1907
  • 1908
  • 1909
  • 1910
  • 1911
  • 1912
  • 1913
  • 1914
  • 1915
  • 1916
  • 1917
  • 1918
  • 1919
  • 1920
  • 1921
  • 1922
  • 1923
  • 1924
  • 1925
  • 1926
  • 1927
  • 1928
  • 1929
  • 1930
  • 1931
  • 1932
  • 1933
  • 1934
  • 1935
  • 1936
  • 1937
  • 1938
  • 1939
  • 1940
  • 1941
  • 1942
  • 1943
  • 1944
  • 1945
  • 1946
  • 1947
  • 1948
  • 1949
  • 1950
  • 1951
  • 1952
  • 1953
  • 1954
  • 1955
  • 1956
  • 1957
  • 1958
  • 1959
  • 1960
  • 1961
  • 1962
  • 1963
  • 1964
  • 1965
  • 1966
  • 1967
  • 1968
  • 1969
  • 1970
  • 1971
  • 1972
  • 1973
  • 1974
  • 1975
  • 1976
  • 1977
  • 1978
  • 1979
  • 1980
  • 1981
  • 1982
  • 1983
  • 1984
  • 1985
  • 1986
  • 1987
  • 1988
  • 1989
  • 1990
  • 1991
  • 1992
  • 1993
  • 1994
  • 1995
  • 1996
  • 1997
  • 1998
  • 1999
  • 2000
  • 2001
  • 2002
  • 2003
  • 2004
  • 2005
  • 2006
  • 2007
  • 2008
  • 2009
  • 2010
  • 2011
  • 2012
  • 2013
  • 2014
  • 2015
  • 2016
  • 2017
  • 2018
  • 2019
  • 2020
  • 2021
  • 2022
  • 2023
  • 2024
  • 2025
  • 2026
  • 2027
  • 2028
  • 2029
  • 2030
  • 2031
  • 2032
  • 2033
  • 2034
  • 2035
  • 2036
  • 2037
  • 2038
  • 2039
  • 2040
  • 2041
  • 2042
  • 2043
  • 2044
  • 2045
  • 2046
  • 2047
  • 2048
  • 2049
  • 2050
  • 2051
  • 2052
  • 2053
  • 2054
  • 2055
  • 2056
  • 2057
  • 2058
  • 2059
  • 2060
  • 2061
  • 2062
  • 2063
  • 2064
  • 2065
  • 2066
  • 2067
  • 2068
  • 2069
  • 2070
  • 2071
  • 2072
  • 2073
  • 2074
  • 2075
  • 2076
  • 2077
  • 2078
  • 2079
  • 2080
  • 2081
  • 2082
  • 2083
  • 2084
  • 2085
  • 2086
  • 2087
  • 2088
  • 2089
  • 2090
  • 2091
  • 2092
  • 2093
  • 2094
  • 2095
  • 2096
  • 2097
  • 2098
  • 2099
  • 2100
  • 2101
  • 2102
  • 2103
  • 2104
  • 2105
  • 2106
  • 2107
  • 2108
  • 2109
  • 2110
  • 2111
  • 2112
  • 2113
  • 2114
  • 2115
  • 2116
  • 2117
  • 2118
  • 2119
  • 2120
  • 2121
  • 2122
  • 2123
  • 2124
  • 2125
  • 2126
  • 2127
  • 2128
  • 2129
  • 2130
  • 2131
  • 2132
  • 2133
  • 2134
  • 2135
  • 2136
  • 2137
  • 2138
  • 2139
  • 2140
  • 2141
  • 2142
  • 2143
  • 2144
  • 2145
  • 2146
  • 2147
  • 2148
  • 2149
  • 2150
  • 2151
  • 2152
  • 2153
  • 2154
  • 2155
  • 2156
  • 2157
  • 2158
  • 2159
  • 2160
  • 2161
  • 2162
  • 2163
  • 2164
  • 2165
  • 2166
  • 2167
  • 2168
  • 2169
  • 2170
  • 2171
  • 2172
  • 2173
  • 2174
  • 2175
  • 2176
  • 2177
  • 2178
  • 2179
  • 2180
  • 2181
  • 2182
  • 2183
  • 2184
  • 2185
  • 2186
  • 2187
  • 2188
  • 2189
  • 2190
  • 2191
  • 2192
  • 2193
  • 2194
  • 2195
  • 2196
  • 2197
  • 2198
  • 2199
  • 2200
  • 2201
  • 2202
  • 2203
  • 2204
  • 2205
  • 2206
  • 2207
  • 2208
  • 2209
  • 2210
  • 2211
  • 2212
  • 2213
  • 2214
  • 2215
  • 2216
  • 2217
  • 2218
  • 2219
  • 2220
  • 2221
  • 2222
  • 2223
  • 2224
  • 2225
  • 2226
  • 2227
  • 2228
  • 2229
  • 2230
  • 2231
  • 2232
  • 2233
  • 2234
  • 2235
  • 2236
  • 2237
  • 2238
  • 2239
  • 2240
  • 2241
  • 2242
  • 2243
  • 2244
  • 2245
  • 2246
  • 2247
  • 2248
  • 2249
  • 2250
  • 2251
  • 2252
  • 2253
  • 2254
  • 2255
  • 2256
  • 2257
  • 2258
  • 2259
  • 2260
  • 2261
  • 2262
  • 2263
  • 2264
  • 2265
  • 2266
  • 2267
  • 2268
  • 2269
  • 2270
  • 2271
  • 2272
  • 2273
  • 2274
  • 2275
  • 2276
  • 2277
  • 2278
  • 2279
  • 2280
  • 2281
  • 2282
  • 2283
  • 2284
  • 2285
  • 2286
  • 2287
  • 2288
  • 2289
  • 2290
  • 2291
  • 2292
  • 2293
  • 2294
  • 2295
  • 2296
  • 2297
  • 2298
  • 2299
  • 2300
  • 2301
  • 2302
  • 2303
  • 2304
  • 2305
  • 2306
  • 2307
  • 2308
  • 2309
  • 2310
  • 2311
  • 2312
  • 2313
  • 2314
  • 2315
  • 2316
  • 2317
  • 2318
  • 2319
  • 2320
  • 2321
  • 2322
  • 2323
  • 2324
  • 2325
  • 2326
  • 2327
  • 2328
  • 2329
  • 2330
  • 2331
  • 2332
  • 2333
  • 2334
  • 2335
  • 2336
  • 2337
  • 2338
  • 2339
  • 2340
  • 2341
  • 2342
  • 2343
  • 2344
  • 2345
  • 2346
  • 2347
  • 2348
  • 2349
  • 2350
  • 2351
  • 2352
  • 2353
  • 2354
  • 2355
  • 2356
  • 2357
  • 2358
  • 2359
  • 2360
  • 2361
  • 2362
  • 2363
  • 2364
  • 2365
  • 2366
  • 2367
  • 2368
  • 2369
  • 2370
  • 2371
  • 2372
  • 2373
  • 2374
  • 2375
  • 2376
  • 2377
  • 2378
  • 2379
  • 2380
  • 2381
  • 2382
  • 2383
  • 2384
  • 2385
  • 2386
  • 2387
  • 2388
  • 2389
  • 2390
  • 2391
  • 2392
  • 2393
  • 2394
  • 2395
  • 2396
  • 2397
  • 2398
  • 2399
  • 2400
  • 2401
  • 2402
  • 2403
  • 2404
  • 2405
  • 2406
  • 2407
  • 2408
  • 2409
  • 2410
  • 2411
  • 2412
  • 2413
  • 2414
  • 2415
  • 2416
  • 2417
  • 2418
  • 2419
  • 2420
  • 2421
  • 2422
  • 2423
  • 2424
  • 2425
  • 2426
  • 2427
  • 2428
  • 2429
  • 2430
  • 2431
  • 2432
  • 2433
  • 2434
  • 2435
  • 2436
  • 2437
  • 2438
  • 2439
  • 2440
  • 2441
  • 2442
  • 2443
  • 2444
  • 2445
  • 2446
  • 2447
  • 2448
  • 2449
  • 2450
  • 2451
  • 2452
  • 2453
  • 2454
  • 2455
  • 2456
  • 2457
  • 2458
  • 2459
  • 2460
  • 2461
  • 2462
  • 2463
  • 2464
  • 2465
  • 2466
  • 2467
  • 2468
  • 2469
  • 2470
  • 2471
  • 2472
  • 2473
  • 2474
  • 2475
  • 2476
  • 2477
  • 2478
  • 2479
  • 2480
  • 2481
  • 2482
  • 2483
  • 2484
  • 2485
  • 2486
  • 2487
  • 2488
  • 2489
  • 2490
  • 2491
  • 2492
  • 2493
  • 2494
  • 2495
  • 2496
  • 2497
  • 2498
  • 2499
  • 2500
  • 2501
  • 2502
  • 2503
  • 2504
  • 2505
  • 2506
  • 2507
  • 2508
  • 2509
  • 2510
  • 2511
  • 2512
  • 2513
  • 2514
  • 2515
  • 2516
  • 2517
  • 2518
  • 2519
  • 2520
  • 2521
  • 2522
  • 2523
  • 2524
  • 2525
  • 2526
  • 2527
  • 2528
  • 2529
  • 2530
  • 2531
  • 2532
  • 2533
  • 2534
  • 2535
  • 2536
  • 2537
  • 2538
  • 2539
  • 2540
  • 2541
  • 2542
  • 2543
  • 2544
  • 2545
  • 2546
  • 2547
  • 2548
  • 2549
  • 2550
  • 2551
  • 2552
  • 2553
  • 2554
  • 2555
  • 2556
  • 2557
  • 2558
  • 2559
  • 2560
  • 2561
  • 2562
  • 2563
  • 2564
  • 2565
  • 2566
  • 2567
  • 2568
  • 2569
  • 2570
  • 2571
  • 2572
  • 2573
  • 2574
  • 2575
  • 2576
  • 2577
  • 2578
  • 2579
  • 2580
  • 2581
  • 2582
  • 2583
  • 2584
  • 2585
  • 2586
  • 2587
  • 2588
  • 2589
  • 2590
  • 2591
  • 2592
  • 2593
  • 2594
  • 2595
  • 2596
  • 2597
  • 2598
  • 2599
  • 2600
  • 2601
  • 2602
  • 2603
  • 2604
  • 2605
  • 2606
  • 2607
  • 2608
  • 2609
  • 2610
  • 2611
  • 2612
  • 2613
  • 2614
  • 2615
  • 2616
  • 2617
  • 2618
  • 2619
  • 2620
  • 2621
  • 2622
  • 2623
  • 2624
  • 2625
  • 2626
  • 2627
  • 2628
  • 2629
  • 2630
  • 2631
  • 2632
  • 2633
  • 2634
  • 2635
  • 2636
  • 2637
  • 2638
  • 2639
  • 2640
  • 2641
  • 2642
  • 2643
  • 2644
  • 2645
  • 2646
  • 2647
  • 2648
  • 2649
  • 2650
  • 2651
  • 2652
  • 2653
  • 2654
  • 2655
  • 2656
  • 2657
  • 2658
  • 2659
  • 2660
  • 2661
  • 2662
  • 2663
  • 2664
  • 2665
  • 2666
  • 2667
  • 2668
  • 2669
  • 2670
  • 2671
  • 2672
  • 2673
  • 2674
  • 2675
  • 2676
  • 2677
  • 2678
  • 2679
  • 2680
  • 2681
  • 2682
  • 2683
  • 2684
  • 2685
  • 2686
  • 2687
  • 2688
  • 2689
  • 2690
  • 2691
  • 2692
  • 2693
  • 2694
  • 2695
  • 2696
  • 2697
  • 2698
  • 2699
  • 2700
  • 2701
  • 2702
  • 2703
  • 2704
  • 2705
  • 2706
  • 2707
  • 2708
  • 2709
  • 2710
  • 2711
  • 2712
  • 2713
  • 2714
  • 2715
  • 2716
  • 2717
  • 2718
  • 2719
  • 2720
  • 2721
  • 2722
  • 2723
  • 2724
  • 2725
  • 2726
  • 2727
  • 2728
  • 2729
  • 2730
  • 2731
  • 2732
  • 2733
  • 2734
  • 2735
  • 2736
  • 2737
  • 2738
  • 2739
  • 2740
  • 2741
  • 2742
  • 2743
  • 2744
  • 2745
  • 2746
  • 2747
  • 2748
  • 2749
  • 2750
  • 2751
  • 2752
  • 2753
  • 2754
  • 2755
  • 2756
  • 2757
  • 2758
  • 2759
  • 2760
  • 2761
  • 2762
  • 2763
  • 2764
  • 2765
  • 2766
  • 2767
  • 2768
  • 2769
  • 2770
  • 2771
  • 2772
  • 2773
  • 2774
  • 2775
  • 2776
  • 2777
  • 2778
  • 2779
  • 2780
  • 2781
  • 2782
  • 2783
  • 2784
  • 2785
  • 2786
  • 2787
  • 2788
  • 2789
  • 2790
  • 2791
  • 2792
  • 2793
  • 2794
  • 2795
  • 2796
  • 2797
  • 2798
  • 2799
  • 2800
  • 2801
  • 2802
  • 2803
  • 2804
  • 2805
  • 2806
  • 2807
  • 2808
  • 2809
  • 2810
  • 2811
  • 2812
  • 2813
  • 2814
  • 2815
  • 2816
  • 2817
  • 2818
  • 2819
  • 2820
  • 2821
  • 2822
  • 2823
  • 2824
  • 2825
  • 2826
  • 2827
  • 2828
  • 2829
  • 2830
  • 2831
  • 2832
  • 2833
  • 2834
  • 2835
  • 2836
  • 2837
  • 2838
  • 2839
  • 2840
  • 2841
  • 2842
  • 2843
  • 2844
  • 2845
  • 2846
  • 2847
  • 2848
  • 2849
  • 2850
  • 2851
  • 2852
  • 2853
  • 2854
  • 2855
  • 2856
  • 2857
  • 2858
  • 2859
  • 2860
  • 2861
  • 2862
  • 2863
  • 2864
  • 2865
  • 2866
  • 2867
  • 2868
  • 2869
  • 2870
  • 2871
  • 2872
  • 2873
  • 2874
  • 2875
  • 2876
  • 2877
  • 2878
  • 2879
  • 2880
  • 2881
  • 2882
  • 2883
  • 2884
  • 2885
  • 2886
  • 2887
  • 2888
  • 2889
  • 2890
  • 2891
  • 2892
  • 2893
  • 2894
  • 2895
  • 2896
  • 2897
  • 2898
  • 2899
  • 2900
  • 2901
  • 2902
  • 2903
  • 2904
  • 2905
  • 2906
  • 2907
  • 2908
  • 2909
  • 2910
  • 2911
  • 2912
  • 2913
  • 2914
  • 2915
  • 2916
  • 2917
  • 2918
  • 2919
  • 2920
  • 2921
  • 2922
  • 2923
  • 2924
  • 2925
  • 2926
  • 2927
  • 2928
  • 2929
  • 2930
  • 2931
  • 2932
  • 2933
  • 2934
  • 2935
  • 2936
  • 2937
  • 2938
  • 2939
  • 2940
  • 2941
  • 2942
  • 2943
  • 2944
  • 2945
  • 2946
  • 2947
  • 2948
  • 2949
  • 2950
  • 2951
  • 2952
  • 2953
  • 2954
  • 2955
  • 2956
  • 2957
  • 2958
  • 2959
  • 2960
  • 2961
  • 2962
  • 2963
  • 2964
  • 2965
  • 2966
  • 2967
  • 2968
  • 2969
  • 2970
  • 2971
  • 2972
  • 2973
  • 2974
  • 2975
  • 2976
  • 2977
  • 2978
  • 2979
  • 2980
  • 2981
  • 2982
  • 2983
  • 2984
  • 2985
  • 2986
  • 2987
  • 2988
  • 2989
  • 2990
  • 2991
  • 2992
  • 2993
  • 2994
  • 2995
  • 2996
  • 2997
  • 2998
  • 2999
  • 3000
  • 3001
  • 3002
  • 3003
  • 3004
  • 3005
  • 3006
  • 3007
  • 3008
  • 3009
  • 3010
  • 3011
  • 3012
  • 3013
  • 3014
  • 3015
  • 3016
  • 3017
  • 3018
  • 3019
  • 3020
  • 3021
  • 3022
  • 3023
  • 3024
  • 3025
  • 3026
  • 3027
  • 3028
  • 3029
  • 3030
  • 3031
  • 3032
  • 3033
  • 3034
  • 3035
  • 3036
  • 3037
  • 3038
  • 3039
  • 3040
  • 3041
  • 3042
  • 3043
  • 3044
  • 3045
  • 3046
  • 3047
  • 3048
  • 3049
  • 3050
  • 3051
  • 3052
  • 3053
  • 3054
  • 3055
  • 3056
  • 3057
  • 3058
  • 3059
  • 3060
  • 3061
  • 3062
  • 3063
  • 3064
  • 3065
  • 3066
  • 3067
  • 3068
  • 3069
  • 3070
  • 3071
  • 3072
  • 3073
  • 3074
  • 3075
  • 3076
  • 3077
  • 3078
  • 3079
  • 3080
  • 3081
  • 3082
  • 3083
  • 3084
  • 3085
  • 3086
  • 3087
  • 3088
  • 3089
  • 3090
  • 3091
  • 3092
  • 3093
  • 3094
  • 3095
  • 3096
  • 3097
  • 3098
  • 3099
  • 3100
  • 3101
  • 3102
  • 3103
  • 3104
  • 3105
  • 3106
  • 3107
  • 3108
  • 3109
  • 3110
  • 3111
  • 3112
  • 3113
  • 3114
  • 3115
  • 3116
  • 3117
  • 3118
  • 3119
  • 3120
  • 3121
  • 3122
  • 3123
  • 3124
  • 3125
  • 3126
  • 3127
  • 3128
  • 3129
  • 3130
  • 3131
  • 3132
  • 3133
  • 3134
  • 3135
  • 3136
  • 3137
  • 3138
  • 3139
  • 3140
  • 3141
  • 3142
  • 3143
  • 3144
  • 3145
  • 3146
  • 3147
  • 3148
  • 3149
  • 3150
  • 3151
  • 3152
  • 3153
  • 3154
  • 3155
  • 3156
  • 3157
  • 3158
  • 3159
  • 3160
  • 3161
  • 3162
  • 3163
  • 3164
  • 3165
  • 3166
  • 3167
  • 3168
  • 3169
  • 3170
  • 3171
  • 3172
  • 3173
  • 3174
  • 3175
  • 3176
  • 3177
  • 3178
  • 3179
  • 3180
  • 3181
  • 3182
  • 3183
  • 3184
  • 3185
  • 3186
  • 3187
  • 3188
  • 3189
  • 3190
  • 3191
  • 3192
  • 3193
  • 3194
  • 3195
  • 3196
  • 3197
  • 3198
  • 3199
  • 3200
  • 3201
  • 3202
  • 3203
  • 3204
  • 3205
  • 3206
  • 3207
  • 3208
  • 3209
  • 3210
  • 3211
  • 3212
  • 3213
  • 3214
  • 3215
  • 3216
  • 3217
  • 3218
  • 3219
  • 3220
  • 3221
  • 3222
  • 3223
  • 3224
  • 3225
  • 3226
  • 3227
  • 3228
  • 3229
  • 3230
  • 3231
  • 3232
  • 3233
  • 3234
  • 3235
  • 3236
  • 3237
  • 3238
  • 3239
  • 3240
  • 3241
  • 3242
  • 3243
  • 3244
  • 3245
  • 3246
  • 3247
  • 3248
  • 3249
  • 3250
  • 3251
  • 3252
  • 3253
  • 3254
  • 3255
  • 3256
  • 3257
  • 3258
  • 3259
  • 3260
  • 3261
  • 3262
  • 3263
  • 3264
  • 3265
  • 3266
  • 3267
  • 3268
  • 3269
  • 3270
  • 3271
  • 3272
  • 3273
  • 3274
  • 3275
  • 3276
  • 3277
  • 3278
  • 3279
  • 3280
  • 3281
  • 3282
  • 3283
  • 3284
  • 3285
  • 3286
  • 3287
  • 3288
  • 3289
  • 3290
  • 3291
  • 3292
  • 3293
  • 3294
  • 3295
  • 3296
  • 3297
  • 3298
  • 3299
  • 3300
  • 3301
  • 3302
  • 3303
  • 3304
  • 3305
  • 3306
  • 3307
  • 3308
  • 3309
  • 3310
  • 3311
  • 3312
  • 3313
  • 3314
  • 3315
  • 3316
  • 3317
  • 3318
  • 3319
  • 3320
  • 3321
  • 3322
  • 3323
  • 3324
  • 3325
  • 3326
  • 3327
  • 3328
  • 3329
  • 3330
  • 3331
  • 3332
  • 3333
  • 3334
  • 3335
  • 3336
  • 3337
  • 3338
  • 3339
  • 3340
  • 3341
  • 3342
  • 3343
  • 3344
  • 3345
  • 3346
  • 3347
  • 3348
  • 3349
  • 3350
  • 3351
  • 3352
  • 3353
  • 3354
  • 3355
  • 3356
  • 3357
  • 3358
  • 3359
  • 3360
  • 3361
  • 3362
  • 3363
  • 3364
  • 3365
  • 3366
  • 3367
  • 3368
  • 3369
  • 3370
  • 3371
  • 3372
  • 3373
  • 3374
  • 3375
  • 3376
  • 3377
  • 3378
  • 3379
  • 3380
  • 3381
  • 3382
  • 3383
  • 3384
  • 3385
  • 3386
  • 3387
  • 3388
  • 3389
  • 3390
  • 3391
  • 3392
  • 3393
  • 3394
  • 3395
  • 3396
  • 3397
  • 3398
  • 3399
  • 3400
  • 3401
  • 3402
  • 3403
  • 3404
  • 3405
  • 3406
  • 3407
  • 3408
  • 3409
  • 3410
  • 3411
  • 3412
  • 3413
  • 3414
  • 3415
  • 3416
  • 3417
  • 3418
  • 3419
  • 3420
  • 3421
  • 3422
  • 3423
  • 3424
  • 3425
  • 3426
  • 3427
  • 3428
  • 3429
  • 3430
  • 3431
  • 3432
  • 3433
  • 3434
  • 3435
  • 3436
  • 3437
  • 3438
  • 3439
  • 3440
  • 3441
  • 3442
  • 3443
  • 3444
  • 3445
  • 3446
  • 3447
  • 3448
  • 3449
  • 3450
  • 3451
  • 3452
  • 3453
  • 3454
  • 3455
  • 3456
  • 3457
  • 3458
  • 3459
  • 3460
  • 3461
  • 3462
  • 3463
  • 3464
  • 3465
  • 3466
  • 3467
  • 3468
  • 3469
  • 3470
  • 3471
  • 3472
  • 3473
  • 3474
  • 3475
  • 3476
  • 3477
  • 3478
  • 3479
  • 3480
  • 3481
  • 3482
  • 3483
  • 3484
  • 3485
  • 3486
  • 3487
  • 3488
  • 3489
  • 3490
  • 3491
  • 3492
  • 3493
  • 3494
  • 3495
  • 3496
  • 3497
  • 3498
  • 3499
  • 3500
  • 3501
  • 3502
  • 3503
  • 3504
  • 3505
  • 3506
  • 3507
  • 3508
  • 3509
  • 3510
  • 3511
  • 3512
  • 3513
  • 3514
  • 3515
  • 3516
  • 3517
  • 3518
  • 3519
  • 3520
  • 3521
  • 3522
  • 3523
  • 3524
  • 3525
  • 3526
  • 3527
  • 3528
  • 3529
  • 3530
  • 3531
  • 3532
  • 3533
  • 3534
  • 3535
  • 3536
  • 3537
  • 3538
  • 3539
  • 3540
  • 3541
  • 3542
  • 3543
  • 3544
  • 3545
  • 3546
  • 3547
  • 3548
  • 3549
  • 3550
  • 3551
  • 3552
  • 3553
  • 3554
  • 3555
  • 3556
  • 3557
  • 3558
  • 3559
  • 3560
  • 3561
  • 3562
  • 3563
  • 3564
  • 3565
  • 3566
  • 3567
  • 3568
  • 3569
  • 3570
  • 3571
  • 3572
  • 3573
  • 3574
  • 3575
  • 3576
  • 3577
  • 3578
  • 3579
  • 3580
  • 3581
  • 3582
  • 3583
  • 3584
  • 3585
  • 3586
  • 3587
  • 3588
  • 3589
  • 3590
  • 3591
  • 3592
  • 3593
  • 3594
  • 3595
  • 3596
  • 3597
  • 3598
  • 3599
  • 3600
  • 3601
  • 3602
  • 3603
  • 3604
  • 3605
  • 3606
  • 3607
  • 3608
  • 3609
  • 3610
  • 3611
  • 3612
  • 3613
  • 3614
  • 3615
  • 3616
  • 3617
  • 3618
  • 3619
  • 3620
  • 3621
  • 3622
  • 3623
  • 3624
  • 3625
  • 3626
  • 3627
  • 3628
  • 3629
  • 3630
  • 3631
  • 3632
  • 3633
  • 3634
  • 3635
  • 3636
  • 3637
  • 3638
  • 3639
  • 3640
  • 3641
  • 3642
  • 3643
  • 3644
  • 3645
  • 3646
  • 3647
  • 3648
  • 3649
  • 3650
  • 3651
  • 3652
  • 3653
  • 3654
  • 3655
  • 3656
  • 3657
  • 3658
  • 3659
  • 3660
  • 3661
  • 3662
  • 3663
  • 3664
  • 3665
  • 3666
  • 3667
  • 3668
  • 3669
  • 3670
  • 3671
  • 3672
  • 3673
  • 3674
  • 3675
  • 3676
  • 3677
  • 3678
  • 3679
  • 3680
  • 3681
  • 3682
  • 3683
  • 3684
  • 3685
  • 3686
  • 3687
  • 3688
  • 3689
  • 3690
  • 3691
  • 3692
  • 3693
  • 3694
  • 3695
  • 3696
  • 3697
  • 3698
  • 3699
  • 3700
  • 3701
  • 3702
  • 3703
  • 3704
  • 3705
  • 3706
  • 3707
  • 3708
  • 3709
  • 3710
  • 3711
  • 3712
  • 3713
  • 3714
  • 3715
  • 3716
  • 3717
  • 3718
  • 3719
  • 3720
  • 3721
  • 3722
  • 3723
  • 3724
  • 3725
  • 3726
  • 3727
  • 3728
  • 3729
  • 3730
  • 3731
  • 3732
  • 3733
  • 3734
  • 3735
  • 3736
  • 3737
  • 3738
  • 3739
  • 3740
  • 3741
  • 3742
  • 3743
  • 3744
  • 3745
  • 3746
  • 3747
  • 3748
  • 3749
  • 3750
  • 3751
  • 3752
  • 3753
  • 3754
  • 3755
  • 3756
  • 3757
  • 3758
  • 3759
  • 3760
  • 3761
  • 3762
  • 3763
  • 3764
  • 3765
  • 3766
  • 3767
  • 3768
  • 3769
  • 3770
  • 3771
  • 3772
  • 3773
  • 3774
  • 3775
  • 3776
  • 3777
  • 3778
  • 3779
  • 3780
  • 3781
  • 3782
  • 3783
  • 3784
  • 3785
  • 3786
  • 3787
  • 3788
  • 3789
  • 3790
  • 3791
  • 3792
  • 3793
  • 3794
  • 3795
  • 3796
  • 3797
  • 3798
  • 3799
  • 3800
  • 3801
  • 3802
  • 3803
  • 3804
  • 3805
  • 3806
  • 3807
  • 3808
  • 3809
  • 3810
  • 3811
  • 3812
  • 3813
  • 3814
  • 3815
  • 3816
  • 3817
  • 3818
  • 3819
  • 3820
  • 3821
  • 3822
  • 3823
  • 3824
  • 3825
  • 3826
  • 3827
  • 3828
  • 3829
  • 3830
  • 3831
  • 3832
  • 3833
  • 3834
  • 3835
  • 3836
  • 3837
  • 3838
  • 3839
  • 3840
  • 3841
  • 3842
  • 3843
  • 3844
  • 3845
  • 3846
  • 3847
  • 3848
  • 3849
  • 3850
  • 3851
  • 3852
  • 3853
  • 3854
  • 3855
  • 3856
  • 3857
  • 3858
  • 3859
  • 3860
  • 3861
  • 3862
  • 3863
  • 3864
  • 3865
  • 3866
  • 3867
  • 3868
  • 3869
  • 3870
  • 3871
  • 3872
  • 3873
  • 3874
  • 3875
  • 3876
  • 3877
  • 3878
  • 3879
  • 3880
  • 3881
  • 3882
  • 3883
  • 3884
  • 3885
  • 3886
  • 3887
  • 3888
  • 3889
  • 3890
  • 3891
  • 3892
  • 3893
  • 3894
  • 3895
  • 3896
  • 3897
  • 3898
  • 3899
  • 3900
  • 3901
  • 3902
  • 3903
  • 3904
  • 3905
  • 3906
  • 3907
  • 3908
  • 3909
  • 3910
  • 3911
  • 3912
  • 3913
  • 3914
  • 3915
  • 3916
  • 3917
  • 3918
  • 3919
  • 3920
  • 3921
  • 3922
  • 3923
  • 3924
  • 3925
  • 3926
  • 3927
  • 3928
  • 3929
  • 3930
  • 3931
  • 3932
  • 3933
  • 3934
  • 3935
  • 3936
  • 3937
  • 3938
  • 3939
  • 3940
  • 3941
  • 3942
  • 3943
  • 3944
  • 3945
  • 3946
  • 3947
  • 3948
  • 3949
  • 3950
  • 3951
  • 3952
  • 3953
  • 3954
  • 3955
  • 3956
  • 3957
  • 3958
  • 3959
  • 3960
  • 3961
  • 3962
  • 3963
  • 3964
  • 3965
  • 3966
  • 3967
  • 3968
  • 3969
  • 3970
  • 3971
  • 3972
  • 3973
  • 3974
  • 3975
  • 3976
  • 3977
  • 3978
  • 3979
  • 3980
  • 3981
  • 3982
  • 3983
  • 3984
  • 3985
  • 3986
  • 3987
  • 3988
  • 3989
  • 3990
  • 3991
  • 3992
  • 3993
  • 3994
  • 3995
  • 3996
  • 3997
  • 3998
  • 3999
  • 4000
  • 4001
  • 4002
  • 4003
  • 4004
  • 4005
  • 4006
  • 4007
  • 4008
  • 4009
  • 4010
  • 4011
  • 4012
  • 4013
  • 4014
  • 4015
  • 4016
  • 4017
  • 4018
  • 4019
  • 4020
  • 4021
  • 4022
  • 4023
  • 4024
  • 4025
  • 4026
  • 4027
  • 4028
  • 4029
  • 4030
  • 4031
  • 4032
  • 4033
  • 4034
  • 4035
  • 4036
  • 4037
  • 4038
  • 4039
  • 4040
  • 4041
  • 4042
  • 4043
  • 4044
  • 4045
  • 4046
  • 4047
  • 4048
  • 4049
  • 4050
  • 4051
  • 4052
  • 4053
  • 4054
  • 4055
  • 4056
  • 4057
  • 4058
  • 4059
  • 4060
  • 4061
  • 4062
  • 4063
  • 4064
  • 4065
  • 4066
  • 4067
  • 4068
  • 4069
  • 4070
  • 4071
  • 4072
  • 4073
  • 4074
  • 4075
  • 4076
  • 4077
  • 4078
  • 4079
  • 4080
  • 4081
  • 4082
  • 4083
  • 4084
  • 4085
  • 4086
  • 4087
  • 4088
  • 4089
  • 4090
  • 4091
  • 4092
  • 4093
  • 4094
  • 4095
  • 4096
  • 4097
  • 4098
  • 4099
  • 4100
  • 4101
  • 4102
  • 4103
  • 4104
  • 4105
  • 4106
  • 4107
  • 4108
  • 4109
  • 4110
  • 4111
  • 4112
  • 4113
  • 4114
  • 4115
  • 4116
  • 4117
  • 4118
  • 4119
  • 4120
  • 4121
  • 4122
  • 4123
  • 4124
  • 4125
  • 4126
  • 4127
  • 4128
  • 4129
  • 4130
  • 4131
  • 4132
  • 4133
  • 4134
  • 4135
  • 4136
  • 4137
  • 4138
  • 4139
  • 4140
  • 4141
  • 4142
  • 4143
  • 4144
  • 4145
  • 4146
  • 4147
  • 4148
  • 4149
  • 4150
  • 4151
  • 4152
  • 4153
  • 4154
  • 4155
  • 4156
  • 4157
  • 4158
  • 4159
  • 4160
  • 4161
  • 4162
  • 4163
  • 4164
  • 4165
  • 4166
  • 4167
  • 4168
  • 4169
  • 4170
  • 4171
  • 4172
  • 4173
  • 4174
  • 4175
  • 4176
  • 4177
  • 4178
  • 4179
  • 4180
  • 4181
  • 4182
  • 4183
  • 4184
  • 4185
  • 4186
  • 4187
  • 4188
  • 4189
  • 4190
  • 4191
  • 4192
  • 4193
  • 4194
  • 4195
  • 4196
  • 4197
  • 4198
  • 4199
  • 4200
  • 4201
  • 4202
  • 4203
  • 4204
  • 4205
  • 4206
  • 4207
  • 4208
  • 4209
  • 4210
  • 4211
  • 4212
  • 4213
  • 4214
  • 4215
  • 4216
  • 4217
  • 4218
  • 4219
  • 4220
  • 4221
  • 4222
  • 4223
  • 4224
  • 4225
  • 4226
  • 4227
  • 4228
  • 4229
  • 4230
  • 4231
  • 4232
  • 4233
  • 4234
  • 4235
  • 4236
  • 4237
  • 4238
  • 4239
  • 4240
  • 4241
  • 4242
  • 4243
  • 4244
  • 4245
  • 4246
  • 4247
  • 4248
  • 4249
  • 4250
  • 4251
  • 4252
  • 4253
  • 4254
  • 4255
  • 4256
  • 4257
  • 4258
  • 4259
  • 4260
  • 4261
  • 4262
  • 4263
  • 4264
  • 4265
  • 4266
  • 4267
  • 4268
  • 4269
  • 4270
  • 4271
  • 4272
  • 4273
  • 4274
  • 4275
  • 4276
  • 4277
  • 4278
  • 4279
  • 4280
  • 4281
  • 4282
  • 4283
  • 4284
  • 4285
  • 4286
  • 4287
  • 4288
  • 4289
  • 4290
  • 4291
  • 4292
  • 4293
  • 4294
  • 4295
  • 4296
  • 4297
  • 4298
  • 4299
  • 4300
  • 4301
  • 4302
  • 4303
  • 4304
  • 4305
  • 4306
  • 4307
  • 4308
  • 4309
  • 4310
  • 4311
  • 4312
  • 4313
  • 4314
  • 4315
  • 4316
  • 4317
  • 4318
  • 4319
  • 4320
  • 4321
  • 4322
  • 4323
  • 4324
  • 4325
  • 4326
  • 4327
  • 4328
  • 4329
  • 4330
  • 4331
  • 4332
  • 4333
  • 4334
  • 4335
  • 4336
  • 4337
  • 4338
  • 4339
  • 4340
  • 4341
  • 4342
  • 4343
  • 4344
  • 4345
  • 4346
  • 4347
  • 4348
  • 4349
  • 4350
  • 4351
  • 4352
  • 4353
  • 4354
  • 4355
  • 4356
  • 4357
  • 4358
  • 4359
  • 4360
  • 4361
  • 4362
  • 4363
  • 4364
  • 4365
  • 4366
  • 4367
  • 4368
  • 4369
  • 4370
  • 4371
  • 4372
  • 4373
  • 4374
  • 4375
  • 4376
  • 4377
  • 4378
  • 4379
  • 4380
  • 4381
  • 4382
  • 4383
  • 4384
  • 4385
  • 4386
  • 4387
  • 4388
  • 4389
  • 4390
  • 4391
  • 4392
  • 4393
  • 4394
  • 4395
  • 4396
  • 4397
  • 4398
  • 4399
  • 4400
  • 4401
  • 4402
  • 4403
  • 4404
  • 4405
  • 4406
  • 4407
  • 4408
  • 4409
  • 4410
  • 4411
  • 4412
  • 4413
  • 4414
  • 4415
  • 4416
  • 4417
  • 4418
  • 4419
  • 4420
  • 4421
  • 4422
  • 4423
  • 4424
  • 4425
  • 4426
  • 4427
  • 4428
  • 4429
  • 4430
  • 4431
  • 4432
  • 4433
  • 4434
  • 4435
  • 4436
  • 4437
  • 4438
  • 4439
  • 4440
  • 4441
  • 4442
  • 4443
  • 4444
  • 4445
  • 4446
  • 4447
  • 4448
  • 4449
  • 4450
  • 4451
  • 4452
  • 4453
  • 4454
  • 4455
  • 4456
  • 4457
  • 4458
  • 4459
  • 4460
  • 4461
  • 4462
  • 4463
  • 4464
  • 4465
  • 4466
  • 4467
  • 4468
  • 4469
  • 4470
  • 4471
  • 4472
  • 4473
  • 4474
  • 4475
  • 4476
  • 4477
  • 4478
  • 4479
  • 4480
  • 4481
  • 4482
  • 4483
  • 4484

选择一个浏览器打开如图所示:
在这里插入图片描述
可自由拖拽调整布局
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

四、分析结论

  1. 房子的均价主要集中在17646元,总价146-172万元附近,其中总价107万元左右的房子也很多,面积区间【120-150】的均价比【90-120】的还要低些,3室的单价和2室的也没差多少,说明购房者的需求主要是3室及面积区间【60-120】的房子;
  2. 从图中可以看出,最贵的小区是西北湖一号御玺湾,其次是都会轩、泛海国际居住区松海园、世纪江尚;
  3. 待售数量最多的建筑年份是2019年,至今没超过5年,占比21.29%,之前年份的明显少了很多,应该是跟满二的政策有关系;
  4. 二手房的单价跟房子面积并不是呈线性相关的关系,也即不是面积越大,单价越高,房子单价的高点出现在150-200平方这个区间,然后随着面积逐渐增大单价呈逐渐下降趋势,因此是一个曲线相关的关系;
  5. 从地图上可以很直观的看到,江岸区的平均房价是最高的,其次是武昌区和江汉区,东西湖区均价是最低的;
  6. 从词云图我们可以看到,交通、朝向是购房者第一位关注的房子信息,其次是是否满五(二)唯一、是否新房、是否精装修等。

注意:由于爬取数据不完整,所以不能保证最后的分析结论准确,只是简单的提供分析思路和方法。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/478400
推荐阅读
相关标签
  

闽ICP备14008679号