Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

489 rindas
25KB

  1. using HealthMonitor.Common;
  2. using HealthMonitor.Common.helper;
  3. using HealthMonitor.Service.Biz.db;
  4. using HealthMonitor.Service.Cache;
  5. using HealthMonitor.Service.Etcd;
  6. using HealthMonitor.Service.Resolver.Interface;
  7. using HealthMonitor.Service.Sub;
  8. using HealthMonitor.Service.Sub.Topic.Model;
  9. using Microsoft.EntityFrameworkCore.Metadata;
  10. using Microsoft.Extensions.Logging;
  11. using Newtonsoft.Json;
  12. using System;
  13. using System.Collections.Generic;
  14. using System.Data.Common;
  15. using System.Linq;
  16. using System.Text;
  17. using System.Text.Json.Serialization;
  18. using System.Threading.Tasks;
  19. using TDengineTMQ;
  20. using TelpoDataService.Util.Entities.GpsCard;
  21. using TelpoDataService.Util;
  22. using TelpoDataService.Util.Entities.GpsLocationHistory;
  23. using HealthMonitor.Service.Biz;
  24. using HealthMonitor.Model.Service;
  25. using Microsoft.Extensions.Options;
  26. using HealthMonitor.Model.Config;
  27. using HealthMonitor.Model.Service.Mapper;
  28. using Mvccpb;
  29. namespace HealthMonitor.Service.Resolver
  30. {
  31. public class BloodpressResolver: IResolver
  32. {
  33. private readonly ILogger<BloodpressResolver> _logger;
  34. private readonly BoodPressResolverConfig _configBoodPressResolver;
  35. private readonly PersonCacheManager _personCacheMgr;
  36. private readonly TDengineService _serviceTDengine;
  37. private readonly BloodPressReferenceValueCacheManager _bpRefValCacheManager;
  38. private readonly HttpHelper _httpHelper = default!;
  39. private readonly GpsCardAccessorClient<GpsPerson> _gpsPersonApiClient;
  40. private readonly IotWebApiService _serviceIotWebApi;
  41. private readonly AsyncLocal<string> _messageId = new();
  42. private readonly AsyncLocal<HisGpsBloodPress> _msgData = new();
  43. private readonly EtcdService _serviceEtcd;
  44. public BloodpressResolver(
  45. TDengineService serviceDengine,
  46. BloodPressReferenceValueCacheManager bpRefValCacheManager,
  47. PersonCacheManager personCacheMgr, HttpHelper httpHelper,
  48. GpsCardAccessorClient<GpsPerson> gpsPersonApiClient,
  49. IotWebApiService iotWebApiService,
  50. EtcdService serviceEtcd,
  51. IOptions<BoodPressResolverConfig> optionBoodPressResolver,
  52. ILogger<BloodpressResolver> logger)
  53. {
  54. _httpHelper = httpHelper;
  55. _serviceTDengine = serviceDengine;
  56. _bpRefValCacheManager = bpRefValCacheManager;
  57. _gpsPersonApiClient = gpsPersonApiClient;
  58. _serviceIotWebApi = iotWebApiService;
  59. _logger = logger;
  60. _personCacheMgr = personCacheMgr;
  61. _serviceEtcd = serviceEtcd;
  62. _configBoodPressResolver= optionBoodPressResolver.Value;
  63. }
  64. public void SetResolveInfo(PackageMsgModel msg)
  65. {
  66. var topicHmBloodPress = JsonConvert.DeserializeObject<TopicHmBloodPress>(msg.DetailData.ToString()!);
  67. _messageId.Value = msg.MessageId;
  68. _msgData.Value = new HisGpsBloodPress()
  69. {
  70. BloodPressId = topicHmBloodPress!.BloodPressId,
  71. MessageId = topicHmBloodPress!.MessageId,
  72. Serialno= topicHmBloodPress!.Serialno,
  73. SystolicValue = topicHmBloodPress!.SystolicValue,
  74. DiastolicValue= topicHmBloodPress!.DiastolicValue,
  75. LastUpdate= DateTimeUtil.GetDateTimeFromUnixTimeMilliseconds(SafeType.SafeInt64(topicHmBloodPress.LastUpdate) / 1000000),
  76. CreateTime= DateTimeUtil.GetDateTimeFromUnixTimeMilliseconds(SafeType.SafeInt64(topicHmBloodPress.CreateTime) / 1000000),
  77. Method= topicHmBloodPress!.Method,
  78. IsDisplay=topicHmBloodPress!.IsDisplay ? 1 : 0
  79. };
  80. }
  81. public override string ToString()
  82. {
  83. return $"{nameof(BloodpressResolver)}[{_messageId.Value}]";
  84. }
  85. public async Task ExecuteMessageAsync()
  86. {
  87. try
  88. {
  89. var messageId = _messageId.Value;
  90. var bp = _msgData.Value!;
  91. int systolicRefValue;
  92. int diastolicRefValue;
  93. int systolicInc;
  94. int diastolicInc;
  95. int systolicAvg;
  96. int diastolicAvg;
  97. int systolicMax = 0;
  98. int diastolicMax = 0;
  99. // 最小值
  100. int systolicMin = 0;
  101. int diastolicMin = 0;
  102. // 偏移参数
  103. var avgOffset = 0.25M;
  104. var systolicAvgOffset = avgOffset;
  105. var diastolicAvgOffset = avgOffset;
  106. // 统计时间
  107. DateTime endTime = DateTime.Now; //测试
  108. DateTime startTime = DateTime.Now;
  109. // 最后一次下发值
  110. int lastPushSystolicInc = 0;
  111. int lastPushDiastolicInc = 0;
  112. bool remarkFlag = false;
  113. long duration = 7 * 24 * 3600 * 1000;
  114. string sql = string.Empty;
  115. #region 获取个人信息
  116. var person = await _personCacheMgr.GetDeviceGpsPersonCacheBySerialNoAsync(bp.MessageId, bp.Serialno).ConfigureAwait(false);
  117. //验证这个信息是否存在
  118. if (person == null || person?.Person.BornDate == null)
  119. {
  120. _logger.LogWarning("验证个人信息,找不到个人信息,跳过此消息");
  121. return;
  122. }
  123. // 验证年龄是否在范围 (2 - 120)
  124. var age = SafeType.SafeInt(DateTime.Today.Year - person?.Person.BornDate!.Value.Year!);
  125. if (age < 2 || age > 120)
  126. {
  127. _logger.LogWarning("验证年龄,不在范围 (2 - 120)岁,跳过此消息");
  128. return;
  129. }
  130. var gender = person?.Person.Gender == true ? 1 : 2;
  131. var isHypertension = SafeType.SafeBool(person?.Person.Ishypertension!);
  132. var height = SafeType.SafeDouble(person?.Person.Height!);
  133. var weight = SafeType.SafeDouble(person?.Person.Weight!);
  134. #endregion
  135. #region 初始化常规血压标定值标定值
  136. var bpRef = await _bpRefValCacheManager.GetBloodPressReferenceValueAsync(age, gender, isHypertension);
  137. systolicRefValue = bpRef!.Systolic;//?
  138. diastolicRefValue = bpRef!.Diastolic;//?
  139. #endregion
  140. _logger.LogInformation($"Person Remarks 值:{person?.Person.Remarks}");
  141. if (string.IsNullOrWhiteSpace(person?.Person.Remarks))
  142. {
  143. _logger.LogInformation($"{bp.Serialno},设备解绑后绑定,首次手工测量了血压值,下发年龄标定值和增量值(测量值=平均值计算得出的)");
  144. #region 初始化计算增量值(个人血压信息)
  145. // 测量值当作平均值
  146. systolicAvg = bp.SystolicValue;
  147. diastolicAvg = bp.DiastolicValue;
  148. systolicInc = (int)((systolicRefValue - systolicAvg) * systolicAvgOffset)!;
  149. diastolicInc = (int)((diastolicRefValue - diastolicAvg) * diastolicAvgOffset)!;
  150. #region 更新 gps_persoon remarks 下发增量值到iot
  151. // 更新
  152. remarkFlag = await _serviceIotWebApi.UpdatePersonRemarksAsync(bp.Serialno, (int)systolicRefValue!, (int)diastolicRefValue!, systolicInc, diastolicInc).ConfigureAwait(false);
  153. if (remarkFlag)
  154. {
  155. _logger.LogInformation($"{nameof(BloodpressResolver)} 开启血压标定值下发: {_configBoodPressResolver.EnableBPRefPush}");
  156. // 启血压标定值下发开关
  157. if (_configBoodPressResolver.EnableBPRefPush)
  158. {
  159. // 下推
  160. BloodPressCalibrationConfigModel bpIncData = new()
  161. {
  162. Imei = bp.Serialno,
  163. SystolicRefValue = (int)systolicRefValue!, //收缩压标定值,值为0 表示不生效
  164. DiastolicRefValue = (int)diastolicRefValue!, //舒张压标定值,值为0表示不生效
  165. SystolicIncValue = systolicInc, //收缩压显示增量,值为0 表示不生效
  166. DiastolicIncValue = diastolicInc //舒张压显示增量,值为0 表示不生效
  167. };
  168. // 下发 IOT 增量值
  169. var flagIot = await _serviceIotWebApi.SetBloodPressCalibrationConfigAsync(bpIncData).ConfigureAwait(false);
  170. if (flagIot)
  171. {
  172. startTime = (DateTime)bp.LastUpdate!;
  173. endTime = DateTime.Now;
  174. #region 保存下推记录 stb_hm_bp_push_ref_inc_value
  175. sql = $"INSERT INTO health_monitor.hm_bp_push_ref_inc_value_{bp.Serialno.Substring(bp.Serialno.Length - 2)} " +
  176. $"USING health_monitor.stb_hm_bp_push_ref_inc_value " +
  177. $"TAGS ('{bp.Serialno.Substring(bp.Serialno.Length - 2)}') " +
  178. $"VALUES(" +
  179. $"'{endTime:yyyy-MM-dd HH:mm:ss.fff}'," +
  180. $"'{bp.Serialno}'," +
  181. $"{systolicRefValue}," +
  182. $"{diastolicRefValue}," +
  183. $"{systolicInc}," +
  184. $"{diastolicInc}," +
  185. $"{true}," +
  186. $"{systolicAvg}," +
  187. $"{diastolicAvg}," +
  188. $"{systolicAvgOffset}," +
  189. $"{diastolicAvgOffset}," +
  190. $"'{startTime:yyyy-MM-dd HH:mm:ss.fff}'," +
  191. $"'{endTime:yyyy-MM-dd HH:mm:ss.fff}'" +
  192. $")";
  193. _serviceTDengine.ExecuteInsertSQL(sql);
  194. #endregion
  195. }
  196. }
  197. }
  198. #endregion
  199. #endregion
  200. }
  201. else
  202. {
  203. #region 正常计算增量值
  204. // var lastPush = await _serviceTDengine.GetLastAsync("stb_hm_bp_push_ref_inc_value", $"serialno='{bp.Serialno}' order by ts desc");
  205. var lastPushResponse = await _serviceTDengine.ExecuteSelectRestResponseAsync("stb_hm_bp_push_ref_inc_value", $"serialno='{bp.Serialno}' order by ts desc", "last_row(*)");
  206. if (lastPushResponse == null)
  207. {
  208. return;
  209. }
  210. var lastPushParser = JsonConvert.DeserializeObject<ParseTDengineRestResponse<BloodPressurePushRefIncModel>>(lastPushResponse);
  211. var lastPush = lastPushParser!.Select().FirstOrDefault();
  212. //var ts = last?[0];
  213. // 曾经有下发记录
  214. if (lastPushParser?.Rows != 0)
  215. {
  216. // 重置设备,取正常值标定值
  217. if (
  218. lastPush!.SystolicRefValue == 0
  219. && lastPush!.DiastolicRefValue == 0
  220. && lastPush!.SystolicIncValue == 0
  221. && lastPush!.DiastolicIncValue == 0
  222. )
  223. {
  224. systolicRefValue = bpRef!.Systolic;//?
  225. diastolicRefValue = bpRef!.Diastolic;//?
  226. }
  227. // 取最后一条下推的标定值
  228. else
  229. {
  230. systolicRefValue = lastPush!.SystolicRefValue;
  231. diastolicRefValue = lastPush!.DiastolicRefValue;
  232. }
  233. duration = SafeType.SafeInt64(((DateTime)bp.LastUpdate! - lastPush!.Timestamp).TotalMilliseconds);
  234. lastPushSystolicInc = lastPush!.SystolicIncValue;
  235. lastPushDiastolicInc = lastPush!.DiastolicIncValue;
  236. }
  237. TimeSpan ts = TimeSpan.FromMilliseconds(duration);
  238. // 获取历史数据
  239. ////DateTime now = DateTime.Now;
  240. //DateTime now = (DateTime)bp.LastUpdate!; //测试
  241. //DateTime startTime = now.AddDays(-duration);
  242. //DateTime endTime = now;
  243. endTime = (DateTime)bp.LastUpdate!; //测试
  244. startTime = endTime - ts;
  245. var condition = $"ts between '{startTime:yyyy-MM-dd HH:mm:ss.fff}' and '{endTime:yyyy-MM-dd HH:mm:ss.fff}' and serialno='{bp.Serialno}'";
  246. var hmBpResponse = await _serviceTDengine.ExecuteSelectRestResponseAsync("stb_hm_bloodpress", condition);
  247. var hmBpParser = JsonConvert.DeserializeObject<ParseTDengineRestResponse<BloodPressureModel>>(hmBpResponse!);
  248. var hmBp = hmBpParser?.Select();
  249. if (hmBp?.ToList().Count < 2)
  250. {
  251. _logger.LogInformation($"{bp.Serialno} 数据值不足");
  252. return;
  253. }
  254. // 最大值
  255. systolicMax = (int)hmBpParser?.Select(i => i.SystolicValue).Max()!;
  256. diastolicMax = (int)hmBpParser?.Select(i => i.DiastolicValue).Max()!;
  257. // 最小值
  258. systolicMin = (int)hmBpParser?.Select(i => i.SystolicValue).Min()!;
  259. diastolicMin = (int)hmBpParser?.Select(i => i.DiastolicValue).Min()!;
  260. // 计算去除最大值和最小值和异常值的平均值
  261. //var systolicAvg = await _serviceTDengine.GetAvgExceptMaxMinValueAsync("systolic_value", "stb_hm_bloodpress", $"ts>='{startTime:yyyy-MM-dd HH:mm:ss.fff}' and ts <='{endTime:yyyy-MM-dd HH:mm:ss.fff}' and serialno='{bp.Serialno}' and systolic_value < {systolicRefValue} ");
  262. //var diastolicAvg = await _serviceTDengine.GetAvgExceptMaxMinValueAsync("diastolic_value", "stb_hm_bloodpress", $"ts>='{startTime:yyyy-MM-dd HH:mm:ss.fff}' and ts <='{endTime:yyyy-MM-dd HH:mm:ss.fff}' and serialno='{bp.Serialno}' and diastolic_value < {diastolicRefValue}");
  263. systolicAvg = (int)(hmBpParser?.AverageAfterRemovingOneMinMaxRef(i => i.SystolicValue, SafeType.SafeInt(systolicRefValue!)))!;
  264. diastolicAvg = (int)(hmBpParser?.AverageAfterRemovingOneMinMaxRef(i => i.DiastolicValue, SafeType.SafeInt(diastolicRefValue!)))!;
  265. if (systolicAvg.Equals(0) || diastolicAvg.Equals(0))
  266. {
  267. _logger.LogWarning($"{bp.Serialno} 历史数据{startTime}---{endTime}除最大值和最小值和异常值的平均值为0,使用测试量当做平均值");
  268. systolicAvg = bp.SystolicValue;
  269. diastolicAvg = bp.DiastolicValue;
  270. /*
  271. systolicInc = (int)((systolicRefValue - systolicAvg) * systolicAvgOffset)!;
  272. diastolicInc = (int)((diastolicRefValue - diastolicAvg) * diastolicAvgOffset)!;
  273. // 初始化 remark
  274. remarkFlag = await _serviceIotWebApi.UpdatePersonRemarksAsync(bp.Serialno, (int)systolicRefValue!, (int)diastolicRefValue!, systolicInc, diastolicInc).ConfigureAwait(false);
  275. if (remarkFlag)
  276. {
  277. // 下推
  278. BloodPressCalibrationConfigModel bpIncData = new()
  279. {
  280. Imei = bp.Serialno,
  281. SystolicRefValue = (int)systolicRefValue!, //收缩压标定值,值为0 表示不生效
  282. DiastolicRefValue = (int)diastolicRefValue!, //舒张压标定值,值为0表示不生效
  283. SystolicIncValue = systolicInc, //收缩压显示增量,值为0 表示不生效
  284. DiastolicIncValue = diastolicInc //舒张压显示增量,值为0 表示不生效
  285. };
  286. // 下发 IOT 增量值
  287. var flagIot = await _serviceIotWebApi.SetBloodPressCalibrationConfigAsync(bpIncData).ConfigureAwait(false);
  288. if (flagIot)
  289. {
  290. #region 保存下推记录 stb_hm_bp_push_ref_inc_value
  291. sql = $"INSERT INTO health_monitor.hm_bp_push_ref_inc_value_{bp.Serialno.Substring(bp.Serialno.Length - 2)} " +
  292. $"USING health_monitor.stb_hm_bp_push_ref_inc_value " +
  293. $"TAGS ('{bp.Serialno.Substring(bp.Serialno.Length - 2)}') " +
  294. $"VALUES(" +
  295. $"'{DateTime.Now:yyyy-MM-dd HH:mm:ss.fff}'," +
  296. $"'{bp.Serialno}'," +
  297. $"{systolicRefValue}," +
  298. $"{diastolicRefValue}," +
  299. $"{systolicInc}," +
  300. $"{diastolicInc}," +
  301. $"{true})";
  302. _serviceTDengine.ExecuteInsertSQL(sql);
  303. #endregion
  304. }
  305. }
  306. return;
  307. */
  308. }
  309. //var systolicAvg = _serviceTDengine.GetAvgExceptMaxMinValue("systolic_value", "hm_bloodpress", $"ts>='{startTime:yyyy-MM-dd HH:mm:ss.fff}' and ts <='{endTime:yyyy-MM-dd HH:mm:ss.fff}' and serialno='{bp.Serialno}' and systolic_value < {systolicRefValue} ");
  310. //var diastolicAvg = _serviceTDengine.GetAvgExceptMaxMinValue("diastolic_value", "hm_bloodpress", $"ts>='{startTime:yyyy-MM-dd HH:mm:ss.fff}' and ts <='{endTime:yyyy-MM-dd HH:mm:ss.fff}' and serialno='{bp.Serialno}' and diastolic_value < {diastolicRefValue}");
  311. // 增量值=(标定值-平均值)* 0.25
  312. var currentSystolicInc = (int)((systolicRefValue - systolicAvg) * systolicAvgOffset)!;
  313. var currentDiastolicInc = (int)((diastolicRefValue - diastolicAvg) * diastolicAvgOffset)!;
  314. // 累计增量
  315. systolicInc = currentSystolicInc + lastPushSystolicInc;
  316. diastolicInc = currentDiastolicInc + lastPushDiastolicInc;
  317. #endregion
  318. }
  319. #region 插入BP增量值 hm_bloodpress_stats_inc
  320. // 自动建表
  321. sql = $"INSERT INTO health_monitor.hm_bp_stats_inc_{bp.Serialno.Substring(bp.Serialno.Length - 2)} " +
  322. $"USING health_monitor.stb_hm_bloodpress_stats_inc " +
  323. $"TAGS ('{bp.Serialno.Substring(bp.Serialno.Length - 2)}') " +
  324. $"VALUES(" +
  325. $"'{bp.LastUpdate:yyyy-MM-dd HH:mm:ss.fff}'," +
  326. $"'{bp.BloodPressId}'," +
  327. $"'{bp.MessageId}'," +
  328. $"'{bp.Serialno}'," +
  329. $"{bp.SystolicValue}," +
  330. $"{systolicRefValue}," +
  331. $"{systolicAvg}," +
  332. $"{systolicMax}," +
  333. $"{systolicMin}," +
  334. $"{systolicAvgOffset}," +
  335. $"{systolicInc}," +
  336. $"{bp.DiastolicValue}," +
  337. $"{diastolicRefValue}," +
  338. $"{diastolicAvg}," +
  339. $"{diastolicMax}," +
  340. $"{diastolicMin}," +
  341. $"{diastolicAvgOffset}," +
  342. $"{diastolicInc}," +
  343. $"{gender}," +
  344. $"{age}," +
  345. $"{height}," +
  346. $"{weight}," +
  347. $"'{bp.LastUpdate:yyyy-MM-dd HH:mm:ss.fff}'," +
  348. $"{duration}," +
  349. $"'{startTime:yyyy-MM-dd HH:mm:ss.fff}'," +
  350. $"'{endTime:yyyy-MM-dd HH:mm:ss.fff}'," +
  351. $"'{string.Empty}'," +
  352. $"{isHypertension})";
  353. _serviceTDengine.ExecuteInsertSQL(sql);
  354. // 发送到 设置设备血压标定参数
  355. #endregion
  356. #region 定时下发触发器
  357. var key = $"health_moniter/schedule_push/imei/{bp.Serialno}";
  358. var schedule_push = await _serviceEtcd.GetValAsync(key).ConfigureAwait(false);
  359. if (string.IsNullOrWhiteSpace(schedule_push))
  360. {
  361. // 注册首次下推
  362. #if DEBUG
  363. // await _serviceEtcd.PutValAsync(key, result, 60*1, false).ConfigureAwait(false);
  364. var interval = 0;
  365. // 获取当前时间
  366. DateTime now = DateTime.Now;
  367. // 计算距离下一个$interval天后的8点的时间间隔
  368. DateTime nextRunTime = new DateTime(now.Year, now.Month, now.Day, now.Hour, now.Minute + 1, 58).AddDays(interval);
  369. TimeSpan timeUntilNextRun = nextRunTime - now;
  370. // 如果当前时间已经超过了8点,将等待到明天后的8点
  371. if (timeUntilNextRun < TimeSpan.Zero)
  372. {
  373. timeUntilNextRun = timeUntilNextRun.Add(TimeSpan.FromMinutes(1));
  374. nextRunTime += timeUntilNextRun;
  375. }
  376. var ttl = (long)timeUntilNextRun.TotalSeconds;
  377. var data = new
  378. {
  379. imei = bp.Serialno,
  380. create_time = now.ToString("yyyy-MM-dd HH:mm:ss"),
  381. ttl,
  382. next_run_time = nextRunTime.ToString("yyyy-MM-dd HH:mm:ss")
  383. };
  384. var result = JsonConvert.SerializeObject(data);
  385. await _serviceEtcd.PutValAsync(key, result, ttl, false).ConfigureAwait(false);
  386. #else
  387. //DateTime sNow = DateTime.Now;
  388. //// 计算距离19:59:55点的时间间隔
  389. //TimeSpan timeUntil = new DateTime(sNow.Year, sNow.Month, sNow.Day, 19, 59, 55) - sNow;
  390. //// 如果当前时间已经超过了12点,将等待到明天
  391. //if (timeUntil < TimeSpan.Zero)
  392. //{
  393. // timeUntil = timeUntil.Add(TimeSpan.FromHours(24));
  394. //}
  395. //var ttl = (long)timeUntil.TotalSeconds;
  396. var interval = 0;
  397. // 获取当前时间
  398. DateTime now = DateTime.Now;
  399. // 计算距离下一个$interval天后的8点的时间间隔
  400. DateTime nextRunTime = new DateTime(now.Year, now.Month, now.Day, 19, 59, 58).AddDays(interval);
  401. TimeSpan timeUntilNextRun = nextRunTime - now;
  402. // 如果当前时间已经超过了8点,将等待到明天后的8点
  403. if (timeUntilNextRun < TimeSpan.Zero)
  404. {
  405. timeUntilNextRun = timeUntilNextRun.Add(TimeSpan.FromDays(1));
  406. nextRunTime += timeUntilNextRun;
  407. }
  408. var ttl =(long)timeUntilNextRun.TotalSeconds;
  409. var data = new
  410. {
  411. imei = bp.Serialno,
  412. create_time = now.ToString("yyyy-MM-dd HH:mm:ss"),
  413. ttl,
  414. next_run_time = nextRunTime.ToString("yyyy-MM-dd HH:mm:ss")
  415. };
  416. var result = JsonConvert.SerializeObject(data);
  417. await _serviceEtcd.PutValAsync(key, result,ttl, false).ConfigureAwait(false);
  418. #endif
  419. }
  420. #endregion
  421. }
  422. catch (Exception ex)
  423. {
  424. _logger.LogError($"解析血压出错, {ex.Message}\n{ex.StackTrace}");
  425. }
  426. }
  427. }
  428. }