中建365

develop
wlh 2 years ago
parent 27654a4302
commit 8bbaa5fc45

@ -125,6 +125,11 @@
android:launchMode="singleTop"
android:screenOrientation="portrait" />
<activity
android:name=".activity.InfoSimpleAct"
android:launchMode="singleTop"
android:screenOrientation="portrait" />
<activity
android:name="com.xty.server.act.ScienceDetailAct"
android:launchMode="singleTop"
@ -140,7 +145,7 @@
android:screenOrientation="portrait" />
<activity
android:name="com.zj365.mime.act.SettingAct"
android:name="com.zj365.mime.act.SettingNewAct"
android:launchMode="singleTop"
android:screenOrientation="portrait" />
@ -280,6 +285,14 @@
android:name="com.zj365.mime.act.MessageDetailAct"
android:launchMode="singleTop"
android:screenOrientation="portrait" />
<activity android:name="com.xty.base.act.AgreementReadWebAct"
android:launchMode="singleTop"
android:screenOrientation="portrait"/>
<activity android:name="com.xty.base.act.RichTextAct"
android:launchMode="singleTop"
android:screenOrientation="portrait"/>
</application>
</manifest>

@ -0,0 +1,234 @@
package com.zj365.dc.activity
import android.content.Intent
import android.text.Editable
import android.text.TextWatcher
import android.util.Log
import com.alibaba.android.arouter.facade.annotation.Route
import com.alibaba.android.arouter.launcher.ARouter
import com.luck.picture.lib.PictureSelector
import com.luck.picture.lib.config.PictureConfig
import com.tamsiree.rxkit.RxActivityTool
import com.tamsiree.rxkit.RxKeyboardTool
import com.tencent.qcloud.tuicore.TUILogin
import com.tencent.qcloud.tuicore.interfaces.TUICallback
import com.xty.base.act.BaseVmAct
import com.xty.common.TimeSelect
import com.xty.common.TimeUtils
import com.xty.common.arouter.ARouterUrl
import com.xty.common.arouter.RouteManager
import com.xty.common.event.MyInfoEvent
import com.xty.common.picture.PictureUtils
import com.xty.common.setImage
import com.xty.common.util.CommonToastUtils
import com.zj365.dc.R
import com.zj365.dc.databinding.ActInfoSimpleBinding
import com.zj365.dc.vm.InfoSimpleVm
import org.greenrobot.eventbus.EventBus
import java.util.regex.Pattern
/**
* 基本信息
* 简单信息填写
*/
@Route(path = ARouterUrl.INFO_SIMPLE)
class InfoSimpleAct : BaseVmAct<InfoSimpleVm>() {
val binding by lazy { ActInfoSimpleBinding.inflate(layoutInflater) }
override fun setLayout() = binding.root
private var isBinding: Boolean = false
private var sexType = 1
private var birthdayType = 1
var phone: String = ""
private var pwd: String = ""
private val timeSelect by lazy { TimeSelect(this) {} }
private val textListener by lazy {
object : TextWatcher {
override fun beforeTextChanged(s: CharSequence?, start: Int, count: Int, after: Int) {
}
override fun onTextChanged(s: CharSequence?, start: Int, before: Int, count: Int) {
}
override fun afterTextChanged(s: Editable?) {
binding.mName.removeTextChangedListener(this)
val str = s.toString().trim()
if (str.isNotEmpty()) {
val isNum = Pattern.matches("[0-9]", str.substring(0, 1))
if (isNum) {
if (str.length > 2) {
binding.mName.setText(str.substring(1, str.length))
} else {
binding.mName.setText("")
}
CommonToastUtils.showToast(R.string.name_first_num)
}
}
binding.mName.addTextChangedListener(this)
}
}
}
override fun initData() {
super.initData()
isDarkBar = true
phone = intent.getStringExtra("phone").toString()
pwd = intent.getStringExtra("password").toString()
}
override fun initView() {
super.initView()
statusBar(binding.title.mView)
binding.title.mTvTitle.text = getString(R.string.base_info)
binding.title.mIvBack.setOnClickListener { finish() }
binding.mImage.setOnClickListener { PictureUtils.openCamera(this) }
// val calendaryear = Calendar.getInstance()
// calendaryear.add(Calendar.YEAR, -14)
timeSelect.startDate.set(1922, 0, 1)
// timeSelect.endDate = calendaryear
binding.llBirthday.setOnClickListener {
RxKeyboardTool.hideSoftInput(this)
timeSelect.selectTime(binding.mBirthday)
}
sexType = if (binding.checkSex.isChecked) 2 else 1
birthdayType = if (binding.checkBirthday.isChecked) 2 else 1
// binding.mRadio.setOnCheckedChangeListener { group, checkedId ->
// when(checkedId){
// R.id.mRadio1->birthdayType=1
// R.id.mRadio2->birthdayType=2
//
// }
// }
binding.bindingTv.setOnClickListener {
isBinding = true
// dialogChooseDevice.show()
turnToSaveBaseData()
}
// binding.mGroup.setOnCheckedChangeListener { group, checkedId ->
// when(checkedId){
// R.id.mMale->sexType=1
// R.id.mGirl->sexType=2
// }
// }
binding.mName.addTextChangedListener(textListener)
binding.mSubmit.setOnClickListener {
isBinding = false
turnToSaveBaseData()
//跳转注册
// var bean =SimpleInfoBean()
// if( binding.mImage.tag!=null){
// bean.avatar= binding.mImage.tag.toString()
// }
// bean.name=name
// bean.sex=sexType
// bundle.clear()
// bundle.putSerializable("bean",bean)
// RouteManager.goActRequest(ARouterUrl.REGIST_ACT,this,1000,bundle)
}
}
/**
* 调用接口保存
*/
private fun turnToSaveBaseData() {
val birthDay = binding.mBirthday.text.toString().trim()
val name = binding.mName.text.toString().trim()
// if (name.isEmpty()) {
// isBinding = false
// ToastUtils.show(R.string.please_input_name)
// return
// }
if (TimeUtils.getAgeByBirth(birthDay) < 14) {
CommonToastUtils.showToast("需要年满14岁才可使用")
isBinding = false
return
}
val avatar = binding.mImage.tag
val datanal = avatar?.toString() ?: ""
val sexValue = if (binding.checkSex.isChecked) "2" else "1"
birthdayType = if (binding.checkBirthday.isChecked) 2 else 1
//调用接口
if (name.trim().isEmpty()) {
mViewModel.submit(datanal, null, sexValue, birthdayType.toString(), birthDay)
} else {
mViewModel.submit(datanal, name, sexValue, birthdayType.toString(), birthDay)
}
}
override fun liveObserver() {
mViewModel.setBasic.observe(this) {
//不管点击绑定还是完成都会去登录
EventBus.getDefault().post(MyInfoEvent())
mViewModel.login(phone, pwd)
if (isBinding) {
return@observe
}
CommonToastUtils.showSucceedToast("信息设置成功")
}
mViewModel.mLogin.observe(this) {
//登录成功请求用户token
mViewModel.getImUserSig("user_${it.data.id}")
}
mViewModel.getImUserSig.observe(this) {
Log.e("simon", "login" + it.data)
TUILogin.login(
applicationContext,
1400807230,
it.paramsData,
it.data,
object : TUICallback() {
override fun onSuccess() {
Log.e("simon", "onSuccess")
if (!isBinding) { //如果是直接点击完成,跳转到主页面
ARouter.getInstance().build(ARouterUrl.MAIN_ACT).navigation()
RxActivityTool.finishAllActivity()
} else { //如果是去绑定设备,跳转到设备选择界面,同是给予标记,告诉该界面已经登录
bundle.clear()
bundle.putBoolean("isLogin", true)
RouteManager.goAct(ARouterUrl.DEVICE_CHOICE, bundle)
}
}
override fun onError(errorCode: Int, errorMessage: String?) {
Log.e("simon", "onError")
}
})
}
}
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
super.onActivityResult(requestCode, resultCode, data)
if (resultCode === RESULT_OK) {
when (requestCode) {
PictureConfig.CHOOSE_REQUEST -> {
var result = PictureSelector.obtainMultipleResult(data)
if (result.size > 0) {
var path = if (result[0].compressPath.isEmpty()) {
result[0].androidQToPath
} else {
result[0].compressPath
}
binding.mImage.setImage(this, path)
binding.mImage.tag = path
}
}
1000 -> {
finish()
}
}
}
}
}

@ -23,14 +23,6 @@ import com.lifesense.android.ble.core.serializer.AbstractMeasureData
import com.lifesense.android.ble.device.fatscale.model.WeightMeasureData
import com.tamsiree.rxkit.RxActivityTool
import com.tamsiree.rxkit.RxSPTool
import com.tencent.imsdk.v2.V2TIMManager
import com.tencent.qcloud.tim.tuiofflinepush.notification.TUIUtils
import com.tencent.qcloud.tuicore.TUIConstants
import com.tencent.qcloud.tuicore.TUILogin
import com.tencent.qcloud.tuicore.event.ShowSystemMessageEvent
import com.tencent.qcloud.tuicore.interfaces.TUICallback
import com.tencent.qcloud.tuikit.tuichat.config.TUIChatConfigs
import com.tencent.qcloud.tuikit.tuiconversation.classicui.page.TUIConversationFragment
import com.xty.base.act.BaseVmAct
import com.xty.base.dialog.AppUpdateDialog
import com.xty.base.vp2.VpAdapter
@ -46,6 +38,7 @@ import com.zj365.dc.R
import com.zj365.dc.databinding.ActivityMainBinding
import com.zj365.dc.fragment.DynamicManagementFrag
import com.zj365.dc.fragment.HealthHomeFrag
import com.zj365.dc.fragment.MessageFragment
import com.zj365.dc.fragment.MineFrag
import com.zj365.dc.vm.MainVm
import com.zj365.health.act.binddevice.BaseDeviceBindListAct
@ -81,7 +74,7 @@ class MainActivity : BaseVmAct<MainVm>(), Consumer<AbstractMeasureData> {
}
private fun initUnreadCountReceiver() {
unreadCountReceiver = object : BroadcastReceiver() {
/* unreadCountReceiver = object : BroadcastReceiver() {
override fun onReceive(context: Context, intent: Intent) {
val unreadCount = intent.getLongExtra(TUIConstants.UNREAD_COUNT_EXTRA, 0)
// if (unreadCount > 0) {
@ -97,7 +90,7 @@ class MainActivity : BaseVmAct<MainVm>(), Consumer<AbstractMeasureData> {
val unreadCountFilter = IntentFilter()
unreadCountFilter.addAction(TUIConstants.CONVERSATION_UNREAD_COUNT_ACTION)
LocalBroadcastManager.getInstance(this)
.registerReceiver(unreadCountReceiver as BroadcastReceiver, unreadCountFilter)
.registerReceiver(unreadCountReceiver as BroadcastReceiver, unreadCountFilter)*/
}
private val listFragment by lazy {
@ -105,7 +98,8 @@ class MainActivity : BaseVmAct<MainVm>(), Consumer<AbstractMeasureData> {
HealthHomeFrag(),
Fragment(),
DynamicManagementFrag(),
TUIConversationFragment(
MessageFragment()
/*TUIConversationFragment(
if (RxSPTool.getString(this, Const.UnReadSysMessageContentKey)
.isNullOrEmpty()
) "用户预约提醒,新增用户提醒"
@ -114,7 +108,7 @@ class MainActivity : BaseVmAct<MainVm>(), Consumer<AbstractMeasureData> {
.isNullOrEmpty()
) Date().time.toString()
else RxSPTool.getString(this, Const.UnReadSysMessageTimeKey)
),
)*/,
MineFrag()
)
}
@ -127,13 +121,13 @@ class MainActivity : BaseVmAct<MainVm>(), Consumer<AbstractMeasureData> {
initBottomNav()
addNv()
// mViewModel.getVersionNew()
val loginStatus = V2TIMManager.getInstance().loginStatus
/* val loginStatus = V2TIMManager.getInstance().loginStatus
Log.e("yansu", "loginStatus ${loginStatus}")
if (loginStatus != V2TIMManager.V2TIM_STATUS_LOGINED) {
Log.e("yansu", "请求 ${MMkvHelper.getString(Const.USER_ID)}")
mViewModel.getImUserSig("user_" + MMkvHelper.getLong(Const.USER_ID))
}
initUnreadCountReceiver()
}*/
// initUnreadCountReceiver()
JPushInterface.setBadgeNumber(this, 0)
// //前台空服务
// val service = RouteManager.getAny(ARouterUrl.NONE_SERVICE) as Service
@ -220,7 +214,7 @@ class MainActivity : BaseVmAct<MainVm>(), Consumer<AbstractMeasureData> {
override fun onResume() {
super.onResume()
getUnReadMessage()
// getUnReadMessage()
}
override fun onNewIntent(intent: Intent?) {
@ -240,7 +234,7 @@ class MainActivity : BaseVmAct<MainVm>(), Consumer<AbstractMeasureData> {
"MainActivity",
"OfflinePushConfigs.getOfflinePushConfigs().clickNotificationCallbackMode"
)
TUIUtils.handleOfflinePush(
/* TUIUtils.handleOfflinePush(
intent
) { hasLogged ->
if (hasLogged) {
@ -248,7 +242,7 @@ class MainActivity : BaseVmAct<MainVm>(), Consumer<AbstractMeasureData> {
} else {
// finish()
}
}
}*/
// } else {
// val ext = intent.getStringExtra(TUIConstants.TUIOfflinePush.NOTIFICATION_EXT_KEY)
// TUIUtils.handleOfflinePush(ext
@ -317,7 +311,7 @@ class MainActivity : BaseVmAct<MainVm>(), Consumer<AbstractMeasureData> {
}
//未读消息操作
mViewModel.countLive.observe(this) {
/* mViewModel.countLive.observe(this) {
setUnreadcount(it.data.count)
EventBus.getDefault()
.post(ShowSystemMessageEvent(it.data.msg, it.data.time, it.data.count))
@ -325,9 +319,9 @@ class MainActivity : BaseVmAct<MainVm>(), Consumer<AbstractMeasureData> {
RxSPTool.putString(this, Const.UnReadSysMessageContentKey, it.data.msg)
RxSPTool.putString(this, Const.UnReadSysMessageTimeKey, it.data.time)
}
}
}*/
mViewModel.getImUserSig.observe(this) {
/*mViewModel.getImUserSig.observe(this) {
Log.e("simon", it.data)
TUILogin.login(
applicationContext,
@ -345,7 +339,7 @@ class MainActivity : BaseVmAct<MainVm>(), Consumer<AbstractMeasureData> {
override fun onError(errorCode: Int, errorMessage: String?) {
}
})
}
}*/
//获取用户设备信息网络请求返回
mViewModel.getUserEquipmentInformationization.observe(this) {

@ -130,23 +130,29 @@ class HealthMonitoringAdapter(
}
}
// val calorie = healthMonitoringListBean.calorie
// if (!TextUtils.isEmpty(calorie) && healthMonitoringListBean.type == 4) {
// mTvCalorie.isVisible = true
// val calorieStr = "卡路里:${calorie}Kcal"
// mTvCalorie.text = setStrSpan(
// calorieStr,
// 11,
// ContextCompat.getColor(
// context, R.color.col_313
// ),
// Typeface.BOLD,
// 0,
// calorieStr.length - 3
// )
// } else {
// mTvCalorie.isVisible = false
// }
val calorie = healthMonitoringListBean.calorie
if (!TextUtils.isEmpty(calorie) && healthMonitoringListBean.type == 4) {
val calorieStr = "卡路里:${calorie}Kcal"
mTvCalorie.text = calorieStr/*setStrSpan(
calorieStr,
11,
ContextCompat.getColor(
context, R.color.col_7c7
),
Typeface.BOLD,
0,
calorieStr.length - 3
)*/
} else {
if (TextUtils.isEmpty(calorie)){
val calorieStr = "监测:--次"
mTvCalorie.text = calorieStr
}else{
val calorieStr = "监测:${calorie}"
mTvCalorie.text = calorieStr
}
}
mHealthTime.text = if (TextUtils.isEmpty(healthMonitoringListBean.buttonTime)) {
""

@ -0,0 +1,17 @@
package com.zj365.dc.adapter
import com.chad.library.adapter.base.viewholder.BaseViewHolder
import com.xty.base.adapter.BaseAdapter
import com.xty.common.Dateutils
import com.xty.network.model.ScienceBean
import com.xty.network.model.SystemMsgBean
import com.zj365.dc.R
class HomeMessageAdapter : BaseAdapter<SystemMsgBean>(R.layout.item_home_message) {
override fun convert(holder: BaseViewHolder, item: SystemMsgBean) {
holder.setText(R.id.tv_msg_title,item.title)
holder.setText(R.id.tv_msg_content,item.content)
holder.setText(R.id.tv_msg_time,Dateutils.formatTime(item.time,Dateutils.YYYY_MM_DD_HH_MM))
}
}

@ -2,6 +2,7 @@ package com.zj365.dc.fragment
import android.annotation.SuppressLint
import android.content.Intent
import android.graphics.Color
import android.graphics.drawable.Drawable
import android.os.Build
import android.provider.Settings
@ -16,6 +17,7 @@ import androidx.lifecycle.MutableLiveData
import androidx.recyclerview.widget.LinearLayoutManager
import androidx.recyclerview.widget.RecyclerView
import cn.jpush.android.api.JPushInterface
import com.gyf.immersionbar.ImmersionBar
import com.tamsiree.rxkit.RxTimeTool
import com.xty.base.fragment.BaseVmFrag
import com.xty.base.utils.UserInfoDefin
@ -149,9 +151,10 @@ class DynamicManagementFrag : BaseVmFrag<DynamicManagementVm>() {
"心率", "血氧", "呼吸率", "体温", "步数", "睡眠", "血压", "血糖", "心电", "尿酸", "血脂"
)
@SuppressLint("ResourceType")
override fun initView() {
super.initView()
statusBar(binding.statusBar)
// statusBar(binding.statusBar)
isShrinkage =
MMkvHelper.getBoolean(Const.Health_Monitoring_Shrinkage + MMkvHelper.getLong(Const.USER_ID))
@ -858,9 +861,9 @@ class DynamicManagementFrag : BaseVmFrag<DynamicManagementVm>() {
}
binding.mHeader.mWearManager.text = "绑定手表"
binding.mHeader.mBindState.visibility = View.VISIBLE
binding.mHeader.mConnectStatu.visibility = View.INVISIBLE
binding.mHeader.mWatchType.visibility = View.INVISIBLE
binding.mHeader.mBindState.visibility = View.GONE
binding.mHeader.mConnectStatu.visibility = View.GONE
binding.mHeader.mWatchType.visibility = View.GONE
} else if (Const.Companion.WatchDevice.LightA3.ordinal == bean.watchType) {//如果是4G设备设置连接状态与电量信息
setDeviceInfo(

@ -0,0 +1,48 @@
package com.zj365.dc.fragment
import android.graphics.Color
import android.view.View
import androidx.recyclerview.widget.LinearLayoutManager
import com.xty.base.fragment.BaseFragList
import com.zj365.dc.adapter.HomeMessageAdapter
import com.zj365.dc.databinding.FragMessageBinding
import com.zj365.dc.vm.MessageVm
class MessageFragment : BaseFragList<MessageVm>() {
val binding by lazy { FragMessageBinding.inflate(layoutInflater) }
val adapter by lazy { HomeMessageAdapter() }
override fun initAdapter() {
binding.mRecycle.layoutManager= LinearLayoutManager(requireContext())
binding.mRecycle.adapter=adapter
}
override fun initView() {
super.initView()
statusBar(binding.title.mView)
binding.title.mTvTitle.text="消息"
binding.title.mTvRight.text="全部已读"
binding.title.mTvRight.setTextColor(Color.parseColor("#02C191"))
binding.title.mTvRight.visibility = View.VISIBLE
binding.title.mIvBack.visibility = View.INVISIBLE
binding.title.mTvRight.setOnClickListener {
}
initAdapter()
setRecycleRefresh(binding.mRecycle,binding.mRefresh)
}
override fun refresh() {
mViewModel.getSystemMsg()
}
override fun setViewModel()= MessageVm()
override fun observer() {
}
override fun setLayout()=binding.root
}

@ -4,7 +4,6 @@ import android.os.Build
import android.text.TextUtils
import android.view.View
import androidx.annotation.RequiresApi
import com.tencent.qcloud.tuicore.event.ShowSystemMessageEvent
import com.xty.base.fragment.BaseVmFrag
import com.xty.common.*
import com.xty.common.arouter.ARouterUrl
@ -56,7 +55,7 @@ class MineFrag : BaseVmFrag<SettingVm>() {
mViewModel.getMySetting()
}
binding.mImage.setOnClickListener {
binding.clInfo.setOnClickListener {
if(MMkvHelper.getLong(Const.USER_ID).toString() == "0"){
RouteManager.goAct(ARouterUrl.LOGIN_ACT)
}else{
@ -68,62 +67,37 @@ class MineFrag : BaseVmFrag<SettingVm>() {
bundle.clear()
bundle.putSerializable("user", user)
RouteManager.goAct(ARouterUrl.MY_INTEGRAL, bundle)
/* bundle.clear()
bundle.putString("url","https://blog.csdn.net/wenmang_star/article/details/72911605")
RouteManager.goAct( ARouterUrl.WEB_ACT)
*/
}
binding.llAboutUs.setOnClickListener {
RouteManager.goAct(ARouterUrl.ABOUT)
}
/* binding.mTvMsg.setOnClickListener {
// RouteManager.goAct(ARouterUrl.MESSAGE)
(requireActivity() as MainActivity).setCurrentTab(2)
}*/
binding.llHealthRecord.setOnClickListener {
bundle.putString("id", user?.id)
RouteManager.goAct(ARouterUrl.HEALTH_RECORD, bundle)
}
binding.llDataComparsion.setOnClickListener {
bundle.clear()
bundle.putString("id", user?.id)
RouteManager.goAct(ARouterUrl.COMPARE_PAGE_DATA_ACT, bundle)
}
binding.llSetting.setOnClickListener {
bundle.clear()
bundle.putSerializable("user", user)
bundle.putBoolean("isDemonstrate", (requireActivity() as MainActivity).isDemonstrate)
RouteManager.goAct(ARouterUrl.SETTING, bundle)
}
/* binding.mTvOrgan.setOnClickListener {//我的机构
bundle.clear()
// bundle.putSerializable("user", user)
RouteManager.goAct(ARouterUrl.MY_ORGAN, bundle)
}*/
binding.llOrder.setOnClickListener {
bundle.clear()
bundle.putString("id", user?.id)
RouteManager.goAct(ARouterUrl.ORDER_LIST, bundle)
}
/*binding.mllmProg.setOnClickListener {
onEventObject(requireContext(), UmengEventId.HealthProgrammes, "我的页面")
RouteManager.goAct(ARouterUrl.MY_PROG)
}*/
binding.llFamilyHealth.setOnClickListener {
RouteManager.goAct(ARouterUrl.FAMILY)
}
/*binding.mFamily.setOnClickListener {
RouteManager.goAct(ARouterUrl.FAMILY)
}*/
/* binding.mTvAppoint.setOnClickListener {
if ((requireActivity() as MainActivity).isDemonstrate) {
dialogBind.show()
return@setOnClickListener
}
RouteManager.goAct(ARouterUrl.MY_APPOINT)
}*/
/* binding.mKeeper.setOnClickListener {
// if ((requireActivity() as MainActivity).isDemonstrate ){
// return@setOnClickListener
// }
CommonUtils.getMyUserId()?.let {
bundle.clear()
bundle.putString("fromUserId", it)
RouteManager.goAct(ARouterUrl.MY_KEEPER, bundle)
}
}*/
binding.llWearableDevice.setOnClickListener {
CommonUtils.getMyUserInfo()?.let {
if (it.watchName == null) {
@ -137,32 +111,9 @@ class MineFrag : BaseVmFrag<SettingVm>() {
}
}
}
/*binding.mSign.setOnClickListener {
if ((requireActivity() as MainActivity).isDemonstrate) {
RouteManager.goAct(ARouterUrl.BASE_INFO_CHANGE, bundle)
return@setOnClickListener
}
user?.let {
if (it.sign == 0) {
mViewModel.sign()
}
}
}*/
binding.mInfo.setOnClickListener {
RouteManager.goAct(ARouterUrl.BASE_INFO_CHANGE, bundle)
}
/* //邀请记录
binding.tvLnvitationMessage.setOnClickListener {
bundle.clear()
bundle.putSerializable("user", user)
RouteManager.goAct(ARouterUrl.LNVITATION_MESSAGE, bundle)
}
//邀请好友
binding.llInviteFriends.setOnClickListener {
bundle.clear()
bundle.putSerializable("user", user)
RouteManager.goAct(ARouterUrl.INVITE_FRIENDS, bundle)
}*/
mViewModel.getNesProg("")
}
@ -239,12 +190,12 @@ class MineFrag : BaseVmFrag<SettingVm>() {
binding.mSign.text = "已签到"
user!!.sign = 1
}*/
mViewModel.countLive.observe(this) {
/* mViewModel.countLive.observe(this) {
// setBadge(it.data.count)
(requireActivity() as MainActivity).setUnreadcount(it.data.count)
EventBus.getDefault()
.post(ShowSystemMessageEvent(it.data.msg, it.data.time, it.data.count))
}
}*/
//个人设置信息获取
mViewModel.settingLive.observe(this) {
if (null == it.data) return@observe

@ -0,0 +1,123 @@
package com.zj365.dc.vm
import androidx.lifecycle.MutableLiveData
import com.tamsiree.rxkit.RxTool
import com.xty.base.vm.BaseVm
import com.xty.common.Const
import com.xty.common.MMkvHelper
import com.xty.common.util.CommonToastUtils
import com.xty.network.model.ImageUploadBean
import com.xty.network.model.MainBean
import com.xty.network.model.NotAccepted
import com.xty.network.model.RespBody
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.async
import kotlinx.coroutines.withContext
import okhttp3.Headers
import okhttp3.MultipartBody
import org.json.JSONObject
import java.io.File
class InfoSimpleVm : BaseVm() {
val setBasic by lazy { MutableLiveData<RespBody<NotAccepted>>() }
val mLogin by lazy { MutableLiveData<RespBody<MainBean.User>>() }
val getImUserSig by lazy { MutableLiveData<RespBody<String>>() }
fun login(account: String, pwd: String) {
startHttp {
val json = JSONObject()
json.put("phone", account)
json.put("userPwd", RxTool.Md5(pwd))
//json.put("userPwd", pwd)
val login = apiInterface().login(retrofits.getRequestBody(json.toString()))
if (login.body()?.code == 500) {
login.body()?.msg?.let { CommonToastUtils.showToast(it) }
return@startHttp
}
saveToken(login.raw().headers)
val bodys = login.body() as RespBody
MMkvHelper.put(Const.USER_ID, bodys.data.id)
bodys.getCodeStatus(mLogin, nowData, loading)
}
}
private fun saveToken(headers: Headers) {
val headerIterator = headers.iterator()
while (headerIterator.hasNext()) {
val next = headerIterator.next()
if (Const.Auth_Token == next.first) MMkvHelper.put(Const.Auth_Token, next.second)
if (Const.Auth_Id == next.first) MMkvHelper.put(Const.Auth_Id, next.second)
}
}
fun getImUserSig(identifier: String) {
startHttp {
val imUserSig = apiInterface().getImUserSig(identifier)
imUserSig.body()?.getCodeStatus(getImUserSig, nowData, paramsData = identifier)
}
}
fun submit(path: String, name: String?, sex: String, birthDaytype: String, birthDay: String) {
startHttp {
withContext(Dispatchers.IO) {
var fileId = ""
if (path.isNullOrEmpty()) {
} else {
val image = async { uploadImage(path) }
val await = image.await()
fileId = await.fileId
}
val upload = async { uploadInfo(name, sex, fileId, birthDaytype, birthDay) }
val await = upload.await() //个人信息上传
if (await.code != 0) {
CommonToastUtils.showToast(await.msg)
}
}
}
}
private suspend fun uploadInfo(
name: String?,
sex: String,
fileId: String = "",
birthdayType: String,
birthDay: String
): RespBody<NotAccepted> {
val json = JSONObject()
json.put("name", name)
json.put("sex", sex)
if (sex == "1") {
json.put("height", "170")
json.put("weight", "65")
} else {
json.put("height", "160")
json.put("weight", "49")
}
json.put("birthday", birthDay)
json.put("birthdayType", birthdayType)
if (!fileId.isNullOrEmpty()) {
json.put("avatarUrl", fileId)
}
val rb = retrofits.getRequestBody(json.toString())
val body = apiInterface().setUpdateUser(rb)
body.getCodeStatus(setBasic, nowData)
return body
}
private suspend fun uploadImage(path: String): ImageUploadBean {
val f = File(path)
val fileRb = MultipartBody.Part.createFormData(
"file",
f.name,
retrofits.getMultiPartFileRb(f)
)
val body = apiInterface().uploadImage(fileRb)
return body.data
}
}

@ -0,0 +1,10 @@
package com.zj365.dc.vm
import com.xty.base.vm.BaseVm
class MessageVm(): BaseVm() {
fun getSystemMsg(){
}
}

@ -2,7 +2,7 @@
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid
android:color="@color/col_8D0"/>
android:color="@color/col_02c"/>
<corners
android:radius="@dimen/dp_11"/>
</shape>

@ -0,0 +1,291 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include
android:id="@+id/title"
layout="@layout/title_white_bar" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/title"
android:background="@color/white"
android:orientation="vertical">
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginLeft="@dimen/dp_10"
android:layout_marginRight="@dimen/dp_10"
android:background="@color/col_f1f" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/dp_6"
android:paddingRight="@dimen/dp_10"
android:paddingBottom="@dimen/dp_6">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:drawablePadding="@dimen/dp_10"
android:ellipsize="end"
android:paddingLeft="@dimen/dp_12"
android:paddingTop="@dimen/dp_12"
android:paddingBottom="@dimen/dp_12"
android:singleLine="true"
android:text="@string/head_portrait"
android:textColor="@color/col_455"
android:textSize="@dimen/dp_14" />
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/mImage"
android:layout_width="@dimen/dp_46"
android:layout_height="@dimen/dp_46"
android:layout_marginRight="@dimen/dp_12"
android:layout_toLeftOf="@+id/right_im"
android:src="@mipmap/ic_default_man" />
<ImageView
android:id="@+id/right_im"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="@dimen/dp_3"
android:src="@mipmap/arrow_right"/>
</RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginLeft="@dimen/dp_10"
android:layout_marginRight="@dimen/dp_10"
android:background="@color/col_f1f" />
<RelativeLayout
android:id="@+id/mRelName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingRight="@dimen/dp_10">
<TextView
android:id="@+id/m1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:drawablePadding="@dimen/dp_10"
android:ellipsize="end"
android:paddingLeft="@dimen/dp_10"
android:paddingTop="@dimen/dp_15"
android:paddingBottom="@dimen/dp_15"
android:singleLine="true"
android:text="@string/name"
android:textColor="@color/col_455"
android:textSize="@dimen/dp_14" />
<EditText
android:id="@+id/mName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_toRightOf="@+id/m1"
android:background="@null"
android:gravity="center|right"
android:paddingTop="@dimen/dp_15"
android:paddingBottom="@dimen/dp_15"
android:singleLine="true"
android:textColor="@color/col_455"
android:textSize="@dimen/dp_16"
tools:text="旅行者2号" />
</RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginLeft="@dimen/dp_10"
android:layout_marginRight="@dimen/dp_10"
android:background="@color/col_f1f" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingRight="@dimen/dp_10">
<com.xty.common.weight.RequiredTextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_weight="2"
android:drawablePadding="@dimen/dp_10"
android:ellipsize="end"
android:paddingLeft="@dimen/dp_10"
android:paddingTop="@dimen/dp_14"
android:paddingBottom="@dimen/dp_14"
android:singleLine="true"
android:text="@string/sex"
android:textColor="@color/col_455"
android:textSize="@dimen/dp_14" />
<CheckBox
android:id="@+id/check_sex"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="false"
android:background="@drawable/selector_check_sex_new"
android:button="@null"
/>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginLeft="@dimen/dp_10"
android:layout_marginRight="@dimen/dp_10"
android:background="@color/col_f1f" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingRight="@dimen/dp_12"
android:orientation="horizontal">
<com.xty.common.weight.RequiredTextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:background="@null"
android:paddingLeft="@dimen/dp_10"
android:text="@string/birthday_type"
android:textColor="@color/col_455"
android:paddingTop="@dimen/dp_14"
android:paddingBottom="@dimen/dp_14"
android:singleLine="true"
android:textSize="@dimen/dp_14" />
<CheckBox
android:id="@+id/check_birthday"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:background="@drawable/selector_check_birthday"
android:button="@null"
/>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginLeft="@dimen/dp_10"
android:layout_marginRight="@dimen/dp_10"
android:background="@color/col_f1f" />
<LinearLayout
android:id="@+id/ll_birthday"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.xty.common.weight.RequiredTextView
android:id="@+id/mBirthday_date"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@null"
android:paddingLeft="@dimen/dp_10"
android:text="@string/birthday"
android:paddingTop="@dimen/dp_14"
android:textColor="@color/col_455"
android:paddingBottom="@dimen/dp_14"
android:singleLine="true"
android:textSize="@dimen/dp_14" />
<TextView
android:id="@+id/mBirthday"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:drawablePadding="@dimen/dp_8"
android:layout_marginRight="@dimen/dp_12"
android:textSize="@dimen/dp_16"
android:hint=" 请选择生日 "
tools:text="2023-02-03"
android:textColorHint="@color/col_7b8"
android:textColor="@color/col_313"
android:drawableRight="@mipmap/arrow_right"/>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginLeft="@dimen/dp_10"
android:layout_marginRight="@dimen/dp_10"
android:background="@color/col_f1f" />
</LinearLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/dp_12"
android:layout_marginEnd="@dimen/dp_12"
android:textColor="@color/col_c7c"
android:textSize="@dimen/sp_13"
android:layout_marginBottom="@dimen/dp_50"
android:layout_marginTop="@dimen/dp_10"
android:text="请完善以上基本信息,以便于更好的为您提供健管的服务"/>
<LinearLayout
android:layout_width="match_parent"
android:orientation="horizontal"
android:layout_marginBottom="@dimen/dp_30"
android:gravity="bottom"
android:layout_weight="1"
android:layout_gravity="bottom"
android:layout_height="wrap_content">
<TextView
android:id="@+id/bindingTv"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:paddingTop="@dimen/dp_8"
android:gravity="center"
android:layout_marginLeft="@dimen/dp_20"
android:paddingBottom="@dimen/dp_8"
android:paddingRight="@dimen/dp_20"
android:paddingLeft="@dimen/dp_20"
android:background="@drawable/shape_btn_select_bg_white"
android:textColor="@color/col_8D0"
android:textSize="@dimen/dp_16"
android:text="去绑定手表"/>
<TextView
android:id="@+id/mSubmit"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:paddingTop="@dimen/dp_8"
android:paddingBottom="@dimen/dp_8"
android:layout_marginLeft="@dimen/dp_20"
android:autoSizeMaxTextSize="@dimen/dp_20"
android:layout_marginRight="@dimen/dp_20"
android:background="@drawable/shape_btn_select_bg"
android:gravity="center"
android:padding="@dimen/dp_10"
android:text="完成"
android:textColor="@color/white"
android:textSize="@dimen/dp_16" />
</LinearLayout>
</LinearLayout>

@ -4,33 +4,30 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#F2F6F7"
android:orientation="vertical">
android:orientation="vertical"
android:background="@color/white"
>
<LinearLayout
android:id="@+id/statusBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/shape_health_bg_new"
android:background="@color/white"
android:orientation="horizontal"
android:visibility="gone" />
<FrameLayout
android:layout_width="match_parent"
android:visibility="gone"
android:layout_height="@dimen/dp_86">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="@dimen/dp_12"
android:scaleType="fitXY"
android:src="@mipmap/ic_head_bg" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:gravity="center_vertical"
android:visibility="gone"
android:orientation="horizontal">
<!-- 我的家人列表 -->
@ -94,6 +91,7 @@
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:layout_marginTop="@dimen/dp_30"
app:srlAccentColor="@color/white">
<com.scwang.smart.refresh.header.ClassicsHeader
@ -106,7 +104,8 @@
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
>
<FrameLayout
android:layout_width="match_parent"
@ -114,10 +113,14 @@
<ImageView
android:layout_width="match_parent"
android:layout_height="@dimen/dp_92"
android:layout_marginStart="@dimen/dp_39"
android:layout_height="@dimen/dp_89"
android:scaleType="fitXY"
android:src="@mipmap/ic_status_bg"/>
android:src="@color/white"/>
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="@dimen/dp_89"
android:background="@mipmap/bg_health_main_two"/>
<LinearLayout
android:layout_width="match_parent"

@ -9,20 +9,23 @@
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/mUserInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/dp_14"
android:layout_marginTop="@dimen/dp_16"
android:layout_marginEnd="@dimen/dp_14"
android:layout_height="@dimen/dp_180"
android:paddingTop="@dimen/dp_32"
android:paddingLeft="@dimen/dp_22"
android:paddingRight="@dimen/dp_22"
android:orientation="horizontal"
android:background="@mipmap/bg_health_header_two"
app:layout_constraintTop_toTopOf="parent">
<!-- 用户头像 -->
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/mHeaderImage"
android:layout_width="@dimen/dp_50"
android:layout_height="@dimen/dp_50"
android:src="@mipmap/ic_default_man"
app:layout_constraintBottom_toBottomOf="parent"
app:civ_border_color="@color/white"
app:civ_border_width="@dimen/dp_2"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent" />
@ -32,14 +35,15 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginLeft="@dimen/dp_15"
android:text=""
android:textColor="@color/black"
android:textSize="@dimen/dp_18"
android:layout_marginLeft="@dimen/dp_14"
android:text="BMI 24"
android:textColor="@color/col_313"
android:textSize="@dimen/sp_17"
android:textStyle="bold"
app:layout_constraintLeft_toRightOf="@+id/mHeaderImage"
app:layout_constraintTop_toTopOf="parent" />
<!-- 绑定状态 -->
<TextView
android:id="@+id/mBindState"
@ -104,6 +108,28 @@
app:layout_constraintTop_toBottomOf="@+id/mUserName"
tools:ignore="UseCompatTextViewDrawableXml" />
<TextView
android:id="@+id/mConnectStatus"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|left"
android:visibility="visible"
android:layout_marginLeft="@dimen/dp_5"
android:layout_marginTop="@dimen/dp_5"
android:layout_weight="1"
android:drawablePadding="@dimen/dp_2"
android:paddingLeft="@dimen/dp_8"
android:paddingTop="@dimen/dp_2"
android:paddingRight="@dimen/dp_8"
android:paddingBottom="@dimen/dp_2"
android:text="正常"
android:textColor="@color/col_D9BD"
android:textSize="@dimen/sp_14"
android:textStyle="bold"
app:layout_constraintLeft_toRightOf="@+id/mWatchType"
app:layout_constraintTop_toBottomOf="@+id/mUserName"
tools:ignore="UseCompatTextViewDrawableXml" />
<!-- 佩戴管理 -->
<TextView
android:id="@+id/mWearManager"
@ -115,13 +141,63 @@
android:paddingTop="@dimen/dp_5"
android:paddingRight="@dimen/dp_11"
android:paddingBottom="@dimen/dp_5"
android:text="佩戴管理"
android:text="健康档案"
android:textColor="@color/white"
android:textSize="@dimen/dp_10"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintBottom_toBottomOf="@+id/mHeaderImage"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
app:layout_constraintTop_toTopOf="@+id/mHeaderImage" />
<LinearLayout
android:id="@+id/ll_time"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center_vertical"
app:layout_constraintLeft_toLeftOf="parent"
android:layout_marginTop="@dimen/dp_15"
app:layout_constraintTop_toBottomOf="@+id/mHeaderImage">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/icon_health_time"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="@dimen/sp_14"
android:textColor="@color/col_313"
android:layout_marginLeft="@dimen/dp_5"
android:textStyle="bold"
android:text="2023-12-01 农历 十月十九 晴 13℃"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginTop="@dimen/dp_15"
app:layout_constraintTop_toBottomOf="@+id/ll_time"
app:layout_constraintLeft_toLeftOf="parent">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textColor="@color/col_7c7"
android:textSize="@dimen/sp_13"
android:textStyle="bold"
android:text="监测次数107次"/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textColor="@color/col_7c7"
android:textSize="@dimen/sp_13"
android:textStyle="bold"
android:text="预警次数2次"/>
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
@ -133,7 +209,7 @@
android:layout_marginTop="@dimen/dp_16"
android:layout_marginEnd="@dimen/dp_14"
android:orientation="horizontal"
android:visibility="visible"
android:visibility="gone"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/mUserInfoLayout">
@ -171,9 +247,9 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/dp_14"
android:layout_marginTop="@dimen/dp_16"
android:layout_marginRight="@dimen/dp_14"
android:layout_marginBottom="@dimen/dp_6"
android:layout_marginTop="@dimen/dp_12"
android:background="@drawable/shape_8round_white"
android:orientation="vertical"
android:paddingLeft="@dimen/dp_16">

@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
tools:ignore="MissingDefaultResource">
<include android:id="@+id/title"
layout="@layout/title_white_bar"
/>
<com.scwang.smart.refresh.layout.SmartRefreshLayout
android:id="@+id/mRefresh"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.scwang.smart.refresh.header.ClassicsHeader
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/mRecycle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/dp_10" />
<com.scwang.smart.refresh.footer.ClassicsFooter
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</com.scwang.smart.refresh.layout.SmartRefreshLayout>
</LinearLayout>

@ -39,66 +39,78 @@
android:background="@color/white"
app:layout_constraintLeft_toLeftOf="parent">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/mImage"
android:layout_width="@dimen/dp_68"
android:layout_height="@dimen/dp_68"
android:layout_marginLeft="@dimen/dp_25"
android:layout_marginTop="@dimen/dp_54"
app:civ_border_width="@dimen/dp_1"
android:src="@mipmap/icon_default_avator"
app:civ_border_color="@color/white"
app:civ_border_overlay="true"
app:civ_circle_background_color="#66B0B4B4"
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/cl_info"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent" />
app:layout_constraintTop_toBottomOf="@+id/view">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/mImage"
android:layout_width="@dimen/dp_68"
android:layout_height="@dimen/dp_68"
android:layout_marginLeft="@dimen/dp_25"
android:layout_marginTop="@dimen/dp_54"
app:civ_border_width="@dimen/dp_1"
android:src="@mipmap/icon_default_avator"
app:civ_border_color="@color/white"
app:civ_border_overlay="true"
app:civ_circle_background_color="#66B0B4B4"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/mName"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="@dimen/dp_10"
android:layout_marginBottom="@dimen/dp_5"
android:ellipsize="end"
android:gravity="start"
android:paddingRight="@dimen/dp_10"
android:singleLine="true"
android:textColor="@color/col_313"
android:textSize="@dimen/sp_20"
android:textStyle="bold"
app:layout_constraintEnd_toStartOf="@+id/img_arrow"
app:layout_constraintStart_toStartOf="@+id/mPhone"
app:layout_constraintTop_toTopOf="@+id/mImage"
tools:text="张灵甫" />
<ImageView
android:id="@+id/img_arrow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@mipmap/icon_arrow_left"
android:layout_marginRight="@dimen/dp_34"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="@+id/mImage"
app:layout_constraintBottom_toBottomOf="@+id/mImage"/>
<TextView
android:id="@+id/mPhone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/dp_20"
android:layout_marginTop="@dimen/dp_5"
android:textColor="@color/col_c7c"
android:textSize="@dimen/sp_16"
app:layout_constraintLeft_toRightOf="@+id/mImage"
app:layout_constraintTop_toBottomOf="@+id/mName"
tools:text="12312414234" />
</androidx.constraintlayout.widget.ConstraintLayout>
<TextView
android:id="@+id/mName"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="@dimen/dp_10"
android:layout_marginBottom="@dimen/dp_5"
android:ellipsize="end"
android:gravity="start"
android:paddingRight="@dimen/dp_10"
android:singleLine="true"
android:textColor="@color/col_313"
android:textSize="@dimen/sp_20"
android:textStyle="bold"
app:layout_constraintBottom_toTopOf="@+id/view"
app:layout_constraintEnd_toStartOf="@+id/img_arrow"
app:layout_constraintStart_toStartOf="@+id/mPhone"
tools:text="张灵甫" />
<ImageView
android:id="@+id/img_arrow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@mipmap/icon_arrow_left"
android:layout_marginRight="@dimen/dp_34"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="@+id/mImage"
app:layout_constraintBottom_toBottomOf="@+id/mImage"/>
<TextView
android:id="@+id/mPhone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/dp_20"
android:layout_marginTop="@dimen/dp_5"
android:textColor="@color/col_c7c"
android:textSize="@dimen/sp_16"
app:layout_constraintLeft_toRightOf="@+id/mImage"
app:layout_constraintTop_toBottomOf="@+id/view"
tools:text="12312414234" />
<View
android:id="@+id/view"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_1"
android:visibility="gone"
app:layout_constraintBottom_toBottomOf="@+id/mImage"
app:layout_constraintTop_toTopOf="@+id/mImage" />
app:layout_constraintBottom_toBottomOf="@+id/cl_info"
app:layout_constraintTop_toTopOf="@+id/cl_info" />
<LinearLayout
android:id="@+id/ll_mine"
@ -108,7 +120,7 @@
android:orientation="horizontal"
android:weightSum="4"
android:background="@color/white"
app:layout_constraintTop_toBottomOf="@+id/mImage">
app:layout_constraintTop_toBottomOf="@+id/cl_info">
<LinearLayout
android:id="@+id/mllIntegral"

@ -5,15 +5,14 @@
android:layout_width="match_parent"
android:layout_height="@dimen/dp_144"
android:layout_gravity="center_horizontal"
android:background="@mipmap/bg_xl"
tools:ignore="MissingDefaultResource">
<ImageView
android:id="@+id/ivBg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY"
android:visibility="gone"
android:visibility="visible"
android:src="@mipmap/bg_xl"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"/>

@ -0,0 +1,59 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_76"
android:paddingLeft="@dimen/dp_16"
android:paddingRight="@dimen/dp_15"
android:paddingTop="@dimen/dp_14"
android:paddingBottom="@dimen/dp_14"
tools:ignore="MissingDefaultResource">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/img_msg"
android:layout_width="@dimen/dp_49"
android:layout_height="@dimen/dp_49"
android:background="@mipmap/icon_msg_system"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
/>
<TextView
android:id="@+id/tv_msg_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:text="系统消息"
app:layout_constraintLeft_toRightOf="@+id/img_msg"
android:layout_marginLeft="@dimen/dp_12"
app:layout_constraintTop_toTopOf="parent"
android:textStyle="bold"
android:textSize="@dimen/sp_13"
android:textColor="@color/col_313"/>
<TextView
android:id="@+id/tv_msg_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/dp_12"
app:layout_constraintLeft_toRightOf="@+id/img_msg"
app:layout_constraintTop_toBottomOf="@+id/tv_msg_title"
app:layout_constraintBottom_toBottomOf="parent"
android:textColor="@color/col_7c7"
android:textSize="@dimen/sp_13"
android:maxLines="1"
android:ellipsize="end"
tools:text="预约消息提醒您于2023-05-17已经预约成功..."/>
<TextView
android:id="@+id/tv_msg_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="@dimen/sp_13"
android:textColor="@color/col_7c7"
tools:text="2023-12-04 10:25"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

@ -36,4 +36,6 @@
<color name="col_D9BD">#3AD9BD</color>
<color name="col_8a00">#8A000000</color>
<color name="col_6F7">#F2F6F7</color>
<color name="transparent">#00000000</color>
<color name="read_dot_bg">#f74c31</color>
</resources>

@ -11,6 +11,8 @@ public class Dateutils {
public static final String YYYY_MM_DD_HH_MM_SS = "yyyy-MM-dd HH:mm:ss";
public static final String YYYY_MM_DD_HH = "yyyy-MM-dd HH";
public static final String YYYY_MM_DD_HH_MM = "yyyy-MM-dd HH:mm";
public static String yearToMonth(String dateString){
// 将字符串解析为日期对象

@ -151,7 +151,7 @@ class ARouterUrl {
const val MY_INTEGRAL = "/mine/com/zj365/dc/mime/act/MyIntegralAct"
const val ADD_INTEGRAL = "/mine/com/zj365/dc/mime/act/AddIntegralAct"
const val SCORE_RULE = "/mine/com/zj365/dc/mime/act/ScoreRuleAct"
const val SETTING = "/mine/com/zj365/dc/mime/act/SettingAct"
const val SETTING = "/mine/com/zj365/dc/mime/act/SettingNewAct"
const val ACCOUNT_SAFE = "/mine/com/zj365/dc/mime/act/AccountSafeAct"
const val BASE_INFO_CHANGE = "/mine/com/zj365/dc/mime/act/BaseInfoChangeAct"
const val MY_INFO = "/mine/com/zj365/dc/mime/act/MyInfoAct"

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke android:color="@color/col_25C" android:width="@dimen/dp_1"/>
<stroke android:color="@color/col_02c" android:width="@dimen/dp_1"/>
<corners android:radius="@dimen/dp_15"/>
</shape>

Binary file not shown.

After

Width:  |  Height:  |  Size: 393 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 460 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 462 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

@ -216,6 +216,19 @@
android:name="com.zj365.health.act.datamanage.TZhongDataManageAct"
android:launchMode="singleTop"
android:screenOrientation="portrait" />
<activity android:name=".act.CompareDataAct"
android:launchMode="singleTop"
android:screenOrientation="portrait" />
<activity android:name=".fragment.bloodlipid.BloodFatExceptionDataAct"
android:launchMode="singleTop"
android:screenOrientation="portrait" />
<activity android:name=".act.BloodLipidAdjustAct"
android:launchMode="singleTop"
android:screenOrientation="portrait" />
<activity android:name=".act.BloodLipidAdjustRecordsAct"
android:launchMode="singleTop"
android:screenOrientation="portrait" />
</application>
</manifest>

Binary file not shown.

@ -0,0 +1,893 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns="http://www.w3.org/TR/REC-html40"><head><meta http-equiv=Content-Type content="text/html; charset=gb2312" ><meta name=ProgId content=Word.Document ><meta name=Generator content="Microsoft Word 14" ><meta name=Originator content="Microsoft Word 14" ><title></title><!--[if gte mso 9]><xml><o:DocumentProperties><o:Author>。。。</o:Author><o:LastAuthor>。。。</o:LastAuthor><o:Revision>1</o:Revision><o:Pages>3</o:Pages><o:Characters>859</o:Characters><o:Lines>6</o:Lines><o:Paragraphs>1</o:Paragraphs></o:DocumentProperties><o:CustomDocumentProperties><o:KSOProductBuildVer dt:dt="string" >2052-11.1.0.12598</o:KSOProductBuildVer><o:ICV dt:dt="string" >2A930C70D1104B49AE80010243491B5C</o:ICV></o:CustomDocumentProperties></xml><![endif]--><!--[if gte mso 9]><xml><o:OfficeDocumentSettings></o:OfficeDocumentSettings></xml><![endif]--><!--[if gte mso 9]><xml><w:WordDocument><w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel><w:DisplayHorizontalDrawingGridEvery>0</w:DisplayHorizontalDrawingGridEvery><w:DisplayVerticalDrawingGridEvery>2</w:DisplayVerticalDrawingGridEvery><w:DocumentKind>DocumentNotSpecified</w:DocumentKind><w:DrawingGridVerticalSpacing>7.8 磅</w:DrawingGridVerticalSpacing><w:PunctuationKerning></w:PunctuationKerning><w:View>Web</w:View><w:Compatibility><w:AdjustLineHeightInTable/><w:DontGrowAutofit/><w:BalanceSingleByteDoubleByteWidth/><w:DoNotExpandShiftReturn/><w:UseFELayout/></w:Compatibility><w:Zoom>0</w:Zoom></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml><w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true" DefSemiHidden="true" DefQFormat="false" DefPriority="99" LatentStyleCount="260" >
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Normal" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="heading 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 7" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 8" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 9" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 7" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 8" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 9" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 7" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 8" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 9" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Normal Indent" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="footnote text" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="annotation text" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="header" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="footer" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index heading" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="caption" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="table of figures" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="envelope address" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="envelope return" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="footnote reference" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="annotation reference" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="line number" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="page number" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="endnote reference" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="endnote text" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="table of authorities" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="macro" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toa heading" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Bullet" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Number" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Bullet 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Bullet 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Bullet 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Bullet 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Number 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Number 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Number 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Number 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Title" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Closing" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Signature" ></w:LsdException>
<w:LsdException Locked="false" Priority="1" SemiHidden="false" QFormat="true" Name="Default Paragraph Font" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text Indent" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Message Header" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Subtitle" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Salutation" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Date" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text First Indent" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text First Indent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Note Heading" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text Indent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text Indent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Block Text" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Hyperlink" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="FollowedHyperlink" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Strong" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Emphasis" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Document Map" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Plain Text" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="E-mail Signature" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Normal (Web)" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Acronym" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Address" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Cite" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Code" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Definition" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Keyboard" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Preformatted" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Sample" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Typewriter" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Variable" ></w:LsdException>
<w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Normal Table" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="annotation subject" ></w:LsdException>
<w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="No List" ></w:LsdException>
<w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="1 / a / i" ></w:LsdException>
<w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="1 / 1.1 / 1.1.1" ></w:LsdException>
<w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Article / Section" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Simple 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Simple 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Simple 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Classic 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Classic 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Classic 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Classic 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Colorful 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Colorful 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Colorful 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Columns 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Columns 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Columns 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Columns 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Columns 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 7" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 8" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 7" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 8" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table 3D effects 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table 3D effects 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table 3D effects 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Contemporary" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Elegant" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Professional" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Subtle 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Subtle 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Web 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Web 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Web 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Balloon Text" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Theme" ></w:LsdException>
<w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Placeholder Text" ></w:LsdException>
<w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="No Spacing" ></w:LsdException>
<w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading" ></w:LsdException>
<w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List" ></w:LsdException>
<w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid" ></w:LsdException>
<w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List" ></w:LsdException>
<w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading" ></w:LsdException>
<w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List" ></w:LsdException>
<w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid" ></w:LsdException>
<w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List Paragraph" ></w:LsdException>
<w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Quote" ></w:LsdException>
<w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Intense Quote" ></w:LsdException>
<w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 6" ></w:LsdException>
</w:LatentStyles></xml><![endif]--><style>
@font-face{
font-family:"Times New Roman";
}
@font-face{
font-family:"宋体";
}
@font-face{
font-family:"Calibri";
}
@font-face{
font-family:"Wingdings";
}
@list l0:level1{
mso-level-number-format:decimal;
mso-level-suffix:none;
mso-level-text:"%1";
mso-level-tab-stop:none;
mso-level-number-position:left;
margin-left:14.0000pt;text-indent:0.0000pt;text-indent:0.0000pt;
font-family:'Times New Roman';}
@list l1:level1{
mso-level-number-format:decimal;
mso-level-suffix:none;
mso-level-text:"%1、";
mso-level-tab-stop:none;
mso-level-number-position:left;
margin-left:0.0000pt;
text-indent:0.0000pt;
font-family:'Times New Roman';}
@list l2:level1{
mso-level-number-format:chinese-counting;
mso-level-suffix:none;
mso-level-text:"%1、";
mso-level-tab-stop:none;
mso-level-number-position:left;
margin-left:0.0000pt;
text-indent:0.0000pt;
font-family:宋体;}
@list l3:level1{
mso-level-start-at:2;
mso-level-number-format:decimal;
mso-level-suffix:none;
mso-level-text:"%1、";
mso-level-tab-stop:none;
mso-level-number-position:left;
margin-left:0.0000pt;
text-indent:0.0000pt;
font-family:'Times New Roman';}
p.MsoNormal{
mso-style-name:正文;
mso-style-parent:"";
margin:0pt;
margin-bottom:.0001pt;
mso-pagination:none;
text-align:justify;
text-justify:inter-ideograph;
font-family:Calibri;
mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';
font-size:10.5000pt;
mso-font-kerning:1.0000pt;
}
span.10{
font-family:Calibri;
}
span.15{
font-family:Calibri;
font-size:9.0000pt;
mso-font-kerning:1.0000pt;
}
span.16{
font-family:Calibri;
font-size:9.0000pt;
mso-font-kerning:1.0000pt;
}
p.MsoFooter{
mso-style-name:页脚;
margin:0pt;
margin-bottom:.0001pt;
layout-grid-mode:char;
mso-pagination:none;
text-align:left;
font-family:Calibri;
mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';
font-size:9.0000pt;
mso-font-kerning:1.0000pt;
}
p.MsoHeader{
mso-style-name:页眉;
margin:0pt;
margin-bottom:.0001pt;
border-bottom:1.0000pt solid windowtext;
mso-border-bottom-alt:0.7500pt solid windowtext;
padding:0pt 0pt 1pt 0pt ;
layout-grid-mode:char;
mso-pagination:none;
text-align:center;
font-family:Calibri;
mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';
font-size:9.0000pt;
mso-font-kerning:1.0000pt;
}
span.msoIns{
mso-style-type:export-only;
mso-style-name:"";
text-decoration:underline;
text-underline:single;
color:blue;
}
span.msoDel{
mso-style-type:export-only;
mso-style-name:"";
text-decoration:line-through;
color:red;
}
table.MsoNormalTable{
mso-style-name:普通表格;
mso-style-parent:"";
mso-style-noshow:yes;
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-padding-alt:0.0000pt 5.4000pt 0.0000pt 5.4000pt;
mso-para-margin:0pt;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-family:'Times New Roman';
font-size:10.0000pt;
mso-ansi-language:#0400;
mso-fareast-language:#0400;
mso-bidi-language:#0400;
}
@page{mso-page-border-surround-header:no;
mso-page-border-surround-footer:no;}@page Section0{
margin-top:72.0000pt;
margin-bottom:72.0000pt;
margin-left:90.0000pt;
margin-right:90.0000pt;
size:595.3000pt 841.9000pt;
layout-grid:15.6000pt;
mso-header-margin:42.5500pt;
mso-footer-margin:49.6000pt;
}
div.Section0{page:Section0;}</style></head><body style="tab-interval:21pt;text-justify-trim:punctuation;" ><!--StartFragment--><div class="Section0" style="layout-grid:15.6000pt;" ><p class=MsoNormal align=center style="text-align:center;line-height:150%;" ><b><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-weight:bold;font-size:18.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >安瑜无创</font></span></b><b><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-weight:bold;font-size:18.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >血糖</font></span></b><b><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-weight:bold;font-size:18.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >趋势监测功能</font></span></b><b><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-weight:bold;font-size:18.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >说明</font></span></b><b><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-weight:bold;
font-size:18.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></b></p><p class=MsoNormal align=center style="text-align:center;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p>&nbsp;</o:p></span></p><p class=MsoNormal style="line-height:150%;mso-list:l2 level1 lfo1;" ><![if !supportLists]><span style="font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;
mso-bidi-font-family:'Times New Roman';font-weight:bold;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><span style='mso-list:Ignore;' >一、</span></span><![endif]><b><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-weight:bold;font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >前提</font></span></b><b><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-weight:bold;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></b></p><p class=MsoNormal style="margin-left:14.0000pt;mso-para-margin-left:0.0000gd;text-indent:0.0000pt;
mso-char-indent-count:0.0000;line-height:150%;mso-list:l0 level1 lfo2;" ><![if !supportLists]><span style="font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;
mso-bidi-font-family:'Times New Roman';font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><span style='mso-list:Ignore;' >1</span></span><![endif]><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >使用兑换码,开通无创血糖趋势监测服务</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="margin-left:14.0000pt;mso-para-margin-left:0.0000gd;text-indent:0.0000pt;
mso-char-indent-count:0.0000;line-height:150%;mso-list:l0 level1 lfo2;" ><![if !supportLists]><span style="font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;
mso-bidi-font-family:'Times New Roman';font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><span style='mso-list:Ignore;' >2</span></span><![endif]><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >开通后,</font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >用户连续配带</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >7</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >每天佩戴时间不低于</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >8</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >个小时</font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="line-height:150%;" ><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >&nbsp;&nbsp;</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >3</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >按时间要求完成</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >21</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >组血糖实测并上传至</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >app</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >,并确保该时刻前后</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >30</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >分钟都佩戴了手表</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >7</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >天内未完成</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >21</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >组数据上传</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >则建模期自动顺延</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >直至完成最后一组数据上传后完成血糖建模</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >并在建模完成后</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >1</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >个小时开始出第一次血糖数据</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="mso-para-margin-left:0.0000gd;text-indent:14.0000pt;mso-char-indent-count:1.0000;
line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >4</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >每整点出具一次前</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >1</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >个小时的血糖平均值</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >8</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >点系统出用户</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >7-8</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >点之间血糖平均值</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="text-indent:14.0000pt;mso-char-indent-count:1.0000;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >5</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >安瑜无创血糖趋势监测误差与实测血糖误差约在</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >20%</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >以内</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >符合前国家标准</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" >。(</font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >现在国家标准在</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >15%<font face="宋体" >)。</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="text-indent:14.0000pt;mso-char-indent-count:1.0000;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p>&nbsp;</o:p></span></p><p class=MsoNormal style="line-height:150%;mso-list:l2 level1 lfo1;" ><![if !supportLists]><span style="font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;
mso-bidi-font-family:'Times New Roman';font-weight:bold;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><span style='mso-list:Ignore;' >二、</span></span><![endif]><b><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-weight:bold;font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >血糖计算原理</font></span></b><b><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-weight:bold;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></b></p><p class=MsoNormal style="text-indent:28.0000pt;mso-char-indent-count:2.0000;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >以用户</font><font face="宋体" >心率</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >血氧</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >血压等体征数据</font><font face="宋体" >和器官模型为基础</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >结合用户</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >7</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >21</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >组血糖数据建立用户个人血糖模型</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >通过人工智能算法,</font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >计算出用户在佩戴手表过程中每个小时的平均血糖趋势数据</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="text-indent:28.0000pt;mso-char-indent-count:2.0000;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p>&nbsp;</o:p></span></p><p class=MsoNormal style="line-height:150%;mso-list:l2 level1 lfo1;" ><![if !supportLists]><span style="font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;
mso-bidi-font-family:'Times New Roman';font-weight:bold;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><span style='mso-list:Ignore;' >三、</span></span><![endif]><b><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-weight:bold;font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >用户血糖建模</font></span></b><b><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-weight:bold;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" >21</span></b><b><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-weight:bold;font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >组数据时间要求</font></span></b><b><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-weight:bold;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></b></p><p class=MsoNormal style="line-height:150%;" ><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >1<font face="宋体" ></font><font face="Calibri" >21</font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >组数据时间要求</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="text-indent:42.0000pt;mso-char-indent-count:3.0000;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >6</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font>30</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" >&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >7</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >3</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >0</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" >&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >8</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >0</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >0</span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="text-indent:42.0000pt;mso-char-indent-count:3.0000;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >8</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >3</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >0</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" >&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >9</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >0</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >0</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" >&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >9</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >3</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >0</span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="text-indent:42.0000pt;mso-char-indent-count:3.0000;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >10</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font>00</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" >&nbsp;&nbsp;&nbsp;</span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >1</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >1</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font>00</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" >&nbsp;&nbsp;&nbsp;</span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >1</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >2</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font>00</span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="text-indent:42.0000pt;mso-char-indent-count:3.0000;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >1</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >3</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font>00</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" >&nbsp;&nbsp;&nbsp;</span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >1</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >4</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >00</font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" >&nbsp;&nbsp;&nbsp;</span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >1</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >5</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font>00</span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="text-indent:42.0000pt;mso-char-indent-count:3.0000;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >1</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >6</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font>00</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" >&nbsp;&nbsp;&nbsp;</span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >1</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >7</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font>00</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" >&nbsp;&nbsp;&nbsp;</span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >1</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >8</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >3</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >0</span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="text-indent:42.0000pt;mso-char-indent-count:3.0000;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >1</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >9</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font>00</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" >&nbsp;&nbsp;&nbsp;</span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >1</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >9</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >3</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >0</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" >&nbsp;&nbsp;&nbsp;</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >20</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font>00</span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="text-indent:42.0000pt;mso-char-indent-count:3.0000;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >20<font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >3</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >0</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" >&nbsp;&nbsp;&nbsp;</span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >21<font face="宋体" ></font><font face="Calibri" >00</font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" >&nbsp;&nbsp;&nbsp;</span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >22<font face="宋体" ></font><font face="Calibri" >00</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="line-height:150%;mso-list:l3 level1 lfo3;" ><![if !supportLists]><span style="font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;
mso-bidi-font-family:'Times New Roman';font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><span style='mso-list:Ignore;' >2、</span></span><![endif]><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >每组血糖测量时间需与以上时间前后相差不超过</font><font face="Calibri" >20</font><font face="宋体" >分钟</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="line-height:150%;mso-list:l3 level1 lfo3;" ><![if !supportLists]><span style="font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;
mso-bidi-font-family:'Times New Roman';font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><span style='mso-list:Ignore;' >3、</span></span><![endif]><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >用户每采集完一组数据即可在</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >app</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >上上传</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >也可在一个时间上传多组数据</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="line-height:150%;mso-list:l3 level1 lfo3;" ><![if !supportLists]><span style="font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;
mso-bidi-font-family:'Times New Roman';font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><span style='mso-list:Ignore;' >4、</span></span><![endif]><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >测量时需佩戴手表,且录入血糖为真实数据,才能确保用户模型的准确度</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="line-height:150%;mso-list:l3 level1 lfo3;" ><![if !supportLists]><span style="font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;
mso-bidi-font-family:'Times New Roman';font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><span style='mso-list:Ignore;' >5、</span></span><![endif]><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >建模完成后</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" ></font><font face="Calibri" >app</font><font face="宋体" >内血糖值与实际血糖值还有较大误差</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >请在出现偏差时间段再进行模型修正校准</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="line-height:150%;mso-list:l3 level1 lfo3;" ><![if !supportLists]><span style="font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;
mso-bidi-font-family:'Times New Roman';font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><span style='mso-list:Ignore;' >6、</span></span><![endif]><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >高血糖用户建议每三个月采集</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" >4</span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >组以上血糖校准一次血糖</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal align=justify style="mso-pagination:none;text-align:justify;text-justify:inter-ideograph;
line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><o:p>&nbsp;</o:p></span></p><p class=MsoNormal align=justify style="margin-left:0.0000pt;mso-para-margin-left:0.0000gd;text-indent:0.0000pt;
mso-char-indent-count:0.0000;mso-pagination:none;text-align:justify;
text-justify:inter-ideograph;line-height:150%;mso-list:l2 level1 lfo1;" ><![if !supportLists]><span style="font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;
mso-bidi-font-family:'Times New Roman';font-weight:bold;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><span style='mso-list:Ignore;' >四、</span></span><![endif]><b><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-weight:bold;font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >血糖上传说明</font></span></b><b><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-weight:bold;font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></b></p><p class=MsoNormal style="line-height:150%;mso-list:l1 level1 lfo4;" ><![if !supportLists]><span style="font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;
mso-bidi-font-family:'Times New Roman';font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><span style='mso-list:Ignore;' >1、</span></span><![endif]><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >血糖上传时需先选择测量日期,再选择测量区间,最后选择具体时间;</font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="line-height:150%;mso-list:l1 level1 lfo4;" ><![if !supportLists]><span style="font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;
mso-bidi-font-family:'Times New Roman';font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><span style='mso-list:Ignore;' >2、</span></span><![endif]><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="Calibri" >21</font><font face="宋体" >个测量区间,每个测量区间仅可上传一组数据,上传完成后,下次不可再次选择此区间;</font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="line-height:150%;mso-list:l1 level1 lfo4;" ><![if !supportLists]><span style="font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;
mso-bidi-font-family:'Times New Roman';font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><span style='mso-list:Ignore;' >3、</span></span><![endif]><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >上传时,如一次性上传多组数据,其中一组数据时间点未佩戴手表,点击保存时,系统会提示该时间点数据未上传成功,其余佩戴时间点的数据均已上传,下次仅需上传未佩戴手表时间段的数据即可;</font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="line-height:150%;mso-list:l1 level1 lfo4;" ><![if !supportLists]><span style="font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;
mso-bidi-font-family:'Times New Roman';font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><span style='mso-list:Ignore;' >4、</span></span><![endif]><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >用户根据实际血糖测量情况,选择空腹、餐前、餐后、睡前;</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="line-height:150%;mso-list:l1 level1 lfo4;" ><![if !supportLists]><span style="font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;
mso-bidi-font-family:'Times New Roman';font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><span style='mso-list:Ignore;' >5、</span></span><![endif]><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';line-height:150%;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >每日可上传多组数据,且</font><font face="Calibri" >7</font><font face="宋体" >天内最多上传</font><font face="Calibri" >21</font><font face="宋体" >组数据。</font></span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal align=justify style="mso-pagination:none;text-align:justify;text-justify:inter-ideograph;
line-height:150%;" ><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';line-height:150%;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><o:p>&nbsp;</o:p></span></p></div><!--EndFragment--></body></html>

@ -0,0 +1,849 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns="http://www.w3.org/TR/REC-html40"><head><meta http-equiv=Content-Type content="text/html; charset=gb2312" ><meta name=ProgId content=Word.Document ><meta name=Generator content="Microsoft Word 14" ><meta name=Originator content="Microsoft Word 14" ><title></title><!--[if gte mso 9]><xml><o:DocumentProperties><o:Author>Administrator</o:Author><o:LastAuthor>。。。</o:LastAuthor><o:Revision>1</o:Revision><o:Pages>3</o:Pages><o:Characters>840</o:Characters></o:DocumentProperties><o:CustomDocumentProperties><o:KSOProductBuildVer dt:dt="string" >2052-11.1.0.12358</o:KSOProductBuildVer><o:ICV dt:dt="string" >A38EB0E099F742B095B1271872A040A3</o:ICV></o:CustomDocumentProperties></xml><![endif]--><!--[if gte mso 9]><xml><o:OfficeDocumentSettings></o:OfficeDocumentSettings></xml><![endif]--><!--[if gte mso 9]><xml><w:WordDocument><w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel><w:DisplayHorizontalDrawingGridEvery>0</w:DisplayHorizontalDrawingGridEvery><w:DisplayVerticalDrawingGridEvery>2</w:DisplayVerticalDrawingGridEvery><w:DocumentKind>DocumentNotSpecified</w:DocumentKind><w:DrawingGridVerticalSpacing>7.8 磅</w:DrawingGridVerticalSpacing><w:View>Web</w:View><w:Compatibility><w:AdjustLineHeightInTable/><w:DontGrowAutofit/><w:BalanceSingleByteDoubleByteWidth/><w:DoNotExpandShiftReturn/><w:UseFELayout/></w:Compatibility><w:Zoom>0</w:Zoom></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml><w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true" DefSemiHidden="true" DefQFormat="false" DefPriority="99" LatentStyleCount="260" >
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Normal" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="heading 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 7" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 8" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 9" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 7" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 8" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 9" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 7" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 8" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 9" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Normal Indent" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="footnote text" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="annotation text" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="header" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="footer" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index heading" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="caption" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="table of figures" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="envelope address" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="envelope return" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="footnote reference" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="annotation reference" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="line number" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="page number" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="endnote reference" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="endnote text" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="table of authorities" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="macro" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toa heading" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Bullet" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Number" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Bullet 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Bullet 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Bullet 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Bullet 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Number 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Number 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Number 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Number 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Title" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Closing" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Signature" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" UnhideWhenUsed="false" QFormat="true" Name="Default Paragraph Font" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Body Text" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text Indent" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Message Header" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Subtitle" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Salutation" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Date" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text First Indent" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text First Indent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Note Heading" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text Indent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text Indent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Block Text" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Hyperlink" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="FollowedHyperlink" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Strong" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Emphasis" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Document Map" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Plain Text" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="E-mail Signature" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Normal (Web)" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Acronym" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Address" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Cite" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Code" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Definition" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Keyboard" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Preformatted" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Sample" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Typewriter" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Variable" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" UnhideWhenUsed="false" QFormat="true" Name="Normal Table" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="annotation subject" ></w:LsdException>
<w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="No List" ></w:LsdException>
<w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="1 / a / i" ></w:LsdException>
<w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="1 / 1.1 / 1.1.1" ></w:LsdException>
<w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Article / Section" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Simple 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Simple 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Simple 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Classic 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Classic 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Classic 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Classic 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Colorful 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Colorful 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Colorful 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Columns 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Columns 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Columns 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Columns 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Columns 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid 7" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid 8" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table List 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table List 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table List 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table List 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table List 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table List 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table List 7" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table List 8" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table 3D effects 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table 3D effects 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table 3D effects 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Contemporary" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Elegant" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Professional" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Subtle 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Subtle 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Web 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Web 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Web 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Balloon Text" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Theme" ></w:LsdException>
<w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Placeholder Text" ></w:LsdException>
<w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="No Spacing" ></w:LsdException>
<w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading" ></w:LsdException>
<w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List" ></w:LsdException>
<w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid" ></w:LsdException>
<w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List" ></w:LsdException>
<w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading" ></w:LsdException>
<w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List" ></w:LsdException>
<w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid" ></w:LsdException>
<w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List Paragraph" ></w:LsdException>
<w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Quote" ></w:LsdException>
<w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Intense Quote" ></w:LsdException>
<w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 6" ></w:LsdException>
</w:LatentStyles></xml><![endif]--><style>
@font-face{
font-family:"Times New Roman";
}
@font-face{
font-family:"宋体";
}
@font-face{
font-family:"Wingdings";
}
@font-face{
font-family:"Arial";
}
@font-face{
font-family:"思源宋体 CN";
}
@font-face{
font-family:"微软雅黑";
}
@list l0:level1{
mso-level-number-format:chinese-counting;
mso-level-suffix:none;
mso-level-text:"%1、";
mso-level-tab-stop:none;
mso-level-number-position:left;
margin-left:0.0000pt;
text-indent:0.0000pt;
font-family:'Times New Roman';}
p.MsoNormal{
mso-style-name:正文;
mso-style-parent:"";
mso-style-next:正文文本;
margin:0pt;
margin-bottom:.0001pt;
text-indent:32.1500pt;
mso-char-indent-count:2.0000;
mso-pagination:none;
text-align:left;
line-height:150%;
font-family:Arial;
mso-fareast-font-family:'思源宋体 CN';
mso-bidi-font-family:宋体;
font-size:12.0000pt;
mso-font-kerning:1.0000pt;
}
h1{
mso-style-name:"标题 1";
mso-style-next:正文;
margin-top:2.5000pt;
margin-bottom:2.5000pt;
mso-para-margin-top:0.5000gd;
mso-para-margin-bottom:0.5000gd;
text-indent:0.0000pt;
mso-char-indent-count:0.0000;
page-break-after:avoid;
mso-pagination:lines-together;
text-align:left;
mso-outline-level:1;
line-height:150%;
font-family:Arial;
mso-fareast-font-family:'思源宋体 CN';
mso-bidi-font-family:宋体;
mso-ansi-font-weight:bold;
font-size:16.0000pt;
mso-font-kerning:22.0000pt;
}
h2{
mso-style-name:"标题 2";
mso-style-noshow:yes;
mso-style-next:正文;
mso-para-margin-top:0.0000gd;
mso-para-margin-bottom:0.0000gd;
text-indent:28.1000pt;
mso-char-indent-count:2.0000;
page-break-after:avoid;
mso-pagination:lines-together;
text-align:left;
mso-outline-level:2;
line-height:150%;
font-family:Arial;
mso-fareast-font-family:宋体;
mso-bidi-font-family:宋体;
mso-ansi-font-weight:bold;
font-size:14.0000pt;
mso-font-kerning:1.0000pt;
}
span.10{
font-family:'Times New Roman';
}
p.MsoBodyText{
mso-style-name:正文文本;
margin-bottom:6.0000pt;
mso-para-margin-bottom:0.0000gd;
text-indent:32.1500pt;
mso-char-indent-count:2.0000;
mso-pagination:none;
text-align:left;
line-height:150%;
font-family:Arial;
mso-fareast-font-family:'思源宋体 CN';
mso-bidi-font-family:宋体;
font-size:12.0000pt;
mso-font-kerning:1.0000pt;
}
p.p{
mso-style-name:"普通\(网站\)";
margin-top:5.0000pt;
margin-right:0.0000pt;
margin-bottom:5.0000pt;
margin-left:0.0000pt;
mso-margin-top-alt:auto;
mso-margin-bottom-alt:auto;
text-indent:32.1500pt;
mso-char-indent-count:2.0000;
mso-pagination:none;
text-align:left;
line-height:150%;
font-family:Arial;
mso-fareast-font-family:'思源宋体 CN';
mso-bidi-font-family:宋体;
font-size:12.0000pt;
}
span.msoIns{
mso-style-type:export-only;
mso-style-name:"";
text-decoration:underline;
text-underline:single;
color:blue;
}
span.msoDel{
mso-style-type:export-only;
mso-style-name:"";
text-decoration:line-through;
color:red;
}
table.MsoNormalTable{
mso-style-name:普通表格;
mso-style-parent:"";
mso-style-noshow:yes;
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-padding-alt:0.0000pt 5.4000pt 0.0000pt 5.4000pt;
mso-para-margin:0pt;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-family:'Times New Roman';
font-size:10.0000pt;
mso-ansi-language:#0400;
mso-fareast-language:#0400;
mso-bidi-language:#0400;
}
@page{mso-page-border-surround-header:no;
mso-page-border-surround-footer:no;}@page Section0{
margin-top:72.0000pt;
margin-bottom:72.0000pt;
margin-left:90.0000pt;
margin-right:90.0000pt;
size:595.3000pt 841.9000pt;
layout-grid:15.6000pt;
mso-header-margin:42.5500pt;
mso-footer-margin:49.6000pt;
}
div.Section0{page:Section0;}</style></head><body style="tab-interval:21pt;text-justify-trim:punctuation;" ><!--StartFragment--><div class="Section0" style="layout-grid:15.6000pt;" ><h1 align=center style="margin-top:0.0000pt;margin-right:0.0000pt;margin-bottom:10.5000pt;
margin-left:0.0000pt;text-indent:0.0000pt;mso-char-indent-count:0.0000;
padding:0pt 0pt 0pt 0pt ;mso-pagination:widow-orphan;text-align:center;
vertical-align:baseline;mso-line-height-alt:12pt;background:rgb(255,255,255);" ><b style="mso-bidi-font-weight:normal" ><span style="mso-spacerun:'yes';font-family:微软雅黑;color:rgb(34,34,34);
letter-spacing:0.4000pt;mso-ansi-font-weight:bold;text-transform:none;
font-style:normal;font-size:18.0000pt;mso-font-kerning:22.0000pt;
background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >“血压校准”标准操作流程</font></span></b><b style="mso-bidi-font-weight:normal" ><span style="mso-spacerun:'yes';font-family:微软雅黑;color:rgb(34,34,34);
letter-spacing:0.4000pt;mso-ansi-font-weight:bold;text-transform:none;
font-style:normal;font-size:18.0000pt;mso-font-kerning:22.0000pt;" ><o:p></o:p></span></b></h1><h2 style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;line-height:150%;
letter-spacing:0.0000pt;mso-ansi-font-weight:normal;mso-bidi-font-weight:bold;
text-transform:none;mso-ansi-font-style:normal;font-size:12.0000pt;
mso-font-kerning:1.0000pt;" ><o:p>&nbsp;</o:p></span></h2><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:28.1000pt;
mso-char-indent-count:2.0000;text-align:left;vertical-align:baseline;
line-height:150%;mso-list:l0 level1 lfo1;" ><![if !supportLists]><span style="font-family:'思源宋体 CN';mso-ascii-font-family:Arial;mso-hansi-font-family:Arial;
mso-bidi-font-family:宋体;letter-spacing:0.0000pt;font-weight:bold;
text-transform:none;mso-ansi-font-style:normal;font-size:14.0000pt;
mso-font-kerning:1.0000pt;" ><span style='mso-list:Ignore;' >一、</span></span><![endif]><b><span style="mso-spacerun:'yes';font-family:'思源宋体 CN';mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;mso-bidi-font-family:宋体;line-height:150%;
letter-spacing:0.0000pt;font-weight:bold;text-transform:none;
mso-ansi-font-style:normal;font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="思源宋体 CN" >为什么要做血压校准</font></span></b><b><span style="mso-spacerun:'yes';font-family:Arial;mso-fareast-font-family:'思源宋体 CN';
mso-bidi-font-family:宋体;line-height:150%;letter-spacing:0.0000pt;
font-weight:bold;text-transform:none;mso-ansi-font-style:normal;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="思源宋体 CN" ></font></span></b><b><span style="mso-spacerun:'yes';font-family:Arial;mso-fareast-font-family:'思源宋体 CN';
mso-bidi-font-family:宋体;line-height:150%;letter-spacing:0.0000pt;
font-weight:bold;text-transform:none;mso-ansi-font-style:normal;
font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></b></p><p class=MsoBodyText style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;text-align:left;vertical-align:baseline;
line-height:150%;" ><span style="mso-spacerun:'yes';font-family:'思源宋体 CN';mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;mso-bidi-font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="Arial" >app</font><font face="思源宋体 CN" >上血压值非手表直接采集得来</font></span><span style="mso-spacerun:'yes';font-family:Arial;mso-fareast-font-family:'思源宋体 CN';
mso-bidi-font-family:宋体;letter-spacing:0.0000pt;mso-ansi-font-weight:normal;
text-transform:none;mso-ansi-font-style:normal;font-size:12.0000pt;
mso-font-kerning:1.0000pt;" ><font face="思源宋体 CN" ></font></span><span style="mso-spacerun:'yes';font-family:'思源宋体 CN';mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;mso-bidi-font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="思源宋体 CN" >而是根据用户心率</font></span><span style="mso-spacerun:'yes';font-family:Arial;mso-fareast-font-family:'思源宋体 CN';
mso-bidi-font-family:宋体;letter-spacing:0.0000pt;mso-ansi-font-weight:normal;
text-transform:none;mso-ansi-font-style:normal;font-size:12.0000pt;
mso-font-kerning:1.0000pt;" ><font face="思源宋体 CN" ></font></span><span style="mso-spacerun:'yes';font-family:'思源宋体 CN';mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;mso-bidi-font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="思源宋体 CN" >血氧等数据建立用户个人血压模型</font></span><span style="mso-spacerun:'yes';font-family:Arial;mso-fareast-font-family:'思源宋体 CN';
mso-bidi-font-family:宋体;letter-spacing:0.0000pt;mso-ansi-font-weight:normal;
text-transform:none;mso-ansi-font-style:normal;font-size:12.0000pt;
mso-font-kerning:1.0000pt;" ><font face="思源宋体 CN" ></font></span><span style="mso-spacerun:'yes';font-family:'思源宋体 CN';mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;mso-bidi-font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="思源宋体 CN" >再通过人工智能算法分析得来</font></span><span style="mso-spacerun:'yes';font-family:Arial;mso-fareast-font-family:'思源宋体 CN';
mso-bidi-font-family:宋体;letter-spacing:0.0000pt;mso-ansi-font-weight:normal;
text-transform:none;mso-ansi-font-style:normal;font-size:12.0000pt;
mso-font-kerning:1.0000pt;" ><font face="思源宋体 CN" ></font></span><span style="mso-spacerun:'yes';font-family:'思源宋体 CN';mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;mso-bidi-font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="思源宋体 CN" >所有血压数据异常的用户请第一时间做血压校准</font></span><span style="mso-spacerun:'yes';font-family:Arial;mso-fareast-font-family:'思源宋体 CN';
mso-bidi-font-family:宋体;letter-spacing:0.0000pt;mso-ansi-font-weight:normal;
text-transform:none;mso-ansi-font-style:normal;font-size:12.0000pt;
mso-font-kerning:1.0000pt;" ><font face="思源宋体 CN" ></font></span><span style="mso-spacerun:'yes';font-family:'思源宋体 CN';mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;mso-bidi-font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="思源宋体 CN" >以便快速建立自己的个人血压模型</font></span><span style="mso-spacerun:'yes';font-family:Arial;mso-fareast-font-family:'思源宋体 CN';
mso-bidi-font-family:宋体;letter-spacing:0.0000pt;mso-ansi-font-weight:normal;
text-transform:none;mso-ansi-font-style:normal;font-size:12.0000pt;
mso-font-kerning:1.0000pt;" ><font face="思源宋体 CN" ></font></span><span style="mso-spacerun:'yes';font-family:'思源宋体 CN';mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;mso-bidi-font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="思源宋体 CN" >如未校准血压</font></span><span style="mso-spacerun:'yes';font-family:Arial;mso-fareast-font-family:'思源宋体 CN';
mso-bidi-font-family:宋体;letter-spacing:0.0000pt;mso-ansi-font-weight:normal;
text-transform:none;mso-ansi-font-style:normal;font-size:12.0000pt;
mso-font-kerning:1.0000pt;" ><font face="思源宋体 CN" ></font></span><span style="mso-spacerun:'yes';font-family:'思源宋体 CN';mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;mso-bidi-font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="思源宋体 CN" ></font></span><span style="mso-spacerun:'yes';font-family:Arial;mso-fareast-font-family:'思源宋体 CN';
mso-bidi-font-family:宋体;letter-spacing:0.0000pt;mso-ansi-font-weight:normal;
text-transform:none;mso-ansi-font-style:normal;font-size:12.0000pt;
mso-font-kerning:1.0000pt;" >app</span><span style="mso-spacerun:'yes';font-family:'思源宋体 CN';mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;mso-bidi-font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="思源宋体 CN" >内血压监测与实际血压数值可能会有较大误差</font></span><span style="mso-spacerun:'yes';font-family:Arial;mso-fareast-font-family:'思源宋体 CN';
mso-bidi-font-family:宋体;letter-spacing:0.0000pt;mso-ansi-font-weight:normal;
text-transform:none;mso-ansi-font-style:normal;font-size:12.0000pt;
mso-font-kerning:1.0000pt;" ><font face="思源宋体 CN" ></font></span><span style="mso-spacerun:'yes';font-family:Arial;mso-fareast-font-family:'思源宋体 CN';
mso-bidi-font-family:宋体;letter-spacing:0.0000pt;mso-ansi-font-weight:normal;
text-transform:none;mso-ansi-font-style:normal;font-size:12.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoBodyText style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;text-align:left;vertical-align:baseline;
line-height:150%;" ><span style="mso-spacerun:'yes';font-family:'思源宋体 CN';mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;mso-bidi-font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p>&nbsp;</o:p></span></p><h2 style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:28.1000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><b style="mso-bidi-font-weight:normal" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:bold;mso-bidi-font-weight:normal;text-transform:none;
mso-ansi-font-style:normal;font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span></b><b style="mso-bidi-font-weight:normal" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:bold;mso-bidi-font-weight:normal;text-transform:none;
mso-ansi-font-style:normal;font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span></b><b style="mso-bidi-font-weight:normal" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:bold;mso-bidi-font-weight:normal;text-transform:none;
mso-ansi-font-style:normal;font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >什么时候做血压校准?</font></span></b><span style="mso-spacerun:'yes';font-family:宋体;line-height:150%;
letter-spacing:0.0000pt;mso-ansi-font-weight:normal;text-transform:none;
mso-ansi-font-style:normal;font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></h2><p class=p align=justify style="margin-top:0.0000pt;margin-right:0.0000pt;margin-bottom:0.0000pt;
margin-left:0.0000pt;text-indent:24.0000pt;mso-char-indent-count:2.0000;
padding:0pt 0pt 0pt 0pt ;mso-pagination:widow-orphan;text-align:justify;
text-justify:inter-ideograph;vertical-align:baseline;line-height:19.1500pt;
background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" >1</span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >所有已确诊高血压用户或手表血压与实际血压误差大于</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" >10%</span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >以上用户</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >佩戴手表后第一时间</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >血压</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >模型</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >校准;</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=p align=justify style="margin-top:0.0000pt;margin-right:0.0000pt;margin-bottom:0.0000pt;
margin-left:0.0000pt;text-indent:24.0000pt;mso-char-indent-count:2.0000;
padding:0pt 0pt 0pt 0pt ;mso-pagination:widow-orphan;text-align:justify;
text-justify:inter-ideograph;vertical-align:baseline;line-height:19.1500pt;
background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >2、</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >第一次校准后</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >,如</font><font face="宋体" >APP</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >血压与实际血压还有较大误差</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >请再进行</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" >1-2</span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >血压校准。</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=p align=justify style="margin-top:0.0000pt;margin-right:0.0000pt;margin-bottom:0.0000pt;
margin-left:0.0000pt;text-indent:24.0000pt;mso-char-indent-count:2.0000;
padding:0pt 0pt 0pt 0pt ;mso-pagination:widow-orphan;text-align:justify;
text-justify:inter-ideograph;vertical-align:baseline;line-height:19.1500pt;
background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" >3、</span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >高血压用户建议每三个月校准一次血压</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><h2 style="margin-top:0.0000pt;margin-bottom:0.0000pt;margin-left:24.0000pt;
mso-para-margin-left:2.0000gd;text-indent:24.0000pt;mso-char-indent-count:2.0000;
mso-pagination:none;text-align:left;vertical-align:baseline;
line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;line-height:150%;
letter-spacing:0.0000pt;mso-ansi-font-weight:normal;mso-bidi-font-weight:bold;
text-transform:none;mso-ansi-font-style:normal;font-size:12.0000pt;
mso-font-kerning:1.0000pt;" ><o:p>&nbsp;</o:p></span></h2><h2 style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:28.1000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><b style="mso-bidi-font-weight:normal" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:bold;mso-bidi-font-weight:normal;text-transform:none;
mso-ansi-font-style:normal;font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span></b><b style="mso-bidi-font-weight:normal" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:bold;mso-bidi-font-weight:normal;text-transform:none;
mso-ansi-font-style:normal;font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span></b><b style="mso-bidi-font-weight:normal" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:bold;mso-bidi-font-weight:normal;text-transform:none;
mso-ansi-font-style:normal;font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >如何做血压校准?</font></span></b><b style="mso-bidi-font-weight:normal" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:bold;mso-bidi-font-weight:normal;text-transform:none;
mso-ansi-font-style:normal;font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></b></h2><h2 style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.1000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><b style="mso-bidi-font-weight:normal" ><span style="mso-spacerun:'yes';font-family:宋体;line-height:150%;
letter-spacing:0.0000pt;mso-ansi-font-weight:bold;mso-bidi-font-weight:normal;
text-transform:none;mso-ansi-font-style:normal;font-size:12.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" >1、</font></span></b><b style="mso-bidi-font-weight:normal" ><span style="mso-spacerun:'yes';font-family:宋体;line-height:150%;
letter-spacing:0.0000pt;mso-ansi-font-weight:bold;mso-bidi-font-weight:normal;
text-transform:none;mso-ansi-font-style:normal;font-size:12.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" >正常血压人群</font></span></b><b style="mso-bidi-font-weight:normal" ><span style="mso-spacerun:'yes';font-family:宋体;line-height:150%;
letter-spacing:0.0000pt;mso-ansi-font-weight:bold;mso-bidi-font-weight:normal;
text-transform:none;mso-ansi-font-style:normal;font-size:12.0000pt;
mso-font-kerning:1.0000pt;" ><font face="宋体" ></font></span></b><b style="mso-bidi-font-weight:normal" ><span style="mso-spacerun:'yes';font-family:宋体;line-height:150%;
color:rgb(0,0,0);letter-spacing:0.0000pt;mso-ansi-font-weight:bold;
mso-bidi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >血压偏高未吃药的人群</font></span></b><b style="mso-bidi-font-weight:normal" ><span style="mso-spacerun:'yes';font-family:宋体;line-height:150%;
letter-spacing:0.0000pt;mso-ansi-font-weight:bold;mso-bidi-font-weight:normal;
text-transform:none;mso-ansi-font-style:normal;font-size:12.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></b></h2><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >确保血压计和手表在同一个手臂,且手表有电的情况下,采集以下</font> <font face="宋体" >4 个时间段的实际血压值:</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >①清 晨 6-8 点</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >②中午 12-14 点</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >③下午 5-7 点</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >&#9315;晚上 8-10 点</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoBodyText style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;text-align:left;vertical-align:baseline;
line-height:150%;" ><span style="mso-spacerun:'yes';font-family:'思源宋体 CN';mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;mso-bidi-font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="思源宋体 CN" >在以上</font> <font face="Arial" >4 </font><font face="思源宋体 CN" >个时间段内使用血压计各测量</font><font face="Arial" >1 </font><font face="思源宋体 CN" >组数据,并记录好测量时间与对应的血压值。完成测量后,进入“安瑜健康” </font><font face="Arial" >APP </font><font face="思源宋体 CN" >,在血压校准页面录入相关数据,确认提交后</font><font face="Arial" >30 </font><font face="思源宋体 CN" >分钟即完成血压校准的操作。</font></span><span style="mso-spacerun:'yes';font-family:'思源宋体 CN';mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;mso-bidi-font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoBodyText style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;text-align:left;vertical-align:baseline;
line-height:150%;" ><span style="mso-spacerun:'yes';font-family:'思源宋体 CN';mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;mso-bidi-font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p>&nbsp;</o:p></span></p><h2 style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.1000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><b style="mso-bidi-font-weight:normal" ><span style="mso-spacerun:'yes';font-family:宋体;line-height:150%;
letter-spacing:0.0000pt;mso-ansi-font-weight:bold;text-transform:none;
mso-ansi-font-style:normal;font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >2、</font></span></b><b style="mso-bidi-font-weight:normal" ><span style="mso-spacerun:'yes';font-family:宋体;line-height:150%;
letter-spacing:0.0000pt;mso-ansi-font-weight:bold;text-transform:none;
mso-ansi-font-style:normal;font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >高血压</font></span></b><b style="mso-bidi-font-weight:normal" ><span style="mso-spacerun:'yes';font-family:宋体;line-height:150%;
letter-spacing:0.0000pt;mso-ansi-font-weight:bold;text-transform:none;
mso-ansi-font-style:normal;font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >服药</font></span></b><b style="mso-bidi-font-weight:normal" ><span style="mso-spacerun:'yes';font-family:宋体;line-height:150%;
letter-spacing:0.0000pt;mso-ansi-font-weight:bold;text-transform:none;
mso-ansi-font-style:normal;font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >用户血压校准流程:</font></span></b><b style="mso-bidi-font-weight:normal" ><span style="mso-spacerun:'yes';font-family:宋体;line-height:150%;
letter-spacing:0.0000pt;mso-ansi-font-weight:bold;text-transform:none;
mso-ansi-font-style:normal;font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></b></h2><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >确保血压计和手表在同一个手臂,且手表有电的情况下,采集以下</font> <font face="宋体" >4 个时间段的实际血压值:</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;mso-pagination:none;
text-align:left;vertical-align:baseline;line-height:150%;" ><b><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
font-weight:bold;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >早上服用降血压药物的用户:</font></span></b><b><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
font-weight:bold;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></b></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >①服降血压药前 1 小时内</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >②服降血压药后 1-2 小时内</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >③下午 5-7 点</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >&#9315;晚上 8</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >-</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >10 点</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoBodyText style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;text-align:left;vertical-align:baseline;
line-height:150%;" ><span style="mso-spacerun:'yes';font-family:'思源宋体 CN';mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;mso-bidi-font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p>&nbsp;</o:p></span></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;mso-pagination:none;
text-align:left;vertical-align:baseline;line-height:150%;" ><b><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
font-weight:bold;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >下午服用降血压药物的用户:</font></span></b><b><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
font-weight:bold;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></b></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >①清晨 6-8 点</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >②服降血压药前 1 小时内</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >③服降血压药后 1-2 小时内</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >&#9315;晚上 8</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >-</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >10 点</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoBodyText style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;text-align:left;vertical-align:baseline;
line-height:150%;" ><span style="mso-spacerun:'yes';font-family:'思源宋体 CN';mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;mso-bidi-font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p>&nbsp;</o:p></span></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;mso-pagination:none;
text-align:left;vertical-align:baseline;line-height:150%;" ><b><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
font-weight:bold;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >晚上服用降血压药物的用户:</font></span></b><b><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
font-weight:bold;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></b></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >①清晨 6-8 点</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >②中午 12-14 点</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >③服降血压药前 1 小时内</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >&#9315;服降血压药后 1-2 小时内</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoBodyText style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;text-align:left;vertical-align:baseline;
line-height:150%;" ><span style="mso-spacerun:'yes';font-family:'思源宋体 CN';mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;mso-bidi-font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p>&nbsp;</o:p></span></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;mso-pagination:none;
text-align:left;vertical-align:baseline;line-height:150%;" ><b><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
font-weight:bold;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >服用两次降血压药物的用户:</font></span></b><b><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
font-weight:bold;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></b></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >①第一次服降血压药前 1 小时内</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >②第一次服降血压药后 1-2 小时内</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >③第二次服降血压药前 1 小时内</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;mso-pagination:none;text-align:left;
vertical-align:baseline;line-height:150%;" ><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >&#9315;第二次服降血压药后 1-2 小时内</font></span><span style="mso-spacerun:'yes';font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoBodyText style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;text-align:left;vertical-align:baseline;
line-height:150%;" ><span style="mso-spacerun:'yes';font-family:'思源宋体 CN';mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;mso-bidi-font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p>&nbsp;</o:p></span></p><p class=MsoBodyText style="margin-top:0.0000pt;margin-bottom:0.0000pt;text-indent:24.0000pt;
mso-char-indent-count:2.0000;text-align:left;vertical-align:baseline;
line-height:150%;" ><span style="mso-spacerun:'yes';font-family:'思源宋体 CN';mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;mso-bidi-font-family:宋体;letter-spacing:0.0000pt;
mso-ansi-font-weight:normal;text-transform:none;mso-ansi-font-style:normal;
font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="思源宋体 CN" >在以上</font> <font face="Arial" >4 </font><font face="思源宋体 CN" >个时间段内使用血压计各测量</font><font face="Arial" >1 </font><font face="思源宋体 CN" >组数据,并记录好测量时间与对应的血压值。完成测量后,进入“安瑜健康” </font><font face="Arial" >APP </font><font face="思源宋体 CN" >,在血压校准页面录入相关数据,确认提交后</font><font face="Arial" >30 </font><font face="思源宋体 CN" >分钟即完成血压校准的操作。</font></span><span style="mso-spacerun:'yes';font-family:Arial;mso-fareast-font-family:'思源宋体 CN';
mso-bidi-font-family:宋体;letter-spacing:0.0000pt;mso-ansi-font-weight:normal;
text-transform:none;mso-ansi-font-style:normal;font-size:12.0000pt;
mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p></div><!--EndFragment--></body></html>

@ -152,7 +152,7 @@
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/dp_9"
android:text="续费"
android:textColor="@color/col_25c"
android:textColor="@color/col_02c"
android:textSize="@dimen/sp_12"
android:textStyle="bold"
android:visibility="gone" />
@ -168,7 +168,7 @@
android:background="@drawable/shape_r15_storke_25c"
android:gravity="center"
android:text="血脂校准"
android:textColor="@color/col_25c"
android:textColor="@color/col_02c"
android:textSize="@dimen/sp_13" />
</LinearLayout>

1
mine/.gitignore vendored

@ -0,0 +1 @@
/build

@ -0,0 +1,73 @@
plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
id 'kotlin-kapt'
}
def androidId = rootProject.ext.defaultSetting
def rely = rootProject.ext.relyOn
def imagePrefix =rootProject.ext.image_preifx
android {
compileSdkVersion androidId.compileSdk
defaultConfig {
minSdkVersion androidId.minSdk
targetSdkVersion androidId.targetSdk
versionCode androidId.versionCode
versionName androidId.versionName
kapt {
arguments {
arg("AROUTER_MODULE_NAME", project.getName())
}
}
ndk{
moduleName "libnew_native_libe"
ldLibs "log"
abiFilters "armeabi-v7a","arm64-v8a"
}
}
buildTypes {
release {
buildConfigField("String","url","\"${url.release_url}\"")
buildConfigField("String", "image_prefix","\"${imagePrefix.release_url}\"")
buildConfigField("Boolean","isRelease",String.valueOf(true))
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug{
buildConfigField("String","url","\"${url.debug_url}\"")
buildConfigField("Boolean","isRelease",String.valueOf(false))
buildConfigField("String", "image_prefix","\"${imagePrefix.debug_url}\"")
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
viewBinding{
enabled=true
}
kotlinOptions{
jvmTarget="1.8"
}
}
repositories {
flatDir {
dirs 'libs'
}
}
dependencies {
api project(':base')
implementation (name: 'ycbtsdk-release', ext: 'aar')
kapt rely.arouter_compiler
}

Binary file not shown.

@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

@ -0,0 +1,327 @@
<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http://www.w3.org/TR/REC-html40"><head><meta http-equiv=Content-Type content="text/html; charset=utf-8" ><meta name=ProgId content=Word.Document ><meta name=Generator content="Microsoft Word 14" ><meta name=Originator content="Microsoft Word 14" ><title></title><!--[if gte mso 9]><xml><w:WordDocument><w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel><w:DisplayHorizontalDrawingGridEvery>0</w:DisplayHorizontalDrawingGridEvery><w:DisplayVerticalDrawingGridEvery>2</w:DisplayVerticalDrawingGridEvery><w:DocumentKind>DocumentNotSpecified</w:DocumentKind><w:DrawingGridVerticalSpacing>7.8 磅</w:DrawingGridVerticalSpacing><w:View>Web</w:View><w:Compatibility><w:DontGrowAutofit/><w:BalanceSingleByteDoubleByteWidth/><w:DoNotExpandShiftReturn/><w:UseFELayout/></w:Compatibility><w:Zoom>0</w:Zoom></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml><w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true" DefSemiHidden="true" DefQFormat="false" DefPriority="99" LatentStyleCount="260" >
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Normal" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="heading 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 7" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 8" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 9" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 7" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 8" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index 9" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 7" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 8" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toc 9" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Normal Indent" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="footnote text" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="annotation text" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="header" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="footer" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="index heading" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="caption" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="table of figures" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="envelope address" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="envelope return" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="footnote reference" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="annotation reference" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="line number" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="page number" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="endnote reference" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="endnote text" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="table of authorities" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="macro" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="toa heading" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Bullet" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Number" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Bullet 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Bullet 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Bullet 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Bullet 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Number 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Number 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Number 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Number 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Title" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Closing" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Signature" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" UnhideWhenUsed="false" Name="Default Paragraph Font" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text Indent" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Message Header" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Subtitle" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Salutation" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Date" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text First Indent" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text First Indent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Note Heading" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text Indent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Body Text Indent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Block Text" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Hyperlink" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="FollowedHyperlink" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Strong" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Emphasis" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Document Map" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Plain Text" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="E-mail Signature" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Normal (Web)" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Acronym" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Address" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Cite" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Code" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Definition" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Keyboard" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Preformatted" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Sample" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Typewriter" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="HTML Variable" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" UnhideWhenUsed="false" Name="Normal Table" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="annotation subject" ></w:LsdException>
<w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="No List" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Simple 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Simple 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Simple 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Classic 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Classic 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Classic 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Classic 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Colorful 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Colorful 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Colorful 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Columns 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Columns 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Columns 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Columns 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Columns 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid 7" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid 8" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table List 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table List 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table List 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table List 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table List 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table List 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table List 7" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table List 8" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table 3D effects 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table 3D effects 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table 3D effects 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Contemporary" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Elegant" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Professional" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Subtle 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Subtle 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Web 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Web 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Web 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Balloon Text" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid" ></w:LsdException>
<w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Theme" ></w:LsdException>
<w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading" ></w:LsdException>
<w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List" ></w:LsdException>
<w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid" ></w:LsdException>
<w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List" ></w:LsdException>
<w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading" ></w:LsdException>
<w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List" ></w:LsdException>
<w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid" ></w:LsdException>
<w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 1" ></w:LsdException>
<w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 2" ></w:LsdException>
<w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 3" ></w:LsdException>
<w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 4" ></w:LsdException>
<w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 5" ></w:LsdException>
<w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 6" ></w:LsdException>
<w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 6" ></w:LsdException>
</w:LatentStyles></xml><![endif]--><style>
@font-face{
font-family:"Times New Roman";
}
@font-face{
font-family:"宋体";
}
@font-face{
font-family:"DejaVu Sans";
}
@font-face{
font-family:"Calibri";
}
p.MsoNormal{
mso-style-name:正文;
mso-style-parent:"";
margin:0pt;
margin-bottom:.0001pt;
mso-pagination:none;
text-align:justify;
text-justify:inter-ideograph;
font-family:Calibri;
mso-fareast-font-family:宋体;
mso-bidi-font-family:'Times New Roman';
font-size:10.5000pt;
mso-font-kerning:1.0000pt;
}
span.10{
font-family:'Times New Roman';
}
span.msoIns{
mso-style-type:export-only;
mso-style-name:"";
text-decoration:underline;
text-underline:single;
color:blue;
}
span.msoDel{
mso-style-type:export-only;
mso-style-name:"";
text-decoration:line-through;
color:red;
}
table.MsoNormalTable{
mso-style-name:普通表格;
mso-style-parent:"";
mso-style-noshow:yes;
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-padding-alt:0.0000pt 5.4000pt 0.0000pt 5.4000pt;
mso-para-margin:0pt;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-family:'Times New Roman';
font-size:10.0000pt;
mso-ansi-language:#0400;
mso-fareast-language:#0400;
mso-bidi-language:#0400;
}
@page{mso-page-border-surround-header:no;
mso-page-border-surround-footer:no;}@page Section0{
margin-top:72.0000pt;
margin-bottom:72.0000pt;
margin-left:90.0000pt;
margin-right:90.0000pt;
size:595.3000pt 841.9000pt;
layout-grid:15.6000pt;
}
div.Section0{page:Section0;}</style></head><body style="tab-interval:21pt;text-justify-trim:punctuation;" ><!--StartFragment--><div class="Section0" style="layout-grid:15.6000pt;" ><p class=MsoNormal align=justify style="margin-top:0.0000pt;margin-right:0.0000pt;margin-bottom:0.0000pt;mso-para-margin-right:0.0000gd;mso-para-margin-left:0.0000gd;mso-pagination:widow-orphan;text-align:justify;text-justify:inter-ideograph;line-height:24.0000pt;" ><span style="mso-spacerun:'yes';font-family:宋体;color:rgb(0,0,0);letter-spacing:0.0000pt;font-weight:normal;text-transform:none;font-style:normal;font-size:15.0000pt;mso-font-kerning:1.0000pt;" >1</span><span style="mso-spacerun:'yes';font-family:宋体;color:rgb(0,0,0);letter-spacing:0.0000pt;font-weight:normal;text-transform:none;font-style:normal;font-size:15.0000pt;mso-font-kerning:1.0000pt;" ><font face="宋体" >、如何获取积分</font></span><span style="mso-spacerun:'yes';font-family:宋体;color:rgb(0,0,0);letter-spacing:0.0000pt;font-weight:normal;text-transform:none;font-style:normal;font-size:15.0000pt;mso-font-kerning:1.0000pt;" ><br></span><span style="mso-spacerun:'yes';font-family:宋体;color:rgb(0,0,0);letter-spacing:0.0000pt;font-weight:normal;text-transform:none;font-style:normal;font-size:15.0000pt;mso-font-kerning:1.0000pt;" >1.1新手注册,完善个人资料:+50分仅1次</span><span style="mso-spacerun:'yes';font-family:宋体;color:rgb(0,0,0);letter-spacing:0.0000pt;font-weight:normal;text-transform:none;font-style:normal;font-size:15.0000pt;mso-font-kerning:1.0000pt;" ><br></span><span style="mso-spacerun:'yes';font-family:宋体;color:rgb(0,0,0);letter-spacing:0.0000pt;font-weight:normal;text-transform:none;font-style:normal;font-size:15.0000pt;mso-font-kerning:1.0000pt;" >1.2坚持佩戴登录app同步数据每天+10分</span><span style="mso-spacerun:'yes';font-family:宋体;color:rgb(0,0,0);letter-spacing:0.0000pt;font-weight:normal;text-transform:none;font-style:normal;font-size:15.0000pt;mso-font-kerning:1.0000pt;" ><br></span><span style="mso-spacerun:'yes';font-family:宋体;color:rgb(0,0,0);letter-spacing:0.0000pt;font-weight:normal;text-transform:none;font-style:normal;font-size:15.0000pt;mso-font-kerning:1.0000pt;" >1.3分享日报/周报/月报:每次+10分一天限一次</span><span style="mso-spacerun:'yes';font-family:宋体;color:rgb(0,0,0);letter-spacing:0.0000pt;font-weight:normal;text-transform:none;font-style:normal;font-size:15.0000pt;mso-font-kerning:1.0000pt;" ><br></span><span style="mso-spacerun:'yes';font-family:宋体;color:rgb(0,0,0);letter-spacing:0.0000pt;font-weight:normal;text-transform:none;font-style:normal;font-size:15.0000pt;mso-font-kerning:1.0000pt;" >1.4上传数据:每次+10分一天限一次</span><span style="mso-spacerun:'yes';font-family:宋体;color:rgb(0,0,0);letter-spacing:0.0000pt;font-weight:normal;text-transform:none;font-style:normal;font-size:15.0000pt;mso-font-kerning:1.0000pt;" ><br></span><span style="mso-spacerun:'yes';font-family:宋体;color:rgb(0,0,0);letter-spacing:0.0000pt;font-weight:normal;text-transform:none;font-style:normal;font-size:15.0000pt;mso-font-kerning:1.0000pt;" ><br></span><span style="mso-spacerun:'yes';font-family:宋体;color:rgb(0,0,0);letter-spacing:0.0000pt;font-weight:normal;text-transform:none;font-style:normal;font-size:15.0000pt;mso-font-kerning:1.0000pt;" >2、积分使用</span><span style="mso-spacerun:'yes';font-family:宋体;color:rgb(0,0,0);letter-spacing:0.0000pt;font-weight:normal;text-transform:none;font-style:normal;font-size:15.0000pt;mso-font-kerning:1.0000pt;" ><br></span><span style="mso-spacerun:'yes';font-family:宋体;color:rgb(0,0,0);letter-spacing:0.0000pt;font-weight:normal;text-transform:none;font-style:normal;font-size:15.0000pt;mso-font-kerning:1.0000pt;" >1.积分可进行服务费续费抵扣每20积分抵1元服务费</span><span style="mso-spacerun:'yes';font-family:宋体;color:rgb(0,0,0);letter-spacing:0.0000pt;font-weight:normal;text-transform:none;font-style:normal;font-size:15.0000pt;mso-font-kerning:1.0000pt;" ><br></span><span style="mso-spacerun:'yes';font-family:宋体;color:rgb(0,0,0);letter-spacing:0.0000pt;font-weight:normal;text-transform:none;font-style:normal;font-size:15.0000pt;mso-font-kerning:1.0000pt;" >2.在积分商城兑换礼品(此功能暂未开放,敬请期待)</span><span style="mso-spacerun:'yes';font-family:宋体;color:rgb(0,0,0);font-size:15.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal ><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;mso-bidi-font-family:'Times New Roman';font-size:10.5000pt;mso-font-kerning:1.0000pt;" ><o:p>&nbsp;</o:p></span></p></div><!--EndFragment--></body></html>

@ -25,7 +25,6 @@ import org.greenrobot.eventbus.EventBus
/**
* 我的设置
*/
@Route(path = ARouterUrl.SETTING)
class SettingAct : BaseVmAct<SettingVm>() {
val binding by lazy { ActSettingBinding.inflate(layoutInflater) }

@ -0,0 +1,152 @@
package com.zj365.mime.act
import android.app.Service
import android.content.Intent
import com.alibaba.android.arouter.facade.annotation.Route
import com.tamsiree.rxkit.RxActivityTool
import com.xty.base.act.BaseVmAct
import com.xty.common.Const
import com.xty.common.MMkvHelper
import com.xty.common.arouter.ARouterUrl
import com.xty.common.arouter.RouteManager
import com.xty.common.bracelet.YCBBlueConnectHelper
import com.xty.common.event.BlueToothConnectEvent
import com.xty.common.work.MyWorkManger
import com.xty.network.MyRetrofit
import com.xty.network.model.SettingBean
import com.zj365.mime.R
import com.zj365.mime.databinding.ActSettingNewBinding
import com.zj365.mime.vm.SettingVm
import com.zj365.mime.weight.FactorySettingDialog
import org.greenrobot.eventbus.EventBus
@Route(path = ARouterUrl.SETTING)
class SettingNewAct: BaseVmAct<SettingVm>() {
val binding by lazy { ActSettingNewBinding.inflate(layoutInflater) }
private val logOutDialog by lazy {
FactorySettingDialog(this, getString(R.string.dialog_logout)) {
logoOut()
}
}
var user: SettingBean.User? = null
private var destStr = """
一旦您注销安瑜健康账号后您的安瑜健康APP将会被清除账号信息请知悉并谨慎操作
注销安瑜健康账号前请确保您的账号符合以下注销条件
1账号处于安全状态
您的账号没有被盗被封等风险最近15天账号未在其他设备登录
2其他关联用户解绑
您的账号已经解除对其他安瑜手表佩戴用户的关注与绑定
3安瑜手表解绑
您的账号已经解除对安瑜手表的绑定
4账号不可找回
注销后账号绑定的信息将被释放账号无法登录安瑜健康APP
""".trimIndent()
private val destAccount by lazy {
FactorySettingDialog(this, destStr) {
//确认解除绑定
user?.let {
mViewModel.destAccount(it.id.toString())
}
}
}
override fun initView() {
super.initView()
statusBar(binding.title.mView)
binding.title.mTvTitle.text ="设置"
binding.title.mIvBack.setOnClickListener {
finish()
}
binding.tvLogout.setOnClickListener {
logOutDialog.show()
}
binding.mTvModifyPwd.setOnClickListener {
RouteManager.goAct(ARouterUrl.CHANGE_PWD)
}
binding.mTvPrivacy.setOnClickListener {
bundle.clear()
bundle.putString("title", "隐私政策")
bundle.putBoolean("isAgree", false)
bundle.putString("url","https://auprty.com/app/static/app/privacy.html")
RouteManager.goAct(ARouterUrl.AGREEMNT_READ_WEB_ACT, bundle)
}
binding.mTvUserAgree.setOnClickListener {
bundle.clear()
bundle.putString("title", "用户协议")
bundle.putInt("type", Const.AGREEMENT_1)
bundle.putBoolean("isAgree", false)
RouteManager.goAct(ARouterUrl.RICH_TEXT, bundle)
}
binding.mTvSignOut.setOnClickListener {
destAccount.changeTextSetting()
destAccount.show()
}
}
override fun initData() {
super.initData()
var intentData = intent.extras!!.getSerializable("user")
if (null != intentData) user = intentData as SettingBean.User
}
override fun liveObserver() {
mViewModel.destLive.observe(this) {
logoOut()
}
}
override fun setLayout() = binding.root
private fun logoOut() {
//退出音乐播放器
var service= RouteManager.getAny(ARouterUrl.MUSIC_SERVICE) as Service
var intent= Intent(this,service::class.java)
intent.putExtra("close","")
stopService(intent)
//结束mqtt服务
// var mqttService=RouteManager.getAny(ARouterUrl.MQTT_SERVICE) as Service
// var mqttIntent= Intent(this,mqttService::class.java)
// mqttIntent.putExtra("close","")
// stopService(mqttIntent)
// //结束前台服务
// val noneService = RouteManager.getAny(ARouterUrl.NONE_SERVICE) as Service
// var noneIntent=Intent(this,noneService::class.java)
// stopService(noneIntent)
MyWorkManger.cancelWork()
Const.mainLiveData?.value?.apply {
user?.bluetooth = ""//将蓝牙信息清空
}
MMkvHelper.remove(Const.Watch_Device_Type)//清除手表型号
Const.watchType = -1//将手表型号恢复初始值
Const.battery = ""//电池信息恢复初始值
MyRetrofit.get().BLUETOOTH_MAC = ""//清除蓝牙信息
MMkvHelper.remove(Const.Blue_Tooth)//清除蓝牙信息
MMkvHelper.clearUserInfo()//清除用户登录信息
YCBBlueConnectHelper.disconnect()//断开蓝牙连接
YCBBlueConnectHelper.cancelTimer()//断开重连定时器
EventBus.getDefault().post(BlueToothConnectEvent())//刷新蓝牙连接信息
RouteManager.goAct(ARouterUrl.LOGIN_ACT)
RxActivityTool.finishAllActivity()
}
}

@ -128,4 +128,11 @@ class SettingVm : BaseVm() {
inviteCount.getCodeStatus(inviteCountLive, nowData)
}
}
fun destAccount(id:String){
startHttp {
var response= apiInterface().destAccount(id)
response.getCodeStatus(destLive,nowData)
}
}
}

@ -0,0 +1,92 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/white">
<include
android:id="@+id/title"
layout="@layout/title_white_bar" />
<TextView
android:id="@+id/mTvModifyPwd"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawableRight="@mipmap/ic_next"
android:drawablePadding="@dimen/dp_10"
android:ellipsize="end"
android:paddingLeft="@dimen/dp_21"
android:paddingTop="@dimen/dp_20"
android:paddingRight="@dimen/dp_21"
android:paddingBottom="@dimen/dp_20"
android:layout_below="@+id/title"
android:singleLine="true"
android:text="@string/change_pwd"
android:textColor="@color/col_313"
android:textSize="@dimen/sp_15" />
<TextView
android:id="@+id/mTvUserAgree"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawableRight="@mipmap/ic_next"
android:drawablePadding="@dimen/dp_10"
android:ellipsize="end"
android:paddingLeft="@dimen/dp_21"
android:layout_below="@+id/mTvModifyPwd"
android:paddingTop="@dimen/dp_20"
android:paddingRight="@dimen/dp_21"
android:paddingBottom="@dimen/dp_20"
android:singleLine="true"
android:text="用户协议"
android:textColor="@color/col_313"
android:textSize="@dimen/sp_15" />
<TextView
android:id="@+id/mTvPrivacy"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawableRight="@mipmap/ic_next"
android:drawablePadding="@dimen/dp_10"
android:ellipsize="end"
android:paddingLeft="@dimen/dp_21"
android:paddingTop="@dimen/dp_20"
android:layout_below="@+id/mTvUserAgree"
android:paddingRight="@dimen/dp_21"
android:paddingBottom="@dimen/dp_20"
android:singleLine="true"
android:text="隐私协议"
android:textColor="@color/col_313"
android:textSize="@dimen/sp_15" />
<TextView
android:id="@+id/mTvSignOut"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawableRight="@mipmap/ic_next"
android:drawablePadding="@dimen/dp_10"
android:ellipsize="end"
android:paddingLeft="@dimen/dp_21"
android:paddingTop="@dimen/dp_20"
android:paddingRight="@dimen/dp_21"
android:layout_below="@+id/mTvPrivacy"
android:paddingBottom="@dimen/dp_20"
android:singleLine="true"
android:text="@string/account_dest"
android:textColor="@color/col_313"
android:textSize="@dimen/sp_15" />
<TextView
android:id="@+id/tv_logout"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_44"
android:layout_marginRight="@dimen/dp_78"
android:layout_marginLeft="@dimen/dp_78"
android:background="@drawable/shape_btn_select_bg"
android:layout_alignParentBottom="true"
android:layout_marginBottom="@dimen/dp_67"
android:text="退出登录"
android:textColor="@color/white"
android:textStyle="bold"
android:gravity="center"
android:textSize="@dimen/sp_16"/>
</RelativeLayout>

@ -0,0 +1,5 @@
package com.xty.network.model
import android.content.ContentResolver
data class SystemMsgBean(var id:Long,var title:String,var time:Long,var content:String)
Loading…
Cancel
Save