Full Code of xxcosmos/buy_pig_plan_python for AI

master 92fb5b894b2e cached
22 files
8.5 MB
2.2M tokens
7 symbols
1 requests
Copy disabled (too large) Download .txt
Showing preview only (10,026K chars total). Download the full file to get everything.
Repository: xxcosmos/buy_pig_plan_python
Branch: master
Commit: 92fb5b894b2e
Files: 22
Total size: 8.5 MB

Directory structure:
gitextract_2cmk1s23/

├── .gitignore
├── LICENSE
├── README.md
├── assets/
│   ├── baidu_lxb.json
│   ├── baidu_lxb_20000.json
│   ├── baidu_lxb_30000.json
│   ├── baidu_lxb_40000.json
│   ├── baidu_lxb_50000.json
│   ├── baidu_lxb_60000.json
│   ├── baidu_lxb_70000.json
│   ├── baidu_lxb_80000.json
│   ├── baidu_lxb_90000.json
│   ├── baidu_shangqiao.json
│   ├── baidu_shangqiao_40000.json
│   ├── baidu_shangqiao_50000.json
│   ├── baidu_shangqiao_60000.json
│   ├── baidu_shangqiao_70000.json
│   ├── baidu_shangqiao_80000.json
│   └── baidu_shangqiao_90000.json
├── config.py
├── main.py
└── task.py

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
# Created by .ignore support plugin (hsz.mobi)
local_config.py

### JetBrains template
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf

# Generated files
.idea/**/contentModel.xml

# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml

# Gradle
.idea/**/gradle.xml
.idea/**/libraries

# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn.  Uncomment if using
# auto-import.
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr

# CMake
cmake-build-*/

# Mongo Explorer plugin
.idea/**/mongoSettings.xml

# File-based project format
*.iws

# IntelliJ
out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Cursive Clojure plugin
.idea/replstate.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

# Editor-based Rest Client
.idea/httpRequests

# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser

### macOS template
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

### Python template
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
#  Usually these files are written by a python script from a template
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
#   However, in case of collaboration, if having platform-specific dependencies or dependencies
#   having no cross-platform support, pipenv may install dependencies that don't work, or not
#   install all needed dependencies.
#Pipfile.lock

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

.idea/.gitignore
.idea/inspectionProfiles/
.idea/misc.xml
.idea/modules.xml
.idea/revenge_plan.iml
.idea/vcs.xml


================================================
FILE: LICENSE
================================================
MIT License

Copyright (c) 2020 Xiaoyuu

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


================================================
FILE: README.md
================================================
# buy_pig_plan_python
>本项目是 [buy_pig_plan | 买猪计划](https://github.com/aqiongbei/buy_pig_plan) 的 Python 实现版。

首先非常感谢原作者提供的思路:通过爬取使用「百度商桥」这一营销组件的企业,
我们可以得到数以万计真实企业的网址。
并通过程序模拟浏览,可以将攻击信息给到这些企业。最终达到「电话攻击」的目的。
## 声明
本项目仅供学习交流使用,勿作商业或非法用途。
## 使用教程
1. 下载
    ```shell script
     $ git clone https://github.com/xxcosmos/buy_pig_plan_python.git
    ```
2. 安装 Selenium
   ```shell script
   $ pip3 install selenium
   ```
   安装 Selenium 之后,**需要安装对应浏览器的 Driver** ,参见 Selenium 文档 [1.3 节](https://selenium-python.readthedocs.io/installation.html#drivers)。 
    >Seleium 具体的介绍及使用方法可参见 [Selenium 文档](https://selenium-python.readthedocs.io)。

3. 配置

    配置文件为`config.py`,参数说明如下:
   ```python
   """
   攻击对象信息
   """ 
   target = { 
       "phone": "13012345678",             # 手机号
       "name": "小小明",                    # 姓名
       "email": "xx@xx.xx",                # 邮箱
       "address": "宇宙银河太阳系地球村",     # 地址
       "comment": "你好 不会~"             # 留言信息
   }
   
   """
   参数设置
   """
   settings = {
       "times": 100,                 # 攻击次数
       "timeout": 5,                 # 超时
       "driver":webdriver.Firefox(), # 使用的 driver
   }
   ```

4. 运行程序
    ```shell script
    $ python3 buy_pig_plan/main.py
    ```
5. Enjoy!

    运行截图:
    
    ![运行截图](result.png)

## 目录说明
```shell script
buy_pig_plan_python
│  
├── assets      //资源文件: 公司名称及对应网址. 感谢原作者爬取.
│   ├── baidu_lxb.json
│   ├── baidu_lxb_20000.json
│   ├── baidu_lxb_30000.json
│   ├── baidu_lxb_40000.json
│   ├── baidu_lxb_50000.json
│   ├── baidu_lxb_60000.json
│   ├── baidu_lxb_70000.json
│   ├── baidu_lxb_80000.json
│   ├── baidu_lxb_90000.json
│   ├── baidu_shangqiao.json
│   ├── baidu_shangqiao_40000.json
│   ├── baidu_shangqiao_50000.json
│   ├── baidu_shangqiao_60000.json
│   ├── baidu_shangqiao_70000.json
│   ├── baidu_shangqiao_80000.json
│   └── baidu_shangqiao_90000.json
├── config.py     // 配置文件
├── task.py       // 处理页面代码
└── main.py       // 主程序
```
## TODO
1. 使用 PyQt5 实现用户界面。
2. 定时任务。
3. 使用 「HTTP 请求」替代「模拟浏览」。
## 感谢
原作者: [@aqiongbei](https://github.com/aqiongbei)
## 许可
MIT

================================================
FILE: assets/baidu_lxb.json
================================================
[
    {
        "name": "合肥零零肆捌餐饮管理有限公司",
        "url": "http://www.0048xlx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_6"
    },
    {
        "name": "深圳市南山区犬霸宠物商行",
        "url": "http://www.quanba521.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_7"
    },
    {
        "name": "郑州市程师傅涂料有限公司",
        "url": "http://www.nizi88.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_8"
    },
    {
        "name": "武汉雅客居门窗有限公司",
        "url": "http://www.mumen66.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_10"
    },
    {
        "name": "河北双鑫体育设施工程有限公司",
        "url": "http://lanqiuguanmudiban.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_11"
    },
    {
        "name": "江苏燎原活性炭有限公司",
        "url": "http://www.hxtly.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_12"
    },
    {
        "name": "信翼在心(北京)科技有限公司",
        "url": "http://www.atheartxinyi.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_14"
    },
    {
        "name": "潍坊华贝口腔医疗有限公司",
        "url": "http://www.wfhbkq.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_15"
    },
    {
        "name": "延吉市郎氏大缸烧烤店",
        "url": "http://www.lsglx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_16"
    },
    {
        "name": "乐山市医药科技学校",
        "url": "http://www.lsykx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_17"
    },
    {
        "name": "巩义市三高机械厂",
        "url": "http://www.htqpj.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_19"
    },
    {
        "name": "萍乡市豫章装饰设计工程有限公司",
        "url": "http://www.jxyzzs.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_20"
    },
    {
        "name": "四川美丽坊网络科技有限公司",
        "url": "http://www.taopuwang.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_21"
    },
    {
        "name": "武汉甲康医院有限公司",
        "url": "http://www.027jiakang.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_22"
    },
    {
        "name": "江阴市辉能机械有限公司",
        "url": "http://www.jyshnjx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_23"
    },
    {
        "name": "北京曼博尔膜结构技术有限公司",
        "url": "http://www.manboer.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_24"
    },
    {
        "name": "成都市灌州之味餐饮管理有限公司",
        "url": "http://www.lbdccx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_25"
    },
    {
        "name": "石家庄欢然服饰销售有限公司",
        "url": "http://www.anzug.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_27"
    },
    {
        "name": "济南医博肛肠医院",
        "url": "http://www.0531gcw.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_28"
    },
    {
        "name": "上海乐相科技有限公司",
        "url": "http://www.dpvr.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_29"
    },
    {
        "name": "沈阳市沈河区优仕教育培训中心",
        "url": "http://www.lnysjy.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_30"
    },
    {
        "name": "深圳市净得宝环保设备有限公司",
        "url": "http://www.jingdebao.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_31"
    },
    {
        "name": "贵州世纪远诚管理咨询有限公司",
        "url": "http://www.gzych9001.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_32"
    },
    {
        "name": "陕西润之彩商贸有限公司",
        "url": "http://www.runzcai.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_33"
    },
    {
        "name": "中教未来国际教育科技(北京)有限公司",
        "url": "http://www.cufeedu.net/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_34"
    },
    {
        "name": "长沙恒信供水设备有限公司",
        "url": "http://www.cshxgs.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_35"
    },
    {
        "name": "北京城艺商务咨询有限公司",
        "url": "http://www.icp01.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_37"
    },
    {
        "name": "武汉丽康宝贝文化传媒有限公司",
        "url": "http://www.lkbb.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_38"
    },
    {
        "name": "南阳盛通防爆电机电器有限公司",
        "url": "http://www.shengtongex.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_40"
    },
    {
        "name": "济宁中科矿山机械厂",
        "url": "http://www.jnzkjx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_41"
    },
    {
        "name": "江苏双志新能源有限公司",
        "url": "http://www.suntch.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_42"
    },
    {
        "name": "国康墙纸经营部",
        "url": "http://www.nuomi.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_44"
    },
    {
        "name": "武汉谱镭光电科技有限公司",
        "url": "http://www.whplgd.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_45"
    },
    {
        "name": "江苏安华警用装备制造有限公司",
        "url": "http://www.jyzb.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_46"
    },
    {
        "name": "原春宇",
        "url": "http://www.vip-kanfang.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_48"
    },
    {
        "name": "珠海市永恒非常婚礼摄影有限公司",
        "url": "http://www.v-wedding.cc/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_49"
    },
    {
        "name": "北京时代清大教育科技有限公司",
        "url": "http://www.qingdajiaoyu.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_50"
    },
    {
        "name": "程力专用汽车股份有限公司销售一分公司",
        "url": "http://www.chinacarsz.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_51"
    },
    {
        "name": "武汉瑞德特文化传播有限公司分公司",
        "url": "http://www.ruidete-edu.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_52"
    },
    {
        "name": "石家庄达林科技有限公司",
        "url": "http://www.hebtouch.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_53"
    },
    {
        "name": "北京天韵泰和文化传播有限公司",
        "url": "http://www.ziguqy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_54"
    },
    {
        "name": "安徽元冠教育科技有限公司",
        "url": "http://www.ygxlts.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_56"
    },
    {
        "name": "骏焱(上海)投资有限公司",
        "url": "http://www.021dichan.net/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_58"
    },
    {
        "name": "合肥天工标识标牌有限公司",
        "url": "http://www.tgbs360.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_59"
    },
    {
        "name": "河南暖乐邦电器维修有限公司",
        "url": "http://www.nuan360.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_60"
    },
    {
        "name": "福建省仙游县莱安金丝楠古典家具有限公司",
        "url": "http://laianxianjing.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_61"
    },
    {
        "name": "广州圆梦烘焙职业技能培训有限公司",
        "url": "http://www.gzhbpx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_62"
    },
    {
        "name": "亚太国际商务(香港)有限公司",
        "url": "http://www.hkaqi.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_63"
    },
    {
        "name": "亚太国际商务(香港)有限公司",
        "url": "http://www.hkaqi.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_64"
    },
    {
        "name": "佛山市南海欧迪克五金制品有限公司",
        "url": "http://www.chinaodick.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_65"
    },
    {
        "name": "广州市拉斐尔装饰材料有限公司",
        "url": "http://www.rofeel-china.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_66"
    },
    {
        "name": "中旅体育旅行社有限公司北京朝阳团结湖营业部",
        "url": "http://www.wojiaqi.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_68"
    },
    {
        "name": "重庆中国青年旅行社有限公司",
        "url": "http://www.zgyts.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_69"
    },
    {
        "name": "北京华艺非凡家具有限公司",
        "url": "http://www.hyffjj.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_70"
    },
    {
        "name": "广州集和品牌管理顾问股份有限公司",
        "url": "http://www.bicobrand.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_71"
    },
    {
        "name": "成都责商教育咨询有限公司",
        "url": "http://www.rqe365.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_73"
    },
    {
        "name": "广州旭众食品机械有限公司",
        "url": "http://www.yamaca.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_74"
    },
    {
        "name": "河北普乐泵业科技有限公司",
        "url": "http://www.plpump.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_75"
    },
    {
        "name": "单县华远家庭农场",
        "url": "http://www.mlusun.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_76"
    },
    {
        "name": "裕华区阳光宝贝摄影部",
        "url": "http://www.sunnybaby.cc",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_77"
    },
    {
        "name": "揭阳南方医院",
        "url": "http://www.jynfjk.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_78"
    },
    {
        "name": "重庆骑士医院",
        "url": "http://kc.3t36.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_79"
    },
    {
        "name": "武侯区名爵装饰材料经营部",
        "url": "http://www.mingjueditan.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_80"
    },
    {
        "name": "重庆友车乐汽车销售有限公司",
        "url": "http://www.qchsw.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_81"
    },
    {
        "name": "河北源丰管道制造有限公司",
        "url": "http://hebeiyuanfeng.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_83"
    },
    {
        "name": "深圳天天惠科技有限公司",
        "url": "http://www.365hui.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_84"
    },
    {
        "name": "盐城市亭湖区城西飞之羽家禽经营部",
        "url": "http://www.emiao55.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_85"
    },
    {
        "name": "郑州天瑞矿山机械有限公司",
        "url": "http://www.zztrzg.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_86"
    },
    {
        "name": "湖北随州合力汽车销售有限公司",
        "url": "http://www.gzczz.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_88"
    },
    {
        "name": "南通和美家妇产科医院有限公司",
        "url": "http://www.120hmj.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_89"
    },
    {
        "name": "南京曼卡特科技有限公司",
        "url": "http://www.njmkt.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_90"
    },
    {
        "name": "广西南宁童梦气球装饰艺术有限公司",
        "url": "http://www.tmqq88.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_92"
    },
    {
        "name": "妆备捷信息咨询(北京)有限公司",
        "url": "http://www.cosrapid.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_94"
    },
    {
        "name": "新密市市区顺丰通讯店",
        "url": "http://www.hngdsyw.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_98"
    },
    {
        "name": "合肥纽贝泉电器有限公司",
        "url": "http://hfnbq.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_99"
    },
    {
        "name": "深圳市罗湖区金诚电脑科技经营部",
        "url": "http://www.baidujincheng.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_100"
    },
    {
        "name": "深圳母婴部落妇幼用品有限公司",
        "url": "http://www.szmybl.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_101"
    },
    {
        "name": "深圳市华迈环保有限公司",
        "url": "http://www.lstjsq.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_102"
    },
    {
        "name": "中山市三乡镇闽匠家具店",
        "url": "http://www.minjiangzs.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_104"
    },
    {
        "name": "上海渤申投资管理有限公司",
        "url": "http://www.haofang9898.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_105"
    },
    {
        "name": "佛山市格律斯装饰工程有限公司",
        "url": "http://www.gelvsigd.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_106"
    },
    {
        "name": "青岛海誉科创智能设备有限公司",
        "url": "http://www.haiyu0532.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_107"
    },
    {
        "name": "徐州净沐森环保科技有限公司",
        "url": "http://www.jingmusen.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_108"
    },
    {
        "name": "江苏亚梅泵业集团有限公司",
        "url": "http://www.jsyamei.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_109"
    },
    {
        "name": "武警江西省总队医院",
        "url": "http://www.029jkk.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_110"
    },
    {
        "name": "昆明康辉永立旅行社有限公司永胜路门市部",
        "url": "http://www.ukanghui.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_111"
    },
    {
        "name": "上海雄闻乐器有限公司",
        "url": "http://www.kdspiano.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_113"
    },
    {
        "name": "长沙标朗住工科技有限公司",
        "url": "http://www.chaozaoni.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_115"
    },
    {
        "name": "西安天瑞财务咨询有限公司",
        "url": "http://www.xa-tianrui.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_116"
    },
    {
        "name": "临漳县轩洋碳素有限公司",
        "url": "http://www.hdxyts.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_117"
    },
    {
        "name": "北京中科瑞丰科技有限公司",
        "url": "http://www.bjxyz.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_118"
    },
    {
        "name": "上海奋励物业管理有限公司",
        "url": "http://www.fenlicn.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_119"
    },
    {
        "name": "南京阿达尔电子科技有限公司",
        "url": "http://www.adaer.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_120"
    },
    {
        "name": "北京易盟天地信息技术股份有限公司",
        "url": "http://www.jtfw.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_122"
    },
    {
        "name": "江苏鹏殿机械有限公司",
        "url": "http://www.pengdianjixie.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_123"
    },
    {
        "name": "青岛东方凯德钢结构有限公司",
        "url": "http://www.qddfkd.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_125"
    },
    {
        "name": "河南金佑财富企业管理有限公司",
        "url": "http://www.jycfdk.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_126"
    },
    {
        "name": "河北祥清汗蒸房安装有限公司",
        "url": "http://www.18608888.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_129"
    },
    {
        "name": "武汉快客帮商务服务有限公司",
        "url": "http://quickbrother.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_131"
    },
    {
        "name": "秦皇岛老王头企业管理有限公司",
        "url": "http://www.lwtjz.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_132"
    },
    {
        "name": "北京晨星农教育科技有限公司",
        "url": "http://www.nzpx.org",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_133"
    },
    {
        "name": "刘江华",
        "url": "http://www.ncxyty.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_134"
    },
    {
        "name": "上海逻迅信息科技有限公司",
        "url": "http://www.gvim.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_135"
    },
    {
        "name": "北京宝云兴业科贸有限公司",
        "url": "http://www.byxy.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_137"
    },
    {
        "name": "长沙富兰通信科技有限公司",
        "url": "http://hns189.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_138"
    },
    {
        "name": "武汉恒久远制管有限公司",
        "url": "http://www.jdgguan.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_139"
    },
    {
        "name": "侦翔机电科技(上海)有限公司",
        "url": "http://www.zensant.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_140"
    },
    {
        "name": "中山市金资讯房地产代理有限公司",
        "url": "http://www.szgf.cc/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_141"
    },
    {
        "name": "西安阿莫科商贸有限公司",
        "url": "http://www.amoke-china.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_142"
    },
    {
        "name": "遵义汇川欧亚医院",
        "url": "http://www.zyoynk120.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_144"
    },
    {
        "name": "西安中宏建筑工程有限公司",
        "url": "http://www.sxzho.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_145"
    },
    {
        "name": "上海市外联因私出入境服务有限公司",
        "url": "http://www.wailianvisa.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_146"
    },
    {
        "name": "深圳市普恩科技有限公司",
        "url": "http://www.salens.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_147"
    },
    {
        "name": "河北公美金属丝网制品有限公司",
        "url": "http://gongmeisw.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_148"
    },
    {
        "name": "深圳市影龙文化传播有限公司",
        "url": "http://www.v-dragon.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_149"
    },
    {
        "name": "深圳市合昌机电有限公司",
        "url": "http://www.hckt88.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_150"
    },
    {
        "name": "成都华医皮肤医学研究门诊部有限公司",
        "url": "http://www.cdhxpfb.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_151"
    },
    {
        "name": "广州博艺企业管理有限公司",
        "url": "http://www.boyi886.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_152"
    },
    {
        "name": "嘉祥县亿丰石业有限公司",
        "url": "http://www.mengxianbing.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_153"
    },
    {
        "name": "上海鑫桥大通投资管理有限公司",
        "url": "http://www.58jinqiao.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_154"
    },
    {
        "name": "西安艺星医疗美容医院",
        "url": "http://www.yestarwzh.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_155"
    },
    {
        "name": "深圳中科大智航空技术有限公司",
        "url": "http://www.zoomkee.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_157"
    },
    {
        "name": "广州峰磊石油化工有限公司",
        "url": "http://www.gzflsy.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_158"
    },
    {
        "name": "无锡欣叶豪化工有限公司",
        "url": "http://www.wx-xyhhg.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_159"
    },
    {
        "name": "江阴市合威塑业有限公司",
        "url": "http://www.jyhwsy.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_161"
    },
    {
        "name": "北京合泰嘉业商贸有限公司",
        "url": "http://www.bjhtjykt.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_162"
    },
    {
        "name": "广州市白云区亮欣灯箱工艺厂",
        "url": "http://www.gz-lx.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_163"
    },
    {
        "name": "佛山市顺德区捷鼎机械设备有限公司",
        "url": "http://www.jiedingjixie.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_165"
    },
    {
        "name": "西安轨道交通技工学校",
        "url": "http://www.xaguidao.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_167"
    },
    {
        "name": "景慧龙",
        "url": "http://www.slwszs.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_168"
    },
    {
        "name": "广州信弘电子科技有限公司",
        "url": "http://www.sinhoolcd.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_170"
    },
    {
        "name": "石家庄千禧广告装饰有限公司",
        "url": "http://www.chinaqxgg.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_171"
    },
    {
        "name": "武汉新俊鑫灯光音响工程有限公司",
        "url": "http://www.whxjxyx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_172"
    },
    {
        "name": "广州市胜璐化工有限公司",
        "url": "http://www.gzslhg.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_173"
    },
    {
        "name": "苏州瑞厚金属材料有限公司",
        "url": "http://www.ruihou.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_174"
    },
    {
        "name": "江西合昌实业有限公司",
        "url": "http://www.jx-jh.net/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_175"
    },
    {
        "name": "河北九月橘子餐饮管理有限公司",
        "url": "http://www.hbjyjz.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_176"
    },
    {
        "name": "深圳市四方源实业有限公司",
        "url": "http://www.sfychina.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_177"
    },
    {
        "name": "刘江云",
        "url": "http://www.lawzhiku.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_178"
    },
    {
        "name": "刘江云",
        "url": "http://www.lawzhiku.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_179"
    },
    {
        "name": "上海银基信息科技股份有限公司",
        "url": "http://www.yinji.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_180"
    },
    {
        "name": "北京乐氏联创科技有限公司",
        "url": "http://www.leshi-tech.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_182"
    },
    {
        "name": "上海尚映机电设备有限公司",
        "url": "http://www.fushengszm.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_183"
    },
    {
        "name": "广州市亿莱建材有限公司",
        "url": "http://www.gzyilai.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_184"
    },
    {
        "name": "深圳市拉夫尼无障碍设备有限公司",
        "url": "http://www.szlafuni.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_185"
    },
    {
        "name": "深圳市房兴电子科技有限公司",
        "url": "http://www.szposjiw.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_186"
    },
    {
        "name": "上海优舍文化传播有限公司",
        "url": "http://www.icolordesign.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_187"
    },
    {
        "name": "陕西盛邦赛福消防科技有限公司",
        "url": "http://www.sbxf119.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_188"
    },
    {
        "name": "杭州纵航科技有限公司",
        "url": "http://www.hzzhft.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_189"
    },
    {
        "name": "沈阳联创餐饮管理有限公司",
        "url": "http://www.dzrxb.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_190"
    },
    {
        "name": "广州瑞都投资管理有限公司",
        "url": "http://www.xgbh168.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_192"
    },
    {
        "name": "安徽中奥电气设备有限公司",
        "url": "http://www.ahjoao.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_193"
    },
    {
        "name": "上海博浦软件科技有限公司",
        "url": "http://www.bdqnbp.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_194"
    },
    {
        "name": "吉林省铭达丰节能建材有限公司",
        "url": "http://www.mdfjnjc.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_195"
    },
    {
        "name": "成都城北医院有限公司",
        "url": "http://www.cdcb120.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_196"
    },
    {
        "name": "济南山鼎工程机械有限公司",
        "url": "http://www.shandingjx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_197"
    },
    {
        "name": "深圳华普通用科技有限公司",
        "url": "http://www.hpge.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_198"
    },
    {
        "name": "惬意生活信息技术(武汉)有限公司",
        "url": "http://www.580ing.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_199"
    },
    {
        "name": "江苏华洲水务有限公司",
        "url": "http://www.js-jichuan.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_201"
    },
    {
        "name": "黑龙江医药卫生学校",
        "url": "http://www.hljyywx.org/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_202"
    },
    {
        "name": "深圳市洁盟清洗设备有限公司",
        "url": "http://www.skymen.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_204"
    },
    {
        "name": "河南利美特机械有限公司",
        "url": "http://www.hnlimit.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_205"
    },
    {
        "name": "青岛红房子妇科医院",
        "url": "http://www.hfz555.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_206"
    },
    {
        "name": "上海翰玺商工贸有限公司",
        "url": "http://www.karcherbiz.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_207"
    },
    {
        "name": "广州市祥达金属制品有限公司",
        "url": "http://www.gzxd128.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_209"
    },
    {
        "name": "济宁市求实种业有限责任公司",
        "url": "http://www.jyqy88.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_210"
    },
    {
        "name": "深圳市宝安区福永乐淘世界商品生活馆",
        "url": "http://www.shop6226.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_211"
    },
    {
        "name": "江西信泰科技有限公司",
        "url": "http://www.860791.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_212"
    },
    {
        "name": "昆明五华时代巨人教育培训学校",
        "url": "http://www.kmjuren.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_213"
    },
    {
        "name": "北京联和美承辅助生殖医疗技术服务有限公司",
        "url": "http://usfsac.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_214"
    },
    {
        "name": "北京英特威迅建筑装饰工程有限公司",
        "url": "http://www.china-innovation.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_215"
    },
    {
        "name": "上海雅力信息科技有限公司",
        "url": "http://www.rayedu.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_216"
    },
    {
        "name": "南通朗阁教育咨询有限公司",
        "url": "http://www.nantonglongre.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_217"
    },
    {
        "name": "淮北友好妇产医院",
        "url": "http://jj.hbyhfcw.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_218"
    },
    {
        "name": "北京北医华康信息技术研究院",
        "url": "http://www.zyjy-edu.org/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_219"
    },
    {
        "name": "深圳市秋康宏科技有限公司",
        "url": "http://www.qiukanghong.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_220"
    },
    {
        "name": "广州市胜富力电子科技有限公司",
        "url": "http://www.sfuli.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_224"
    },
    {
        "name": "新乡市勤工机械有限公司",
        "url": "http://www.qgrobot.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_225"
    },
    {
        "name": "甘肃玛丽亚妇科医院",
        "url": "http://fkmly.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_226"
    },
    {
        "name": "四川孺子牛教育咨询有限公司",
        "url": "http://www.rznpx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_229"
    },
    {
        "name": "潍坊泰洁环保水处理设备有限公司",
        "url": "http://www.wftjhb.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_230"
    },
    {
        "name": "上海冕昕电器有限公司",
        "url": "http://www.mxdianqi.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_231"
    },
    {
        "name": "郑州成龙教学设备有限公司",
        "url": "http://www.zzchenglong.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_232"
    },
    {
        "name": "吉林国健妇产医院",
        "url": "http://www.83152222.net/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_233"
    },
    {
        "name": "杭州捷配信息科技有限公司",
        "url": "http://www.jiepei.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_234"
    },
    {
        "name": "宝鸡市金台区万利机械设备厂",
        "url": "http://www.wanligs.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_235"
    },
    {
        "name": "杭州捷配信息科技有限公司",
        "url": "http://www.jiepei.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_236"
    },
    {
        "name": "深圳市晟枫包装机械有限公司",
        "url": "http://www.sf-858.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_237"
    },
    {
        "name": "南京沃克拉冷暖设备有限公司",
        "url": "http://www.vokera.cc",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_239"
    },
    {
        "name": "甘肃米粮川餐饮管理咨询有限公司",
        "url": "http://www.lzfgcnrm.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_240"
    },
    {
        "name": "广州市缔造亿百儿童用品有限公司",
        "url": "http://www.t100-kids.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_241"
    },
    {
        "name": "北京欧曼尚美装饰材料有限公司",
        "url": "http://www.oumanfloor.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_243"
    },
    {
        "name": "西安远大保温材料有限公司",
        "url": "http://www.xaydbw.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_246"
    },
    {
        "name": "济南远大中医脑康医院",
        "url": "http://jn.68855555.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_247"
    },
    {
        "name": "深圳华强电子交易网络有限公司",
        "url": "http://www.hqbuy.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_248"
    },
    {
        "name": "深圳市国人在线信息技术有限公司",
        "url": "http://www.36099.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_249"
    },
    {
        "name": "铜川市印台区富农园油牡丹种植农民专业社",
        "url": "http://www.funongyuan.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_250"
    },
    {
        "name": "佛山市南海高达建筑机械有限公司",
        "url": "http://www.gdcrane.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_251"
    },
    {
        "name": "北京靠谱前程网络技术有限公司",
        "url": "http://www.bangongyi.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_253"
    },
    {
        "name": "北京环球兴学科技发展有限公司",
        "url": "http://www.100yy.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_254"
    },
    {
        "name": "西宁长海医院",
        "url": "http://www.xnyynk.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_255"
    },
    {
        "name": "兴义西南骨科医院",
        "url": "http://www.xngk999.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_256"
    },
    {
        "name": "深圳市顿发科技有限公司",
        "url": "http://www.168yuanjian.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_257"
    },
    {
        "name": "海南中宅建筑装饰工程有限责任公司",
        "url": "http://www.hnzhongzhai.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_258"
    },
    {
        "name": "滕州市龙腾机械有限公司",
        "url": "http://www.sdltmc.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_259"
    },
    {
        "name": "北京光辉亮点门窗有限公司",
        "url": "http://www.bjgllyf.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_260"
    },
    {
        "name": "中山兴诺家具有限公司",
        "url": "http://www.zsxingnuo.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_261"
    },
    {
        "name": "广州影族数码科技有限公司",
        "url": "http://www.gzyywx.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_263"
    },
    {
        "name": "青岛商通天下网络科技有限公司",
        "url": "http://www.lu0532.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_264"
    },
    {
        "name": "成都集和品牌设计有限公司",
        "url": "http://www.bicobrandcd.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_266"
    },
    {
        "name": "城阳区正阳开锁服务部",
        "url": "http://www.zhengyangkaisuo.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_267"
    },
    {
        "name": "北京拓文翻译服务有限公司",
        "url": "http://www.tuowenfanyi.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_269"
    },
    {
        "name": "山东仁鼎信息科技有限公司",
        "url": "http://www.sdrdkj.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_270"
    },
    {
        "name": "北京亿腾教育科技有限公司",
        "url": "http://www.liuxue32.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_271"
    },
    {
        "name": "山西中智广播音响有限公司",
        "url": "http://eko-audio.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_272"
    },
    {
        "name": "海盛聚力河北网络科技有限公司",
        "url": "http://www.jidaitong.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_273"
    },
    {
        "name": "合肥豆豆园餐饮管理有限公司",
        "url": "http://hfdoudou.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_274"
    },
    {
        "name": "上海广柱装饰工程有限公司",
        "url": "http://www.gzmq188.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_276"
    },
    {
        "name": "北京易尚国际建筑装饰有限公司",
        "url": "http://www.eashong.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_277"
    },
    {
        "name": "武汉启学教育管理有限公司",
        "url": "http://www.zhichang51.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_279"
    },
    {
        "name": "北京尤萨洗涤设备有限公司",
        "url": "http://www.unisec.cc/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_280"
    },
    {
        "name": "武汉鼎峰博晟科技有限公司",
        "url": "http://www.whdfbs.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_281"
    },
    {
        "name": "广东亚材门窗幕墙有限公司",
        "url": "http://www.acgyc.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_282"
    },
    {
        "name": "中国康辉南京国际旅行社有限责任公司",
        "url": "http://www.njtrip.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_283"
    },
    {
        "name": "中国康辉南京国际旅行社有限责任公司",
        "url": "http://www.njtrip.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_284"
    },
    {
        "name": "长沙锁大师安防科技有限公司",
        "url": "http://www.suodashi.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_287"
    },
    {
        "name": "大连精瑞时钟表服务有限公司",
        "url": "http://www.watchfix.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_289"
    },
    {
        "name": "大连精瑞时钟表服务有限公司",
        "url": "http://www.watchfix.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_290"
    },
    {
        "name": "上海吉晟蜂实业有限公司",
        "url": "http://www.99baoban.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_291"
    },
    {
        "name": "上海嵩昱餐饮管理有限公司",
        "url": "http://www.willywonka.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_292"
    },
    {
        "name": "北京初趣科技有限公司",
        "url": "http://www.chuqulvxing.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_293"
    },
    {
        "name": "深圳市感觉统合信息咨询有限公司",
        "url": "http://www.jababy365.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_294"
    },
    {
        "name": "沈阳妙集广告设计有限公司",
        "url": "http://www.symiaoji.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_297"
    },
    {
        "name": "上海好孚工业设备有限公司",
        "url": "http://www.holfer-sh.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_298"
    },
    {
        "name": "上海微晶防水材料有限公司",
        "url": "http://www.tjwj88.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_299"
    },
    {
        "name": "南京沃尔奔达电力工程有限公司",
        "url": "http://www.finewaypower.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_301"
    },
    {
        "name": "潍坊城市人家装饰设计工程有限公司",
        "url": "http://www.wfcsrj.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_304"
    },
    {
        "name": "北京广源信得会计服务有限公司",
        "url": "http://www.gyxdkjdl.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_306"
    },
    {
        "name": "蠡县广信输送设备制造有限公司",
        "url": "http://guangxin888.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_307"
    },
    {
        "name": "广州御采堂化妆品有限公司",
        "url": "http://www.yucaitang.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_309"
    },
    {
        "name": "合肥安美膜结构工程有限公司",
        "url": "http://hfammjg.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_310"
    },
    {
        "name": "乐清邦尔中西医结合医院有限公司",
        "url": "http://www.yqbrfk.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_311"
    },
    {
        "name": "上海喜喜母婴护理服务股份有限公司",
        "url": "http://www.yuezixixi.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_312"
    },
    {
        "name": "亳州市向上中药材种苗有限公司",
        "url": "http://bzxszyc.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_313"
    },
    {
        "name": "青海乐湖旅游服务有限公司",
        "url": "http://www.qhlehu.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_314"
    },
    {
        "name": "程力专用汽车股份有限公司销售八分公司",
        "url": "http://www.chclgs.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_317"
    },
    {
        "name": "广州怡达国际货运代理有限公司",
        "url": "http://www.jlsairsea.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_319"
    },
    {
        "name": "武汉伯骏体育文化传播有限公司",
        "url": "http://shuiguofitness.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_321"
    },
    {
        "name": "重庆航帆人力资源管理有限公司",
        "url": "http://www.zsjyxxzxw.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_322"
    },
    {
        "name": "广东鼎尊天下艺术收藏品投资有限公司",
        "url": "http://www.gddztx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_323"
    },
    {
        "name": "武汉领学科技有限公司",
        "url": "http://www.leaxue.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_324"
    },
    {
        "name": "北京汇智中骏文化传播有限公司",
        "url": "http://www.hzzj99.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_325"
    },
    {
        "name": "广州市锐通电子科技有限公司",
        "url": "http://www.gzrtdz.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_326"
    },
    {
        "name": "淮安仁爱医院",
        "url": "http://www.hazxyy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_328"
    },
    {
        "name": "郑州郑锅容器有限公司",
        "url": "http://www.zgrongqi.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_329"
    },
    {
        "name": "杭州同济医院有限公司",
        "url": "http://www.0574gb.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_332"
    },
    {
        "name": "杭州正杭商标事务所有限公司",
        "url": "http://www.zjlvc.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_333"
    },
    {
        "name": "天津汉诺工业泵技术有限公司",
        "url": "http://www.hnppump.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_334"
    },
    {
        "name": "德州广源环保科技有限公司",
        "url": "http://www.gyhb.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_335"
    },
    {
        "name": "长春中国旅行社有限责任公司",
        "url": "http://www.cczglxs.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_336"
    },
    {
        "name": "湖北五环专用汽车有限公司",
        "url": "http://www.whtzzq.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_337"
    },
    {
        "name": "北京泰克瑞特科技有限公司",
        "url": "http://www.tech-led.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_340"
    },
    {
        "name": "沈阳市晋级装饰工程有限公司",
        "url": "http://www.jjzs.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_342"
    },
    {
        "name": "苏州薇琳美容医院有限公司",
        "url": "http://www.szredream.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_343"
    },
    {
        "name": "郑州经济技术开发区飞跃广告服务部",
        "url": "http://www.shaolinsigongban.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_344"
    },
    {
        "name": "北京亚商联盟仓储设备有限公司",
        "url": "http://www.huojia001.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_345"
    },
    {
        "name": "深圳市毅荣川电子科技有限公司",
        "url": "http://www.yirongchuan.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_346"
    },
    {
        "name": "重庆五洲妇儿医院有限公司",
        "url": "http://www.cqfuer.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_347"
    },
    {
        "name": "昆明中国国际旅行社有限公司永安分公司",
        "url": "http://www.kmcits0866.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_349"
    },
    {
        "name": "长沙众桥文化传播有限公司",
        "url": "http://www.cs-zq.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_350"
    },
    {
        "name": "绥中县万家镇鑫源渔村餐饮部",
        "url": "http://ddhxyyc.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_351"
    },
    {
        "name": "济南凯恩试验机制造有限公司",
        "url": "http://www.kntest.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_354"
    },
    {
        "name": "佛山市顺德区晋和钢材贸易有限公司",
        "url": "http://www.jinhesteel.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_355"
    },
    {
        "name": "河北力佳金属家具有限公司",
        "url": "http://hblijiajiaju.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_356"
    },
    {
        "name": "河北力佳金属家具有限公司",
        "url": "http://hblijiajiaju.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_357"
    },
    {
        "name": "江苏实力复合材料有限公司",
        "url": "http://www.sqshili.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_359"
    },
    {
        "name": "杭州乾球环境工程有限公司",
        "url": "http://www.qianqiucn.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_361"
    },
    {
        "name": "长沙市岳麓区美圣隆办公家具经营部",
        "url": "http://www.csmslbg.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_362"
    },
    {
        "name": "深圳金美工艺制品有限公司",
        "url": "http://www.szkingm.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_363"
    },
    {
        "name": "上海盐海自动化科技有限公司",
        "url": "http://www.hiwinyh.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_364"
    },
    {
        "name": "广州英迪尔电器有限公司",
        "url": "http://www.gzyde.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_365"
    },
    {
        "name": "深圳市时代高科技设备股份有限公司",
        "url": "http://www.sztime.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_366"
    },
    {
        "name": "汉中市百利达商贸有限公司",
        "url": "http://www.cinsons.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_367"
    },
    {
        "name": "北京尚观科技有限公司武汉分公司",
        "url": "http://www.wuhanios.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_368"
    },
    {
        "name": "佛山市铭昱电光源有限公司",
        "url": "http://www.fsmyu.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_371"
    },
    {
        "name": "北京融通智策信息技术有限公司",
        "url": "http://www.bjleica-store.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_372"
    },
    {
        "name": "潍坊华跃磁电重工科技有限公司",
        "url": "http://www.sdhuayuegz.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_373"
    },
    {
        "name": "合肥同步测试设备有限公司",
        "url": "http://www.tombem.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_375"
    },
    {
        "name": "盐城仕博机械制造有限公司",
        "url": "http://www.ycsbjx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_376"
    },
    {
        "name": "湛江市一诺大洋医疗设备有限公司",
        "url": "http://www.yndyyiliao.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_378"
    },
    {
        "name": "北京战友商贸有限公司",
        "url": "http://www.bjzhanyou.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_379"
    },
    {
        "name": "北京中农信达电子商务股份有限公司",
        "url": "http://www.b2cf.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_380"
    },
    {
        "name": "武汉市江岸区笑笑科技经营部",
        "url": "http://www.xiaoxiaokj.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_382"
    },
    {
        "name": "巩义市蓝天机械厂",
        "url": "http://www.lantianmachine.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_383"
    },
    {
        "name": "四川鑫顺德金属丝网制造有限公司",
        "url": "http://www.028sdsw.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_384"
    },
    {
        "name": "湖南南博湾文化传播有限公司",
        "url": "http://www.hnnbwdiaosu.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_385"
    },
    {
        "name": "深圳市三腾达空间膜技术开发有限公司",
        "url": "http://www.stdmjg.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_388"
    },
    {
        "name": "深圳市三腾达空间膜技术开发有限公司",
        "url": "http://www.stdmjg.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_389"
    },
    {
        "name": "达思凯瑞技术(北京)有限公司",
        "url": "http://www.dstfix.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_390"
    },
    {
        "name": "上海豁科企业管理咨询有限公司",
        "url": "http://www.shkccc.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_391"
    },
    {
        "name": "沈阳正大方格工业设备制造有限公司",
        "url": "http://www.syzdfg.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_392"
    },
    {
        "name": "石家庄王猫商贸有限公司",
        "url": "http://www.sjzwmsm.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_394"
    },
    {
        "name": "北京中体丹尼斯舞蹈技术培训有限公司",
        "url": "http://www.hksca.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_395"
    },
    {
        "name": "程力专用汽车股份有限公司销售八分公司",
        "url": "http://www.clgs123.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_396"
    },
    {
        "name": "佛山市捷泰克机械有限公司",
        "url": "http://www.jtk98.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_397"
    },
    {
        "name": "广州达元食品安全技术有限公司",
        "url": "http://www.dayuangz.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_398"
    },
    {
        "name": "深圳市瀚雅装饰设计有限公司",
        "url": "http://www.hydesign.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_400"
    },
    {
        "name": "甘肃方标企业管理技术咨询有限公司",
        "url": "http://www.woyaozheng.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_401"
    },
    {
        "name": "甘肃方标企业管理技术咨询有限公司",
        "url": "http://www.woyaozheng.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_402"
    },
    {
        "name": "厦门鼎泰同丰商品经营服务有限公司",
        "url": "http://www.xmdttf.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_403"
    },
    {
        "name": "广州优美教育投资有限公司",
        "url": "http://www.ymxdjy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_404"
    },
    {
        "name": "上海市浦东新区陆家嘴街道定妆美容院",
        "url": "http://www.ciciwenxiu.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_405"
    },
    {
        "name": "成都赢响天下品牌推广有限公司",
        "url": "http://www.521ujym.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_406"
    },
    {
        "name": "苏州三度家居用品有限公司",
        "url": "http://www.sumuxuan1988.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_407"
    },
    {
        "name": "山西智诚和酒业连锁销售有限公司",
        "url": "http://www.sxzch.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_408"
    },
    {
        "name": "东台市辉腾救生设备有限公司",
        "url": "http://www.119ht.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_409"
    },
    {
        "name": "李蕊",
        "url": "http://www.51buydog.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_411"
    },
    {
        "name": "上海丹豆工艺品有限公司",
        "url": "http://www.dandou.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_413"
    },
    {
        "name": "广州世测仪器设备有限公司",
        "url": "http://www.shice17.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_416"
    },
    {
        "name": "广州世测仪器设备有限公司",
        "url": "http://www.shice17.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_417"
    },
    {
        "name": "武汉鹏虎环保装饰材料有限公司",
        "url": "http://www.ruijia588.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_419"
    },
    {
        "name": "哈尔滨市南岗区艾德英语培训学校",
        "url": "http://aideenglish.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_420"
    },
    {
        "name": "广州市海珠红棉古筝培训学校",
        "url": "http://www.gzhmgz.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_423"
    },
    {
        "name": "北京山美水美环保高科技有限公司",
        "url": "http://www.makes.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_424"
    },
    {
        "name": "上海丹碧德机械有限公司",
        "url": "http://www.danbide.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_425"
    },
    {
        "name": "武汉市天安医院有限公司",
        "url": "http://www.whmsjyy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_426"
    },
    {
        "name": "苏州尚美服饰有限公司",
        "url": "http://www.smfschina.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_427"
    },
    {
        "name": "北京云鼎在线信息科技有限公司",
        "url": "http://xj.dztcbj.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_429"
    },
    {
        "name": "东莞市特斯特检测仪器有限公司",
        "url": "http://www.jiajujiance.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_430"
    },
    {
        "name": "云南即富信息技术服务有限公司",
        "url": "http://www.jfpal.xin",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_431"
    },
    {
        "name": "成都医学院附属不孕不育医院有限公司",
        "url": "http://www.88189999.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_432"
    },
    {
        "name": "山东澳加美联出国咨询有限公司",
        "url": "http://www.aucanlink.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_433"
    },
    {
        "name": "山东邦华热能工程有限公司",
        "url": "http://www.chinabanghua.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_434"
    },
    {
        "name": "河南中环嘉创环保科技有限公司",
        "url": "http://www.zghn168.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_435"
    },
    {
        "name": "南昌成才科技职业培训学校",
        "url": "http://www.jxjybm.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_436"
    },
    {
        "name": "东易日盛家居装饰集团股份有限公司",
        "url": "http://lz.dyrs.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_437"
    },
    {
        "name": "西安华通天地信息科技有限公司",
        "url": "http://www.xahttd.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_439"
    },
    {
        "name": "深圳市大荷科技有限公司",
        "url": "http://m.dhq898.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_440"
    },
    {
        "name": "北京初趣科技有限公司",
        "url": "http://www.chuqulvxing.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_441"
    },
    {
        "name": "深圳市艺海国际艺术中心",
        "url": "http://www.yihaiguoji.com.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_442"
    },
    {
        "name": "赛特勒斯轴承科技(北京)有限公司",
        "url": "http://www.zeitlos-b.com/ch",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_443"
    },
    {
        "name": "东易日盛家居装饰集团股份有限公司",
        "url": "http://bj.dyrs.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_444"
    },
    {
        "name": "上海象恒五金工具有限公司",
        "url": "http://www.shxiangheng.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_447"
    },
    {
        "name": "昆明国防医院",
        "url": "http://www.gfyybh.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_448"
    },
    {
        "name": "黑龙江省一建路桥科技有限公司",
        "url": "http://yjlq.cn.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_449"
    },
    {
        "name": "青州市绿盾温室园艺有限公司",
        "url": "http://www.sdlvdun.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_451"
    },
    {
        "name": "新河县德龙水利机械厂",
        "url": "http://www.delongsl.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_452"
    },
    {
        "name": "星宇无限(北京)科技有限公司",
        "url": "http://web.wuxianedu.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_453"
    },
    {
        "name": "河南林业职业学院",
        "url": "http://www.hnfvc.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_457"
    },
    {
        "name": "沧县振赫养殖场",
        "url": "http://www.cxzhyz.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_458"
    },
    {
        "name": "上海威沪泵业有限公司",
        "url": "http://www.weihubengye.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_459"
    },
    {
        "name": "深圳市创宜居装饰材料有限公司",
        "url": "http://www.szcyjzs.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_460"
    },
    {
        "name": "汉川市金润玻璃钢设备有限公司",
        "url": "http://www.xgjrblg.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_461"
    },
    {
        "name": "程力专用汽车股份有限公司销售十分公司",
        "url": "http://www.cscygc.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_462"
    },
    {
        "name": "上海韧企创业投资管理有限公司",
        "url": "http://www.51bbcy.com/contact",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_463"
    },
    {
        "name": "北京明馨之家家具有限公司",
        "url": "http://www.mxzjts.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_464"
    },
    {
        "name": "深圳市壹柒游网络科技有限公司",
        "url": "http://www.eiiou.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_466"
    },
    {
        "name": "昆明礼盾经贸有限公司",
        "url": "http://www.ldlipin.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_467"
    },
    {
        "name": "江苏大华激光科技开发有限公司",
        "url": "http://www.jsdhlaser.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_468"
    },
    {
        "name": "东莞艺翔展品科技有限公司",
        "url": "http://www.awmote.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_470"
    },
    {
        "name": "东莞艺翔展品科技有限公司",
        "url": "http://www.awmote.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_471"
    },
    {
        "name": "湖南创业赢品牌管理有限公司",
        "url": "http://www.cyy81.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_475"
    },
    {
        "name": "广东顺德绿丰机电设备有限公司",
        "url": "http://www.gdlof.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_478"
    },
    {
        "name": "深圳市海凌思科技有限公司",
        "url": "http://www.hailingsi.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_479"
    },
    {
        "name": "上海赏励信息科技有限公司",
        "url": "http://www.1shang.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_481"
    },
    {
        "name": "乐山市医药科技学校",
        "url": "http://www.yikexiao.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_482"
    },
    {
        "name": "北京中杰利教育科技有限公司",
        "url": "http://www.uibezzy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_483"
    },
    {
        "name": "青岛尤锐泰建筑工程有限公司",
        "url": "http://www.uretekchina.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_484"
    },
    {
        "name": "北京畅创信天新能源环保科技有限公司",
        "url": "http://www.ailibang7.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_485"
    },
    {
        "name": "陕西柯蓝电子有限公司",
        "url": "http://www.criane.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_486"
    },
    {
        "name": "张网筛",
        "url": "http://www.jh-dl.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_487"
    },
    {
        "name": "北京禾力康医学科技有限公司医疗美容门诊部",
        "url": "http://www.bjhlkzx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_488"
    },
    {
        "name": "上海坤冶实业有限公司",
        "url": "http://www.kunyeshiye.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_489"
    },
    {
        "name": "山西广洁清洁技术服务有限公司",
        "url": "http://sxqxgs.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_490"
    },
    {
        "name": "西安高速铁道技工学校",
        "url": "http://www.xagstd.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_491"
    },
    {
        "name": "湖南湘浙纸塑制品有限公司",
        "url": "http://www.hnxzys.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_492"
    },
    {
        "name": "北京昱明鼎盛医疗科技有限公司",
        "url": "http://www.axtshuli.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_494"
    },
    {
        "name": "北京五九三五信息咨询有限公司",
        "url": "http://www.nadiyi.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_495"
    },
    {
        "name": "广东南方文交所艺术品运营有限公司",
        "url": "http://www.art-cnscee.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_496"
    },
    {
        "name": "亚检产品质量检验(深圳)有限公司",
        "url": "http://www.asiainspection.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_497"
    },
    {
        "name": "山东润达信息技术有限公司",
        "url": "http://www.rundasoft.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_498"
    },
    {
        "name": "东莞市镇科化工材料有限公司",
        "url": "http://www.tegongyihao.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_499"
    },
    {
        "name": "上海澳星出入境服务有限公司",
        "url": "http://www.austargroup.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_501"
    },
    {
        "name": "清河县宇诺塑胶制品有限公司",
        "url": "http://hebeiyunuo.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_502"
    },
    {
        "name": "广州康联装饰设计有限公司",
        "url": "http://www.gzhud.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_503"
    },
    {
        "name": "江苏江豪发电机组有限公司",
        "url": "http://www.jsjhkms.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_504"
    },
    {
        "name": "北京久威仓储设备有限公司",
        "url": "http://www.jwrack.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_505"
    },
    {
        "name": "广东天软农联信息科技有限公司",
        "url": "http://trnlsoft.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_506"
    },
    {
        "name": "江苏搏斯威化工设备工程有限公司",
        "url": "http://www.pfhj.net/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_507"
    },
    {
        "name": "中山市岩创电子科技有限公司",
        "url": "http://www.yc-yanchuang.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_508"
    },
    {
        "name": "威诺瑞(深圳)贸易有限公司",
        "url": "http://www.linsaqc.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_510"
    },
    {
        "name": "深圳市瑞视特科技有限公司",
        "url": "http://www.0755vc.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_511"
    },
    {
        "name": "北京美森文化发展有限公司",
        "url": "http://www.masonbj.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_512"
    },
    {
        "name": "佛山市中牌机械有限公司",
        "url": "http://www.jopar279.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_514"
    },
    {
        "name": "深圳市东吉联电子有限公司",
        "url": "http://www.chinacincom.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_515"
    },
    {
        "name": "山东冠县飞越交通设施有限公司",
        "url": "http://www.tdjtss.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_516"
    },
    {
        "name": "常熟市威智商标代理有限公司",
        "url": "http://www.5biao.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_517"
    },
    {
        "name": "临清新锋丝网印刷机械厂",
        "url": "http://www.xinfengsiyin.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_518"
    },
    {
        "name": "北京美丽岛科技有限公司",
        "url": "http://www.milido.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_519"
    },
    {
        "name": "山东兴达环美设备有限公司",
        "url": "http://www.xingdahuanmei.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_521"
    },
    {
        "name": "苏州茂优升降机械设备有限公司",
        "url": "http://www.szmaoyou.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_522"
    },
    {
        "name": "上海小飞人体育管理咨询有限公司",
        "url": "http://www.xiaofeiren.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_523"
    },
    {
        "name": "邯工工程装备有限公司",
        "url": "http://hggczb.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_524"
    },
    {
        "name": "长沙子易暖通设备工程有限公司",
        "url": "http://www.ziyi99.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_525"
    },
    {
        "name": "长沙子易暖通设备工程有限公司",
        "url": "http://www.ziyi99.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_526"
    },
    {
        "name": "新河县鼎恒水利机械厂",
        "url": "http://www.wsjff.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_527"
    },
    {
        "name": "深圳思图德设计事务所有限公司",
        "url": "http://www.studioh.hk",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_528"
    },
    {
        "name": "大连艺才技工学校",
        "url": "http://www.yicaijy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_529"
    },
    {
        "name": "贵阳佳恒宇昌商贸有限公司",
        "url": "http://www.gyjhyc.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_530"
    },
    {
        "name": "北京万学教育科技有限公司",
        "url": "http://txy.wanxue.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_531"
    },
    {
        "name": "许昌博爱乳腺病医院",
        "url": "http://www.0374boai.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_532"
    },
    {
        "name": "山西优逸客科技有限公司",
        "url": "http://www.sxuek.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_533"
    },
    {
        "name": "芜湖市薇薇新娘婚纱摄影有限公司",
        "url": "http://www.whwwxn.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_535"
    },
    {
        "name": "山西小白兔农业科技有限公司",
        "url": "http://www.52xbt.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_537"
    },
    {
        "name": "天津格瑞新金属材料有限责任公司",
        "url": "http://www.tjgr.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_538"
    },
    {
        "name": "深圳市亿客达电子商务有限公司",
        "url": "http://www.51-booking.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_540"
    },
    {
        "name": "西安峰上大宅装饰有限公司",
        "url": "http://www.xafsdz.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_541"
    },
    {
        "name": "湖北新置密封件有限公司",
        "url": "http://www.hbxzseal.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_542"
    },
    {
        "name": "广东安盾安检排爆装备集团有限公司",
        "url": "http://www.sdandvn.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_544"
    },
    {
        "name": "四川亮剑企业管理顾问有限公司西安分公司",
        "url": "http://www.xaliangjian.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_546"
    },
    {
        "name": "海南招商国际旅行社有限公司",
        "url": "http://www.hai0898.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_549"
    },
    {
        "name": "北京五洲育人教育科技发展有限公司",
        "url": "http://www.liuxueqiao.net/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_550"
    },
    {
        "name": "成都英迈企业形象设计策划咨询有限公司",
        "url": "http://www.imgbrand.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_552"
    },
    {
        "name": "北京中益达体育科技发展中心",
        "url": "http://www.ty510.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_554"
    },
    {
        "name": "湖南恒邦钢筋连接技术有限公司",
        "url": "http://www.hngjlj.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_556"
    },
    {
        "name": "杰作教育科技(北京)有限公司",
        "url": "http://www.eool.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_557"
    },
    {
        "name": "河南咏谦节能科技有限公司",
        "url": "http://www.yonqian.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_558"
    },
    {
        "name": "南阳协和医院",
        "url": "http://www.nyxiehe.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_559"
    },
    {
        "name": "巩义市恒天环保材料有限公司",
        "url": "http://www.hnhthbcl.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_560"
    },
    {
        "name": "乌鲁木齐中山医院有限公司",
        "url": "http://www.wszsyy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_561"
    },
    {
        "name": "北京海能达水泵技术发展有限公司",
        "url": "http://www.hainengda.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_562"
    },
    {
        "name": "厦门恩途国际旅行社有限公司",
        "url": "http://www.xiamentour.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_563"
    },
    {
        "name": "深圳市禾众科技有限公司",
        "url": "http://www.hezoon.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_564"
    },
    {
        "name": "北京雅顶伟业装饰工程有限公司",
        "url": "http://www.yadingweiye.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_565"
    },
    {
        "name": "上海雷邦机电设备有限公司",
        "url": "http://www.leibangsh.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_566"
    },
    {
        "name": "上海巅峰体育管理股份有限公司",
        "url": "http://www.021sports.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_567"
    },
    {
        "name": "佛山市南海蒂爵装饰材料有限公司",
        "url": "http://www.vouguer.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_568"
    },
    {
        "name": "沈阳瑞饰丽建材有限公司",
        "url": "http://www.meifengji18.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_570"
    },
    {
        "name": "上海顶京实业有限公司",
        "url": "http://www.sh-dj.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_571"
    },
    {
        "name": "北京智博云天教育科技有限责任公司",
        "url": "http://www.zbytjy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_572"
    },
    {
        "name": "河北博腾柜业有限公司",
        "url": "http://www.huojia558.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_575"
    },
    {
        "name": "河北博腾柜业有限公司",
        "url": "http://www.huojia558.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_576"
    },
    {
        "name": "北京乐上名都装饰工程有限公司",
        "url": "http://www.lsmdcn.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_577"
    },
    {
        "name": "成都有怡工程技术有限公司",
        "url": "http://www.cduyi.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_581"
    },
    {
        "name": "江苏苏力机械股份有限公司",
        "url": "http://www.jssltz.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_583"
    },
    {
        "name": "西安大唐技工学校",
        "url": "http://www.xinlingongyi.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_584"
    },
    {
        "name": "元亨电动科技(东莞)有限公司",
        "url": "http://yhhl86.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_585"
    },
    {
        "name": "济南华月数控设备有限公司",
        "url": "http://www.jnhysk.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_586"
    },
    {
        "name": "北京龙风基业幕墙装饰工程有限公司",
        "url": "http://www.longfengjiye.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_588"
    },
    {
        "name": "湖南国泽木业科技有限公司",
        "url": "http://www.gzmy789.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_589"
    },
    {
        "name": "广州大欣包装材料有限公司",
        "url": "http://www.dxpack.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_590"
    },
    {
        "name": "广州仁记餐饮管理有限公司",
        "url": "http://www.renjitp.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_591"
    },
    {
        "name": "深圳市房耀房地产投资有限公司",
        "url": "http://www.xinfang8.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_592"
    },
    {
        "name": "湖北尚典新型材料有限公司",
        "url": "http://www.feilip99.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_593"
    },
    {
        "name": "长春红星医院",
        "url": "http://www.cchxyy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_594"
    },
    {
        "name": "深圳市旭日东自动化设备工程有限公司",
        "url": "http://www.xrdsz.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_595"
    },
    {
        "name": "合肥市家安环保科技有限公司",
        "url": "http://www.hfjahb.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_597"
    },
    {
        "name": "合肥荣事达电子电器集团有限公司",
        "url": "http://rsddj.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_598"
    },
    {
        "name": "长春市二道区博大教育信息咨询中心",
        "url": "http://www.21bodaedu.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_599"
    },
    {
        "name": "东莞市食尚部落饮食管理服务有限公司",
        "url": "http://www.szswxpx.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_600"
    },
    {
        "name": "淮北东方美莱坞医疗美容医院",
        "url": "http://www.hbdfmlw.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_601"
    },
    {
        "name": "开封文化艺术职业学院",
        "url": "http://www.kfzjxy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_602"
    },
    {
        "name": "深圳市安通瑞达科技有限公司",
        "url": "http://www.szauda.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_603"
    },
    {
        "name": "河北致远新禾信息科技有限公司",
        "url": "http://www.hbpx.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_604"
    },
    {
        "name": "合肥好和餐饮管理有限公司",
        "url": "http://ayonghe.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_606"
    },
    {
        "name": "高新区沃尔得课外辅导中心",
        "url": "http://www.cd365world.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_607"
    },
    {
        "name": "张家口宣化华泰矿冶机械有限公司",
        "url": "http://www.htkyjx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_609"
    },
    {
        "name": "安徽兴日智能科技有限公司",
        "url": "http://xrzn.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_611"
    },
    {
        "name": "宁波市江北中信培训学校",
        "url": "http://www.nbzx.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_612"
    },
    {
        "name": "陕西圣帝诺电子科技有限公司",
        "url": "http://www.av1080.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_613"
    },
    {
        "name": "广东韦博科技有限公司",
        "url": "http://www.apureli.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_614"
    },
    {
        "name": "江苏共创人造草坪有限公司",
        "url": "http://www.ccgrass.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_615"
    },
    {
        "name": "甘肃顶乐兰州牛肉拉面职业培训学校",
        "url": "http://www.lmpxzx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_616"
    },
    {
        "name": "东莞市正航仪器设备有限公司",
        "url": "http://www.dgzhenghang.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_617"
    },
    {
        "name": "脉格信息技术(北京)有限公司",
        "url": "http://www.mfu.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_618"
    },
    {
        "name": "郑州享运堂商贸有限公司",
        "url": "http://www.shaolinsiwuyuan.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_620"
    },
    {
        "name": "沈阳巨子模具职业培训学校",
        "url": "http://www.sylgdx.com.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_622"
    },
    {
        "name": "广州市大合环保科技有限公司",
        "url": "http://www.dahehuanbao.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_623"
    },
    {
        "name": "广州市科瑞特儿童游乐园有限公司",
        "url": "http://www.gz-cre.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_626"
    },
    {
        "name": "天津天天开锁服务有限公司",
        "url": "http://www.ttksgs.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_627"
    },
    {
        "name": "青岛亿尚形象设计有限公司",
        "url": "http://www.yishangz.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_629"
    },
    {
        "name": "广西康达信管理顾问有限公司",
        "url": "http://www.gxcmc.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_630"
    },
    {
        "name": "山东德仁天沐科贸有限公司",
        "url": "http://www.tmws168.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_631"
    },
    {
        "name": "北京蓝图暖通节能科技有限公司",
        "url": "http://www.lantunt.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_634"
    },
    {
        "name": "东莞杉木静电科技有限公司",
        "url": "http://www.samesd.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_635"
    },
    {
        "name": "济南龙辉气模有限公司",
        "url": "http://www.jnlhqmc.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_636"
    },
    {
        "name": "上海宝趣商务咨询有限公司",
        "url": "http://51rutaizheng.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_637"
    },
    {
        "name": "广州旷视影视传媒有限公司",
        "url": "http://www.kstv.cc",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_638"
    },
    {
        "name": "南京市雨花台区雯博办公家具销售中心",
        "url": "http://www.njwbbg.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_640"
    },
    {
        "name": "重庆市毛华票务代理有限责任公司",
        "url": "http://chepiao12308.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_643"
    },
    {
        "name": "程力专用汽车股份有限公司销售九分公司",
        "url": "http://www.xisaocar.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_644"
    },
    {
        "name": "济南工大数控设备有限公司",
        "url": "http://www.gdskdkj.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_645"
    },
    {
        "name": "安徽合肥新海妇产医院",
        "url": "http://www.ahxhfcyy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_646"
    },
    {
        "name": "程力专用汽车股份有限公司销售九分公司",
        "url": "http://www.xisaocar.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_647"
    },
    {
        "name": "河南尚氏耐火保温材料有限公司",
        "url": "http://www.zzssnhbw.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_648"
    },
    {
        "name": "潍坊潍城京都白癜风医院",
        "url": "http://www.wfjdyy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_649"
    },
    {
        "name": "潍坊潍城京都白癜风医院",
        "url": "http://www.wfjdyy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_650"
    },
    {
        "name": "北京珈禾宏业科技有限公司",
        "url": "http://www.jiahehongye.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_651"
    },
    {
        "name": "上海德渡网络科技有限公司",
        "url": "http://www.51ddo.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_653"
    },
    {
        "name": "长春富盛德装饰有限公司",
        "url": "http://www.fushengde.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_654"
    },
    {
        "name": "北京中科汇联科技股份有限公司",
        "url": "http://www.huilan.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_655"
    },
    {
        "name": "济南齐鲁帆布帐篷有限公司",
        "url": "http://www.qilushengfan.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_657"
    },
    {
        "name": "上海银基信息科技股份有限公司",
        "url": "http://www.yinji.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_658"
    },
    {
        "name": "广东爱婴岛儿童百货股份有限公司",
        "url": "http://lm.baby.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_659"
    },
    {
        "name": "广东国晖(佛山)律师事务所",
        "url": "http://www.fs-sunlawyers.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_660"
    },
    {
        "name": "沈阳军大医院",
        "url": "http://jdzgzx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_661"
    },
    {
        "name": "沈阳华山医院",
        "url": "http://syxb.62883030.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_662"
    },
    {
        "name": "西安蓝天科技技工学校",
        "url": "http://www.lantiantiedao.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_664"
    },
    {
        "name": "北京华仪通泰科技有限公司",
        "url": "http://www.511718.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_665"
    },
    {
        "name": "上海欣灿贸易有限公司",
        "url": "http://www.ipackbynewstep.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_666"
    },
    {
        "name": "北京云测信息技术有限公司",
        "url": "http://www.testin.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_667"
    },
    {
        "name": "北京鹏盛网络技术有限公司",
        "url": "http://www.3crenzheng.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_668"
    },
    {
        "name": "北京智加问道科技有限公司",
        "url": "http://www.zcodesign.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_669"
    },
    {
        "name": "哈尔滨荷之源水体绿化有限公司",
        "url": "http://hrbhzy.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_670"
    },
    {
        "name": "程力专用汽车股份有限公司销售七分公司",
        "url": "http://www.clwzcw.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_671"
    },
    {
        "name": "辉县市鑫中圆柱石材厂",
        "url": "http://www.xinzhongyuanzhu.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_674"
    },
    {
        "name": "武汉华健康体建设工程有限公司",
        "url": "http://hjktty.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_675"
    },
    {
        "name": "苏州拓博机械设备有限公司",
        "url": "http://www.thtechnic.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_676"
    },
    {
        "name": "达内时代科技集团有限公司",
        "url": "http://sz.arm.tedu.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_677"
    },
    {
        "name": "翁牛特旗亿合公镇鑫达石材加工厂",
        "url": "http://nmxdsc.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_678"
    },
    {
        "name": "绿普达(北京)科技有限公司",
        "url": "http://www.lopodo.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_679"
    },
    {
        "name": "深圳市创宜居装饰材料有限公司",
        "url": "http://www.szcyjzs.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_680"
    },
    {
        "name": "长沙市开福区时光医疗美容门诊部",
        "url": "http://www.time120.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_681"
    },
    {
        "name": "大连联邦雅思英语培训学校",
        "url": "http://www.fedielts.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_682"
    },
    {
        "name": "四川九牛金服科技有限责任公司",
        "url": "http://www.96jinfu.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_683"
    },
    {
        "name": "南宁九龙中西医结合医院有限公司",
        "url": "http://www.nannjlnk.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_685"
    },
    {
        "name": "郑州开开汽车服务有限公司",
        "url": "http://www.kaikaiqizu.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_686"
    },
    {
        "name": "厦门沐风卫浴科技有限公司",
        "url": "http://www.vaidee.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_689"
    },
    {
        "name": "唐山中都白癜风医院",
        "url": "http://tszd.zdbdfyy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_690"
    },
    {
        "name": "合肥市君润建材有限公司",
        "url": "http://jrjc518.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_691"
    },
    {
        "name": "河北畅志文化传媒有限公司",
        "url": "http://changzhichuanmei.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_692"
    },
    {
        "name": "四川海帝科技有限公司",
        "url": "http://www.schidear.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_693"
    },
    {
        "name": "广州市聚星源科技有限公司",
        "url": "http://www.focustar.net/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_694"
    },
    {
        "name": "北京蓝波泉喷泉设备有限公司",
        "url": "http://www.lanboquan.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_696"
    },
    {
        "name": "郑州集美美容医院",
        "url": "http://www.zzjmzx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_697"
    },
    {
        "name": "深圳快学教育发展有限公司",
        "url": "http://www.hao-kuai-ji.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_698"
    },
    {
        "name": "程力专用汽车股份有限公司销售十分公司",
        "url": "http://www.sjclcw.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_699"
    },
    {
        "name": "程力专用汽车股份有限公司销售十分公司",
        "url": "http://www.sjclcw.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_700"
    },
    {
        "name": "天津金粹恒孚科技有限公司",
        "url": "http://www.163e-mail.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_701"
    },
    {
        "name": "广州辛巴达国际旅行社有限公司",
        "url": "http://www.sinbad.com.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_702"
    },
    {
        "name": "深圳鲲鹏志财务代理有限公司",
        "url": "http://www.kunpengzhi.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_703"
    },
    {
        "name": "常州企邦企业管理咨询有限公司",
        "url": "http://www.czqbzx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_704"
    },
    {
        "name": "浙江西湖律师事务所",
        "url": "http://www.yelawyer.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_708"
    },
    {
        "name": "厦门鼎泰同丰商品经营服务有限公司",
        "url": "http://xmdttf.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_709"
    },
    {
        "name": "中山市古镇正翔路灯厂",
        "url": "http://www.zxhwzm.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_711"
    },
    {
        "name": "济南市口吃矫正培训中心",
        "url": "http://www.jnkcjz.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_713"
    },
    {
        "name": "程力专用汽车股份有限公司销售九分公司",
        "url": "http://www.zqcl2.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_714"
    },
    {
        "name": "常州市俊铭篷房制造有限公司",
        "url": "http://www.jmtent.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_717"
    },
    {
        "name": "常州市世纪通灵广告传媒有限公司",
        "url": "http://www.lezh.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_718"
    },
    {
        "name": "苏州卓凡清洗保洁服务有限公司",
        "url": "http://www.zhuofanbaojie.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_719"
    },
    {
        "name": "西安本根科技有限公司",
        "url": "http://www.rootfea.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_720"
    },
    {
        "name": "深圳市实干家科技有限公司",
        "url": "http://www.doer-tech.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_722"
    },
    {
        "name": "北京首大兴科技术研究院",
        "url": "http://www.bjsdxk.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_723"
    },
    {
        "name": "石家庄市世隆牧业有限责任公司",
        "url": "http://www.sjzslmy.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_724"
    },
    {
        "name": "安平县特迪丝网制品有限公司",
        "url": "http://www.aptedi.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_725"
    },
    {
        "name": "苏州航伟包装有限公司",
        "url": "http://hangwei.cc/index.html",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_726"
    },
    {
        "name": "深圳市世纪丰源饮水设备有限公司勒流分公司",
        "url": "http://www.springwater520.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_727"
    },
    {
        "name": "深圳市普瑞达传动有限公司",
        "url": "http://www.p-risedriver.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_729"
    },
    {
        "name": "陕西奇力达电子科技有限公司",
        "url": "http://www.qieed.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_730"
    },
    {
        "name": "广州市星瑞气模制品有限公司",
        "url": "http://www.xrqm.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_731"
    },
    {
        "name": "深圳市德派科技有限公司",
        "url": "http://www.deapea.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_732"
    },
    {
        "name": "张家港万红门诊部有限责任公司",
        "url": "http://www.zjgwhyy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_733"
    },
    {
        "name": "长沙县湘龙湘红汽配销售中心",
        "url": "http://www.qip360.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_734"
    },
    {
        "name": "上海海文信息技术有限公司",
        "url": "http://www.oracleoaec.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_736"
    },
    {
        "name": "迪美联合环境工程(深圳)有限公司",
        "url": "http://www.dm-gj.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_737"
    },
    {
        "name": "深圳市海曦医疗器械有限公司",
        "url": "http://www.ssrmed.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_739"
    },
    {
        "name": "广州华兵白蚁防治有限公司",
        "url": "http://www.gd-hb.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_740"
    },
    {
        "name": "沈阳军大医院",
        "url": "http://jdzg01.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_742"
    },
    {
        "name": "河北仓润农产品进出口贸易有限公司",
        "url": "http://hbcangrun.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_743"
    },
    {
        "name": "广州市诗尼曼家居有限公司",
        "url": "http://www.snimay.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_744"
    },
    {
        "name": "新疆汇英利防水技术有限公司",
        "url": "http://www.51fsgc.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_745"
    },
    {
        "name": "重庆赛顺环保科技有限公司",
        "url": "http://www.cq3s.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_746"
    },
    {
        "name": "山东金缘银杏苗木网(樊付生)",
        "url": "http://www.sdjyyxs.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_747"
    },
    {
        "name": "台州市同成房地产营销策划有限公司",
        "url": "http://www.19bieshu.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_748"
    },
    {
        "name": "合肥恒研智能科技有限公司",
        "url": "http://www.accomplish.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_749"
    },
    {
        "name": "河北大旗光电科技有限公司",
        "url": "http://www.daqiemc.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_750"
    },
    {
        "name": "四川洲际胃肠肛门病医院有限公司",
        "url": "http://www.wcgmyy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_751"
    },
    {
        "name": "深圳市雅上篷房技术有限公司",
        "url": "http://www.szyashang.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_752"
    },
    {
        "name": "北京金鸿耀科技有限公司",
        "url": "http://www.bjjhykj.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_753"
    },
    {
        "name": "世纪文都教育科技集团股份有限公司",
        "url": "http://www.wendu.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_755"
    },
    {
        "name": "南昌市青山湖区好日子综合服务部",
        "url": "http://www.jxhrzbj.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_756"
    },
    {
        "name": "合肥强升环境工程有限公司",
        "url": "http://qshj88.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_757"
    },
    {
        "name": "立德伟业仓储设备(北京)有限公司",
        "url": "http://www.bjldwyhj.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_758"
    },
    {
        "name": "沈阳市八棵树汽车驾驶员培训有限公司",
        "url": "http://www.bksjx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_760"
    },
    {
        "name": "成都世健联健康管理职业技能培训学校",
        "url": "http://www.shijianlian.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_762"
    },
    {
        "name": "成都万宜思创教育咨询有限公司",
        "url": "http://www.wishstrong.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_764"
    },
    {
        "name": "新乡市劲博线缆有限公司",
        "url": "http://www.xxxfxs.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_765"
    },
    {
        "name": "南京威利朗食品机械有限公司",
        "url": "http://www.weililang.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_766"
    },
    {
        "name": "邵海纲",
        "url": "http://www.lecaikj.com.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_768"
    },
    {
        "name": "邵海纲",
        "url": "http://www.lecaikj.com.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_769"
    },
    {
        "name": "广州海记餐饮企业管理有限公司",
        "url": "http://www.gzhjcy.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_770"
    },
    {
        "name": "徐寅然",
        "url": "http://jtscjd.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_772"
    },
    {
        "name": "兰州华夏医院",
        "url": "http://bdfk.hxyynnk.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_773"
    },
    {
        "name": "无锡友道木业有限公司",
        "url": "http://www.youdaomy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_774"
    },
    {
        "name": "北京市西城区长远培训学校",
        "url": "http://www.chenyuen.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_775"
    },
    {
        "name": "硕方电子(天津)有限公司",
        "url": "http://www.shuofangtj.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_776"
    },
    {
        "name": "大连万欣咨询有限公司",
        "url": "http://www.bo-sg.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_777"
    },
    {
        "name": "北京工商管理专修学院",
        "url": "http://www.bjbuba.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_779"
    },
    {
        "name": "海通安恒科技有限公司",
        "url": "http://www.htah.com.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_780"
    },
    {
        "name": "哈尔滨海翔领先教育信息咨询有限公司",
        "url": "http://www.lingxiankaoyan.com/kaoyan/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_785"
    },
    {
        "name": "河北瑞都汗蒸设备安装有限公司",
        "url": "http://www.ruiduhanzheng.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_786"
    },
    {
        "name": "长沙文铖电气设备有限公司",
        "url": "http://www.hnwencheng.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_789"
    },
    {
        "name": "佛山市南海区大沥精东机械厂",
        "url": "http://www.jingdongjixie.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_790"
    },
    {
        "name": "张家界中旅国际旅行社有限公司",
        "url": "http://zlzjj.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_791"
    },
    {
        "name": "陕西侯氏食品有限公司",
        "url": "http://www.snhoushi.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_792"
    },
    {
        "name": "青岛艾普智能仪器有限公司",
        "url": "http://www.aipuo.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_793"
    },
    {
        "name": "深圳市名欣快速模型有限公司",
        "url": "http://www.mxmockup.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_794"
    },
    {
        "name": "常州双鸟起重机械有限公司",
        "url": "http://www.js-xilin.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_795"
    },
    {
        "name": "昆明五华时代巨人教育培训学校",
        "url": "http://www.kmjuren.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_796"
    },
    {
        "name": "张家界途参谋旅游服务有限公司",
        "url": "http://www.tucanmouvip.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_797"
    },
    {
        "name": "南阳协和医院",
        "url": "http://www.nyxhnk.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_798"
    },
    {
        "name": "荆州华中福康医院有限公司",
        "url": "http://www.jzhzfk.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_799"
    },
    {
        "name": "岳阳江南一品装饰设计工程有限公司",
        "url": "http://www.jnypzs.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_800"
    },
    {
        "name": "南关区金夫人婚纱摄影楼",
        "url": "http://www.ccjfr.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_801"
    },
    {
        "name": "河南遥遥互联科技有限公司",
        "url": "http://www.yyhl.top/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_802"
    },
    {
        "name": "运城市现代妇科医院有限公司",
        "url": "http://www.ycxdyy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_803"
    },
    {
        "name": "河北波普勒网络科技有限公司",
        "url": "http://www.poplor.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_806"
    },
    {
        "name": "秦皇岛秦盛文化传播有限公司",
        "url": "http://www.chytx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_807"
    },
    {
        "name": "秦皇岛秦盛文化传播有限公司",
        "url": "http://www.chytx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_808"
    },
    {
        "name": "沈阳维岑商贸有限公司",
        "url": "http://www.jiaosuyu.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_809"
    },
    {
        "name": "北京天东门窗有限责任公司",
        "url": "http://www.tiandong.net.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_810"
    },
    {
        "name": "广州远程教育中心有限公司",
        "url": "http://www.zhigongjiaoyu.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_812"
    },
    {
        "name": "上海辰商软件科技有限公司",
        "url": "http://www.dbcec.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_814"
    },
    {
        "name": "湖南湘旭交安光电高科技股份有限公司",
        "url": "http://www.hnxiangxu.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_815"
    },
    {
        "name": "北京中安腾鹏科技有限公司",
        "url": "http://www.zatp.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_817"
    },
    {
        "name": "深圳市望京印刷有限公司",
        "url": "http://www.wangjingchina.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_818"
    },
    {
        "name": "北京宏信致远科技有限公司",
        "url": "http://www.bj-hxzy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_819"
    },
    {
        "name": "合肥华健智能科技有限公司",
        "url": "http://www.hjzn365.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_820"
    },
    {
        "name": "陕西凯尔医疗护理用品有限责任公司",
        "url": "http://www.care120.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_821"
    },
    {
        "name": "昆山市乐泰电子材料有限公司",
        "url": "http://www.kunshanletai.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_822"
    },
    {
        "name": "上海志铭实业有限公司",
        "url": "http://www.4006698922.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_825"
    },
    {
        "name": "深圳市筑华管业有限公司",
        "url": "http://www.szzhgy.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_826"
    },
    {
        "name": "东莞市君威润滑油有限公司",
        "url": "http://www.jalemf.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_827"
    },
    {
        "name": "北京斯云特科技有限公司",
        "url": "http://www.siyunte.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_828"
    },
    {
        "name": "西安现代电子职业学校",
        "url": "http://www.xdxyedu.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_830"
    },
    {
        "name": "东光县浩鑫压瓦机械有限公司",
        "url": "http://czhxywj.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_831"
    },
    {
        "name": "广东中海南联能源有限公司",
        "url": "http://www.gdzhnl.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_832"
    },
    {
        "name": "佛山市奥利狄五金制品有限公司",
        "url": "http://www.ontwujin.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_833"
    },
    {
        "name": "北京市捷诚信通知识产权代理有限公司青岛分公司",
        "url": "http://www.2zhuce.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_834"
    },
    {
        "name": "广东中海南联能源有限公司",
        "url": "http://www.gdzhnl.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_835"
    },
    {
        "name": "宿迁市吉茂源广告设备有限公司",
        "url": "http://www.jmyhct.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_836"
    },
    {
        "name": "北京英富森软件股份有限公司",
        "url": "http://www.infcn.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_839"
    },
    {
        "name": "上海佳京商务咨询有限公司",
        "url": "http://www.kejizixun.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_840"
    },
    {
        "name": "广东碧丽饮水设备有限公司",
        "url": "http://www.bilisd.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_841"
    },
    {
        "name": "景县华艺压滤机配件有限公司",
        "url": "http://www.huayipj.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_842"
    },
    {
        "name": "深圳市诚德利电子科技有限公司",
        "url": "http://www.gdcdl.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_843"
    },
    {
        "name": "山东恒安投资管理有限公司",
        "url": "http://www.henganpuhui.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_844"
    },
    {
        "name": "上海音卓文化传播有限公司",
        "url": "http://www.enjoypiano.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_846"
    },
    {
        "name": "东莞市博普塑胶电子有限公司",
        "url": "http://www.dgbop.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_847"
    },
    {
        "name": "深圳市网域科技股份有限公司",
        "url": "http://www.netsys.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_848"
    },
    {
        "name": "北京朗捷品牌管理有限公司",
        "url": "http://www.lang2009.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_849"
    },
    {
        "name": "江西剑安消防设备有限责任公司",
        "url": "http://jxjaxf.net/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_850"
    },
    {
        "name": "北京枫格国际文化传播有限公司",
        "url": "http://www.fgguoji.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_851"
    },
    {
        "name": "深圳市灵动创意设计工程有限公司",
        "url": "http://www.szldcy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_852"
    },
    {
        "name": "陕西佑泰建筑工程有限公司",
        "url": "http://www.utce168.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_854"
    },
    {
        "name": "石家庄泰聚昌物流有限公司",
        "url": "http://www.tjc56.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_855"
    },
    {
        "name": "深圳前海移联科技有限公司",
        "url": "http://www.mupay.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_856"
    },
    {
        "name": "深圳市软银赛富科技有限公司",
        "url": "http://www.saifutong.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_857"
    },
    {
        "name": "河南粮院机械制造有限公司",
        "url": "http://www.henanliangyuan.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_858"
    },
    {
        "name": "海盐美赫电器科技有限公司",
        "url": "http://www.mdhoo.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_859"
    },
    {
        "name": "广西南宁锦缘联达网络科技有限公司",
        "url": "http://www.gxld.cc",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_860"
    },
    {
        "name": "斜塔酒庄(上海)有限公司",
        "url": "http://www.trambusti9.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_861"
    },
    {
        "name": "上海明珠医院有限公司",
        "url": "http://xntatu.mzyy.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_862"
    },
    {
        "name": "北京紫平方信息技术股份有限公司",
        "url": "http://www.zipingfang.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_863"
    },
    {
        "name": "江苏易华人造草坪有限公司",
        "url": "http://www.victurf.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_865"
    },
    {
        "name": "长沙乐恩迪广告有限公司",
        "url": "http://www.led198.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_866"
    },
    {
        "name": "深圳市中意达房地产经纪有限公司",
        "url": "http://www.hft58.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_867"
    },
    {
        "name": "深圳市金狮实业有限公司",
        "url": "http://www.szkingshi.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_868"
    },
    {
        "name": "南京协同职业培训中心",
        "url": "http://www.xtbenet.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_870"
    },
    {
        "name": "张泽",
        "url": "http://www.fzliang.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_871"
    },
    {
        "name": "南安武荣医院",
        "url": "http://www.nawryy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_872"
    },
    {
        "name": "邢台鑫百汇重工机械制造有限公司",
        "url": "http://www.xtxbh8.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_873"
    },
    {
        "name": "邢台鑫百汇重工机械制造有限公司",
        "url": "http://www.xtxbh8.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_874"
    },
    {
        "name": "潜山县皖国制刷厂",
        "url": "http://www.ahwgsy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_875"
    },
    {
        "name": "北京中科恒润科贸有限公司",
        "url": "http://www.dataaire.com.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_876"
    },
    {
        "name": "北京文博华茂科技有限公司",
        "url": "http://www.owntat.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_878"
    },
    {
        "name": "安徽紫兰科技有限公司",
        "url": "http://www.zilankeji.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_879"
    },
    {
        "name": "湖南中吉科技有限责任公司",
        "url": "http://www.t-cn.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_880"
    },
    {
        "name": "东莞市一马化工有限公司",
        "url": "http://www.yimahuagong.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_881"
    },
    {
        "name": "北京市海淀区向导培训学校",
        "url": "http://www.xdschool.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_882"
    },
    {
        "name": "合肥新航道语言培训中心",
        "url": "http://hf.xhd.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_883"
    },
    {
        "name": "北京东泰英利科技有限公司",
        "url": "http://www.bjdtyl.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_884"
    },
    {
        "name": "北京奥博信达科技有限公司",
        "url": "http://www.aobsoft.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_885"
    },
    {
        "name": "满洲里市扎赉诺尔金桥国际旅行社有限公司",
        "url": "http://www.mzljq.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_886"
    },
    {
        "name": "杭州市下城区居善木材商行",
        "url": "http://www.zjtiange.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_887"
    },
    {
        "name": "河南省振源科技有限公司",
        "url": "http://www.hnzykeji.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_888"
    },
    {
        "name": "上海心仪电子科技有限公司",
        "url": "http://www.psytech.com.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_889"
    },
    {
        "name": "常州市明源建材有限公司",
        "url": "http://www.cz-my.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_892"
    },
    {
        "name": "深圳市三合鑫通讯设备有限公司",
        "url": "http://www.szsanhexin.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_893"
    },
    {
        "name": "呼和浩特市五洲医院有限责任公司",
        "url": "http://www.3339777.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_896"
    },
    {
        "name": "桂林中国国际旅行社有限责任公司",
        "url": "http://www.guilincits.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_897"
    },
    {
        "name": "重庆爱持家网络科技有限公司",
        "url": "http://www.superisong.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_898"
    },
    {
        "name": "上海凯奇玩具有限公司",
        "url": "http://www.shkqwj.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_900"
    },
    {
        "name": "马鞍山市天友机械刃模厂",
        "url": "http://www.masstyjx.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_902"
    },
    {
        "name": "山东斯蒙特节能技术有限公司",
        "url": "http://www.sdcement.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_905"
    },
    {
        "name": "诸城市茂新机械有限公司",
        "url": "http://www.maoxinjixie.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_906"
    },
    {
        "name": "广东瑞骏特种车辆有限公司",
        "url": "http://www.rx-gz.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_907"
    },
    {
        "name": "重庆瀚客企业管理顾问有限公司",
        "url": "http://www.hkk100.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_909"
    },
    {
        "name": "广州仁致信息科技有限公司",
        "url": "http://www.gzrenzhi.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_910"
    },
    {
        "name": "广州市品德清洁服务有限公司",
        "url": "http://www.gzpinde.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_911"
    },
    {
        "name": "广州仁致信息科技有限公司",
        "url": "http://www.gzrenzhi.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_912"
    },
    {
        "name": "合肥天工标识标牌有限公司",
        "url": "http://www.tgbp.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_914"
    },
    {
        "name": "佛山市南海区里水美之选门窗加工厂",
        "url": "http://www.meizhixuan.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_915"
    },
    {
        "name": "佛山市三水欧美莱门业有限公司",
        "url": "http://www.fsomldoor.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_916"
    },
    {
        "name": "郑州智睿机械设备有限公司",
        "url": "http://www.zzzr.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_917"
    },
    {
        "name": "北京圣菲空间设计有限公司",
        "url": "http://www.houcc.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_918"
    },
    {
        "name": "程力专用汽车股份有限公司销售八分公司",
        "url": "http://www.zgclqc123.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_919"
    },
    {
        "name": "山西太谷大盛魁供热设备有限公司",
        "url": "http://www.dskgr.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_920"
    },
    {
        "name": "四川千木百汇木业有限公司",
        "url": "http://www.scqianmu.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_921"
    },
    {
        "name": "杭州幻影智能科技有限公司",
        "url": "http://www.mini-gogo.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_922"
    },
    {
        "name": "陕西新纪元烹饪技能培训学校",
        "url": "http://www.xjyprxx.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_923"
    },
    {
        "name": "北京市大兴区京军医院",
        "url": "http://www1.jjnaotan.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_925"
    },
    {
        "name": "四川卖淘网络科技有限公司",
        "url": "http://www.maitaowang.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_926"
    },
    {
        "name": "北京美凯德保洁服务有限公司",
        "url": "http://www.mkdbaojie.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_927"
    },
    {
        "name": "北京海博译翻译有限公司",
        "url": "http://www.haiboyi.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_928"
    },
    {
        "name": "迪拉索·高品(北京)装饰有限责任公司",
        "url": "http://dilusso.cc/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_930"
    },
    {
        "name": "义乌市卓尔文化传播有限公司",
        "url": "http://www.yjesx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_931"
    },
    {
        "name": "广州玖的数码科技有限公司",
        "url": "http://www.ninedvr.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_932"
    },
    {
        "name": "程力专用汽车股份有限公司销售二分公司",
        "url": "http://www.clxsgsw.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_934"
    },
    {
        "name": "东莞市卓尔传承科技服务有限公司",
        "url": "http://www.zscq-home.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_935"
    },
    {
        "name": "东莞市卓尔传承科技服务有限公司",
        "url": "http://www.zscq-home.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_936"
    },
    {
        "name": "广州市亿旭软件技术有限公司",
        "url": "http://www.buyerp.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_938"
    },
    {
        "name": "沈阳纳森网络科技有限公司",
        "url": "http://www.synswl.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_939"
    },
    {
        "name": "广州弘基福泰文化用品有限公司",
        "url": "http://www.gzhjft.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_943"
    },
    {
        "name": "西安卓力装饰工程有限公司",
        "url": "http://www.zhuolizs.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_944"
    },
    {
        "name": "西安卓力装饰工程有限公司",
        "url": "http://www.zhuolizs.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_945"
    },
    {
        "name": "深圳市鹰超体育用品有限公司",
        "url": "http://www.tiyusc.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_946"
    },
    {
        "name": "厦门天济医院",
        "url": "http://www.xmtj.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_948"
    },
    {
        "name": "安宁净源装修污染治理服务中心",
        "url": "http://www.lanzhouqxhb.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_950"
    },
    {
        "name": "安徽立知教育信息咨询有限公司",
        "url": "http://www.lzexam.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_951"
    },
    {
        "name": "云南软扬科技有限公司",
        "url": "http://www.softrise.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_952"
    },
    {
        "name": "陕西瑞特热工机电设备科技有限公司",
        "url": "http://www.sxruite.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_953"
    },
    {
        "name": "天津市晟滨包装制品有限公司",
        "url": "http://www.tjsbbz.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_954"
    },
    {
        "name": "湖北普天科技有限公司",
        "url": "http://www.hbptkj.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_955"
    },
    {
        "name": "深圳市赛野模型有限公司",
        "url": "http://www.saiye.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_956"
    },
    {
        "name": "惠城区大力搬迁服务部",
        "url": "http://www.dali87.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_957"
    },
    {
        "name": "安徽唯娜环保科技有限公司",
        "url": "http://www.meilingjcz.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_958"
    },
    {
        "name": "安徽商帝厨卫设备有限公司",
        "url": "http://www.hatti.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_959"
    },
    {
        "name": "北京和祥聚瑞国际贸易有限公司",
        "url": "http://beijingcustoms.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_961"
    },
    {
        "name": "江苏华富储能新技术股份有限公司",
        "url": "http://www.cnhuafu.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_962"
    },
    {
        "name": "萍乡市祥国农业科技发展有限公司",
        "url": "http://www.pxxg888.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_963"
    },
    {
        "name": "深圳市嘉兰图设计股份有限公司",
        "url": "http://www.newplan.com.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_964"
    },
    {
        "name": "北京市德彩若谷印刷设计有限公司",
        "url": "http://www.010d.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_965"
    },
    {
        "name": "广州会偲信息技术有限公司",
        "url": "http://www.crescn.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_966"
    },
    {
        "name": "一扇门控股有限公司",
        "url": "http://www.yishanmen.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_967"
    },
    {
        "name": "宁波易创创业服务有限公司",
        "url": "http://www.nbco.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_968"
    },
    {
        "name": "宁波易创创业服务有限公司",
        "url": "http://www.nbco.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_969"
    },
    {
        "name": "宁波易创创业服务有限公司",
        "url": "http://www.nbco.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_971"
    },
    {
        "name": "宁波易创创业服务有限公司",
        "url": "http://www.nbco.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_972"
    },
    {
        "name": "昆明奔屹印刷有限公司",
        "url": "http://www.11992009.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_976"
    },
    {
        "name": "宁波易创创业服务有限公司",
        "url": "http://www.nbco.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_979"
    },
    {
        "name": "宁波易创创业服务有限公司",
        "url": "http://www.nbco.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_981"
    },
    {
        "name": "山东耐垦智能装备有限公司",
        "url": "http://www.nakeen.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_982"
    },
    {
        "name": "广州欢哥易装饰材料有限公司",
        "url": "http://www.hlxjzyp.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_985"
    },
    {
        "name": "中商国际旅行社有限公司北京北二环营业部",
        "url": "http://www.tszlx.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_987"
    },
    {
        "name": "河北嘉固碳纤维技术有限公司",
        "url": "http://chn-jiagu.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_989"
    },
    {
        "name": "程力专用汽车股份有限公司销售六分公司",
        "url": "http://www.zgclzqgw.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_990"
    },
    {
        "name": "上海志堂机械工程有限公司",
        "url": "http://www.zhitangjx.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_991"
    },
    {
        "name": "合肥得道石材有限公司",
        "url": "http://ddstone.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_993"
    },
    {
        "name": "胡真",
        "url": "http://www.lzkuangshan.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_995"
    },
    {
        "name": "汝州市欣辉实业有限公司",
        "url": "http://www.xhjyrc.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_996"
    },
    {
        "name": "苏州市相城区黄桥金属装潢箱体厂",
        "url": "http://www.suzhoubanjin.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_997"
    },
    {
        "name": "北京一诺天邦生物科技有限公司",
        "url": "http://www.yntb77.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_998"
    },
    {
        "name": "北京一诺天邦生物科技有限公司",
        "url": "http://www.yntb77.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_999"
    },
    {
        "name": "北京一诺天邦生物科技有限公司",
        "url": "http://www.yntb77.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1000"
    },
    {
        "name": "北京一诺天邦生物科技有限公司",
        "url": "http://www.yntb77.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1001"
    },
    {
        "name": "济南全优教育咨询有限公司",
        "url": "http://www.quanyou100.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1002"
    },
    {
        "name": "湖南伟涛行工业设备有限公司",
        "url": "http://www.hnweitao.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1003"
    },
    {
        "name": "文山康万家农业发展有限公司",
        "url": "http://www.sanqijiayuan.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1004"
    },
    {
        "name": "东莞市邦诚企业会计税务服务有限公司",
        "url": "http://b-boss.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1005"
    },
    {
        "name": "上海健桥医院有限公司",
        "url": "http://www.jqbuyu.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1006"
    },
    {
        "name": "河南瑞奇特化工有限公司",
        "url": "http://www.rqtcp.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1007"
    },
    {
        "name": "深圳幕恩品牌设计有限公司",
        "url": "http://www.moonbrand.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1008"
    },
    {
        "name": "承德县通成石材厂",
        "url": "http://www.cdtcsc.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1010"
    },
    {
        "name": "武汉星造音文化传播有限公司",
        "url": "http://www.xingzaoyin.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1011"
    },
    {
        "name": "南宁市广宁电子产品商行",
        "url": "http://www.gndjj.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1012"
    },
    {
        "name": "佛山市南海金凯迪门窗厂",
        "url": "http://www.wmzpmc.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1013"
    },
    {
        "name": "北京华禹隆昌汽车销售服务有限公司",
        "url": "http://www.ychtoyota.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1014"
    },
    {
        "name": "深圳石头智慧工业设计有限公司",
        "url": "http://www.stzhid.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1015"
    },
    {
        "name": "瑞安市创新膜结构有限公司",
        "url": "http://www.cncxmo.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1016"
    },
    {
        "name": "上海沪禹泵阀设备有限公司",
        "url": "http://www.huyu115.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1017"
    },
    {
        "name": "石家庄画典广告策划有限公司",
        "url": "http://www.yinhaoyin.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1019"
    },
    {
        "name": "上海正深铝业有限公司",
        "url": "http://www.zsly888.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1020"
    },
    {
        "name": "无锡鲁尔曼金属材料有限公司",
        "url": "http://www.raulman.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1021"
    },
    {
        "name": "济南凯恩试验机制造有限公司",
        "url": "http://www.kntest.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1022"
    },
    {
        "name": "山东阳春羊奶乳业有限公司",
        "url": "http://www.ycdairy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1023"
    },
    {
        "name": "南昌市禧福景观设计有限公司",
        "url": "http://www.xfjgsj.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1025"
    },
    {
        "name": "东莞市食尚部落饮食管理服务有限公司",
        "url": "http://www.gzswxpx.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1026"
    },
    {
        "name": "东莞实越网络科技有限公司",
        "url": "http://www.ggycpm.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1027"
    },
    {
        "name": "成都永诚杰力商贸有限公司",
        "url": "http://www.yongchengjieli.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1029"
    },
    {
        "name": "上海启策动力测试设备有限公司",
        "url": "http://www.cegongji.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1030"
    },
    {
        "name": "广州东沛餐饮设备有限公司",
        "url": "http://www.dpxwj.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1031"
    },
    {
        "name": "福建捷宇电脑科技有限公司",
        "url": "http://www.doccamera.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1032"
    },
    {
        "name": "上海六韬建筑装饰设计工程有限公司",
        "url": "http://www.liutaochina.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1033"
    },
    {
        "name": "上海品诚塑胶有限公司",
        "url": "http://www.pcsj.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1034"
    },
    {
        "name": "黑龙江易商信息技术有限公司",
        "url": "http://www.mbme.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1035"
    },
    {
        "name": "上海齐坤工业自动化设备有限公司",
        "url": "http://www.shqikun.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1036"
    },
    {
        "name": "广州艺欣工艺品有限公司",
        "url": "http://www.yxframe.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1037"
    },
    {
        "name": "宁波德业日用电器科技有限公司",
        "url": "http://www.deye.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1038"
    },
    {
        "name": "浙江沃莱菲装饰材料有限公司",
        "url": "http://www.wallife.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1039"
    },
    {
        "name": "海安中南机电设备制造厂",
        "url": "http://www.ntznjd.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1040"
    },
    {
        "name": "北京大业美家家居装饰有限公司无锡分公司",
        "url": "http://wx.dayemj.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1042"
    },
    {
        "name": "深圳市高歌品牌营销策划有限公司",
        "url": "http://www.szgoge.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1043"
    },
    {
        "name": "合肥通久仪表有限公司",
        "url": "http://www.hftjyb.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1044"
    },
    {
        "name": "沈阳世纪鹏升环保设备有限公司",
        "url": "http://www.sysjps.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1045"
    },
    {
        "name": "山西中智广播音响有限公司",
        "url": "http://eko-audio.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1046"
    },
    {
        "name": "九鼎建筑装饰工程有限公司",
        "url": "http://www.jdzs.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1047"
    },
    {
        "name": "成都蓉卡科技有限公司",
        "url": "http://www.ka88.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1049"
    },
    {
        "name": "成都蓉卡科技有限公司",
        "url": "http://www.ka88.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1050"
    },
    {
        "name": "杭州晟彩瑞杰地坪工程有限公司",
        "url": "http://www.hzscrj.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1051"
    },
    {
        "name": "石家庄三立谷物精选机械有限公司",
        "url": "http://www.sanli.net.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1052"
    },
    {
        "name": "深圳市云之讯网络技术有限公司",
        "url": "http://www.ucpaas.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1054"
    },
    {
        "name": "成都睿希教育咨询有限责任公司",
        "url": "http://www.jianguoclass.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1055"
    },
    {
        "name": "中山市小榄镇万利机械设备销售部",
        "url": "http://www.jltybjx.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1056"
    },
    {
        "name": "河南通达重工科技有限公司",
        "url": "http://www.tongdazg.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1057"
    },
    {
        "name": "北京天佑方舟科技有限公司",
        "url": "http://tianyoufangzhou.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1058"
    },
    {
        "name": "长春同康医院",
        "url": "http://www.tongkang120.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1059"
    },
    {
        "name": "江西速维科技有限公司",
        "url": "http://www.suwei360.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1060"
    },
    {
        "name": "单县华远家庭农场",
        "url": "http://www.mlusun.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1061"
    },
    {
        "name": "澳加美联(北京)出入境服务有限公司",
        "url": "http://www.aucanlink.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1062"
    },
    {
        "name": "深圳市车度空间科技有限公司",
        "url": "http://www.szbyhcav.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1065"
    },
    {
        "name": "吉林王者商贸有限公司",
        "url": "http://www.wangzhejuntuan.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1066"
    },
    {
        "name": "西安新潮餐饮管理有限公司",
        "url": "http://www.xinchaocy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1068"
    },
    {
        "name": "成都拓成工业产品设计有限公司",
        "url": "http://www.top-designs.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1071"
    },
    {
        "name": "上海驭程制冷设备有限公司",
        "url": "http://www.yuchengzl.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1072"
    },
    {
        "name": "西安米兰心理咨询有限公司",
        "url": "http://www.mlxinli.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1073"
    },
    {
        "name": "成都光大国际旅行社有限责任公司",
        "url": "http://www.617ly.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1074"
    },
    {
        "name": "深圳市酷睿投资发展有限公司",
        "url": "http://www.corecool.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1077"
    },
    {
        "name": "深圳市酷睿投资发展有限公司",
        "url": "http://www.corecool.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1078"
    },
    {
        "name": "深圳市酷睿投资发展有限公司",
        "url": "http://www.corecool.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1079"
    },
    {
        "name": "深圳市酷睿投资发展有限公司",
        "url": "http://www.corecool.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1080"
    },
    {
        "name": "深圳市酷睿投资发展有限公司",
        "url": "http://www.corecool.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1081"
    },
    {
        "name": "深圳市酷睿投资发展有限公司",
        "url": "http://www.corecool.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1082"
    },
    {
        "name": "深圳市酷睿投资发展有限公司",
        "url": "http://www.corecool.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1083"
    },
    {
        "name": "滕州泰力数控机床有限公司",
        "url": "http://www.sdtldy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1084"
    },
    {
        "name": "北京广通佳业汽车贸易有限公司",
        "url": "http://www.toyotagz.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1085"
    },
    {
        "name": "南京市六合区恒之源保温材料经营部",
        "url": "http://www.jshzybw.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1086"
    },
    {
        "name": "深圳唯学教育科技有限公司",
        "url": "http://www.vishoor.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1089"
    },
    {
        "name": "程力专用汽车股份有限公司销售一分公司",
        "url": "http://www.clzzj.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1091"
    },
    {
        "name": "程力专用汽车股份有限公司销售一分公司",
        "url": "http://www.clzzj.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1092"
    },
    {
        "name": "深圳市康利邦高分子新材料有限公司",
        "url": "http://www.kanglibang.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1093"
    },
    {
        "name": "丽水力克生物科技有限公司",
        "url": "http://www.zg9bs.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1094"
    },
    {
        "name": "北京安科迅捷科技发展有限公司",
        "url": "http://www.i-unicom.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1096"
    },
    {
        "name": "国旅(深圳)国际旅行社有限公司福田营业部",
        "url": "http://www.0755cits.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1097"
    },
    {
        "name": "东莞市远程商旅服务有限公司",
        "url": "http://www.dglxs.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1100"
    },
    {
        "name": "徐州新华医院",
        "url": "http://www.xzxhyy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1101"
    },
    {
        "name": "北京波菲特咨询顾问有限公司",
        "url": "http://bofeitezixun.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1102"
    },
    {
        "name": "深圳市光中道电子有限公司",
        "url": "http://www.tank007.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1103"
    },
    {
        "name": "上海泓庭商务咨询有限公司",
        "url": "http://hugehall.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1104"
    },
    {
        "name": "深圳市科贝迪办公设备有限公司",
        "url": "http://www.cobede.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1105"
    },
    {
        "name": "北京一品世家东方饮食管理有限公司",
        "url": "http://www.fkkc.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1107"
    },
    {
        "name": "程力专用汽车股份有限公司",
        "url": "http://www.cljtmy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1108"
    },
    {
        "name": "成都有怡工程技术有限公司",
        "url": "http://www.cduyi.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1109"
    },
    {
        "name": "西安市未央区金比亚职业技能培训学校",
        "url": "http://www.gimbia.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1110"
    },
    {
        "name": "常州市武研热油泵有限公司",
        "url": "http://www.wry008.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1112"
    },
    {
        "name": "广州市网辉网络科技有限公司",
        "url": "http://www.bbtang.me",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1114"
    },
    {
        "name": "深圳市吉源润滑油有限公司",
        "url": "http://www.jiyrhy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1115"
    },
    {
        "name": "深圳市众远智能科技有限公司",
        "url": "http://www.zhongyuanzn.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1116"
    },
    {
        "name": "上海境华出入境服务有限公司",
        "url": "http://www.jhee.net/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1117"
    },
    {
        "name": "北京诚智慧恒技术服务有限公司",
        "url": "http://www.leicaz.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1118"
    },
    {
        "name": "北京微印相科技有限公司",
        "url": "http://www.wyxer.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1119"
    },
    {
        "name": "程力专用汽车股份有限公司销售一分公司",
        "url": "http://www.clgsw.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1120"
    },
    {
        "name": "湖南星悦工程设备有限公司",
        "url": "http://www.hnxingyue.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1121"
    },
    {
        "name": "上海豪蟹汇实业有限公司",
        "url": "http://www.haoxiehui.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1122"
    },
    {
        "name": "北京英妆时代文化发展有限公司",
        "url": "http://www.yzsdhzpx.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1123"
    },
    {
        "name": "佛山市上下和地毯有限公司",
        "url": "http://www.shangxiahe.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1125"
    },
    {
        "name": "天津市汇丰企业外包服务有限公司",
        "url": "http://www.hfwb1997.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1126"
    },
    {
        "name": "天津市汇丰企业外包服务有限公司",
        "url": "http://www.hfwb1997.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1127"
    },
    {
        "name": "广州英奈生物科技有限公司",
        "url": "http://www.impnails.com.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1128"
    },
    {
        "name": "盐城市亭湖区城西昌之弘家禽经营部",
        "url": "http://hr.symw754.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1130"
    },
    {
        "name": "广州市广品餐饮企业管理有限公司",
        "url": "http://www.gpcy88.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1131"
    },
    {
        "name": "砀山县和顺鑫商贸有限公司",
        "url": "http://www.huangtaoguantoudaili.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1132"
    },
    {
        "name": "黑龙江省中国国际旅行社有限责任公司爱建分公司",
        "url": "http://citshrb.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1133"
    },
    {
        "name": "北京市大兴区京军医院",
        "url": "http://www1.010jjnt.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1135"
    },
    {
        "name": "苏州天阳环保工程有限公司",
        "url": "http://www.tianyang1688.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1136"
    },
    {
        "name": "永宁县望远镇浩龙门业",
        "url": "http://haolongmenye.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1137"
    },
    {
        "name": "济南东科科技有限公司",
        "url": "http://www.39196.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1138"
    },
    {
        "name": "永宁县望远镇浩龙门业",
        "url": "http://haolongmenye.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1139"
    },
    {
        "name": "重庆固尔美科技有限公司",
        "url": "http://www.cqlxcc.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1140"
    },
    {
        "name": "深圳市恩兰电子科技有限公司",
        "url": "http://www.enlan88.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1142"
    },
    {
        "name": "上海优攀米投资管理有限公司",
        "url": "http://www.yopark.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1144"
    },
    {
        "name": "深圳桃花季实业有限公司",
        "url": "http://www.thj.cc",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1146"
    },
    {
        "name": "鞍山鞍美国贸实业开发有限公司",
        "url": "http://www.asam.net.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1147"
    },
    {
        "name": "大连连京商标事务所有限公司",
        "url": "http://www.daliantm.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1148"
    },
    {
        "name": "北京熙仁医院有限公司",
        "url": "http://www.eyemax.cn/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1149"
    },
    {
        "name": "广州房世家网络科技有限公司",
        "url": "http://www.fangsk.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1150"
    },
    {
        "name": "北京巽震数码科技有限公司",
        "url": "http://www.vrstudio.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1152"
    },
    {
        "name": "沈阳欧特美得建筑装饰材料有限公司",
        "url": "http://www.syotmd.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1155"
    },
    {
        "name": "上海蒂斯诺建筑装饰工程有限公司",
        "url": "http://www.dinner-space.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1156"
    },
    {
        "name": "爱康国宾健康体检管理集团有限公司",
        "url": "http://mall.ikang.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1157"
    },
    {
        "name": "济南越振机械有限公司",
        "url": "http://jnyzjx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1159"
    },
    {
        "name": "南通中政教育咨询有限公司",
        "url": "http://www.jszzexam.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1160"
    },
    {
        "name": "长治市华赛洋保温建材有限公司",
        "url": "http://www.czhsyjc.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1161"
    },
    {
        "name": "程力专用汽车股份有限公司销售一分公司",
        "url": "http://www.91suichediao.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1162"
    },
    {
        "name": "广州碧浪水上乐园设备有限公司",
        "url": "http://www.gzbilang.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1163"
    },
    {
        "name": "上海徐汇区韦博进修学校",
        "url": "http://www.webi.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1165"
    },
    {
        "name": "北京天机世纪教育科技有限公司",
        "url": "http://www.meiwooo.com/baidu/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1166"
    },
    {
        "name": "深圳市宝安区吉利风空调维修部",
        "url": "http://szjlfkt.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1167"
    },
    {
        "name": "杭州市现代汽车维修职业培训学校",
        "url": "http://www.xiandaiqx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1168"
    },
    {
        "name": "成都成华脑康医院有限公司",
        "url": "http://www.cdnk120.net",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1169"
    },
    {
        "name": "成都成华脑康医院有限公司",
        "url": "http://www.cdch120.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1170"
    },
    {
        "name": "成都成华脑康医院有限公司",
        "url": "http://www.cdch120.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1171"
    },
    {
        "name": "广东金向导人力资源服务有限公司",
        "url": "http://www.51aiyibang.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1172"
    },
    {
        "name": "故城县饶阳店兴宇毛皮制品厂",
        "url": "http://www.xingyupicao.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1173"
    },
    {
        "name": "北京同盛兴业商贸有限公司",
        "url": "http://www.vipdazhaxie.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1174"
    },
    {
        "name": "深圳深科安门诊部",
        "url": "http://www.120shenke.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1175"
    },
    {
        "name": "武汉蓝天白云环保科技有限公司",
        "url": "http://www.whltbyl.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1177"
    },
    {
        "name": "东易日盛家居装饰集团股份有限公司",
        "url": "http://qd.dyrs.com.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1180"
    },
    {
        "name": "上海北铭高强度钢材有限公司",
        "url": "http://www.sh-bm.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1181"
    },
    {
        "name": "深圳市冠航环境科技工程有限公司",
        "url": "http://www.airkey.cn",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1182"
    },
    {
        "name": "北京旭日扬帆科技发展有限公司",
        "url": "http://www.xuriyangfan.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1183"
    },
    {
        "name": "东莞市虎兴白蚁防治有限公司",
        "url": "http://www.dghuxing.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1184"
    },
    {
        "name": "深圳市兴和弘五金机电有限公司",
        "url": "http://www.shenzhenjinlongyu.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1186"
    },
    {
        "name": "陕西蓝天民航技师学院",
        "url": "http://www.sxltmh.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1187"
    },
    {
        "name": "合肥名智财税咨询有限公司",
        "url": "http://www.hfmzcs.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1188"
    },
    {
        "name": "深圳市鑫盈科贸易有限公司",
        "url": "http://www.xykrhy.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1189"
    },
    {
        "name": "深圳市泰德兰电子有限公司",
        "url": "http://www.sz800-ic.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1190"
    },
    {
        "name": "华中湖北人才培训有限公司",
        "url": "http://www.chinarcpx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1191"
    },
    {
        "name": "武汉松杉电子信息有限公司",
        "url": "http://www.whsongshan.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1192"
    },
    {
        "name": "天津津门中医医院有限公司",
        "url": "http://www.022tjfk.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1193"
    },
    {
        "name": "扬州正艺试验机械有限公司",
        "url": "http://www.yzzysyj.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1194"
    },
    {
        "name": "河北梦之佳家具有限公司",
        "url": "http://hbmzjjj.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1195"
    },
    {
        "name": "新疆领航财务管理有限公司",
        "url": "http://www.lhcwpx.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1196"
    },
    {
        "name": "卫功奎",
        "url": "http://www.xingbiandalvshi.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1197"
    },
    {
        "name": "山东通正生物医药装备设计制造有限公司",
        "url": "http://www.shengwuyiyaozhuangbei.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1198"
    },
    {
        "name": "东方品购(北京)科技有限公司",
        "url": "http://www.jiaodudingzhi.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1199"
    },
    {
        "name": "天津市北辰区宏达天丰机械厂",
        "url": "http://www.tjtflj.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1200"
    },
    {
        "name": "湖北中天立美膜结构工程有限公司",
        "url": "http://www.hbztlm.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1202"
    },
    {
        "name": "嘉兴凯兰智慧家居有限公司",
        "url": "http://www.cnkailan.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1203"
    },
    {
        "name": "六安市三力弹簧制品有限公司",
        "url": "http://www.laslth.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1207"
    },
    {
        "name": "北京华章世纪文化发展有限公司",
        "url": "http://shanghai.hzmba.com/",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1208"
    },
    {
        "name": "江苏特威机床制造有限公司",
        "url": "http://www.xiaopingxian.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1209"
    },
    {
        "name": "东莞市微松塑胶五金制品有限公司",
        "url": "http://www.vi-th.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1211"
    },
    {
        "name": "北京神州中泰办公家具有限公司",
        "url": "http://www.zontan.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1212"
    },
    {
        "name": "北京方石亚盛科技发展有限公司",
        "url": "http://www.qtfxyq.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1214"
    },
    {
        "name": "四川书亦餐饮管理有限公司",
        "url": "http://www.shuyisxc.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1215"
    },
    {
        "name": "深圳市炜安达研磨设备有限公司",
        "url": "http://www.weianda.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1216"
    },
    {
        "name": "成都华易仓储物流设备制造有限公司",
        "url": "http://www.hyrack.com",
        "task_type": "comment",
        "web_type": "baidu_shangqiao",
        "id": "comment_baidu_shangqiao_id_1217"
    },
    {
        "name": "任丘市鹏宇化工有限公司",
        "url": "http://www.hbrqp
Download .txt
gitextract_2cmk1s23/

├── .gitignore
├── LICENSE
├── README.md
├── assets/
│   ├── baidu_lxb.json
│   ├── baidu_lxb_20000.json
│   ├── baidu_lxb_30000.json
│   ├── baidu_lxb_40000.json
│   ├── baidu_lxb_50000.json
│   ├── baidu_lxb_60000.json
│   ├── baidu_lxb_70000.json
│   ├── baidu_lxb_80000.json
│   ├── baidu_lxb_90000.json
│   ├── baidu_shangqiao.json
│   ├── baidu_shangqiao_40000.json
│   ├── baidu_shangqiao_50000.json
│   ├── baidu_shangqiao_60000.json
│   ├── baidu_shangqiao_70000.json
│   ├── baidu_shangqiao_80000.json
│   └── baidu_shangqiao_90000.json
├── config.py
├── main.py
└── task.py
Download .txt
SYMBOL INDEX (7 symbols across 2 files)

FILE: main.py
  function main (line 11) | def main():
  function setup_driver (line 37) | def setup_driver():
  function get_url_list (line 49) | def get_url_list():

FILE: task.py
  function single_task (line 10) | def single_task(driver, url, wait):
  function comment_for_immediate_call (line 31) | def comment_for_immediate_call(wait):
  function comment_for_later_call (line 51) | def comment_for_later_call(wait):
  function pre_handle (line 86) | def pre_handle(driver, url):
Copy disabled (too large) Download .json
Condensed preview — 22 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (11,210K chars).
[
  {
    "path": ".gitignore",
    "chars": 3798,
    "preview": "# Created by .ignore support plugin (hsz.mobi)\nlocal_config.py\n\n### JetBrains template\n# Covers JetBrains IDEs: IntelliJ"
  },
  {
    "path": "LICENSE",
    "chars": 1064,
    "preview": "MIT License\n\nCopyright (c) 2020 Xiaoyuu\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof"
  },
  {
    "path": "README.md",
    "chars": 2058,
    "preview": "# buy_pig_plan_python\n>本项目是 [buy_pig_plan | 买猪计划](https://github.com/aqiongbei/buy_pig_plan) 的 Python 实现版。\n\n首先非常感谢原作者提供的"
  },
  {
    "path": "assets/baidu_lxb.json",
    "chars": 760490,
    "preview": "[\n    {\n        \"name\": \"合肥零零肆捌餐饮管理有限公司\",\n        \"url\": \"http://www.0048xlx.com\",\n        \"task_type\": \"comment\",\n     "
  },
  {
    "path": "assets/baidu_lxb_20000.json",
    "chars": 109322,
    "preview": "[\n    {\n        \"name\": \"沈阳市和平区曹曦月花艺工作室\",\n        \"url\": \"http://www.xiyuejx.com\",\n        \"task_type\": \"call\",\n        "
  },
  {
    "path": "assets/baidu_lxb_30000.json",
    "chars": 291030,
    "preview": "[\n    {\n        \"name\": \"苏州秀涂地坪工程有限公司\",\n        \"url\": \"http://www.szxiutu.com/\",\n        \"task_type\": \"call\",\n        \""
  },
  {
    "path": "assets/baidu_lxb_40000.json",
    "chars": 290348,
    "preview": "[\n    {\n        \"name\": \"圣康源养生科技(苏州)有限公司\",\n        \"url\": \"http://www.zisuys.com\",\n        \"task_type\": \"call\",\n        "
  },
  {
    "path": "assets/baidu_lxb_50000.json",
    "chars": 234082,
    "preview": "[\n    {\n        \"name\": \"姜长永\",\n        \"url\": \"http://www.ykxfly.com\",\n        \"task_type\": \"call\",\n        \"web_type\": "
  },
  {
    "path": "assets/baidu_lxb_60000.json",
    "chars": 181421,
    "preview": "[\n    {\n        \"name\": \"徐州市建筑工人医院\",\n        \"url\": \"http://xzsgryy.com\",\n        \"task_type\": \"call\",\n        \"web_type"
  },
  {
    "path": "assets/baidu_lxb_70000.json",
    "chars": 182573,
    "preview": "[\n    {\n        \"name\": \"安徽驰久先锋机械设备有限公司\",\n        \"url\": \"http://www.chijiuxianfeng.com/\",\n        \"task_type\": \"call\",\n"
  },
  {
    "path": "assets/baidu_lxb_80000.json",
    "chars": 110250,
    "preview": "[\n    {\n        \"name\": \"北京蚂蚁玖玖浏览器技术开发中心\",\n        \"url\": \"http://www.myie9.com\",\n        \"task_type\": \"call\",\n        \""
  },
  {
    "path": "assets/baidu_lxb_90000.json",
    "chars": 99702,
    "preview": "[\n    {\n        \"name\": \"和县新华医院\",\n        \"url\": \"http://hxxhyy.cn\",\n        \"task_type\": \"call\",\n        \"web_type\": \"b"
  },
  {
    "path": "assets/baidu_shangqiao.json",
    "chars": 1024990,
    "preview": "[\n    {\n        \"name\": \"长沙艾默柯节能科技有限公司\",\n        \"url\": \"http://www.aimok.cn/\",\n        \"task_type\": \"comment\",\n        "
  },
  {
    "path": "assets/baidu_shangqiao_40000.json",
    "chars": 108398,
    "preview": "[\n    {\n        \"name\": \"灵寿县泽达矿产品加工有限公司\",\n        \"url\": \"http://zdshiying.com\",\n        \"task_type\": \"call\",\n        \"w"
  },
  {
    "path": "assets/baidu_shangqiao_50000.json",
    "chars": 922781,
    "preview": "[\n    {\n        \"name\": \"沈阳永盛家具制造有限公司\",\n        \"url\": \"http://www.syjsjj.com\",\n        \"task_type\": \"comment\",\n        "
  },
  {
    "path": "assets/baidu_shangqiao_60000.json",
    "chars": 1038004,
    "preview": "[\n    {\n        \"name\": \"徐州市建筑工人医院\",\n        \"url\": \"http://xzsgryy.com\",\n        \"task_type\": \"comment\",\n        \"web_t"
  },
  {
    "path": "assets/baidu_shangqiao_70000.json",
    "chars": 1158246,
    "preview": "[\n    {\n        \"name\": \"山东千度网络科技有限公司\",\n        \"url\": \"http://www.qiandukeji.cn/\",\n        \"task_type\": \"comment\",\n    "
  },
  {
    "path": "assets/baidu_shangqiao_80000.json",
    "chars": 1250293,
    "preview": "[\n    {\n        \"name\": \"上海锦韵环境设备工程有限公司\",\n        \"url\": \"http://www.shjoyuse.com\",\n        \"task_type\": \"comment\",\n    "
  },
  {
    "path": "assets/baidu_shangqiao_90000.json",
    "chars": 1125865,
    "preview": "[\n    {\n        \"name\": \"和县新华医院\",\n        \"url\": \"http://hxxhyy.cn\",\n        \"task_type\": \"comment\",\n        \"web_type\":"
  },
  {
    "path": "config.py",
    "chars": 252,
    "preview": "from selenium import webdriver\n\n\ntarget = {\n    \"phone\": \"13012345678\",\n    \"name\": \"小明\",\n    \"email\": \"xx@xx.xx\",\n    \""
  },
  {
    "path": "main.py",
    "chars": 1444,
    "preview": "import json\nimport random\nimport time\nimport os\n\nfrom selenium.webdriver.support.wait import WebDriverWait\nfrom config i"
  },
  {
    "path": "task.py",
    "chars": 4478,
    "preview": "import time\n\nfrom selenium.common.exceptions import NoSuchElementException, WebDriverException\nfrom selenium.webdriver.c"
  }
]

About this extraction

This page contains the full source code of the xxcosmos/buy_pig_plan_python GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 22 files (8.5 MB), approximately 2.2M tokens, and a symbol index with 7 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!