| 1 | package com.renomad.minum.database; | |
| 2 | ||
| 3 | import com.renomad.minum.logging.ILogger; | |
| 4 | import com.renomad.minum.queue.AbstractActionQueue; | |
| 5 | import com.renomad.minum.queue.ActionQueue; | |
| 6 | import com.renomad.minum.state.Context; | |
| 7 | import com.renomad.minum.utils.FileUtils; | |
| 8 | import com.renomad.minum.utils.IFileUtils; | |
| 9 | ||
| 10 | import java.io.IOException; | |
| 11 | import java.nio.file.Path; | |
| 12 | import java.text.ParseException; | |
| 13 | import java.util.Collection; | |
| 14 | import java.util.Collections; | |
| 15 | import java.util.concurrent.atomic.AtomicLong; | |
| 16 | import java.util.concurrent.locks.ReentrantLock; | |
| 17 | import java.util.function.Function; | |
| 18 | ||
| 19 | import static com.renomad.minum.utils.Invariants.mustBeFalse; | |
| 20 | import static com.renomad.minum.utils.Invariants.mustBeTrue; | |
| 21 | ||
| 22 | /** | |
| 23 | * a memory-based disk-persisted database class. | |
| 24 | * @param <T> the type of data we'll be persisting (must extend from {@link DbData} | |
| 25 | */ | |
| 26 | public class Db<T extends DbData<?>> extends AbstractDb<T> { | |
| 27 | ||
| 28 | /** | |
| 29 | * The suffix we will apply to each database file | |
| 30 | */ | |
| 31 | static final String DATABASE_FILE_SUFFIX = ".ddps"; | |
| 32 | private final AbstractActionQueue actionQueue; | |
| 33 | ||
| 34 | /** | |
| 35 | * A lock around loading the data - so we can't find ourselves | |
| 36 | * in a situation where multiple threads are loading the data. | |
| 37 | */ | |
| 38 | private final ReentrantLock loadDataLock = new ReentrantLock(); | |
| 39 | ||
| 40 | /** | |
| 41 | * A lock around any changes to the data of the database, such as | |
| 42 | * creating, updating, or deleting, so that we don't encounter | |
| 43 | * scenarios where our in-memory and on-disk data goes out of sync. | |
| 44 | */ | |
| 45 | private final ReentrantLock dataChangeLock = new ReentrantLock(); | |
| 46 | ||
| 47 | /** | |
| 48 | * The full path to the file that contains the most-recent index | |
| 49 | * for this data. As we add new files, each gets its own index | |
| 50 | * value. When we start the program, we use this to determine | |
| 51 | * where to start counting for new indexes. | |
| 52 | */ | |
| 53 | private final Path fullPathForIndexFile; | |
| 54 | ||
| 55 | volatile boolean hasLoadedData; | |
| 56 | ||
| 57 | /** | |
| 58 | * Constructs an in-memory disk-persisted database. | |
| 59 | * Loading of data from disk happens at the first invocation of any command | |
| 60 | * changing or requesting data, such as {@link #write(DbData)}, {@link #delete(DbData)}, | |
| 61 | * or {@link #values()}. See the private method loadData() for details. | |
| 62 | * @param dbDirectory this uniquely names your database, and also sets the directory | |
| 63 | * name for this data. The expected use case is to name this after | |
| 64 | * the data in question. For example, "users", or "accounts". | |
| 65 | * @param context used to provide important state data to several components | |
| 66 | * @param instance an instance of the {@link DbData} object relevant for use in this database. Note | |
| 67 | * that each database (that is, each instance of this class), focuses on just one | |
| 68 | * data, which must be an implementation of {@link DbData}. | |
| 69 | */ | |
| 70 | public Db(Path dbDirectory, Context context, T instance) { | |
| 71 | this(dbDirectory, context, instance, new FileUtils(context.getLogger(), context.getConstants())); | |
| 72 | } | |
| 73 | ||
| 74 | Db(Path dbDirectory, Context context, T instance, IFileUtils fileUtils) { | |
| 75 | super(dbDirectory, context, instance, fileUtils); | |
| 76 | this.hasLoadedData = false; | |
| 77 | this.fullPathForIndexFile = dbDirectory.resolve("index" + DATABASE_FILE_SUFFIX); | |
| 78 | this.actionQueue = new ActionQueue("DatabaseWriter " + dbDirectory, context).initialize(); | |
| 79 | ||
| 80 |
1
1. <init> : negated conditional → KILLED |
if (fileUtils.exists(fullPathForIndexFile)) { |
| 81 | try { | |
| 82 | long indexValue; | |
| 83 | String indexValueString = fileUtils.readString(fullPathForIndexFile); | |
| 84 | indexValue = Long.parseLong(indexValueString); | |
| 85 | this.index = new AtomicLong(indexValue); | |
| 86 | } catch (Exception ex) { | |
| 87 | throw new DbException("Error in Db constructor", ex); | |
| 88 | } | |
| 89 | ||
| 90 | } else { | |
| 91 | this.index = new AtomicLong(1); | |
| 92 | } | |
| 93 | ||
| 94 |
2
1. lambda$new$0 : removed call to com/renomad/minum/utils/IFileUtils::makeDirectory → TIMED_OUT 2. <init> : removed call to com/renomad/minum/queue/AbstractActionQueue::enqueue → KILLED |
actionQueue.enqueue("create directory" + dbDirectory, () -> fileUtils.makeDirectory(dbDirectory)); |
| 95 | } | |
| 96 | ||
| 97 | /** | |
| 98 | * Write data to the database. Use an index of 0 to store new data, and a positive | |
| 99 | * non-zero value to update data. | |
| 100 | * <p><em> | |
| 101 | * Example of adding new data to the database: | |
| 102 | * </em></p> | |
| 103 | * {@snippet : | |
| 104 | * final var newSalt = StringUtils.generateSecureRandomString(10); | |
| 105 | * final var hashedPassword = CryptoUtils.createPasswordHash(newPassword, newSalt); | |
| 106 | * final var newUser = new User(0L, newUsername, hashedPassword, newSalt); | |
| 107 | * userDb.write(newUser); | |
| 108 | * } | |
| 109 | * <p><em> | |
| 110 | * Example of updating data: | |
| 111 | * </em></p> | |
| 112 | * {@snippet : | |
| 113 | * // write the updated salted password to the database | |
| 114 | * final var updatedUser = new User( | |
| 115 | * user().getIndex(), | |
| 116 | * user().getUsername(), | |
| 117 | * hashedPassword, | |
| 118 | * newSalt); | |
| 119 | * userDb.write(updatedUser); | |
| 120 | * } | |
| 121 | * | |
| 122 | * @param newData the data we are writing | |
| 123 | * @return the data with its new index assigned. | |
| 124 | */ | |
| 125 | @Override | |
| 126 | public T write(T newData) { | |
| 127 |
2
1. write : negated conditional → KILLED 2. write : changed conditional boundary → KILLED |
if (newData.getIndex() < 0) throw new DbException("Negative indexes are disallowed"); |
| 128 | // load data if needed | |
| 129 |
1
1. write : negated conditional → TIMED_OUT |
if (!hasLoadedData) loadData(); |
| 130 | ||
| 131 |
1
1. write : removed call to java/util/concurrent/locks/ReentrantLock::lock → KILLED |
dataChangeLock.lock(); |
| 132 | try { | |
| 133 | boolean newElementCreated = processDataIndex(newData); | |
| 134 |
1
1. write : removed call to com/renomad/minum/database/Db::writeToMemory → KILLED |
writeToMemory(newData, newElementCreated); |
| 135 | ||
| 136 | // *** now handle the disk portion *** | |
| 137 |
1
1. write : removed call to com/renomad/minum/queue/AbstractActionQueue::enqueue → TIMED_OUT |
actionQueue.enqueue("persist data to disk", |
| 138 |
1
1. lambda$write$1 : removed call to com/renomad/minum/database/Db::writeToDisk → KILLED |
() -> writeToDisk(newData, dbDirectory, fileUtils, emptyInstance, |
| 139 | newElementCreated, fullPathForIndexFile, logger)); | |
| 140 | ||
| 141 | // returning the data at this point is the most convenient | |
| 142 | // way users will have access to the new index of the data. | |
| 143 |
1
1. write : replaced return value with null for com/renomad/minum/database/Db::write → TIMED_OUT |
return newData; |
| 144 | } finally { | |
| 145 |
1
1. write : removed call to java/util/concurrent/locks/ReentrantLock::unlock → TIMED_OUT |
dataChangeLock.unlock(); |
| 146 | } | |
| 147 | } | |
| 148 | ||
| 149 | static <T extends DbData<?>> void writeToDisk(T newData, Path dbDirectory, IFileUtils fileUtils, T emptyInstance, | |
| 150 | boolean newItemCreated, Path fullPathForIndexFile, ILogger logger) { | |
| 151 | final Path fullPath = dbDirectory.resolve(newData.getIndex() + DATABASE_FILE_SUFFIX); | |
| 152 | logger.logTrace(() -> String.format("writing data to %s", fullPath)); | |
| 153 | String serializedData = newData.serialize(); | |
| 154 | mustBeFalse(serializedData == null || serializedData.isBlank(), | |
| 155 | "the serialized form of data must not be blank. " + | |
| 156 | "Is the serialization code written properly? Our datatype: " + emptyInstance); | |
| 157 | try { | |
| 158 |
1
1. writeToDisk : removed call to com/renomad/minum/utils/IFileUtils::writeString → TIMED_OUT |
fileUtils.writeString(fullPath, serializedData); |
| 159 | ||
| 160 |
1
1. writeToDisk : negated conditional → TIMED_OUT |
if (newItemCreated) { |
| 161 |
2
1. writeToDisk : removed call to com/renomad/minum/utils/IFileUtils::writeString → TIMED_OUT 2. writeToDisk : Replaced long addition with subtraction → KILLED |
fileUtils.writeString(fullPathForIndexFile, String.valueOf(newData.getIndex() + 1)); |
| 162 | } | |
| 163 | } catch (IOException e) { | |
| 164 | throw new DbException("Error in Db.writeToDisk", e); | |
| 165 | } | |
| 166 | } | |
| 167 | ||
| 168 | /** | |
| 169 | * Delete data | |
| 170 | * <p><em>Example:</em></p> | |
| 171 | * {@snippet : | |
| 172 | * userDb.delete(user); | |
| 173 | * } | |
| 174 | * @param dataToDelete the data we are serializing and writing | |
| 175 | */ | |
| 176 | @Override | |
| 177 | public void delete(T dataToDelete) { | |
| 178 | // load data if needed | |
| 179 |
1
1. delete : negated conditional → KILLED |
if (!hasLoadedData) loadData(); |
| 180 | ||
| 181 |
1
1. delete : removed call to java/util/concurrent/locks/ReentrantLock::lock → KILLED |
dataChangeLock.lock(); |
| 182 | try { | |
| 183 | // deal with the in-memory portion | |
| 184 |
1
1. delete : removed call to com/renomad/minum/database/Db::deleteFromMemory → KILLED |
deleteFromMemory(dataToDelete); |
| 185 | ||
| 186 | // get the current index | |
| 187 | boolean shouldResetIndexOnDisk = values().isEmpty(); | |
| 188 | ||
| 189 |
1
1. delete : removed call to com/renomad/minum/queue/AbstractActionQueue::enqueue → TIMED_OUT |
actionQueue.enqueue("delete data from disk", |
| 190 |
1
1. lambda$delete$3 : removed call to com/renomad/minum/database/Db::deleteFromDisk → KILLED |
() -> deleteFromDisk(dataToDelete, dbDirectory, fileUtils, |
| 191 | shouldResetIndexOnDisk, fullPathForIndexFile, logger)); | |
| 192 | } finally { | |
| 193 |
1
1. delete : removed call to java/util/concurrent/locks/ReentrantLock::unlock → KILLED |
dataChangeLock.unlock(); |
| 194 | } | |
| 195 | } | |
| 196 | ||
| 197 | static <T extends DbData<?>> void deleteFromDisk(T dataToDelete, Path dbDirectory, IFileUtils fileUtils, | |
| 198 | boolean shouldResetIndexOnDisk, Path fullPathForIndexFile, ILogger logger) { | |
| 199 | final Path fullPath = dbDirectory.resolve(dataToDelete.getIndex() + DATABASE_FILE_SUFFIX); | |
| 200 | logger.logTrace(() -> String.format("deleting data at %s", fullPath)); | |
| 201 | try { | |
| 202 |
1
1. deleteFromDisk : negated conditional → KILLED |
if (!fileUtils.exists(fullPath)) { |
| 203 | throw new DbException(fullPath + " must already exist before deletion"); | |
| 204 | } | |
| 205 |
1
1. deleteFromDisk : removed call to com/renomad/minum/utils/IFileUtils::delete → KILLED |
fileUtils.delete(fullPath); |
| 206 | ||
| 207 |
1
1. deleteFromDisk : negated conditional → KILLED |
if (shouldResetIndexOnDisk) { |
| 208 |
1
1. deleteFromDisk : removed call to com/renomad/minum/utils/IFileUtils::writeString → KILLED |
fileUtils.writeString(fullPathForIndexFile, "1"); |
| 209 | } | |
| 210 | } catch (Exception ex) { | |
| 211 | throw new DbException("Error in Db.deleteFromDisk", ex); | |
| 212 | } | |
| 213 | } | |
| 214 | ||
| 215 | /** | |
| 216 | * Grabs all the data from disk and returns it as a list. This | |
| 217 | * method is run by various programs when the system first loads. | |
| 218 | */ | |
| 219 | private void loadDataFromDisk() throws IOException, ParseException { | |
| 220 | logger.logDebug(() -> "Loading data from disk. Db classic. Directory: " + dbDirectory); | |
| 221 | ||
| 222 | // check if the folder has content for a DbEngine2 database, meaning we | |
| 223 | // need to convert it back to the classic DB file structure. | |
| 224 |
1
1. loadDataFromDisk : negated conditional → TIMED_OUT |
if (fileUtils.exists(dbDirectory.resolve("currentAppendLog"))) { |
| 225 |
1
1. loadDataFromDisk : removed call to com/renomad/minum/database/DbFileConverter::convertFolderStructureToDbClassic → KILLED |
new DbFileConverter(context, dbDirectory, fileUtils).convertFolderStructureToDbClassic(); |
| 226 | } | |
| 227 | ||
| 228 |
1
1. loadDataFromDisk : negated conditional → TIMED_OUT |
if (! fileUtils.exists(dbDirectory)) { |
| 229 | logger.logDebug(() -> dbDirectory + " directory missing, adding nothing to the data list"); | |
| 230 | return; | |
| 231 | } | |
| 232 | ||
| 233 |
1
1. loadDataFromDisk : removed call to com/renomad/minum/database/Db::walkAndLoad → KILLED |
walkAndLoad(dbDirectory); |
| 234 | } | |
| 235 | ||
| 236 | void walkAndLoad(Path dbDirectory) throws IOException { | |
| 237 | // walk through all the files in this directory, collecting | |
| 238 | // all regular files (non-subdirectories) except for index.ddps | |
| 239 | try (final var pathStream = fileUtils.walk(dbDirectory)) { | |
| 240 | final var listOfFiles = pathStream.filter(path -> | |
| 241 |
2
1. lambda$walkAndLoad$7 : replaced boolean return with true for com/renomad/minum/database/Db::lambda$walkAndLoad$7 → TIMED_OUT 2. lambda$walkAndLoad$7 : negated conditional → KILLED |
fileUtils.isRegularFile(path) && |
| 242 |
1
1. lambda$walkAndLoad$7 : negated conditional → KILLED |
!path.getFileName().toString().startsWith("index") |
| 243 | ).toList(); | |
| 244 | for (Path p : listOfFiles) { | |
| 245 |
1
1. walkAndLoad : removed call to com/renomad/minum/database/Db::readAndDeserialize → KILLED |
readAndDeserialize(p); |
| 246 | } | |
| 247 | } | |
| 248 | } | |
| 249 | ||
| 250 | /** | |
| 251 | * Carry out the process of reading data files into our in-memory structure | |
| 252 | * @param p the path of a particular file | |
| 253 | */ | |
| 254 | void readAndDeserialize(Path p) { | |
| 255 | Path fileName = p.getFileName(); | |
| 256 |
1
1. readAndDeserialize : negated conditional → KILLED |
if (fileName == null) throw new DbException("At readAndDeserialize, path " + p + " returned a null filename"); |
| 257 | String filename = fileName.toString(); | |
| 258 | int startOfSuffixIndex = filename.indexOf('.'); | |
| 259 |
1
1. readAndDeserialize : negated conditional → KILLED |
if(startOfSuffixIndex == -1) { |
| 260 | throw new DbException("the files must have a ddps suffix, like 1.ddps. filename: " + filename); | |
| 261 | } | |
| 262 | String fileContents = null; | |
| 263 | try { | |
| 264 | fileContents = fileUtils.readString(p); | |
| 265 | } catch (IOException e) { | |
| 266 | throw new DbException("Error at Db.readAndDeserialize", e); | |
| 267 | } | |
| 268 |
1
1. readAndDeserialize : negated conditional → KILLED |
if (fileContents.isBlank()) { |
| 269 | logger.logDebug( () -> fileName + " file exists but empty, skipping"); | |
| 270 | } else { | |
| 271 | try { | |
| 272 | @SuppressWarnings("unchecked") | |
| 273 | T deserializedData = (T) emptyInstance.deserialize(fileContents); | |
| 274 | mustBeTrue(deserializedData != null, "deserialization of " + emptyInstance + | |
| 275 | " resulted in a null value. Was the serialization method implemented properly?"); | |
| 276 | int fileNameIdentifier = Integer.parseInt(filename.substring(0, startOfSuffixIndex)); | |
| 277 | mustBeTrue(deserializedData.getIndex() == fileNameIdentifier, | |
| 278 | "The filename must correspond to the data's index. e.g. 1.ddps must have an id of 1"); | |
| 279 | ||
| 280 | // put the data into the in-memory data structure | |
| 281 | data.put(deserializedData.getIndex(), deserializedData); | |
| 282 |
1
1. readAndDeserialize : removed call to com/renomad/minum/database/Db::addToIndexes → TIMED_OUT |
addToIndexes(deserializedData); |
| 283 | ||
| 284 | } catch (Exception e) { | |
| 285 | throw new DbException("Failed to deserialize "+ p +" with data (\""+fileContents+"\"). Caused by: " + e); | |
| 286 | } | |
| 287 | } | |
| 288 | } | |
| 289 | ||
| 290 | @Override | |
| 291 | public Collection<T> values() { | |
| 292 | // load data if needed | |
| 293 |
1
1. values : negated conditional → KILLED |
if (!hasLoadedData) loadData(); |
| 294 | ||
| 295 |
1
1. values : replaced return value with Collections.emptyList for com/renomad/minum/database/Db::values → TIMED_OUT |
return Collections.unmodifiableCollection(data.values()); |
| 296 | } | |
| 297 | ||
| 298 | /** | |
| 299 | * This is what loads the data from disk the | |
| 300 | * first time someone needs it. Because it is | |
| 301 | * locked, only one thread can enter at | |
| 302 | * a time. The first one in will load the data, | |
| 303 | * and the second will encounter a branch which skips loading. | |
| 304 | */ | |
| 305 | @Override | |
| 306 | public AbstractDb<T> loadData() { | |
| 307 |
1
1. loadData : removed call to java/util/concurrent/locks/ReentrantLock::lock → KILLED |
loadDataLock.lock(); // block threads here if multiple are trying to get in - only one gets in at a time |
| 308 | try { | |
| 309 |
1
1. loadData : negated conditional → KILLED |
if (!hasLoadedData) { |
| 310 |
1
1. loadData : removed call to com/renomad/minum/database/Db::loadDataFromDisk → KILLED |
loadDataFromDisk(); |
| 311 | } | |
| 312 | hasLoadedData = true; | |
| 313 |
1
1. loadData : replaced return value with null for com/renomad/minum/database/Db::loadData → TIMED_OUT |
return this; |
| 314 | } catch (Exception ex) { | |
| 315 | throw new DbException("Failed to load data from disk.", ex); | |
| 316 | } finally { | |
| 317 |
1
1. loadData : removed call to java/util/concurrent/locks/ReentrantLock::unlock → TIMED_OUT |
loadDataLock.unlock(); |
| 318 | } | |
| 319 | } | |
| 320 | ||
| 321 | /** | |
| 322 | * Register an index in the database for higher performance data access. | |
| 323 | * <p> | |
| 324 | * This command should be run immediately after database declaration, | |
| 325 | * or more specifically, before any data is loaded from disk. Otherwise, | |
| 326 | * it would be possible to skip indexing that data. | |
| 327 | * </p> | |
| 328 | * <br> | |
| 329 | * Example: | |
| 330 | * {@snippet : | |
| 331 | * final var myDatabase = context.getDb("photos", Photograph.EMPTY); | |
| 332 | * myDatabase.registerIndex("url", photo -> photo.getUrl()); | |
| 333 | * } | |
| 334 | * @param indexName a string used to distinguish this index. This string will be used again | |
| 335 | * when requesting data in a method like {@link #getIndexedData} or {@link #findExactlyOne} | |
| 336 | * @param keyObtainingFunction a function which obtains data from the data in this database, used | |
| 337 | * to partition the data into groups (potentially up to a 1-to-1 correspondence | |
| 338 | * between id and object) | |
| 339 | * @return the database instance if the registration succeeded | |
| 340 | * @throws DbException if the parameters are not entered properly, if the index has already | |
| 341 | * been registered, or if the data has already been loaded. It is necessary that | |
| 342 | * this is run immediately after declaring the database. To explain further: the data is not | |
| 343 | * actually loaded until the first time it is needed, such as running a write or delete, or | |
| 344 | * if the {@link #loadDataFromDisk()} method is run. Creating an index map for the data that | |
| 345 | * is read from disk only occurs once, at data load time. Thus, it is crucial that the | |
| 346 | * registerIndex command is run before any data is loaded. | |
| 347 | */ | |
| 348 | @Override | |
| 349 | public AbstractDb<T> registerIndex(String indexName, Function<T, String> keyObtainingFunction) { | |
| 350 |
1
1. registerIndex : negated conditional → KILLED |
if (hasLoadedData) { |
| 351 | throw new DbException("This method must be run before the database loads data from disk. Typically, " + | |
| 352 | "it should be run immediately after the database is created. See this method's documentation"); | |
| 353 | } | |
| 354 |
1
1. registerIndex : replaced return value with null for com/renomad/minum/database/Db::registerIndex → TIMED_OUT |
return super.registerIndex(indexName, keyObtainingFunction); |
| 355 | } | |
| 356 | ||
| 357 | /** | |
| 358 | * Given the name of a registered index (see {@link #registerIndex(String, Function)}), | |
| 359 | * use the key to find the collection of data that matches it. | |
| 360 | * @param indexName the name of an index | |
| 361 | * @param key a string value that matches a partition calculated from the partition | |
| 362 | * function provided to {@link #registerIndex(String, Function)} | |
| 363 | * @return a collection of data, an empty collection if nothing found | |
| 364 | */ | |
| 365 | @Override | |
| 366 | public Collection<T> getIndexedData(String indexName, String key) { | |
| 367 | // load data if needed | |
| 368 |
1
1. getIndexedData : negated conditional → TIMED_OUT |
if (!hasLoadedData) loadData(); |
| 369 |
1
1. getIndexedData : replaced return value with Collections.emptyList for com/renomad/minum/database/Db::getIndexedData → KILLED |
return super.getIndexedData(indexName, key); |
| 370 | } | |
| 371 | ||
| 372 | /** | |
| 373 | * This function will stop the minum.database persistence cleanly. | |
| 374 | * <p> | |
| 375 | * In order to do this, we need to wait for our threads | |
| 376 | * to finish their work. In particular, we | |
| 377 | * have offloaded our file writes to [actionQueue], which | |
| 378 | * has an internal thread for serializing all actions | |
| 379 | * on our minum.database | |
| 380 | * </p> | |
| 381 | */ | |
| 382 | @Override | |
| 383 | public void stop() { | |
| 384 |
1
1. stop : removed call to com/renomad/minum/queue/AbstractActionQueue::stop → KILLED |
actionQueue.stop(); |
| 385 | } | |
| 386 | ||
| 387 | /** | |
| 388 | * Similar to {@link #stop()} but gives more control over how long | |
| 389 | * we'll wait before crashing it closed. See {@link ActionQueue#stop(int, int)} | |
| 390 | */ | |
| 391 | @Override | |
| 392 | public void stop(int count, int sleepTime) { | |
| 393 |
1
1. stop : removed call to com/renomad/minum/queue/AbstractActionQueue::stop → TIMED_OUT |
actionQueue.stop(count, sleepTime); |
| 394 | } | |
| 395 | ||
| 396 | } | |
Mutations | ||
| 80 |
1.1 |
|
| 94 |
1.1 2.2 |
|
| 127 |
1.1 2.2 |
|
| 129 |
1.1 |
|
| 131 |
1.1 |
|
| 134 |
1.1 |
|
| 137 |
1.1 |
|
| 138 |
1.1 |
|
| 143 |
1.1 |
|
| 145 |
1.1 |
|
| 158 |
1.1 |
|
| 160 |
1.1 |
|
| 161 |
1.1 2.2 |
|
| 179 |
1.1 |
|
| 181 |
1.1 |
|
| 184 |
1.1 |
|
| 189 |
1.1 |
|
| 190 |
1.1 |
|
| 193 |
1.1 |
|
| 202 |
1.1 |
|
| 205 |
1.1 |
|
| 207 |
1.1 |
|
| 208 |
1.1 |
|
| 224 |
1.1 |
|
| 225 |
1.1 |
|
| 228 |
1.1 |
|
| 233 |
1.1 |
|
| 241 |
1.1 2.2 |
|
| 242 |
1.1 |
|
| 245 |
1.1 |
|
| 256 |
1.1 |
|
| 259 |
1.1 |
|
| 268 |
1.1 |
|
| 282 |
1.1 |
|
| 293 |
1.1 |
|
| 295 |
1.1 |
|
| 307 |
1.1 |
|
| 309 |
1.1 |
|
| 310 |
1.1 |
|
| 313 |
1.1 |
|
| 317 |
1.1 |
|
| 350 |
1.1 |
|
| 354 |
1.1 |
|
| 368 |
1.1 |
|
| 369 |
1.1 |
|
| 384 |
1.1 |
|
| 393 |
1.1 |