Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: NaturalTinyShell_ice libmDot-12Sept mbed-rtos mbed
Fork of ICE by
src/ConfigurationHandler/Controls/SetpointControl.cpp@115:1558e01d04c6, 2016-09-22 (annotated)
- Committer:
- jmarkel44
- Date:
- Thu Sep 22 21:19:44 2016 +0000
- Revision:
- 115:1558e01d04c6
- Parent:
- 96:807f04bd5256
- Child:
- 131:a290a3934132
Setpoint calls EventLoggerApi at actuation;
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
jmarkel44 | 14:cc916fa8dd11 | 1 | /****************************************************************************** |
jmarkel44 | 14:cc916fa8dd11 | 2 | * |
jmarkel44 | 19:9bc8fabeddfa | 3 | * File: SetpointControl.cpp |
jmarkel44 | 20:653923c2f37a | 4 | * Desciption: ICE Setpoint Control Class implementation |
jmarkel44 | 14:cc916fa8dd11 | 5 | * |
jmarkel44 | 14:cc916fa8dd11 | 6 | *****************************************************************************/ |
jmarkel44 | 13:c80c283f9db2 | 7 | #include "SetpointControl.h" |
jmarkel44 | 14:cc916fa8dd11 | 8 | #include "mDot.h" |
jmarkel44 | 20:653923c2f37a | 9 | #include "MbedJSONValue.h" |
davidjhoward | 91:0e8d76030598 | 10 | #include "ModbusMasterApi.h" |
jmarkel44 | 51:66b820f203a5 | 11 | #include "global.h" |
jmarkel44 | 28:c410a61238bb | 12 | #include <string> |
jmarkel44 | 13:c80c283f9db2 | 13 | |
jmarkel44 | 14:cc916fa8dd11 | 14 | extern mDot *GLOBAL_mdot; |
jmarkel44 | 14:cc916fa8dd11 | 15 | |
jmarkel44 | 56:225786c56315 | 16 | // Method: load |
jmarkel44 | 56:225786c56315 | 17 | // Description: open the configuration file and assign data to the |
jmarkel44 | 56:225786c56315 | 18 | // setpoint control object |
jmarkel44 | 56:225786c56315 | 19 | // |
jmarkel44 | 56:225786c56315 | 20 | // @param controlFile -> name of the control file |
jmarkel44 | 56:225786c56315 | 21 | // @return true if data is assigned; false on error |
jmarkel44 | 56:225786c56315 | 22 | |
jmarkel44 | 28:c410a61238bb | 23 | bool SetpointControl::load(string _controlFile) |
jmarkel44 | 20:653923c2f37a | 24 | { |
jmarkel44 | 51:66b820f203a5 | 25 | MbedJSONValue json_value; // JSON parsing element |
jmarkel44 | 51:66b820f203a5 | 26 | controlFile = _controlFile; |
jmarkel44 | 51:66b820f203a5 | 27 | |
jmarkel44 | 56:225786c56315 | 28 | // open and read from the control file |
jmarkel44 | 14:cc916fa8dd11 | 29 | mDot::mdot_file file = GLOBAL_mdot->openUserFile(controlFile.c_str(), mDot::FM_RDONLY); |
jmarkel44 | 51:66b820f203a5 | 30 | if ( file.fd < 0 ) |
jmarkel44 | 28:c410a61238bb | 31 | return false; |
jmarkel44 | 20:653923c2f37a | 32 | |
jmarkel44 | 20:653923c2f37a | 33 | // read the data into a buffer |
jmarkel44 | 28:c410a61238bb | 34 | char dataBuf[1024]; |
jmarkel44 | 28:c410a61238bb | 35 | |
jmarkel44 | 28:c410a61238bb | 36 | int bytes_read = GLOBAL_mdot->readUserFile(file, (void *)dataBuf, sizeof(dataBuf)); |
jmarkel44 | 28:c410a61238bb | 37 | if ( bytes_read != sizeof(dataBuf) ) { |
jmarkel44 | 28:c410a61238bb | 38 | logError("%s: failed to read %d bytes from %s", __func__, sizeof(dataBuf), controlFile.c_str()); |
jmarkel44 | 93:1553fb156915 | 39 | // caller should destroy the object |
jmarkel44 | 28:c410a61238bb | 40 | return false; |
jmarkel44 | 28:c410a61238bb | 41 | } |
jmarkel44 | 51:66b820f203a5 | 42 | |
jmarkel44 | 51:66b820f203a5 | 43 | // close the file |
jmarkel44 | 28:c410a61238bb | 44 | GLOBAL_mdot->closeUserFile(file); |
jmarkel44 | 28:c410a61238bb | 45 | |
jmarkel44 | 51:66b820f203a5 | 46 | // parse the json data |
jmarkel44 | 28:c410a61238bb | 47 | parse(json_value, dataBuf); |
jmarkel44 | 51:66b820f203a5 | 48 | |
jmarkel44 | 96:807f04bd5256 | 49 | id = json_value ["id"].get<string>(); |
jmarkel44 | 28:c410a61238bb | 50 | priority = atoi(json_value["priority"].get<string>().c_str()); |
jmarkel44 | 96:807f04bd5256 | 51 | input = json_value ["input"].get<string>(); |
jmarkel44 | 96:807f04bd5256 | 52 | output = json_value ["output"].get<string>(); |
jmarkel44 | 89:55ac65d7f206 | 53 | setpoint = atof(json_value["setpoint"].get<string>().c_str()); |
jmarkel44 | 28:c410a61238bb | 54 | productFactor = atof(json_value["prodfact"].get<string>().c_str()); |
jmarkel44 | 90:7d9731dec0da | 55 | actingDir = atoi(json_value["actingDir"].get<string>().c_str()); |
jmarkel44 | 28:c410a61238bb | 56 | highAlert = atof(json_value["halert"].get<string>().c_str()); |
jmarkel44 | 28:c410a61238bb | 57 | lowAlert = atof(json_value["lalert"].get<string>().c_str()); |
jmarkel44 | 28:c410a61238bb | 58 | highFailsafe = atof(json_value["hfs"].get<string>().c_str()); |
jmarkel44 | 28:c410a61238bb | 59 | lowFailsafe = atof(json_value["lfs"].get<string>().c_str()); |
jmarkel44 | 96:807f04bd5256 | 60 | tolerance = atof(json_value["tol"].get<string>().c_str()); |
jmarkel44 | 20:653923c2f37a | 61 | |
jmarkel44 | 56:225786c56315 | 62 | return true; // object created successfully |
jmarkel44 | 51:66b820f203a5 | 63 | } |
jmarkel44 | 51:66b820f203a5 | 64 | |
jmarkel44 | 56:225786c56315 | 65 | // Method: start |
jmarkel44 | 56:225786c56315 | 66 | // Description: start the setpoint control |
jmarkel44 | 56:225786c56315 | 67 | // |
jmarkel44 | 56:225786c56315 | 68 | // @param none |
jmarkel44 | 56:225786c56315 | 69 | // @return none |
jmarkel44 | 56:225786c56315 | 70 | |
jmarkel44 | 51:66b820f203a5 | 71 | void SetpointControl::start(void) |
jmarkel44 | 51:66b820f203a5 | 72 | { |
jmarkel44 | 56:225786c56315 | 73 | // this is the initial state; what else needs to be done?? |
jmarkel44 | 51:66b820f203a5 | 74 | this->currentState = STATE_STARTUP; |
jmarkel44 | 19:9bc8fabeddfa | 75 | } |
jmarkel44 | 19:9bc8fabeddfa | 76 | |
jmarkel44 | 56:225786c56315 | 77 | // Method: update |
jmarkel44 | 56:225786c56315 | 78 | // Description: based on the state of the control, check for |
jmarkel44 | 56:225786c56315 | 79 | // under limit and over limit values, adjust the |
jmarkel44 | 56:225786c56315 | 80 | // state accordingly |
jmarkel44 | 56:225786c56315 | 81 | // |
jmarkel44 | 56:225786c56315 | 82 | // @param none |
jmarkel44 | 56:225786c56315 | 83 | // @return none |
jmarkel44 | 56:225786c56315 | 84 | |
jmarkel44 | 51:66b820f203a5 | 85 | void SetpointControl::update(void) |
jmarkel44 | 51:66b820f203a5 | 86 | { |
jmarkel44 | 51:66b820f203a5 | 87 | switch (this->currentState) { |
jmarkel44 | 51:66b820f203a5 | 88 | case STATE_STARTUP: |
jmarkel44 | 51:66b820f203a5 | 89 | if ( this->underLimit() ) { |
jmarkel44 | 51:66b820f203a5 | 90 | // start the feed right away |
jmarkel44 | 51:66b820f203a5 | 91 | this->startFeed(); |
jmarkel44 | 51:66b820f203a5 | 92 | this->currentState = STATE_CONTROL_ON; |
jmarkel44 | 51:66b820f203a5 | 93 | } else { |
jmarkel44 | 51:66b820f203a5 | 94 | this->currentState = STATE_CONTROL_OFF; |
jmarkel44 | 51:66b820f203a5 | 95 | } |
jmarkel44 | 51:66b820f203a5 | 96 | break; |
jmarkel44 | 51:66b820f203a5 | 97 | case STATE_CONTROL_ON: |
jmarkel44 | 51:66b820f203a5 | 98 | if ( this->overLimit() ) { |
jmarkel44 | 51:66b820f203a5 | 99 | // stop the feed |
jmarkel44 | 51:66b820f203a5 | 100 | this->stopFeed(); |
jmarkel44 | 51:66b820f203a5 | 101 | this->currentState = STATE_CONTROL_OFF; |
jmarkel44 | 51:66b820f203a5 | 102 | } else { |
jmarkel44 | 51:66b820f203a5 | 103 | // do nothing |
jmarkel44 | 51:66b820f203a5 | 104 | } |
jmarkel44 | 51:66b820f203a5 | 105 | break; |
jmarkel44 | 51:66b820f203a5 | 106 | case STATE_CONTROL_OFF: |
jmarkel44 | 51:66b820f203a5 | 107 | if ( this->underLimit() ) { |
jmarkel44 | 51:66b820f203a5 | 108 | // start the feed |
jmarkel44 | 51:66b820f203a5 | 109 | this->startFeed(); |
jmarkel44 | 51:66b820f203a5 | 110 | this->currentState = STATE_CONTROL_ON; |
jmarkel44 | 51:66b820f203a5 | 111 | } else { |
jmarkel44 | 51:66b820f203a5 | 112 | // do nothing |
jmarkel44 | 51:66b820f203a5 | 113 | } |
jmarkel44 | 51:66b820f203a5 | 114 | break; |
jmarkel44 | 56:225786c56315 | 115 | //case STATE_CONTROL_DISABLED: |
jmarkel44 | 56:225786c56315 | 116 | //case STATE_CONTROL_PAUSED: |
jmarkel44 | 51:66b820f203a5 | 117 | default: |
jmarkel44 | 51:66b820f203a5 | 118 | break; |
jmarkel44 | 51:66b820f203a5 | 119 | } |
jmarkel44 | 51:66b820f203a5 | 120 | } |
jmarkel44 | 51:66b820f203a5 | 121 | |
jmarkel44 | 56:225786c56315 | 122 | // Method: overLimit |
jmarkel44 | 56:225786c56315 | 123 | // Description: (see @return) |
jmarkel44 | 56:225786c56315 | 124 | // |
jmarkel44 | 56:225786c56315 | 125 | // @param none |
jmarkel44 | 56:225786c56315 | 126 | // @return true if product is over the upper limit for normal mode |
jmarkel44 | 56:225786c56315 | 127 | // or under the limit for reverse mode; false otherwise |
jmarkel44 | 56:225786c56315 | 128 | |
jmarkel44 | 51:66b820f203a5 | 129 | bool SetpointControl::overLimit(void) |
jmarkel44 | 51:66b820f203a5 | 130 | { |
davidjhoward | 91:0e8d76030598 | 131 | ModbusValue value; |
jmarkel44 | 92:9a6a1adca19c | 132 | ModbusMasterReadRegister( input, &value ); |
jmarkel44 | 92:9a6a1adca19c | 133 | float flimit; |
davidjhoward | 91:0e8d76030598 | 134 | |
jmarkel44 | 92:9a6a1adca19c | 135 | if ( !actingDir ) { |
jmarkel44 | 96:807f04bd5256 | 136 | flimit = setpoint + tolerance; |
jmarkel44 | 92:9a6a1adca19c | 137 | return (value.value > flimit); |
jmarkel44 | 92:9a6a1adca19c | 138 | } else { |
jmarkel44 | 115:1558e01d04c6 | 139 | flimit = setpoint - tolerance; |
jmarkel44 | 92:9a6a1adca19c | 140 | return (value.value < flimit); |
davidjhoward | 91:0e8d76030598 | 141 | } |
jmarkel44 | 51:66b820f203a5 | 142 | } |
jmarkel44 | 51:66b820f203a5 | 143 | |
jmarkel44 | 92:9a6a1adca19c | 144 | |
jmarkel44 | 56:225786c56315 | 145 | // Method: underLimit |
jmarkel44 | 56:225786c56315 | 146 | // Description: (see @return) |
jmarkel44 | 56:225786c56315 | 147 | // |
jmarkel44 | 56:225786c56315 | 148 | // @param none |
jmarkel44 | 56:225786c56315 | 149 | // @return true if product is under lower limit for normal mode or |
jmarkel44 | 56:225786c56315 | 150 | // over the upper limit for reverse mode; false otherwise |
jmarkel44 | 56:225786c56315 | 151 | |
jmarkel44 | 51:66b820f203a5 | 152 | bool SetpointControl::underLimit(void) |
jmarkel44 | 51:66b820f203a5 | 153 | { |
davidjhoward | 91:0e8d76030598 | 154 | ModbusValue value; |
jmarkel44 | 92:9a6a1adca19c | 155 | ModbusMasterReadRegister( input, &value ); |
jmarkel44 | 92:9a6a1adca19c | 156 | float flimit; |
davidjhoward | 91:0e8d76030598 | 157 | |
jmarkel44 | 92:9a6a1adca19c | 158 | if ( !actingDir ) { |
jmarkel44 | 115:1558e01d04c6 | 159 | flimit = setpoint - tolerance; |
jmarkel44 | 92:9a6a1adca19c | 160 | return (value.value < flimit); |
jmarkel44 | 92:9a6a1adca19c | 161 | } else { |
jmarkel44 | 96:807f04bd5256 | 162 | flimit = setpoint + tolerance; |
jmarkel44 | 92:9a6a1adca19c | 163 | return (value.value > flimit); |
davidjhoward | 91:0e8d76030598 | 164 | } |
jmarkel44 | 51:66b820f203a5 | 165 | } |
jmarkel44 | 51:66b820f203a5 | 166 | |
jmarkel44 | 56:225786c56315 | 167 | // Method: startFeed() |
jmarkel44 | 56:225786c56315 | 168 | // Description: send ON indication to Output Master for this control's |
jmarkel44 | 56:225786c56315 | 169 | // relay |
jmarkel44 | 56:225786c56315 | 170 | // |
jmarkel44 | 56:225786c56315 | 171 | // @param none |
jmarkel44 | 56:225786c56315 | 172 | // @return none |
jmarkel44 | 56:225786c56315 | 173 | |
jmarkel44 | 51:66b820f203a5 | 174 | void SetpointControl::startFeed(void) |
jmarkel44 | 51:66b820f203a5 | 175 | { |
jmarkel44 | 56:225786c56315 | 176 | logInfo("%s: %s attempting to start feed on relay %s\n", |
jmarkel44 | 56:225786c56315 | 177 | __func__, controlFile.c_str(), output.c_str()); |
jmarkel44 | 56:225786c56315 | 178 | |
jmarkel44 | 71:34856d21f2bf | 179 | OutputControlMsg_t *output_mail = OutputMasterMailBox.alloc(); |
jmarkel44 | 71:34856d21f2bf | 180 | memset(output_mail, 0, sizeof(OutputControlMsg_t)); |
jmarkel44 | 115:1558e01d04c6 | 181 | |
jmarkel44 | 115:1558e01d04c6 | 182 | output_mail->action = ACTION_CONTROL_ON; |
jmarkel44 | 115:1558e01d04c6 | 183 | output_mail->controlType = CONTROL_SETPOINT; |
jmarkel44 | 115:1558e01d04c6 | 184 | strncpy(output_mail->input_tag, this->input.c_str(), sizeof(output_mail->input_tag)-1); |
jmarkel44 | 115:1558e01d04c6 | 185 | strncpy(output_mail->output_tag, this->output.c_str(), sizeof(output_mail->output_tag)-1); |
jmarkel44 | 71:34856d21f2bf | 186 | output_mail->priority = this->priority; |
jmarkel44 | 71:34856d21f2bf | 187 | strncpy(output_mail->id, this->id.c_str(), sizeof(output_mail->id)-1); |
jmarkel44 | 71:34856d21f2bf | 188 | OutputMasterMailBox.put(output_mail); |
jmarkel44 | 51:66b820f203a5 | 189 | } |
jmarkel44 | 51:66b820f203a5 | 190 | |
jmarkel44 | 56:225786c56315 | 191 | // Method: stopFeed |
jmarkel44 | 56:225786c56315 | 192 | // Description: send OFF indication to Output Master for this control's |
jmarkel44 | 56:225786c56315 | 193 | // relay |
jmarkel44 | 56:225786c56315 | 194 | // |
jmarkel44 | 56:225786c56315 | 195 | // @param none |
jmarkel44 | 56:225786c56315 | 196 | // @return none |
jmarkel44 | 56:225786c56315 | 197 | |
jmarkel44 | 51:66b820f203a5 | 198 | void SetpointControl::stopFeed(void) |
jmarkel44 | 51:66b820f203a5 | 199 | { |
jmarkel44 | 71:34856d21f2bf | 200 | logInfo("%s: %s attempting to stop feed on relay %s\n", |
jmarkel44 | 56:225786c56315 | 201 | __func__, controlFile.c_str(), output.c_str()); |
jmarkel44 | 56:225786c56315 | 202 | |
jmarkel44 | 71:34856d21f2bf | 203 | OutputControlMsg_t *output_mail = OutputMasterMailBox.alloc(); |
jmarkel44 | 71:34856d21f2bf | 204 | memset(output_mail, 0, sizeof(OutputControlMsg_t)); |
jmarkel44 | 115:1558e01d04c6 | 205 | |
jmarkel44 | 115:1558e01d04c6 | 206 | output_mail->action = ACTION_CONTROL_OFF; |
jmarkel44 | 115:1558e01d04c6 | 207 | output_mail->controlType = CONTROL_SETPOINT; |
jmarkel44 | 115:1558e01d04c6 | 208 | strncpy(output_mail->input_tag, this->input.c_str(), sizeof(output_mail->input_tag)-1); |
jmarkel44 | 115:1558e01d04c6 | 209 | strncpy(output_mail->output_tag, this->output.c_str(), sizeof(output_mail->output_tag)-1); |
jmarkel44 | 71:34856d21f2bf | 210 | output_mail->priority = this->priority; |
jmarkel44 | 71:34856d21f2bf | 211 | strncpy(output_mail->id, this->id.c_str(), sizeof(output_mail->id)-1); |
jmarkel44 | 71:34856d21f2bf | 212 | OutputMasterMailBox.put(output_mail); |
jmarkel44 | 72:3754b352f156 | 213 | } |
jmarkel44 | 72:3754b352f156 | 214 | |
jmarkel44 | 72:3754b352f156 | 215 | // Method: unregisterControl |
jmarkel44 | 72:3754b352f156 | 216 | // Description: send OFF indication to Output Master for this control's |
jmarkel44 | 72:3754b352f156 | 217 | // relay |
jmarkel44 | 72:3754b352f156 | 218 | // |
jmarkel44 | 72:3754b352f156 | 219 | // @param none |
jmarkel44 | 72:3754b352f156 | 220 | // @return none |
jmarkel44 | 72:3754b352f156 | 221 | void SetpointControl::unregisterControl(void) |
jmarkel44 | 72:3754b352f156 | 222 | { |
jmarkel44 | 115:1558e01d04c6 | 223 | logInfo("%s: %s attempting to unregister %s\n", |
jmarkel44 | 115:1558e01d04c6 | 224 | __func__, controlFile.c_str()); |
jmarkel44 | 72:3754b352f156 | 225 | |
jmarkel44 | 72:3754b352f156 | 226 | OutputControlMsg_t *output_mail = OutputMasterMailBox.alloc(); |
jmarkel44 | 72:3754b352f156 | 227 | memset(output_mail, 0, sizeof(OutputControlMsg_t)); |
jmarkel44 | 115:1558e01d04c6 | 228 | |
jmarkel44 | 115:1558e01d04c6 | 229 | output_mail->action = ACTION_CONTROL_UNREGISTER; |
jmarkel44 | 115:1558e01d04c6 | 230 | output_mail->controlType = CONTROL_MANUAL; |
jmarkel44 | 115:1558e01d04c6 | 231 | output_mail->priority = this->priority; |
jmarkel44 | 115:1558e01d04c6 | 232 | strncpy(output_mail->output_tag, this->output.c_str(), sizeof(output_mail->output_tag)-1); |
jmarkel44 | 72:3754b352f156 | 233 | strncpy(output_mail->id, this->id.c_str(), sizeof(output_mail->id)-1); |
jmarkel44 | 115:1558e01d04c6 | 234 | |
jmarkel44 | 72:3754b352f156 | 235 | OutputMasterMailBox.put(output_mail); |
jmarkel44 | 93:1553fb156915 | 236 | } |
jmarkel44 | 93:1553fb156915 | 237 | |
jmarkel44 | 93:1553fb156915 | 238 | void SetpointControl::display(void) |
jmarkel44 | 93:1553fb156915 | 239 | { |
jmarkel44 | 93:1553fb156915 | 240 | string mapper[] = { "STARTUP", |
jmarkel44 | 93:1553fb156915 | 241 | "CONTROL_OFF", |
jmarkel44 | 93:1553fb156915 | 242 | "CONTROL_ON", |
jmarkel44 | 93:1553fb156915 | 243 | "CONTROL_DISABLE", |
jmarkel44 | 93:1553fb156915 | 244 | "CONTROL_PAUSE", |
jmarkel44 | 115:1558e01d04c6 | 245 | "CONTROL_MAX" |
jmarkel44 | 115:1558e01d04c6 | 246 | }; |
jmarkel44 | 115:1558e01d04c6 | 247 | |
jmarkel44 | 115:1558e01d04c6 | 248 | |
jmarkel44 | 93:1553fb156915 | 249 | printf("\r controlFile : %s \n", controlFile.c_str()); |
jmarkel44 | 93:1553fb156915 | 250 | printf("\r id : %s \n", id.c_str()); |
jmarkel44 | 93:1553fb156915 | 251 | printf("\r priority : %d \n", priority); |
jmarkel44 | 93:1553fb156915 | 252 | printf("\r input : %s \n", input.c_str()); |
jmarkel44 | 93:1553fb156915 | 253 | printf("\r output : %s \n", output.c_str()); |
jmarkel44 | 93:1553fb156915 | 254 | printf("\r setpoint : %0.2f\n", setpoint); |
jmarkel44 | 93:1553fb156915 | 255 | printf("\r prodfact : %0.2f\n", productFactor); |
jmarkel44 | 94:18ae2fd82638 | 256 | printf("\r actingDir : %s \n", (actingDir) ? "DIRECT" : "INDIRECT"); |
jmarkel44 | 93:1553fb156915 | 257 | printf("\r halert : %0.2f\n", highAlert); |
jmarkel44 | 93:1553fb156915 | 258 | printf("\r lalert : %0.2f\n", lowAlert); |
jmarkel44 | 93:1553fb156915 | 259 | printf("\r hfs : %0.2f\n", highFailsafe); |
jmarkel44 | 93:1553fb156915 | 260 | printf("\r lfs : %0.2f\n", lowFailsafe); |
jmarkel44 | 115:1558e01d04c6 | 261 | printf("\r tol : %0.2f\n", tolerance); |
jmarkel44 | 93:1553fb156915 | 262 | printf("\r\n"); |
jmarkel44 | 96:807f04bd5256 | 263 | printf("\r currentState : %s\n", mapper[currentState].c_str()); |
jmarkel44 | 96:807f04bd5256 | 264 | printf("\r high band : %0.2f\n", setpoint + tolerance); |
jmarkel44 | 96:807f04bd5256 | 265 | printf("\r low band : %0.2f\n", setpoint - tolerance); |
jmarkel44 | 93:1553fb156915 | 266 | printf("\r\n"); |
jmarkel44 | 51:66b820f203a5 | 267 | } |