{
	"auto_complete":
	{
		"selected_items":
		[
			[
				"fini",
				"finishStk1"
			],
			[
				"finish",
				"finishStk1A"
			],
			[
				"ret",
				"retract"
			],
			[
				"B",
				"BAD_SOCK"
			],
			[
				"BAD",
				"BAD_SOCK"
			],
			[
				"ar",
				"argc"
			],
			[
				"data_",
				"data_id"
			],
			[
				"seq",
				"seq_num"
			],
			[
				"src_",
				"src_id"
			],
			[
				"dat",
				"data_id"
			],
			[
				"da",
				"data_mask"
			],
			[
				"fr",
				"frame_rd"
			],
			[
				"peri",
				"periodicCallback"
			],
			[
				"Mod",
				"ModtronixMsg"
			],
			[
				"r",
				"req	class_spec"
			],
			[
				"_ser",
				"_server_ip"
			],
			[
				"Sys",
				"Syslog"
			],
			[
				"_aja",
				"_aja_ip"
			],
			[
				"Time",
				"TimeIF"
			],
			[
				"Del",
				"DeltaT"
			],
			[
				"mon",
				"months"
			],
			[
				"sonar",
				"sonar"
			],
			[
				"_int",
				"_interrogation_time"
			],
			[
				"tm",
				"tm_mon"
			],
			[
				"tv",
				"tv_nsec"
			],
			[
				"post",
				"post"
			],
			[
				"u",
				"usage"
			],
			[
				"your_",
				"your_response_buffer_length"
			],
			[
				"your",
				"your_response_buffer_length"
			],
			[
				"you",
				"your_response_buffer_length"
			],
			[
				"tmpres",
				"tmpres"
			],
			[
				"pr",
				"perror"
			],
			[
				"backup",
				"backup"
			],
			[
				"vol",
				"voltage_limit"
			],
			[
				"_",
				"_"
			],
			[
				"if",
				"if	if … end"
			],
			[
				"Image",
				"ImageFile"
			],
			[
				"Im",
				"ImageFile"
			],
			[
				"mas",
				"mask_filename"
			],
			[
				"mod",
				"mod_filename"
			],
			[
				"ref",
				"ref_filename"
			]
		]
	},
	"buffers":
	[
		{
			"file": "/home/henthorn/downloads/pa03/dfsTrace1.c",
			"settings":
			{
				"buffer_size": 2367,
				"line_ending": "Windows"
			}
		},
		{
			"file": "/home/henthorn/downloads/pa03/dfsPhase2.c",
			"settings":
			{
				"buffer_size": 9,
				"line_ending": "Unix"
			}
		},
		{
			"file": "/home/henthorn/Dropbox/MBARI/projects/smith/ses2vars.rb",
			"settings":
			{
				"buffer_size": 3398,
				"line_ending": "Unix"
			}
		},
		{
			"file": "/home/henthorn/Dropbox/MBARI/projects/smith/syslog.csv",
			"settings":
			{
				"buffer_size": 46405379,
				"line_ending": "Unix"
			}
		},
		{
			"contents": "/****************************************************************************/\n/* Copyright (c) 2015 MBARI                                                 */\n/* MBARI Proprietary Information. All rights reserved.                      */\n/****************************************************************************/\n/* Summary  : Power Buoy Data Logger generic file-based data source class   */\n/* Filename : fileSource.hpp                                                */\n/* Author   : Henthorn                                                      */\n/* Project  : Power Buoy                                                    */\n/* Version  : 1.0                                                           */\n/* Created  : 04/13/2015                                                    */\n/* Modified :                                                               */\n/* Archived :                                                               */\n/****************************************************************************/\n/* Modification History:                                                    */\n/****************************************************************************/\n/*                                                                          */\n/* This is a generic class for file-based data sources. If the source can   */\n/* be read through a file descriptor, then create a class based on this.    */\n/*                                                                          */\n/****************************************************************************/\n\n#ifndef _FILESOURCE_\n#define _FILESOURCE_\n\ntypedef char SourceID;\nconst SourceID BuoyConID    = 0x0;\nconst SourceID PneumConID   = 0x1;\nconst SourceID BoostConID   = 0x2;\nconst SourceID BatteryConID = 0x2;\nconst SourceID CrossbowID   = 0x4;\n\nclass FileSource {\n\npublic:\n\n   // Open a connection to the data source.\n   //\n   FileSource(const char *name) : _name(NULL), _fd(-1)\n   { _name = strdup(name); }\n\n   virtual ~FileSource()\n   { if (_name) delete _name; }\n\n   virtual int get_fd() { return _fd; }\n\n   // Return 0 if full record was read\n   // Otherwise, return the number of bytes still needed for\n   // a full record.\n   // Return < 0 on error.\n   //\n   virtual int read_data() { return 0; }\n\n   // Return the latest full data record in the buffer supplied by the caller.\n   // Return the number of bytes written to the buffer (0 or more).\n   // Return < 0 on error.\n   //\n   virtual int get_record(const char *buffer) { return 0; }\n\nprotected:\n\n   char *_name;\n   int   _fd;\n\n};\n\n#endif\n",
			"file": "/Engineering/henthorn/PowerBuoy/Logger/FileSource.hpp",
			"file_size": 2599,
			"file_write_time": 1429824295000000,
			"settings":
			{
				"buffer_size": 2577,
				"line_ending": "Windows"
			}
		},
		{
			"file": "/Engineering/henthorn/PowerBuoy/Logger/pblog.cpp",
			"settings":
			{
				"buffer_size": 9098,
				"line_ending": "Unix"
			}
		},
		{
			"file": "/Engineering/henthorn/PowerBuoy/Logger/CanBus.hpp",
			"settings":
			{
				"buffer_size": 3508,
				"line_ending": "Unix"
			}
		},
		{
			"file": "/home/henthorn/Dropbox/MBARI/projects/smith/tiff2jpg.sh",
			"settings":
			{
				"buffer_size": 877,
				"line_ending": "Unix"
			}
		},
		{
			"file": "/Engineering/henthorn/PowerBuoy/Logger/CanBus.cpp",
			"settings":
			{
				"buffer_size": 8797,
				"line_ending": "Unix"
			}
		},
		{
			"file": "/home/henthorn/downloads/pa03/scc03.c",
			"settings":
			{
				"buffer_size": 2180,
				"line_ending": "Unix"
			}
		}
	],
	"build_system": "",
	"command_palette":
	{
		"height": 392.0,
		"selected_items":
		[
			[
				"inst",
				"Package Control: Install Package"
			],
			[
				"install",
				"Package Control: Install Package"
			],
			[
				"syn c",
				"Set Syntax: C"
			],
			[
				"mark",
				"Set Syntax: Markdown"
			]
		],
		"width": 449.0
	},
	"console":
	{
		"height": 0.0
	},
	"distraction_free":
	{
		"menu_visible": true,
		"show_minimap": false,
		"show_open_files": false,
		"show_tabs": false,
		"side_bar_visible": false,
		"status_bar_visible": false
	},
	"file_history":
	[
		"/Tempbox/henthorn/tiff2jpg.sh",
		"/home/henthorn/Dropbox/MBARI/projects/hamilton/CANBus/log_example.c",
		"/home/henthorn/Dropbox/MBARI/projects/hamilton/CANBus/read_example.c",
		"/home/henthorn/Dropbox/MBARI/projects/hamilton/CANBus/cancmds.h",
		"/home/henthorn/Dropbox/MBARI/projects/hamilton/CANBus/cancmds.c",
		"/home/henthorn/Dropbox/MBARI/projects/hamilton/CANBus/pbcon.c",
		"/home/henthorn/Dropbox/MBARI/projects/hamilton/CANBus/SetMode00.c",
		"/Tempbox/henthorn/pa01/pa01/LoadGraph.h",
		"/Tempbox/henthorn/pa01/pa01/LoadGraph.c",
		"/Tempbox/henthorn/pa01/pa01/graph01.c",
		"/home/henthorn/Dropbox/MBARI/projects/hamilton/CANBus/pseudo-logger",
		"/home/henthorn/Dropbox/MBARI/projects/ruby_cli/thor/hello_world.rb",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/CARL/HtmlUtil.cc",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/CARL/htmlutil.cc",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/CARL/HtmlUtil.h",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/CARL/KiPro.h",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/CARL/ModtronixOutput.h",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/CARL/ModtronixOutput.cc",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/CARL/KiPro.cc",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/CARL/_kiProTest.cc",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/delta_t/DeltaTLog.h",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/delta_t/DeltaTLog.cc",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/delta_t/DeltaTOutput.h",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/delta_t/delta_tTest.cc",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/delta_t/_delta_tServer.cc",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/delta_t/DeltaTMessage.h",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/taskIF/TimeIF.h",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/LayeredControl/Delta_T.cc",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/LayeredControl/Delta_T.h",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/taskIF/DeltaTIF.idl",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/CARL/Makefile",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/CARL/Modtronix.h",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/CARL/Modtronix.cc",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/CARL/ModtronixLog.h",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/CARL/ModtronixMsg.h",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/CARL/CARLServer.h",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/CARL/CARLServer.cc",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/CARL/_carlTest.cc",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/CARL/carl.cfg",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/CARL/_carlServer.cc",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/taskIF/CARL_IF.idl",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/taskIF/Makefile",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/Navigation/Navigation.cc",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/DataLog/DataLog.h",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/DataLog/DataLogWriter.cc",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/LayeredControl/_layeredControl.cc",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/LayeredControl/LayeredControl.cc",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/framework/EventService.h",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/framework/EventService.cc",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/framework/EventTriggers.cc",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/framework/PeriodicTask.cc",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/framework/Task.cc",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/DynamicControl/DynamicControlServer.cc",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/Simulator/SimulatedCtd.cc",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/framework/SharedObjectServer.cc",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/taskIF/LayeredControlIF.idl",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/LayeredControl/LayeredControl.h",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/framework/PeriodicTask.h",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/taskIF/InstrumentIF_SK.h",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/framework/TaskServer.cc",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/taskIF/DeviceIF_SK.h",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/taskIF/CtdIF_SK.h",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/Simulator/simCtd.cc",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/framework/Task.h",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/delta_t/DeltaT.h",
		"/Engineering/henthorn/AUV/fresh/fastsim.git/auv/altex/onboard/delta_t/DeltaT.cc",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/delta_t/Makefile",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/delta_t/delta_tServer.cfg",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/delta_t/DeltaTServer.cc",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/delta_t/DeltaTServer.h",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/delta_t/_delta_t.cc",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/delta_t/DeltaT.h",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/delta_t/DeltaT.cc",
		"/media/sf_vbox-share/asana_json.txt",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/delta_t/carlServer.cc",
		"/home/henthorn/Dropbox/MBARI/projects/smith/seconds2vars.rb",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/Makefile",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/framework/PeriodicTask.cc",
		"/home/henthorn/projects/shttpc.c",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/utils/DoubleData.h",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/CARL/shttpc.cc",
		"/home/henthorn/.config/sublime-text-2/Packages/AdvancedNewFile/README.md",
		"/home/henthorn/.config/sublime-text-2/Packages/Default/Default (Linux).sublime-keymap",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/CARL.sublime-project",
		"/home/henthorn/downloads/benthia/src/benthia.cpp",
		"/home/henthorn/downloads/benthia/src/bogus.cpp",
		"/home/henthorn/projects/superv.rb",
		"/home/henthorn/.config/sublime-text-2/Packages/User/Preferences.sublime-settings",
		"/home/henthorn/.config/sublime-text-2/Packages/User/Default (Linux).sublime-keymap",
		"/home/henthorn/projects/superv.sh",
		"/home/henthorn/downloads/benthia/src/sublime_snips.cpp",
		"/home/henthorn/downloads/benthia/src/ImageFile.cpp",
		"/home/henthorn/downloads/benthia/src/ImageFile.h",
		"/media/LOGO-RH/barbo.rover/plans/pulse_64.xml",
		"/media/LOGO-RH/barbo.rover/control/supervisor.rb",
		"/media/LOGO-RH/barbo.rover/control/plan.rb",
		"/media/LOGO-RH/barbo.rover/control/deployment.rb",
		"/media/LOGO-RH/barbo.rover/control/favorable_current.rb",
		"/media/LOGO-RH/barbo.rover/control/executive.rb",
		"/media/LOGO-RH/barbo.rover/control/launch.rb",
		"/media/LOGO-RH/barbo.rover/control/fluoro_image.rb",
		"/media/LOGO-RH/barbo.rover/device/axis.rb",
		"/media/LOGO-RH/barbo.rover/control/transit_image.rb",
		"/media/LOGO-RH/barbo.rover/control/chamber_images.rb",
		"/media/LOGO-RH/barbo.rover/device/prosilica.rb",
		"/home/henthorn/Dropbox/MBARI/projects/sesia/src/sesia.cpp",
		"/home/henthorn/Dropbox/MBARI/projects/sesia/src/ImageFile.h",
		"/home/henthorn/Dropbox/MBARI/projects/sesia/src/ImageFile.cpp",
		"/home/henthorn/projects/smith/arm-test.cc",
		"/home/henthorn/Dropbox/MBARI/projects/smith/sesia/src/ImageFile.h",
		"/home/henthorn/Dropbox/MBARI/projects/smith/sesia/src/ImageFile.cpp",
		"/home/henthorn/Dropbox/MBARI/barbo/control/behavior.rb",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/taskIF/VCARL_IF.idl",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/terrainNav/TerrainNavClient.cpp",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/shttpc.cc",
		"/home/henthorn/Dropbox/MBARI/projects/smith/sesia/src/benthia.cpp",
		"/ProjectLibrary/901027.SedimentationEventSensor/Deployments/Deployment Data/Pulse_62/dep-2013.06.19-01-Pulse-62/data-01-system_logs/syslog.csv",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/LBL/ScheduleServer.cc",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/LBL/ScheduleServer.h",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/watchdog/WatchdogServer.h",
		"/Engineering/henthorn/AUV/auv-qnx/auv/altex/onboard/watchdog/WatchdogServer.cc",
		"/home/henthorn/Dropbox/MBARI/projects/smith/set_date_time.rb",
		"/home/henthorn/Dropbox/MBARI/projects/smith/ses2vars.rb",
		"/home/henthorn/.config/sublime-text-2/Packages/User/JSON.sublime-settings",
		"/home/henthorn/.config/sublime-text-2/Packages/Default/Preferences.sublime-settings",
		"/home/henthorn/.config/sublime-text-2/Packages/User/Ruby.sublime-settings",
		"/media/SmithLabFD1/SESLogs/Pulse_61/dep-2012.11.17-01-Pulse-61/data-01-system_logs/syslog.csv"
	],
	"find":
	{
		"height": 34.0
	},
	"find_in_files":
	{
		"height": 0.0,
		"where_history":
		[
		]
	},
	"find_state":
	{
		"case_sensitive": false,
		"find_history":
		[
			"Conid",
			"soc",
			"read_can",
			"_navigation",
			"missionst",
			"_missionSta",
			"_systemRead",
			"ready",
			"serverpid",
			"event",
			"trigger",
			"->add",
			"clock",
			"time",
			"timestam",
			"timesepc",
			"gettime",
			"Time",
			"MissionStart",
			"::period",
			"eventCall",
			"initia",
			"_event",
			"tion::",
			"ultibeamer",
			"Echo",
			"buf",
			"CARL",
			"VCARL",
			"VCA",
			"_auto_sos = ",
			"::write(\"",
			"set_sos",
			"delta_tServer",
			"_auto_s",
			"set_auto",
			"auto up",
			"debug =",
			"= Tru",
			"_auto_sos",
			"= Tru",
			"True",
			"= True",
			"get_sos_flag",
			"::setex",
			"set_suto",
			"get_sos",
			"_sos",
			"both",
			"timer",
			"sos",
			"set_sos",
			"sos",
			"_sos",
			"sos",
			"_sos",
			"soundSpeed",
			"get_sos",
			"get_sos_",
			"sos",
			"get_sos",
			"set_timer",
			"usr1",
			"get_sos",
			"frac",
			"char",
			"\n   ",
			"buf",
			"total",
			"BUFSIZ",
			"ip",
			"shttpc",
			"s_addr",
			"server_add",
			"server_addr =",
			"_server_a",
			"sockadd",
			"struct",
			"success",
			"fprintf",
			"command",
			"Success",
			"buf[0..%d] = [%s]",
			"buf[0..%d] = [%s]\\n",
			"backup",
			"Hibern",
			"prefi",
			"ImageFile",
			"::load",
			"ref",
			"Imagefile",
			"ImageFile",
			"ref",
			"mask",
			"->cal",
			"extract",
			"tab",
			"debug",
			"kill",
			"grab took",
			"_131014"
		],
		"highlight": true,
		"in_selection": false,
		"preserve_case": false,
		"regex": false,
		"replace_history":
		[
			"odtronix",
			"::write(\"%s "
		],
		"reverse": false,
		"show_context": true,
		"use_buffer2": true,
		"whole_word": false,
		"wrap": true
	},
	"groups":
	[
		{
			"selected": 7,
			"sheets":
			[
				{
					"buffer": 0,
					"file": "/home/henthorn/downloads/pa03/dfsTrace1.c",
					"settings":
					{
						"buffer_size": 2367,
						"regions":
						{
						},
						"selection":
						[
							[
								0,
								0
							]
						],
						"settings":
						{
							"syntax": "Packages/C++/C.tmLanguage"
						},
						"translation.x": 0.0,
						"translation.y": 315.0,
						"zoom_level": 1.0
					},
					"type": "text"
				},
				{
					"buffer": 1,
					"file": "/home/henthorn/downloads/pa03/dfsPhase2.c",
					"settings":
					{
						"buffer_size": 9,
						"regions":
						{
						},
						"selection":
						[
							[
								0,
								0
							]
						],
						"settings":
						{
							"syntax": "Packages/C++/C.tmLanguage"
						},
						"translation.x": 0.0,
						"translation.y": 0.0,
						"zoom_level": 1.0
					},
					"type": "text"
				},
				{
					"buffer": 2,
					"file": "/home/henthorn/Dropbox/MBARI/projects/smith/ses2vars.rb",
					"settings":
					{
						"buffer_size": 3398,
						"regions":
						{
						},
						"selection":
						[
							[
								0,
								0
							]
						],
						"settings":
						{
							"syntax": "Packages/Ruby/Ruby.tmLanguage"
						},
						"translation.x": 0.0,
						"translation.y": 855.0,
						"zoom_level": 1.0
					},
					"type": "text"
				},
				{
					"buffer": 3,
					"file": "/home/henthorn/Dropbox/MBARI/projects/smith/syslog.csv",
					"settings":
					{
						"buffer_size": 46405379,
						"regions":
						{
						},
						"selection":
						[
							[
								278664,
								278664
							]
						],
						"settings":
						{
							"syntax": "Packages/Text/Plain text.tmLanguage"
						},
						"translation.x": 0.0,
						"translation.y": 63171.0,
						"zoom_level": 1.0
					},
					"type": "text"
				},
				{
					"buffer": 4,
					"file": "/Engineering/henthorn/PowerBuoy/Logger/FileSource.hpp",
					"settings":
					{
						"buffer_size": 2577,
						"regions":
						{
						},
						"selection":
						[
							[
								1815,
								1815
							]
						],
						"settings":
						{
							"syntax": "Packages/C++/C++.tmLanguage"
						},
						"translation.x": 0.0,
						"translation.y": 0.0,
						"zoom_level": 1.0
					},
					"type": "text"
				},
				{
					"buffer": 5,
					"file": "/Engineering/henthorn/PowerBuoy/Logger/pblog.cpp",
					"settings":
					{
						"buffer_size": 9098,
						"regions":
						{
						},
						"selection":
						[
							[
								1738,
								1738
							]
						],
						"settings":
						{
							"syntax": "Packages/C++/C++.tmLanguage"
						},
						"translation.x": 0.0,
						"translation.y": 0.0,
						"zoom_level": 1.0
					},
					"type": "text"
				},
				{
					"buffer": 6,
					"file": "/Engineering/henthorn/PowerBuoy/Logger/CanBus.hpp",
					"settings":
					{
						"buffer_size": 3508,
						"regions":
						{
						},
						"selection":
						[
							[
								2734,
								2734
							]
						],
						"settings":
						{
							"syntax": "Packages/C++/C++.tmLanguage"
						},
						"translation.x": 0.0,
						"translation.y": 450.0,
						"zoom_level": 1.0
					},
					"type": "text"
				},
				{
					"buffer": 7,
					"file": "/home/henthorn/Dropbox/MBARI/projects/smith/tiff2jpg.sh",
					"settings":
					{
						"buffer_size": 877,
						"regions":
						{
						},
						"selection":
						[
							[
								836,
								836
							]
						],
						"settings":
						{
							"syntax": "Packages/ShellScript/Shell-Unix-Generic.tmLanguage"
						},
						"translation.x": 0.0,
						"translation.y": 0.0,
						"zoom_level": 1.0
					},
					"type": "text"
				},
				{
					"buffer": 8,
					"file": "/Engineering/henthorn/PowerBuoy/Logger/CanBus.cpp",
					"settings":
					{
						"buffer_size": 8797,
						"regions":
						{
						},
						"selection":
						[
							[
								4269,
								4269
							]
						],
						"settings":
						{
							"syntax": "Packages/C++/C++.tmLanguage"
						},
						"translation.x": 0.0,
						"translation.y": 1416.0,
						"zoom_level": 1.0
					},
					"type": "text"
				},
				{
					"buffer": 9,
					"file": "/home/henthorn/downloads/pa03/scc03.c",
					"settings":
					{
						"buffer_size": 2180,
						"regions":
						{
						},
						"selection":
						[
							[
								0,
								0
							]
						],
						"settings":
						{
							"syntax": "Packages/C++/C.tmLanguage"
						},
						"translation.x": 0.0,
						"translation.y": 405.0,
						"zoom_level": 1.0
					},
					"type": "text"
				}
			]
		}
	],
	"incremental_find":
	{
		"height": 34.0
	},
	"input":
	{
		"height": 31.0
	},
	"layout":
	{
		"cells":
		[
			[
				0,
				0,
				1,
				1
			]
		],
		"cols":
		[
			0.0,
			1.0
		],
		"rows":
		[
			0.0,
			1.0
		]
	},
	"menu_visible": true,
	"replace":
	{
		"height": 62.0
	},
	"save_all_on_build": true,
	"select_file":
	{
		"height": 0.0,
		"selected_items":
		[
			[
				"imcpp",
				"/home/henthorn/downloads/benthia/src/ImageFile.cpp"
			]
		],
		"width": 0.0
	},
	"select_project":
	{
		"height": 0.0,
		"selected_items":
		[
		],
		"width": 0.0
	},
	"show_minimap": true,
	"show_open_files": true,
	"show_tabs": true,
	"side_bar_visible": true,
	"side_bar_width": 150.0,
	"status_bar_visible": true
}
