1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ChangeListManager">
<list default="true" id="ef739733-a82a-41f9-936d-0408cf0a0a81" name="Default Changelist" comment="">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/out/production/autocomplete/edu/caltech/cs2/libraries/ArrayList$ArrayListIterator.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/production/autocomplete/edu/caltech/cs2/libraries/ArrayList.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/production/autocomplete/edu/caltech/cs2/libraries/ICollection.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/production/autocomplete/edu/caltech/cs2/libraries/IDictionary$Entry.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/production/autocomplete/edu/caltech/cs2/libraries/IDictionary.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/production/autocomplete/edu/caltech/cs2/libraries/IList.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/production/autocomplete/edu/caltech/cs2/project04/Autocompleter.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/production/autocomplete/edu/caltech/cs2/project04/Main$Autocomplete.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/production/autocomplete/edu/caltech/cs2/project04/Main$LocalFile.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/production/autocomplete/edu/caltech/cs2/project04/Main.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/production/autocomplete/edu/caltech/cs2/project04/Trie.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/production/autocomplete/edu/caltech/cs2/project04/TrieNode.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/production/project04-autocomplete/edu/caltech/cs2/datastructures/CircularArrayFixedSizeQueue$CircularArrayQueueIterator.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/production/project04-autocomplete/edu/caltech/cs2/datastructures/CircularArrayFixedSizeQueue.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/production/project04-autocomplete/edu/caltech/cs2/datastructures/TrieMap.class" beforeDir="false" afterPath="$PROJECT_DIR$/out/production/project04-autocomplete/edu/caltech/cs2/datastructures/TrieMap.class" afterDir="false" />
<change beforePath="$PROJECT_DIR$/out/production/project04-autocomplete/edu/caltech/cs2/interfaces/IFixedSizeQueue.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/production/project04-autocomplete/edu/caltech/cs2/interfaces/ITrieMap$TrieNode.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/production/project04-autocomplete/edu/caltech/cs2/interfaces/ITrieMap.class" beforeDir="false" afterPath="$PROJECT_DIR$/out/production/project04-autocomplete/edu/caltech/cs2/interfaces/ITrieMap.class" afterDir="false" />
<change beforePath="$PROJECT_DIR$/out/production/project04-autocomplete/edu/caltech/cs2/project04/AbstractMovieAutoCompleter.class" beforeDir="false" afterPath="$PROJECT_DIR$/out/production/project04-autocomplete/edu/caltech/cs2/project04/AbstractMovieAutoCompleter.class" afterDir="false" />
<change beforePath="$PROJECT_DIR$/out/production/project04-autocomplete/edu/caltech/cs2/project04/HashMovieAutoCompleter.class" beforeDir="false" afterPath="$PROJECT_DIR$/out/production/project04-autocomplete/edu/caltech/cs2/project04/HashMovieAutoCompleter.class" afterDir="false" />
<change beforePath="$PROJECT_DIR$/out/production/project04-autocomplete/edu/caltech/cs2/project04/TrieMovieAutoCompleter.class" beforeDir="false" afterPath="$PROJECT_DIR$/out/production/project04-autocomplete/edu/caltech/cs2/project04/TrieMovieAutoCompleter.class" afterDir="false" />
<change beforePath="$PROJECT_DIR$/out/test/autocomplete/edu/caltech/cs2/helpers/CaptureSystemOutput$Extension.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/test/autocomplete/edu/caltech/cs2/helpers/CaptureSystemOutput$OutputCapture$CaptureOutputStream.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/test/autocomplete/edu/caltech/cs2/helpers/CaptureSystemOutput$OutputCapture.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/test/autocomplete/edu/caltech/cs2/helpers/CaptureSystemOutput.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/test/autocomplete/edu/caltech/cs2/helpers/FileSource.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/test/autocomplete/edu/caltech/cs2/helpers/FileSourceProvider.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/test/autocomplete/edu/caltech/cs2/helpers/ImageFileSource.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/test/autocomplete/edu/caltech/cs2/helpers/ImageFileSourceProvider.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/test/autocomplete/edu/caltech/cs2/helpers/Images.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/test/autocomplete/edu/caltech/cs2/helpers/Inspection$ConstructorCollector.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/test/autocomplete/edu/caltech/cs2/helpers/Inspection$MethodCollector.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/test/autocomplete/edu/caltech/cs2/helpers/Inspection.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/test/autocomplete/edu/caltech/cs2/helpers/Reflection.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/test/autocomplete/edu/caltech/cs2/project04/TrieNodeTest.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/test/autocomplete/edu/caltech/cs2/project04/TrieTest.class" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/out/test/project04-autocomplete/edu/caltech/cs2/project04/HashMapAutocompleterTest.class" beforeDir="false" afterPath="$PROJECT_DIR$/out/test/project04-autocomplete/edu/caltech/cs2/project04/HashMapAutocompleterTest.class" afterDir="false" />
<change beforePath="$PROJECT_DIR$/out/test/project04-autocomplete/edu/caltech/cs2/project04/TrieAutocompleterTest.class" beforeDir="false" afterPath="$PROJECT_DIR$/out/test/project04-autocomplete/edu/caltech/cs2/project04/TrieAutocompleterTest.class" afterDir="false" />
<change beforePath="$PROJECT_DIR$/tests/edu/caltech/cs2/datastructures/IDictionaryTests.java" beforeDir="false" afterPath="$PROJECT_DIR$/tests/edu/caltech/cs2/datastructures/IDictionaryTests.java" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
<option name="LAST_RESOLUTION" value="IGNORE" />
</component>
<component name="CheckStyle-IDEA-workspace">
<option name="configuration">
<map>
<entry key="last-active-plugin-version" value="5.23.0" />
</map>
</option>
</component>
<component name="FileTemplateManagerImpl">
<option name="RECENT_TEMPLATES">
<list>
<option value="JUnit5 Test Class" />
<option value="Interface" />
<option value="Class" />
</list>
</option>
</component>
<component name="Git.Settings">
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
<option name="UPDATE_TYPE" value="MERGE" />
</component>
<component name="JsBuildToolGruntFileManager" detection-done="true" sorting="DEFINITION_ORDER" />
<component name="JsBuildToolPackageJson" detection-done="true" sorting="DEFINITION_ORDER" />
<component name="JsGulpfileManager">
<detection-done>true</detection-done>
<sorting>DEFINITION_ORDER</sorting>
</component>
<component name="ProjectId" id="1Ux9720xsX4jTI9Qbj1lgL84yNw" />
<component name="ProjectLevelVcsManager" settingsEditedManually="true" />
<component name="ProjectViewState">
<option name="hideEmptyMiddlePackages" value="true" />
<option name="showExcludedFiles" value="true" />
<option name="showLibraryContents" value="true" />
</component>
<component name="PropertiesComponent">
<property name="Downloaded.Files.Path.Enabled" value="false" />
<property name="Repository.Attach.Annotations" value="false" />
<property name="Repository.Attach.JavaDocs" value="false" />
<property name="Repository.Attach.Sources" value="false" />
<property name="RunOnceActivity.ShowReadmeOnStart" value="true" />
<property name="SearchEverywhereHistoryKey" value="	FILE	jar:///Library/Java/JavaVirtualMachines/openjdk-11.jdk/Contents/Home/lib/src.zip!/jdk.httpserver/com/sun/net/httpserver/HttpExchange.java" />
<property name="WebServerToolWindowFactoryState" value="false" />
<property name="aspect.path.notification.shown" value="true" />
<property name="com.android.tools.idea.instantapp.provision.ProvisionBeforeRunTaskProvider.myTimeStamp" value="1548914405399" />
<property name="com.intellij.testIntegration.createTest.CreateTestDialog.defaultLibrary" value="JUnit5" />
<property name="com.intellij.testIntegration.createTest.CreateTestDialog.defaultLibrarySuperClass.JUnit5" value="" />
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
<property name="nodejs_interpreter_path.stuck_in_default_project" value="undefined stuck path" />
<property name="nodejs_npm_path_reset_for_default_project" value="true" />
<property name="project.structure.last.edited" value="Project" />
<property name="project.structure.proportion" value="0.15" />
<property name="project.structure.side.proportion" value="0.2" />
<property name="settings.editor.selected.configurable" value="preferences.sourceCode.Java" />
</component>
<component name="RecentsManager">
<key name="CreateTestDialog.RecentsKey">
<recent name="edu.caltech.cs2.project04" />
</key>
<key name="CreateClassDialog.RecentsKey">
<recent name="" />
</key>
<key name="MoveClassesOrPackagesDialog.RECENTS_KEY">
<recent name="edu.caltech.cs2.datastructures" />
<recent name="edu.caltech.cs2.interfaces" />
</key>
<key name="CreateTestDialog.Recents.Supers">
<recent name="" />
</key>
<key name="MoveFile.RECENT_KEYS">
<recent name="$PROJECT_DIR$/src" />
</key>
</component>
<component name="RunManager" selected="JUnit.C Tests">
<configuration name="Movie Autocomplete" type="Application" factoryName="Application">
<output_file path="$USER_HOME$/Downloads/randomoutput.log" is_save="true" />
<option name="MAIN_CLASS_NAME" value="edu.caltech.cs2.project04.Main" />
<module name="project04-autocomplete" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<configuration name="A Tests" type="JUnit" factoryName="JUnit">
<module name="project04-autocomplete" />
<option name="MAIN_CLASS_NAME" value="" />
<option name="METHOD_NAME" value="" />
<option name="TEST_OBJECT" value="tags" />
<option name="PARAMETERS" value="" />
<tag value="A" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<configuration name="B Tests" type="JUnit" factoryName="JUnit">
<module name="project04-autocomplete" />
<option name="MAIN_CLASS_NAME" value="B" />
<option name="METHOD_NAME" value="" />
<option name="TEST_OBJECT" value="tags" />
<option name="PARAMETERS" value="" />
<tag value="B" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<configuration name="C Tests" type="JUnit" factoryName="JUnit">
<option name="MAIN_CLASS_NAME" value="C" />
<option name="METHOD_NAME" value="" />
<option name="TEST_OBJECT" value="tags" />
<option name="PARAMETERS" value="" />
<option name="TEST_SEARCH_SCOPE">
<value defaultName="wholeProject" />
</option>
<tag value="C" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<configuration name="D Tests" type="JUnit" factoryName="JUnit">
<module name="project04-autocomplete" />
<option name="MAIN_CLASS_NAME" value="" />
<option name="METHOD_NAME" value="" />
<option name="TEST_OBJECT" value="tags" />
<option name="PARAMETERS" value="" />
<tag value="D" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<list>
<item itemvalue="Application.Movie Autocomplete" />
<item itemvalue="JUnit.A Tests" />
<item itemvalue="JUnit.B Tests" />
<item itemvalue="JUnit.C Tests" />
<item itemvalue="JUnit.D Tests" />
</list>
</component>
<component name="ServiceViewManager">
<option name="viewStates">
<list>
<serviceView>
<treeState>
<expand />
<select />
</treeState>
</serviceView>
</list>
</option>
</component>
<component name="SvnConfiguration">
<configuration />
</component>
<component name="TaskManager">
<task active="true" id="Default" summary="Default task">
<changelist id="ef739733-a82a-41f9-936d-0408cf0a0a81" name="Default Changelist" comment="" />
<created>1543795217759</created>
<option name="number" value="Default" />
<option name="presentableId" value="Default" />
<updated>1543795217759</updated>
<workItem from="1543795220613" duration="5624000" />
</task>
<task id="LOCAL-00001" summary="Initial file commit">
<created>1576490164558</created>
<option name="number" value="00001" />
<option name="presentableId" value="LOCAL-00001" />
<option name="project" value="LOCAL" />
<updated>1576490164558</updated>
</task>
<task id="LOCAL-00002" summary="Implementing basic IDictionary Tests">
<created>1576613342881</created>
<option name="number" value="00002" />
<option name="presentableId" value="LOCAL-00002" />
<option name="project" value="LOCAL" />
<updated>1576613342881</updated>
</task>
<task id="LOCAL-00003" summary="Replaced unit tests with in progress sanity/stress tests">
<created>1576664027300</created>
<option name="number" value="00003" />
<option name="presentableId" value="LOCAL-00003" />
<option name="project" value="LOCAL" />
<updated>1576664027300</updated>
</task>
<task id="LOCAL-00004" summary="Added stress tests">
<created>1576796537828</created>
<option name="number" value="00004" />
<option name="presentableId" value="LOCAL-00004" />
<option name="project" value="LOCAL" />
<updated>1576796537828</updated>
</task>
<task id="LOCAL-00005" summary="Stress tests for ITrieMap complete">
<created>1576821533637</created>
<option name="number" value="00005" />
<option name="presentableId" value="LOCAL-00005" />
<option name="project" value="LOCAL" />
<updated>1576821533637</updated>
</task>
<task id="LOCAL-00006" summary="Fixed class organization issue with objects not necessarily being iterables. Moved data generation to ITrieMapTests.">
<created>1576833413862</created>
<option name="number" value="00006" />
<option name="presentableId" value="LOCAL-00006" />
<option name="project" value="LOCAL" />
<updated>1576833413862</updated>
</task>
<task id="LOCAL-00007" summary="Debugging tests">
<created>1576839646802</created>
<option name="number" value="00007" />
<option name="presentableId" value="LOCAL-00007" />
<option name="project" value="LOCAL" />
<updated>1576839646802</updated>
</task>
<task id="LOCAL-00008" summary="ITrieMap sanity tests">
<created>1576875676353</created>
<option name="number" value="00008" />
<option name="presentableId" value="LOCAL-00008" />
<option name="project" value="LOCAL" />
<updated>1576875676353</updated>
</task>
<task id="LOCAL-00009" summary="Finished base tests">
<created>1576877448850</created>
<option name="number" value="00009" />
<option name="presentableId" value="LOCAL-00009" />
<option name="project" value="LOCAL" />
<updated>1576877448850</updated>
</task>
<task id="LOCAL-00010" summary="Test formatting and organization">
<created>1576878235631</created>
<option name="number" value="00010" />
<option name="presentableId" value="LOCAL-00010" />
<option name="project" value="LOCAL" />
<updated>1576878235631</updated>
</task>
<task id="LOCAL-00011" summary="Added test ordering">
<created>1576878639614</created>
<option name="number" value="00011" />
<option name="presentableId" value="LOCAL-00011" />
<option name="project" value="LOCAL" />
<updated>1576878639614</updated>
</task>
<task id="LOCAL-00012" summary="Basic cleanup">
<created>1576878967965</created>
<option name="number" value="00012" />
<option name="presentableId" value="LOCAL-00012" />
<option name="project" value="LOCAL" />
<updated>1576878967965</updated>
</task>
<task id="LOCAL-00013" summary="Fix regex for import restrictions">
<created>1579904759359</created>
<option name="number" value="00013" />
<option name="presentableId" value="LOCAL-00013" />
<option name="project" value="LOCAL" />
<updated>1579904759359</updated>
</task>
<task id="LOCAL-00014" summary="Change tests slightly">
<created>1580195216185</created>
<option name="number" value="00014" />
<option name="presentableId" value="LOCAL-00014" />
<option name="project" value="LOCAL" />
<updated>1580195216185</updated>
</task>
<option name="localTasksCounter" value="15" />
<servers />
</component>
<component name="TimeTrackingManager">
<option name="totallyTimeSpent" value="5624000" />
</component>
<component name="TypeScriptGeneratedFilesManager">
<option name="version" value="1" />
</component>
<component name="VcsManagerConfiguration">
<MESSAGE value="Initial file commit" />
<MESSAGE value="Implementing basic IDictionary Tests" />
<MESSAGE value="Replaced unit tests with in progress sanity/stress tests" />
<MESSAGE value="Added stress tests" />
<MESSAGE value="Stress tests for ITrieMap complete" />
<MESSAGE value="Fixed class organization issue with objects not necessarily being iterables. Moved data generation to ITrieMapTests." />
<MESSAGE value="Debugging tests" />
<MESSAGE value="ITrieMap sanity tests" />
<MESSAGE value="Finished base tests" />
<MESSAGE value="Test formatting and organization" />
<MESSAGE value="Added test ordering" />
<MESSAGE value="Basic cleanup" />
<MESSAGE value="Fix regex for import restrictions" />
<MESSAGE value="Change tests slightly" />
<option name="LAST_COMMIT_MESSAGE" value="Change tests slightly" />
</component>
<component name="WindowStateProjectService">
<state x="2281" y="215" key="#com.intellij.execution.impl.EditConfigurationsDialog" timestamp="1576878269444">
<screen x="1920" y="-150" width="2101" height="1142" />
</state>
<state x="379" y="156" key="#com.intellij.execution.impl.EditConfigurationsDialog/0.0.1575.846/1920.-150.2101.1142@0.0.1575.846" timestamp="1576663379869" />
<state x="2281" y="215" key="#com.intellij.execution.impl.EditConfigurationsDialog/0.0.1575.846/1920.-150.2101.1142@1920.-150.2101.1142" timestamp="1576878269444" />
<state x="2013" y="-57" width="1915" height="956" key="#com.intellij.execution.junit2.states.ComparisonFailureState$DiffDialog" timestamp="1576841436100">
<screen x="1920" y="-150" width="2101" height="1142" />
</state>
<state x="2013" y="-57" width="1915" height="956" key="#com.intellij.execution.junit2.states.ComparisonFailureState$DiffDialog/0.0.1575.846/1920.-150.2101.1142@1920.-150.2101.1142" timestamp="1576841436100" />
<state x="2776" y="130" key="#com.intellij.ide.util.MemberChooser" timestamp="1576832748382">
<screen x="1920" y="-150" width="2101" height="1142" />
</state>
<state x="2776" y="130" key="#com.intellij.ide.util.MemberChooser/0.0.1575.846/1920.-150.2101.1142@1920.-150.2101.1142" timestamp="1576832748382" />
<state x="593" y="283" width="393" height="290" key="#com.intellij.refactoring.move.moveClassesOrPackages.MoveClassesOrPackagesDialog.classes" timestamp="1580194891432">
<screen x="0" y="0" width="1575" height="846" />
</state>
<state x="593" y="283" width="393" height="290" key="#com.intellij.refactoring.move.moveClassesOrPackages.MoveClassesOrPackagesDialog.classes/0.0.1575.846/1920.-150.2101.1142@0.0.1575.846" timestamp="1580194891432" />
<state x="2596" y="159" width="977" height="732" key="#xdebugger.XInspectDialog" timestamp="1576839500036">
<screen x="1920" y="-150" width="2101" height="1142" />
</state>
<state x="2596" y="159" width="977" height="732" key="#xdebugger.XInspectDialog/0.0.1575.846/1920.-150.2101.1142@1920.-150.2101.1142" timestamp="1576839500036" />
<state x="0" y="18" key="CommitChangelistDialog2" timestamp="1580195466913">
<screen x="0" y="0" width="1575" height="846" />
</state>
<state x="0" y="0" key="CommitChangelistDialog2/0.0.1280.680@0.0.1280.680" timestamp="1580108228313" />
<state x="0" y="18" key="CommitChangelistDialog2/0.0.1575.846/1920.-150.2101.1142@0.0.1575.846" timestamp="1580195466913" />
<state x="1920" y="-126" key="CommitChangelistDialog2/0.0.1575.846/1920.-150.2101.1142@1920.-150.2101.1142" timestamp="1576878967530" />
<state x="569" y="165" key="FileChooserDialogImpl" timestamp="1576489747465">
<screen x="0" y="0" width="1575" height="846" />
</state>
<state x="569" y="165" key="FileChooserDialogImpl/0.0.1575.846/1920.-150.2101.1142@0.0.1575.846" timestamp="1576489747465" />
<state width="1532" height="101" key="GridCell.Tab.0.bottom" timestamp="1580195387247">
<screen x="0" y="0" width="1575" height="846" />
</state>
<state width="1237" height="257" key="GridCell.Tab.0.bottom/0.0.1280.680@0.0.1280.680" timestamp="1580108195650" />
<state width="1532" height="101" key="GridCell.Tab.0.bottom/0.0.1575.846/1920.-150.2101.1142@0.0.1575.846" timestamp="1580195387247" />
<state width="2057" height="326" key="GridCell.Tab.0.bottom/0.0.1575.846/1920.-150.2101.1142@1920.-150.2101.1142" timestamp="1576879498731" />
<state width="1532" height="115" key="GridCell.Tab.0.bottom/0.0.1575.846@0.0.1575.846" timestamp="1576452438532" />
<state width="1532" height="101" key="GridCell.Tab.0.center" timestamp="1580195387247">
<screen x="0" y="0" width="1575" height="846" />
</state>
<state width="1237" height="257" key="GridCell.Tab.0.center/0.0.1280.680@0.0.1280.680" timestamp="1580108195650" />
<state width="1532" height="101" key="GridCell.Tab.0.center/0.0.1575.846/1920.-150.2101.1142@0.0.1575.846" timestamp="1580195387247" />
<state width="2057" height="326" key="GridCell.Tab.0.center/0.0.1575.846/1920.-150.2101.1142@1920.-150.2101.1142" timestamp="1576879498731" />
<state width="1532" height="115" key="GridCell.Tab.0.center/0.0.1575.846@0.0.1575.846" timestamp="1576452438531" />
<state width="1532" height="101" key="GridCell.Tab.0.left" timestamp="1580195387247">
<screen x="0" y="0" width="1575" height="846" />
</state>
<state width="1237" height="257" key="GridCell.Tab.0.left/0.0.1280.680@0.0.1280.680" timestamp="1580108195650" />
<state width="1532" height="101" key="GridCell.Tab.0.left/0.0.1575.846/1920.-150.2101.1142@0.0.1575.846" timestamp="1580195387247" />
<state width="2057" height="326" key="GridCell.Tab.0.left/0.0.1575.846/1920.-150.2101.1142@1920.-150.2101.1142" timestamp="1576879498730" />
<state width="1532" height="115" key="GridCell.Tab.0.left/0.0.1575.846@0.0.1575.846" timestamp="1576452438531" />
<state width="1532" height="101" key="GridCell.Tab.0.right" timestamp="1580195387247">
<screen x="0" y="0" width="1575" height="846" />
</state>
<state width="1237" height="257" key="GridCell.Tab.0.right/0.0.1280.680@0.0.1280.680" timestamp="1580108195650" />
<state width="1532" height="101" key="GridCell.Tab.0.right/0.0.1575.846/1920.-150.2101.1142@0.0.1575.846" timestamp="1580195387247" />
<state width="2057" height="326" key="GridCell.Tab.0.right/0.0.1575.846/1920.-150.2101.1142@1920.-150.2101.1142" timestamp="1576879498731" />
<state width="1532" height="115" key="GridCell.Tab.0.right/0.0.1575.846@0.0.1575.846" timestamp="1576452438531" />
<state width="2057" height="326" key="GridCell.Tab.1.bottom" timestamp="1576879498731">
<screen x="1920" y="-150" width="2101" height="1142" />
</state>
<state width="2057" height="326" key="GridCell.Tab.1.bottom/0.0.1575.846/1920.-150.2101.1142@1920.-150.2101.1142" timestamp="1576879498731" />
<state width="2057" height="326" key="GridCell.Tab.1.center" timestamp="1576879498731">
<screen x="1920" y="-150" width="2101" height="1142" />
</state>
<state width="2057" height="326" key="GridCell.Tab.1.center/0.0.1575.846/1920.-150.2101.1142@1920.-150.2101.1142" timestamp="1576879498731" />
<state width="2057" height="326" key="GridCell.Tab.1.left" timestamp="1576879498731">
<screen x="1920" y="-150" width="2101" height="1142" />
</state>
<state width="2057" height="326" key="GridCell.Tab.1.left/0.0.1575.846/1920.-150.2101.1142@1920.-150.2101.1142" timestamp="1576879498731" />
<state width="2057" height="326" key="GridCell.Tab.1.right" timestamp="1576879498731">
<screen x="1920" y="-150" width="2101" height="1142" />
</state>
<state width="2057" height="326" key="GridCell.Tab.1.right/0.0.1575.846/1920.-150.2101.1142@1920.-150.2101.1142" timestamp="1576879498731" />
<state x="2480" y="63" key="SettingsEditor" timestamp="1576489833366">
<screen x="1920" y="-150" width="2101" height="1142" />
</state>
<state x="2480" y="63" key="SettingsEditor/0.0.1575.846/1920.-150.2101.1142@1920.-150.2101.1142" timestamp="1576489833366" />
<state x="246" y="251" key="Vcs.Push.Dialog.v2" timestamp="1580195217547">
<screen x="0" y="0" width="1575" height="846" />
</state>
<state x="200" y="149" key="Vcs.Push.Dialog.v2/0.0.1280.680@0.0.1280.680" timestamp="1579904768987" />
<state x="246" y="251" key="Vcs.Push.Dialog.v2/0.0.1575.846/1920.-150.2101.1142@0.0.1575.846" timestamp="1580195217547" />
<state x="2248" y="189" key="Vcs.Push.Dialog.v2/0.0.1575.846/1920.-150.2101.1142@1920.-150.2101.1142" timestamp="1576878969114" />
<state width="1057" height="578" key="XDebugger.FullValuePopup" timestamp="1576836254868">
<screen x="1920" y="-150" width="2101" height="1142" />
</state>
<state width="1057" height="578" key="XDebugger.FullValuePopup/0.0.1575.846/1920.-150.2101.1142@1920.-150.2101.1142" timestamp="1576836254868" />
<state x="606" y="340" key="com.intellij.openapi.vcs.update.UpdateOrStatusOptionsDialogupdate-v2" timestamp="1580194688998">
<screen x="0" y="0" width="1575" height="846" />
</state>
<state x="492" y="273" key="com.intellij.openapi.vcs.update.UpdateOrStatusOptionsDialogupdate-v2/0.0.1280.680@0.0.1280.680" timestamp="1580107869980" />
<state x="606" y="340" key="com.intellij.openapi.vcs.update.UpdateOrStatusOptionsDialogupdate-v2/0.0.1575.846/1920.-150.2101.1142@0.0.1575.846" timestamp="1580194688998" />
<state x="2713" y="41" key="refactoring.ChangeSignatureDialog" timestamp="1576878574355">
<screen x="1920" y="-150" width="2101" height="1142" />
</state>
<state x="2713" y="41" key="refactoring.ChangeSignatureDialog/0.0.1575.846/1920.-150.2101.1142@1920.-150.2101.1142" timestamp="1576878574355" />
<state x="2522" y="75" width="897" height="916" key="search.everywhere.popup" timestamp="1576877055339">
<screen x="1920" y="-150" width="2101" height="1142" />
</state>
<state x="451" y="167" width="672" height="678" key="search.everywhere.popup/0.0.1575.846/1920.-150.2101.1142@0.0.1575.846" timestamp="1576815579365" />
<state x="2522" y="75" width="897" height="916" key="search.everywhere.popup/0.0.1575.846/1920.-150.2101.1142@1920.-150.2101.1142" timestamp="1576877055339" />
</component>
</project>