| 1 | www | 1 | <?php
 | 
        
           |  |  | 2 | declare(strict_types=1);
 | 
        
           |  |  | 3 |   | 
        
           |  |  | 4 | namespace LeadersLinked\Mapper;
 | 
        
           |  |  | 5 |   | 
        
           |  |  | 6 | use LeadersLinked\Mapper\Common\MapperCommon;
 | 
        
           |  |  | 7 | use Laminas\Db\Adapter\AdapterInterface;
 | 
        
           |  |  | 8 | use LeadersLinked\Model\CompanyMicrolearningUserProgress;
 | 
        
           |  |  | 9 | use LeadersLinked\Hydrator\ObjectPropertyHydrator;
 | 
        
           |  |  | 10 | use Laminas\Db\Sql\Expression;
 | 
        
           |  |  | 11 |   | 
        
           |  |  | 12 |   | 
        
           |  |  | 13 | class CompanyMicrolearningUserProgressMapper extends MapperCommon
 | 
        
           |  |  | 14 | {
 | 
        
           |  |  | 15 |     const _TABLE = 'tbl_company_microlearning_user_progress';
 | 
        
           |  |  | 16 |   | 
        
           |  |  | 17 |     /**
 | 
        
           |  |  | 18 |      *
 | 
        
           |  |  | 19 |      * @var CompanyMicrolearningUserProgressMapper
 | 
        
           |  |  | 20 |      */
 | 
        
           |  |  | 21 |     private static $_instance;
 | 
        
           |  |  | 22 |   | 
        
           |  |  | 23 |     /**
 | 
        
           |  |  | 24 |      *
 | 
        
           |  |  | 25 |      * @param AdapterInterface $adapter
 | 
        
           |  |  | 26 |      */
 | 
        
           |  |  | 27 |     private function __construct($adapter)
 | 
        
           |  |  | 28 |     {
 | 
        
           |  |  | 29 |         parent::__construct($adapter);
 | 
        
           |  |  | 30 |     }
 | 
        
           |  |  | 31 |   | 
        
           |  |  | 32 |     /**
 | 
        
           |  |  | 33 |      *
 | 
        
           |  |  | 34 |      * @param AdapterInterface $adapter
 | 
        
           |  |  | 35 |      * @return CompanyMicrolearningUserProgressMapper
 | 
        
           |  |  | 36 |      */
 | 
        
           |  |  | 37 |     public static function getInstance($adapter)
 | 
        
           |  |  | 38 |     {
 | 
        
           |  |  | 39 |         if(self::$_instance == null) {
 | 
        
           |  |  | 40 |             self::$_instance = new CompanyMicrolearningUserProgressMapper($adapter);
 | 
        
           |  |  | 41 |         }
 | 
        
           |  |  | 42 |         return self::$_instance;
 | 
        
           |  |  | 43 |     }
 | 
        
           |  |  | 44 |   | 
        
           |  |  | 45 |     /**
 | 
        
           |  |  | 46 |      *
 | 
        
           |  |  | 47 |      * @param int $user_id
 | 
        
           |  |  | 48 |      * @return CompanyMicrolearningUserProgress[]
 | 
        
           |  |  | 49 |      */
 | 
        
           |  |  | 50 |     public function fetchAllByUserId($user_id)
 | 
        
           |  |  | 51 |     {
 | 
        
           |  |  | 52 |         $prototype = new CompanyMicrolearningUserProgress();
 | 
        
           |  |  | 53 |   | 
        
           |  |  | 54 |         $select = $this->sql->select(self::_TABLE);
 | 
        
           |  |  | 55 |         $select->where->equalTo('user_id', $user_id);
 | 
        
           |  |  | 56 |   | 
        
           |  |  | 57 |         return $this->executeFetchAllObject($select, $prototype);
 | 
        
           |  |  | 58 |     }
 | 
        
           |  |  | 59 |   | 
        
           |  |  | 60 |     /**
 | 
        
           |  |  | 61 |      *
 | 
        
           |  |  | 62 |      * @return int[]
 | 
        
           |  |  | 63 |      */
 | 
        
           |  |  | 64 |     public function fetchAllDistinctUserIds()
 | 
        
           |  |  | 65 |     {
 | 
        
           |  |  | 66 |         $user_ids = [];
 | 
        
           |  |  | 67 |   | 
        
           |  |  | 68 |         $select = $this->sql->select(self::_TABLE);
 | 
        
           |  |  | 69 |         $select->columns(['user_id' => new Expression('DISTINCT(user_id)')]);
 | 
        
           |  |  | 70 |   | 
        
           |  |  | 71 |         $records = $this->executeFetchAllArray($select);
 | 
        
           |  |  | 72 |         foreach ($records as $record)
 | 
        
           |  |  | 73 |         {
 | 
        
           |  |  | 74 |             array_push($user_ids, $record['user_id']);
 | 
        
           |  |  | 75 |         }
 | 
        
           |  |  | 76 |   | 
        
           |  |  | 77 |         return $user_ids;
 | 
        
           |  |  | 78 |   | 
        
           |  |  | 79 |     }
 | 
        
           |  |  | 80 |   | 
        
           | 16 | efrain | 81 |   | 
        
           | 1 | www | 82 |   | 
        
           |  |  | 83 |   | 
        
           | 16 | efrain | 84 |   | 
        
           | 1 | www | 85 |     /**
 | 
        
           |  |  | 86 |      *
 | 
        
           |  |  | 87 |      * @return CompanyMicrolearningUserProgress[]
 | 
        
           |  |  | 88 |      */
 | 
        
           |  |  | 89 |     public function fetchAllTopics()
 | 
        
           |  |  | 90 |     {
 | 
        
           |  |  | 91 |         $prototype = new CompanyMicrolearningUserProgress();
 | 
        
           |  |  | 92 |   | 
        
           |  |  | 93 |         $select = $this->sql->select(self::_TABLE);
 | 
        
           |  |  | 94 |         $select->where->equalTo('type', CompanyMicrolearningUserProgress::TYPE_TOPIC);
 | 
        
           |  |  | 95 |   | 
        
           |  |  | 96 |         //echo $select->getSqlString($this->adapter->platform); exit;
 | 
        
           |  |  | 97 |   | 
        
           |  |  | 98 |         return $this->executeFetchAllObject($select, $prototype);
 | 
        
           |  |  | 99 |     }
 | 
        
           |  |  | 100 |   | 
        
           |  |  | 101 |   | 
        
           |  |  | 102 |     /**
 | 
        
           |  |  | 103 |      *
 | 
        
           |  |  | 104 |      * @return CompanyMicrolearningUserProgress[]
 | 
        
           |  |  | 105 |      */
 | 
        
           |  |  | 106 |     public function fetchAllCapsules()
 | 
        
           |  |  | 107 |     {
 | 
        
           |  |  | 108 |         $prototype = new CompanyMicrolearningUserProgress();
 | 
        
           |  |  | 109 |   | 
        
           |  |  | 110 |         $select = $this->sql->select(self::_TABLE);
 | 
        
           |  |  | 111 |         $select->where->equalTo('type', CompanyMicrolearningUserProgress::TYPE_CAPSULE);
 | 
        
           |  |  | 112 |   | 
        
           |  |  | 113 |         return $this->executeFetchAllObject($select, $prototype);
 | 
        
           |  |  | 114 |     }
 | 
        
           |  |  | 115 |   | 
        
           |  |  | 116 |   | 
        
           |  |  | 117 |     /**
 | 
        
           |  |  | 118 |      *
 | 
        
           |  |  | 119 |      * @param int $user_id
 | 
        
           |  |  | 120 |      * @param int $slide_id
 | 
        
           |  |  | 121 |      * @return CompanyMicrolearningUserProgress
 | 
        
           |  |  | 122 |      */
 | 
        
           |  |  | 123 |     public function fetchOneByUserIdAndSlideId($user_id, $slide_id)
 | 
        
           |  |  | 124 |     {
 | 
        
           |  |  | 125 |         $prototype = new CompanyMicrolearningUserProgress();
 | 
        
           |  |  | 126 |   | 
        
           |  |  | 127 |         $select = $this->sql->select(self::_TABLE);
 | 
        
           |  |  | 128 |         $select->where->equalTo('user_id', $user_id);
 | 
        
           |  |  | 129 |         $select->where->equalTo('slide_id', $slide_id);
 | 
        
           |  |  | 130 |         $select->where->equalTo('type', CompanyMicrolearningUserProgress::TYPE_SLIDE);
 | 
        
           |  |  | 131 |   | 
        
           |  |  | 132 |         $select->limit(1);
 | 
        
           |  |  | 133 |   | 
        
           |  |  | 134 |         return $this->executeFetchOneObject($select, $prototype);
 | 
        
           |  |  | 135 |     }
 | 
        
           |  |  | 136 |   | 
        
           |  |  | 137 |     /**
 | 
        
           |  |  | 138 |      *
 | 
        
           |  |  | 139 |      * @param int $user_id
 | 
        
           |  |  | 140 |      * @param int $capsule_id
 | 
        
           |  |  | 141 |      * @return CompanyMicrolearningUserProgress
 | 
        
           |  |  | 142 |      */
 | 
        
           |  |  | 143 |     public function fetchOneByUseridAndCapsuleId($user_id, $capsule_id)
 | 
        
           |  |  | 144 |     {
 | 
        
           |  |  | 145 |         $prototype = new CompanyMicrolearningUserProgress();
 | 
        
           |  |  | 146 |   | 
        
           |  |  | 147 |         $select = $this->sql->select(self::_TABLE);
 | 
        
           |  |  | 148 |         $select->where->equalTo('user_id', $user_id);
 | 
        
           |  |  | 149 |         $select->where->equalTo('capsule_id', $capsule_id);
 | 
        
           |  |  | 150 |         $select->where->equalTo('type', CompanyMicrolearningUserProgress::TYPE_CAPSULE);
 | 
        
           |  |  | 151 |         $select->limit(1);
 | 
        
           |  |  | 152 |   | 
        
           |  |  | 153 |         return $this->executeFetchOneObject($select, $prototype);
 | 
        
           |  |  | 154 |     }
 | 
        
           |  |  | 155 |   | 
        
           |  |  | 156 |     /**
 | 
        
           |  |  | 157 |      *
 | 
        
           |  |  | 158 |      * @param int $user_id
 | 
        
           |  |  | 159 |      * @param int $topic_id
 | 
        
           |  |  | 160 |      * @return CompanyMicrolearningUserProgress
 | 
        
           |  |  | 161 |      */
 | 
        
           |  |  | 162 |     public function fetchOneByUserIdAndTopicId($user_id, $topic_id)
 | 
        
           |  |  | 163 |     {
 | 
        
           |  |  | 164 |         $prototype = new CompanyMicrolearningUserProgress();
 | 
        
           |  |  | 165 |   | 
        
           |  |  | 166 |         $select = $this->sql->select(self::_TABLE);
 | 
        
           |  |  | 167 |         $select->where->equalTo('user_id', $user_id);
 | 
        
           |  |  | 168 |         $select->where->equalTo('topic_id', $topic_id);
 | 
        
           |  |  | 169 |         $select->where->equalTo('type', CompanyMicrolearningUserProgress::TYPE_TOPIC);
 | 
        
           |  |  | 170 |         $select->limit(1);
 | 
        
           |  |  | 171 |   | 
        
           |  |  | 172 |         return $this->executeFetchOneObject($select, $prototype);
 | 
        
           |  |  | 173 |     }
 | 
        
           |  |  | 174 |   | 
        
           |  |  | 175 |   | 
        
           |  |  | 176 |     /**
 | 
        
           |  |  | 177 |      *
 | 
        
           |  |  | 178 |      * @param int $user_id
 | 
        
           |  |  | 179 |      * @param int $capsule_id
 | 
        
           |  |  | 180 |      * @return int
 | 
        
           |  |  | 181 |      */
 | 
        
           |  |  | 182 |     public function fetchCountAllSlideViewedByUserIdAndCapsuleId($user_id, $capsule_id)
 | 
        
           |  |  | 183 |     {
 | 
        
           |  |  | 184 |   | 
        
           |  |  | 185 |         $select = $this->sql->select(self::_TABLE);
 | 
        
           |  |  | 186 |         $select->columns(['total' => new Expression('COUNT(*)')]);
 | 
        
           |  |  | 187 |         $select->where->equalTo('user_id', $user_id);
 | 
        
           |  |  | 188 |         $select->where->equalTo('capsule_id', $capsule_id);
 | 
        
           |  |  | 189 |         $select->where->equalTo('type', CompanyMicrolearningUserProgress::TYPE_SLIDE);
 | 
        
           |  |  | 190 |         $select->limit(1);
 | 
        
           |  |  | 191 |   | 
        
           |  |  | 192 |         $record = $this->executeFetchOneArray($select);
 | 
        
           |  |  | 193 |         return $record['total'];
 | 
        
           |  |  | 194 |     }
 | 
        
           |  |  | 195 |   | 
        
           |  |  | 196 |     /**
 | 
        
           |  |  | 197 |      *
 | 
        
           |  |  | 198 |      * @param int $user_id
 | 
        
           |  |  | 199 |      * @param int $topic_id
 | 
        
           |  |  | 200 |      * @param int $capsule_id
 | 
        
           |  |  | 201 |      * @return int
 | 
        
           |  |  | 202 |      */
 | 
        
           |  |  | 203 |     public function fetchCountAllSlideCompletedByUserIdAndTopicIdAndCapsuleId($user_id, $topic_id, $capsule_id)
 | 
        
           |  |  | 204 |     {
 | 
        
           |  |  | 205 |   | 
        
           |  |  | 206 |         $select = $this->sql->select(self::_TABLE);
 | 
        
           |  |  | 207 |         $select->columns(['total' => new Expression('COUNT(*)')]);
 | 
        
           |  |  | 208 |         $select->where->equalTo('user_id', $user_id);
 | 
        
           |  |  | 209 |         $select->where->equalTo('topic_id', $topic_id);
 | 
        
           |  |  | 210 |         $select->where->equalTo('capsule_id', $capsule_id);
 | 
        
           |  |  | 211 |         $select->where->equalTo('type', CompanyMicrolearningUserProgress::TYPE_SLIDE);
 | 
        
           |  |  | 212 |         $select->where->equalTo('completed', 1);
 | 
        
           |  |  | 213 |         $select->limit(1);
 | 
        
           |  |  | 214 |   | 
        
           |  |  | 215 |         $record = $this->executeFetchOneArray($select);
 | 
        
           |  |  | 216 |         return $record['total'];
 | 
        
           |  |  | 217 |     }
 | 
        
           |  |  | 218 |   | 
        
           |  |  | 219 |   | 
        
           |  |  | 220 |     /**
 | 
        
           |  |  | 221 |      *
 | 
        
           |  |  | 222 |      * @param int $user_id
 | 
        
           |  |  | 223 |      * @param int $capsule_id
 | 
        
           |  |  | 224 |      * @return int
 | 
        
           |  |  | 225 |      */
 | 
        
           |  |  | 226 |     public function fetchCountAllSlideCompletedByUserIdAndCapsuleId($user_id, $capsule_id)
 | 
        
           |  |  | 227 |     {
 | 
        
           |  |  | 228 |   | 
        
           |  |  | 229 |         $select = $this->sql->select(self::_TABLE);
 | 
        
           |  |  | 230 |         $select->columns(['total' => new Expression('COUNT(*)')]);
 | 
        
           |  |  | 231 |         $select->where->equalTo('user_id', $user_id);
 | 
        
           |  |  | 232 |         $select->where->equalTo('capsule_id', $capsule_id);
 | 
        
           |  |  | 233 |         $select->where->equalTo('type', CompanyMicrolearningUserProgress::TYPE_SLIDE);
 | 
        
           |  |  | 234 |         $select->where->equalTo('completed', 1);
 | 
        
           |  |  | 235 |         $select->limit(1);
 | 
        
           |  |  | 236 |   | 
        
           |  |  | 237 |         //echo $select->getSqlString($this->adapter->platform);
 | 
        
           |  |  | 238 |   | 
        
           |  |  | 239 |         $record = $this->executeFetchOneArray($select);
 | 
        
           |  |  | 240 |         return $record['total'];
 | 
        
           |  |  | 241 |     }
 | 
        
           |  |  | 242 |   | 
        
           |  |  | 243 |     /**
 | 
        
           |  |  | 244 |      *
 | 
        
           |  |  | 245 |      * @param int $user_id
 | 
        
           |  |  | 246 |      * @param int $capsule_id
 | 
        
           |  |  | 247 |      * @return int
 | 
        
           |  |  | 248 |      */
 | 
        
           |  |  | 249 |     public function fetchCountAllSlideCompletedByUserIdAndTopicId($user_id, $topic_id)
 | 
        
           |  |  | 250 |     {
 | 
        
           |  |  | 251 |   | 
        
           |  |  | 252 |         $select = $this->sql->select(self::_TABLE);
 | 
        
           |  |  | 253 |         $select->columns(['total' => new Expression('COUNT(*)')]);
 | 
        
           |  |  | 254 |         $select->where->equalTo('user_id', $user_id);
 | 
        
           |  |  | 255 |         $select->where->equalTo('topic_id', $topic_id);
 | 
        
           |  |  | 256 |         $select->where->equalTo('type', CompanyMicrolearningUserProgress::TYPE_SLIDE);
 | 
        
           |  |  | 257 |         $select->where->equalTo('completed', 1);
 | 
        
           |  |  | 258 |         $select->limit(1);
 | 
        
           |  |  | 259 |   | 
        
           |  |  | 260 |         echo $select->getSqlString($this->adapter->platform) . PHP_EOL;
 | 
        
           |  |  | 261 |   | 
        
           |  |  | 262 |         $record = $this->executeFetchOneArray($select);
 | 
        
           |  |  | 263 |         return $record['total'];
 | 
        
           |  |  | 264 |     }
 | 
        
           |  |  | 265 |   | 
        
           |  |  | 266 |     /**
 | 
        
           |  |  | 267 |      *
 | 
        
           |  |  | 268 |      * @param int $company_id
 | 
        
           |  |  | 269 |      * @param int $user_id
 | 
        
           |  |  | 270 |      * @return int
 | 
        
           |  |  | 271 |      */
 | 
        
           |  |  | 272 |     public function fetchCountAllSlideCompletedByCompanyIdAndUserId($company_id, $user_id)
 | 
        
           |  |  | 273 |     {
 | 
        
           |  |  | 274 |   | 
        
           |  |  | 275 |         $select = $this->sql->select(self::_TABLE);
 | 
        
           |  |  | 276 |         $select->columns(['total' => new Expression('COUNT(*)')]);
 | 
        
           |  |  | 277 |         $select->where->equalTo('company_id', $company_id);
 | 
        
           |  |  | 278 |         $select->where->equalTo('user_id', $user_id);
 | 
        
           |  |  | 279 |         $select->where->equalTo('type', CompanyMicrolearningUserProgress::TYPE_SLIDE);
 | 
        
           |  |  | 280 |         $select->where->equalTo('completed', 1);
 | 
        
           |  |  | 281 |         $select->limit(1);
 | 
        
           |  |  | 282 |   | 
        
           |  |  | 283 |         $record = $this->executeFetchOneArray($select);
 | 
        
           |  |  | 284 |         return $record['total'];
 | 
        
           |  |  | 285 |     }
 | 
        
           |  |  | 286 |   | 
        
           |  |  | 287 |   | 
        
           |  |  | 288 |     /**
 | 
        
           |  |  | 289 |      *
 | 
        
           |  |  | 290 |      * @param int $user_id
 | 
        
           |  |  | 291 |      * @param int $topic_id
 | 
        
           |  |  | 292 |      * @return int
 | 
        
           |  |  | 293 |      */
 | 
        
           |  |  | 294 |     public function fetchCountAllSlideViewedByUserIdAndTopicId($user_id, $topic_id)
 | 
        
           |  |  | 295 |     {
 | 
        
           |  |  | 296 |   | 
        
           |  |  | 297 |         $select = $this->sql->select(self::_TABLE);
 | 
        
           |  |  | 298 |         $select->columns(['total' => new Expression('COUNT(*)')]);
 | 
        
           |  |  | 299 |         $select->where->equalTo('user_id', $user_id);
 | 
        
           |  |  | 300 |         $select->where->equalTo('topic_id', $topic_id);
 | 
        
           |  |  | 301 |         $select->where->equalTo('type', CompanyMicrolearningUserProgress::TYPE_SLIDE);
 | 
        
           |  |  | 302 |         $select->limit(1);
 | 
        
           |  |  | 303 |   | 
        
           |  |  | 304 |         $record = $this->executeFetchOneArray($select);
 | 
        
           |  |  | 305 |         return $record['total'];
 | 
        
           |  |  | 306 |     }
 | 
        
           |  |  | 307 |   | 
        
           |  |  | 308 |     /**
 | 
        
           |  |  | 309 |      *
 | 
        
           |  |  | 310 |      * @param CompanyMicrolearningUserProgress $userProgress
 | 
        
           |  |  | 311 |      * return boolean
 | 
        
           |  |  | 312 |      */
 | 
        
           |  |  | 313 |     public function insert($userProgress)
 | 
        
           |  |  | 314 |     {
 | 
        
           |  |  | 315 |         $hydrator = new ObjectPropertyHydrator();
 | 
        
           |  |  | 316 |         $values = $hydrator->extract($userProgress);
 | 
        
           |  |  | 317 |         $values = $this->removeEmpty($values);
 | 
        
           |  |  | 318 |   | 
        
           |  |  | 319 |         $insert = $this->sql->insert(self::_TABLE);
 | 
        
           |  |  | 320 |         $insert->values($values);
 | 
        
           |  |  | 321 |   | 
        
           |  |  | 322 |         //echo $insert->getSqlString($this->adapter->platform); exit;
 | 
        
           |  |  | 323 |   | 
        
           |  |  | 324 |         $result = $this->executeInsert($insert);
 | 
        
           |  |  | 325 |         if($result) {
 | 
        
           |  |  | 326 |             $userProgress->id = $this->lastInsertId;
 | 
        
           |  |  | 327 |         }
 | 
        
           |  |  | 328 |         return $result;
 | 
        
           |  |  | 329 |     }
 | 
        
           |  |  | 330 |   | 
        
           |  |  | 331 |   | 
        
           |  |  | 332 |     /**
 | 
        
           |  |  | 333 |      *
 | 
        
           |  |  | 334 |      * @param CompanyMicrolearningUserProgress $userProgress
 | 
        
           |  |  | 335 |      * return boolean
 | 
        
           |  |  | 336 |      */
 | 
        
           |  |  | 337 |     public function update($userProgress)
 | 
        
           |  |  | 338 |     {
 | 
        
           |  |  | 339 |         $hydrator = new ObjectPropertyHydrator();
 | 
        
           |  |  | 340 |         $values = $hydrator->extract($userProgress);
 | 
        
           |  |  | 341 |         $values = $this->removeEmpty($values);
 | 
        
           |  |  | 342 |   | 
        
           |  |  | 343 |   | 
        
           |  |  | 344 |         $update = $this->sql->update(self::_TABLE);
 | 
        
           |  |  | 345 |         $update->set($values);
 | 
        
           |  |  | 346 |         $update->where->equalTo('id', $userProgress->id);
 | 
        
           |  |  | 347 |   | 
        
           |  |  | 348 |         //echo $update->getSqlString($this->adapter->platform) . PHP_EOL;
 | 
        
           |  |  | 349 |   | 
        
           |  |  | 350 |         return $this->executeUpdate($update);
 | 
        
           |  |  | 351 |     }
 | 
        
           |  |  | 352 |   | 
        
           |  |  | 353 |   | 
        
           |  |  | 354 |     /**
 | 
        
           |  |  | 355 |      *
 | 
        
           |  |  | 356 |      * @param int $userId
 | 
        
           |  |  | 357 |      * @return int
 | 
        
           |  |  | 358 |      */
 | 
        
           |  |  | 359 |     public function getCountCapsulesCompletedByUserId($userId)
 | 
        
           |  |  | 360 |     {
 | 
        
           |  |  | 361 |         $select = $this->sql->select(self::_TABLE);
 | 
        
           |  |  | 362 |         $select->columns(['total' => new Expression('COUNT(*)')] );
 | 
        
           |  |  | 363 |         $select->where->equalTo('type', CompanyMicrolearningUserProgress::TYPE_CAPSULE);
 | 
        
           |  |  | 364 |         $select->where->equalTo('user_id', $userId);
 | 
        
           |  |  | 365 |         $select->where->equalTo('completed', 1);
 | 
        
           |  |  | 366 |   | 
        
           |  |  | 367 |         $record = $this->executeFetchOneArray($select);
 | 
        
           |  |  | 368 |   | 
        
           |  |  | 369 |         return $record['total'];
 | 
        
           |  |  | 370 |   | 
        
           |  |  | 371 |     }
 | 
        
           |  |  | 372 |   | 
        
           |  |  | 373 |   | 
        
           |  |  | 374 |   | 
        
           |  |  | 375 | }
 |