diff options
author | Abhi Beckert <abhi@abhibeckert.com> | 2016-04-03 10:06:33 +1000 |
---|---|---|
committer | Abhi Beckert <abhi@abhibeckert.com> | 2016-04-03 10:06:41 +1000 |
commit | 6672e0d55810a7447fd06ef1113ad88473ba7538 (patch) | |
tree | 841c95ecacd2f1d7b34211e95490b130985e2535 | |
parent | 128add6d3e731a83d813ad69ee1e773776bb8e69 (diff) | |
download | sequelpro-6672e0d55810a7447fd06ef1113ad88473ba7538.tar.gz sequelpro-6672e0d55810a7447fd06ef1113ad88473ba7538.tar.bz2 sequelpro-6672e0d55810a7447fd06ef1113ad88473ba7538.zip |
fix various compile warnings
35 files changed, 5773 insertions, 33079 deletions
diff --git a/Frameworks/PSMTabBar/PSMRolloverButton.h b/Frameworks/PSMTabBar/PSMRolloverButton.h index 3c175119..9f339a50 100644 --- a/Frameworks/PSMTabBar/PSMRolloverButton.h +++ b/Frameworks/PSMTabBar/PSMRolloverButton.h @@ -16,15 +16,19 @@ } // the regular image -- (void)setUsualImage:(NSImage *)newImage; -- (NSImage *)usualImage; +- (void)setUsualImage:(nullable NSImage *)newImage; +- (nullable NSImage *)usualImage; // the rollover image -- (void)setRolloverImage:(NSImage *)newImage; -- (NSImage *)rolloverImage; +- (void)setRolloverImage:(nullable NSImage *)newImage; +- (nullable NSImage *)rolloverImage; // tracking rect for mouse events -- (void)rolloverFrameDidChange:(NSNotification *)inNotification; +- (void)rolloverFrameDidChange:(nonnull NSNotification *)inNotification; - (void)addTrackingRect; - (void)removeTrackingRect; + +- (void)mouseEntered:(nullable NSEvent *)theEvent; +- (void)mouseExited:(nullable NSEvent *)theEvent; + @end diff --git a/Frameworks/PSMTabBar/PSMRolloverButton.m b/Frameworks/PSMTabBar/PSMRolloverButton.m index eebbd68e..4ded63b7 100644 --- a/Frameworks/PSMTabBar/PSMRolloverButton.m +++ b/Frameworks/PSMTabBar/PSMRolloverButton.m @@ -124,7 +124,7 @@ } // override for rollover effect -- (void)mouseEntered:(NSEvent *)theEvent; +- (void)mouseEntered:(nullable NSEvent *)theEvent { // set rollover image [self setImage:_rolloverImage]; @@ -132,7 +132,7 @@ [super mouseEntered:theEvent]; } -- (void)mouseExited:(NSEvent *)theEvent; +- (void)mouseExited:(nullable NSEvent *)theEvent { // restore usual image [self setImage:_usualImage]; diff --git a/Frameworks/PSMTabBar/PSMTabBarControl.m b/Frameworks/PSMTabBar/PSMTabBarControl.m index 9b38d6d1..e9fc6c8b 100644 --- a/Frameworks/PSMTabBar/PSMTabBarControl.m +++ b/Frameworks/PSMTabBar/PSMTabBarControl.m @@ -1408,8 +1408,8 @@ return; } - CGFloat dx = fabsf(currentPoint.x - trackingStartPoint.x); - CGFloat dy = fabsf(currentPoint.y - trackingStartPoint.y); + CGFloat dx = fabs(currentPoint.x - trackingStartPoint.x); + CGFloat dy = fabs(currentPoint.y - trackingStartPoint.y); CGFloat distance = sqrtf(dx * dx + dy * dy); if (distance >= 10 && !_didDrag && ![[PSMTabDragAssistant sharedDragAssistant] isDragging] && diff --git a/Frameworks/PSMTabBar/PSMTabDragAssistant.m b/Frameworks/PSMTabBar/PSMTabDragAssistant.m index f10eadd4..a0c694a3 100644 --- a/Frameworks/PSMTabBar/PSMTabDragAssistant.m +++ b/Frameworks/PSMTabBar/PSMTabDragAssistant.m @@ -321,7 +321,6 @@ static PSMTabDragAssistant *sharedDragAssistant = nil; } imageSize = [image size]; - [image setScalesWhenResized:YES]; if (imageSize.width > imageSize.height) { [image setSize:NSMakeSize(125, 125 * (imageSize.height / imageSize.width))]; @@ -657,7 +656,7 @@ static PSMTabDragAssistant *sharedDragAssistant = nil; - (NSImage *)_imageForViewOfCell:(PSMTabBarCell *)cell styleMask:(NSUInteger *)outMask { - PSMTabBarControl *control = [cell controlView]; + PSMTabBarControl *control = (PSMTabBarControl *)[cell controlView]; NSImage *viewImage = nil; if (outMask) { diff --git a/Interfaces/English.lproj/DBView.xib b/Interfaces/English.lproj/DBView.xib index 7ffa8fc8..24fec094 100644 --- a/Interfaces/English.lproj/DBView.xib +++ b/Interfaces/English.lproj/DBView.xib @@ -1,32988 +1,5664 @@ -<?xml version="1.0" encoding="UTF-8"?> -<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="8.00"> - <data> - <int key="IBDocument.SystemTarget">1060</int> - <string key="IBDocument.SystemVersion">13F1096</string> - <string key="IBDocument.InterfaceBuilderVersion">6751</string> - <string key="IBDocument.AppKitVersion">1265.21</string> - <string key="IBDocument.HIToolboxVersion">698.00</string> - <dictionary class="NSMutableDictionary" key="IBDocument.PluginVersions"> - <string key="com.apple.InterfaceBuilder.CocoaPlugin">6751</string> - <string key="com.apple.WebKitIBPlugin">6751</string> - </dictionary> - <array key="IBDocument.IntegratedClassDependencies"> - <string>NSBox</string> - <string>NSButton</string> - <string>NSButtonCell</string> - <string>NSComboBox</string> - <string>NSComboBoxCell</string> - <string>NSCustomObject</string> - <string>NSCustomView</string> - <string>NSImageCell</string> - <string>NSImageView</string> - <string>NSMenu</string> - <string>NSMenuItem</string> - <string>NSNumberFormatter</string> - <string>NSPopUpButton</string> - <string>NSPopUpButtonCell</string> - <string>NSProgressIndicator</string> - <string>NSRuleEditor</string> - <string>NSScrollView</string> - <string>NSScroller</string> - <string>NSSearchField</string> - <string>NSSearchFieldCell</string> - <string>NSSecureTextField</string> - <string>NSSecureTextFieldCell</string> - <string>NSSegmentedCell</string> - <string>NSSegmentedControl</string> - <string>NSSplitView</string> - <string>NSTabView</string> - <string>NSTabViewItem</string> - <string>NSTableColumn</string> - <string>NSTableHeaderView</string> - <string>NSTableView</string> - <string>NSTextField</string> - <string>NSTextFieldCell</string> - <string>NSTextView</string> - <string>NSUserDefaultsController</string> - <string>NSView</string> - <string>NSWindowTemplate</string> - <string>WebView</string> - </array> - <array key="IBDocument.PluginDependencies"> - <string>com.apple.InterfaceBuilder.CocoaPlugin</string> - <string>com.apple.WebKitIBPlugin</string> - </array> - <object class="NSMutableDictionary" key="IBDocument.Metadata"> - <string key="NS.key.0">PluginDependencyRecalculationVersion</string> - <integer value="1" key="NS.object.0"/> - </object> - <array class="NSMutableArray" key="IBDocument.RootObjects" id="1000044710"> - <object class="NSCustomObject" id="800783608"> - <string key="NSClassName">SPDatabaseDocument</string> - </object> - <object class="NSCustomObject" id="463834704"> - <string key="NSClassName">FirstResponder</string> - </object> - <object class="NSCustomObject" id="608223254"> - <string key="NSClassName">NSApplication</string> - </object> - <object class="NSCustomView" id="173438986"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSSplitView" id="310278688"> - <reference key="NSNextResponder" ref="173438986"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSView" id="841205379"> - <reference key="NSNextResponder" ref="310278688"/> - <int key="NSvFlags">272</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSSplitView" id="220052404"> - <reference key="NSNextResponder" ref="841205379"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSView" id="315394535"> - <reference key="NSNextResponder" ref="220052404"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSSplitView" id="152099238"> - <reference key="NSNextResponder" ref="315394535"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSView" id="695889527"> - <reference key="NSNextResponder" ref="152099238"/> - <int key="NSvFlags">258</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSScrollView" id="45537637"> - <reference key="NSNextResponder" ref="695889527"/> - <int key="NSvFlags">4386</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="828528612"> - <reference key="NSNextResponder" ref="45537637"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTableView" id="778694607"> - <reference key="NSNextResponder" ref="828528612"/> - <int key="NSvFlags">4362</int> - <string key="NSFrameSize">{218, 38}</string> - <reference key="NSSuperview" ref="828528612"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="440427720"/> - <bool key="NSEnabled">YES</bool> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSControlAllowsExpansionToolTips">YES</bool> - <object class="_NSCornerView" key="NSCornerView"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <string key="NSFrameSize">{15, 20}</string> - </object> - <array class="NSMutableArray" key="NSTableColumns"> - <object class="NSTableColumn" id="1000153598"> - <double key="NSWidth">215</double> - <double key="NSMinWidth">40</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents"/> - <object class="NSFont" key="NSSupport" id="26"> - <bool key="IBIsSystemFont">YES</bool> - <double key="NSSize">11</double> - <int key="NSfFlags">3100</int> - </object> - <object class="NSColor" key="NSBackgroundColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MC4zMzMzMzI5ODU2AA</bytes> - </object> - <object class="NSColor" key="NSTextColor" id="770393381"> - <int key="NSColorSpace">6</int> - <string key="NSCatalogName">System</string> - <string key="NSColorName">headerTextColor</string> - <object class="NSColor" key="NSColor" id="437905761"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MAA</bytes> - </object> - </object> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="4503810"> - <int key="NSCellFlags">69206081</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Text Cell</string> - <object class="NSFont" key="NSSupport" id="71602814"> - <bool key="IBIsSystemFont">YES</bool> - <double key="NSSize">13</double> - <int key="NSfFlags">1044</int> - </object> - <reference key="NSControlView" ref="778694607"/> - <object class="NSColor" key="NSBackgroundColor" id="647098198"> - <int key="NSColorSpace">6</int> - <string key="NSCatalogName">System</string> - <string key="NSColorName">controlColor</string> - <object class="NSColor" key="NSColor" id="747589274"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MC42NjY2NjY2NjY3AA</bytes> - </object> - </object> - <object class="NSColor" key="NSTextColor" id="667308713"> - <int key="NSColorSpace">6</int> - <string key="NSCatalogName">System</string> - <string key="NSColorName">controlTextColor</string> - <reference key="NSColor" ref="437905761"/> - </object> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="778694607"/> - </object> - </array> - <double key="NSIntercellSpacingWidth">3</double> - <double key="NSIntercellSpacingHeight">2</double> - <object class="NSColor" key="NSBackgroundColor"> - <int key="NSColorSpace">6</int> - <string key="NSCatalogName">System</string> - <string key="NSColorName">_sourceListBackgroundColor</string> - <object class="NSColor" key="NSColor" id="881210219"> - <int key="NSColorSpace">6</int> - <string key="NSCatalogName">System</string> - <string key="NSColorName">alternateSelectedControlColor</string> - <object class="NSColor" key="NSColor" id="618433734"> - <int key="NSColorSpace">1</int> - <bytes key="NSRGB">MCAwIDEAA</bytes> - </object> - </object> - </object> - <object class="NSColor" key="NSGridColor" id="88855454"> - <int key="NSColorSpace">6</int> - <string key="NSCatalogName">System</string> - <string key="NSColorName">gridColor</string> - <object class="NSColor" key="NSColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MC41AA</bytes> - </object> - </object> - <double key="NSRowHeight">17</double> - <int key="NSTvFlags">306184192</int> - <reference key="NSDelegate"/> - <reference key="NSDataSource"/> - <int key="NSColumnAutoresizingStyle">4</int> - <int key="NSDraggingSourceMaskForLocal">-1</int> - <int key="NSDraggingSourceMaskForNonLocal">0</int> - <bool key="NSAllowsTypeSelect">NO</bool> - <int key="NSTableViewSelectionHighlightStyle">1</int> - <int key="NSTableViewDraggingDestinationStyle">1</int> - <int key="NSTableViewGroupRowStyle">1</int> - </object> - </array> - <string key="NSFrame">{{1, 1}, {218, 38}}</string> - <reference key="NSSuperview" ref="45537637"/> - <reference key="NSNextKeyView" ref="778694607"/> - <reference key="NSDocView" ref="778694607"/> - <int key="NScvFlags">2</int> - </object> - <object class="NSScroller" id="36449649"> - <reference key="NSNextResponder" ref="45537637"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{-100, -100}, {15, 8}}</string> - <reference key="NSSuperview" ref="45537637"/> - <reference key="NSNextKeyView" ref="510684108"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <reference key="NSTarget" ref="45537637"/> - <string key="NSAction">_doScroller:</string> - </object> - <object class="NSScroller" id="510684108"> - <reference key="NSNextResponder" ref="45537637"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{-100, -100}, {223, 15}}</string> - <reference key="NSSuperview" ref="45537637"/> - <reference key="NSNextKeyView" ref="828528612"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">1</int> - <reference key="NSTarget" ref="45537637"/> - <string key="NSAction">_doScroller:</string> - </object> - </array> - <string key="NSFrame">{{-1, -13}, {220, 40}}</string> - <reference key="NSSuperview" ref="695889527"/> - <reference key="NSNextKeyView" ref="36449649"/> - <int key="NSsFlags">133122</int> - <reference key="NSVScroller" ref="36449649"/> - <reference key="NSHScroller" ref="510684108"/> - <reference key="NSContentView" ref="828528612"/> - <bytes key="NSScrollAmts">QSAAAEEgAABBmAAAQZgAAA</bytes> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - <object class="NSSearchField" id="440427720"> - <reference key="NSNextResponder" ref="695889527"/> - <int key="NSvFlags">290</int> - <string key="NSFrame">{{5, 2}, {204, 19}}</string> - <reference key="NSSuperview" ref="695889527"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="217761928"/> - <bool key="NSViewIsLayerTreeHost">YES</bool> - <bool key="NSEnabled">YES</bool> - <object class="NSSearchFieldCell" key="NSCell" id="249281227"> - <int key="NSCellFlags">342884417</int> - <int key="NSCellFlags2">268567616</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="440427720"/> - <int key="NSTextBezelStyle">1</int> - <object class="NSColor" key="NSBackgroundColor" id="812613095"> - <int key="NSColorSpace">6</int> - <string key="NSCatalogName">System</string> - <string key="NSColorName">textBackgroundColor</string> - <object class="NSColor" key="NSColor" id="457906098"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MQA</bytes> - </object> - </object> - <reference key="NSTextColor" ref="667308713"/> - <object class="NSButtonCell" key="NSSearchButtonCell"> - <int key="NSCellFlags">0</int> - <int key="NSCellFlags2">0</int> - <string key="NSContents">search</string> - <reference key="NSControlView" ref="440427720"/> - <string key="NSAction">_searchFieldSearch:</string> - <reference key="NSTarget" ref="249281227"/> - <int key="NSButtonFlags">138690560</int> - <int key="NSButtonFlags2">0</int> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <object class="NSButtonCell" key="NSCancelButtonCell"> - <int key="NSCellFlags">-2147483648</int> - <int key="NSCellFlags2">0</int> - <string key="NSContents">clear</string> - <array class="NSMutableArray" key="NSAccessibilityOverriddenAttributes"> - <dictionary class="NSMutableDictionary"> - <string key="AXDescription">cancel</string> - <integer value="1" key="NSAccessibilityEncodedAttributesValueType"/> - </dictionary> - </array> - <reference key="NSControlView" ref="440427720"/> - <string key="NSAction">_searchFieldCancel:</string> - <reference key="NSTarget" ref="249281227"/> - <int key="NSButtonFlags">138690560</int> - <int key="NSButtonFlags2">0</int> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <int key="NSMaximumRecents">255</int> - <bytes key="NSSearchFieldFlags">CAAAAA</bytes> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrameSize">{214, 24}</string> - <reference key="NSSuperview" ref="152099238"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="45537637"/> - <bool key="NSDoNotTranslateAutoresizingMask">YES</bool> - </object> - <object class="NSView" id="217761928"> - <reference key="NSNextResponder" ref="152099238"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSScrollView" id="737277163"> - <reference key="NSNextResponder" ref="217761928"/> - <int key="NSvFlags">4370</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="385210161"> - <reference key="NSNextResponder" ref="737277163"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTableView" id="720354614"> - <reference key="NSNextResponder" ref="385210161"/> - <int key="NSvFlags">4352</int> - <string key="NSFrameSize">{214, 334}</string> - <reference key="NSSuperview" ref="385210161"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="710239831"/> - <bool key="NSEnabled">YES</bool> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSControlAllowsExpansionToolTips">YES</bool> - <object class="_NSCornerView" key="NSCornerView"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <string key="NSFrameSize">{15, 20}</string> - </object> - <array class="NSMutableArray" key="NSTableColumns"> - <object class="NSTableColumn" id="724601240"> - <string key="NSIdentifier">tables</string> - <double key="NSWidth">211</double> - <double key="NSMinWidth">42.868999481201172</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Tables</string> - <reference key="NSSupport" ref="26"/> - <object class="NSColor" key="NSBackgroundColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MC4zMzMzMzI5ODU2AA</bytes> - </object> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="534606014"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">272761856</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="720354614"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="720354614"/> - </object> - </array> - <double key="NSIntercellSpacingWidth">3</double> - <double key="NSIntercellSpacingHeight">2</double> - <object class="NSColor" key="NSBackgroundColor"> - <int key="NSColorSpace">6</int> - <string key="NSCatalogName">System</string> - <string key="NSColorName">_sourceListBackgroundColor</string> - <reference key="NSColor" ref="881210219"/> - </object> - <reference key="NSGridColor" ref="88855454"/> - <double key="NSRowHeight">17</double> - <int key="NSTvFlags">1514143744</int> - <reference key="NSDelegate"/> - <reference key="NSDataSource"/> - <int key="NSColumnAutoresizingStyle">2</int> - <int key="NSDraggingSourceMaskForLocal">-1</int> - <int key="NSDraggingSourceMaskForNonLocal">0</int> - <bool key="NSAllowsTypeSelect">YES</bool> - <int key="NSTableViewSelectionHighlightStyle">1</int> - <int key="NSTableViewDraggingDestinationStyle">1</int> - <int key="NSTableViewGroupRowStyle">1</int> - </object> - </array> - <string key="NSFrameSize">{214, 334}</string> - <reference key="NSSuperview" ref="737277163"/> - <reference key="NSNextKeyView" ref="720354614"/> - <reference key="NSDocView" ref="720354614"/> - </object> - <object class="NSScroller" id="710239831"> - <reference key="NSNextResponder" ref="737277163"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{197, 0}, {15, 292}}</string> - <reference key="NSSuperview" ref="737277163"/> - <reference key="NSNextKeyView" ref="1061162984"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <reference key="NSTarget" ref="737277163"/> - <string key="NSAction">_doScroller:</string> - <double key="NSCurValue">0.096045196056365967</double> - </object> - <object class="NSScroller" id="769186993"> - <reference key="NSNextResponder" ref="737277163"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{-100, -100}, {141, 11}}</string> - <reference key="NSSuperview" ref="737277163"/> - <reference key="NSNextKeyView" ref="385210161"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">257</int> - <reference key="NSTarget" ref="737277163"/> - <string key="NSAction">_doScroller:</string> - </object> - </array> - <string key="NSFrameSize">{214, 334}</string> - <reference key="NSSuperview" ref="217761928"/> - <reference key="NSNextKeyView" ref="769186993"/> - <int key="NSsFlags">133648</int> - <reference key="NSVScroller" ref="710239831"/> - <reference key="NSHScroller" ref="769186993"/> - <reference key="NSContentView" ref="385210161"/> - <bytes key="NSScrollAmts">QSAAAEEgAABBmAAAQZgAAA</bytes> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - </array> - <string key="NSFrame">{{0, 25}, {214, 334}}</string> - <reference key="NSSuperview" ref="152099238"/> - <reference key="NSNextKeyView" ref="737277163"/> - <bool key="NSDoNotTranslateAutoresizingMask">YES</bool> - </object> - </array> - <string key="NSFrameSize">{214, 359}</string> - <reference key="NSSuperview" ref="315394535"/> - <reference key="NSNextKeyView" ref="695889527"/> - <int key="NSDividerStyle">2</int> - </object> - </array> - <string key="NSFrameSize">{214, 359}</string> - <reference key="NSSuperview" ref="220052404"/> - <reference key="NSNextKeyView" ref="152099238"/> - <bool key="NSDoNotTranslateAutoresizingMask">YES</bool> - </object> - <object class="NSView" id="1061162984"> - <reference key="NSNextResponder" ref="220052404"/> - <int key="NSvFlags">258</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSScrollView" id="883675819"> - <reference key="NSNextResponder" ref="1061162984"/> - <int key="NSvFlags">4370</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="5721858"> - <reference key="NSNextResponder" ref="883675819"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTableView" id="828624540"> - <reference key="NSNextResponder" ref="5721858"/> - <int key="NSvFlags">4352</int> - <string key="NSFrameSize">{216, 166}</string> - <reference key="NSSuperview" ref="5721858"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="980722778"/> - <bool key="NSEnabled">YES</bool> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSControlAllowsExpansionToolTips">YES</bool> - <object class="_NSCornerView" key="NSCornerView"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <string key="NSFrameSize">{15, 20}</string> - </object> - <array class="NSMutableArray" key="NSTableColumns"> - <object class="NSTableColumn" id="651950067"> - <string key="NSIdentifier">name</string> - <double key="NSWidth">213</double> - <double key="NSMinWidth">43</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <object class="NSColor" key="NSBackgroundColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MC4zMzMzMzI5ODU2AA</bytes> - </object> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="686094632"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">272762880</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="828624540"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="828624540"/> - </object> - </array> - <double key="NSIntercellSpacingWidth">3</double> - <double key="NSIntercellSpacingHeight">2</double> - <object class="NSColor" key="NSBackgroundColor"> - <int key="NSColorSpace">6</int> - <string key="NSCatalogName">System</string> - <string key="NSColorName">_sourceListBackgroundColor</string> - <reference key="NSColor" ref="881210219"/> - </object> - <reference key="NSGridColor" ref="88855454"/> - <double key="NSRowHeight">45</double> - <int key="NSTvFlags">1379926016</int> - <reference key="NSDelegate"/> - <reference key="NSDataSource"/> - <int key="NSColumnAutoresizingStyle">2</int> - <int key="NSDraggingSourceMaskForLocal">-1</int> - <int key="NSDraggingSourceMaskForNonLocal">0</int> - <bool key="NSAllowsTypeSelect">NO</bool> - <int key="NSTableViewSelectionHighlightStyle">1</int> - <int key="NSTableViewDraggingDestinationStyle">1</int> - <int key="NSTableViewGroupRowStyle">1</int> - </object> - </array> - <string key="NSFrameSize">{216, 166}</string> - <reference key="NSSuperview" ref="883675819"/> - <reference key="NSNextKeyView" ref="828624540"/> - <reference key="NSDocView" ref="828624540"/> - <int key="NScvFlags">2</int> - </object> - <object class="NSScroller" id="29986399"> - <reference key="NSNextResponder" ref="883675819"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{-100, -100}, {15, 20}}</string> - <reference key="NSSuperview" ref="883675819"/> - <reference key="NSNextKeyView" ref="321115393"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <reference key="NSTarget" ref="883675819"/> - <string key="NSAction">_doScroller:</string> - </object> - <object class="NSScroller" id="321115393"> - <reference key="NSNextResponder" ref="883675819"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{-100, -100}, {141, 11}}</string> - <reference key="NSSuperview" ref="883675819"/> - <reference key="NSNextKeyView" ref="5721858"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">257</int> - <reference key="NSTarget" ref="883675819"/> - <string key="NSAction">_doScroller:</string> - </object> - </array> - <string key="NSFrame">{{-1, 0}, {216, 166}}</string> - <reference key="NSSuperview" ref="1061162984"/> - <reference key="NSNextKeyView" ref="29986399"/> - <int key="NSsFlags">133648</int> - <reference key="NSVScroller" ref="29986399"/> - <reference key="NSHScroller" ref="321115393"/> - <reference key="NSContentView" ref="5721858"/> - <bytes key="NSScrollAmts">QSAAAEEgAABCPAAAQjwAAA</bytes> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - <object class="NSScrollView" id="980722778"> - <reference key="NSNextResponder" ref="1061162984"/> - <int key="NSvFlags">4370</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="725874926"> - <reference key="NSNextResponder" ref="980722778"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTableView" id="366652030"> - <reference key="NSNextResponder" ref="725874926"/> - <int key="NSvFlags">4352</int> - <string key="NSFrameSize">{214, 166}</string> - <reference key="NSSuperview" ref="725874926"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="381962579"/> - <bool key="NSEnabled">YES</bool> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSControlAllowsExpansionToolTips">YES</bool> - <object class="_NSCornerView" key="NSCornerView"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <string key="NSFrameSize">{15, 20}</string> - </object> - <array class="NSMutableArray" key="NSTableColumns"> - <object class="NSTableColumn" id="698332053"> - <string key="NSIdentifier">info</string> - <double key="NSWidth">210.8690185546875</double> - <double key="NSMinWidth">42.868999481201172</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Information</string> - <reference key="NSSupport" ref="26"/> - <object class="NSColor" key="NSBackgroundColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MC4zMzMzMzI5ODU2AA</bytes> - </object> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="62743380"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">272762880</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="366652030"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="366652030"/> - </object> - </array> - <double key="NSIntercellSpacingWidth">3</double> - <double key="NSIntercellSpacingHeight">2</double> - <object class="NSColor" key="NSBackgroundColor"> - <int key="NSColorSpace">6</int> - <string key="NSCatalogName">System</string> - <string key="NSColorName">_sourceListBackgroundColor</string> - <reference key="NSColor" ref="881210219"/> - </object> - <reference key="NSGridColor" ref="88855454"/> - <double key="NSRowHeight">17</double> - <int key="NSTvFlags">1379926016</int> - <reference key="NSDelegate"/> - <reference key="NSDataSource"/> - <int key="NSColumnAutoresizingStyle">2</int> - <int key="NSDraggingSourceMaskForLocal">-1</int> - <int key="NSDraggingSourceMaskForNonLocal">0</int> - <bool key="NSAllowsTypeSelect">NO</bool> - <int key="NSTableViewSelectionHighlightStyle">1</int> - <int key="NSTableViewDraggingDestinationStyle">1</int> - <int key="NSTableViewGroupRowStyle">1</int> - </object> - </array> - <string key="NSFrameSize">{214, 166}</string> - <reference key="NSSuperview" ref="980722778"/> - <reference key="NSNextKeyView" ref="366652030"/> - <reference key="NSDocView" ref="366652030"/> - <int key="NScvFlags">2</int> - </object> - <object class="NSScroller" id="735507568"> - <reference key="NSNextResponder" ref="980722778"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{-100, -100}, {15, 20}}</string> - <reference key="NSSuperview" ref="980722778"/> - <reference key="NSNextKeyView" ref="562900810"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <reference key="NSTarget" ref="980722778"/> - <string key="NSAction">_doScroller:</string> - <double key="NSCurValue">0.48965516686439514</double> - </object> - <object class="NSScroller" id="562900810"> - <reference key="NSNextResponder" ref="980722778"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{-100, -100}, {141, 11}}</string> - <reference key="NSSuperview" ref="980722778"/> - <reference key="NSNextKeyView" ref="725874926"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">257</int> - <reference key="NSTarget" ref="980722778"/> - <string key="NSAction">_doScroller:</string> - </object> - </array> - <string key="NSFrameSize">{214, 166}</string> - <reference key="NSSuperview" ref="1061162984"/> - <reference key="NSNextKeyView" ref="735507568"/> - <int key="NSsFlags">133632</int> - <reference key="NSVScroller" ref="735507568"/> - <reference key="NSHScroller" ref="562900810"/> - <reference key="NSContentView" ref="725874926"/> - <bytes key="NSScrollAmts">QSAAAEEgAABBmAAAQZgAAA</bytes> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - </array> - <string key="NSFrame">{{0, 360}, {214, 166}}</string> - <reference key="NSSuperview" ref="220052404"/> - <reference key="NSNextKeyView" ref="883675819"/> - <bool key="NSDoNotTranslateAutoresizingMask">YES</bool> - </object> - </array> - <string key="NSFrame">{{0, 23}, {214, 526}}</string> - <reference key="NSSuperview" ref="841205379"/> - <reference key="NSNextKeyView" ref="315394535"/> - <int key="NSDividerStyle">2</int> - </object> - <object class="NSImageView" id="381962579"> - <reference key="NSNextResponder" ref="841205379"/> - <int key="NSvFlags">290</int> - <set class="NSMutableSet" key="NSDragTypes"> - <string>Apple PDF pasteboard type</string> - <string>Apple PICT pasteboard type</string> - <string>Apple PNG pasteboard type</string> - <string>NSFilenamesPboardType</string> - <string>NeXT Encapsulated PostScript v1.2 pasteboard type</string> - <string>NeXT TIFF v4.0 pasteboard type</string> - </set> - <string key="NSFrameSize">{214, 23}</string> - <reference key="NSSuperview" ref="841205379"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="819189090"/> - <bool key="NSEnabled">YES</bool> - <object class="NSImageCell" key="NSCell" id="227866542"> - <int key="NSCellFlags">0</int> - <int key="NSCellFlags2">33554432</int> - <object class="NSCustomResource" key="NSContents" id="931244262"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">button_bar_spacer</string> - </object> - <int key="NSAlign">0</int> - <int key="NSScale">1</int> - <int key="NSStyle">0</int> - <bool key="NSAnimates">NO</bool> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSEditable">YES</bool> - </object> - <object class="NSImageView" id="678302833"> - <reference key="NSNextResponder" ref="841205379"/> - <int key="NSvFlags">257</int> - <set class="NSMutableSet" key="NSDragTypes"> - <string>Apple PDF pasteboard type</string> - <string>Apple PICT pasteboard type</string> - <string>Apple PNG pasteboard type</string> - <string>NSFilenamesPboardType</string> - <string>NeXT Encapsulated PostScript v1.2 pasteboard type</string> - <string>NeXT TIFF v4.0 pasteboard type</string> - </set> - <string key="NSFrame">{{199, 0}, {15, 23}}</string> - <reference key="NSSuperview" ref="841205379"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="630926746"/> - <bool key="NSEnabled">YES</bool> - <object class="NSImageCell" key="NSCell" id="972774468"> - <int key="NSCellFlags">0</int> - <int key="NSCellFlags2">33554432</int> - <object class="NSCustomResource" key="NSContents"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">button_bar_handle</string> - </object> - <int key="NSAlign">0</int> - <int key="NSScale">1</int> - <int key="NSStyle">0</int> - <bool key="NSAnimates">NO</bool> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSEditable">YES</bool> - </object> - <object class="NSButton" id="99671504"> - <reference key="NSNextResponder" ref="841205379"/> - <int key="NSvFlags">260</int> - <string key="NSFrame">{{-1, -1}, {32, 25}}</string> - <reference key="NSSuperview" ref="841205379"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="220052404"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="616383319"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="99671504"/> - <int key="NSButtonFlags">-2042347520</int> - <int key="NSButtonFlags2">35</int> - <object class="NSCustomResource" key="NSNormalImage" id="813789704"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">button_add</string> - </object> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="559497073"> - <reference key="NSNextResponder" ref="841205379"/> - <int key="NSvFlags">260</int> - <string key="NSFrame">{{92, -1}, {32, 25}}</string> - <reference key="NSSuperview" ref="841205379"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="678302833"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="204889426"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="559497073"/> - <int key="NSButtonFlags">-935051264</int> - <int key="NSButtonFlags2">35</int> - <object class="NSCustomResource" key="NSNormalImage" id="932297549"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">button_pane_hide</string> - </object> - <object class="NSCustomResource" key="NSAlternateImage" id="942994782"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">button_pane_show</string> - </object> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSPopUpButton" id="819189090"> - <reference key="NSNextResponder" ref="841205379"/> - <int key="NSvFlags">260</int> - <string key="NSFrame">{{29, 0}, {36, 23}}</string> - <reference key="NSSuperview" ref="841205379"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="466961207"/> - <string key="NSHuggingPriority">{250, 250}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="1070180181"> - <int key="NSCellFlags">-2080374720</int> - <int key="NSCellFlags2">134219776</int> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="819189090"/> - <int key="NSButtonFlags">-2044051456</int> - <int key="NSButtonFlags2">2</int> - <object class="NSFont" key="NSAlternateImage" id="959847048"> - <string key="NSName">.LucidaGrandeUI</string> - <double key="NSSize">13</double> - <int key="NSfFlags">16</int> - </object> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <object class="NSMenuItem" key="NSMenuItem" id="185872988"> - <reference key="NSMenu" ref="136120153"/> - <bool key="NSIsHidden">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <object class="NSCustomResource" key="NSImage" id="158871648"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">button_action</string> - </object> - <object class="NSCustomResource" key="NSOnImage" id="803427867"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">NSMenuCheckmark</string> - </object> - <object class="NSCustomResource" key="NSMixedImage" id="245717585"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">NSMenuMixedState</string> - </object> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="1070180181"/> - </object> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="136120153"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"> - <reference ref="185872988"/> - <object class="NSMenuItem" id="767969003"> - <reference key="NSMenu" ref="136120153"/> - <string key="NSTitle">Rename Table...</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="1070180181"/> - </object> - <object class="NSMenuItem" id="35600651"> - <reference key="NSMenu" ref="136120153"/> - <string key="NSTitle">Duplicate Table...</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="1070180181"/> - </object> - <object class="NSMenuItem" id="508046468"> - <reference key="NSMenu" ref="136120153"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="1070180181"/> - </object> - <object class="NSMenuItem" id="34195582"> - <reference key="NSMenu" ref="136120153"/> - <string key="NSTitle">Truncate Table</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="1070180181"/> - </object> - <object class="NSMenuItem" id="1000459683"> - <reference key="NSMenu" ref="136120153"/> - <string key="NSTitle">Remove Table</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="1070180181"/> - </object> - <object class="NSMenuItem" id="414744242"> - <reference key="NSMenu" ref="136120153"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="1070180181"/> - </object> - <object class="NSMenuItem" id="457022029"> - <reference key="NSMenu" ref="136120153"/> - <string key="NSTitle">Open Table in New Tab</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="1070180181"/> - </object> - <object class="NSMenuItem" id="441784509"> - <reference key="NSMenu" ref="136120153"/> - <bool key="NSIsAlternate">YES</bool> - <string key="NSTitle">Open Table in New Window</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">524288</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="1070180181"/> - </object> - <object class="NSMenuItem" id="326741175"> - <reference key="NSMenu" ref="136120153"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="1070180181"/> - </object> - <object class="NSMenuItem" id="1062524995"> - <reference key="NSMenu" ref="136120153"/> - <string key="NSTitle">Export</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">submenuAction:</string> - <reference key="NSTarget" ref="403633916"/> - <object class="NSMenu" key="NSSubmenu" id="403633916"> - <string key="NSTitle">Export</string> - <array class="NSMutableArray" key="NSMenuItems"> - <object class="NSMenuItem" id="990722358"> - <reference key="NSMenu" ref="403633916"/> - <string key="NSTitle">As SQL dump...</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="1070180181"/> - </object> - <object class="NSMenuItem" id="669933272"> - <reference key="NSMenu" ref="403633916"/> - <string key="NSTitle">As CSV file...</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">1</int> - <reference key="NSTarget" ref="1070180181"/> - </object> - <object class="NSMenuItem" id="746120465"> - <reference key="NSMenu" ref="403633916"/> - <string key="NSTitle">As XML file...</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">2</int> - <reference key="NSTarget" ref="1070180181"/> - </object> - </array> - </object> - </object> - <object class="NSMenuItem" id="744514514"> - <reference key="NSMenu" ref="136120153"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="1070180181"/> - </object> - <object class="NSMenuItem" id="363570133"> - <reference key="NSMenu" ref="136120153"/> - <string key="NSTitle">Show Create Table Syntax...</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="1070180181"/> - </object> - <object class="NSMenuItem" id="664336387"> - <reference key="NSMenu" ref="136120153"/> - <string key="NSTitle">Copy Create Table Syntax</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="1070180181"/> - </object> - </array> - </object> - <bool key="NSPullDown">YES</bool> - <int key="NSPreferredEdge">1</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="466961207"> - <reference key="NSNextResponder" ref="841205379"/> - <int key="NSvFlags">260</int> - <string key="NSFrame">{{61, -1}, {32, 25}}</string> - <reference key="NSSuperview" ref="841205379"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="559497073"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="45851570"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="466961207"/> - <int key="NSButtonFlags">-2042347520</int> - <int key="NSButtonFlags2">35</int> - <object class="NSCustomResource" key="NSNormalImage" id="24447544"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">button_refresh</string> - </object> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - </array> - <string key="NSFrameSize">{214, 549}</string> - <reference key="NSSuperview" ref="310278688"/> - <reference key="NSNextKeyView" ref="99671504"/> - <bool key="NSDoNotTranslateAutoresizingMask">YES</bool> - </object> - <object class="NSView" id="630926746"> - <reference key="NSNextResponder" ref="310278688"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTabView" id="280187924"> - <reference key="NSNextResponder" ref="630926746"/> - <int key="NSvFlags">274</int> - <string key="NSFrame">{{-7, -10}, {741, 564}}</string> - <reference key="NSSuperview" ref="630926746"/> - <reference key="NSNextKeyView" ref="113573997"/> - <array class="NSMutableArray" key="NSTabViewItems"> - <object class="NSTabViewItem" id="449203689"> - <string key="NSIdentifier">source</string> - <object class="NSView" key="NSView" id="113573997"> - <reference key="NSNextResponder" ref="280187924"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSSplitView" id="204281121"> - <reference key="NSNextResponder" ref="113573997"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSCustomView" id="981492694"> - <reference key="NSNextResponder" ref="204281121"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSButton" id="1070311218"> - <reference key="NSNextResponder" ref="981492694"/> - <int key="NSvFlags">-2147483356</int> - <string key="NSFrame">{{124, -1}, {33, 25}}</string> - <reference key="NSSuperview" ref="981492694"/> - <reference key="NSNextKeyView" ref="202426453"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="605356234"> - <int key="NSCellFlags">-2080374784</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="1070311218"/> - <int key="NSButtonFlags">-2041823232</int> - <int key="NSButtonFlags2">35</int> - <object class="NSCustomResource" key="NSNormalImage"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">button_info_pane_show</string> - </object> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSScrollView" id="617988703"> - <reference key="NSNextResponder" ref="981492694"/> - <int key="NSvFlags">4370</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="971612446"> - <reference key="NSNextResponder" ref="617988703"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTableView" id="977333304"> - <reference key="NSNextResponder" ref="971612446"/> - <int key="NSvFlags">4352</int> - <string key="NSFrameSize">{694, 288}</string> - <reference key="NSSuperview" ref="971612446"/> - <reference key="NSNextKeyView" ref="1057730379"/> - <bool key="NSEnabled">YES</bool> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSControlAllowsExpansionToolTips">YES</bool> - <object class="NSTableHeaderView" key="NSHeaderView" id="594274975"> - <reference key="NSNextResponder" ref="427920699"/> - <int key="NSvFlags">256</int> - <string key="NSFrameSize">{694, 17}</string> - <reference key="NSSuperview" ref="427920699"/> - <reference key="NSNextKeyView" ref="971612446"/> - <reference key="NSTableView" ref="977333304"/> - </object> - <object class="_NSCornerView" key="NSCornerView" id="829483012"> - <reference key="NSNextResponder" ref="617988703"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrameSize">{15, 20}</string> - <reference key="NSSuperview" ref="617988703"/> - <reference key="NSNextKeyView" ref="427920699"/> - </object> - <array class="NSMutableArray" key="NSTableColumns"> - <object class="NSTableColumn" id="243202311"> - <string key="NSIdentifier">name</string> - <double key="NSWidth">57.5</double> - <double key="NSMinWidth">50</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Field</string> - <reference key="NSSupport" ref="26"/> - <object class="NSColor" key="NSBackgroundColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MC4zMzMzMzI5ODU2AA</bytes> - </object> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="804651188"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="977333304"/> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="977333304"/> - </object> - <object class="NSTableColumn" id="1071872427"> - <string key="NSIdentifier">type</string> - <double key="NSWidth">70</double> - <double key="NSMinWidth">65</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Type</string> - <reference key="NSSupport" ref="26"/> - <object class="NSColor" key="NSBackgroundColor" id="110037201"> - <int key="NSColorSpace">6</int> - <string key="NSCatalogName">System</string> - <string key="NSColorName">headerColor</string> - <reference key="NSColor" ref="457906098"/> - </object> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSComboBoxCell" key="NSDataCell" id="381357793"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="977333304"/> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - <int key="NSVisibleItemCount">10</int> - <bool key="NSHasVerticalScroller">YES</bool> - <bool key="NSUsesDataSource">YES</bool> - <bool key="NSCompletes">YES</bool> - <nil key="NSDataSource"/> - <object class="NSComboTableView" key="NSTableView" id="591355905"> - <reference key="NSNextResponder"/> - <int key="NSvFlags">274</int> - <string key="NSFrameSize">{15, 0}</string> - <reference key="NSSuperview"/> - <reference key="NSWindow"/> - <bool key="NSEnabled">YES</bool> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSControlAllowsExpansionToolTips">YES</bool> - <array class="NSMutableArray" key="NSTableColumns"> - <object class="NSTableColumn"> - <string key="NSIdentifier">0</string> - <double key="NSWidth">12</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">3.4028234663852886e+38</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell"> - <int key="NSCellFlags">337641536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Field</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="591355905"/> - <object class="NSColor" key="NSBackgroundColor" id="866033095"> - <int key="NSColorSpace">6</int> - <string key="NSCatalogName">System</string> - <string key="NSColorName">controlBackgroundColor</string> - <reference key="NSColor" ref="747589274"/> - </object> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <reference key="NSTableView" ref="591355905"/> - </object> - </array> - <double key="NSIntercellSpacingWidth">3</double> - <double key="NSIntercellSpacingHeight">2</double> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSGridColor" ref="88855454"/> - <double key="NSRowHeight">16</double> - <string key="NSAction">tableViewAction:</string> - <int key="NSTvFlags">-767524864</int> - <reference key="NSTarget" ref="381357793"/> - <int key="NSColumnAutoresizingStyle">1</int> - <int key="NSDraggingSourceMaskForLocal">-1</int> - <int key="NSDraggingSourceMaskForNonLocal">0</int> - <bool key="NSAllowsTypeSelect">YES</bool> - <int key="NSTableViewDraggingDestinationStyle">0</int> - <int key="NSTableViewGroupRowStyle">1</int> - </object> - <bool key="NSButtonBordered">NO</bool> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="977333304"/> - </object> - <object class="NSTableColumn" id="445098808"> - <string key="NSIdentifier">length</string> - <double key="NSWidth">42.5</double> - <double key="NSMinWidth">25</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Length</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="139392153"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="977333304"/> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="977333304"/> - </object> - <object class="NSTableColumn" id="352497767"> - <string key="NSIdentifier">unsigned</string> - <double key="NSWidth">54</double> - <double key="NSMinWidth">14</double> - <double key="NSMaxWidth">82</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Unsigned</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSButtonCell" key="NSDataCell" id="87089816"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">131072</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="977333304"/> - <int key="NSButtonFlags">1215320320</int> - <int key="NSButtonFlags2">2</int> - <object class="NSCustomResource" key="NSNormalImage" id="672937012"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">NSSwitch</string> - </object> - <object class="NSButtonImageSource" key="NSAlternateImage" id="662955722"> - <string key="NSImageName">NSSwitch</string> - </object> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <int key="NSResizingMask">2</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="977333304"/> - </object> - <object class="NSTableColumn" id="511738572"> - <string key="NSIdentifier">zerofill</string> - <double key="NSWidth">41</double> - <double key="NSMinWidth">14</double> - <double key="NSMaxWidth">84</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Zerofill</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSButtonCell" key="NSDataCell" id="629296588"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">131072</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="977333304"/> - <int key="NSButtonFlags">1215320320</int> - <int key="NSButtonFlags2">2</int> - <reference key="NSNormalImage" ref="672937012"/> - <reference key="NSAlternateImage" ref="662955722"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <int key="NSResizingMask">2</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="977333304"/> - </object> - <object class="NSTableColumn" id="897097881"> - <string key="NSIdentifier">binary</string> - <double key="NSWidth">37</double> - <double key="NSMinWidth">14</double> - <double key="NSMaxWidth">37</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Binary</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSButtonCell" key="NSDataCell" id="410734081"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">131072</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="977333304"/> - <int key="NSButtonFlags">1215320320</int> - <int key="NSButtonFlags2">2</int> - <reference key="NSNormalImage" ref="672937012"/> - <reference key="NSAlternateImage" ref="662955722"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <int key="NSResizingMask">2</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="977333304"/> - </object> - <object class="NSTableColumn" id="574703638"> - <string key="NSIdentifier">null</string> - <double key="NSWidth">57</double> - <double key="NSMinWidth">14</double> - <double key="NSMaxWidth">78</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Allow Null</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSButtonCell" key="NSDataCell" id="562235954"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">131072</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="977333304"/> - <int key="NSButtonFlags">1215320320</int> - <int key="NSButtonFlags2">2</int> - <reference key="NSNormalImage" ref="672937012"/> - <reference key="NSAlternateImage" ref="662955722"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <int key="NSResizingMask">2</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="977333304"/> - </object> - <object class="NSTableColumn" id="409792733"> - <string key="NSIdentifier">Key</string> - <double key="NSWidth">26</double> - <double key="NSMinWidth">26</double> - <double key="NSMaxWidth">60</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Key</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="249661974"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="977333304"/> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">2</int> - <bool key="NSIsResizeable">YES</bool> - <reference key="NSTableView" ref="977333304"/> - </object> - <object class="NSTableColumn" id="368094768"> - <string key="NSIdentifier">default</string> - <double key="NSWidth">44</double> - <double key="NSMinWidth">34</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Default</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="365139124"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="977333304"/> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="977333304"/> - </object> - <object class="NSTableColumn" id="674189853"> - <string key="NSIdentifier">Extra</string> - <double key="NSWidth">66</double> - <double key="NSMinWidth">60</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Extra</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSComboBoxCell" key="NSDataCell" id="617145453"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="977333304"/> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - <int key="NSVisibleItemCount">4</int> - <bool key="NSHasVerticalScroller">YES</bool> - <bool key="NSCompletes">YES</bool> - <object class="NSComboTableView" key="NSTableView" id="408402987"> - <reference key="NSNextResponder"/> - <int key="NSvFlags">274</int> - <string key="NSFrameSize">{15, 0}</string> - <reference key="NSSuperview"/> - <reference key="NSWindow"/> - <bool key="NSEnabled">YES</bool> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSControlAllowsExpansionToolTips">YES</bool> - <array class="NSMutableArray" key="NSTableColumns"> - <object class="NSTableColumn"> - <string key="NSIdentifier">0</string> - <double key="NSWidth">12</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">3.4028234663852886e+38</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell"> - <int key="NSCellFlags">337641536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Field</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="408402987"/> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <reference key="NSTableView" ref="408402987"/> - </object> - </array> - <double key="NSIntercellSpacingWidth">3</double> - <double key="NSIntercellSpacingHeight">2</double> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSGridColor" ref="88855454"/> - <double key="NSRowHeight">16</double> - <string key="NSAction">tableViewAction:</string> - <int key="NSTvFlags">-767524864</int> - <reference key="NSDelegate" ref="617145453"/> - <reference key="NSDataSource" ref="617145453"/> - <reference key="NSTarget" ref="617145453"/> - <int key="NSColumnAutoresizingStyle">1</int> - <int key="NSDraggingSourceMaskForLocal">-1</int> - <int key="NSDraggingSourceMaskForNonLocal">0</int> - <bool key="NSAllowsTypeSelect">YES</bool> - <int key="NSTableViewDraggingDestinationStyle">0</int> - <int key="NSTableViewGroupRowStyle">1</int> - </object> - <bool key="NSButtonBordered">NO</bool> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="977333304"/> - </object> - <object class="NSTableColumn" id="55597770"> - <string key="NSIdentifier">encoding</string> - <double key="NSWidth">55.5</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Encoding</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSPopUpButtonCell" key="NSDataCell" id="732109310"> - <int key="NSCellFlags">71303232</int> - <int key="NSCellFlags2">133120</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="977333304"/> - <int key="NSButtonFlags">-1241366528</int> - <int key="NSButtonFlags2">129</int> - <object class="NSFont" key="NSAlternateImage" id="155126620"> - <string key="NSName">.LucidaGrandeUI</string> - <double key="NSSize">11</double> - <int key="NSfFlags">16</int> - </object> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <nil key="NSMenuItem"/> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="856601787"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"/> - </object> - <int key="NSSelectedIndex">-1</int> - <int key="NSPreferredEdge">3</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">1</int> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="977333304"/> - </object> - <object class="NSTableColumn" id="310575395"> - <string key="NSIdentifier">collation</string> - <double key="NSWidth">60.5</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Collation</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSPopUpButtonCell" key="NSDataCell" id="511865308"> - <int key="NSCellFlags">71303232</int> - <int key="NSCellFlags2">133120</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="977333304"/> - <int key="NSButtonFlags">100810752</int> - <int key="NSButtonFlags2">129</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <nil key="NSMenuItem"/> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="65801928"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"/> - </object> - <int key="NSSelectedIndex">-1</int> - <int key="NSPreferredEdge">3</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">1</int> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="977333304"/> - </object> - <object class="NSTableColumn" id="446023352"> - <string key="NSIdentifier">comment</string> - <double key="NSWidth">42</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Comment</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="329669870"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="977333304"/> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="977333304"/> - </object> - </array> - <double key="NSIntercellSpacingWidth">3</double> - <double key="NSIntercellSpacingHeight">2</double> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSGridColor" ref="88855454"/> - <double key="NSRowHeight">16</double> - <int key="NSTvFlags">-742359040</int> - <reference key="NSDelegate"/> - <reference key="NSDataSource"/> - <string key="NSAutosaveName">SPTableStructureSource</string> - <int key="NSColumnAutoresizingStyle">1</int> - <int key="NSDraggingSourceMaskForLocal">-1</int> - <int key="NSDraggingSourceMaskForNonLocal">0</int> - <bool key="NSAllowsTypeSelect">YES</bool> - <int key="NSTableViewDraggingDestinationStyle">0</int> - <int key="NSTableViewGroupRowStyle">1</int> - </object> - </array> - <string key="NSFrame">{{1, 17}, {694, 288}}</string> - <reference key="NSSuperview" ref="617988703"/> - <reference key="NSNextKeyView" ref="977333304"/> - <reference key="NSDocView" ref="977333304"/> - <reference key="NSBGColor" ref="866033095"/> - <int key="NScvFlags">4</int> - </object> - <object class="NSClipView" id="427920699"> - <reference key="NSNextResponder" ref="617988703"/> - <int key="NSvFlags">2338</int> - <array class="NSMutableArray" key="NSSubviews"> - <reference ref="594274975"/> - </array> - <string key="NSFrame">{{1, 0}, {694, 17}}</string> - <reference key="NSSuperview" ref="617988703"/> - <reference key="NSNextKeyView" ref="594274975"/> - <reference key="NSDocView" ref="594274975"/> - </object> - <object class="NSScroller" id="346829497"> - <reference key="NSNextResponder" ref="617988703"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{674, 17}, {15, 274}}</string> - <reference key="NSSuperview" ref="617988703"/> - <reference key="NSNextKeyView" ref="400841207"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <reference key="NSTarget" ref="617988703"/> - <string key="NSAction">_doScroller:</string> - <double key="NSPercent">0.94791666666666663</double> - </object> - <object class="NSScroller" id="1057730379"> - <reference key="NSNextResponder" ref="617988703"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{1, 289}, {689, 16}}</string> - <reference key="NSSuperview" ref="617988703"/> - <reference key="NSNextKeyView" ref="346829497"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">1</int> - <reference key="NSTarget" ref="617988703"/> - <string key="NSAction">_doScroller:</string> - </object> - <reference ref="829483012"/> - </array> - <string key="NSFrame">{{-1, 22}, {696, 306}}</string> - <reference key="NSSuperview" ref="981492694"/> - <reference key="NSNextKeyView" ref="829483012"/> - <int key="NSsFlags">133682</int> - <reference key="NSVScroller" ref="346829497"/> - <reference key="NSHScroller" ref="1057730379"/> - <reference key="NSContentView" ref="971612446"/> - <reference key="NSHeaderClipView" ref="427920699"/> - <reference key="NSCornerView" ref="829483012"/> - <bytes key="NSScrollAmts">QSAAAEEgAABBkAAAQZAAAA</bytes> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - <object class="NSButton" id="400841207"> - <reference key="NSNextResponder" ref="981492694"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{-1, -1}, {32, 25}}</string> - <reference key="NSSuperview" ref="981492694"/> - <reference key="NSNextKeyView" ref="997907892"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="51440813"> - <int key="NSCellFlags">-1543503872</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="400841207"/> - <int key="NSButtonFlags">-2042347520</int> - <int key="NSButtonFlags2">402653219</int> - <reference key="NSNormalImage" ref="813789704"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">a</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="1031766954"> - <reference key="NSNextResponder" ref="981492694"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{93, -1}, {32, 25}}</string> - <reference key="NSSuperview" ref="981492694"/> - <reference key="NSNextKeyView" ref="1070311218"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="815322347"> - <int key="NSCellFlags">-2080374784</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="1031766954"/> - <int key="NSButtonFlags">-2041823232</int> - <int key="NSButtonFlags2">268435491</int> - <reference key="NSNormalImage" ref="24447544"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">r</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="997907892"> - <reference key="NSNextResponder" ref="981492694"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{30, -1}, {32, 25}}</string> - <reference key="NSSuperview" ref="981492694"/> - <reference key="NSNextKeyView" ref="927360703"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="822972303"> - <int key="NSCellFlags">-1543503872</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="997907892"/> - <int key="NSButtonFlags">-2041823232</int> - <int key="NSButtonFlags2">35</int> - <object class="NSCustomResource" key="NSNormalImage" id="191705258"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">button_remove</string> - </object> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"></string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="927360703"> - <reference key="NSNextResponder" ref="981492694"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{61, -1}, {32, 25}}</string> - <reference key="NSSuperview" ref="981492694"/> - <reference key="NSNextKeyView" ref="1031766954"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="545699528"> - <int key="NSCellFlags">-1543503872</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="927360703"/> - <int key="NSButtonFlags">-2042347520</int> - <int key="NSButtonFlags2">268435491</int> - <object class="NSCustomResource" key="NSNormalImage" id="906472961"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">button_duplicate</string> - </object> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">d</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSPopUpButton" id="1005939238"> - <reference key="NSNextResponder" ref="981492694"/> - <int key="NSvFlags">289</int> - <string key="NSFrame">{{663, 0}, {36, 23}}</string> - <reference key="NSSuperview" ref="981492694"/> - <reference key="NSNextKeyView" ref="162304252"/> - <string key="NSHuggingPriority">{250, 250}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="550184118"> - <int key="NSCellFlags">-2080374720</int> - <int key="NSCellFlags2">134219776</int> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="1005939238"/> - <int key="NSButtonFlags">-2044051456</int> - <int key="NSButtonFlags2">2</int> - <reference key="NSAlternateImage" ref="959847048"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <object class="NSMenuItem" key="NSMenuItem" id="1027654780"> - <reference key="NSMenu" ref="56045332"/> - <bool key="NSIsHidden">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <reference key="NSImage" ref="158871648"/> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="550184118"/> - </object> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="56045332"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"> - <reference ref="1027654780"/> - <object class="NSMenuItem" id="548236546"> - <reference key="NSMenu" ref="56045332"/> - <string key="NSTitle">View Columns</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">submenuAction:</string> - <reference key="NSTarget" ref="142860202"/> - <object class="NSMenu" key="NSSubmenu" id="142860202"> - <string key="NSTitle">View Columns</string> - <array class="NSMutableArray" key="NSMenuItems"> - <object class="NSMenuItem" id="428444087"> - <reference key="NSMenu" ref="142860202"/> - <string key="NSTitle">Key</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">7</int> - <reference key="NSTarget" ref="550184118"/> - </object> - <object class="NSMenuItem" id="589031743"> - <reference key="NSMenu" ref="142860202"/> - <string key="NSTitle">Encoding</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">10</int> - <reference key="NSTarget" ref="550184118"/> - </object> - <object class="NSMenuItem" id="45971758"> - <reference key="NSMenu" ref="142860202"/> - <string key="NSTitle">Collation</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">11</int> - <reference key="NSTarget" ref="550184118"/> - </object> - <object class="NSMenuItem" id="574879768"> - <reference key="NSMenu" ref="142860202"/> - <string key="NSTitle">Comment</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">12</int> - <reference key="NSTarget" ref="550184118"/> - </object> - </array> - </object> - </object> - </array> - </object> - <bool key="NSPullDown">YES</bool> - <int key="NSPreferredEdge">1</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSImageView" id="202426453"> - <reference key="NSNextResponder" ref="981492694"/> - <int key="NSvFlags">290</int> - <set class="NSMutableSet" key="NSDragTypes"> - <string>Apple PDF pasteboard type</string> - <string>Apple PICT pasteboard type</string> - <string>Apple PNG pasteboard type</string> - <string>NSFilenamesPboardType</string> - <string>NeXT Encapsulated PostScript v1.2 pasteboard type</string> - <string>NeXT TIFF v4.0 pasteboard type</string> - </set> - <string key="NSFrame">{{125, 0}, {507, 23}}</string> - <reference key="NSSuperview" ref="981492694"/> - <reference key="NSNextKeyView" ref="978103818"/> - <bool key="NSEnabled">YES</bool> - <object class="NSImageCell" key="NSCell" id="231240181"> - <int key="NSCellFlags">0</int> - <int key="NSCellFlags2">33554432</int> - <reference key="NSContents" ref="931244262"/> - <int key="NSAlign">0</int> - <int key="NSScale">1</int> - <int key="NSStyle">0</int> - <bool key="NSAnimates">NO</bool> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSEditable">YES</bool> - </object> - <object class="NSButton" id="978103818"> - <reference key="NSNextResponder" ref="981492694"/> - <int key="NSvFlags">289</int> - <string key="NSFrame">{{632, -1}, {32, 25}}</string> - <reference key="NSSuperview" ref="981492694"/> - <reference key="NSNextKeyView" ref="1005939238"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="884552548"> - <int key="NSCellFlags">-1543503872</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="978103818"/> - <int key="NSButtonFlags">-2041823232</int> - <int key="NSButtonFlags2">268435491</int> - <object class="NSCustomResource" key="NSNormalImage"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">button_edit</string> - </object> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">4</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - </array> - <string key="NSFrameSize">{695, 328}</string> - <reference key="NSSuperview" ref="204281121"/> - <reference key="NSNextKeyView" ref="617988703"/> - <bool key="NSDoNotTranslateAutoresizingMask">YES</bool> - <string key="NSClassName">NSView</string> - </object> - <object class="NSCustomView" id="162304252"> - <reference key="NSNextResponder" ref="204281121"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSView" id="955470299"> - <reference key="NSNextResponder" ref="162304252"/> - <int key="NSvFlags">266</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextField" id="82207312"> - <reference key="NSNextResponder" ref="955470299"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{3, 3}, {155, 14}}</string> - <reference key="NSSuperview" ref="955470299"/> - <reference key="NSNextKeyView" ref="362266093"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="962970972"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272761856</int> - <string key="NSContents">INDEXES</string> - <object class="NSFont" key="NSSupport" id="27"> - <bool key="IBIsSystemFont">YES</bool> - <double key="NSSize">11</double> - <int key="NSfFlags">3357</int> - </object> - <reference key="NSControlView" ref="82207312"/> - <object class="NSColor" key="NSBackgroundColor"> - <int key="NSColorSpace">1</int> - <bytes key="NSRGB">MC45MTExMjEyNDkyIDAuOTExMTIxMjQ5MiAwLjkxMTEyMTI0OTIgMAA</bytes> - </object> - <object class="NSColor" key="NSTextColor"> - <int key="NSColorSpace">1</int> - <bytes key="NSRGB">MC4zNjA3ODQzMjIgMC40MzEzNzI1NTMxIDAuNTA1ODgyMzgyNAA</bytes> - </object> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSImageView" id="362266093"> - <reference key="NSNextResponder" ref="955470299"/> - <int key="NSvFlags">265</int> - <set class="NSMutableSet" key="NSDragTypes"> - <string>Apple PDF pasteboard type</string> - <string>Apple PICT pasteboard type</string> - <string>Apple PNG pasteboard type</string> - <string>NSFilenamesPboardType</string> - <string>NeXT Encapsulated PostScript v1.2 pasteboard type</string> - <string>NeXT TIFF v4.0 pasteboard type</string> - </set> - <string key="NSFrame">{{678, 3}, {10, 13}}</string> - <reference key="NSSuperview" ref="955470299"/> - <reference key="NSNextKeyView" ref="601320525"/> - <bool key="NSEnabled">YES</bool> - <object class="NSImageCell" key="NSCell" id="632600614"> - <int key="NSCellFlags">0</int> - <int key="NSCellFlags2">33554432</int> - <object class="NSCustomResource" key="NSContents"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">grabber-horizontal</string> - </object> - <int key="NSAlign">0</int> - <int key="NSScale">2</int> - <int key="NSStyle">0</int> - <bool key="NSAnimates">NO</bool> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSEditable">YES</bool> - </object> - </array> - <string key="NSFrame">{{0, 181}, {695, 20}}</string> - <reference key="NSSuperview" ref="162304252"/> - <reference key="NSNextKeyView" ref="82207312"/> - </object> - <object class="NSScrollView" id="601320525"> - <reference key="NSNextResponder" ref="162304252"/> - <int key="NSvFlags">4370</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="472300297"> - <reference key="NSNextResponder" ref="601320525"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTableView" id="71493486"> - <reference key="NSNextResponder" ref="472300297"/> - <int key="NSvFlags">4352</int> - <string key="NSFrameSize">{694, 141}</string> - <reference key="NSSuperview" ref="472300297"/> - <reference key="NSNextKeyView" ref="673560219"/> - <bool key="NSEnabled">YES</bool> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSControlAllowsExpansionToolTips">YES</bool> - <object class="NSTableHeaderView" key="NSHeaderView" id="262774116"> - <reference key="NSNextResponder" ref="982675320"/> - <int key="NSvFlags">256</int> - <string key="NSFrameSize">{694, 17}</string> - <reference key="NSSuperview" ref="982675320"/> - <reference key="NSNextKeyView" ref="472300297"/> - <reference key="NSTableView" ref="71493486"/> - </object> - <object class="_NSCornerView" key="NSCornerView" id="542930762"> - <reference key="NSNextResponder" ref="601320525"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrameSize">{15, 20}</string> - <reference key="NSSuperview" ref="601320525"/> - <reference key="NSNextKeyView" ref="982675320"/> - </object> - <array class="NSMutableArray" key="NSTableColumns"> - <object class="NSTableColumn" id="836088148"> - <string key="NSIdentifier">Non_unique</string> - <double key="NSWidth">80</double> - <double key="NSMinWidth">40</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Non_unique</string> - <reference key="NSSupport" ref="26"/> - <object class="NSColor" key="NSBackgroundColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MC4zMzMzMzI5ODU2AA</bytes> - </object> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="682005233"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="71493486"/> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <reference key="NSTableView" ref="71493486"/> - </object> - <object class="NSTableColumn" id="442623828"> - <string key="NSIdentifier">Key_name</string> - <double key="NSWidth">70</double> - <double key="NSMinWidth">40</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Key_name</string> - <reference key="NSSupport" ref="26"/> - <object class="NSColor" key="NSBackgroundColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MC4zMzMzMzI5ODU2AA</bytes> - </object> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="5426640"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="71493486"/> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <reference key="NSTableView" ref="71493486"/> - </object> - <object class="NSTableColumn" id="867527160"> - <string key="NSIdentifier">Seq_in_index</string> - <double key="NSWidth">82</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Seq_in_index</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="321431771"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="71493486"/> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <reference key="NSTableView" ref="71493486"/> - </object> - <object class="NSTableColumn" id="780491378"> - <string key="NSIdentifier">Column_name</string> - <double key="NSWidth">89</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Column_name</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="683876628"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="71493486"/> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <reference key="NSTableView" ref="71493486"/> - </object> - <object class="NSTableColumn" id="132049433"> - <string key="NSIdentifier">Collation</string> - <double key="NSWidth">60</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Collation</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="634069657"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="71493486"/> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <reference key="NSTableView" ref="71493486"/> - </object> - <object class="NSTableColumn" id="421504808"> - <string key="NSIdentifier">Cardinality</string> - <double key="NSWidth">70</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Cardinality</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="1042677827"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="71493486"/> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <reference key="NSTableView" ref="71493486"/> - </object> - <object class="NSTableColumn" id="717750995"> - <string key="NSIdentifier">Sub_part</string> - <double key="NSWidth">60</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Sub_part</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="172139056"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="71493486"/> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <reference key="NSTableView" ref="71493486"/> - </object> - <object class="NSTableColumn" id="507461202"> - <string key="NSIdentifier">Packed</string> - <double key="NSWidth">47</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Packed</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="810715598"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="71493486"/> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <reference key="NSTableView" ref="71493486"/> - </object> - <object class="NSTableColumn" id="809153998"> - <string key="NSIdentifier">Comment</string> - <double key="NSWidth">108.97599792480469</double> - <double key="NSMinWidth">55.976001739501953</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Comment</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="467975189"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="71493486"/> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <reference key="NSTableView" ref="71493486"/> - </object> - </array> - <double key="NSIntercellSpacingWidth">3</double> - <double key="NSIntercellSpacingHeight">2</double> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSGridColor" ref="88855454"/> - <double key="NSRowHeight">16</double> - <int key="NSTvFlags">-759136256</int> - <reference key="NSDelegate"/> - <reference key="NSDataSource"/> - <int key="NSColumnAutoresizingStyle">1</int> - <int key="NSDraggingSourceMaskForLocal">-1</int> - <int key="NSDraggingSourceMaskForNonLocal">0</int> - <bool key="NSAllowsTypeSelect">YES</bool> - <int key="NSTableViewDraggingDestinationStyle">0</int> - <int key="NSTableViewGroupRowStyle">1</int> - </object> - </array> - <string key="NSFrame">{{1, 17}, {694, 141}}</string> - <reference key="NSSuperview" ref="601320525"/> - <reference key="NSNextKeyView" ref="71493486"/> - <reference key="NSDocView" ref="71493486"/> - <reference key="NSBGColor" ref="866033095"/> - <int key="NScvFlags">4</int> - </object> - <object class="NSClipView" id="982675320"> - <reference key="NSNextResponder" ref="601320525"/> - <int key="NSvFlags">2338</int> - <array class="NSMutableArray" key="NSSubviews"> - <reference ref="262774116"/> - </array> - <string key="NSFrame">{{1, 0}, {694, 17}}</string> - <reference key="NSSuperview" ref="601320525"/> - <reference key="NSNextKeyView" ref="262774116"/> - <reference key="NSDocView" ref="262774116"/> - </object> - <object class="NSScroller" id="673560219"> - <reference key="NSNextResponder" ref="601320525"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{611, 17}, {15, 126}}</string> - <reference key="NSSuperview" ref="601320525"/> - <reference key="NSNextKeyView" ref="230182748"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <reference key="NSTarget" ref="601320525"/> - <string key="NSAction">_doScroller:</string> - </object> - <object class="NSScroller" id="230182748"> - <reference key="NSNextResponder" ref="601320525"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{1, 143}, {610, 15}}</string> - <reference key="NSSuperview" ref="601320525"/> - <reference key="NSNextKeyView" ref="389959795"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">1</int> - <reference key="NSTarget" ref="601320525"/> - <string key="NSAction">_doScroller:</string> - </object> - <reference ref="542930762"/> - </array> - <string key="NSFrame">{{-1, 22}, {696, 159}}</string> - <reference key="NSSuperview" ref="162304252"/> - <reference key="NSNextKeyView" ref="542930762"/> - <int key="NSsFlags">133682</int> - <reference key="NSVScroller" ref="673560219"/> - <reference key="NSHScroller" ref="230182748"/> - <reference key="NSContentView" ref="472300297"/> - <reference key="NSHeaderClipView" ref="982675320"/> - <reference key="NSCornerView" ref="542930762"/> - <bytes key="NSScrollAmts">QSAAAEEgAABBkAAAQZAAAA</bytes> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - <object class="NSButton" id="389959795"> - <reference key="NSNextResponder" ref="162304252"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{-1, -1}, {32, 25}}</string> - <reference key="NSSuperview" ref="162304252"/> - <reference key="NSNextKeyView" ref="671174106"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="144441460"> - <int key="NSCellFlags">-1543503872</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="389959795"/> - <int key="NSButtonFlags">-2042347520</int> - <int key="NSButtonFlags2">35</int> - <reference key="NSNormalImage" ref="813789704"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="385306370"> - <reference key="NSNextResponder" ref="162304252"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{61, -1}, {32, 25}}</string> - <reference key="NSSuperview" ref="162304252"/> - <reference key="NSNextKeyView" ref="1007102250"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="432985613"> - <int key="NSCellFlags">-2080374784</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="385306370"/> - <int key="NSButtonFlags">-2041823232</int> - <int key="NSButtonFlags2">268435491</int> - <reference key="NSNormalImage" ref="24447544"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">r</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="671174106"> - <reference key="NSNextResponder" ref="162304252"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{30, -1}, {32, 25}}</string> - <reference key="NSSuperview" ref="162304252"/> - <reference key="NSNextKeyView" ref="385306370"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="1016102946"> - <int key="NSCellFlags">-1543503872</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="671174106"/> - <int key="NSButtonFlags">-2041823232</int> - <int key="NSButtonFlags2">35</int> - <reference key="NSNormalImage" ref="191705258"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSImageView" id="1007102250"> - <reference key="NSNextResponder" ref="162304252"/> - <int key="NSvFlags">290</int> - <set class="NSMutableSet" key="NSDragTypes"> - <string>Apple PDF pasteboard type</string> - <string>Apple PICT pasteboard type</string> - <string>Apple PNG pasteboard type</string> - <string>NSFilenamesPboardType</string> - <string>NeXT Encapsulated PostScript v1.2 pasteboard type</string> - <string>NeXT TIFF v4.0 pasteboard type</string> - </set> - <string key="NSFrame">{{93, 0}, {602, 23}}</string> - <reference key="NSSuperview" ref="162304252"/> - <bool key="NSEnabled">YES</bool> - <object class="NSImageCell" key="NSCell" id="153461887"> - <int key="NSCellFlags">0</int> - <int key="NSCellFlags2">33554432</int> - <reference key="NSContents" ref="931244262"/> - <int key="NSAlign">0</int> - <int key="NSScale">1</int> - <int key="NSStyle">0</int> - <bool key="NSAnimates">NO</bool> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSEditable">YES</bool> - </object> - </array> - <string key="NSFrame">{{0, 329}, {695, 201}}</string> - <reference key="NSSuperview" ref="204281121"/> - <reference key="NSNextKeyView" ref="955470299"/> - <bool key="NSDoNotTranslateAutoresizingMask">YES</bool> - <string key="NSClassName">NSView</string> - </object> - </array> - <string key="NSFrame">{{7, 10}, {695, 530}}</string> - <reference key="NSSuperview" ref="113573997"/> - <reference key="NSNextKeyView" ref="981492694"/> - <int key="NSDividerStyle">2</int> - </object> - </array> - <string key="NSFrame">{{10, 7}, {706, 544}}</string> - <reference key="NSSuperview" ref="280187924"/> - <reference key="NSNextKeyView" ref="204281121"/> - </object> - <string key="NSLabel">Structure</string> - <reference key="NSColor" ref="647098198"/> - <reference key="NSTabView" ref="280187924"/> - </object> - <object class="NSTabViewItem" id="565636902"> - <string key="NSIdentifier">content</string> - <object class="NSView" key="NSView" id="100283475"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSButton" id="115869327"> - <reference key="NSNextResponder" ref="100283475"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{6, 9}, {32, 25}}</string> - <reference key="NSSuperview" ref="100283475"/> - <reference key="NSNextKeyView" ref="947593509"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="686397415"> - <int key="NSCellFlags">603979776</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="115869327"/> - <int key="NSButtonFlags">-2042347520</int> - <int key="NSButtonFlags2">402653219</int> - <reference key="NSNormalImage" ref="813789704"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">a</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="744169708"> - <reference key="NSNextResponder" ref="100283475"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{100, 9}, {32, 25}}</string> - <reference key="NSSuperview" ref="100283475"/> - <reference key="NSNextKeyView" ref="20233805"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="567529982"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="744169708"/> - <int key="NSButtonFlags">-2041823232</int> - <int key="NSButtonFlags2">268435491</int> - <reference key="NSNormalImage" ref="24447544"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">r</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="947593509"> - <reference key="NSNextResponder" ref="100283475"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{37, 9}, {32, 25}}</string> - <reference key="NSSuperview" ref="100283475"/> - <reference key="NSNextKeyView" ref="140315871"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="558901501"> - <int key="NSCellFlags">603979776</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="947593509"/> - <int key="NSButtonFlags">-2042347520</int> - <int key="NSButtonFlags2">35</int> - <reference key="NSNormalImage" ref="191705258"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"></string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="140315871"> - <reference key="NSNextResponder" ref="100283475"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{68, 9}, {32, 25}}</string> - <reference key="NSSuperview" ref="100283475"/> - <reference key="NSNextKeyView" ref="744169708"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="220876846"> - <int key="NSCellFlags">603979776</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="140315871"/> - <int key="NSButtonFlags">-2041823232</int> - <int key="NSButtonFlags2">268435491</int> - <reference key="NSNormalImage" ref="906472961"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">d</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSImageView" id="1003637841"> - <reference key="NSNextResponder" ref="100283475"/> - <int key="NSvFlags">290</int> - <set class="NSMutableSet" key="NSDragTypes"> - <string>Apple PDF pasteboard type</string> - <string>Apple PICT pasteboard type</string> - <string>Apple PNG pasteboard type</string> - <string>NSFilenamesPboardType</string> - <string>NeXT Encapsulated PostScript v1.2 pasteboard type</string> - <string>NeXT TIFF v4.0 pasteboard type</string> - </set> - <string key="NSFrame">{{163, 10}, {539, 23}}</string> - <reference key="NSSuperview" ref="100283475"/> - <reference key="NSNextKeyView" ref="72511287"/> - <bool key="NSEnabled">YES</bool> - <object class="NSImageCell" key="NSCell" id="949491561"> - <int key="NSCellFlags">0</int> - <int key="NSCellFlags2">33554432</int> - <reference key="NSContents" ref="931244262"/> - <int key="NSAlign">0</int> - <int key="NSScale">1</int> - <int key="NSStyle">0</int> - <bool key="NSAnimates">NO</bool> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSEditable">YES</bool> - </object> - <object class="NSButton" id="20233805"> - <reference key="NSNextResponder" ref="100283475"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{131, 9}, {32, 25}}</string> - <reference key="NSSuperview" ref="100283475"/> - <reference key="NSNextKeyView" ref="1003637841"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="786767043"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="20233805"/> - <int key="NSButtonFlags">-934526976</int> - <int key="NSButtonFlags2">35</int> - <object class="NSCustomResource" key="NSNormalImage" id="833409298"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">button_edit_mode</string> - </object> - <object class="NSCustomResource" key="NSAlternateImage" id="418232561"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">button_edit_mode_selected</string> - </object> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSTextField" id="72511287"> - <reference key="NSNextResponder" ref="100283475"/> - <int key="NSvFlags">290</int> - <string key="NSFrame">{{166, 6}, {421, 22}}</string> - <reference key="NSSuperview" ref="100283475"/> - <reference key="NSNextKeyView" ref="1065343609"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="119907492"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">4195328</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="72511287"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSButton" id="622694405"> - <reference key="NSNextResponder" ref="100283475"/> - <int key="NSvFlags">289</int> - <string key="NSFrame">{{654, 9}, {32, 25}}</string> - <reference key="NSSuperview" ref="100283475"/> - <reference key="NSNextKeyView" ref="280187924"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="492133055"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="622694405"/> - <int key="NSButtonFlags">-2042347520</int> - <int key="NSButtonFlags2">35</int> - <object class="NSCustomResource" key="NSNormalImage"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">button_right</string> - </object> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="1065343609"> - <reference key="NSNextResponder" ref="100283475"/> - <int key="NSvFlags">289</int> - <string key="NSFrame">{{592, 9}, {32, 25}}</string> - <reference key="NSSuperview" ref="100283475"/> - <reference key="NSNextKeyView" ref="957548798"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="991653471"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="1065343609"/> - <int key="NSButtonFlags">-2042347520</int> - <int key="NSButtonFlags2">35</int> - <object class="NSCustomResource" key="NSNormalImage"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">button_left</string> - </object> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="957548798"> - <reference key="NSNextResponder" ref="100283475"/> - <int key="NSvFlags">289</int> - <string key="NSFrame">{{623, 9}, {32, 25}}</string> - <reference key="NSSuperview" ref="100283475"/> - <reference key="NSNextKeyView" ref="622694405"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="534650734"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="957548798"/> - <int key="NSButtonFlags">-934526976</int> - <int key="NSButtonFlags2">268435491</int> - <object class="NSCustomResource" key="NSNormalImage"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">button_pagination</string> - </object> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">j</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSSplitView" id="786146577"> - <reference key="NSNextResponder" ref="100283475"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSCustomView" id="134459988"> - <reference key="NSNextResponder" ref="786146577"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSButton" id="815051235"> - <reference key="NSNextResponder" ref="134459988"/> - <int key="NSvFlags">289</int> - <string key="NSFrame">{{615, 2}, {54, 19}}</string> - <reference key="NSSuperview" ref="134459988"/> - <reference key="NSNextKeyView" ref="527054400"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="480914227"> - <int key="NSCellFlags">-2080374784</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">Filter</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="815051235"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">164</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSScrollView" id="16186465"> - <reference key="NSNextResponder" ref="134459988"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="889317496"> - <reference key="NSNextResponder" ref="16186465"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSRuleEditor" id="897255549"> - <reference key="NSNextResponder" ref="889317496"/> - <int key="NSvFlags">306</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="_NSRuleEditorViewSliceHolder" id="617505990"> - <reference key="NSNextResponder" ref="897255549"/> - <int key="NSvFlags">274</int> - <string key="NSFrameSize">{607, 27}</string> - <reference key="NSSuperview" ref="897255549"/> - <reference key="NSNextKeyView" ref="815051235"/> - </object> - </array> - <set class="NSMutableSet" key="NSDragTypes"> - <string>NSRuleEditorItemPBoardType</string> - </set> - <string key="NSFrameSize">{607, 27}</string> - <reference key="NSSuperview" ref="889317496"/> - <reference key="NSNextKeyView" ref="497073944"/> - <string key="NSHuggingPriority">{250, 250}</string> - <bool key="NSEnabled">YES</bool> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <double key="NSRuleEditorAlignmentGridWidth">75</double> - <double key="NSRuleEditorSliceHeight">25</double> - <bool key="NSRuleEditorEditable">YES</bool> - <bool key="NSRuleEditorAllowsEmptyCompoundRows">NO</bool> - <bool key="NSRuleEditorDisallowEmpty">NO</bool> - <int key="NSRuleEditorNestingMode">2</int> - <string key="NSRuleEditorRowTypeKeyPath">rowType</string> - <string key="NSRuleEditorSubrowsArrayKeyPath">subrows</string> - <string key="NSRuleEditorItemsKeyPath">criteria</string> - <string key="NSRuleEditorValuesKeyPath">displayValues</string> - <string key="NSRuleEditorBoundArrayKeyPath">boundArray</string> - <string key="NSRuleEditorRowClass">NSMutableDictionary</string> - <reference key="NSRuleEditorSlicesHolder" ref="617505990"/> - <nil key="NSRuleEditorDelegate"/> - <object class="_NSRuleEditorViewUnboundRowHolder" key="NSRuleEditorBoundArrayOwner"> - <array class="NSMutableArray" key="NSBoundArray"/> - </object> - <array class="NSMutableArray" key="NSRuleEditorSlices"/> - </object> - </array> - <string key="NSFrameSize">{607, 27}</string> - <reference key="NSSuperview" ref="16186465"/> - <reference key="NSNextKeyView" ref="897255549"/> - <reference key="NSDocView" ref="897255549"/> - <reference key="NSBGColor" ref="647098198"/> - <int key="NScvFlags">2</int> - </object> - <object class="NSScroller" id="497073944"> - <reference key="NSNextResponder" ref="16186465"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{-100, -100}, {223, 11}}</string> - <reference key="NSSuperview" ref="16186465"/> - <reference key="NSNextKeyView" ref="287875968"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">257</int> - <reference key="NSTarget" ref="16186465"/> - <string key="NSAction">_doScroller:</string> - </object> - <object class="NSScroller" id="287875968"> - <reference key="NSNextResponder" ref="16186465"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{-100, -100}, {11, 133}}</string> - <reference key="NSSuperview" ref="16186465"/> - <reference key="NSNextKeyView" ref="889317496"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">256</int> - <reference key="NSTarget" ref="16186465"/> - <string key="NSAction">_doScroller:</string> - <double key="NSCurValue">1</double> - </object> - </array> - <string key="NSFrame">{{0, -1}, {607, 27}}</string> - <reference key="NSSuperview" ref="134459988"/> - <reference key="NSNextKeyView" ref="889317496"/> - <int key="NSsFlags">133632</int> - <reference key="NSVScroller" ref="287875968"/> - <reference key="NSHScroller" ref="497073944"/> - <reference key="NSContentView" ref="889317496"/> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - </array> - <string key="NSFrameSize">{696, 25}</string> - <reference key="NSSuperview" ref="786146577"/> - <reference key="NSNextKeyView" ref="16186465"/> - <bool key="NSDoNotTranslateAutoresizingMask">YES</bool> - <string key="NSClassName">NSView</string> - </object> - <object class="NSCustomView" id="527054400"> - <reference key="NSNextResponder" ref="786146577"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSScrollView" id="526437487"> - <reference key="NSNextResponder" ref="527054400"/> - <int key="NSvFlags">4370</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="359368454"> - <reference key="NSNextResponder" ref="526437487"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTableView" id="589548204"> - <reference key="NSNextResponder" ref="359368454"/> - <int key="NSvFlags">4352</int> - <string key="NSFrameSize">{694, 432}</string> - <reference key="NSSuperview" ref="359368454"/> - <reference key="NSNextKeyView" ref="142944018"/> - <bool key="NSEnabled">YES</bool> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSControlAllowsExpansionToolTips">YES</bool> - <object class="NSTableHeaderView" key="NSHeaderView" id="357277343"> - <reference key="NSNextResponder" ref="916396282"/> - <int key="NSvFlags">256</int> - <string key="NSFrameSize">{694, 17}</string> - <reference key="NSSuperview" ref="916396282"/> - <reference key="NSNextKeyView" ref="359368454"/> - <reference key="NSTableView" ref="589548204"/> - </object> - <object class="_NSCornerView" key="NSCornerView" id="142944018"> - <reference key="NSNextResponder" ref="526437487"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrameSize">{15, 20}</string> - <reference key="NSSuperview" ref="526437487"/> - <reference key="NSNextKeyView" ref="916396282"/> - </object> - <array class="NSMutableArray" key="NSTableColumns"> - <object class="NSTableColumn" id="564631085"> - <double key="NSWidth">623</double> - <double key="NSMinWidth">8</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <object class="NSColor" key="NSBackgroundColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MC4zMzMzMzI5ODU2AA</bytes> - </object> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="335095511"> - <int key="NSCellFlags">338690113</int> - <int key="NSCellFlags2">1024</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="589548204"/> - <reference key="NSBackgroundColor" ref="457906098"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="589548204"/> - </object> - </array> - <double key="NSIntercellSpacingWidth">3</double> - <double key="NSIntercellSpacingHeight">2</double> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSGridColor" ref="88855454"/> - <double key="NSRowHeight">16</double> - <int key="NSTvFlags">-627048448</int> - <reference key="NSDelegate"/> - <reference key="NSDataSource"/> - <int key="NSColumnAutoresizingStyle">0</int> - <int key="NSDraggingSourceMaskForLocal">-1</int> - <int key="NSDraggingSourceMaskForNonLocal">0</int> - <bool key="NSAllowsTypeSelect">YES</bool> - <int key="NSTableViewDraggingDestinationStyle">0</int> - <int key="NSTableViewGroupRowStyle">1</int> - </object> - </array> - <string key="NSFrame">{{1, 17}, {694, 432}}</string> - <reference key="NSSuperview" ref="526437487"/> - <reference key="NSNextKeyView" ref="589548204"/> - <reference key="NSDocView" ref="589548204"/> - <reference key="NSBGColor" ref="866033095"/> - <int key="NScvFlags">4</int> - </object> - <object class="NSClipView" id="916396282"> - <reference key="NSNextResponder" ref="526437487"/> - <int key="NSvFlags">2338</int> - <array class="NSMutableArray" key="NSSubviews"> - <reference ref="357277343"/> - </array> - <string key="NSFrame">{{1, 0}, {694, 17}}</string> - <reference key="NSSuperview" ref="526437487"/> - <reference key="NSNextKeyView" ref="357277343"/> - <reference key="NSDocView" ref="357277343"/> - </object> - <object class="NSScroller" id="849754709"> - <reference key="NSNextResponder" ref="526437487"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{680, 17}, {15, 450}}</string> - <reference key="NSSuperview" ref="526437487"/> - <reference key="NSNextKeyView" ref="115869327"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <reference key="NSTarget" ref="526437487"/> - <string key="NSAction">_doScroller:</string> - </object> - <object class="NSScroller" id="759845062"> - <reference key="NSNextResponder" ref="526437487"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{1, 458}, {429, 15}}</string> - <reference key="NSSuperview" ref="526437487"/> - <reference key="NSNextKeyView" ref="849754709"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">1</int> - <reference key="NSTarget" ref="526437487"/> - <string key="NSAction">_doScroller:</string> - <double key="NSCurValue">0.021626397967338562</double> - </object> - <reference ref="142944018"/> - </array> - <string key="NSFrame">{{-1, -2}, {696, 450}}</string> - <reference key="NSSuperview" ref="527054400"/> - <reference key="NSNextKeyView" ref="359368454"/> - <int key="NSsFlags">133682</int> - <reference key="NSVScroller" ref="849754709"/> - <reference key="NSHScroller" ref="759845062"/> - <reference key="NSContentView" ref="359368454"/> - <reference key="NSHeaderClipView" ref="916396282"/> - <bytes key="NSScrollAmts">QSAAAEEgAABBkAAAQZAAAA</bytes> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - <object class="NSSplitView" id="974853574"> - <reference key="NSNextResponder" ref="527054400"/> - <int key="NSvFlags">266</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSCustomView" id="548981602"> - <reference key="NSNextResponder" ref="974853574"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSPopUpButton" id="687258326"> - <reference key="NSNextResponder" ref="548981602"/> - <int key="NSvFlags">265</int> - <string key="NSFrame">{{206, 0}, {105, 25}}</string> - <reference key="NSSuperview" ref="548981602"/> - <reference key="NSNextKeyView" ref="56200808"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="76433614"> - <int key="NSCellFlags">-1539309504</int> - <int key="NSCellFlags2">133120</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="687258326"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">36</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <object class="NSMenuItem" key="NSMenuItem" id="357684212"> - <reference key="NSMenu" ref="664849929"/> - <string key="NSTitle">=</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="76433614"/> - </object> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="664849929"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"> - <reference ref="357684212"/> - </array> - </object> - <int key="NSPreferredEdge">3</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">1</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSPopUpButton" id="805164801"> - <reference key="NSNextResponder" ref="548981602"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{80, 3}, {119, 20}}</string> - <reference key="NSSuperview" ref="548981602"/> - <reference key="NSNextKeyView" ref="687258326"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="190413350"> - <int key="NSCellFlags">-1539309504</int> - <int key="NSCellFlags2">133120</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="805164801"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">36</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <object class="NSMenuItem" key="NSMenuItem" id="877675088"> - <reference key="NSMenu" ref="1024026123"/> - <string key="NSTitle">field</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="190413350"/> - </object> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="1024026123"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"> - <reference ref="877675088"/> - </array> - </object> - <int key="NSPreferredEdge">3</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">1</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSTextField" id="953920141"> - <reference key="NSNextResponder" ref="548981602"/> - <int key="NSvFlags">264</int> - <string key="NSFrame">{{7, 6}, {67, 14}}</string> - <reference key="NSSuperview" ref="548981602"/> - <reference key="NSNextKeyView" ref="805164801"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="983853423"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Search:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="953920141"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrameSize">{314, 27}</string> - <reference key="NSSuperview" ref="974853574"/> - <reference key="NSNextKeyView" ref="953920141"/> - <bool key="NSDoNotTranslateAutoresizingMask">YES</bool> - <string key="NSClassName">NSView</string> - </object> - <object class="NSCustomView" id="56200808"> - <reference key="NSNextResponder" ref="974853574"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSSearchField" id="426625670"> - <reference key="NSNextResponder" ref="56200808"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{5, 4}, {276, 19}}</string> - <reference key="NSSuperview" ref="56200808"/> - <reference key="NSNextKeyView" ref="182013136"/> - <bool key="NSViewIsLayerTreeHost">YES</bool> - <bool key="NSEnabled">YES</bool> - <object class="NSSearchFieldCell" key="NSCell" id="837725116"> - <int key="NSCellFlags">879755329</int> - <int key="NSCellFlags2">268567616</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="426625670"/> - <int key="NSTextBezelStyle">1</int> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - <object class="NSButtonCell" key="NSSearchButtonCell"> - <int key="NSCellFlags">536870912</int> - <int key="NSCellFlags2">0</int> - <string key="NSContents">search</string> - <reference key="NSControlView" ref="426625670"/> - <string key="NSAction">_searchFieldSearch:</string> - <reference key="NSTarget" ref="837725116"/> - <int key="NSButtonFlags">138690560</int> - <int key="NSButtonFlags2">0</int> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <object class="NSButtonCell" key="NSCancelButtonCell"> - <int key="NSCellFlags">-1610612736</int> - <int key="NSCellFlags2">0</int> - <string key="NSContents">clear</string> - <array class="NSMutableArray" key="NSAccessibilityOverriddenAttributes"> - <dictionary class="NSMutableDictionary"> - <string key="AXDescription">cancel</string> - <integer value="1" key="NSAccessibilityEncodedAttributesValueType"/> - </dictionary> - </array> - <reference key="NSControlView" ref="426625670"/> - <string key="NSAction">_searchFieldCancel:</string> - <reference key="NSTarget" ref="837725116"/> - <int key="NSButtonFlags">138690560</int> - <int key="NSButtonFlags2">0</int> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <int key="NSMaximumRecents">255</int> - <bool key="NSSendsWholeSearchString">YES</bool> - <bytes key="NSSearchFieldFlags">CAAAAA</bytes> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="182013136"> - <reference key="NSNextResponder" ref="56200808"/> - <int key="NSvFlags">-2147483379</int> - <string key="NSFrame">{{128, 6}, {28, 14}}</string> - <reference key="NSSuperview" ref="56200808"/> - <reference key="NSNextKeyView" ref="316472124"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="870995440"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272761856</int> - <string key="NSContents">AND</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="182013136"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSSearchField" id="953677073"> - <reference key="NSNextResponder" ref="56200808"/> - <int key="NSvFlags">-2147483378</int> - <string key="NSFrame">{{5, 4}, {110, 19}}</string> - <reference key="NSSuperview" ref="56200808"/> - <reference key="NSNextKeyView" ref="426625670"/> - <bool key="NSViewIsLayerTreeHost">YES</bool> - <bool key="NSEnabled">YES</bool> - <object class="NSSearchFieldCell" key="NSCell" id="579032529"> - <int key="NSCellFlags">342884417</int> - <int key="NSCellFlags2">268567552</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="953677073"/> - <int key="NSTextBezelStyle">1</int> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - <object class="NSButtonCell" key="NSSearchButtonCell"> - <int key="NSCellFlags">0</int> - <int key="NSCellFlags2">0</int> - <string key="NSContents">search</string> - <reference key="NSControlView" ref="953677073"/> - <string key="NSAction">_searchFieldSearch:</string> - <reference key="NSTarget" ref="579032529"/> - <int key="NSButtonFlags">138690560</int> - <int key="NSButtonFlags2">0</int> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <object class="NSButtonCell" key="NSCancelButtonCell"> - <int key="NSCellFlags">-2147483648</int> - <int key="NSCellFlags2">0</int> - <string key="NSContents">clear</string> - <array class="NSMutableArray" key="NSAccessibilityOverriddenAttributes"> - <dictionary class="NSMutableDictionary"> - <string key="AXDescription">cancel</string> - <integer value="1" key="NSAccessibilityEncodedAttributesValueType"/> - </dictionary> - </array> - <reference key="NSControlView" ref="953677073"/> - <string key="NSAction">_searchFieldCancel:</string> - <reference key="NSTarget" ref="579032529"/> - <int key="NSButtonFlags">138690560</int> - <int key="NSButtonFlags2">0</int> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <int key="NSMaximumRecents">255</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSSearchField" id="316472124"> - <reference key="NSNextResponder" ref="56200808"/> - <int key="NSvFlags">-2147483381</int> - <string key="NSFrame">{{168, 4}, {110, 19}}</string> - <reference key="NSSuperview" ref="56200808"/> - <reference key="NSNextKeyView" ref="332657589"/> - <bool key="NSViewIsLayerTreeHost">YES</bool> - <bool key="NSEnabled">YES</bool> - <object class="NSSearchFieldCell" key="NSCell" id="769252744"> - <int key="NSCellFlags">342884417</int> - <int key="NSCellFlags2">268567552</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="316472124"/> - <int key="NSTextBezelStyle">1</int> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - <object class="NSButtonCell" key="NSSearchButtonCell"> - <int key="NSCellFlags">0</int> - <int key="NSCellFlags2">0</int> - <string key="NSContents">search</string> - <reference key="NSControlView" ref="316472124"/> - <string key="NSAction">_searchFieldSearch:</string> - <reference key="NSTarget" ref="769252744"/> - <int key="NSButtonFlags">138690560</int> - <int key="NSButtonFlags2">0</int> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <object class="NSButtonCell" key="NSCancelButtonCell"> - <int key="NSCellFlags">-2147483648</int> - <int key="NSCellFlags2">0</int> - <string key="NSContents">clear</string> - <array class="NSMutableArray" key="NSAccessibilityOverriddenAttributes"> - <dictionary class="NSMutableDictionary"> - <string key="AXDescription">cancel</string> - <integer value="1" key="NSAccessibilityEncodedAttributesValueType"/> - </dictionary> - </array> - <reference key="NSControlView" ref="316472124"/> - <string key="NSAction">_searchFieldCancel:</string> - <reference key="NSTarget" ref="769252744"/> - <int key="NSButtonFlags">138690560</int> - <int key="NSButtonFlags2">0</int> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <int key="NSMaximumRecents">255</int> - <bool key="NSSendsWholeSearchString">YES</bool> - <bytes key="NSSearchFieldFlags">CAAAAA</bytes> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrame">{{323, 0}, {283, 27}}</string> - <reference key="NSSuperview" ref="974853574"/> - <reference key="NSNextKeyView" ref="953677073"/> - <bool key="NSDoNotTranslateAutoresizingMask">YES</bool> - <string key="NSClassName">NSView</string> - </object> - </array> - <string key="NSFrame">{{-1, 451}, {606, 27}}</string> - <reference key="NSSuperview" ref="527054400"/> - <reference key="NSNextKeyView" ref="548981602"/> - <bool key="NSIsVertical">YES</bool> - </object> - <object class="NSButton" id="332657589"> - <reference key="NSNextResponder" ref="527054400"/> - <int key="NSvFlags">265</int> - <string key="NSFrame">{{614, 455}, {54, 19}}</string> - <reference key="NSSuperview" ref="527054400"/> - <reference key="NSNextKeyView" ref="402546253"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="1037504042"> - <int key="NSCellFlags">-2080374784</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">Filter</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="332657589"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">164</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSProgressIndicator" id="402546253"> - <reference key="NSNextResponder" ref="527054400"/> - <int key="NSvFlags">265</int> - <string key="NSFrame">{{674, 458}, {16, 16}}</string> - <reference key="NSSuperview" ref="527054400"/> - <reference key="NSNextKeyView" ref="526437487"/> - <string key="NSHuggingPriority">{750, 750}</string> - <int key="NSpiFlags">28942</int> - <double key="NSMaxValue">100</double> - </object> - </array> - <string key="NSFrame">{{0, 26}, {696, 479}}</string> - <reference key="NSSuperview" ref="786146577"/> - <reference key="NSNextKeyView" ref="974853574"/> - <bool key="NSDoNotTranslateAutoresizingMask">YES</bool> - <string key="NSClassName">NSView</string> - </object> - </array> - <string key="NSFrame">{{6, 33}, {696, 505}}</string> - <reference key="NSSuperview" ref="100283475"/> - <reference key="NSNextKeyView" ref="134459988"/> - <int key="NSDividerStyle">2</int> - <string key="NSAutosaveName"/> - </object> - </array> - <string key="NSFrame">{{10, 7}, {706, 544}}</string> - <reference key="NSNextKeyView" ref="786146577"/> - </object> - <string key="NSLabel">Content</string> - <reference key="NSColor" ref="647098198"/> - <reference key="NSTabView" ref="280187924"/> - </object> - <object class="NSTabViewItem" id="390082212"> - <string key="NSIdentifier">customQuery</string> - <object class="NSView" key="NSView" id="950160581"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSImageView" id="582682244"> - <reference key="NSNextResponder" ref="950160581"/> - <int key="NSvFlags">290</int> - <set class="NSMutableSet" key="NSDragTypes"> - <string>Apple PDF pasteboard type</string> - <string>Apple PICT pasteboard type</string> - <string>Apple PNG pasteboard type</string> - <string>NSFilenamesPboardType</string> - <string>NeXT Encapsulated PostScript v1.2 pasteboard type</string> - <string>NeXT TIFF v4.0 pasteboard type</string> - </set> - <string key="NSFrame">{{6, 10}, {696, 23}}</string> - <reference key="NSSuperview" ref="950160581"/> - <reference key="NSNextKeyView" ref="1057125714"/> - <bool key="NSEnabled">YES</bool> - <object class="NSImageCell" key="NSCell" id="680485591"> - <int key="NSCellFlags">0</int> - <int key="NSCellFlags2">33554432</int> - <reference key="NSContents" ref="931244262"/> - <int key="NSAlign">0</int> - <int key="NSScale">1</int> - <int key="NSStyle">0</int> - <bool key="NSAnimates">NO</bool> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSEditable">YES</bool> - </object> - <object class="NSPopUpButton" id="1057125714"> - <reference key="NSNextResponder" ref="950160581"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{36, 10}, {36, 23}}</string> - <reference key="NSSuperview" ref="950160581"/> - <reference key="NSNextKeyView" ref="21519590"/> - <string key="NSHuggingPriority">{250, 250}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="402856244"> - <int key="NSCellFlags">-2080374720</int> - <int key="NSCellFlags2">134219776</int> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="1057125714"/> - <int key="NSButtonFlags">-2044051456</int> - <int key="NSButtonFlags2">2</int> - <reference key="NSAlternateImage" ref="959847048"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <object class="NSMenuItem" key="NSMenuItem" id="342750345"> - <reference key="NSMenu" ref="899617199"/> - <bool key="NSIsHidden">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <reference key="NSImage" ref="158871648"/> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="402856244"/> - </object> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="899617199"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"> - <reference ref="342750345"/> - <object class="NSMenuItem" id="579391886"> - <reference key="NSMenu" ref="899617199"/> - <string key="NSTitle">Export Result</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">submenuAction:</string> - <reference key="NSTarget" ref="585720437"/> - <object class="NSMenu" key="NSSubmenu" id="585720437"> - <string key="NSTitle">Export Result</string> - <array class="NSMutableArray" key="NSMenuItems"> - <object class="NSMenuItem" id="734890802"> - <reference key="NSMenu" ref="585720437"/> - <string key="NSTitle">As CSV file...</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">1</int> - <reference key="NSTarget" ref="402856244"/> - </object> - <object class="NSMenuItem" id="591735120"> - <reference key="NSMenu" ref="585720437"/> - <string key="NSTitle">As XML file...</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">2</int> - <reference key="NSTarget" ref="402856244"/> - </object> - </array> - </object> - </object> - </array> - </object> - <bool key="NSPullDown">YES</bool> - <int key="NSPreferredEdge">1</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="245508703"> - <reference key="NSNextResponder" ref="950160581"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{6, 9}, {32, 25}}</string> - <reference key="NSSuperview" ref="950160581"/> - <reference key="NSNextKeyView" ref="582682244"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="393490969"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="245508703"/> - <int key="NSButtonFlags">-935051264</int> - <int key="NSButtonFlags2">402653219</int> - <reference key="NSNormalImage" ref="932297549"/> - <reference key="NSAlternateImage" ref="942994782"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">a</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="21519590"> - <reference key="NSNextResponder" ref="950160581"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{68, 9}, {32, 25}}</string> - <reference key="NSSuperview" ref="950160581"/> - <reference key="NSNextKeyView" ref="93347433"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="911724772"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="21519590"/> - <int key="NSButtonFlags">-935051264</int> - <int key="NSButtonFlags2">35</int> - <reference key="NSNormalImage" ref="833409298"/> - <reference key="NSAlternateImage" ref="418232561"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSSplitView" id="77719398"> - <reference key="NSNextResponder" ref="950160581"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSView" id="446923801"> - <reference key="NSNextResponder" ref="77719398"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSSplitView" id="9338668"> - <reference key="NSNextResponder" ref="446923801"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSCustomView" id="154150014"> - <reference key="NSNextResponder" ref="9338668"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSScrollView" id="804607013"> - <reference key="NSNextResponder" ref="154150014"/> - <int key="NSvFlags">4370</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="814502469"> - <reference key="NSNextResponder" ref="804607013"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextView" id="995019363"> - <reference key="NSNextResponder" ref="814502469"/> - <int key="NSvFlags">6418</int> - <string key="NSFrameSize">{694, 141}</string> - <reference key="NSSuperview" ref="814502469"/> - <reference key="NSNextKeyView" ref="103288676"/> - <object class="NSTextContainer" key="NSTextContainer" id="104432314"> - <object class="NSLayoutManager" key="NSLayoutManager"> - <object class="NSTextStorage" key="NSTextStorage"> - <object class="NSMutableString" key="NSString"> - <characters key="NS.bytes"/> - </object> - <nil key="NSDelegate"/> - </object> - <array class="NSMutableArray" key="NSTextContainers"> - <reference ref="104432314"/> - </array> - <int key="NSLMFlags">38</int> - <nil key="NSDelegate"/> - </object> - <reference key="NSTextView" ref="995019363"/> - <double key="NSWidth">694</double> - <int key="NSTCFlags">1</int> - </object> - <object class="NSTextViewSharedData" key="NSSharedData"> - <int key="NSFlags">28003</int> - <int key="NSTextCheckingTypes">0</int> - <nil key="NSMarkedAttributes"/> - <reference key="NSBackgroundColor" ref="457906098"/> - <dictionary key="NSSelectedAttributes"> - <object class="NSColor" key="NSBackgroundColor" id="695342849"> - <int key="NSColorSpace">6</int> - <string key="NSCatalogName">System</string> - <string key="NSColorName">selectedTextBackgroundColor</string> - <reference key="NSColor" ref="747589274"/> - </object> - <object class="NSColor" key="NSColor" id="294465151"> - <int key="NSColorSpace">6</int> - <string key="NSCatalogName">System</string> - <string key="NSColorName">selectedTextColor</string> - <reference key="NSColor" ref="437905761"/> - </object> - </dictionary> - <reference key="NSInsertionColor" ref="667308713"/> - <dictionary key="NSLinkAttributes"> - <reference key="NSColor" ref="618433734"/> - <object class="NSCursor" key="NSCursor" id="113216199"> - <string key="NSHotSpot">{8, -8}</string> - <int key="NSCursorType">13</int> - </object> - <integer value="1" key="NSUnderline"/> - </dictionary> - <nil key="NSDefaultParagraphStyle"/> - <nil key="NSTextFinder"/> - <int key="NSPreferredTextFinderStyle">1</int> - </object> - <int key="NSTVFlags">7</int> - <string key="NSMaxSize">{100000, 10000000}</string> - <nil key="NSDelegate"/> - </object> - </array> - <string key="NSFrame">{{1, 1}, {694, 141}}</string> - <reference key="NSSuperview" ref="804607013"/> - <reference key="NSNextKeyView" ref="995019363"/> - <reference key="NSDocView" ref="995019363"/> - <reference key="NSBGColor" ref="457906098"/> - <object class="NSCursor" key="NSCursor" id="546590681"> - <string key="NSHotSpot">{5, 5}</string> - <int key="NSCursorType">0</int> - </object> - <int key="NScvFlags">4</int> - </object> - <object class="NSScroller" id="103288676"> - <reference key="NSNextResponder" ref="804607013"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{-100, -100}, {87, 11}}</string> - <reference key="NSSuperview" ref="804607013"/> - <reference key="NSNextKeyView" ref="814502469"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">257</int> - <reference key="NSTarget" ref="804607013"/> - <string key="NSAction">_doScroller:</string> - <double key="NSCurValue">1</double> - </object> - <object class="NSScroller" id="1058351455"> - <reference key="NSNextResponder" ref="804607013"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{224, 1}, {15, 133}}</string> - <reference key="NSSuperview" ref="804607013"/> - <reference key="NSNextKeyView" ref="1045056406"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <reference key="NSTarget" ref="804607013"/> - <string key="NSAction">_doScroller:</string> - </object> - </array> - <string key="NSFrame">{{0, 1}, {696, 143}}</string> - <reference key="NSSuperview" ref="154150014"/> - <reference key="NSNextKeyView" ref="814502469"/> - <int key="NSsFlags">133650</int> - <reference key="NSVScroller" ref="1058351455"/> - <reference key="NSHScroller" ref="103288676"/> - <reference key="NSContentView" ref="814502469"/> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - </array> - <string key="NSFrameSize">{696, 143}</string> - <reference key="NSSuperview" ref="9338668"/> - <reference key="NSNextKeyView" ref="804607013"/> - <bool key="NSDoNotTranslateAutoresizingMask">YES</bool> - <string key="NSClassName">NSView</string> - </object> - <object class="NSCustomView" id="1045056406"> - <reference key="NSNextResponder" ref="9338668"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSPopUpButton" id="822332749"> - <reference key="NSNextResponder" ref="1045056406"/> - <int key="NSvFlags">265</int> - <string key="NSFrame">{{508, 214}, {180, 22}}</string> - <reference key="NSSuperview" ref="1045056406"/> - <reference key="NSNextKeyView" ref="752414392"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="924991654"> - <int key="NSCellFlags">71303232</int> - <int key="NSCellFlags2">134350848</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="822332749"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">164</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <object class="NSMenuItem" key="NSMenuItem" id="327623453"> - <reference key="NSMenu" ref="419759801"/> - <bool key="NSIsHidden">YES</bool> - <string key="NSTitle">Run Current</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="924991654"/> - </object> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="419759801"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"> - <reference ref="327623453"/> - <object class="NSMenuItem" id="800429709"> - <reference key="NSMenu" ref="419759801"/> - <string key="NSTitle">Run Current Query</string> - <string key="NSKeyEquiv">r</string> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">2</int> - <reference key="NSTarget" ref="924991654"/> - </object> - <object class="NSMenuItem" id="184409066"> - <reference key="NSMenu" ref="419759801"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="924991654"/> - </object> - <object class="NSMenuItem" id="66267300"> - <reference key="NSMenu" ref="419759801"/> - <string key="NSTitle">Run All Queries</string> - <string key="NSKeyEquiv">r</string> - <int key="NSKeyEquivModMask">1572864</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">1</int> - <reference key="NSTarget" ref="924991654"/> - </object> - <object class="NSMenuItem" id="777403568"> - <reference key="NSMenu" ref="419759801"/> - <string key="NSTitle">Switch Default</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="924991654"/> - </object> - </array> - </object> - <bool key="NSPullDown">YES</bool> - <int key="NSPreferredEdge">1</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">2</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSScrollView" id="752414392"> - <reference key="NSNextResponder" ref="1045056406"/> - <int key="NSvFlags">4370</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="620500575"> - <reference key="NSNextResponder" ref="752414392"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTableView" id="628833149"> - <reference key="NSNextResponder" ref="620500575"/> - <int key="NSvFlags">4352</int> - <string key="NSFrameSize">{694, 197}</string> - <reference key="NSSuperview" ref="620500575"/> - <reference key="NSNextKeyView" ref="621197929"/> - <bool key="NSEnabled">YES</bool> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSControlAllowsExpansionToolTips">YES</bool> - <object class="NSTableHeaderView" key="NSHeaderView" id="603882466"> - <reference key="NSNextResponder" ref="730166708"/> - <int key="NSvFlags">256</int> - <string key="NSFrameSize">{694, 17}</string> - <reference key="NSSuperview" ref="730166708"/> - <reference key="NSNextKeyView" ref="620500575"/> - <reference key="NSTableView" ref="628833149"/> - </object> - <object class="_NSCornerView" key="NSCornerView" id="621197929"> - <reference key="NSNextResponder" ref="752414392"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrameSize">{15, 20}</string> - <reference key="NSSuperview" ref="752414392"/> - <reference key="NSNextKeyView" ref="730166708"/> - </object> - <array class="NSMutableArray" key="NSTableColumns"> - <object class="NSTableColumn" id="120128716"> - <double key="NSWidth">690</double> - <double key="NSMinWidth">40</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <object class="NSColor" key="NSBackgroundColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MC4zMzMzMzI5ODU2AA</bytes> - </object> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="929769209"> - <int key="NSCellFlags">70254657</int> - <int key="NSCellFlags2">132096</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="628833149"/> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <reference key="NSTableView" ref="628833149"/> - </object> - </array> - <double key="NSIntercellSpacingWidth">3</double> - <double key="NSIntercellSpacingHeight">2</double> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSGridColor" ref="88855454"/> - <double key="NSRowHeight">16</double> - <int key="NSTvFlags">-624951296</int> - <reference key="NSDelegate"/> - <reference key="NSDataSource"/> - <int key="NSColumnAutoresizingStyle">4</int> - <int key="NSDraggingSourceMaskForLocal">-1</int> - <int key="NSDraggingSourceMaskForNonLocal">0</int> - <bool key="NSAllowsTypeSelect">YES</bool> - <int key="NSTableViewDraggingDestinationStyle">0</int> - <int key="NSTableViewGroupRowStyle">1</int> - </object> - </array> - <string key="NSFrame">{{1, 17}, {694, 197}}</string> - <reference key="NSSuperview" ref="752414392"/> - <reference key="NSNextKeyView" ref="628833149"/> - <reference key="NSDocView" ref="628833149"/> - <reference key="NSBGColor" ref="866033095"/> - <int key="NScvFlags">4</int> - </object> - <object class="NSClipView" id="730166708"> - <reference key="NSNextResponder" ref="752414392"/> - <int key="NSvFlags">2338</int> - <array class="NSMutableArray" key="NSSubviews"> - <reference ref="603882466"/> - </array> - <string key="NSFrame">{{1, 0}, {694, 17}}</string> - <reference key="NSSuperview" ref="752414392"/> - <reference key="NSNextKeyView" ref="603882466"/> - <reference key="NSDocView" ref="603882466"/> - </object> - <object class="NSScroller" id="556042083"> - <reference key="NSNextResponder" ref="752414392"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{680, 17}, {15, 199}}</string> - <reference key="NSSuperview" ref="752414392"/> - <reference key="NSNextKeyView" ref="105597532"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <reference key="NSTarget" ref="752414392"/> - <string key="NSAction">_doScroller:</string> - <double key="NSPercent">0.92385786802030456</double> - </object> - <object class="NSScroller" id="1031686395"> - <reference key="NSNextResponder" ref="752414392"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{1, 199}, {693, 15}}</string> - <reference key="NSSuperview" ref="752414392"/> - <reference key="NSNextKeyView" ref="556042083"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">1</int> - <reference key="NSTarget" ref="752414392"/> - <string key="NSAction">_doScroller:</string> - <double key="NSCurValue">1</double> - <double key="NSPercent">0.99927901946647435</double> - </object> - <reference ref="621197929"/> - </array> - <string key="NSFrame">{{0, -1}, {696, 215}}</string> - <reference key="NSSuperview" ref="1045056406"/> - <reference key="NSNextKeyView" ref="620500575"/> - <int key="NSsFlags">133682</int> - <reference key="NSVScroller" ref="556042083"/> - <reference key="NSHScroller" ref="1031686395"/> - <reference key="NSContentView" ref="620500575"/> - <reference key="NSHeaderClipView" ref="730166708"/> - <bytes key="NSScrollAmts">QSAAAEEgAABBkAAAQZAAAA</bytes> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - <object class="NSPopUpButton" id="946631811"> - <reference key="NSNextResponder" ref="1045056406"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{177, 214}, {145, 22}}</string> - <reference key="NSSuperview" ref="1045056406"/> - <reference key="NSNextKeyView" ref="822332749"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="203451275"> - <int key="NSCellFlags">71303232</int> - <int key="NSCellFlags2">134349824</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="946631811"/> - <int key="NSButtonFlags">-1232977920</int> - <int key="NSButtonFlags2">402653229</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">y</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <object class="NSMenuItem" key="NSMenuItem" id="805187535"> - <reference key="NSMenu" ref="68018697"/> - <bool key="NSIsHidden">YES</bool> - <string key="NSTitle">Query History</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="203451275"/> - </object> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="68018697"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"> - <reference ref="805187535"/> - <object class="NSMenuItem" id="371986622"> - <reference key="NSMenu" ref="68018697"/> - <string key="NSTitle">Copy History</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">524288</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">300000</int> - <reference key="NSTarget" ref="203451275"/> - </object> - <object class="NSMenuItem" id="550977381"> - <reference key="NSMenu" ref="68018697"/> - <bool key="NSIsAlternate">YES</bool> - <string key="NSTitle">Save History…</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">300001</int> - <reference key="NSTarget" ref="203451275"/> - </object> - <object class="NSMenuItem" id="731432810"> - <reference key="NSMenu" ref="68018697"/> - <string key="NSTitle">Clear History</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">300002</int> - <reference key="NSTarget" ref="203451275"/> - </object> - <object class="NSMenuItem" id="93362483"> - <reference key="NSMenu" ref="68018697"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="203451275"/> - </object> - <object class="NSMenuItem" id="914705967"> - <reference key="NSMenu" ref="68018697"/> - <string key="NSTitle">..placeholder for seachfield..</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="203451275"/> - </object> - <object class="NSMenuItem" id="822215583"> - <reference key="NSMenu" ref="68018697"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="203451275"/> - </object> - </array> - </object> - <bool key="NSPullDown">YES</bool> - <int key="NSPreferredEdge">3</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">2</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSPopUpButton" id="1011012479"> - <reference key="NSNextResponder" ref="1045056406"/> - <int key="NSvFlags">264</int> - <string key="NSFrame">{{38, 214}, {129, 22}}</string> - <reference key="NSSuperview" ref="1045056406"/> - <reference key="NSNextKeyView" ref="946631811"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="564853010"> - <int key="NSCellFlags">71303232</int> - <int key="NSCellFlags2">134349824</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="1011012479"/> - <int key="NSButtonFlags">-1232977920</int> - <int key="NSButtonFlags2">402653229</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">f</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <object class="NSMenuItem" key="NSMenuItem" id="355501218"> - <reference key="NSMenu" ref="224969865"/> - <bool key="NSIsHidden">YES</bool> - <string key="NSTitle">Query Favorites</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="564853010"/> - </object> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="224969865"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"> - <reference ref="355501218"/> - <object class="NSMenuItem" id="1050766707"> - <reference key="NSMenu" ref="224969865"/> - <string key="NSTitle">Save Query to Favorites</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">524288</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">100000</int> - <reference key="NSTarget" ref="564853010"/> - </object> - <object class="NSMenuItem" id="234421740"> - <reference key="NSMenu" ref="224969865"/> - <bool key="NSIsAlternate">YES</bool> - <string key="NSTitle">Save All to Favorites</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">100001</int> - <reference key="NSTarget" ref="564853010"/> - </object> - <object class="NSMenuItem" id="1022664845"> - <reference key="NSMenu" ref="224969865"/> - <string key="NSTitle">Edit Favorites...</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="564853010"/> - </object> - <object class="NSMenuItem" id="932988434"> - <reference key="NSMenu" ref="224969865"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="564853010"/> - </object> - <object class="NSMenuItem" id="515713596"> - <reference key="NSMenu" ref="224969865"/> - <string key="NSTitle">..placeholder for seachfield..</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="564853010"/> - </object> - <object class="NSMenuItem" id="625552275"> - <reference key="NSMenu" ref="224969865"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="564853010"/> - </object> - </array> - </object> - <bool key="NSPullDown">YES</bool> - <int key="NSPreferredEdge">3</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">2</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSPopUpButton" id="302688264"> - <reference key="NSNextResponder" ref="1045056406"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{-13, 214}, {48, 23}}</string> - <reference key="NSSuperview" ref="1045056406"/> - <reference key="NSNextKeyView" ref="53884609"/> - <string key="NSHuggingPriority">{250, 250}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="364838886"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">134219776</int> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="302688264"/> - <int key="NSButtonFlags">-2044051456</int> - <int key="NSButtonFlags2">2</int> - <reference key="NSAlternateImage" ref="959847048"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <object class="NSMenuItem" key="NSMenuItem" id="456837278"> - <reference key="NSMenu" ref="1011773814"/> - <bool key="NSIsHidden">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSImage" ref="158871648"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="364838886"/> - </object> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="1011773814"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"> - <reference ref="456837278"/> - <object class="NSMenuItem" id="286715853"> - <reference key="NSMenu" ref="1011773814"/> - <string key="NSTitle">Previous Query from History</string> - <string key="NSKeyEquiv"></string> - <int key="NSKeyEquivModMask">262144</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">3</int> - <reference key="NSTarget" ref="364838886"/> - </object> - <object class="NSMenuItem" id="1064501839"> - <reference key="NSMenu" ref="1011773814"/> - <string key="NSTitle">Next Query from History</string> - <string key="NSKeyEquiv"></string> - <int key="NSKeyEquivModMask">262144</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">4</int> - <reference key="NSTarget" ref="364838886"/> - </object> - <object class="NSMenuItem" id="199616001"> - <reference key="NSMenu" ref="1011773814"/> - <string key="NSTitle">History Replaces Editor Content</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="364838886"/> - </object> - <object class="NSMenuItem" id="660953252"> - <reference key="NSMenu" ref="1011773814"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="364838886"/> - </object> - <object class="NSMenuItem" id="1020611848"> - <reference key="NSMenu" ref="1011773814"/> - <string key="NSTitle">Favorite Replaces Editor Content</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="364838886"/> - </object> - <object class="NSMenuItem" id="869205956"> - <reference key="NSMenu" ref="1011773814"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="364838886"/> - </object> - <object class="NSMenuItem" id="766303892"> - <reference key="NSMenu" ref="1011773814"/> - <string key="NSTitle">Shift Right</string> - <string key="NSKeyEquiv">]</string> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">6</int> - <reference key="NSTarget" ref="364838886"/> - </object> - <object class="NSMenuItem" id="213433712"> - <reference key="NSMenu" ref="1011773814"/> - <string key="NSTitle">Shift Left</string> - <string key="NSKeyEquiv">[</string> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">7</int> - <reference key="NSTarget" ref="364838886"/> - </object> - <object class="NSMenuItem" id="447780045"> - <reference key="NSMenu" ref="1011773814"/> - <string key="NSTitle">Comment Line</string> - <string key="NSKeyEquiv">/</string> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">11</int> - <reference key="NSTarget" ref="364838886"/> - </object> - <object class="NSMenuItem" id="469260279"> - <reference key="NSMenu" ref="1011773814"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsAlternate">YES</bool> - <string key="NSTitle">Comment Current Query</string> - <string key="NSKeyEquiv">/</string> - <int key="NSKeyEquivModMask">1572864</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">12</int> - <reference key="NSTarget" ref="364838886"/> - </object> - <object class="NSMenuItem" id="57130105"> - <reference key="NSMenu" ref="1011773814"/> - <string key="NSTitle">Completion List</string> - <string type="base64-UTF8" key="NSKeyEquiv">Gw</string> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">8</int> - <reference key="NSTarget" ref="364838886"/> - </object> - <object class="NSMenuItem" id="990629311"> - <reference key="NSMenu" ref="1011773814"/> - <string key="NSTitle">Show Completion List</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">submenuAction:</string> - <reference key="NSTarget" ref="742637004"/> - <object class="NSMenu" key="NSSubmenu" id="742637004"> - <string key="NSTitle">Show Completion List</string> - <array class="NSMutableArray" key="NSMenuItems"> - <object class="NSMenuItem" id="500992522"> - <reference key="NSMenu" ref="742637004"/> - <string key="NSTitle">All Databases Names</string> - <string key="NSKeyEquiv">1</string> - <int key="NSKeyEquivModMask">1572864</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">8000</int> - <reference key="NSTarget" ref="364838886"/> - </object> - <object class="NSMenuItem" id="918336131"> - <reference key="NSMenu" ref="742637004"/> - <string key="NSTitle">All Table and View Names</string> - <string key="NSKeyEquiv">2</string> - <int key="NSKeyEquivModMask">1572864</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">8001</int> - <reference key="NSTarget" ref="364838886"/> - </object> - <object class="NSMenuItem" id="264393634"> - <reference key="NSMenu" ref="742637004"/> - <string key="NSTitle">All Field Names From Current Table</string> - <string key="NSKeyEquiv">3</string> - <int key="NSKeyEquivModMask">1572864</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">8002</int> - <reference key="NSTarget" ref="364838886"/> - </object> - </array> - </object> - </object> - <object class="NSMenuItem" id="192567662"> - <reference key="NSMenu" ref="1011773814"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="364838886"/> - </object> - <object class="NSMenuItem" id="144797562"> - <reference key="NSMenu" ref="1011773814"/> - <string key="NSTitle">Editor Font...</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="364838886"/> - </object> - <object class="NSMenuItem" id="385179024"> - <reference key="NSMenu" ref="1011773814"/> - <string key="NSTitle">Indent New Lines</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">9</int> - <reference key="NSTarget" ref="364838886"/> - </object> - <object class="NSMenuItem" id="45246447"> - <reference key="NSMenu" ref="1011773814"/> - <string key="NSTitle">Auto-pair Characters</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">10</int> - <reference key="NSTarget" ref="364838886"/> - </object> - <object class="NSMenuItem" id="652841032"> - <reference key="NSMenu" ref="1011773814"/> - <string key="NSTitle">Auto-uppercase Keywords</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="364838886"/> - </object> - <object class="NSMenuItem" id="541956954"> - <reference key="NSMenu" ref="1011773814"/> - <string key="NSTitle">Auto-completion</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="364838886"/> - </object> - <object class="NSMenuItem" id="55951713"> - <reference key="NSMenu" ref="1011773814"/> - <string key="NSTitle">Update Help while typing</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="364838886"/> - </object> - </array> - <bool key="NSNoAutoenable">YES</bool> - </object> - <int key="NSSelectedIndex">15</int> - <bool key="NSPullDown">YES</bool> - <int key="NSPreferredEdge">1</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSImageView" id="53884609"> - <reference key="NSNextResponder" ref="1045056406"/> - <int key="NSvFlags">266</int> - <set class="NSMutableSet" key="NSDragTypes"> - <string>Apple PDF pasteboard type</string> - <string>Apple PICT pasteboard type</string> - <string>Apple PNG pasteboard type</string> - <string>NSFilenamesPboardType</string> - <string>NeXT Encapsulated PostScript v1.2 pasteboard type</string> - <string>NeXT TIFF v4.0 pasteboard type</string> - </set> - <string key="NSFrame">{{26, 214}, {670, 23}}</string> - <reference key="NSSuperview" ref="1045056406"/> - <reference key="NSNextKeyView" ref="1011012479"/> - <bool key="NSEnabled">YES</bool> - <object class="NSImageCell" key="NSCell" id="939189497"> - <int key="NSCellFlags">0</int> - <int key="NSCellFlags2">33554432</int> - <reference key="NSContents" ref="931244262"/> - <int key="NSAlign">0</int> - <int key="NSScale">1</int> - <int key="NSStyle">0</int> - <bool key="NSAnimates">NO</bool> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSEditable">YES</bool> - </object> - </array> - <string key="NSFrame">{{0, 152}, {696, 237}}</string> - <reference key="NSSuperview" ref="9338668"/> - <reference key="NSNextKeyView" ref="302688264"/> - <bool key="NSDoNotTranslateAutoresizingMask">YES</bool> - <string key="NSClassName">NSView</string> - </object> - </array> - <string key="NSFrameSize">{696, 389}</string> - <reference key="NSSuperview" ref="446923801"/> - <reference key="NSNextKeyView" ref="154150014"/> - </object> - </array> - <string key="NSFrameSize">{696, 391}</string> - <reference key="NSSuperview" ref="77719398"/> - <reference key="NSNextKeyView" ref="9338668"/> - <bool key="NSDoNotTranslateAutoresizingMask">YES</bool> - </object> - <object class="NSView" id="105597532"> - <reference key="NSNextResponder" ref="77719398"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextField" id="561268593"> - <reference key="NSNextResponder" ref="105597532"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{15, 91}, {363, 14}}</string> - <reference key="NSSuperview" ref="105597532"/> - <reference key="NSNextKeyView" ref="663912545"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="779758898"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272761856</int> - <string key="NSContents">Query Status</string> - <reference key="NSSupport" ref="27"/> - <reference key="NSControlView" ref="561268593"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSScrollView" id="663912545"> - <reference key="NSNextResponder" ref="105597532"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="724030266"> - <reference key="NSNextResponder" ref="663912545"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextView" id="767200221"> - <reference key="NSNextResponder" ref="724030266"/> - <int key="NSvFlags">2322</int> - <string key="NSFrameSize">{672, 72}</string> - <reference key="NSSuperview" ref="724030266"/> - <reference key="NSNextKeyView" ref="865629592"/> - <object class="NSTextContainer" key="NSTextContainer" id="545876225"> - <object class="NSLayoutManager" key="NSLayoutManager"> - <object class="NSTextStorage" key="NSTextStorage"> - <object class="NSMutableString" key="NSString"> - <characters key="NS.bytes"/> - </object> - <nil key="NSDelegate"/> - </object> - <array class="NSMutableArray" key="NSTextContainers"> - <reference ref="545876225"/> - </array> - <int key="NSLMFlags">166</int> - <nil key="NSDelegate"/> - </object> - <reference key="NSTextView" ref="767200221"/> - <double key="NSWidth">672</double> - <int key="NSTCFlags">1</int> - </object> - <object class="NSTextViewSharedData" key="NSSharedData"> - <int key="NSFlags">2085</int> - <int key="NSTextCheckingTypes">0</int> - <nil key="NSMarkedAttributes"/> - <reference key="NSBackgroundColor" ref="457906098"/> - <dictionary key="NSSelectedAttributes"> - <reference key="NSBackgroundColor" ref="695342849"/> - <reference key="NSColor" ref="294465151"/> - </dictionary> - <reference key="NSInsertionColor" ref="667308713"/> - <dictionary key="NSLinkAttributes"> - <reference key="NSColor" ref="618433734"/> - <reference key="NSCursor" ref="113216199"/> - <integer value="1" key="NSUnderline"/> - </dictionary> - <nil key="NSDefaultParagraphStyle"/> - <nil key="NSTextFinder"/> - <int key="NSPreferredTextFinderStyle">0</int> - </object> - <int key="NSTVFlags">7</int> - <string key="NSMaxSize">{887, 10000000}</string> - <nil key="NSDelegate"/> - </object> - </array> - <string key="NSFrameSize">{672, 72}</string> - <reference key="NSSuperview" ref="663912545"/> - <reference key="NSNextKeyView" ref="767200221"/> - <reference key="NSDocView" ref="767200221"/> - <reference key="NSBGColor" ref="457906098"/> - <reference key="NSCursor" ref="546590681"/> - <int key="NScvFlags">2</int> - </object> - <object class="NSScroller" id="865629592"> - <reference key="NSNextResponder" ref="663912545"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{-100, -100}, {87, 18}}</string> - <reference key="NSSuperview" ref="663912545"/> - <reference key="NSNextKeyView" ref="724030266"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">1</int> - <reference key="NSTarget" ref="663912545"/> - <string key="NSAction">_doScroller:</string> - <double key="NSCurValue">1</double> - </object> - <object class="NSScroller" id="622087604"> - <reference key="NSNextResponder" ref="663912545"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{225, 0}, {15, 135}}</string> - <reference key="NSSuperview" ref="663912545"/> - <reference key="NSNextKeyView" ref="245508703"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <reference key="NSTarget" ref="663912545"/> - <string key="NSAction">_doScroller:</string> - </object> - </array> - <string key="NSFrame">{{12, 12}, {672, 72}}</string> - <reference key="NSSuperview" ref="105597532"/> - <reference key="NSNextKeyView" ref="724030266"/> - <int key="NSsFlags">133648</int> - <reference key="NSVScroller" ref="622087604"/> - <reference key="NSHScroller" ref="865629592"/> - <reference key="NSContentView" ref="724030266"/> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - </array> - <string key="NSFrame">{{0, 392}, {696, 117}}</string> - <reference key="NSSuperview" ref="77719398"/> - <reference key="NSNextKeyView" ref="561268593"/> - <bool key="NSDoNotTranslateAutoresizingMask">YES</bool> - </object> - </array> - <string key="NSFrame">{{6, 33}, {696, 509}}</string> - <reference key="NSSuperview" ref="950160581"/> - <reference key="NSNextKeyView" ref="446923801"/> - <int key="NSDividerStyle">2</int> - </object> - <object class="NSTextField" id="93347433"> - <reference key="NSNextResponder" ref="950160581"/> - <int key="NSvFlags">290</int> - <string key="NSFrame">{{103, 12}, {582, 17}}</string> - <reference key="NSSuperview" ref="950160581"/> - <reference key="NSNextKeyView"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="316003741"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">4194304</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="93347433"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrame">{{10, 7}, {706, 544}}</string> - <reference key="NSNextKeyView" ref="77719398"/> - </object> - <string key="NSLabel">Custom Query</string> - <reference key="NSColor" ref="647098198"/> - <reference key="NSTabView" ref="280187924"/> - </object> - <object class="NSTabViewItem" id="618922025"> - <string key="NSIdentifier">status</string> - <object class="NSView" key="NSView" id="278510490"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSSplitView" id="420718918"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSCustomView" id="697228900"> - <reference key="NSNextResponder" ref="420718918"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSScrollView" id="834551573"> - <reference key="NSNextResponder" ref="697228900"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="378663488"> - <reference key="NSNextResponder" ref="834551573"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextView" id="902567272"> - <reference key="NSNextResponder" ref="378663488"/> - <int key="NSvFlags">2322</int> - <set class="NSMutableSet" key="NSDragTypes"> - <string>Apple HTML pasteboard type</string> - <string>Apple PDF pasteboard type</string> - <string>Apple PICT pasteboard type</string> - <string>Apple PNG pasteboard type</string> - <string>Apple URL pasteboard type</string> - <string>CorePasteboardFlavorType 0x6D6F6F76</string> - <string>NSColor pasteboard type</string> - <string>NSFilenamesPboardType</string> - <string>NSStringPboardType</string> - <string>NeXT Encapsulated PostScript v1.2 pasteboard type</string> - <string>NeXT RTFD pasteboard type</string> - <string>NeXT Rich Text Format v1.0 pasteboard type</string> - <string>NeXT TIFF v4.0 pasteboard type</string> - <string>NeXT font pasteboard type</string> - <string>NeXT ruler pasteboard type</string> - <string>WebURLsWithTitlesPboardType</string> - <string>public.url</string> - </set> - <string key="NSFrameSize">{541, 70}</string> - <reference key="NSSuperview" ref="378663488"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="582113763"/> - <object class="NSTextContainer" key="NSTextContainer" id="570118886"> - <object class="NSLayoutManager" key="NSLayoutManager"> - <object class="NSTextStorage" key="NSTextStorage"> - <object class="NSMutableString" key="NSString"> - <characters key="NS.bytes"/> - </object> - <nil key="NSDelegate"/> - </object> - <array class="NSMutableArray" key="NSTextContainers"> - <reference ref="570118886"/> - </array> - <int key="NSLMFlags">38</int> - <nil key="NSDelegate"/> - </object> - <reference key="NSTextView" ref="902567272"/> - <double key="NSWidth">541</double> - <int key="NSTCFlags">1</int> - </object> - <object class="NSTextViewSharedData" key="NSSharedData"> - <int key="NSFlags">11139</int> - <int key="NSTextCheckingTypes">0</int> - <nil key="NSMarkedAttributes"/> - <reference key="NSBackgroundColor" ref="457906098"/> - <dictionary key="NSSelectedAttributes"> - <reference key="NSBackgroundColor" ref="695342849"/> - <reference key="NSColor" ref="294465151"/> - </dictionary> - <reference key="NSInsertionColor" ref="667308713"/> - <dictionary key="NSLinkAttributes"> - <reference key="NSColor" ref="618433734"/> - <reference key="NSCursor" ref="113216199"/> - <integer value="1" key="NSUnderline"/> - </dictionary> - <nil key="NSDefaultParagraphStyle"/> - <nil key="NSTextFinder"/> - <int key="NSPreferredTextFinderStyle">1</int> - </object> - <int key="NSTVFlags">6</int> - <string key="NSMaxSize">{1097, 10000000}</string> - <nil key="NSDelegate"/> - </object> - </array> - <string key="NSFrame">{{1, 1}, {541, 70}}</string> - <reference key="NSSuperview" ref="834551573"/> - <reference key="NSNextKeyView" ref="902567272"/> - <reference key="NSDocView" ref="902567272"/> - <reference key="NSBGColor" ref="457906098"/> - <reference key="NSCursor" ref="546590681"/> - <int key="NScvFlags">4</int> - </object> - <object class="NSScroller" id="301562599"> - <reference key="NSNextResponder" ref="834551573"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{-100, -100}, {87, 18}}</string> - <reference key="NSSuperview" ref="834551573"/> - <reference key="NSNextKeyView" ref="378663488"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">1</int> - <reference key="NSTarget" ref="834551573"/> - <string key="NSAction">_doScroller:</string> - <double key="NSCurValue">1</double> - </object> - <object class="NSScroller" id="582113763"> - <reference key="NSNextResponder" ref="834551573"/> - <int key="NSvFlags">256</int> - <string key="NSFrame">{{542, 1}, {11, 70}}</string> - <reference key="NSSuperview" ref="834551573"/> - <reference key="NSNextKeyView" ref="807082629"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">256</int> - <reference key="NSTarget" ref="834551573"/> - <string key="NSAction">_doScroller:</string> - </object> - </array> - <string key="NSFrame">{{109, 0}, {554, 72}}</string> - <reference key="NSSuperview" ref="697228900"/> - <reference key="NSNextKeyView" ref="301562599"/> - <int key="NSsFlags">133138</int> - <reference key="NSVScroller" ref="582113763"/> - <reference key="NSHScroller" ref="301562599"/> - <reference key="NSContentView" ref="378663488"/> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - <object class="NSTextField" id="839835928"> - <reference key="NSNextResponder" ref="697228900"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{4, 58}, {100, 14}}</string> - <reference key="NSSuperview" ref="697228900"/> - <reference key="NSNextKeyView" ref="834551573"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="191751479"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Comments:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="839835928"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrameSize">{663, 72}</string> - <reference key="NSSuperview" ref="420718918"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="839835928"/> - <bool key="NSDoNotTranslateAutoresizingMask">YES</bool> - <string key="NSClassName">NSView</string> - </object> - <object class="NSCustomView" id="807082629"> - <reference key="NSNextResponder" ref="420718918"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSScrollView" id="866412611"> - <reference key="NSNextResponder" ref="807082629"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="121595321"> - <reference key="NSNextResponder" ref="866412611"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextView" id="804444600"> - <reference key="NSNextResponder" ref="121595321"/> - <int key="NSvFlags">2322</int> - <string key="NSFrameSize">{541, 197}</string> - <reference key="NSSuperview" ref="121595321"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="486433207"/> - <object class="NSTextContainer" key="NSTextContainer" id="36027070"> - <object class="NSLayoutManager" key="NSLayoutManager"> - <object class="NSTextStorage" key="NSTextStorage"> - <object class="NSMutableString" key="NSString"> - <characters key="NS.bytes"/> - </object> - <nil key="NSDelegate"/> - </object> - <array class="NSMutableArray" key="NSTextContainers"> - <reference ref="36027070"/> - </array> - <int key="NSLMFlags">38</int> - <nil key="NSDelegate"/> - </object> - <reference key="NSTextView" ref="804444600"/> - <double key="NSWidth">541</double> - <int key="NSTCFlags">1</int> - </object> - <object class="NSTextViewSharedData" key="NSSharedData"> - <int key="NSFlags">2305</int> - <int key="NSTextCheckingTypes">0</int> - <nil key="NSMarkedAttributes"/> - <reference key="NSBackgroundColor" ref="457906098"/> - <dictionary key="NSSelectedAttributes"> - <reference key="NSBackgroundColor" ref="695342849"/> - <reference key="NSColor" ref="294465151"/> - </dictionary> - <reference key="NSInsertionColor" ref="667308713"/> - <dictionary key="NSLinkAttributes"> - <reference key="NSColor" ref="618433734"/> - <reference key="NSCursor" ref="113216199"/> - <integer value="1" key="NSUnderline"/> - </dictionary> - <nil key="NSDefaultParagraphStyle"/> - <nil key="NSTextFinder"/> - <int key="NSPreferredTextFinderStyle">0</int> - </object> - <int key="NSTVFlags">6</int> - <string key="NSMaxSize">{1097, 10000000}</string> - <nil key="NSDelegate"/> - </object> - </array> - <string key="NSFrame">{{1, 1}, {541, 197}}</string> - <reference key="NSSuperview" ref="866412611"/> - <reference key="NSNextKeyView" ref="804444600"/> - <reference key="NSDocView" ref="804444600"/> - <reference key="NSBGColor" ref="457906098"/> - <reference key="NSCursor" ref="546590681"/> - <int key="NScvFlags">4</int> - </object> - <object class="NSScroller" id="492861350"> - <reference key="NSNextResponder" ref="866412611"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{-100, -100}, {87, 18}}</string> - <reference key="NSSuperview" ref="866412611"/> - <reference key="NSNextKeyView" ref="121595321"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">1</int> - <reference key="NSTarget" ref="866412611"/> - <string key="NSAction">_doScroller:</string> - <double key="NSCurValue">1</double> - </object> - <object class="NSScroller" id="486433207"> - <reference key="NSNextResponder" ref="866412611"/> - <int key="NSvFlags">256</int> - <string key="NSFrame">{{542, 1}, {11, 197}}</string> - <reference key="NSSuperview" ref="866412611"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">256</int> - <reference key="NSTarget" ref="866412611"/> - <string key="NSAction">_doScroller:</string> - </object> - </array> - <string key="NSFrame">{{109, 0}, {554, 199}}</string> - <reference key="NSSuperview" ref="807082629"/> - <reference key="NSNextKeyView" ref="492861350"/> - <int key="NSsFlags">133138</int> - <reference key="NSVScroller" ref="486433207"/> - <reference key="NSHScroller" ref="492861350"/> - <reference key="NSContentView" ref="121595321"/> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - <object class="NSTextField" id="473337782"> - <reference key="NSNextResponder" ref="807082629"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{3, 185}, {101, 14}}</string> - <reference key="NSSuperview" ref="807082629"/> - <reference key="NSNextKeyView" ref="866412611"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="456332788"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Create syntax:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="473337782"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrame">{{0, 81}, {663, 199}}</string> - <reference key="NSSuperview" ref="420718918"/> - <reference key="NSNextKeyView" ref="473337782"/> - <bool key="NSDoNotTranslateAutoresizingMask">YES</bool> - <string key="NSClassName">NSView</string> - </object> - </array> - <string key="NSFrame">{{12, 30}, {663, 280}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSNextKeyView" ref="697228900"/> - <string key="NSAutosaveName">TableInfoSplitter</string> - </object> - <object class="NSTextField" id="592029739"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{22, 501}, {91, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSNextKeyView" ref="830707723"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="46798413"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Type:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="592029739"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="1054128943"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{369, 475}, {305, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="526261346"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="683883535"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272761856</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="1054128943"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="63508502"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{369, 500}, {305, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="242316182"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="374244434"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272761856</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="63508502"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="242316182"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{23, 475}, {90, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="937658032"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="581448147"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Encoding:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="242316182"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="526261346"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{23, 450}, {91, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="820725497"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="91053939"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Collation:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="526261346"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSPopUpButton" id="830707723"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{115, 496}, {161, 22}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="124896395"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="338004653"> - <int key="NSCellFlags">608174144</int> - <int key="NSCellFlags2">133120</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="830707723"/> - <int key="NSButtonFlags">109199360</int> - <int key="NSButtonFlags2">129</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <nil key="NSMenuItem"/> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="491557747"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"/> - </object> - <int key="NSSelectedIndex">-1</int> - <int key="NSPreferredEdge">1</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">2</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSPopUpButton" id="937658032"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{115, 471}, {161, 22}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="812921916"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="962046381"> - <int key="NSCellFlags">608174144</int> - <int key="NSCellFlags2">133120</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="937658032"/> - <int key="NSButtonFlags">109199360</int> - <int key="NSButtonFlags2">129</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <nil key="NSMenuItem"/> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="920683899"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"/> - </object> - <int key="NSSelectedIndex">-1</int> - <int key="NSPreferredEdge">1</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">2</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSPopUpButton" id="820725497"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{115, 446}, {161, 22}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="743309567"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="98299516"> - <int key="NSCellFlags">608174144</int> - <int key="NSCellFlags2">133120</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="820725497"/> - <int key="NSButtonFlags">109199360</int> - <int key="NSButtonFlags2">129</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <nil key="NSMenuItem"/> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="467696442"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"/> - </object> - <int key="NSSelectedIndex">-1</int> - <int key="NSPreferredEdge">1</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">2</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSBox" id="743309567"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">10</int> - <array class="NSMutableArray" key="NSSubviews"/> - <string key="NSFrame">{{25, 427}, {650, 5}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="776897844"/> - <string key="NSHuggingPriority">{250, 750}</string> - <string key="NSOffsets">{0, 0}</string> - <object class="NSTextFieldCell" key="NSTitleCell"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">Box</string> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSBackgroundColor" ref="812613095"/> - <object class="NSColor" key="NSTextColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MCAwLjgAA</bytes> - </object> - </object> - <int key="NSBorderType">3</int> - <int key="NSBoxType">2</int> - <int key="NSTitlePosition">0</int> - <bool key="NSTransparent">NO</bool> - </object> - <object class="NSBox" id="1000632746"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">10</int> - <array class="NSMutableArray" key="NSSubviews"/> - <string key="NSFrame">{{24, 316}, {650, 5}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="420718918"/> - <string key="NSHuggingPriority">{250, 750}</string> - <string key="NSOffsets">{0, 0}</string> - <object class="NSTextFieldCell" key="NSTitleCell"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">Box</string> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSBackgroundColor" ref="812613095"/> - <object class="NSColor" key="NSTextColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MCAwLjgAA</bytes> - </object> - </object> - <int key="NSBorderType">3</int> - <int key="NSBoxType">2</int> - <int key="NSTitlePosition">0</int> - <bool key="NSTransparent">NO</bool> - </object> - <object class="NSTextField" id="943922923"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">270</int> - <string key="NSFrame">{{175, 400}, {100, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="791684674"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="240431046"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272761856</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="943922923"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="410504890"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">270</int> - <string key="NSFrame">{{175, 378}, {100, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="522385452"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="1010023288"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272761856</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="410504890"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="369069279"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">270</int> - <string key="NSFrame">{{175, 356}, {100, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="611328602"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="521580051"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272761856</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="369069279"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="735808692"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{175, 334}, {101, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="232041442"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="105876720"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272761856</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="735808692"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="503851323"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">270</int> - <string key="NSFrame">{{462, 400}, {211, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="3304071"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="317042184"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272761856</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="503851323"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="647578769"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">270</int> - <string key="NSFrame">{{462, 378}, {211, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="999015886"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="22762208"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272761856</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="647578769"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="82785785"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{462, 356}, {212, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="408386519"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="789799380"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272761856</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="82785785"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="127338398"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{462, 334}, {212, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="1000632746"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="265963207"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272761856</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="127338398"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSPopUpButton" id="408386519"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{26, 332}, {20, 20}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="1043559038"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="697454287"> - <int key="NSCellFlags">-2076180416</int> - <int key="NSCellFlags2">134350848</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="408386519"/> - <int key="NSButtonFlags">-2034089984</int> - <int key="NSButtonFlags2">162</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <object class="NSMenuItem" key="NSMenuItem" id="237209968"> - <reference key="NSMenu" ref="461446275"/> - <bool key="NSIsHidden">YES</bool> - <string key="NSTitle">Item 1</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <object class="NSCustomResource" key="NSImage"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">NSAdvanced</string> - </object> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="697454287"/> - </object> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="461446275"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"> - <reference ref="237209968"/> - <object class="NSMenuItem" id="392059056"> - <reference key="NSMenu" ref="461446275"/> - <string key="NSTitle">Reset AUTO_INCREMENT</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">2</int> - <reference key="NSTarget" ref="697454287"/> - </object> - <object class="NSMenuItem" id="265631523"> - <reference key="NSMenu" ref="461446275"/> - <string key="NSTitle">Reset AUTO_INCREMENT to…</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">1</int> - <reference key="NSTarget" ref="697454287"/> - </object> - </array> - </object> - <bool key="NSPullDown">YES</bool> - <int key="NSPreferredEdge">1</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSTextField" id="1043559038"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{50, 334}, {123, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="735808692"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="955749643"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Auto increment:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="1043559038"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="999015886"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{23, 356}, {150, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="369069279"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="341607832"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Avg. row length:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="999015886"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="3304071"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{23, 378}, {150, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="410504890"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="359324690"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Row format:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="3304071"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="776897844"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{23, 400}, {150, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="943922923"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="704221403"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Number of rows:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="776897844"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="791684674"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{286, 400}, {172, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="503851323"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="526015898"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Data size:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="791684674"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="124896395"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{286, 500}, {82, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="63508502"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="65339765"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Created at:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="124896395"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="812921916"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{286, 475}, {82, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="1054128943"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="1020224144"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Updated at:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="812921916"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="522385452"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{286, 378}, {172, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="647578769"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="195581642"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Max data size:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="522385452"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="611328602"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{286, 356}, {172, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="82785785"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="1065971511"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Index size:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="611328602"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="232041442"> - <reference key="NSNextResponder" ref="278510490"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{286, 334}, {172, 14}}</string> - <reference key="NSSuperview" ref="278510490"/> - <reference key="NSWindow"/> - <reference key="NSNextKeyView" ref="127338398"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="138231801"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Free data size:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="232041442"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrame">{{10, 7}, {706, 544}}</string> - <reference key="NSNextKeyView" ref="592029739"/> - </object> - <string key="NSLabel">Status</string> - <reference key="NSColor" ref="647098198"/> - <reference key="NSTabView" ref="280187924"/> - </object> - <object class="NSTabViewItem" id="770375991"> - <string key="NSIdentifier">relations</string> - <object class="NSView" key="NSView" id="995722234"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSScrollView" id="129614519"> - <reference key="NSNextResponder" ref="995722234"/> - <int key="NSvFlags">4370</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="212426562"> - <reference key="NSNextResponder" ref="129614519"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTableView" id="371927703"> - <reference key="NSNextResponder" ref="212426562"/> - <int key="NSvFlags">4352</int> - <string key="NSFrameSize">{694, 456}</string> - <reference key="NSSuperview" ref="212426562"/> - <reference key="NSNextKeyView" ref="248334644"/> - <bool key="NSEnabled">YES</bool> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSControlAllowsExpansionToolTips">YES</bool> - <object class="NSTableHeaderView" key="NSHeaderView" id="738684910"> - <reference key="NSNextResponder" ref="1059229736"/> - <int key="NSvFlags">256</int> - <string key="NSFrameSize">{694, 17}</string> - <reference key="NSSuperview" ref="1059229736"/> - <reference key="NSNextKeyView" ref="212426562"/> - <reference key="NSTableView" ref="371927703"/> - </object> - <object class="_NSCornerView" key="NSCornerView" id="248334644"> - <reference key="NSNextResponder" ref="129614519"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrameSize">{15, 20}</string> - <reference key="NSSuperview" ref="129614519"/> - <reference key="NSNextKeyView" ref="1059229736"/> - </object> - <array class="NSMutableArray" key="NSTableColumns"> - <object class="NSTableColumn" id="944957441"> - <string key="NSIdentifier">name</string> - <double key="NSWidth">126</double> - <double key="NSMinWidth">8</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Name</string> - <reference key="NSSupport" ref="26"/> - <object class="NSColor" key="NSBackgroundColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MC4zMzMzMzI5ODU2AA</bytes> - </object> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="118076262"> - <int key="NSCellFlags">338690113</int> - <int key="NSCellFlags2">132096</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="371927703"/> - <reference key="NSBackgroundColor" ref="457906098"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="371927703"/> - </object> - <object class="NSTableColumn" id="406152619"> - <string key="NSIdentifier">columns</string> - <double key="NSWidth">89</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">3.4028230607370965e+38</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Columns</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="28130600"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="371927703"/> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="371927703"/> - </object> - <object class="NSTableColumn" id="769452486"> - <string key="NSIdentifier">fk_database</string> - <double key="NSWidth">86</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">3.4028234663852886e+38</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">FK Database</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="115960720"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="371927703"/> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="371927703"/> - </object> - <object class="NSTableColumn" id="140307253"> - <string key="NSIdentifier">fk_table</string> - <double key="NSWidth">95</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">3.4028230607370965e+38</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">FK Table</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="1059770652"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="371927703"/> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="371927703"/> - </object> - <object class="NSTableColumn" id="266761466"> - <string key="NSIdentifier">fk_columns</string> - <double key="NSWidth">130</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">3.4028230607370965e+38</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">FK Columns</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="680367617"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="371927703"/> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="371927703"/> - </object> - <object class="NSTableColumn" id="682363670"> - <string key="NSIdentifier">on_update</string> - <double key="NSWidth">76</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">3.4028230607370965e+38</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">On Update</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="471953548"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="371927703"/> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="371927703"/> - </object> - <object class="NSTableColumn" id="584754487"> - <string key="NSIdentifier">on_delete</string> - <double key="NSWidth">71</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">3.4028230607370965e+38</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">On Delete</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="552310450"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="371927703"/> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="371927703"/> - </object> - </array> - <double key="NSIntercellSpacingWidth">3</double> - <double key="NSIntercellSpacingHeight">2</double> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSGridColor" ref="88855454"/> - <double key="NSRowHeight">16</double> - <int key="NSTvFlags">-624918528</int> - <reference key="NSDelegate"/> - <reference key="NSDataSource"/> - <int key="NSColumnAutoresizingStyle">1</int> - <int key="NSDraggingSourceMaskForLocal">-1</int> - <int key="NSDraggingSourceMaskForNonLocal">0</int> - <bool key="NSAllowsTypeSelect">YES</bool> - <int key="NSTableViewDraggingDestinationStyle">0</int> - <int key="NSTableViewGroupRowStyle">1</int> - </object> - </array> - <string key="NSFrame">{{1, 17}, {694, 456}}</string> - <reference key="NSSuperview" ref="129614519"/> - <reference key="NSNextKeyView" ref="371927703"/> - <reference key="NSDocView" ref="371927703"/> - <reference key="NSBGColor" ref="866033095"/> - <int key="NScvFlags">2</int> - </object> - <object class="NSClipView" id="1059229736"> - <reference key="NSNextResponder" ref="129614519"/> - <int key="NSvFlags">2338</int> - <array class="NSMutableArray" key="NSSubviews"> - <reference ref="738684910"/> - </array> - <string key="NSFrame">{{1, 0}, {694, 17}}</string> - <reference key="NSSuperview" ref="129614519"/> - <reference key="NSNextKeyView" ref="738684910"/> - <reference key="NSDocView" ref="738684910"/> - </object> - <object class="NSScroller" id="816193636"> - <reference key="NSNextResponder" ref="129614519"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{674, 17}, {15, 453}}</string> - <reference key="NSSuperview" ref="129614519"/> - <reference key="NSNextKeyView" ref="235841912"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <reference key="NSTarget" ref="129614519"/> - <string key="NSAction">_doScroller:</string> - </object> - <object class="NSScroller" id="235841912"> - <reference key="NSNextResponder" ref="129614519"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{1, 470}, {688, 15}}</string> - <reference key="NSSuperview" ref="129614519"/> - <reference key="NSNextKeyView" ref="485666585"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">1</int> - <reference key="NSTarget" ref="129614519"/> - <string key="NSAction">_doScroller:</string> - </object> - <reference ref="248334644"/> - </array> - <string key="NSFrame">{{6, 32}, {696, 474}}</string> - <reference key="NSSuperview" ref="995722234"/> - <reference key="NSNextKeyView" ref="212426562"/> - <int key="NSsFlags">133682</int> - <reference key="NSVScroller" ref="816193636"/> - <reference key="NSHScroller" ref="235841912"/> - <reference key="NSContentView" ref="212426562"/> - <reference key="NSHeaderClipView" ref="1059229736"/> - <bytes key="NSScrollAmts">QSAAAEEgAABBkAAAQZAAAA</bytes> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - <object class="NSButton" id="485666585"> - <reference key="NSNextResponder" ref="995722234"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{6, 9}, {32, 25}}</string> - <reference key="NSSuperview" ref="995722234"/> - <reference key="NSNextKeyView" ref="646345802"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="39026102"> - <int key="NSCellFlags">-1543503872</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="485666585"/> - <int key="NSButtonFlags">-2042347520</int> - <int key="NSButtonFlags2">402653219</int> - <reference key="NSNormalImage" ref="813789704"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">a</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="686372736"> - <reference key="NSNextResponder" ref="995722234"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{68, 9}, {32, 25}}</string> - <reference key="NSSuperview" ref="995722234"/> - <reference key="NSNextKeyView" ref="651913430"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="822114336"> - <int key="NSCellFlags">-2080374784</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="686372736"/> - <int key="NSButtonFlags">-2041823232</int> - <int key="NSButtonFlags2">268435491</int> - <reference key="NSNormalImage" ref="24447544"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">r</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="646345802"> - <reference key="NSNextResponder" ref="995722234"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{37, 9}, {32, 25}}</string> - <reference key="NSSuperview" ref="995722234"/> - <reference key="NSNextKeyView" ref="686372736"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="1026156865"> - <int key="NSCellFlags">-1543503872</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="646345802"/> - <int key="NSButtonFlags">-2042347520</int> - <int key="NSButtonFlags2">35</int> - <reference key="NSNormalImage" ref="191705258"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"></string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSImageView" id="651913430"> - <reference key="NSNextResponder" ref="995722234"/> - <int key="NSvFlags">290</int> - <set class="NSMutableSet" key="NSDragTypes"> - <string>Apple PDF pasteboard type</string> - <string>Apple PICT pasteboard type</string> - <string>Apple PNG pasteboard type</string> - <string>NSFilenamesPboardType</string> - <string>NeXT Encapsulated PostScript v1.2 pasteboard type</string> - <string>NeXT TIFF v4.0 pasteboard type</string> - </set> - <string key="NSFrame">{{100, 10}, {602, 23}}</string> - <reference key="NSSuperview" ref="995722234"/> - <reference key="NSNextKeyView" ref="280187924"/> - <bool key="NSEnabled">YES</bool> - <object class="NSImageCell" key="NSCell" id="620473249"> - <int key="NSCellFlags">0</int> - <int key="NSCellFlags2">33554432</int> - <reference key="NSContents" ref="931244262"/> - <int key="NSAlign">0</int> - <int key="NSScale">1</int> - <int key="NSStyle">0</int> - <bool key="NSAnimates">NO</bool> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSEditable">YES</bool> - </object> - <object class="NSTextField" id="854734864"> - <reference key="NSNextResponder" ref="995722234"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{14, 515}, {687, 14}}</string> - <reference key="NSSuperview" ref="995722234"/> - <reference key="NSNextKeyView" ref="129614519"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="913165277"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">272762880</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="854734864"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrame">{{10, 7}, {706, 544}}</string> - <reference key="NSNextKeyView" ref="854734864"/> - </object> - <string key="NSLabel">Relations</string> - <reference key="NSColor" ref="647098198"/> - <reference key="NSTabView" ref="280187924"/> - </object> - <object class="NSTabViewItem" id="782140269"> - <string key="NSIdentifier">triggers</string> - <object class="NSView" key="NSView" id="348437605"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSScrollView" id="76455301"> - <reference key="NSNextResponder" ref="348437605"/> - <int key="NSvFlags">4370</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="428569810"> - <reference key="NSNextResponder" ref="76455301"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTableView" id="203790701"> - <reference key="NSNextResponder" ref="428569810"/> - <int key="NSvFlags">4352</int> - <string key="NSFrameSize">{694, 456}</string> - <reference key="NSSuperview" ref="428569810"/> - <reference key="NSNextKeyView" ref="450150101"/> - <bool key="NSEnabled">YES</bool> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSControlAllowsExpansionToolTips">YES</bool> - <object class="NSTableHeaderView" key="NSHeaderView" id="836953331"> - <reference key="NSNextResponder" ref="431222390"/> - <int key="NSvFlags">256</int> - <string key="NSFrameSize">{694, 17}</string> - <reference key="NSSuperview" ref="431222390"/> - <reference key="NSNextKeyView" ref="428569810"/> - <reference key="NSTableView" ref="203790701"/> - </object> - <object class="_NSCornerView" key="NSCornerView" id="450150101"> - <reference key="NSNextResponder" ref="76455301"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrameSize">{15, 20}</string> - <reference key="NSSuperview" ref="76455301"/> - <reference key="NSNextKeyView" ref="431222390"/> - </object> - <array class="NSMutableArray" key="NSTableColumns"> - <object class="NSTableColumn" id="830933480"> - <string key="NSIdentifier">TriggerName</string> - <double key="NSWidth">94</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">3.4028230607370965e+38</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Trigger</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="71140164"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="203790701"/> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="203790701"/> - </object> - <object class="NSTableColumn" id="297670866"> - <string key="NSIdentifier">TriggerEvent</string> - <double key="NSWidth">60</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">3.4028230607370965e+38</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Event</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="49327695"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="203790701"/> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">2</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="203790701"/> - </object> - <object class="NSTableColumn" id="289888126"> - <string key="NSIdentifier">TriggerActionTime</string> - <double key="NSWidth">59</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">3.4028230607370965e+38</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Timing</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="937165163"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="203790701"/> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">2</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="203790701"/> - </object> - <object class="NSTableColumn" id="658795423"> - <string key="NSIdentifier">TriggerStatement</string> - <double key="NSWidth">230.7109375</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">3.4028230607370965e+38</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Statement</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="580250904"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="203790701"/> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="203790701"/> - </object> - <object class="NSTableColumn" id="560699090"> - <string key="NSIdentifier">TriggerDefiner</string> - <double key="NSWidth">71.5</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">3.4028230607370965e+38</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Definer</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="441066285"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="203790701"/> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="203790701"/> - </object> - <object class="NSTableColumn" id="895656760"> - <string key="NSIdentifier">TriggerCreated</string> - <double key="NSWidth">49.5</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">3.4028234663852886e+38</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Created</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="931739523"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="203790701"/> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="203790701"/> - </object> - <object class="NSTableColumn" id="896451098"> - <string key="NSIdentifier">TriggerSQLMode</string> - <double key="NSWidth">106.5</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">3.4028234663852886e+38</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">SQL Mode</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="258822130"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="203790701"/> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="203790701"/> - </object> - </array> - <double key="NSIntercellSpacingWidth">3</double> - <double key="NSIntercellSpacingHeight">2</double> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSGridColor" ref="88855454"/> - <double key="NSRowHeight">16</double> - <int key="NSTvFlags">-624918528</int> - <reference key="NSDelegate"/> - <reference key="NSDataSource"/> - <int key="NSColumnAutoresizingStyle">1</int> - <int key="NSDraggingSourceMaskForLocal">-1</int> - <int key="NSDraggingSourceMaskForNonLocal">0</int> - <bool key="NSAllowsTypeSelect">YES</bool> - <int key="NSTableViewDraggingDestinationStyle">0</int> - <int key="NSTableViewGroupRowStyle">1</int> - </object> - </array> - <string key="NSFrame">{{1, 17}, {694, 456}}</string> - <reference key="NSSuperview" ref="76455301"/> - <reference key="NSNextKeyView" ref="203790701"/> - <reference key="NSDocView" ref="203790701"/> - <reference key="NSBGColor" ref="866033095"/> - <int key="NScvFlags">2</int> - </object> - <object class="NSClipView" id="431222390"> - <reference key="NSNextResponder" ref="76455301"/> - <int key="NSvFlags">2338</int> - <array class="NSMutableArray" key="NSSubviews"> - <reference ref="836953331"/> - </array> - <string key="NSFrame">{{1, 0}, {694, 17}}</string> - <reference key="NSSuperview" ref="76455301"/> - <reference key="NSNextKeyView" ref="836953331"/> - <reference key="NSDocView" ref="836953331"/> - </object> - <object class="NSScroller" id="892667665"> - <reference key="NSNextResponder" ref="76455301"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{674, 17}, {15, 453}}</string> - <reference key="NSSuperview" ref="76455301"/> - <reference key="NSNextKeyView" ref="421474"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <reference key="NSTarget" ref="76455301"/> - <string key="NSAction">_doScroller:</string> - <double key="NSPercent">0.96710526315789469</double> - </object> - <object class="NSScroller" id="901243988"> - <reference key="NSNextResponder" ref="76455301"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{1, 456}, {694, 15}}</string> - <reference key="NSSuperview" ref="76455301"/> - <reference key="NSNextKeyView" ref="892667665"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">1</int> - <reference key="NSTarget" ref="76455301"/> - <string key="NSAction">_doScroller:</string> - </object> - <reference ref="450150101"/> - </array> - <string key="NSFrame">{{6, 32}, {696, 474}}</string> - <reference key="NSSuperview" ref="348437605"/> - <reference key="NSNextKeyView" ref="428569810"/> - <int key="NSsFlags">133682</int> - <reference key="NSVScroller" ref="892667665"/> - <reference key="NSHScroller" ref="901243988"/> - <reference key="NSContentView" ref="428569810"/> - <reference key="NSHeaderClipView" ref="431222390"/> - <bytes key="NSScrollAmts">QSAAAEEgAABBkAAAQZAAAA</bytes> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - <object class="NSButton" id="421474"> - <reference key="NSNextResponder" ref="348437605"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{6, 9}, {32, 25}}</string> - <reference key="NSSuperview" ref="348437605"/> - <reference key="NSNextKeyView" ref="826516051"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="38287174"> - <int key="NSCellFlags">-1543503872</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="421474"/> - <int key="NSButtonFlags">-2042347520</int> - <int key="NSButtonFlags2">402653219</int> - <reference key="NSNormalImage" ref="813789704"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">a</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="862482881"> - <reference key="NSNextResponder" ref="348437605"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{68, 9}, {32, 25}}</string> - <reference key="NSSuperview" ref="348437605"/> - <reference key="NSNextKeyView" ref="290417695"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="801469834"> - <int key="NSCellFlags">-2080374784</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="862482881"/> - <int key="NSButtonFlags">-2041823232</int> - <int key="NSButtonFlags2">268435491</int> - <reference key="NSNormalImage" ref="24447544"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">r</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="826516051"> - <reference key="NSNextResponder" ref="348437605"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{37, 9}, {32, 25}}</string> - <reference key="NSSuperview" ref="348437605"/> - <reference key="NSNextKeyView" ref="862482881"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="137357772"> - <int key="NSCellFlags">-1543503872</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="826516051"/> - <int key="NSButtonFlags">-2042347520</int> - <int key="NSButtonFlags2">35</int> - <reference key="NSNormalImage" ref="191705258"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"></string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSImageView" id="290417695"> - <reference key="NSNextResponder" ref="348437605"/> - <int key="NSvFlags">290</int> - <set class="NSMutableSet" key="NSDragTypes"> - <string>Apple PDF pasteboard type</string> - <string>Apple PICT pasteboard type</string> - <string>Apple PNG pasteboard type</string> - <string>NSFilenamesPboardType</string> - <string>NeXT Encapsulated PostScript v1.2 pasteboard type</string> - <string>NeXT TIFF v4.0 pasteboard type</string> - </set> - <string key="NSFrame">{{100, 10}, {602, 23}}</string> - <reference key="NSSuperview" ref="348437605"/> - <bool key="NSEnabled">YES</bool> - <object class="NSImageCell" key="NSCell" id="136585690"> - <int key="NSCellFlags">0</int> - <int key="NSCellFlags2">33554432</int> - <reference key="NSContents" ref="931244262"/> - <int key="NSAlign">0</int> - <int key="NSScale">1</int> - <int key="NSStyle">0</int> - <bool key="NSAnimates">NO</bool> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSEditable">YES</bool> - </object> - <object class="NSTextField" id="3722547"> - <reference key="NSNextResponder" ref="348437605"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{14, 515}, {687, 14}}</string> - <reference key="NSSuperview" ref="348437605"/> - <reference key="NSNextKeyView" ref="76455301"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="195422453"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">272762880</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="3722547"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrame">{{10, 7}, {706, 544}}</string> - <reference key="NSNextKeyView" ref="3722547"/> - </object> - <string key="NSLabel">Triggers</string> - <reference key="NSColor" ref="647098198"/> - <reference key="NSTabView" ref="280187924"/> - </object> - </array> - <reference key="NSSelectedTabViewItem" ref="449203689"/> - <reference key="NSFont" ref="26"/> - <int key="NSTvFlags">134217731</int> - <bool key="NSAllowTruncatedLabels">YES</bool> - <bool key="NSDrawsBackground">YES</bool> - <array class="NSMutableArray" key="NSSubviews"> - <reference ref="113573997"/> - </array> - </object> - </array> - <string key="NSFrame">{{215, 0}, {728, 549}}</string> - <reference key="NSSuperview" ref="310278688"/> - <reference key="NSNextKeyView" ref="280187924"/> - <bool key="NSDoNotTranslateAutoresizingMask">YES</bool> - </object> - </array> - <string key="NSFrameSize">{943, 549}</string> - <reference key="NSSuperview" ref="173438986"/> - <reference key="NSNextKeyView" ref="841205379"/> - <bool key="NSIsVertical">YES</bool> - <int key="NSDividerStyle">2</int> - <string key="NSAutosaveName">DBViewSplitter</string> - </object> - </array> - <string key="NSFrameSize">{943, 549}</string> - <reference key="NSNextKeyView" ref="310278688"/> - <string key="NSClassName">NSView</string> - </object> - <object class="NSWindowTemplate" id="27889601"> - <int key="NSWindowStyleMask">1</int> - <int key="NSWindowBacking">2</int> - <string key="NSWindowRect">{{343, 509}, {384, 133}}</string> - <int key="NSWTFlags">1886912512</int> - <string key="NSWindowTitle">New Database</string> - <string key="NSWindowClass">NSWindow</string> - <nil key="NSViewClass"/> - <nil key="NSUserInterfaceItemIdentifier"/> - <string key="NSWindowContentMaxSize">{600, 133}</string> - <string key="NSWindowContentMinSize">{384, 133}</string> - <object class="NSView" key="NSWindowView" id="544458901"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextField" id="128617942"> - <reference key="NSNextResponder" ref="544458901"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{5, 96}, {134, 14}}</string> - <reference key="NSSuperview" ref="544458901"/> - <reference key="NSNextKeyView" ref="535859051"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="377787818"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71304192</int> - <string key="NSContents">Database Name:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="128617942"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="304814996"> - <reference key="NSNextResponder" ref="544458901"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{5, 71}, {134, 14}}</string> - <reference key="NSSuperview" ref="544458901"/> - <reference key="NSNextKeyView" ref="869557066"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="72865155"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71304192</int> - <string key="NSContents">Database Encoding:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="304814996"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="1066843353"> - <reference key="NSNextResponder" ref="544458901"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{5, 46}, {134, 14}}</string> - <reference key="NSSuperview" ref="544458901"/> - <reference key="NSNextKeyView" ref="749279002"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="716999507"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71304192</int> - <string key="NSContents">Database Collation:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="1066843353"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSButton" id="536855438"> - <reference key="NSNextResponder" ref="544458901"/> - <int key="NSvFlags">289</int> - <string key="NSFrame">{{289, 13}, {80, 28}}</string> - <reference key="NSSuperview" ref="544458901"/> - <string key="NSHuggingPriority">{250, 750}</string> - <int key="NSTag">1</int> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="670096873"> - <int key="NSCellFlags">603979776</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Add</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="536855438"/> - <int key="NSTag">1</int> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">DQ</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="988821764"> - <reference key="NSNextResponder" ref="544458901"/> - <int key="NSvFlags">289</int> - <string key="NSFrame">{{205, 13}, {86, 28}}</string> - <reference key="NSSuperview" ref="544458901"/> - <reference key="NSNextKeyView" ref="536855438"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="1034040691"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Cancel</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="988821764"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">Gw</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSPopUpButton" id="869557066"> - <reference key="NSNextResponder" ref="544458901"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{143, 66}, {224, 22}}</string> - <reference key="NSSuperview" ref="544458901"/> - <reference key="NSNextKeyView" ref="1066843353"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="506424747"> - <int key="NSCellFlags">71303232</int> - <int key="NSCellFlags2">132096</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="869557066"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <nil key="NSMenuItem"/> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="386152430"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"/> - </object> - <int key="NSSelectedIndex">-1</int> - <int key="NSPreferredEdge">3</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">1</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSPopUpButton" id="749279002"> - <reference key="NSNextResponder" ref="544458901"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{143, 41}, {224, 22}}</string> - <reference key="NSSuperview" ref="544458901"/> - <reference key="NSNextKeyView" ref="988821764"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="226260075"> - <int key="NSCellFlags">71303232</int> - <int key="NSCellFlags2">132096</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="749279002"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <nil key="NSMenuItem"/> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="388430567"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"/> - </object> - <int key="NSSelectedIndex">-1</int> - <int key="NSPreferredEdge">3</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">1</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSTextField" id="535859051"> - <reference key="NSNextResponder" ref="544458901"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{146, 94}, {218, 19}}</string> - <reference key="NSSuperview" ref="544458901"/> - <reference key="NSNextKeyView" ref="304814996"/> - <string key="NSReuseIdentifierKey">_NS:9</string> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="329948835"> - <int key="NSCellFlags">-1804599231</int> - <int key="NSCellFlags2">272761920</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <string key="NSCellIdentifier">_NS:9</string> - <reference key="NSControlView" ref="535859051"/> - <bool key="NSDrawsBackground">YES</bool> - <reference key="NSBackgroundColor" ref="812613095"/> - <object class="NSColor" key="NSTextColor" id="52640137"> - <int key="NSColorSpace">6</int> - <string key="NSCatalogName">System</string> - <string key="NSColorName">textColor</string> - <reference key="NSColor" ref="437905761"/> - </object> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrameSize">{384, 133}</string> - <reference key="NSNextKeyView" ref="128617942"/> - </object> - <string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string> - <string key="NSMinSize">{384, 155}</string> - <string key="NSMaxSize">{600, 155}</string> - <bool key="NSWindowIsRestorable">YES</bool> - </object> - <object class="NSWindowTemplate" id="513263904"> - <int key="NSWindowStyleMask">1</int> - <int key="NSWindowBacking">2</int> - <string key="NSWindowRect">{{157, 342}, {384, 119}}</string> - <int key="NSWTFlags">1954021376</int> - <string key="NSWindowTitle">Alter Database</string> - <string key="NSWindowClass">NSWindow</string> - <nil key="NSViewClass"/> - <nil key="NSUserInterfaceItemIdentifier"/> - <string key="NSWindowContentMaxSize">{600, 119}</string> - <string key="NSWindowContentMinSize">{384, 119}</string> - <object class="NSView" key="NSWindowView" id="974307677"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextField" id="167742944"> - <reference key="NSNextResponder" ref="974307677"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{17, 83}, {122, 14}}</string> - <reference key="NSSuperview" ref="974307677"/> - <reference key="NSNextKeyView" ref="899887673"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="727757264"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71304192</int> - <string key="NSContents">Database Encoding:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="167742944"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="414222088"> - <reference key="NSNextResponder" ref="974307677"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{17, 58}, {122, 14}}</string> - <reference key="NSSuperview" ref="974307677"/> - <reference key="NSNextKeyView" ref="329386404"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="585583765"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71304192</int> - <string key="NSContents">Database Collation:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="414222088"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSButton" id="716757490"> - <reference key="NSNextResponder" ref="974307677"/> - <int key="NSvFlags">289</int> - <string key="NSFrame">{{268, 13}, {101, 28}}</string> - <reference key="NSSuperview" ref="974307677"/> - <string key="NSHuggingPriority">{250, 750}</string> - <int key="NSTag">1</int> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="18910145"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Apply</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="716757490"/> - <int key="NSTag">1</int> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">DQ</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="403583857"> - <reference key="NSNextResponder" ref="974307677"/> - <int key="NSvFlags">289</int> - <string key="NSFrame">{{174, 13}, {96, 28}}</string> - <reference key="NSSuperview" ref="974307677"/> - <reference key="NSNextKeyView" ref="716757490"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="180029339"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Cancel</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="403583857"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">Gw</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSPopUpButton" id="899887673"> - <reference key="NSNextResponder" ref="974307677"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{143, 78}, {224, 22}}</string> - <reference key="NSSuperview" ref="974307677"/> - <reference key="NSNextKeyView" ref="414222088"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="650922530"> - <int key="NSCellFlags">71303232</int> - <int key="NSCellFlags2">132096</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="899887673"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <nil key="NSMenuItem"/> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="1039131292"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"/> - </object> - <int key="NSSelectedIndex">-1</int> - <int key="NSPreferredEdge">3</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">1</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSPopUpButton" id="329386404"> - <reference key="NSNextResponder" ref="974307677"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{143, 53}, {224, 22}}</string> - <reference key="NSSuperview" ref="974307677"/> - <reference key="NSNextKeyView" ref="403583857"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="375609982"> - <int key="NSCellFlags">71303232</int> - <int key="NSCellFlags2">132096</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="329386404"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <nil key="NSMenuItem"/> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="643152217"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"/> - </object> - <int key="NSSelectedIndex">-1</int> - <int key="NSPreferredEdge">3</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">1</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - </array> - <string key="NSFrameSize">{384, 119}</string> - <reference key="NSNextKeyView" ref="167742944"/> - </object> - <string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string> - <string key="NSMinSize">{384, 141}</string> - <string key="NSMaxSize">{600, 141}</string> - <bool key="NSWindowIsRestorable">YES</bool> - </object> - <object class="NSWindowTemplate" id="44735767"> - <int key="NSWindowStyleMask">1</int> - <int key="NSWindowBacking">2</int> - <string key="NSWindowRect">{{343, 461}, {379, 154}}</string> - <int key="NSWTFlags">1886912512</int> - <string key="NSWindowTitle">Duplicate Database</string> - <string key="NSWindowClass">NSWindow</string> - <nil key="NSViewClass"/> - <nil key="NSUserInterfaceItemIdentifier"/> - <string key="NSWindowContentMaxSize">{379, 154}</string> - <string key="NSWindowContentMinSize">{379, 154}</string> - <object class="NSView" key="NSWindowView" id="1049928659"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextField" id="680878714"> - <reference key="NSNextResponder" ref="1049928659"/> - <int key="NSvFlags">256</int> - <string key="NSFrame">{{104, 98}, {258, 14}}</string> - <reference key="NSSuperview" ref="1049928659"/> - <reference key="NSNextKeyView" ref="927968242"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="103621268"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">4195328</int> - <string key="NSContents">%SOURCE_TABLE%</string> - <reference key="NSSupport" ref="27"/> - <reference key="NSControlView" ref="680878714"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="677823009"> - <reference key="NSNextResponder" ref="1049928659"/> - <int key="NSvFlags">258</int> - <string key="NSFrame">{{107, 72}, {252, 18}}</string> - <reference key="NSSuperview" ref="1049928659"/> - <reference key="NSNextKeyView" ref="256429839"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="1027522412"> - <int key="NSCellFlags">-1804599231</int> - <int key="NSCellFlags2">4326464</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="677823009"/> - <bool key="NSDrawsBackground">YES</bool> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="52640137"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSButton" id="35704701"> - <reference key="NSNextResponder" ref="1049928659"/> - <int key="NSvFlags">259</int> - <string key="NSFrame">{{263, 13}, {101, 28}}</string> - <reference key="NSSuperview" ref="1049928659"/> - <string key="NSHuggingPriority">{250, 750}</string> - <int key="NSTag">1</int> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="682177319"> - <int key="NSCellFlags">603979776</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Duplicate</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="35704701"/> - <int key="NSTag">1</int> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">DQ</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="35301577"> - <reference key="NSNextResponder" ref="1049928659"/> - <int key="NSvFlags">259</int> - <string key="NSFrame">{{172, 13}, {93, 28}}</string> - <reference key="NSSuperview" ref="1049928659"/> - <reference key="NSNextKeyView" ref="35704701"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="925732606"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Cancel</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="35301577"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">Gw</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="256429839"> - <reference key="NSNextResponder" ref="1049928659"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{105, 48}, {256, 18}}</string> - <reference key="NSSuperview" ref="1049928659"/> - <reference key="NSNextKeyView" ref="35301577"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="979935454"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">131072</int> - <string key="NSContents">Duplicate database content</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="256429839"/> - <int key="NSButtonFlags">1211912448</int> - <int key="NSButtonFlags2">2</int> - <reference key="NSNormalImage" ref="672937012"/> - <reference key="NSAlternateImage" ref="662955722"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSTextField" id="872657032"> - <reference key="NSNextResponder" ref="1049928659"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{-3, 98}, {105, 14}}</string> - <reference key="NSSuperview" ref="1049928659"/> - <reference key="NSNextKeyView" ref="680878714"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="228906745"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71304192</int> - <string key="NSContents">Source:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="872657032"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="927968242"> - <reference key="NSNextResponder" ref="1049928659"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{-3, 74}, {105, 14}}</string> - <reference key="NSSuperview" ref="1049928659"/> - <reference key="NSNextKeyView" ref="677823009"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="765156058"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71304192</int> - <string key="NSContents">Destination:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="927968242"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="83930004"> - <reference key="NSNextResponder" ref="1049928659"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{104, 120}, {258, 14}}</string> - <reference key="NSSuperview" ref="1049928659"/> - <reference key="NSNextKeyView" ref="872657032"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="196609327"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272630784</int> - <string key="NSContents">Duplicate database:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="83930004"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrameSize">{379, 154}</string> - <reference key="NSNextKeyView" ref="83930004"/> - </object> - <string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string> - <string key="NSMinSize">{379, 176}</string> - <string key="NSMaxSize">{379, 176}</string> - <bool key="NSWindowIsRestorable">YES</bool> - </object> - <object class="NSWindowTemplate" id="40560749"> - <int key="NSWindowStyleMask">9</int> - <int key="NSWindowBacking">2</int> - <string key="NSWindowRect">{{343, 481}, {314, 112}}</string> - <int key="NSWTFlags">1886912512</int> - <string key="NSWindowTitle">Rename Database</string> - <string key="NSWindowClass">NSWindow</string> - <nil key="NSViewClass"/> - <nil key="NSUserInterfaceItemIdentifier"/> - <string key="NSWindowContentMaxSize">{650, 112}</string> - <string key="NSWindowContentMinSize">{292, 112}</string> - <object class="NSView" key="NSWindowView" id="873075508"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextField" id="716707300"> - <reference key="NSNextResponder" ref="873075508"/> - <int key="NSvFlags">258</int> - <string key="NSFrame">{{17, 78}, {280, 14}}</string> - <reference key="NSSuperview" ref="873075508"/> - <reference key="NSNextKeyView" ref="910445056"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="267190921"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">4196864</int> - <string key="NSContents">Rename database to</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="716707300"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="910445056"> - <reference key="NSNextResponder" ref="873075508"/> - <int key="NSvFlags">258</int> - <string key="NSFrame">{{20, 52}, {274, 18}}</string> - <reference key="NSSuperview" ref="873075508"/> - <reference key="NSNextKeyView" ref="208600380"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="492882069"> - <int key="NSCellFlags">-1804599231</int> - <int key="NSCellFlags2">4326464</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="910445056"/> - <bool key="NSDrawsBackground">YES</bool> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="52640137"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSButton" id="876797055"> - <reference key="NSNextResponder" ref="873075508"/> - <int key="NSvFlags">289</int> - <string key="NSFrame">{{186, 13}, {113, 28}}</string> - <reference key="NSSuperview" ref="873075508"/> - <string key="NSHuggingPriority">{250, 750}</string> - <int key="NSTag">1</int> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="333966099"> - <int key="NSCellFlags">603979776</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Rename</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="876797055"/> - <int key="NSTag">1</int> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">DQ</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="208600380"> - <reference key="NSNextResponder" ref="873075508"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{15, 13}, {99, 28}}</string> - <reference key="NSSuperview" ref="873075508"/> - <reference key="NSNextKeyView" ref="876797055"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="403775611"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Cancel</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="208600380"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">Gw</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - </array> - <string key="NSFrameSize">{314, 112}</string> - <reference key="NSNextKeyView" ref="716707300"/> - </object> - <string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string> - <string key="NSMinSize">{292, 134}</string> - <string key="NSMaxSize">{650, 134}</string> - <bool key="NSWindowIsRestorable">YES</bool> - </object> - <object class="NSWindowTemplate" id="971880172"> - <int key="NSWindowStyleMask">9</int> - <int key="NSWindowBacking">2</int> - <string key="NSWindowRect">{{343, 433}, {425, 162}}</string> - <int key="NSWTFlags">1886912512</int> - <string key="NSWindowTitle">New Table</string> - <string key="NSWindowClass">NSWindow</string> - <nil key="NSViewClass"/> - <nil key="NSUserInterfaceItemIdentifier"/> - <string key="NSWindowContentMaxSize">{600, 162}</string> - <string key="NSWindowContentMinSize">{425, 162}</string> - <object class="NSView" key="NSWindowView" id="381160134"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextField" id="1005413998"> - <reference key="NSNextResponder" ref="381160134"/> - <int key="NSvFlags">256</int> - <string key="NSFrame">{{5, 125}, {128, 14}}</string> - <reference key="NSSuperview" ref="381160134"/> - <reference key="NSNextKeyView" ref="374259664"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="688301525"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71304192</int> - <string key="NSContents">Table Name:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="1005413998"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="513414376"> - <reference key="NSNextResponder" ref="381160134"/> - <int key="NSvFlags">256</int> - <string key="NSFrame">{{5, 100}, {128, 14}}</string> - <reference key="NSSuperview" ref="381160134"/> - <reference key="NSNextKeyView" ref="1050266816"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="711752917"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71304192</int> - <string key="NSContents">Table Encoding:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="513414376"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="374259664"> - <reference key="NSNextResponder" ref="381160134"/> - <int key="NSvFlags">258</int> - <string key="NSFrame">{{138, 124}, {267, 18}}</string> - <reference key="NSSuperview" ref="381160134"/> - <reference key="NSNextKeyView" ref="513414376"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="476637769"> - <int key="NSCellFlags">-1804599231</int> - <int key="NSCellFlags2">4326464</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="374259664"/> - <bool key="NSDrawsBackground">YES</bool> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="52640137"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSButton" id="671615720"> - <reference key="NSNextResponder" ref="381160134"/> - <int key="NSvFlags">257</int> - <string key="NSFrame">{{332, 13}, {78, 28}}</string> - <reference key="NSSuperview" ref="381160134"/> - <string key="NSHuggingPriority">{250, 750}</string> - <int key="NSTag">1</int> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="331559207"> - <int key="NSCellFlags">603979776</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Add</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="671615720"/> - <int key="NSTag">1</int> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">DQ</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSPopUpButton" id="1050266816"> - <reference key="NSNextResponder" ref="381160134"/> - <int key="NSvFlags">258</int> - <string key="NSFrame">{{135, 95}, {273, 22}}</string> - <reference key="NSSuperview" ref="381160134"/> - <reference key="NSNextKeyView" ref="289339603"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="121674630"> - <int key="NSCellFlags">71303232</int> - <int key="NSCellFlags2">132096</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="1050266816"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <nil key="NSMenuItem"/> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="72990819"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"/> - </object> - <int key="NSSelectedIndex">-1</int> - <int key="NSPreferredEdge">3</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">1</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSTextField" id="289339603"> - <reference key="NSNextResponder" ref="381160134"/> - <int key="NSvFlags">256</int> - <string key="NSFrame">{{5, 75}, {128, 14}}</string> - <reference key="NSSuperview" ref="381160134"/> - <reference key="NSNextKeyView" ref="467430961"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="291856075"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71304192</int> - <string key="NSContents">Table Collation:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="289339603"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSPopUpButton" id="467430961"> - <reference key="NSNextResponder" ref="381160134"/> - <int key="NSvFlags">258</int> - <string key="NSFrame">{{135, 70}, {273, 22}}</string> - <reference key="NSSuperview" ref="381160134"/> - <reference key="NSNextKeyView" ref="725803993"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="628098377"> - <int key="NSCellFlags">71303232</int> - <int key="NSCellFlags2">132096</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="467430961"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <nil key="NSMenuItem"/> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="459142250"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"/> - </object> - <int key="NSSelectedIndex">-1</int> - <int key="NSPreferredEdge">3</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">1</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSTextField" id="725803993"> - <reference key="NSNextResponder" ref="381160134"/> - <int key="NSvFlags">256</int> - <string key="NSFrame">{{5, 49}, {128, 14}}</string> - <reference key="NSSuperview" ref="381160134"/> - <reference key="NSNextKeyView" ref="189903457"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="518115151"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71304192</int> - <string key="NSContents">Table Type:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="725803993"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSPopUpButton" id="189903457"> - <reference key="NSNextResponder" ref="381160134"/> - <int key="NSvFlags">258</int> - <string key="NSFrame">{{135, 45}, {273, 22}}</string> - <reference key="NSSuperview" ref="381160134"/> - <reference key="NSNextKeyView" ref="635170907"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="1016527944"> - <int key="NSCellFlags">71303232</int> - <int key="NSCellFlags2">132096</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="189903457"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <nil key="NSMenuItem"/> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="113155691"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"/> - </object> - <int key="NSSelectedIndex">-1</int> - <int key="NSPreferredEdge">3</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">1</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="635170907"> - <reference key="NSNextResponder" ref="381160134"/> - <int key="NSvFlags">257</int> - <string key="NSFrame">{{250, 13}, {84, 28}}</string> - <reference key="NSSuperview" ref="381160134"/> - <reference key="NSNextKeyView" ref="671615720"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="29955093"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Cancel</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="635170907"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">Gw</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - </array> - <string key="NSFrameSize">{425, 162}</string> - <reference key="NSNextKeyView" ref="1005413998"/> - </object> - <string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string> - <string key="NSMinSize">{384, 164}</string> - <string key="NSMaxSize">{600, 184}</string> - <bool key="NSWindowIsRestorable">YES</bool> - </object> - <object class="NSWindowTemplate" id="776700210"> - <int key="NSWindowStyleMask">9</int> - <int key="NSWindowBacking">2</int> - <string key="NSWindowRect">{{356, 461}, {260, 127}}</string> - <int key="NSWTFlags">1886912512</int> - <string key="NSWindowTitle">Duplicate Table</string> - <string key="NSWindowClass">NSWindow</string> - <nil key="NSViewClass"/> - <nil key="NSUserInterfaceItemIdentifier"/> - <string key="NSWindowContentMaxSize">{600, 127}</string> - <string key="NSWindowContentMinSize">{260, 127}</string> - <object class="NSView" key="NSWindowView" id="66282258"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextField" id="906659947"> - <reference key="NSNextResponder" ref="66282258"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{17, 93}, {226, 14}}</string> - <reference key="NSSuperview" ref="66282258"/> - <reference key="NSNextKeyView" ref="398163780"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="1035435092"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">4196864</int> - <string key="NSContents">Duplicate table to</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="906659947"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSButton" id="966166933"> - <reference key="NSNextResponder" ref="66282258"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{19, 43}, {223, 18}}</string> - <reference key="NSSuperview" ref="66282258"/> - <reference key="NSNextKeyView" ref="1014938601"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="680876624"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">131072</int> - <string key="NSContents">Duplicate table content</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="966166933"/> - <int key="NSButtonFlags">1211912448</int> - <int key="NSButtonFlags2">2</int> - <reference key="NSNormalImage" ref="672937012"/> - <reference key="NSAlternateImage" ref="662955722"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="162304526"> - <reference key="NSNextResponder" ref="66282258"/> - <int key="NSvFlags">289</int> - <string key="NSFrame">{{148, 13}, {97, 28}}</string> - <reference key="NSSuperview" ref="66282258"/> - <string key="NSHuggingPriority">{250, 750}</string> - <int key="NSTag">1</int> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="1000824559"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Duplicate</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="162304526"/> - <int key="NSTag">1</int> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">DQ</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="1014938601"> - <reference key="NSNextResponder" ref="66282258"/> - <int key="NSvFlags">289</int> - <string key="NSFrame">{{59, 13}, {91, 28}}</string> - <reference key="NSSuperview" ref="66282258"/> - <reference key="NSNextKeyView" ref="162304526"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="668793013"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Cancel</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="1014938601"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">Gw</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSTextField" id="398163780"> - <reference key="NSNextResponder" ref="66282258"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{20, 66}, {222, 19}}</string> - <reference key="NSSuperview" ref="66282258"/> - <reference key="NSNextKeyView" ref="966166933"/> - <string key="NSReuseIdentifierKey">_NS:9</string> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="658680247"> - <int key="NSCellFlags">-1804599231</int> - <int key="NSCellFlags2">272761920</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <string key="NSCellIdentifier">_NS:9</string> - <reference key="NSControlView" ref="398163780"/> - <bool key="NSDrawsBackground">YES</bool> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="52640137"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrameSize">{260, 127}</string> - <reference key="NSNextKeyView" ref="906659947"/> - </object> - <string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string> - <string key="NSMinSize">{260, 149}</string> - <string key="NSMaxSize">{600, 149}</string> - <bool key="NSWindowIsRestorable">YES</bool> - </object> - <object class="NSWindowTemplate" id="530761994"> - <int key="NSWindowStyleMask">1</int> - <int key="NSWindowBacking">2</int> - <string key="NSWindowRect">{{351, 522}, {306, 122}}</string> - <int key="NSWTFlags">1886912512</int> - <string key="NSWindowTitle">Key Sheet</string> - <string key="NSWindowClass">NSWindow</string> - <nil key="NSViewClass"/> - <nil key="NSUserInterfaceItemIdentifier"/> - <string key="NSWindowContentMinSize">{213, 107}</string> - <object class="NSView" key="NSWindowView" id="573301824"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextField" id="840126536"> - <reference key="NSNextResponder" ref="573301824"/> - <int key="NSvFlags">256</int> - <string key="NSFrame">{{17, 74}, {272, 28}}</string> - <reference key="NSSuperview" ref="573301824"/> - <reference key="NSNextKeyView" ref="1067575740"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="250285018"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">4194304</int> - <string type="base64-UTF8" key="NSContents">RmllbGQgbXVzdCBiZSBpbmRleGVkIHRvIHN1cHBvcnQgYXV0b19pbmNyZW1lbnQuCldoaWNoIGluZGV4 -IGRvIHlvdSB3YW50IHRvIGFkZCBmb3IgdGhpcyBmaWVsZD8</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="840126536"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSPopUpButton" id="1067575740"> - <reference key="NSNextResponder" ref="573301824"/> - <int key="NSvFlags">256</int> - <string key="NSFrame">{{74, 45}, {162, 22}}</string> - <reference key="NSSuperview" ref="573301824"/> - <reference key="NSNextKeyView" ref="729651532"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="875427113"> - <int key="NSCellFlags">-2076180416</int> - <int key="NSCellFlags2">132096</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="1067575740"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <object class="NSMenuItem" key="NSMenuItem" id="250261756"> - <reference key="NSMenu" ref="609005525"/> - <string key="NSTitle">PRIMARY KEY</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="875427113"/> - </object> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="609005525"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"> - <reference ref="250261756"/> - <object class="NSMenuItem" id="30702004"> - <reference key="NSMenu" ref="609005525"/> - <string key="NSTitle">INDEX</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">1</int> - <reference key="NSTarget" ref="875427113"/> - </object> - <object class="NSMenuItem" id="622573600"> - <reference key="NSMenu" ref="609005525"/> - <string key="NSTitle">UNIQUE</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">2</int> - <reference key="NSTarget" ref="875427113"/> - </object> - </array> - </object> - <int key="NSPreferredEdge">3</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">1</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="407918734"> - <reference key="NSNextResponder" ref="573301824"/> - <int key="NSvFlags">256</int> - <string key="NSFrame">{{154, 17}, {84, 28}}</string> - <reference key="NSSuperview" ref="573301824"/> - <string key="NSHuggingPriority">{250, 750}</string> - <int key="NSTag">1</int> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="932461337"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Add</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="407918734"/> - <int key="NSTag">1</int> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">DQ</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="729651532"> - <reference key="NSNextResponder" ref="573301824"/> - <int key="NSvFlags">256</int> - <string key="NSFrame">{{72, 17}, {84, 28}}</string> - <reference key="NSSuperview" ref="573301824"/> - <reference key="NSNextKeyView" ref="407918734"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="956433610"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Don't add</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="729651532"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">Gw</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - </array> - <string key="NSFrameSize">{306, 122}</string> - <reference key="NSNextKeyView" ref="840126536"/> - </object> - <string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string> - <string key="NSMinSize">{213, 129}</string> - <string key="NSMaxSize">{10000000000000, 10000000000000}</string> - <bool key="NSWindowIsRestorable">YES</bool> - </object> - <object class="NSWindowTemplate" id="151160384"> - <int key="NSWindowStyleMask">7</int> - <int key="NSWindowBacking">2</int> - <string key="NSWindowRect">{{131, 407}, {303, 95}}</string> - <int key="NSWTFlags">1954022400</int> - <string key="NSWindowTitle">Reset Auto Increment</string> - <string key="NSWindowClass">NSWindow</string> - <nil key="NSViewClass"/> - <nil key="NSUserInterfaceItemIdentifier"/> - <string key="NSWindowContentMinSize">{255, 95}</string> - <object class="NSView" key="NSWindowView" id="334190761"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">301</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSButton" id="207250419"> - <reference key="NSNextResponder" ref="334190761"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{198, 13}, {90, 28}}</string> - <reference key="NSSuperview" ref="334190761"/> - <string key="NSHuggingPriority">{250, 750}</string> - <int key="NSTag">1</int> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="528765232"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">OK</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="207250419"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">129</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">DQ</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="372615010"> - <reference key="NSNextResponder" ref="334190761"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{110, 13}, {90, 28}}</string> - <reference key="NSSuperview" ref="334190761"/> - <reference key="NSNextKeyView" ref="207250419"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="87624259"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Cancel</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="372615010"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">129</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">Gw</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSTextField" id="170893992"> - <reference key="NSNextResponder" ref="334190761"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{17, 58}, {201, 14}}</string> - <reference key="NSSuperview" ref="334190761"/> - <reference key="NSNextKeyView" ref="552053126"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="647845845"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Reset AUTO_INCREMENT to:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="170893992"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="552053126"> - <reference key="NSNextResponder" ref="334190761"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{223, 55}, {60, 19}}</string> - <reference key="NSSuperview" ref="334190761"/> - <reference key="NSNextKeyView" ref="372615010"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="725373559"> - <int key="NSCellFlags">-1804599231</int> - <int key="NSCellFlags2">4326464</int> - <reference key="NSSupport" ref="26"/> - <object class="NSNumberFormatter" key="NSFormatter" id="354814181"> - <dictionary class="NSMutableDictionary" key="NS.attributes"> - <boolean value="NO" key="allowsFloats"/> - <boolean value="NO" key="alwaysShowsDecimalSeparator"/> - <string key="currencyDecimalSeparator">.</string> - <string key="decimalSeparator">.</string> - <string key="exponentSymbol">E</string> - <integer value="0" key="formatWidth"/> - <integer value="1040" key="formatterBehavior"/> - <boolean value="NO" key="generatesDecimalNumbers"/> - <string key="groupingSeparator">,</string> - <integer value="0" key="groupingSize"/> - <boolean value="YES" key="lenient"/> - <integer value="0" key="maximumFractionDigits"/> - <integer value="42" key="maximumIntegerDigits"/> - <real value="1" key="minimum"/> - <integer value="0" key="minimumFractionDigits"/> - <integer value="1" key="minimumIntegerDigits"/> - <string key="minusSign">-</string> - <string key="negativeFormat">#0</string> - <string key="negativeInfinitySymbol">-∞</string> - <string key="negativePrefix">-</string> - <string key="negativeSuffix"/> - <string key="nilSymbol"/> - <string key="notANumberSymbol">NaN</string> - <integer value="0" key="numberStyle"/> - <string key="paddingCharacter">*</string> - <integer value="0" key="paddingPosition"/> - <string key="perMillSymbol">‰</string> - <string key="percentSymbol">%</string> - <string key="plusSign">+</string> - <string key="positiveFormat">#0</string> - <string key="positiveInfinitySymbol">+∞</string> - <string key="positivePrefix"/> - <string key="positiveSuffix"/> - <real value="0.0" key="roundingIncrement"/> - <integer value="4" key="roundingMode"/> - <integer value="0" key="secondaryGroupingSize"/> - <boolean value="NO" key="usesGroupingSeparator"/> - </dictionary> - <string key="NS.positiveformat">#0</string> - <string key="NS.negativeformat">#0</string> - <nil key="NS.positiveattrs"/> - <nil key="NS.negativeattrs"/> - <nil key="NS.zero"/> - <object class="NSAttributedString" key="NS.nil"> - <string key="NSString"/> - </object> - <object class="NSAttributedString" key="NS.nan"> - <string key="NSString">NaN</string> - <dictionary key="NSAttributes"/> - </object> - <real value="1" key="NS.min"/> - <object class="NSDecimalNumberPlaceholder" key="NS.max"> - <int key="NS.exponent">0</int> - <int key="NS.length">0</int> - <bool key="NS.negative">YES</bool> - <bool key="NS.compact">NO</bool> - <int key="NS.mantissa.bo">1</int> - <bytes key="NS.mantissa">AAAAAAAAAAAAAAAAAAAAAA</bytes> - </object> - <object class="NSDecimalNumberHandler" key="NS.rounding"> - <int key="NS.roundingmode">3</int> - <bool key="NS.raise.overflow">YES</bool> - <bool key="NS.raise.underflow">YES</bool> - <bool key="NS.raise.dividebyzero">YES</bool> - </object> - <string key="NS.decimal">.</string> - <string key="NS.thousand">,</string> - <bool key="NS.hasthousands">NO</bool> - <bool key="NS.localized">YES</bool> - <bool key="NS.allowsfloats">NO</bool> - </object> - <reference key="NSControlView" ref="552053126"/> - <bool key="NSDrawsBackground">YES</bool> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="52640137"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSBox" id="749202052"> - <reference key="NSNextResponder" ref="334190761"/> - <int key="NSvFlags">12</int> - <array class="NSMutableArray" key="NSSubviews"/> - <string key="NSFrame">{{-3, 92}, {306, 5}}</string> - <reference key="NSSuperview" ref="334190761"/> - <reference key="NSNextKeyView" ref="170893992"/> - <string key="NSHuggingPriority">{250, 750}</string> - <string key="NSOffsets">{0, 0}</string> - <object class="NSTextFieldCell" key="NSTitleCell"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">Box</string> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSBackgroundColor" ref="812613095"/> - <object class="NSColor" key="NSTextColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MCAwLjgAA</bytes> - </object> - </object> - <int key="NSBorderType">3</int> - <int key="NSBoxType">2</int> - <int key="NSTitlePosition">0</int> - <bool key="NSTransparent">NO</bool> - </object> - </array> - <string key="NSFrameSize">{303, 95}</string> - <reference key="NSNextKeyView" ref="749202052"/> - </object> - <string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string> - <string key="NSMinSize">{255, 117}</string> - <string key="NSMaxSize">{10000000000000, 10000000000000}</string> - <bool key="NSWindowIsRestorable">YES</bool> - </object> - <object class="NSWindowTemplate" id="267086801"> - <int key="NSWindowStyleMask">1</int> - <int key="NSWindowBacking">2</int> - <string key="NSWindowRect">{{196, 141}, {379, 369}}</string> - <int key="NSWTFlags">1946157056</int> - <string key="NSWindowTitle">New Relation</string> - <string key="NSWindowClass">NSPanel</string> - <nil key="NSViewClass"/> - <nil key="NSUserInterfaceItemIdentifier"/> - <object class="NSView" key="NSWindowView" id="1015718648"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSBox" id="20882945"> - <reference key="NSNextResponder" ref="1015718648"/> - <int key="NSvFlags">12</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSView" id="926311790"> - <reference key="NSNextResponder" ref="20882945"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSPopUpButton" id="613590545"> - <reference key="NSNextResponder" ref="926311790"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{115, 10}, {171, 22}}</string> - <reference key="NSSuperview" ref="926311790"/> - <reference key="NSNextKeyView" ref="53193920"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="141907570"> - <int key="NSCellFlags">-2076180416</int> - <int key="NSCellFlags2">133120</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="613590545"/> - <int key="NSButtonFlags">109199360</int> - <int key="NSButtonFlags2">129</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <object class="NSMenuItem" key="NSMenuItem" id="7277683"> - <reference key="NSMenu" ref="1071148761"/> - <string key="NSTitle">Item 1</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="141907570"/> - </object> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="1071148761"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"> - <reference ref="7277683"/> - <object class="NSMenuItem" id="66984092"> - <reference key="NSMenu" ref="1071148761"/> - <string key="NSTitle">Item 2</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="141907570"/> - </object> - <object class="NSMenuItem" id="1059338658"> - <reference key="NSMenu" ref="1071148761"/> - <string key="NSTitle">Item 3</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="141907570"/> - </object> - </array> - </object> - <int key="NSPreferredEdge">1</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">2</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSTextField" id="723208931"> - <reference key="NSNextResponder" ref="926311790"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{15, 15}, {98, 14}}</string> - <reference key="NSSuperview" ref="926311790"/> - <reference key="NSNextKeyView" ref="613590545"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="758586794"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Column:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="723208931"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrame">{{1, 1}, {343, 40}}</string> - <reference key="NSSuperview" ref="20882945"/> - <reference key="NSNextKeyView" ref="723208931"/> - </object> - </array> - <string key="NSFrame">{{17, 231}, {345, 56}}</string> - <reference key="NSSuperview" ref="1015718648"/> - <reference key="NSNextKeyView" ref="926311790"/> - <string key="NSOffsets">{0, 0}</string> - <object class="NSTextFieldCell" key="NSTitleCell"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">Table:</string> - <object class="NSFont" key="NSSupport"> - <bool key="IBIsSystemFont">YES</bool> - <double key="NSSize">11</double> - <int key="NSfFlags">1558</int> - </object> - <reference key="NSBackgroundColor" ref="812613095"/> - <object class="NSColor" key="NSTextColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MCAwLjgAA</bytes> - </object> - </object> - <reference key="NSContentView" ref="926311790"/> - <int key="NSBorderType">1</int> - <int key="NSBoxType">0</int> - <int key="NSTitlePosition">2</int> - <bool key="NSTransparent">NO</bool> - </object> - <object class="NSBox" id="331810027"> - <reference key="NSNextResponder" ref="1015718648"/> - <int key="NSvFlags">12</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSView" id="642447590"> - <reference key="NSNextResponder" ref="331810027"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextField" id="789490190"> - <reference key="NSNextResponder" ref="642447590"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{15, 17}, {98, 14}}</string> - <reference key="NSSuperview" ref="642447590"/> - <reference key="NSNextKeyView" ref="164726151"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="755284617"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Name:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="789490190"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="164726151"> - <reference key="NSNextResponder" ref="642447590"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{118, 14}, {165, 19}}</string> - <reference key="NSSuperview" ref="642447590"/> - <reference key="NSNextKeyView" ref="20882945"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="697349750"> - <int key="NSCellFlags">-1804599231</int> - <int key="NSCellFlags2">272761920</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <string key="NSPlaceholderString">Generate one</string> - <reference key="NSControlView" ref="164726151"/> - <bool key="NSDrawsBackground">YES</bool> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="52640137"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrame">{{1, 1}, {343, 42}}</string> - <reference key="NSSuperview" ref="331810027"/> - <reference key="NSNextKeyView" ref="789490190"/> - </object> - </array> - <string key="NSFrame">{{17, 291}, {345, 58}}</string> - <reference key="NSSuperview" ref="1015718648"/> - <reference key="NSNextKeyView" ref="642447590"/> - <string key="NSOffsets">{0, 0}</string> - <object class="NSTextFieldCell" key="NSTitleCell"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">Name</string> - <object class="NSFont" key="NSSupport"> - <bool key="IBIsSystemFont">YES</bool> - <double key="NSSize">11</double> - <int key="NSfFlags">1558</int> - </object> - <reference key="NSBackgroundColor" ref="812613095"/> - <object class="NSColor" key="NSTextColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MCAwLjgAA</bytes> - </object> - </object> - <reference key="NSContentView" ref="642447590"/> - <int key="NSBorderType">1</int> - <int key="NSBoxType">0</int> - <int key="NSTitlePosition">2</int> - <bool key="NSTransparent">NO</bool> - </object> - <object class="NSBox" id="607457532"> - <reference key="NSNextResponder" ref="1015718648"/> - <int key="NSvFlags">12</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSView" id="681913300"> - <reference key="NSNextResponder" ref="607457532"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSPopUpButton" id="327029678"> - <reference key="NSNextResponder" ref="681913300"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{116, 40}, {170, 22}}</string> - <reference key="NSSuperview" ref="681913300"/> - <reference key="NSNextKeyView" ref="624744215"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="181473300"> - <int key="NSCellFlags">-2076180416</int> - <int key="NSCellFlags2">133120</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="327029678"/> - <int key="NSTag">-1</int> - <int key="NSButtonFlags">109199360</int> - <int key="NSButtonFlags2">129</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <object class="NSMenuItem" key="NSMenuItem" id="93412391"> - <reference key="NSMenu" ref="548652310"/> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">-1</int> - <reference key="NSTarget" ref="181473300"/> - </object> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="548652310"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"> - <reference ref="93412391"/> - <object class="NSMenuItem" id="161482738"> - <reference key="NSMenu" ref="548652310"/> - <string key="NSTitle">Restrict</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="181473300"/> - </object> - <object class="NSMenuItem" id="13100001"> - <reference key="NSMenu" ref="548652310"/> - <string key="NSTitle">Cascade</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">1</int> - <reference key="NSTarget" ref="181473300"/> - </object> - <object class="NSMenuItem" id="819021382"> - <reference key="NSMenu" ref="548652310"/> - <string key="NSTitle">Set NULL</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">2</int> - <reference key="NSTarget" ref="181473300"/> - </object> - <object class="NSMenuItem" id="234472558"> - <reference key="NSMenu" ref="548652310"/> - <string key="NSTitle">No Action</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">3</int> - <reference key="NSTarget" ref="181473300"/> - </object> - </array> - </object> - <int key="NSPreferredEdge">1</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">2</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSPopUpButton" id="542486225"> - <reference key="NSNextResponder" ref="681913300"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{116, 10}, {170, 22}}</string> - <reference key="NSSuperview" ref="681913300"/> - <reference key="NSNextKeyView" ref="579485108"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="968836506"> - <int key="NSCellFlags">-2076180416</int> - <int key="NSCellFlags2">133120</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="542486225"/> - <int key="NSTag">-1</int> - <int key="NSButtonFlags">109199360</int> - <int key="NSButtonFlags2">129</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <object class="NSMenuItem" key="NSMenuItem" id="792746982"> - <reference key="NSMenu" ref="790475827"/> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">-1</int> - <reference key="NSTarget" ref="968836506"/> - </object> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="790475827"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"> - <reference ref="792746982"/> - <object class="NSMenuItem" id="304953078"> - <reference key="NSMenu" ref="790475827"/> - <string key="NSTitle">Restrict</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="968836506"/> - </object> - <object class="NSMenuItem" id="373375937"> - <reference key="NSMenu" ref="790475827"/> - <string key="NSTitle">Cascade</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">1</int> - <reference key="NSTarget" ref="968836506"/> - </object> - <object class="NSMenuItem" id="693611810"> - <reference key="NSMenu" ref="790475827"/> - <string key="NSTitle">Set NULL</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">2</int> - <reference key="NSTarget" ref="968836506"/> - </object> - <object class="NSMenuItem" id="823067229"> - <reference key="NSMenu" ref="790475827"/> - <string key="NSTitle">No Action</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">3</int> - <reference key="NSTarget" ref="968836506"/> - </object> - </array> - </object> - <int key="NSPreferredEdge">1</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">2</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSTextField" id="124650739"> - <reference key="NSNextResponder" ref="681913300"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{15, 45}, {99, 14}}</string> - <reference key="NSSuperview" ref="681913300"/> - <reference key="NSNextKeyView" ref="327029678"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="316160058"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">On update:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="124650739"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="624744215"> - <reference key="NSNextResponder" ref="681913300"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{15, 15}, {98, 14}}</string> - <reference key="NSSuperview" ref="681913300"/> - <reference key="NSNextKeyView" ref="542486225"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="806766501"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">On delete:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="624744215"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrame">{{1, 1}, {343, 71}}</string> - <reference key="NSSuperview" ref="607457532"/> - <reference key="NSNextKeyView" ref="124650739"/> - </object> - </array> - <string key="NSFrame">{{17, 49}, {345, 87}}</string> - <reference key="NSSuperview" ref="1015718648"/> - <reference key="NSNextKeyView" ref="681913300"/> - <string key="NSOffsets">{0, 0}</string> - <object class="NSTextFieldCell" key="NSTitleCell"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">Action</string> - <object class="NSFont" key="NSSupport"> - <bool key="IBIsSystemFont">YES</bool> - <double key="NSSize">11</double> - <int key="NSfFlags">1558</int> - </object> - <reference key="NSBackgroundColor" ref="812613095"/> - <object class="NSColor" key="NSTextColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MCAwLjgAA</bytes> - </object> - </object> - <reference key="NSContentView" ref="681913300"/> - <int key="NSBorderType">1</int> - <int key="NSBoxType">0</int> - <int key="NSTitlePosition">2</int> - <bool key="NSTransparent">NO</bool> - </object> - <object class="NSBox" id="53193920"> - <reference key="NSNextResponder" ref="1015718648"/> - <int key="NSvFlags">12</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSView" id="331900158"> - <reference key="NSNextResponder" ref="53193920"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSPopUpButton" id="997358225"> - <reference key="NSNextResponder" ref="331900158"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{115, 40}, {171, 22}}</string> - <reference key="NSSuperview" ref="331900158"/> - <reference key="NSNextKeyView" ref="523115675"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="342204808"> - <int key="NSCellFlags">-2076180416</int> - <int key="NSCellFlags2">133120</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="997358225"/> - <int key="NSButtonFlags">109199360</int> - <int key="NSButtonFlags2">129</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <object class="NSMenuItem" key="NSMenuItem" id="504826794"> - <reference key="NSMenu" ref="224086912"/> - <string key="NSTitle">Item 1</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="342204808"/> - </object> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="224086912"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"> - <reference ref="504826794"/> - <object class="NSMenuItem" id="853021323"> - <reference key="NSMenu" ref="224086912"/> - <string key="NSTitle">Item 2</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="342204808"/> - </object> - <object class="NSMenuItem" id="277853325"> - <reference key="NSMenu" ref="224086912"/> - <string key="NSTitle">Item 3</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="342204808"/> - </object> - </array> - </object> - <int key="NSPreferredEdge">1</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">2</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSPopUpButton" id="776137040"> - <reference key="NSNextResponder" ref="331900158"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{115, 10}, {171, 22}}</string> - <reference key="NSSuperview" ref="331900158"/> - <reference key="NSNextKeyView" ref="607457532"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="525708739"> - <int key="NSCellFlags">-2076180416</int> - <int key="NSCellFlags2">133120</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="776137040"/> - <int key="NSButtonFlags">109199360</int> - <int key="NSButtonFlags2">129</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <object class="NSMenuItem" key="NSMenuItem" id="628705007"> - <reference key="NSMenu" ref="284179633"/> - <string key="NSTitle">Item 1</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="525708739"/> - </object> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="284179633"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"> - <reference ref="628705007"/> - <object class="NSMenuItem" id="26208707"> - <reference key="NSMenu" ref="284179633"/> - <string key="NSTitle">Item 2</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="525708739"/> - </object> - <object class="NSMenuItem" id="460154124"> - <reference key="NSMenu" ref="284179633"/> - <string key="NSTitle">Item 3</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="525708739"/> - </object> - </array> - </object> - <int key="NSPreferredEdge">1</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">2</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSTextField" id="897769178"> - <reference key="NSNextResponder" ref="331900158"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{15, 45}, {98, 14}}</string> - <reference key="NSSuperview" ref="331900158"/> - <reference key="NSNextKeyView" ref="997358225"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="204934061"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Table:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="897769178"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="523115675"> - <reference key="NSNextResponder" ref="331900158"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{15, 15}, {98, 14}}</string> - <reference key="NSSuperview" ref="331900158"/> - <reference key="NSNextKeyView" ref="776137040"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="695000720"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Column:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="523115675"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrame">{{1, 1}, {343, 71}}</string> - <reference key="NSSuperview" ref="53193920"/> - <reference key="NSNextKeyView" ref="897769178"/> - </object> - </array> - <string key="NSFrame">{{17, 140}, {345, 87}}</string> - <reference key="NSSuperview" ref="1015718648"/> - <reference key="NSNextKeyView" ref="331900158"/> - <string key="NSOffsets">{0, 0}</string> - <object class="NSTextFieldCell" key="NSTitleCell"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">References</string> - <object class="NSFont" key="NSSupport"> - <bool key="IBIsSystemFont">YES</bool> - <double key="NSSize">11</double> - <int key="NSfFlags">1558</int> - </object> - <reference key="NSBackgroundColor" ref="812613095"/> - <object class="NSColor" key="NSTextColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MCAwLjgAA</bytes> - </object> - </object> - <reference key="NSContentView" ref="331900158"/> - <int key="NSBorderType">1</int> - <int key="NSBoxType">0</int> - <int key="NSTitlePosition">2</int> - <bool key="NSTransparent">NO</bool> - </object> - <object class="NSButton" id="770611577"> - <reference key="NSNextResponder" ref="1015718648"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{268, 13}, {96, 28}}</string> - <reference key="NSSuperview" ref="1015718648"/> - <string key="NSHuggingPriority">{250, 750}</string> - <int key="NSTag">1</int> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="710438142"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Add</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="770611577"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">129</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">DQ</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="905045861"> - <reference key="NSNextResponder" ref="1015718648"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{174, 13}, {96, 28}}</string> - <reference key="NSSuperview" ref="1015718648"/> - <reference key="NSNextKeyView" ref="770611577"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="235633067"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Cancel</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="905045861"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">129</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">Gw</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSProgressIndicator" id="579485108"> - <reference key="NSNextResponder" ref="1015718648"/> - <int key="NSvFlags">-2147483356</int> - <string key="NSFrame">{{20, 20}, {16, 16}}</string> - <reference key="NSSuperview" ref="1015718648"/> - <reference key="NSNextKeyView" ref="172580784"/> - <string key="NSHuggingPriority">{750, 750}</string> - <int key="NSpiFlags">28942</int> - <double key="NSMaxValue">100</double> - </object> - <object class="NSTextField" id="172580784"> - <reference key="NSNextResponder" ref="1015718648"/> - <int key="NSvFlags">-2147483356</int> - <string key="NSFrame">{{41, 21}, {133, 14}}</string> - <reference key="NSSuperview" ref="1015718648"/> - <reference key="NSNextKeyView" ref="905045861"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="243830498"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272761856</int> - <string key="NSContents">Retrieving data...</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="172580784"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrameSize">{379, 369}</string> - <reference key="NSNextKeyView" ref="331810027"/> - </object> - <string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string> - <string key="NSMaxSize">{10000000000000, 10000000000000}</string> - <bool key="NSWindowIsRestorable">YES</bool> - </object> - <object class="NSWindowTemplate" id="411883363"> - <int key="NSWindowStyleMask">9</int> - <int key="NSWindowBacking">2</int> - <string key="NSWindowRect">{{196, 162}, {360, 348}}</string> - <int key="NSWTFlags">1946157056</int> - <string key="NSWindowTitle">New Trigger</string> - <string key="NSWindowClass">NSPanel</string> - <nil key="NSViewClass"/> - <nil key="NSUserInterfaceItemIdentifier"/> - <string key="NSWindowContentMinSize">{360, 348}</string> - <object class="NSView" key="NSWindowView" id="28677781"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSBox" id="473749629"> - <reference key="NSNextResponder" ref="28677781"/> - <int key="NSvFlags">10</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSView" id="962069974"> - <reference key="NSNextResponder" ref="473749629"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextField" id="193402932"> - <reference key="NSNextResponder" ref="962069974"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{1, 66}, {116, 14}}</string> - <reference key="NSSuperview" ref="962069974"/> - <reference key="NSNextKeyView" ref="7465336"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="569155656"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Name:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="193402932"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="7465336"> - <reference key="NSNextResponder" ref="962069974"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{125, 64}, {181, 19}}</string> - <reference key="NSSuperview" ref="962069974"/> - <reference key="NSNextKeyView" ref="817603032"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="118322854"> - <int key="NSCellFlags">-1804599231</int> - <int key="NSCellFlags2">272761920</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="7465336"/> - <bool key="NSDrawsBackground">YES</bool> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="52640137"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSPopUpButton" id="570239451"> - <reference key="NSNextResponder" ref="962069974"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{121, 35}, {187, 22}}</string> - <reference key="NSSuperview" ref="962069974"/> - <reference key="NSNextKeyView" ref="593093495"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="556116646"> - <int key="NSCellFlags">-2076180416</int> - <int key="NSCellFlags2">133120</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="570239451"/> - <int key="NSButtonFlags">109199360</int> - <int key="NSButtonFlags2">129</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <object class="NSMenuItem" key="NSMenuItem" id="751711751"> - <reference key="NSMenu" ref="520429612"/> - <string key="NSTitle">Before</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="556116646"/> - </object> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="520429612"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"> - <reference ref="751711751"/> - <object class="NSMenuItem" id="772594730"> - <reference key="NSMenu" ref="520429612"/> - <string key="NSTitle">After</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">1</int> - <reference key="NSTarget" ref="556116646"/> - </object> - </array> - </object> - <int key="NSPreferredEdge">1</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">2</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSPopUpButton" id="613841003"> - <reference key="NSNextResponder" ref="962069974"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{121, 10}, {187, 22}}</string> - <reference key="NSSuperview" ref="962069974"/> - <reference key="NSNextKeyView" ref="924992653"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="468443756"> - <int key="NSCellFlags">-2076180416</int> - <int key="NSCellFlags2">133120</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="613841003"/> - <int key="NSButtonFlags">109199360</int> - <int key="NSButtonFlags2">129</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <object class="NSMenuItem" key="NSMenuItem" id="508933686"> - <reference key="NSMenu" ref="24859048"/> - <string key="NSTitle">Insert</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="468443756"/> - </object> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="24859048"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"> - <reference ref="508933686"/> - <object class="NSMenuItem" id="656778915"> - <reference key="NSMenu" ref="24859048"/> - <string key="NSTitle">Update</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">1</int> - <reference key="NSTarget" ref="468443756"/> - </object> - <object class="NSMenuItem" id="766167700"> - <reference key="NSMenu" ref="24859048"/> - <string key="NSTitle">Delete</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <int key="NSTag">2</int> - <reference key="NSTarget" ref="468443756"/> - </object> - </array> - </object> - <int key="NSPreferredEdge">1</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">2</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSTextField" id="817603032"> - <reference key="NSNextResponder" ref="962069974"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{1, 40}, {116, 14}}</string> - <reference key="NSSuperview" ref="962069974"/> - <reference key="NSNextKeyView" ref="570239451"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="424224466"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Action Time:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="817603032"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="593093495"> - <reference key="NSNextResponder" ref="962069974"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{1, 15}, {116, 14}}</string> - <reference key="NSSuperview" ref="962069974"/> - <reference key="NSNextKeyView" ref="613841003"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="1011590098"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents">Event:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="593093495"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrame">{{1, 1}, {324, 93}}</string> - <reference key="NSSuperview" ref="473749629"/> - <reference key="NSNextKeyView" ref="193402932"/> - </object> - </array> - <string key="NSFrame">{{17, 219}, {326, 109}}</string> - <reference key="NSSuperview" ref="28677781"/> - <reference key="NSNextKeyView" ref="962069974"/> - <string key="NSOffsets">{0, 0}</string> - <object class="NSTextFieldCell" key="NSTitleCell"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">Trigger:</string> - <object class="NSFont" key="NSSupport"> - <bool key="IBIsSystemFont">YES</bool> - <double key="NSSize">11</double> - <int key="NSfFlags">1558</int> - </object> - <reference key="NSBackgroundColor" ref="812613095"/> - <object class="NSColor" key="NSTextColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MCAwLjgAA</bytes> - </object> - </object> - <reference key="NSContentView" ref="962069974"/> - <int key="NSBorderType">1</int> - <int key="NSBoxType">0</int> - <int key="NSTitlePosition">2</int> - <bool key="NSTransparent">NO</bool> - </object> - <object class="NSButton" id="59936077"> - <reference key="NSNextResponder" ref="28677781"/> - <int key="NSvFlags">289</int> - <string key="NSFrame">{{249, 13}, {96, 28}}</string> - <reference key="NSSuperview" ref="28677781"/> - <string key="NSHuggingPriority">{250, 750}</string> - <int key="NSTag">1</int> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="833148794"> - <int key="NSCellFlags">603979776</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Add</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="59936077"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">129</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">DQ</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="870795952"> - <reference key="NSNextResponder" ref="28677781"/> - <int key="NSvFlags">289</int> - <string key="NSFrame">{{155, 13}, {96, 28}}</string> - <reference key="NSSuperview" ref="28677781"/> - <reference key="NSNextKeyView" ref="59936077"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="409821299"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Cancel</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="870795952"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">268435585</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">.</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSScrollView" id="924992653"> - <reference key="NSNextResponder" ref="28677781"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="1057291304"> - <reference key="NSNextResponder" ref="924992653"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextView" id="193453639"> - <reference key="NSNextResponder" ref="1057291304"/> - <int key="NSvFlags">2322</int> - <string key="NSFrameSize">{318, 168}</string> - <reference key="NSSuperview" ref="1057291304"/> - <reference key="NSNextKeyView" ref="797275081"/> - <object class="NSTextContainer" key="NSTextContainer" id="21139041"> - <object class="NSLayoutManager" key="NSLayoutManager"> - <object class="NSTextStorage" key="NSTextStorage"> - <object class="NSMutableString" key="NSString"> - <characters key="NS.bytes"/> - </object> - <nil key="NSDelegate"/> - </object> - <array class="NSMutableArray" key="NSTextContainers"> - <reference ref="21139041"/> - </array> - <int key="NSLMFlags">38</int> - <nil key="NSDelegate"/> - </object> - <reference key="NSTextView" ref="193453639"/> - <double key="NSWidth">318</double> - <int key="NSTCFlags">1</int> - </object> - <object class="NSTextViewSharedData" key="NSSharedData"> - <int key="NSFlags">12067</int> - <int key="NSTextCheckingTypes">0</int> - <nil key="NSMarkedAttributes"/> - <reference key="NSBackgroundColor" ref="457906098"/> - <dictionary key="NSSelectedAttributes"> - <reference key="NSBackgroundColor" ref="695342849"/> - <reference key="NSColor" ref="294465151"/> - </dictionary> - <reference key="NSInsertionColor" ref="667308713"/> - <dictionary key="NSLinkAttributes"> - <reference key="NSColor" ref="618433734"/> - <reference key="NSCursor" ref="113216199"/> - <integer value="1" key="NSUnderline"/> - </dictionary> - <nil key="NSDefaultParagraphStyle"/> - <nil key="NSTextFinder"/> - <int key="NSPreferredTextFinderStyle">1</int> - </object> - <int key="NSTVFlags">6</int> - <string key="NSMaxSize">{592, 10000000}</string> - <nil key="NSDelegate"/> - </object> - </array> - <string key="NSFrame">{{1, 1}, {318, 168}}</string> - <reference key="NSSuperview" ref="924992653"/> - <reference key="NSNextKeyView" ref="193453639"/> - <reference key="NSDocView" ref="193453639"/> - <reference key="NSBGColor" ref="457906098"/> - <reference key="NSCursor" ref="546590681"/> - <int key="NScvFlags">4</int> - </object> - <object class="NSScroller" id="797275081"> - <reference key="NSNextResponder" ref="924992653"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{-100, -100}, {87, 18}}</string> - <reference key="NSSuperview" ref="924992653"/> - <reference key="NSNextKeyView" ref="1057291304"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">1</int> - <reference key="NSTarget" ref="924992653"/> - <string key="NSAction">_doScroller:</string> - <double key="NSCurValue">1</double> - </object> - <object class="NSScroller" id="488376274"> - <reference key="NSNextResponder" ref="924992653"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{224, 1}, {11, 133}}</string> - <reference key="NSSuperview" ref="924992653"/> - <reference key="NSNextKeyView" ref="870795952"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">256</int> - <reference key="NSTarget" ref="924992653"/> - <string key="NSAction">_doScroller:</string> - </object> - </array> - <string key="NSFrame">{{20, 45}, {320, 170}}</string> - <reference key="NSSuperview" ref="28677781"/> - <reference key="NSNextKeyView" ref="1057291304"/> - <int key="NSsFlags">133650</int> - <reference key="NSVScroller" ref="488376274"/> - <reference key="NSHScroller" ref="797275081"/> - <reference key="NSContentView" ref="1057291304"/> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - </array> - <string key="NSFrameSize">{360, 348}</string> - <reference key="NSNextKeyView" ref="473749629"/> - </object> - <string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string> - <string key="NSMinSize">{360, 370}</string> - <string key="NSMaxSize">{10000000000000, 10000000000000}</string> - <bool key="NSWindowIsRestorable">YES</bool> - </object> - <object class="NSWindowTemplate" id="321175300"> - <int key="NSWindowStyleMask">3</int> - <int key="NSWindowBacking">2</int> - <string key="NSWindowRect">{{101, 476}, {379, 139}}</string> - <int key="NSWTFlags">1886912512</int> - <string key="NSWindowTitle">Progress</string> - <string key="NSWindowClass">NSPanel</string> - <nil key="NSViewClass"/> - <nil key="NSUserInterfaceItemIdentifier"/> - <string key="NSWindowContentMinSize">{213, 50}</string> - <object class="NSView" key="NSWindowView" id="477632272"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSProgressIndicator" id="573071454"> - <reference key="NSNextResponder" ref="477632272"/> - <int key="NSvFlags">256</int> - <string key="NSFrame">{{18, 56}, {343, 20}}</string> - <reference key="NSSuperview" ref="477632272"/> - <reference key="NSNextKeyView" ref="352238263"/> - <int key="NSpiFlags">16398</int> - <double key="NSMaxValue">100</double> - </object> - <object class="NSTextField" id="1014084013"> - <reference key="NSNextResponder" ref="477632272"/> - <int key="NSvFlags">256</int> - <string key="NSFrame">{{59, 84}, {300, 17}}</string> - <reference key="NSSuperview" ref="477632272"/> - <reference key="NSNextKeyView" ref="573071454"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="514689588"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">4197120</int> - <string key="NSContents">Importing…</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="1014084013"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <object class="NSColor" key="NSTextColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MC41AA</bytes> - <object class="NSColorSpace" key="NSCustomColorSpace"> - <int key="NSID">2</int> - </object> - </object> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSButton" id="352238263"> - <reference key="NSNextResponder" ref="477632272"/> - <int key="NSvFlags">256</int> - <string key="NSFrame">{{257, 12}, {108, 32}}</string> - <reference key="NSSuperview" ref="477632272"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="33427226"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">Cancel</string> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="352238263"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="959847048"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">Gw</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSTextField" id="301657628"> - <reference key="NSNextResponder" ref="477632272"/> - <int key="NSvFlags">256</int> - <string key="NSFrame">{{59, 104}, {300, 17}}</string> - <reference key="NSSuperview" ref="477632272"/> - <reference key="NSNextKeyView" ref="1014084013"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="857914808"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">4196352</int> - <string key="NSContents">Doing Stuff…</string> - <object class="NSFont" key="NSSupport"> - <bool key="IBIsSystemFont">YES</bool> - <double key="NSSize">13</double> - <int key="NSfFlags">2072</int> - </object> - <reference key="NSControlView" ref="301657628"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSImageView" id="696435068"> - <reference key="NSNextResponder" ref="477632272"/> - <int key="NSvFlags">268</int> - <set class="NSMutableSet" key="NSDragTypes"> - <string>Apple PDF pasteboard type</string> - <string>Apple PICT pasteboard type</string> - <string>Apple PNG pasteboard type</string> - <string>NSFilenamesPboardType</string> - <string>NeXT Encapsulated PostScript v1.2 pasteboard type</string> - <string>NeXT TIFF v4.0 pasteboard type</string> - </set> - <string key="NSFrame">{{20, 87}, {32, 32}}</string> - <reference key="NSSuperview" ref="477632272"/> - <reference key="NSNextKeyView" ref="301657628"/> - <bool key="NSEnabled">YES</bool> - <object class="NSImageCell" key="NSCell" id="527788589"> - <int key="NSCellFlags">0</int> - <int key="NSCellFlags2">33554432</int> - <object class="NSCustomResource" key="NSContents"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">NSApplicationIcon</string> - </object> - <int key="NSAlign">0</int> - <int key="NSScale">0</int> - <int key="NSStyle">0</int> - <bool key="NSAnimates">NO</bool> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSEditable">YES</bool> - </object> - </array> - <string key="NSFrameSize">{379, 139}</string> - <reference key="NSNextKeyView" ref="696435068"/> - </object> - <string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string> - <string key="NSMinSize">{213, 72}</string> - <string key="NSMaxSize">{10000000000000, 10000000000000}</string> - <bool key="NSWindowIsRestorable">YES</bool> - </object> - <object class="NSWindowTemplate" id="34460447"> - <int key="NSWindowStyleMask">9</int> - <int key="NSWindowBacking">2</int> - <string key="NSWindowRect">{{221, 567}, {381, 247}}</string> - <int key="NSWTFlags">1886912512</int> - <string key="NSWindowTitle">Field Value</string> - <string key="NSWindowClass">NSWindow</string> - <nil key="NSViewClass"/> - <nil key="NSUserInterfaceItemIdentifier"/> - <string key="NSWindowContentMinSize">{213, 107}</string> - <object class="NSView" key="NSWindowView" id="463455866"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSButton" id="49106017"> - <reference key="NSNextResponder" ref="463455866"/> - <int key="NSvFlags">289</int> - <string key="NSFrame">{{285, 4}, {76, 25}}</string> - <reference key="NSSuperview" ref="463455866"/> - <string key="NSHuggingPriority">{250, 750}</string> - <int key="NSTag">1</int> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="852447608"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Close</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="49106017"/> - <int key="NSTag">1</int> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">35</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">DQ</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSScrollView" id="132959666"> - <reference key="NSNextResponder" ref="463455866"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="636035650"> - <reference key="NSNextResponder" ref="132959666"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextView" id="606708295"> - <reference key="NSNextResponder" ref="636035650"/> - <int key="NSvFlags">2322</int> - <string key="NSFrameSize">{370, 204}</string> - <reference key="NSSuperview" ref="636035650"/> - <reference key="NSNextKeyView" ref="271182733"/> - <object class="NSTextContainer" key="NSTextContainer" id="77780800"> - <object class="NSLayoutManager" key="NSLayoutManager"> - <object class="NSTextStorage" key="NSTextStorage"> - <object class="NSMutableString" key="NSString"> - <characters key="NS.bytes"/> - </object> - <nil key="NSDelegate"/> - </object> - <array class="NSMutableArray" key="NSTextContainers"> - <reference ref="77780800"/> - </array> - <int key="NSLMFlags">38</int> - <nil key="NSDelegate"/> - </object> - <reference key="NSTextView" ref="606708295"/> - <double key="NSWidth">370</double> - <int key="NSTCFlags">1</int> - </object> - <object class="NSTextViewSharedData" key="NSSharedData"> - <int key="NSFlags">2309</int> - <int key="NSTextCheckingTypes">0</int> - <nil key="NSMarkedAttributes"/> - <reference key="NSBackgroundColor" ref="457906098"/> - <dictionary key="NSSelectedAttributes"> - <reference key="NSBackgroundColor" ref="695342849"/> - <reference key="NSColor" ref="294465151"/> - </dictionary> - <reference key="NSInsertionColor" ref="667308713"/> - <dictionary key="NSLinkAttributes"> - <reference key="NSColor" ref="618433734"/> - <reference key="NSCursor" ref="113216199"/> - <integer value="1" key="NSUnderline"/> - </dictionary> - <nil key="NSDefaultParagraphStyle"/> - <nil key="NSTextFinder"/> - <int key="NSPreferredTextFinderStyle">0</int> - </object> - <int key="NSTVFlags">6</int> - <string key="NSMaxSize">{753, 10000000}</string> - <nil key="NSDelegate"/> - </object> - </array> - <string key="NSFrame">{{1, 1}, {370, 204}}</string> - <reference key="NSSuperview" ref="132959666"/> - <reference key="NSNextKeyView" ref="606708295"/> - <reference key="NSDocView" ref="606708295"/> - <reference key="NSBGColor" ref="457906098"/> - <reference key="NSCursor" ref="546590681"/> - <int key="NScvFlags">4</int> - </object> - <object class="NSScroller" id="271182733"> - <reference key="NSNextResponder" ref="132959666"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{-100, -100}, {87, 11}}</string> - <reference key="NSSuperview" ref="132959666"/> - <reference key="NSNextKeyView" ref="636035650"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">257</int> - <reference key="NSTarget" ref="132959666"/> - <string key="NSAction">_doScroller:</string> - <double key="NSCurValue">1</double> - </object> - <object class="NSScroller" id="524361801"> - <reference key="NSNextResponder" ref="132959666"/> - <int key="NSvFlags">256</int> - <string key="NSFrame">{{371, 1}, {11, 204}}</string> - <reference key="NSSuperview" ref="132959666"/> - <reference key="NSNextKeyView" ref="49106017"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">256</int> - <reference key="NSTarget" ref="132959666"/> - <string key="NSAction">_doScroller:</string> - </object> - </array> - <string key="NSFrame">{{-1, 35}, {383, 206}}</string> - <reference key="NSSuperview" ref="463455866"/> - <reference key="NSNextKeyView" ref="636035650"/> - <int key="NSsFlags">133138</int> - <reference key="NSVScroller" ref="524361801"/> - <reference key="NSHScroller" ref="271182733"/> - <reference key="NSContentView" ref="636035650"/> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - </array> - <string key="NSFrameSize">{381, 247}</string> - <reference key="NSNextKeyView" ref="132959666"/> - </object> - <string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string> - <string key="NSMinSize">{213, 129}</string> - <string key="NSMaxSize">{10000000000000, 10000000000000}</string> - <bool key="NSWindowIsRestorable">YES</bool> - </object> - <object class="NSWindowTemplate" id="629557373"> - <int key="NSWindowStyleMask">15</int> - <int key="NSWindowBacking">2</int> - <string key="NSWindowRect">{{386, 508}, {411, 341}}</string> - <int key="NSWTFlags">1886912512</int> - <string key="NSWindowTitle">Variables</string> - <string key="NSWindowClass">NSWindow</string> - <nil key="NSViewClass"/> - <nil key="NSUserInterfaceItemIdentifier"/> - <string key="NSWindowContentMinSize">{350, 200}</string> - <object class="NSView" key="NSWindowView" id="614170633"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSButton" id="20857429"> - <reference key="NSNextResponder" ref="614170633"/> - <int key="NSvFlags">257</int> - <string key="NSFrame">{{319, 5}, {77, 28}}</string> - <reference key="NSSuperview" ref="614170633"/> - <reference key="NSNextKeyView" ref="791611345"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="18643543"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Close</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="20857429"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">DQ</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="791611345"> - <reference key="NSNextResponder" ref="614170633"/> - <int key="NSvFlags">257</int> - <string key="NSFrame">{{246, -216}, {76, 28}}</string> - <reference key="NSSuperview" ref="614170633"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="832740667"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Close</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="791611345"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">Gw</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="96543456"> - <reference key="NSNextResponder" ref="614170633"/> - <int key="NSvFlags">260</int> - <string key="NSFrame">{{15, 5}, {124, 28}}</string> - <reference key="NSSuperview" ref="614170633"/> - <reference key="NSNextKeyView" ref="331708526"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="152079722"> - <int key="NSCellFlags">-2080374784</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Save As...</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="96543456"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">129</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSTextField" id="772568181"> - <reference key="NSNextResponder" ref="614170633"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{9, 316}, {385, 14}}</string> - <reference key="NSSuperview" ref="614170633"/> - <reference key="NSNextKeyView" ref="121401505"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="712254353"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272761856</int> - <string key="NSContents">Create syntax for object</string> - <reference key="NSSupport" ref="27"/> - <reference key="NSControlView" ref="772568181"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSButton" id="331708526"> - <reference key="NSNextResponder" ref="614170633"/> - <int key="NSvFlags">260</int> - <string key="NSFrame">{{137, 5}, {90, 28}}</string> - <reference key="NSSuperview" ref="614170633"/> - <reference key="NSNextKeyView" ref="20857429"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="582064074"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Copy</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="331708526"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSScrollView" id="121401505"> - <reference key="NSNextResponder" ref="614170633"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="167268114"> - <reference key="NSNextResponder" ref="121401505"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextView" id="939003537"> - <reference key="NSNextResponder" ref="167268114"/> - <int key="NSvFlags">2322</int> - <string key="NSFrameSize">{411, 264}</string> - <reference key="NSSuperview" ref="167268114"/> - <reference key="NSNextKeyView" ref="900574291"/> - <object class="NSTextContainer" key="NSTextContainer" id="840641212"> - <object class="NSLayoutManager" key="NSLayoutManager"> - <object class="NSTextStorage" key="NSTextStorage"> - <object class="NSMutableString" key="NSString"> - <characters key="NS.bytes"/> - </object> - <nil key="NSDelegate"/> - </object> - <array class="NSMutableArray" key="NSTextContainers"> - <reference ref="840641212"/> - </array> - <int key="NSLMFlags">38</int> - <nil key="NSDelegate"/> - </object> - <reference key="NSTextView" ref="939003537"/> - <double key="NSWidth">411</double> - <int key="NSTCFlags">1</int> - </object> - <object class="NSTextViewSharedData" key="NSSharedData"> - <int key="NSFlags">2305</int> - <int key="NSTextCheckingTypes">0</int> - <nil key="NSMarkedAttributes"/> - <reference key="NSBackgroundColor" ref="457906098"/> - <dictionary key="NSSelectedAttributes"> - <reference key="NSBackgroundColor" ref="695342849"/> - <reference key="NSColor" ref="294465151"/> - </dictionary> - <reference key="NSInsertionColor" ref="667308713"/> - <dictionary key="NSLinkAttributes"> - <reference key="NSColor" ref="618433734"/> - <reference key="NSCursor" ref="113216199"/> - <integer value="1" key="NSUnderline"/> - </dictionary> - <nil key="NSDefaultParagraphStyle"/> - <nil key="NSTextFinder"/> - <int key="NSPreferredTextFinderStyle">0</int> - </object> - <int key="NSTVFlags">6</int> - <string key="NSMaxSize">{824, 10000000}</string> - <nil key="NSDelegate"/> - </object> - </array> - <string key="NSFrame">{{1, 1}, {411, 264}}</string> - <reference key="NSSuperview" ref="121401505"/> - <reference key="NSNextKeyView" ref="939003537"/> - <reference key="NSDocView" ref="939003537"/> - <reference key="NSBGColor" ref="457906098"/> - <reference key="NSCursor" ref="546590681"/> - <int key="NScvFlags">4</int> - </object> - <object class="NSScroller" id="900574291"> - <reference key="NSNextResponder" ref="121401505"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{-100, -100}, {87, 15}}</string> - <reference key="NSSuperview" ref="121401505"/> - <reference key="NSNextKeyView" ref="167268114"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">1</int> - <reference key="NSTarget" ref="121401505"/> - <string key="NSAction">_doScroller:</string> - <double key="NSCurValue">1</double> - </object> - <object class="NSScroller" id="760360609"> - <reference key="NSNextResponder" ref="121401505"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{224, 1}, {11, 133}}</string> - <reference key="NSSuperview" ref="121401505"/> - <reference key="NSNextKeyView" ref="96543456"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">256</int> - <reference key="NSTarget" ref="121401505"/> - <string key="NSAction">_doScroller:</string> - </object> - </array> - <string key="NSFrame">{{-1, 42}, {413, 266}}</string> - <reference key="NSSuperview" ref="614170633"/> - <reference key="NSNextKeyView" ref="167268114"/> - <int key="NSsFlags">133650</int> - <reference key="NSVScroller" ref="760360609"/> - <reference key="NSHScroller" ref="900574291"/> - <reference key="NSContentView" ref="167268114"/> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - </array> - <string key="NSFrameSize">{411, 341}</string> - <reference key="NSNextKeyView" ref="772568181"/> - </object> - <string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string> - <string key="NSMinSize">{350, 222}</string> - <string key="NSMaxSize">{10000000000000, 10000000000000}</string> - <string key="NSFrameAutosaveName">SPCreateSyntaxSheet</string> - <bool key="NSWindowIsRestorable">YES</bool> - </object> - <object class="NSWindowTemplate" id="401301040"> - <int key="NSWindowStyleMask">9</int> - <int key="NSWindowBacking">2</int> - <string key="NSWindowRect">{{467, 379}, {405, 267}}</string> - <int key="NSWTFlags">1886912512</int> - <string key="NSWindowTitle">Error</string> - <string key="NSWindowClass">NSWindow</string> - <nil key="NSViewClass"/> - <nil key="NSUserInterfaceItemIdentifier"/> - <string key="NSWindowContentMinSize">{213, 107}</string> - <object class="NSView" key="NSWindowView" id="736055667"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSButton" id="884123771"> - <reference key="NSNextResponder" ref="736055667"/> - <int key="NSvFlags">257</int> - <string key="NSFrame">{{314, 13}, {76, 28}}</string> - <reference key="NSSuperview" ref="736055667"/> - <reference key="NSNextKeyView" ref="757193708"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="445279030"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134381568</int> - <string key="NSContents">Close</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="884123771"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">DQ</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="757193708"> - <reference key="NSNextResponder" ref="736055667"/> - <int key="NSvFlags">257</int> - <string key="NSFrame">{{350, -130}, {80, 28}}</string> - <reference key="NSSuperview" ref="736055667"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="361341574"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134381568</int> - <string key="NSContents">Close</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="757193708"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">Gw</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSScrollView" id="805064076"> - <reference key="NSNextResponder" ref="736055667"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="298756222"> - <reference key="NSNextResponder" ref="805064076"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextView" id="208952526"> - <reference key="NSNextResponder" ref="298756222"/> - <int key="NSvFlags">2322</int> - <string key="NSFrameSize">{352, 175}</string> - <reference key="NSSuperview" ref="298756222"/> - <reference key="NSNextKeyView" ref="832962230"/> - <object class="NSTextContainer" key="NSTextContainer" id="480726965"> - <object class="NSLayoutManager" key="NSLayoutManager"> - <object class="NSTextStorage" key="NSTextStorage"> - <object class="NSMutableString" key="NSString"> - <characters key="NS.bytes"/> - </object> - <nil key="NSDelegate"/> - </object> - <array class="NSMutableArray" key="NSTextContainers"> - <reference ref="480726965"/> - </array> - <int key="NSLMFlags">38</int> - <nil key="NSDelegate"/> - </object> - <reference key="NSTextView" ref="208952526"/> - <double key="NSWidth">352</double> - <int key="NSTCFlags">1</int> - </object> - <object class="NSTextViewSharedData" key="NSSharedData"> - <int key="NSFlags">2305</int> - <int key="NSTextCheckingTypes">0</int> - <nil key="NSMarkedAttributes"/> - <reference key="NSBackgroundColor" ref="457906098"/> - <dictionary key="NSSelectedAttributes"> - <reference key="NSBackgroundColor" ref="695342849"/> - <reference key="NSColor" ref="294465151"/> - </dictionary> - <reference key="NSInsertionColor" ref="667308713"/> - <dictionary key="NSLinkAttributes"> - <reference key="NSColor" ref="618433734"/> - <reference key="NSCursor" ref="113216199"/> - <integer value="1" key="NSUnderline"/> - </dictionary> - <nil key="NSDefaultParagraphStyle"/> - <nil key="NSTextFinder"/> - <int key="NSPreferredTextFinderStyle">0</int> - </object> - <int key="NSTVFlags">6</int> - <string key="NSMaxSize">{717, 10000000}</string> - <nil key="NSDelegate"/> - </object> - </array> - <string key="NSFrame">{{1, 1}, {352, 175}}</string> - <reference key="NSSuperview" ref="805064076"/> - <reference key="NSNextKeyView" ref="208952526"/> - <reference key="NSDocView" ref="208952526"/> - <reference key="NSBGColor" ref="457906098"/> - <reference key="NSCursor" ref="546590681"/> - <int key="NScvFlags">4</int> - </object> - <object class="NSScroller" id="832962230"> - <reference key="NSNextResponder" ref="805064076"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{-100, -100}, {87, 11}}</string> - <reference key="NSSuperview" ref="805064076"/> - <reference key="NSNextKeyView" ref="298756222"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">257</int> - <reference key="NSTarget" ref="805064076"/> - <string key="NSAction">_doScroller:</string> - <double key="NSCurValue">1</double> - </object> - <object class="NSScroller" id="239096412"> - <reference key="NSNextResponder" ref="805064076"/> - <int key="NSvFlags">256</int> - <string key="NSFrame">{{353, 1}, {11, 175}}</string> - <reference key="NSSuperview" ref="805064076"/> - <reference key="NSNextKeyView" ref="884123771"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">256</int> - <reference key="NSTarget" ref="805064076"/> - <string key="NSAction">_doScroller:</string> - </object> - </array> - <string key="NSFrame">{{20, 45}, {365, 177}}</string> - <reference key="NSSuperview" ref="736055667"/> - <reference key="NSNextKeyView" ref="298756222"/> - <int key="NSsFlags">133138</int> - <reference key="NSVScroller" ref="239096412"/> - <reference key="NSHScroller" ref="832962230"/> - <reference key="NSContentView" ref="298756222"/> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - <object class="NSTextField" id="999783710"> - <reference key="NSNextResponder" ref="736055667"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{18, 230}, {369, 17}}</string> - <reference key="NSSuperview" ref="736055667"/> - <reference key="NSNextKeyView" ref="805064076"/> - <string key="NSReuseIdentifierKey">_NS:526</string> - <string key="NSHuggingPriority">{251, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="120319413"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272630784</int> - <string key="NSContents">There have been errors!</string> - <reference key="NSSupport" ref="27"/> - <string key="NSCellIdentifier">_NS:526</string> - <reference key="NSControlView" ref="999783710"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrameSize">{405, 267}</string> - <reference key="NSNextKeyView" ref="999783710"/> - </object> - <string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string> - <string key="NSMinSize">{213, 129}</string> - <string key="NSMaxSize">{10000000000000, 10000000000000}</string> - <bool key="NSWindowIsRestorable">YES</bool> - </object> - <object class="NSWindowTemplate" id="364554212"> - <int key="NSWindowStyleMask">31</int> - <int key="NSWindowBacking">2</int> - <string key="NSWindowRect">{{415, 136}, {505, 308}}</string> - <int key="NSWTFlags">-201325568</int> - <string key="NSWindowTitle">MySQL Help</string> - <string key="NSWindowClass">NSPanel</string> - <nil key="NSViewClass"/> - <nil key="NSUserInterfaceItemIdentifier"/> - <string key="NSWindowContentMinSize">{351, 120}</string> - <object class="NSView" key="NSWindowView" id="510607156"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="WebView" id="301565654"> - <reference key="NSNextResponder" ref="510607156"/> - <int key="NSvFlags">274</int> - <set class="NSMutableSet" key="NSDragTypes"> - <string>Apple HTML pasteboard type</string> - <string>Apple PDF pasteboard type</string> - <string>Apple URL pasteboard type</string> - <string>Apple Web Archive pasteboard type</string> - <string>NSColor pasteboard type</string> - <string>NSFilenamesPboardType</string> - <string>NSStringPboardType</string> - <string>NeXT RTFD pasteboard type</string> - <string>NeXT Rich Text Format v1.0 pasteboard type</string> - <string>NeXT TIFF v4.0 pasteboard type</string> - <string>WebURLsWithTitlesPboardType</string> - <string>public.png</string> - <string>public.url</string> - <string>public.url-name</string> - </set> - <string key="NSFrameSize">{505, 271}</string> - <reference key="NSSuperview" ref="510607156"/> - <reference key="NSNextKeyView"/> - <string key="FrameName"/> - <string key="GroupName"/> - <object class="WebPreferences" key="Preferences"> - <nil key="Identifier"/> - <dictionary class="NSMutableDictionary" key="Values"/> - </object> - <bool key="UseBackForwardList">YES</bool> - <bool key="AllowsUndo">YES</bool> - </object> - <object class="NSSearchField" id="882067248"> - <reference key="NSNextResponder" ref="510607156"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{122, 280}, {218, 19}}</string> - <reference key="NSSuperview" ref="510607156"/> - <reference key="NSNextKeyView" ref="948894306"/> - <bool key="NSEnabled">YES</bool> - <object class="NSSearchFieldCell" key="NSCell" id="643565822"> - <int key="NSCellFlags">341835841</int> - <int key="NSCellFlags2">268568640</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <string key="NSPlaceholderString">Search</string> - <reference key="NSControlView" ref="882067248"/> - <int key="NSTextBezelStyle">1</int> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - <object class="NSButtonCell" key="NSSearchButtonCell"> - <int key="NSCellFlags">0</int> - <int key="NSCellFlags2">0</int> - <string key="NSContents">search</string> - <reference key="NSControlView" ref="882067248"/> - <string key="NSAction">_searchFieldSearch:</string> - <reference key="NSTarget" ref="643565822"/> - <int key="NSButtonFlags">138690560</int> - <int key="NSButtonFlags2">0</int> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <object class="NSButtonCell" key="NSCancelButtonCell"> - <int key="NSCellFlags">-2147483648</int> - <int key="NSCellFlags2">0</int> - <string key="NSContents">clear</string> - <array class="NSMutableArray" key="NSAccessibilityOverriddenAttributes"> - <dictionary class="NSMutableDictionary"> - <string key="AXDescription">cancel</string> - <integer value="1" key="NSAccessibilityEncodedAttributesValueType"/> - </dictionary> - </array> - <string key="NSAction">_searchFieldCancel:</string> - <reference key="NSTarget" ref="643565822"/> - <int key="NSButtonFlags">138428416</int> - <int key="NSButtonFlags2">0</int> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <int key="NSMaximumRecents">255</int> - <bool key="NSSendsWholeSearchString">YES</bool> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSButton" id="264841107"> - <reference key="NSNextResponder" ref="510607156"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{81, -91}, {77, 32}}</string> - <reference key="NSSuperview" ref="510607156"/> - <reference key="NSNextKeyView" ref="176530295"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="471484739"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">larger</string> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="264841107"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">268435585</int> - <reference key="NSAlternateImage" ref="959847048"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">+</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="176530295"> - <reference key="NSNextResponder" ref="510607156"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{150, -91}, {86, 32}}</string> - <reference key="NSSuperview" ref="510607156"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="821494698"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">smaller</string> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="176530295"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">268435585</int> - <reference key="NSAlternateImage" ref="959847048"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">-</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSSegmentedControl" id="789201908"> - <reference key="NSNextResponder" ref="510607156"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{11, 280}, {104, 20}}</string> - <reference key="NSSuperview" ref="510607156"/> - <reference key="NSNextKeyView" ref="882067248"/> - <bool key="NSEnabled">YES</bool> - <object class="NSSegmentedCell" key="NSCell" id="951022170"> - <int key="NSCellFlags">75497472</int> - <int key="NSCellFlags2">0</int> - <object class="NSFont" key="NSSupport" id="513227961"> - <bool key="IBIsSystemFont">YES</bool> - <double key="NSSize">12</double> - <int key="NSfFlags">787</int> - </object> - <reference key="NSControlView" ref="789201908"/> - <array class="NSMutableArray" key="NSSegmentImages"> - <object class="NSSegmentItem"> - <double key="NSSegmentItemWidth">32</double> - <object class="NSCustomResource" key="NSSegmentItemImage"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">NSLeftFacingTriangleTemplate</string> - </object> - <string key="NSSegmentItemTooltip">Show the previous page</string> - <int key="NSSegmentItemImageScaling">0</int> - </object> - <object class="NSSegmentItem"> - <double key="NSSegmentItemWidth">32</double> - <object class="NSCustomResource" key="NSSegmentItemImage"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">NSListViewTemplate</string> - </object> - <string key="NSSegmentItemLabel"/> - <string key="NSSegmentItemTooltip">MySQL Table of Contents</string> - <int key="NSSegmentItemTag">1</int> - <int key="NSSegmentItemImageScaling">0</int> - </object> - <object class="NSSegmentItem"> - <double key="NSSegmentItemWidth">32</double> - <object class="NSCustomResource" key="NSSegmentItemImage"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">NSRightFacingTriangleTemplate</string> - </object> - <string key="NSSegmentItemLabel"/> - <string key="NSSegmentItemTooltip">Show the next page</string> - <int key="NSSegmentItemImageScaling">0</int> - </object> - </array> - <int key="NSSelectedSegment">-1</int> - <int key="NSTrackingMode">2</int> - <int key="NSSegmentStyle">3</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="157285958"> - <reference key="NSNextResponder" ref="510607156"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{157, -48}, {132, 32}}</string> - <reference key="NSSuperview" ref="510607156"/> - <reference key="NSNextKeyView" ref="508882696"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="92741637"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">focusToSearch</string> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="157285958"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">268435585</int> - <reference key="NSAlternateImage" ref="959847048"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">f</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="790699928"> - <reference key="NSNextResponder" ref="510607156"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{71, -48}, {97, 32}}</string> - <reference key="NSSuperview" ref="510607156"/> - <reference key="NSNextKeyView" ref="810058338"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="458189017"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">FindNext</string> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="790699928"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">268435585</int> - <reference key="NSAlternateImage" ref="959847048"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">g</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="810058338"> - <reference key="NSNextResponder" ref="510607156"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{72, -70}, {96, 32}}</string> - <reference key="NSSuperview" ref="510607156"/> - <reference key="NSNextKeyView" ref="887242385"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="112913412"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">FindPrev</string> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="810058338"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">268435585</int> - <reference key="NSAlternateImage" ref="959847048"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">G</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSBox" id="746091106"> - <reference key="NSNextResponder" ref="510607156"/> - <int key="NSvFlags">10</int> - <array class="NSMutableArray" key="NSSubviews"/> - <string key="NSFrame">{{0, 269}, {505, 5}}</string> - <reference key="NSSuperview" ref="510607156"/> - <reference key="NSNextKeyView" ref="301565654"/> - <string key="NSHuggingPriority">{250, 750}</string> - <string key="NSOffsets">{0, 0}</string> - <object class="NSTextFieldCell" key="NSTitleCell"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">Box</string> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSBackgroundColor" ref="812613095"/> - <object class="NSColor" key="NSTextColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MCAwLjgAA</bytes> - </object> - </object> - <int key="NSBorderType">3</int> - <int key="NSBoxType">2</int> - <int key="NSTitlePosition">0</int> - <bool key="NSTransparent">NO</bool> - </object> - <object class="NSSegmentedControl" id="948894306"> - <reference key="NSNextResponder" ref="510607156"/> - <int key="NSvFlags">265</int> - <string key="NSFrame">{{347, 279}, {152, 20}}</string> - <reference key="NSSuperview" ref="510607156"/> - <reference key="NSNextKeyView" ref="746091106"/> - <bool key="NSEnabled">YES</bool> - <object class="NSSegmentedCell" key="NSCell" id="336571135"> - <int key="NSCellFlags">75497472</int> - <int key="NSCellFlags2">0</int> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="948894306"/> - <array class="NSMutableArray" key="NSSegmentImages"> - <object class="NSSegmentItem"> - <double key="NSSegmentItemWidth">48</double> - <string key="NSSegmentItemLabel">MySQL</string> - <string key="NSSegmentItemTooltip">Search in MySQL Help [⇧⌘M]</string> - <bool key="NSSegmentItemSelected">YES</bool> - <int key="NSSegmentItemImageScaling">0</int> - </object> - <object class="NSSegmentItem"> - <double key="NSSegmentItemWidth">48</double> - <string key="NSSegmentItemLabel">Page</string> - <string key="NSSegmentItemTooltip">Search in current page [⇧⌘P]</string> - <int key="NSSegmentItemTag">1</int> - <int key="NSSegmentItemImageScaling">0</int> - </object> - <object class="NSSegmentItem"> - <double key="NSSegmentItemWidth">48</double> - <string key="NSSegmentItemLabel">Web</string> - <string key="NSSegmentItemTooltip">Search in the online documentation [⇧⌘W]</string> - <int key="NSSegmentItemTag">2</int> - <int key="NSSegmentItemImageScaling">0</int> - </object> - </array> - <int key="NSSegmentStyle">3</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="887242385"> - <reference key="NSNextResponder" ref="510607156"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{129, -50}, {96, 32}}</string> - <reference key="NSSuperview" ref="510607156"/> - <reference key="NSNextKeyView" ref="157285958"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="1027343673"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">Web</string> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="887242385"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">268435585</int> - <reference key="NSAlternateImage" ref="959847048"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">W</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="508882696"> - <reference key="NSNextResponder" ref="510607156"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{220, -50}, {96, 32}}</string> - <reference key="NSSuperview" ref="510607156"/> - <reference key="NSNextKeyView" ref="206859009"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="231235267"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">page</string> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="508882696"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">268435585</int> - <reference key="NSAlternateImage" ref="959847048"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">P</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="206859009"> - <reference key="NSNextResponder" ref="510607156"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{308, -50}, {96, 32}}</string> - <reference key="NSSuperview" ref="510607156"/> - <reference key="NSNextKeyView" ref="264841107"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="35422042"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">mysql</string> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="206859009"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">268435585</int> - <reference key="NSAlternateImage" ref="959847048"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">M</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - </array> - <string key="NSFrameSize">{505, 308}</string> - <reference key="NSNextKeyView" ref="789201908"/> - </object> - <string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string> - <string key="NSMinSize">{351, 136}</string> - <string key="NSMaxSize">{10000000000000, 10000000000000}</string> - <string key="NSFrameAutosaveName">MYSQL_HELP_WINDOW</string> - <bool key="NSWindowIsRestorable">YES</bool> - </object> - <object class="NSWindowTemplate" id="754703764"> - <int key="NSWindowStyleMask">139</int> - <int key="NSWindowBacking">2</int> - <string key="NSWindowRect">{{162, 162}, {752, 317}}</string> - <int key="NSWTFlags">-461896704</int> - <string key="NSWindowTitle">Advanced Filter</string> - <string key="NSWindowClass">NSPanel</string> - <nil key="NSViewClass"/> - <nil key="NSUserInterfaceItemIdentifier"/> - <string key="NSWindowContentMinSize">{600, 317}</string> - <object class="NSView" key="NSWindowView" id="1008640892"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSSplitView" id="676149810"> - <reference key="NSNextResponder" ref="1008640892"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSCustomView" id="1047499221"> - <reference key="NSNextResponder" ref="676149810"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSScrollView" id="873900606"> - <reference key="NSNextResponder" ref="1047499221"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="362766596"> - <reference key="NSNextResponder" ref="873900606"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTableView" id="536214448"> - <reference key="NSNextResponder" ref="362766596"/> - <int key="NSvFlags">274</int> - <string key="NSFrameSize">{752, 125}</string> - <reference key="NSSuperview" ref="362766596"/> - <reference key="NSNextKeyView" ref="874329690"/> - <bool key="NSEnabled">YES</bool> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSControlAllowsExpansionToolTips">YES</bool> - <object class="NSTableHeaderView" key="NSHeaderView" id="974377033"> - <reference key="NSNextResponder" ref="874329690"/> - <int key="NSvFlags">256</int> - <string key="NSFrameSize">{752, 17}</string> - <reference key="NSSuperview" ref="874329690"/> - <reference key="NSNextKeyView" ref="85906285"/> - <reference key="NSTableView" ref="536214448"/> - </object> - <object class="_NSCornerView" key="NSCornerView" id="85906285"> - <reference key="NSNextResponder" ref="873900606"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrameSize">{15, 20}</string> - <reference key="NSSuperview" ref="873900606"/> - <reference key="NSNextKeyView" ref="362766596"/> - </object> - <array class="NSMutableArray" key="NSTableColumns"> - <object class="NSTableColumn" id="198516851"> - <double key="NSWidth">748.921875</double> - <double key="NSMinWidth">40</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <object class="NSColor" key="NSBackgroundColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MC4zMzMzMzI5ODU2AA</bytes> - </object> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="169455411"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="536214448"/> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <bool key="NSIsEditable">YES</bool> - <reference key="NSTableView" ref="536214448"/> - </object> - </array> - <double key="NSIntercellSpacingWidth">3</double> - <double key="NSIntercellSpacingHeight">2</double> - <reference key="NSBackgroundColor" ref="457906098"/> - <reference key="NSGridColor" ref="88855454"/> - <double key="NSRowHeight">17</double> - <int key="NSTvFlags">-893353984</int> - <reference key="NSDelegate"/> - <reference key="NSDataSource"/> - <int key="NSColumnAutoresizingStyle">1</int> - <int key="NSDraggingSourceMaskForLocal">-1</int> - <int key="NSDraggingSourceMaskForNonLocal">0</int> - <bool key="NSAllowsTypeSelect">YES</bool> - <int key="NSTableViewSelectionHighlightStyle">1</int> - <int key="NSTableViewDraggingDestinationStyle">1</int> - <int key="NSTableViewGroupRowStyle">1</int> - </object> - </array> - <string key="NSFrame">{{0, 17}, {752, 125}}</string> - <reference key="NSSuperview" ref="873900606"/> - <reference key="NSNextKeyView" ref="536214448"/> - <reference key="NSDocView" ref="536214448"/> - <reference key="NSBGColor" ref="866033095"/> - <int key="NScvFlags">4</int> - </object> - <object class="NSClipView" id="874329690"> - <reference key="NSNextResponder" ref="873900606"/> - <int key="NSvFlags">2338</int> - <array class="NSMutableArray" key="NSSubviews"> - <reference ref="974377033"/> - </array> - <string key="NSFrameSize">{752, 17}</string> - <reference key="NSSuperview" ref="873900606"/> - <reference key="NSNextKeyView" ref="974377033"/> - <reference key="NSDocView" ref="974377033"/> - </object> - <object class="NSScroller" id="684709638"> - <reference key="NSNextResponder" ref="873900606"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{224, 17}, {15, 102}}</string> - <reference key="NSSuperview" ref="873900606"/> - <reference key="NSNextKeyView" ref="705697287"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <reference key="NSTarget" ref="873900606"/> - <string key="NSAction">_doScroller:</string> - <double key="NSCurValue">1</double> - </object> - <object class="NSScroller" id="219664334"> - <reference key="NSNextResponder" ref="873900606"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{1, 95.851600000000005}, {751.61300000000006, 15}}</string> - <reference key="NSSuperview" ref="873900606"/> - <reference key="NSNextKeyView" ref="684709638"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">1</int> - <reference key="NSTarget" ref="873900606"/> - <string key="NSAction">_doScroller:</string> - </object> - <reference ref="85906285"/> - </array> - <string key="NSFrameSize">{752, 142}</string> - <reference key="NSSuperview" ref="1047499221"/> - <reference key="NSNextKeyView" ref="362766596"/> - <int key="NSsFlags">133680</int> - <reference key="NSVScroller" ref="684709638"/> - <reference key="NSHScroller" ref="219664334"/> - <reference key="NSContentView" ref="362766596"/> - <reference key="NSHeaderClipView" ref="874329690"/> - <bytes key="NSScrollAmts">QSAAAEEgAABBmAAAQZgAAA</bytes> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - </array> - <string key="NSFrameSize">{752, 141}</string> - <reference key="NSSuperview" ref="676149810"/> - <reference key="NSNextKeyView" ref="873900606"/> - <bool key="NSDoNotTranslateAutoresizingMask">YES</bool> - <string key="NSClassName">NSView</string> - </object> - <object class="NSCustomView" id="705697287"> - <reference key="NSNextResponder" ref="676149810"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSScrollView" id="983464860"> - <reference key="NSNextResponder" ref="705697287"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="700390299"> - <reference key="NSNextResponder" ref="983464860"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextView" id="148817449"> - <reference key="NSNextResponder" ref="700390299"/> - <int key="NSvFlags">2322</int> - <string key="NSFrameSize">{510, 90}</string> - <reference key="NSSuperview" ref="700390299"/> - <reference key="NSNextKeyView" ref="351512146"/> - <object class="NSTextContainer" key="NSTextContainer" id="914646815"> - <object class="NSLayoutManager" key="NSLayoutManager"> - <object class="NSTextStorage" key="NSTextStorage"> - <object class="NSMutableString" key="NSString"> - <characters key="NS.bytes"/> - </object> - <nil key="NSDelegate"/> - </object> - <array class="NSMutableArray" key="NSTextContainers"> - <reference ref="914646815"/> - </array> - <int key="NSLMFlags">166</int> - <nil key="NSDelegate"/> - </object> - <reference key="NSTextView" ref="148817449"/> - <double key="NSWidth">510</double> - <int key="NSTCFlags">1</int> - </object> - <object class="NSTextViewSharedData" key="NSSharedData"> - <int key="NSFlags">10501</int> - <int key="NSTextCheckingTypes">0</int> - <nil key="NSMarkedAttributes"/> - <reference key="NSBackgroundColor" ref="457906098"/> - <dictionary key="NSSelectedAttributes"> - <reference key="NSBackgroundColor" ref="695342849"/> - <reference key="NSColor" ref="294465151"/> - </dictionary> - <reference key="NSInsertionColor" ref="667308713"/> - <dictionary key="NSLinkAttributes"> - <reference key="NSColor" ref="618433734"/> - <reference key="NSCursor" ref="113216199"/> - <integer value="1" key="NSUnderline"/> - </dictionary> - <nil key="NSDefaultParagraphStyle"/> - <nil key="NSTextFinder"/> - <int key="NSPreferredTextFinderStyle">1</int> - </object> - <int key="NSTVFlags">6</int> - <string key="NSMaxSize">{518, 10000000}</string> - <nil key="NSDelegate"/> - </object> - </array> - <string key="NSFrame">{{1, 1}, {510, 90}}</string> - <reference key="NSSuperview" ref="983464860"/> - <reference key="NSNextKeyView" ref="148817449"/> - <reference key="NSDocView" ref="148817449"/> - <reference key="NSBGColor" ref="866033095"/> - <reference key="NSCursor" ref="546590681"/> - <int key="NScvFlags">6</int> - </object> - <object class="NSScroller" id="351512146"> - <reference key="NSNextResponder" ref="983464860"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{1, 119}, {232, 15}}</string> - <reference key="NSSuperview" ref="983464860"/> - <reference key="NSNextKeyView" ref="459608706"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">1</int> - <reference key="NSTarget" ref="983464860"/> - <string key="NSAction">_doScroller:</string> - <double key="NSCurValue">1</double> - </object> - <object class="NSScroller" id="459608706"> - <reference key="NSNextResponder" ref="983464860"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{224, 1}, {15, 127}}</string> - <reference key="NSSuperview" ref="983464860"/> - <reference key="NSNextKeyView" ref="831663923"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <reference key="NSTarget" ref="983464860"/> - <string key="NSAction">_doScroller:</string> - </object> - </array> - <string key="NSFrame">{{20, 21}, {512, 92}}</string> - <reference key="NSSuperview" ref="705697287"/> - <reference key="NSNextKeyView" ref="700390299"/> - <int key="NSsFlags">133682</int> - <reference key="NSVScroller" ref="459608706"/> - <reference key="NSHScroller" ref="351512146"/> - <reference key="NSContentView" ref="700390299"/> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - <object class="NSTextField" id="851365730"> - <reference key="NSNextResponder" ref="705697287"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{17, 115}, {294, 14}}</string> - <reference key="NSSuperview" ref="705697287"/> - <reference key="NSNextKeyView" ref="983464860"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="170918284"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272761856</int> - <string key="NSContents">WHERE query</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="851365730"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="267932131"> - <reference key="NSNextResponder" ref="705697287"/> - <int key="NSvFlags">265</int> - <string key="NSFrame">{{554, 19}, {181, 14}}</string> - <reference key="NSSuperview" ref="705697287"/> - <reference key="NSNextKeyView" ref="888560371"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="869463809"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272761856</int> - <string key="NSContents">LIKE '%@%'</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="267932131"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <object class="NSColor" key="NSTextColor" id="1056897657"> - <int key="NSColorSpace">6</int> - <string key="NSCatalogName">System</string> - <string key="NSColorName">disabledControlTextColor</string> - <object class="NSColor" key="NSColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MC4zMzMzMzMzMzMzAA</bytes> - </object> - </object> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSButton" id="995074970"> - <reference key="NSNextResponder" ref="705697287"/> - <int key="NSvFlags">265</int> - <string key="NSFrame">{{678, 35}, {55, 16}}</string> - <reference key="NSSuperview" ref="705697287"/> - <reference key="NSNextKeyView" ref="267932131"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="756806938"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134479872</int> - <string key="NSContents">Edit</string> - <object class="NSFont" key="NSSupport"> - <bool key="IBIsSystemFont">YES</bool> - <double key="NSSize">9</double> - <int key="NSfFlags">3614</int> - </object> - <reference key="NSControlView" ref="995074970"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">402653313</int> - <object class="NSFont" key="NSAlternateImage"> - <string key="NSName">.LucidaGrandeUI</string> - <double key="NSSize">9</double> - <int key="NSfFlags">16</int> - </object> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">o</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSTextField" id="42463014"> - <reference key="NSNextResponder" ref="705697287"/> - <int key="NSvFlags">265</int> - <string key="NSFrame">{{537, 37}, {137, 14}}</string> - <reference key="NSSuperview" ref="705697287"/> - <reference key="NSNextKeyView" ref="995074970"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="548227039"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272761856</int> - <string key="NSContents">Default operator:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="42463014"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSButton" id="154035357"> - <reference key="NSNextResponder" ref="705697287"/> - <int key="NSvFlags">265</int> - <string key="NSFrame">{{537, 57}, {197, 18}}</string> - <reference key="NSSuperview" ref="705697287"/> - <reference key="NSNextKeyView" ref="42463014"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="459645508"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">131072</int> - <string key="NSContents">Select distinct</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="154035357"/> - <int key="NSButtonFlags">1211912448</int> - <int key="NSButtonFlags2">268435458</int> - <reference key="NSNormalImage" ref="672937012"/> - <reference key="NSAlternateImage" ref="662955722"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">d</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="97861442"> - <reference key="NSNextResponder" ref="705697287"/> - <int key="NSvFlags">265</int> - <string key="NSFrame">{{537, 77}, {197, 18}}</string> - <reference key="NSSuperview" ref="705697287"/> - <reference key="NSNextKeyView" ref="154035357"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="997399969"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">131072</int> - <string key="NSContents">Negate clause</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="97861442"/> - <int key="NSButtonFlags">1211912448</int> - <int key="NSButtonFlags2">268435458</int> - <reference key="NSNormalImage" ref="672937012"/> - <reference key="NSAlternateImage" ref="662955722"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">n</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="831663923"> - <reference key="NSNextResponder" ref="705697287"/> - <int key="NSvFlags">265</int> - <string key="NSFrame">{{537, 97}, {197, 18}}</string> - <reference key="NSSuperview" ref="705697287"/> - <reference key="NSNextKeyView" ref="97861442"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="610378765"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">131072</int> - <string key="NSContents">Search while typing</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="831663923"/> - <int key="NSButtonFlags">1211912448</int> - <int key="NSButtonFlags2">268435458</int> - <reference key="NSNormalImage" ref="672937012"/> - <reference key="NSAlternateImage" ref="662955722"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">t</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - </array> - <string key="NSFrame">{{0, 142}, {752, 135}}</string> - <reference key="NSSuperview" ref="676149810"/> - <reference key="NSNextKeyView" ref="851365730"/> - <bool key="NSDoNotTranslateAutoresizingMask">YES</bool> - <string key="NSClassName">NSView</string> - </object> - </array> - <string key="NSFrame">{{0, 40}, {752, 277}}</string> - <reference key="NSSuperview" ref="1008640892"/> - <reference key="NSNextKeyView" ref="1047499221"/> - <int key="NSDividerStyle">2</int> - </object> - <object class="NSButton" id="311320315"> - <reference key="NSNextResponder" ref="1008640892"/> - <int key="NSvFlags">289</int> - <string key="NSFrame">{{595, 12}, {143, 32}}</string> - <reference key="NSSuperview" ref="1008640892"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="197752703"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">Filter</string> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="311320315"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">268435585</int> - <reference key="NSAlternateImage" ref="959847048"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">f</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="888560371"> - <reference key="NSNextResponder" ref="1008640892"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{14, 12}, {216, 32}}</string> - <reference key="NSSuperview" ref="1008640892"/> - <reference key="NSNextKeyView" ref="567978438"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="902890035"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">Search all fields</string> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="888560371"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">402653313</int> - <reference key="NSAlternateImage" ref="959847048"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">a</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="567978438"> - <reference key="NSNextResponder" ref="1008640892"/> - <int key="NSvFlags">289</int> - <string key="NSFrame">{{452, 12}, {143, 32}}</string> - <reference key="NSSuperview" ref="1008640892"/> - <reference key="NSNextKeyView" ref="311320315"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="1028832092"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">Clear</string> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="567978438"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">268435585</int> - <reference key="NSAlternateImage" ref="959847048"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"></string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - </array> - <string key="NSFrameSize">{752, 317}</string> - <reference key="NSNextKeyView" ref="676149810"/> - </object> - <string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string> - <string key="NSMinSize">{600, 339}</string> - <string key="NSMaxSize">{10000000000000, 10000000000000}</string> - <string key="NSFrameAutosaveName">SPTableFilterPanel</string> - <bool key="NSWindowIsRestorable">YES</bool> - </object> - <object class="NSWindowTemplate" id="926616295"> - <int key="NSWindowStyleMask">1</int> - <int key="NSWindowBacking">2</int> - <string key="NSWindowRect">{{235, 418}, {251, 102}}</string> - <int key="NSWTFlags">1685585920</int> - <string key="NSWindowTitle">Window</string> - <string key="NSWindowClass">NSPanel</string> - <nil key="NSViewClass"/> - <nil key="NSUserInterfaceItemIdentifier"/> - <string key="NSWindowContentMaxSize">{251, 102}</string> - <string key="NSWindowContentMinSize">{251, 102}</string> - <object class="NSView" key="NSWindowView" id="186470798"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSButton" id="702058933"> - <reference key="NSNextResponder" ref="186470798"/> - <int key="NSvFlags">289</int> - <string key="NSFrame">{{140, 13}, {96, 28}}</string> - <reference key="NSSuperview" ref="186470798"/> - <string key="NSHuggingPriority">{250, 750}</string> - <int key="NSTag">1</int> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="725540292"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Save</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="702058933"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">129</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">DQ</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="3117311"> - <reference key="NSNextResponder" ref="186470798"/> - <int key="NSvFlags">257</int> - <string key="NSFrame">{{46, 13}, {96, 28}}</string> - <reference key="NSSuperview" ref="186470798"/> - <reference key="NSNextKeyView" ref="702058933"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="681593820"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Cancel</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="3117311"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">129</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">Gw</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSTextField" id="393328807"> - <reference key="NSNextResponder" ref="186470798"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{17, 76}, {208, 14}}</string> - <reference key="NSSuperview" ref="186470798"/> - <reference key="NSNextKeyView" ref="636956002"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="1047474636"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272761856</int> - <string key="NSContents">Enter Filter Table's Default Operator:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="393328807"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSComboBox" id="636956002"> - <reference key="NSNextResponder" ref="186470798"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{20, 51}, {214, 22}}</string> - <reference key="NSSuperview" ref="186470798"/> - <reference key="NSNextKeyView" ref="167672071"/> - <bool key="NSEnabled">YES</bool> - <object class="NSComboBoxCell" key="NSCell" id="1042029719"> - <int key="NSCellFlags">342884417</int> - <int key="NSCellFlags2">272761856</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="636956002"/> - <bool key="NSDrawsBackground">YES</bool> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - <int key="NSVisibleItemCount">5</int> - <bool key="NSHasVerticalScroller">YES</bool> - <reference key="NSDelegate" ref="636956002"/> - <object class="NSComboTableView" key="NSTableView" id="437114783"> - <reference key="NSNextResponder"/> - <int key="NSvFlags">274</int> - <string key="NSFrameSize">{15, 0}</string> - <reference key="NSSuperview"/> - <reference key="NSWindow"/> - <bool key="NSEnabled">YES</bool> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSControlAllowsExpansionToolTips">YES</bool> - <array class="NSMutableArray" key="NSTableColumns"> - <object class="NSTableColumn"> - <string key="NSIdentifier">0</string> - <double key="NSWidth">12</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">3.4028234663852886e+38</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell"> - <int key="NSCellFlags">337641536</int> - <int key="NSCellFlags2">268437504</int> - <string key="NSContents">Field</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="437114783"/> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <reference key="NSTableView" ref="437114783"/> - </object> - </array> - <double key="NSIntercellSpacingWidth">3</double> - <double key="NSIntercellSpacingHeight">2</double> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSGridColor" ref="88855454"/> - <double key="NSRowHeight">16</double> - <string key="NSAction">tableViewAction:</string> - <int key="NSTvFlags">-767524864</int> - <reference key="NSDelegate" ref="1042029719"/> - <reference key="NSDataSource" ref="1042029719"/> - <reference key="NSTarget" ref="1042029719"/> - <int key="NSColumnAutoresizingStyle">1</int> - <int key="NSDraggingSourceMaskForLocal">-1</int> - <int key="NSDraggingSourceMaskForNonLocal">0</int> - <bool key="NSAllowsTypeSelect">YES</bool> - <int key="NSTableViewDraggingDestinationStyle">0</int> - <int key="NSTableViewGroupRowStyle">1</int> - </object> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSButton" id="167672071"> - <reference key="NSNextResponder" ref="186470798"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{17, 14}, {25, 25}}</string> - <reference key="NSSuperview" ref="186470798"/> - <reference key="NSNextKeyView" ref="3117311"/> - <string key="NSHuggingPriority">{750, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="484537136"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="167672071"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">161</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - </array> - <string key="NSFrameSize">{251, 102}</string> - <reference key="NSNextKeyView" ref="393328807"/> - </object> - <string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string> - <string key="NSMinSize">{251, 124}</string> - <string key="NSMaxSize">{251, 124}</string> - <bool key="NSWindowIsRestorable">YES</bool> - </object> - <object class="NSWindowTemplate" id="446142676"> - <int key="NSWindowStyleMask">9</int> - <int key="NSWindowBacking">2</int> - <string key="NSWindowRect">{{343, 488}, {260, 127}}</string> - <int key="NSWTFlags">1886912512</int> - <string key="NSWindowTitle">Query Favorite Sheet</string> - <string key="NSWindowClass">NSPanel</string> - <nil key="NSViewClass"/> - <nil key="NSUserInterfaceItemIdentifier"/> - <string key="NSWindowContentMaxSize">{600, 127}</string> - <string key="NSWindowContentMinSize">{260, 127}</string> - <object class="NSView" key="NSWindowView" id="973326234"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextField" id="942662929"> - <reference key="NSNextResponder" ref="973326234"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{17, 93}, {225, 14}}</string> - <reference key="NSSuperview" ref="973326234"/> - <reference key="NSNextKeyView" ref="852380709"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="833672543"> - <int key="NSCellFlags">67108928</int> - <int key="NSCellFlags2">4196864</int> - <string key="NSContents">Query Name:</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="942662929"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="852380709"> - <reference key="NSNextResponder" ref="973326234"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{19, 67}, {220, 18}}</string> - <reference key="NSSuperview" ref="973326234"/> - <reference key="NSNextKeyView" ref="762101746"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="685985166"> - <int key="NSCellFlags">-1804599231</int> - <int key="NSCellFlags2">4326464</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="852380709"/> - <bool key="NSDrawsBackground">YES</bool> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="52640137"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSButton" id="119248743"> - <reference key="NSNextResponder" ref="973326234"/> - <int key="NSvFlags">289</int> - <string key="NSFrame">{{150, 13}, {94, 28}}</string> - <reference key="NSSuperview" ref="973326234"/> - <string key="NSHuggingPriority">{250, 750}</string> - <int key="NSTag">1</int> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="1066598212"> - <int key="NSCellFlags">603979776</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Save</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="119248743"/> - <int key="NSTag">1</int> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">DQ</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="574616393"> - <reference key="NSNextResponder" ref="973326234"/> - <int key="NSvFlags">292</int> - <string key="NSFrame">{{14, 13}, {99, 28}}</string> - <reference key="NSSuperview" ref="973326234"/> - <reference key="NSNextKeyView" ref="119248743"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="228167501"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Cancel</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="574616393"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">1</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">Gw</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="762101746"> - <reference key="NSNextResponder" ref="973326234"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{18, 43}, {224, 18}}</string> - <reference key="NSSuperview" ref="973326234"/> - <reference key="NSNextKeyView" ref="574616393"/> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="57520373"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">131072</int> - <string key="NSContents">Save globally</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="762101746"/> - <int key="NSButtonFlags">1211912448</int> - <int key="NSButtonFlags2">2</int> - <reference key="NSNormalImage" ref="672937012"/> - <reference key="NSAlternateImage" ref="662955722"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - </array> - <string key="NSFrameSize">{260, 127}</string> - <reference key="NSNextKeyView" ref="942662929"/> - </object> - <string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string> - <string key="NSMinSize">{260, 149}</string> - <string key="NSMaxSize">{600, 149}</string> - <bool key="NSWindowIsRestorable">YES</bool> - </object> - <object class="NSWindowTemplate" id="14157748"> - <int key="NSWindowStyleMask">17</int> - <int key="NSWindowBacking">2</int> - <string key="NSWindowRect">{{196, 360}, {338, 150}}</string> - <int key="NSWTFlags">-201325568</int> - <string key="NSWindowTitle">Secure Text Input Sheet</string> - <string key="NSWindowClass">NSPanel</string> - <nil key="NSViewClass"/> - <nil key="NSUserInterfaceItemIdentifier"/> - <object class="NSView" key="NSWindowView" id="819636044"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSButton" id="415521383"> - <reference key="NSNextResponder" ref="819636044"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{228, 12}, {96, 32}}</string> - <reference key="NSSuperview" ref="819636044"/> - <string key="NSHuggingPriority">{250, 750}</string> - <int key="NSTag">1</int> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="354195963"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">OK</string> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="415521383"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">129</int> - <reference key="NSAlternateImage" ref="959847048"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">DQ</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSButton" id="910916197"> - <reference key="NSNextResponder" ref="819636044"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{132, 12}, {96, 32}}</string> - <reference key="NSSuperview" ref="819636044"/> - <reference key="NSNextKeyView" ref="415521383"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="974257607"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134217728</int> - <string key="NSContents">Cancel</string> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="910916197"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">129</int> - <reference key="NSAlternateImage" ref="959847048"/> - <string key="NSAlternateContents"/> - <string type="base64-UTF8" key="NSKeyEquivalent">Gw</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSSecureTextField" id="205502925"> - <reference key="NSNextResponder" ref="819636044"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{20, 60}, {298, 22}}</string> - <reference key="NSSuperview" ref="819636044"/> - <reference key="NSNextKeyView" ref="910916197"/> - <bool key="NSEnabled">YES</bool> - <object class="NSSecureTextFieldCell" key="NSCell" id="529004113"> - <int key="NSCellFlags">342884417</int> - <int key="NSCellFlags2">272630848</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="205502925"/> - <bool key="NSDrawsBackground">YES</bool> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="52640137"/> - <array key="NSAllowedInputLocales"> - <string>NSAllRomanInputSourcesLocaleIdentifier</string> - </array> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="767030531"> - <reference key="NSNextResponder" ref="819636044"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{17, 113}, {304, 17}}</string> - <reference key="NSSuperview" ref="819636044"/> - <reference key="NSNextKeyView" ref="688538104"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="101946838"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272630784</int> - <string key="NSContents">Label</string> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="767030531"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - <object class="NSTextField" id="688538104"> - <reference key="NSNextResponder" ref="819636044"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{17, 90}, {304, 14}}</string> - <reference key="NSSuperview" ref="819636044"/> - <reference key="NSNextKeyView" ref="205502925"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="851535954"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272761856</int> - <string key="NSContents">Label</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="688538104"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrameSize">{338, 150}</string> - <reference key="NSNextKeyView" ref="767030531"/> - </object> - <string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string> - <string key="NSMaxSize">{10000000000000, 10000000000000}</string> - <bool key="NSWindowIsRestorable">YES</bool> - </object> - <object class="NSCustomView" id="473434057"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">301</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSPopUpButton" id="688363677"> - <reference key="NSNextResponder" ref="473434057"/> - <int key="NSvFlags">298</int> - <string key="NSFrame">{{0, 3}, {200, 26}}</string> - <reference key="NSSuperview" ref="473434057"/> - <reference key="NSNextKeyView" ref="488920219"/> - <bool key="NSEnabled">YES</bool> - <object class="NSPopUpButtonCell" key="NSCell" id="627468414"> - <int key="NSCellFlags">-2076180416</int> - <int key="NSCellFlags2">134219776</int> - <reference key="NSSupport" ref="513227961"/> - <reference key="NSControlView" ref="688363677"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">35</int> - <object class="NSFont" key="NSAlternateImage"> - <string key="NSName">.LucidaGrandeUI</string> - <double key="NSSize">12</double> - <int key="NSfFlags">16</int> - </object> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - <object class="NSMenuItem" key="NSMenuItem" id="786224119"> - <reference key="NSMenu" ref="731000119"/> - <string key="NSTitle">Choose Database...</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">1048576</int> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="627468414"/> - </object> - <bool key="NSMenuItemRespectAlignment">YES</bool> - <object class="NSMenu" key="NSMenu" id="731000119"> - <string key="NSTitle">OtherViews</string> - <array class="NSMutableArray" key="NSMenuItems"> - <reference ref="786224119"/> - <object class="NSMenuItem" id="560134855"> - <reference key="NSMenu" ref="731000119"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="627468414"/> - </object> - <object class="NSMenuItem" id="1004711405"> - <reference key="NSMenu" ref="731000119"/> - <string key="NSTitle">Add Database…</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="627468414"/> - </object> - <object class="NSMenuItem" id="964448367"> - <reference key="NSMenu" ref="731000119"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <int key="NSState">1</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">_popUpItemAction:</string> - <reference key="NSTarget" ref="627468414"/> - </object> - </array> - </object> - <int key="NSPreferredEdge">1</int> - <bool key="NSUsesItemFromMenu">YES</bool> - <bool key="NSAltersState">YES</bool> - <int key="NSArrowPosition">2</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSSegmentedControl" id="488920219"> - <reference key="NSNextResponder" ref="473434057"/> - <int key="NSvFlags">301</int> - <string key="NSFrame">{{208, 3}, {57, 25}}</string> - <reference key="NSSuperview" ref="473434057"/> - <bool key="NSEnabled">YES</bool> - <object class="NSSegmentedCell" key="NSCell" id="621744750"> - <int key="NSCellFlags">75497472</int> - <int key="NSCellFlags2">0</int> - <reference key="NSSupport" ref="71602814"/> - <reference key="NSControlView" ref="488920219"/> - <array class="NSMutableArray" key="NSSegmentImages"> - <object class="NSSegmentItem"> - <double key="NSSegmentItemWidth">27</double> - <object class="NSCustomResource" key="NSSegmentItemImage"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">NSGoLeftTemplate</string> - </object> - <string key="NSSegmentItemLabel"/> - <string key="NSSegmentItemTooltip">Back</string> - <bool key="NSSegmentItemDisabled">YES</bool> - <int key="NSSegmentItemImageScaling">0</int> - </object> - <object class="NSSegmentItem"> - <double key="NSSegmentItemWidth">27</double> - <object class="NSCustomResource" key="NSSegmentItemImage"> - <string key="NSClassName">NSImage</string> - <string key="NSResourceName">NSGoRightTemplate</string> - </object> - <string key="NSSegmentItemLabel"/> - <string key="NSSegmentItemTooltip">Forward</string> - <int key="NSSegmentItemTag">1</int> - <bool key="NSSegmentItemDisabled">YES</bool> - <int key="NSSegmentItemImageScaling">0</int> - </object> - </array> - <int key="NSSelectedSegment">-1</int> - <int key="NSTrackingMode">2</int> - <int key="NSSegmentStyle">4</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - </array> - <string key="NSFrameSize">{269, 32}</string> - <reference key="NSNextKeyView" ref="688363677"/> - <string key="NSClassName">NSView</string> - </object> - <object class="NSCustomView" id="938785731"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">265</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSImageView" id="742507626"> - <reference key="NSNextResponder" ref="938785731"/> - <int key="NSvFlags">265</int> - <set class="NSMutableSet" key="NSDragTypes"> - <string>Apple PDF pasteboard type</string> - <string>Apple PICT pasteboard type</string> - <string>Apple PNG pasteboard type</string> - <string>NSFilenamesPboardType</string> - <string>NeXT Encapsulated PostScript v1.2 pasteboard type</string> - <string>NeXT TIFF v4.0 pasteboard type</string> - </set> - <string key="NSFrame">{{5, -2}, {101, 22}}</string> - <reference key="NSSuperview" ref="938785731"/> - <bool key="NSEnabled">YES</bool> - <object class="NSImageCell" key="NSCell" id="513736703"> - <int key="NSCellFlags">0</int> - <int key="NSCellFlags2">33554432</int> - <int key="NSAlign">8</int> - <int key="NSScale">0</int> - <int key="NSStyle">0</int> - <bool key="NSAnimates">YES</bool> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSEditable">YES</bool> - </object> - <object class="NSTextField" id="601040667"> - <reference key="NSNextResponder" ref="938785731"/> - <int key="NSvFlags">258</int> - <string key="NSFrame">{{2, 2}, {105, 14}}</string> - <reference key="NSSuperview" ref="938785731"/> - <reference key="NSNextKeyView" ref="742507626"/> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="958314885"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">71435264</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="601040667"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="1056897657"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrameSize">{110, 20}</string> - <reference key="NSNextKeyView" ref="601040667"/> - <string key="NSClassName">NSView</string> - </object> - <object class="NSCustomView" id="51514705"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">268</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSButton" id="229355777"> - <reference key="NSNextResponder" ref="51514705"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{270, -32}, {58, 28}}</string> - <reference key="NSSuperview" ref="51514705"/> - <string key="NSHuggingPriority">{250, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSButtonCell" key="NSCell" id="121939811"> - <int key="NSCellFlags">67108864</int> - <int key="NSCellFlags2">134348800</int> - <string key="NSContents">Copy</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="229355777"/> - <int key="NSButtonFlags">-2038284288</int> - <int key="NSButtonFlags2">268435585</int> - <reference key="NSAlternateImage" ref="155126620"/> - <string key="NSAlternateContents"/> - <string key="NSKeyEquivalent">c</string> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - </object> - <object class="NSScrollView" id="1060011970"> - <reference key="NSNextResponder" ref="51514705"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="444842512"> - <reference key="NSNextResponder" ref="1060011970"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTableView" id="665534268"> - <reference key="NSNextResponder" ref="444842512"/> - <int key="NSvFlags">256</int> - <string key="NSFrameSize">{358, 139}</string> - <reference key="NSSuperview" ref="444842512"/> - <reference key="NSNextKeyView" ref="55223527"/> - <bool key="NSEnabled">YES</bool> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <bool key="NSControlAllowsExpansionToolTips">YES</bool> - <object class="NSTableHeaderView" key="NSHeaderView" id="811925718"> - <reference key="NSNextResponder" ref="866310779"/> - <int key="NSvFlags">256</int> - <string key="NSFrameSize">{358, 17}</string> - <reference key="NSSuperview" ref="866310779"/> - <reference key="NSNextKeyView" ref="444842512"/> - <reference key="NSTableView" ref="665534268"/> - </object> - <object class="_NSCornerView" key="NSCornerView" id="55223527"> - <reference key="NSNextResponder" ref="1060011970"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrameSize">{15, 20}</string> - <reference key="NSSuperview" ref="1060011970"/> - <reference key="NSNextKeyView" ref="866310779"/> - </object> - <array class="NSMutableArray" key="NSTableColumns"> - <object class="NSTableColumn" id="851816083"> - <string key="NSIdentifier">table_name</string> - <double key="NSWidth">101</double> - <double key="NSMinWidth">40</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Item</string> - <reference key="NSSupport" ref="26"/> - <object class="NSColor" key="NSBackgroundColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MC4zMzMzMzI5ODU2AA</bytes> - </object> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="547524746"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="665534268"/> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <reference key="NSTableView" ref="665534268"/> - </object> - <object class="NSTableColumn" id="783270339"> - <string key="NSIdentifier">msg_status</string> - <double key="NSWidth">69</double> - <double key="NSMinWidth">40</double> - <double key="NSMaxWidth">1000</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <object class="NSColor" key="NSBackgroundColor"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MC4zMzMzMzI5ODU2AA</bytes> - </object> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="923576592"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="665534268"/> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <reference key="NSTableView" ref="665534268"/> - </object> - <object class="NSTableColumn" id="1000908373"> - <string key="NSIdentifier">msg_text</string> - <double key="NSWidth">179</double> - <double key="NSMinWidth">10</double> - <double key="NSMaxWidth">3.4028234663852886e+38</double> - <object class="NSTableHeaderCell" key="NSHeaderCell"> - <int key="NSCellFlags">75497536</int> - <int key="NSCellFlags2">2048</int> - <string key="NSContents">Message</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSBackgroundColor" ref="110037201"/> - <reference key="NSTextColor" ref="770393381"/> - </object> - <object class="NSTextFieldCell" key="NSDataCell" id="193926016"> - <int key="NSCellFlags">337641537</int> - <int key="NSCellFlags2">133120</int> - <string key="NSContents">Text Cell</string> - <reference key="NSSupport" ref="26"/> - <reference key="NSControlView" ref="665534268"/> - <reference key="NSBackgroundColor" ref="866033095"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <int key="NSResizingMask">3</int> - <bool key="NSIsResizeable">YES</bool> - <reference key="NSTableView" ref="665534268"/> - </object> - </array> - <double key="NSIntercellSpacingWidth">3</double> - <double key="NSIntercellSpacingHeight">2</double> - <object class="NSColor" key="NSBackgroundColor"> - <int key="NSColorSpace">6</int> - <string key="NSCatalogName">System</string> - <string key="NSColorName">_sourceListBackgroundColor</string> - <reference key="NSColor" ref="881210219"/> - </object> - <reference key="NSGridColor" ref="88855454"/> - <double key="NSRowHeight">14</double> - <int key="NSTvFlags">1925185536</int> - <reference key="NSDelegate"/> - <reference key="NSDataSource"/> - <int key="NSGridStyleMask">1</int> - <int key="NSColumnAutoresizingStyle">4</int> - <int key="NSDraggingSourceMaskForLocal">-1</int> - <int key="NSDraggingSourceMaskForNonLocal">0</int> - <bool key="NSAllowsTypeSelect">YES</bool> - <int key="NSTableViewSelectionHighlightStyle">1</int> - <int key="NSTableViewDraggingDestinationStyle">1</int> - <int key="NSTableViewGroupRowStyle">1</int> - </object> - </array> - <string key="NSFrame">{{1, 17}, {358, 139}}</string> - <reference key="NSSuperview" ref="1060011970"/> - <reference key="NSNextKeyView" ref="665534268"/> - <reference key="NSDocView" ref="665534268"/> - <reference key="NSBGColor" ref="866033095"/> - <int key="NScvFlags">4</int> - </object> - <object class="NSClipView" id="866310779"> - <reference key="NSNextResponder" ref="1060011970"/> - <int key="NSvFlags">2338</int> - <array class="NSMutableArray" key="NSSubviews"> - <reference ref="811925718"/> - </array> - <string key="NSFrame">{{1, 0}, {358, 17}}</string> - <reference key="NSSuperview" ref="1060011970"/> - <reference key="NSNextKeyView" ref="811925718"/> - <reference key="NSDocView" ref="811925718"/> - </object> - <object class="NSScroller" id="229681740"> - <reference key="NSNextResponder" ref="1060011970"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{344, 17}, {15, 102}}</string> - <reference key="NSSuperview" ref="1060011970"/> - <reference key="NSNextKeyView" ref="633820164"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <reference key="NSTarget" ref="1060011970"/> - <string key="NSAction">_doScroller:</string> - </object> - <object class="NSScroller" id="633820164"> - <reference key="NSNextResponder" ref="1060011970"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{1, 119}, {344, 15}}</string> - <reference key="NSSuperview" ref="1060011970"/> - <reference key="NSNextKeyView" ref="229355777"/> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">1</int> - <reference key="NSTarget" ref="1060011970"/> - <string key="NSAction">_doScroller:</string> - <double key="NSCurValue">1</double> - </object> - <reference ref="55223527"/> - </array> - <string key="NSFrameSize">{360, 157}</string> - <reference key="NSSuperview" ref="51514705"/> - <reference key="NSNextKeyView" ref="444842512"/> - <int key="NSsFlags">133682</int> - <reference key="NSVScroller" ref="229681740"/> - <reference key="NSHScroller" ref="633820164"/> - <reference key="NSContentView" ref="444842512"/> - <reference key="NSHeaderClipView" ref="866310779"/> - <bytes key="NSScrollAmts">QSAAAEEgAABBgAAAQYAAAA</bytes> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - </array> - <string key="NSFrameSize">{360, 157}</string> - <reference key="NSNextKeyView" ref="1060011970"/> - <string key="NSClassName">NSView</string> - </object> - <object class="NSCustomView" id="979594791"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">4364</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSSearchField" id="129264151"> - <reference key="NSNextResponder" ref="979594791"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{20, 1}, {176, 19}}</string> - <reference key="NSSuperview" ref="979594791"/> - <bool key="NSEnabled">YES</bool> - <object class="NSSearchFieldCell" key="NSCell" id="502741268"> - <int key="NSCellFlags">342884417</int> - <int key="NSCellFlags2">272794688</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <string key="NSPlaceholderString">Filter</string> - <reference key="NSControlView" ref="129264151"/> - <int key="NSTextBezelStyle">1</int> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - <object class="NSButtonCell" key="NSSearchButtonCell"> - <int key="NSCellFlags">0</int> - <int key="NSCellFlags2">0</int> - <string key="NSContents">search</string> - <reference key="NSControlView" ref="129264151"/> - <string key="NSAction">_searchFieldSearch:</string> - <reference key="NSTarget" ref="502741268"/> - <int key="NSButtonFlags">138690560</int> - <int key="NSButtonFlags2">0</int> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <object class="NSButtonCell" key="NSCancelButtonCell"> - <int key="NSCellFlags">-2147483648</int> - <int key="NSCellFlags2">0</int> - <string key="NSContents">clear</string> - <array class="NSMutableArray" key="NSAccessibilityOverriddenAttributes"> - <dictionary class="NSMutableDictionary"> - <string key="AXDescription">cancel</string> - <integer value="1" key="NSAccessibilityEncodedAttributesValueType"/> - </dictionary> - </array> - <string key="NSAction">_searchFieldCancel:</string> - <reference key="NSTarget" ref="502741268"/> - <int key="NSButtonFlags">138428416</int> - <int key="NSButtonFlags2">0</int> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <string key="NSRecentsAutosaveName">SPQueryFavoriteSearchField</string> - <int key="NSMaximumRecents">10</int> - <bytes key="NSSearchFieldFlags">CAAAAA</bytes> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrameSize">{217, 20}</string> - <reference key="NSNextKeyView" ref="129264151"/> - <string key="NSClassName">NSView</string> - </object> - <object class="NSCustomView" id="758231677"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">4364</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSSearchField" id="248511894"> - <reference key="NSNextResponder" ref="758231677"/> - <int key="NSvFlags">268</int> - <string key="NSFrame">{{20, 1}, {176, 19}}</string> - <reference key="NSSuperview" ref="758231677"/> - <bool key="NSEnabled">YES</bool> - <object class="NSSearchFieldCell" key="NSCell" id="3613839"> - <int key="NSCellFlags">342884417</int> - <int key="NSCellFlags2">272794688</int> - <string key="NSContents"/> - <reference key="NSSupport" ref="26"/> - <string key="NSPlaceholderString">Filter</string> - <reference key="NSControlView" ref="248511894"/> - <int key="NSTextBezelStyle">1</int> - <reference key="NSBackgroundColor" ref="812613095"/> - <reference key="NSTextColor" ref="667308713"/> - <object class="NSButtonCell" key="NSSearchButtonCell"> - <int key="NSCellFlags">0</int> - <int key="NSCellFlags2">0</int> - <string key="NSContents">search</string> - <reference key="NSControlView" ref="248511894"/> - <string key="NSAction">_searchFieldSearch:</string> - <reference key="NSTarget" ref="3613839"/> - <int key="NSButtonFlags">138690560</int> - <int key="NSButtonFlags2">0</int> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <object class="NSButtonCell" key="NSCancelButtonCell"> - <int key="NSCellFlags">-2147483648</int> - <int key="NSCellFlags2">0</int> - <string key="NSContents">clear</string> - <array class="NSMutableArray" key="NSAccessibilityOverriddenAttributes"> - <dictionary class="NSMutableDictionary"> - <string key="AXDescription">cancel</string> - <integer value="1" key="NSAccessibilityEncodedAttributesValueType"/> - </dictionary> - </array> - <string key="NSAction">_searchFieldCancel:</string> - <reference key="NSTarget" ref="3613839"/> - <int key="NSButtonFlags">138428416</int> - <int key="NSButtonFlags2">0</int> - <string key="NSKeyEquivalent"/> - <int key="NSPeriodicDelay">400</int> - <int key="NSPeriodicInterval">75</int> - </object> - <string key="NSRecentsAutosaveName">SPQueryHistorySearchField</string> - <int key="NSMaximumRecents">10</int> - <bytes key="NSSearchFieldFlags">CAAAAA</bytes> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrameSize">{217, 20}</string> - <reference key="NSNextKeyView" ref="248511894"/> - <string key="NSClassName">NSView</string> - </object> - <object class="NSUserDefaultsController" id="839838102"> - <bool key="NSSharedInstance">YES</bool> - </object> - <object class="NSCustomObject" id="227061690"> - <string key="NSClassName">SPCustomQuery</string> - </object> - <object class="NSCustomObject" id="62480485"> - <string key="NSClassName">SPTableContent</string> - </object> - <object class="NSCustomObject" id="174325282"> - <string key="NSClassName">SPTableContentFilterController</string> - </object> - <object class="NSCustomObject" id="326640712"> - <string key="NSClassName">SPDataImport</string> - </object> - <object class="NSCustomObject" id="421424376"> - <string key="NSClassName">SPTablesList</string> - </object> - <object class="NSCustomObject" id="239767357"> - <string key="NSClassName">SPTableStructure</string> - </object> - <object class="NSCustomObject" id="269913528"> - <string key="NSClassName">SPExtendedTableInfo</string> - </object> - <object class="NSCustomObject" id="292161225"> - <string key="NSClassName">SPTableRelations</string> - </object> - <object class="NSCustomObject" id="232491680"> - <string key="NSClassName">SPTableTriggers</string> - </object> - <object class="NSCustomObject" id="188482031"> - <string key="NSClassName">SPTableInfo</string> - </object> - <object class="NSCustomObject" id="679691016"> - <string key="NSClassName">SPTableData</string> - </object> - <object class="NSCustomObject" id="143617304"> - <string key="NSClassName">SPExportController</string> - </object> - <object class="NSCustomObject" id="92105597"> - <string key="NSClassName">SPDatabaseData</string> - </object> - <object class="NSCustomObject" id="588458816"> - <string key="NSClassName">SPHistoryController</string> - </object> - <object class="NSCustomObject" id="298287912"> - <string key="NSClassName">SPIndexesController</string> - </object> - <object class="NSMenu" id="446589600"> - <string key="NSTitle"/> - <array class="NSMutableArray" key="NSMenuItems"> - <object class="NSMenuItem" id="207266527"> - <reference key="NSMenu" ref="446589600"/> - <string key="NSTitle">Rename Table...</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="917440216"> - <reference key="NSMenu" ref="446589600"/> - <string key="NSTitle">Duplicate Table...</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="717548863"> - <reference key="NSMenu" ref="446589600"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="675484094"> - <reference key="NSMenu" ref="446589600"/> - <string key="NSTitle">Truncate Table...</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="449076852"> - <reference key="NSMenu" ref="446589600"/> - <string key="NSTitle">Remove Table...</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="854596635"> - <reference key="NSMenu" ref="446589600"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="53213476"> - <reference key="NSMenu" ref="446589600"/> - <string key="NSTitle">Open Table in New Tab</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="277343222"> - <reference key="NSMenu" ref="446589600"/> - <bool key="NSIsAlternate">YES</bool> - <string key="NSTitle">Open Table in New Window</string> - <string key="NSKeyEquiv"/> - <int key="NSKeyEquivModMask">524288</int> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="993733929"> - <reference key="NSMenu" ref="446589600"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="50371646"> - <reference key="NSMenu" ref="446589600"/> - <string key="NSTitle">Export</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <string key="NSAction">submenuAction:</string> - <reference key="NSTarget" ref="1068146938"/> - <object class="NSMenu" key="NSSubmenu" id="1068146938"> - <string key="NSTitle">Export</string> - <array class="NSMutableArray" key="NSMenuItems"> - <object class="NSMenuItem" id="91510864"> - <reference key="NSMenu" ref="1068146938"/> - <string key="NSTitle">As SQL dump...</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="647331108"> - <reference key="NSMenu" ref="1068146938"/> - <string key="NSTitle">As CSV file...</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <int key="NSTag">1</int> - </object> - <object class="NSMenuItem" id="864241427"> - <reference key="NSMenu" ref="1068146938"/> - <string key="NSTitle">As XML file...</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <int key="NSTag">2</int> - </object> - </array> - </object> - </object> - <object class="NSMenuItem" id="540586716"> - <reference key="NSMenu" ref="446589600"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="203930795"> - <reference key="NSMenu" ref="446589600"/> - <string key="NSTitle">Show Create Table Syntax...</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="545888363"> - <reference key="NSMenu" ref="446589600"/> - <string key="NSTitle">Copy Create Table Syntax</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - </array> - </object> - <object class="NSMenu" id="419134222"> - <string key="NSTitle"/> - <array class="NSMutableArray" key="NSMenuItems"> - <object class="NSMenuItem" id="1064723396"> - <reference key="NSMenu" ref="419134222"/> - <string key="NSTitle">Delete Index</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="45595957"> - <reference key="NSMenu" ref="419134222"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="211721936"> - <reference key="NSMenu" ref="419134222"/> - <string key="NSTitle">Reset AUTO_INCREMENT…</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <int key="NSTag">1</int> - </object> - </array> - </object> - <object class="NSMenu" id="283763973"> - <string key="NSTitle"/> - <array class="NSMutableArray" key="NSMenuItems"> - <object class="NSMenuItem" id="937683083"> - <reference key="NSMenu" ref="283763973"/> - <string key="NSTitle">Delete Field</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="592490673"> - <reference key="NSMenu" ref="283763973"/> - <string key="NSTitle">Duplicate Field</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="379635614"> - <reference key="NSMenu" ref="283763973"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="1028902187"> - <reference key="NSMenu" ref="283763973"/> - <string key="NSTitle">Show Optimized Field Type</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - </array> - </object> - <object class="NSMenu" id="199906040"> - <string key="NSTitle"/> - <array class="NSMutableArray" key="NSMenuItems"> - <object class="NSMenuItem" id="146436681"> - <reference key="NSMenu" ref="199906040"/> - <string key="NSTitle">Copy</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <int key="NSTag">2001</int> - </object> - <object class="NSMenuItem" id="782999991"> - <reference key="NSMenu" ref="199906040"/> - <string key="NSTitle">Copy with Column Names</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <int key="NSTag">2002</int> - </object> - <object class="NSMenuItem" id="484791236"> - <reference key="NSMenu" ref="199906040"/> - <string key="NSTitle">Copy as SQL INSERT</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <int key="NSTag">2003</int> - </object> - <object class="NSMenuItem" id="598597685"> - <reference key="NSMenu" ref="199906040"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="441331289"> - <reference key="NSMenu" ref="199906040"/> - <string key="NSTitle">Add New Row</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="802401895"> - <reference key="NSMenu" ref="199906040"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="817183249"> - <reference key="NSMenu" ref="199906040"/> - <string key="NSTitle">Duplicate Row</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="868170049"> - <reference key="NSMenu" ref="199906040"/> - <string key="NSTitle">Delete Row</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - </array> - </object> - <object class="NSMenu" id="112420931"> - <string key="NSTitle"/> - <array class="NSMutableArray" key="NSMenuItems"> - <object class="NSMenuItem" id="101703911"> - <reference key="NSMenu" ref="112420931"/> - <string key="NSTitle">Copy</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <int key="NSTag">2001</int> - </object> - <object class="NSMenuItem" id="690895394"> - <reference key="NSMenu" ref="112420931"/> - <string key="NSTitle">Copy with Column Names</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <int key="NSTag">2002</int> - </object> - <object class="NSMenuItem" id="444231487"> - <reference key="NSMenu" ref="112420931"/> - <string key="NSTitle">Copy as SQL INSERT</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - <int key="NSTag">2003</int> - </object> - <object class="NSMenuItem" id="175357598"> - <reference key="NSMenu" ref="112420931"/> - <bool key="NSIsDisabled">YES</bool> - <bool key="NSIsSeparator">YES</bool> - <bool key="NSIsHidden">YES</bool> - <string key="NSTitle"/> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="769512971"> - <reference key="NSMenu" ref="112420931"/> - <bool key="NSIsHidden">YES</bool> - <string key="NSTitle">Delete Row</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - </array> - </object> - <object class="NSMenu" id="972301077"> - <string key="NSTitle"/> - <array class="NSMutableArray" key="NSMenuItems"> - <object class="NSMenuItem" id="856127754"> - <reference key="NSMenu" ref="972301077"/> - <string key="NSTitle">Delete Relation</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - </array> - </object> - <object class="NSMenu" id="673337099"> - <string key="NSTitle"/> - <array class="NSMutableArray" key="NSMenuItems"> - <object class="NSMenuItem" id="964663133"> - <reference key="NSMenu" ref="673337099"/> - <string key="NSTitle">Edit Trigger</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - <object class="NSMenuItem" id="901373201"> - <reference key="NSMenu" ref="673337099"/> - <string key="NSTitle">Delete Trigger</string> - <string key="NSKeyEquiv"/> - <int key="NSMnemonicLoc">2147483647</int> - <reference key="NSOnImage" ref="803427867"/> - <reference key="NSMixedImage" ref="245717585"/> - </object> - </array> - </object> - <object class="NSCustomView" id="419216241"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">268</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSScrollView" id="773336919"> - <reference key="NSNextResponder" ref="419216241"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="554327629"> - <reference key="NSNextResponder" ref="773336919"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextView" id="167869478"> - <reference key="NSNextResponder" ref="554327629"/> - <int key="NSvFlags">2322</int> - <string key="NSFrameSize">{392, 110}</string> - <reference key="NSSuperview" ref="554327629"/> - <reference key="NSNextKeyView" ref="430345086"/> - <string key="NSReuseIdentifierKey">_NS:13</string> - <object class="NSTextContainer" key="NSTextContainer" id="246326547"> - <object class="NSLayoutManager" key="NSLayoutManager"> - <object class="NSTextStorage" key="NSTextStorage"> - <object class="NSMutableString" key="NSString"> - <characters key="NS.bytes"/> - </object> - <nil key="NSDelegate"/> - </object> - <array class="NSMutableArray" key="NSTextContainers"> - <reference ref="246326547"/> - </array> - <int key="NSLMFlags">166</int> - <nil key="NSDelegate"/> - </object> - <reference key="NSTextView" ref="167869478"/> - <double key="NSWidth">392</double> - <int key="NSTCFlags">1</int> - </object> - <object class="NSTextViewSharedData" key="NSSharedData"> - <int key="NSFlags">16912129</int> - <int key="NSTextCheckingTypes">0</int> - <nil key="NSMarkedAttributes"/> - <reference key="NSBackgroundColor" ref="457906098"/> - <dictionary key="NSSelectedAttributes"> - <reference key="NSBackgroundColor" ref="695342849"/> - <reference key="NSColor" ref="294465151"/> - </dictionary> - <reference key="NSInsertionColor" ref="667308713"/> - <dictionary key="NSLinkAttributes"> - <reference key="NSColor" ref="618433734"/> - <reference key="NSCursor" ref="113216199"/> - <integer value="1" key="NSUnderline"/> - </dictionary> - <nil key="NSDefaultParagraphStyle"/> - <nil key="NSTextFinder"/> - <int key="NSPreferredTextFinderStyle">0</int> - </object> - <int key="NSTVFlags">6</int> - <string key="NSMaxSize">{463, 10000000}</string> - <nil key="NSDelegate"/> - </object> - </array> - <string key="NSFrame">{{1, 1}, {392, 110}}</string> - <reference key="NSSuperview" ref="773336919"/> - <reference key="NSNextKeyView" ref="167869478"/> - <string key="NSReuseIdentifierKey">_NS:11</string> - <reference key="NSDocView" ref="167869478"/> - <reference key="NSBGColor" ref="457906098"/> - <object class="NSCursor" key="NSCursor"> - <string key="NSHotSpot">{4, 5}</string> - <object class="NSImage" key="NSImage"> - <int key="NSImageFlags">12582912</int> - <array class="NSMutableArray" key="NSReps"> - <array> - <integer value="0"/> - <object class="NSBitmapImageRep"> - <object class="NSData" key="NSTIFFRepresentation"> - <bytes key="NS.bytes">TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes> - </object> - </object> - </array> - </array> - <object class="NSColor" key="NSColor" id="114175458"> - <int key="NSColorSpace">3</int> - <bytes key="NSWhite">MCAwAA</bytes> - </object> - </object> - </object> - <int key="NScvFlags">4</int> - </object> - <object class="NSScroller" id="14611541"> - <reference key="NSNextResponder" ref="773336919"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{244, 1}, {15, 76}}</string> - <reference key="NSSuperview" ref="773336919"/> - <string key="NSReuseIdentifierKey">_NS:85</string> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <reference key="NSTarget" ref="773336919"/> - <string key="NSAction">_doScroller:</string> - <double key="NSCurValue">1</double> - <double key="NSPercent">0.85256409645080566</double> - </object> - <object class="NSScroller" id="430345086"> - <reference key="NSNextResponder" ref="773336919"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{-100, -100}, {87, 18}}</string> - <reference key="NSSuperview" ref="773336919"/> - <reference key="NSNextKeyView" ref="554327629"/> - <string key="NSReuseIdentifierKey">_NS:33</string> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">1</int> - <reference key="NSTarget" ref="773336919"/> - <string key="NSAction">_doScroller:</string> - <double key="NSCurValue">1</double> - <double key="NSPercent">0.94565218687057495</double> - </object> - </array> - <string key="NSFrame">{{1, 0}, {394, 112}}</string> - <reference key="NSSuperview" ref="419216241"/> - <reference key="NSNextKeyView" ref="554327629"/> - <string key="NSReuseIdentifierKey">_NS:9</string> - <int key="NSsFlags">133650</int> - <reference key="NSVScroller" ref="14611541"/> - <reference key="NSHScroller" ref="430345086"/> - <reference key="NSContentView" ref="554327629"/> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - <object class="NSTextField" id="282832207"> - <reference key="NSNextResponder" ref="419216241"/> - <int key="NSvFlags">266</int> - <string key="NSFrame">{{-1, 118}, {398, 17}}</string> - <reference key="NSSuperview" ref="419216241"/> - <reference key="NSNextKeyView" ref="773336919"/> - <string key="NSReuseIdentifierKey">_NS:526</string> - <string key="NSHuggingPriority">{251, 750}</string> - <bool key="NSEnabled">YES</bool> - <object class="NSTextFieldCell" key="NSCell" id="164374303"> - <int key="NSCellFlags">68157504</int> - <int key="NSCellFlags2">272630784</int> - <string key="NSContents">Details:</string> - <reference key="NSSupport" ref="26"/> - <string key="NSCellIdentifier">_NS:526</string> - <reference key="NSControlView" ref="282832207"/> - <reference key="NSBackgroundColor" ref="647098198"/> - <reference key="NSTextColor" ref="667308713"/> - </object> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSTextFieldAlignmentRectInsetsVersion">1</int> - </object> - </array> - <string key="NSFrameSize">{395, 135}</string> - <reference key="NSNextKeyView" ref="282832207"/> - <string key="NSReuseIdentifierKey">_NS:9</string> - <string key="NSClassName">NSView</string> - </object> - <object class="NSWindowTemplate" id="746008569"> - <int key="NSWindowStyleMask">145</int> - <int key="NSWindowBacking">2</int> - <string key="NSWindowRect">{{196, 132}, {410, 165}}</string> - <int key="NSWTFlags">-461896704</int> - <string key="NSWindowTitle">Type Info</string> - <string key="NSWindowClass">NSPanel</string> - <nil key="NSViewClass"/> - <nil key="NSUserInterfaceItemIdentifier"/> - <object class="NSView" key="NSWindowView" id="343760123"> - <nil key="NSNextResponder"/> - <int key="NSvFlags">256</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSScrollView" id="417749005"> - <reference key="NSNextResponder" ref="343760123"/> - <int key="NSvFlags">274</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSClipView" id="863539615"> - <reference key="NSNextResponder" ref="417749005"/> - <int key="NSvFlags">2322</int> - <array class="NSMutableArray" key="NSSubviews"> - <object class="NSTextView" id="81696073"> - <reference key="NSNextResponder" ref="863539615"/> - <int key="NSvFlags">2322</int> - <string key="NSFrameSize">{384, 152}</string> - <reference key="NSSuperview" ref="863539615"/> - <reference key="NSNextKeyView" ref="21184185"/> - <string key="NSReuseIdentifierKey">_NS:13</string> - <object class="NSTextContainer" key="NSTextContainer" id="453813367"> - <object class="NSLayoutManager" key="NSLayoutManager"> - <object class="NSTextStorage" key="NSTextStorage"> - <object class="NSMutableString" key="NSString"> - <characters key="NS.bytes">Help dummy text</characters> - </object> - <dictionary key="NSAttributes"> - <object class="NSFont" key="NSFont"> - <string key="NSName">Helvetica</string> - <double key="NSSize">12</double> - <int key="NSfFlags">16</int> - </object> - <object class="NSMutableParagraphStyle" key="NSParagraphStyle"> - <nil key="NSTabStops"/> - </object> - </dictionary> - <nil key="NSDelegate"/> - </object> - <array class="NSMutableArray" key="NSTextContainers"> - <reference ref="453813367"/> - </array> - <int key="NSLMFlags">166</int> - <nil key="NSDelegate"/> - </object> - <reference key="NSTextView" ref="81696073"/> - <double key="NSWidth">384</double> - <int key="NSTCFlags">1</int> - </object> - <object class="NSTextViewSharedData" key="NSSharedData"> - <int key="NSFlags">10273</int> - <int key="NSTextCheckingTypes">0</int> - <nil key="NSMarkedAttributes"/> - <reference key="NSBackgroundColor" ref="457906098"/> - <dictionary key="NSSelectedAttributes"> - <reference key="NSBackgroundColor" ref="695342849"/> - <reference key="NSColor" ref="294465151"/> - </dictionary> - <reference key="NSInsertionColor" ref="667308713"/> - <dictionary key="NSLinkAttributes"> - <reference key="NSColor" ref="618433734"/> - <reference key="NSCursor" ref="113216199"/> - <integer value="1" key="NSUnderline"/> - </dictionary> - <nil key="NSDefaultParagraphStyle"/> - <nil key="NSTextFinder"/> - <int key="NSPreferredTextFinderStyle">1</int> - </object> - <int key="NSTVFlags">6</int> - <string key="NSMaxSize">{463, 10000000}</string> - <nil key="NSDelegate"/> - </object> - </array> - <string key="NSFrameSize">{384, 152}</string> - <reference key="NSSuperview" ref="417749005"/> - <reference key="NSNextKeyView" ref="81696073"/> - <string key="NSReuseIdentifierKey">_NS:11</string> - <reference key="NSDocView" ref="81696073"/> - <reference key="NSBGColor" ref="457906098"/> - <object class="NSCursor" key="NSCursor"> - <string key="NSHotSpot">{4, 5}</string> - <object class="NSImage" key="NSImage"> - <int key="NSImageFlags">12582912</int> - <array class="NSMutableArray" key="NSReps"> - <array> - <integer value="0"/> - <object class="NSBitmapImageRep"> - <object class="NSData" key="NSTIFFRepresentation"> - <bytes key="NS.bytes">TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes> - </object> - </object> - </array> - </array> - <reference key="NSColor" ref="114175458"/> - </object> - </object> - <int key="NScvFlags">2</int> - </object> - <object class="NSScroller" id="1022049165"> - <reference key="NSNextResponder" ref="417749005"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{-100, -100}, {15, 133}}</string> - <reference key="NSSuperview" ref="417749005"/> - <string key="NSReuseIdentifierKey">_NS:85</string> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <reference key="NSTarget" ref="417749005"/> - <string key="NSAction">_doScroller:</string> - <double key="NSCurValue">1</double> - <double key="NSPercent">0.85256409645080566</double> - </object> - <object class="NSScroller" id="21184185"> - <reference key="NSNextResponder" ref="417749005"/> - <int key="NSvFlags">-2147483392</int> - <string key="NSFrame">{{-100, -100}, {87, 18}}</string> - <reference key="NSSuperview" ref="417749005"/> - <reference key="NSNextKeyView" ref="863539615"/> - <string key="NSReuseIdentifierKey">_NS:33</string> - <bool key="NSAllowsLogicalLayoutDirection">NO</bool> - <int key="NSsFlags">1</int> - <reference key="NSTarget" ref="417749005"/> - <string key="NSAction">_doScroller:</string> - <double key="NSCurValue">1</double> - <double key="NSPercent">0.94565218687057495</double> - </object> - </array> - <string key="NSFrame">{{13, 6}, {384, 152}}</string> - <reference key="NSSuperview" ref="343760123"/> - <reference key="NSNextKeyView" ref="863539615"/> - <string key="NSReuseIdentifierKey">_NS:9</string> - <int key="NSsFlags">153600</int> - <reference key="NSVScroller" ref="1022049165"/> - <reference key="NSHScroller" ref="21184185"/> - <reference key="NSContentView" ref="863539615"/> - <double key="NSMinMagnification">0.25</double> - <double key="NSMaxMagnification">4</double> - <double key="NSMagnification">1</double> - </object> - </array> - <string key="NSFrameSize">{410, 165}</string> - <string key="NSReuseIdentifierKey">_NS:21</string> - </object> - <string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string> - <bool key="NSWindowIsRestorable">YES</bool> - </object> - </array> - <object class="IBObjectContainer" key="IBDocument.Objects"> - <bool key="usesAutoincrementingIDs">NO</bool> - <array key="connectionRecords"> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">addDatabaseButton</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="536855438"/> - </object> - <string key="id">6634</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">chooseDatabaseButton</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="688363677"/> - </object> - <string key="id">3999</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">contentViewSplitter</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="310278688"/> - </object> - <string key="id">7733</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">copyDatabaseButton</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="35704701"/> - </object> - <string key="id">6983</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">copyDatabaseDataButton</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="256429839"/> - </object> - <string key="id">7039</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">copyDatabaseMessageField</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="680878714"/> - </object> - <string key="id">7040</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">createTableSyntaxTextField</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="772568181"/> - </object> - <string key="id">6597</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">createTableSyntaxWindow</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="629557373"/> - </object> - <string key="id">6587</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">customQueryInstance</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="227061690"/> - </object> - <string key="id">208</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">databaseAlterCollationButton</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="329386404"/> - </object> - <string key="id">8307</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">databaseAlterEncodingButton</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="899887673"/> - </object> - <string key="id">8306</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">databaseAlterSheet</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="513263904"/> - </object> - <string key="id">8305</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">databaseCollationButton</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="749279002"/> - </object> - <string key="id">8275</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">databaseCopyNameField</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="677823009"/> - </object> - <string key="id">7030</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">databaseCopySheet</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="44735767"/> - </object> - <string key="id">7032</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">databaseDataInstance</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="92105597"/> - </object> - <string key="id">5815</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">databaseEncodingButton</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="869557066"/> - </object> - <string key="id">4778</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">databaseRenameNameField</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="910445056"/> - </object> - <string key="id">7031</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">databaseRenameSheet</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="40560749"/> - </object> - <string key="id">7012</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">databaseSheet</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="27889601"/> - </object> - <string key="id">584</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">documentActivityScrollView</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="883675819"/> - </object> - <string key="id">7790</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">exportControllerInstance</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="143617304"/> - </object> - <string key="id">6619</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">extendedTableInfoInstance</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="269913528"/> - </object> - <string key="id">5848</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">historyControl</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="488920219"/> - </object> - <string key="id">6296</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">inputTextWindow</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="14157748"/> - </object> - <string key="id">6504</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">inputTextWindowHeader</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="767030531"/> - </object> - <string key="id">6505</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">inputTextWindowMessage</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="688538104"/> - </object> - <string key="id">6506</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">inputTextWindowSecureTextField</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="205502925"/> - </object> - <string key="id">6507</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">listFilterField</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="440427720"/> - </object> - <string key="id">6323</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">parentView</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="173438986"/> - </object> - <string key="id">7044</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">queryProgressBar</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="402546253"/> - </object> - <string key="id">860</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">renameDatabaseButton</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="876797055"/> - </object> - <string key="id">7011</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">renameDatabaseMessageField</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="716707300"/> - </object> - <string key="id">7041</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">spHistoryControllerInstance</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="588458816"/> - </object> - <string key="id">6298</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">statusTableAccessoryView</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="51514705"/> - </object> - <string key="id">6897</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">statusTableCopyChecksum</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="229355777"/> - </object> - <string key="id">6903</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableContentInstance</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="62480485"/> - </object> - <string key="id">209</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDataInstance</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="679691016"/> - </object> - <string key="id">4708</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDumpInstance</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="326640712"/> - </object> - <string key="id">378</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableInfoScrollView</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="980722778"/> - </object> - <string key="id">7782</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableRelationsInstance</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="292161225"/> - </object> - <string key="id">6764</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableSourceInstance</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="239767357"/> - </object> - <string key="id">210</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableTabView</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="280187924"/> - </object> - <string key="id">1244</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableTriggersInstance</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="232491680"/> - </object> - <string key="id">6796</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tablesListInstance</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="421424376"/> - </object> - <string key="id">104</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">titleAccessoryView</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="938785731"/> - </object> - <string key="id">6002</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">titleImageView</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="742507626"/> - </object> - <string key="id">6003</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">titleStringView</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="601040667"/> - </object> - <string key="id">6172</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">exportSelectedTablesAs:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="990722358"/> - </object> - <string key="id">7935</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">exportSelectedTablesAs:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="669933272"/> - </object> - <string key="id">7936</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">exportSelectedTablesAs:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="746120465"/> - </object> - <string key="id">7934</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">showCreateTableSyntax:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="363570133"/> - </object> - <string key="id">7933</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">copyCreateTableSyntax:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="664336387"/> - </object> - <string key="id">7939</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">viewStatus:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="978103818"/> - </object> - <string key="id">6011</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closePanelSheet:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="536855438"/> - </object> - <string key="id">6633</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closePanelSheet:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="988821764"/> - </object> - <string key="id">6632</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closePanelSheet:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="716757490"/> - </object> - <string key="id">8303</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closePanelSheet:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="403583857"/> - </object> - <string key="id">8304</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closePanelSheet:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="35704701"/> - </object> - <string key="id">6979</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closePanelSheet:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="35301577"/> - </object> - <string key="id">6978</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closePanelSheet:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="876797055"/> - </object> - <string key="id">7009</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closePanelSheet:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="208600380"/> - </object> - <string key="id">7008</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closePanelSheet:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="20857429"/> - </object> - <string key="id">6599</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closePanelSheet:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="791611345"/> - </object> - <string key="id">6826</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">saveCreateSyntax:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="96543456"/> - </object> - <string key="id">6598</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">copyCreateTableSyntaxFromSheet:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="331708526"/> - </object> - <string key="id">6608</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closePasswordSheet:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="415521383"/> - </object> - <string key="id">6508</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closePasswordSheet:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="910916197"/> - </object> - <string key="id">6509</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">copyChecksumFromSheet:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="229355777"/> - </object> - <string key="id">6904</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">exportSelectedTablesAs:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="91510864"/> - </object> - <string key="id">7057</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">exportSelectedTablesAs:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="647331108"/> - </object> - <string key="id">7058</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">exportSelectedTablesAs:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="864241427"/> - </object> - <string key="id">7059</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">showCreateTableSyntax:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="203930795"/> - </object> - <string key="id">6925</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">copyCreateTableSyntax:</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="545888363"/> - </object> - <string key="id">7829</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">dbTablesTableView</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="720354614"/> - </object> - <string key="id">4000</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableInfoTable</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="366652030"/> - </object> - <string key="id">5941</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">customQueryTextView</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="995019363"/> - </object> - <string key="id">8263</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">createTableSyntaxTextView</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="939003537"/> - </object> - <string key="id">8215</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">statusTableView</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="665534268"/> - </object> - <string key="id">6898</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">databaseNameField</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="535859051"/> - </object> - <string key="id">LR5-fT-2qb</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableInfoSplitView</string> - <reference key="source" ref="800783608"/> - <reference key="destination" ref="420718918"/> - </object> - <string key="id">n3i-dz-XZx</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">addDatabase:</string> - <reference key="source" ref="463834704"/> - <reference key="destination" ref="1004711405"/> - </object> - <string key="id">4524</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">copy:</string> - <reference key="source" ref="463834704"/> - <reference key="destination" ref="101703911"/> - </object> - <string key="id">7481</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">copy:</string> - <reference key="source" ref="463834704"/> - <reference key="destination" ref="690895394"/> - </object> - <string key="id">7482</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">copy:</string> - <reference key="source" ref="463834704"/> - <reference key="destination" ref="444231487"/> - </object> - <string key="id">7483</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="720354614"/> - <reference key="destination" ref="421424376"/> - </object> - <string key="id">251</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">dataSource</string> - <reference key="source" ref="720354614"/> - <reference key="destination" ref="421424376"/> - </object> - <string key="id">89</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">menu</string> - <reference key="source" ref="720354614"/> - <reference key="destination" ref="446589600"/> - </object> - <string key="id">6248</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="280187924"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">7673</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">menu</string> - <reference key="source" ref="589548204"/> - <reference key="destination" ref="199906040"/> - </object> - <string key="id">6229</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">dataSource</string> - <reference key="source" ref="589548204"/> - <reference key="destination" ref="62480485"/> - </object> - <string key="id">72</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">copy:</string> - <reference key="source" ref="589548204"/> - <reference key="destination" ref="146436681"/> - </object> - <string key="id">6346</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">copy:</string> - <reference key="source" ref="589548204"/> - <reference key="destination" ref="782999991"/> - </object> - <string key="id">6345</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">copy:</string> - <reference key="source" ref="589548204"/> - <reference key="destination" ref="484791236"/> - </object> - <string key="id">6342</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="589548204"/> - <reference key="destination" ref="62480485"/> - </object> - <string key="id">203</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">addRow:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="115869327"/> - </object> - <string key="id">5188</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">reloadTable:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="744169708"/> - </object> - <string key="id">5185</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">removeRow:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="947593509"/> - </object> - <string key="id">5187</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">duplicateRow:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="140315871"/> - </object> - <string key="id">7838</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">navigatePaginationFromButton:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="622694405"/> - </object> - <string key="id">6666</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">navigatePaginationFromButton:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="1065343609"/> - </object> - <string key="id">6665</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">togglePagination:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="957548798"/> - </object> - <string key="id">6662</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">filterTable:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="815051235"/> - </object> - <string key="id">RqZ-Kt-0nW</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">filterTable:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="332657589"/> - </object> - <string key="id">4678</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">setCompareTypes:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="805164801"/> - </object> - <string key="id">196</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">toggleFilterField:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="687258326"/> - </object> - <string key="id">4685</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">filterTable:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="316472124"/> - </object> - <string key="id">6536</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">filterTable:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="426625670"/> - </object> - <string key="id">4680</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">toggleNegateClause:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="97861442"/> - </object> - <string key="id">8172</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">toggleDistinctSelect:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="154035357"/> - </object> - <string key="id">8170</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">setDefaultOperator:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="995074970"/> - </object> - <string key="id">8163</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">filterTable:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="311320315"/> - </object> - <string key="id">8176</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">toggleLookAllFieldsMode:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="888560371"/> - </object> - <string key="id">8168</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">tableFilterClear:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="567978438"/> - </object> - <string key="id">8175</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closeSheet:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="702058933"/> - </object> - <string key="id">7627</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closeSheet:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="3117311"/> - </object> - <string key="id">7628</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">showDefaultOperaterHelp:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="167672071"/> - </object> - <string key="id">7816</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">addButton</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="115869327"/> - </object> - <string key="id">5189</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">argumentField</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="426625670"/> - </object> - <string key="id">3965</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">betweenTextField</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="182013136"/> - </object> - <string key="id">6368</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">compareField</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="687258326"/> - </object> - <string key="id">166</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">contentSplitView</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="786146577"/> - </object> - <string key="id">BQr-g6-UG3</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">contentViewPane</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="100283475"/> - </object> - <string key="id">6661</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">countText</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="72511287"/> - </object> - <string key="id">262</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">duplicateButton</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="140315871"/> - </object> - <string key="id">7837</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">fieldField</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="805164801"/> - </object> - <string key="id">164</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">filterButton</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="332657589"/> - </object> - <string key="id">5942</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">filterControllerInstance</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="174325282"/> - </object> - <string key="id">5od-0U-9xj</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">filterTableDistinctCheckbox</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="154035357"/> - </object> - <string key="id">8171</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">filterTableFilterButton</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="311320315"/> - </object> - <string key="id">8177</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">filterTableLiveSearchCheckbox</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="831663923"/> - </object> - <string key="id">8174</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">filterTableNegateCheckbox</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="97861442"/> - </object> - <string key="id">8173</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">filterTableQueryTitle</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="851365730"/> - </object> - <string key="id">8184</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">filterTableSearchAllFields</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="888560371"/> - </object> - <string key="id">8169</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">filterTableSetDefaultOperatorSheet</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="926616295"/> - </object> - <string key="id">7632</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">filterTableSetDefaultOperatorValue</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="636956002"/> - </object> - <string key="id">7631</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">filterTableSplitView</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="676149810"/> - </object> - <string key="id">8178</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">filterTableWindow</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="754703764"/> - </object> - <string key="id">8161</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">firstBetweenField</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="953677073"/> - </object> - <string key="id">6373</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">multipleLineEditingButton</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="20233805"/> - </object> - <string key="id">5203</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">paginationButton</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="957548798"/> - </object> - <string key="id">6657</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">paginationNextButton</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="622694405"/> - </object> - <string key="id">6664</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">paginationPreviousButton</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="1065343609"/> - </object> - <string key="id">6663</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">reloadButton</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="744169708"/> - </object> - <string key="id">6625</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">removeButton</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="947593509"/> - </object> - <string key="id">5190</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">secondBetweenField</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="316472124"/> - </object> - <string key="id">6374</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">spHistoryControllerInstance</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="588458816"/> - </object> - <string key="id">6316</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDataInstance</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="679691016"/> - </object> - <string key="id">4712</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDocumentInstance</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">900</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableInfoInstance</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="188482031"/> - </object> - <string key="id">6352</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableSourceInstance</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="239767357"/> - </object> - <string key="id">6882</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tablesListInstance</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="421424376"/> - </object> - <string key="id">1026</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">addRow:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="441331289"/> - </object> - <string key="id">7797</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">duplicateRow:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="817183249"/> - </object> - <string key="id">7839</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">removeRow:</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="868170049"/> - </object> - <string key="id">6230</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableContentView</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="589548204"/> - </object> - <string key="id">142</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">filterTableView</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="536214448"/> - </object> - <string key="id">8160</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">filterTableWhereClause</string> - <reference key="source" ref="62480485"/> - <reference key="destination" ref="148817449"/> - </object> - <string key="id">8209</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">updateFilter:</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="440427720"/> - </object> - <string key="id">6285</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">addTable:</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="99671504"/> - </object> - <string key="id">7854</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">togglePaneCollapse:</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="559497073"/> - </object> - <string key="id">7962</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">renameTable:</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="767969003"/> - </object> - <string key="id">7941</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">copyTable:</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="35600651"/> - </object> - <string key="id">7942</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">truncateTable:</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="34195582"/> - </object> - <string key="id">7938</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">removeTable:</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="1000459683"/> - </object> - <string key="id">7937</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">openTableInNewTab:</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="457022029"/> - </object> - <string key="id">7940</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">updateTables:</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="466961207"/> - </object> - <string key="id">8185</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closeSheet:</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="671615720"/> - </object> - <string key="id">5692</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closeSheet:</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="635170907"/> - </object> - <string key="id">5703</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closeSheet:</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="162304526"/> - </object> - <string key="id">6354</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closeSheet:</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="1014938601"/> - </object> - <string key="id">6353</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">addTableButton</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="671615720"/> - </object> - <string key="id">5367</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">copyCreateSyntaxContextMenuItem</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="545888363"/> - </object> - <string key="id">7830</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">copyCreateSyntaxMenuItem</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="664336387"/> - </object> - <string key="id">7950</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">copyTableButton</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="162304526"/> - </object> - <string key="id">5705</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">copyTableContentSwitch</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="966166933"/> - </object> - <string key="id">520</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">copyTableMessageField</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="906659947"/> - </object> - <string key="id">5427</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">copyTableSheet</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="776700210"/> - </object> - <string key="id">521</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">customQueryInstance</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="227061690"/> - </object> - <string key="id">750</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">databaseDataInstance</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="92105597"/> - </object> - <string key="id">6209</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">duplicateTableContextMenuItem</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="917440216"/> - </object> - <string key="id">6201</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">duplicateTableMenuItem</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="35600651"/> - </object> - <string key="id">7945</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">extendedTableInfoInstance</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="269913528"/> - </object> - <string key="id">5857</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">listFilterField</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="440427720"/> - </object> - <string key="id">6284</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">openTableInNewTabContextMenuItem</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="53213476"/> - </object> - <string key="id">7685</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">openTableInNewTabMenuItem</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="457022029"/> - </object> - <string key="id">7948</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">removeTableContextMenuItem</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="449076852"/> - </object> - <string key="id">6203</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">removeTableMenuItem</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="1000459683"/> - </object> - <string key="id">7947</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">renameTableContextMenuItem</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="207266527"/> - </object> - <string key="id">6200</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">renameTableMenuItem</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="767969003"/> - </object> - <string key="id">7944</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">separatorTableContextMenuItem</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="717548863"/> - </object> - <string key="id">6202</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">separatorTableContextMenuItem2</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="540586716"/> - </object> - <string key="id">7060</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">separatorTableContextMenuItem3</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="854596635"/> - </object> - <string key="id">7792</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">separatorTableMenuItem</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="508046468"/> - </object> - <string key="id">7951</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">separatorTableMenuItem2</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="744514514"/> - </object> - <string key="id">7952</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">separatorTableMenuItem3</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="326741175"/> - </object> - <string key="id">7953</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">showCreateSyntaxContextMenuItem</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="203930795"/> - </object> - <string key="id">6929</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">showCreateSyntaxMenuItem</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="363570133"/> - </object> - <string key="id">7949</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">spHistoryControllerInstance</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="588458816"/> - </object> - <string key="id">6302</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableCollationButton</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="467430961"/> - </object> - <string key="id">8314</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableContentInstance</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="62480485"/> - </object> - <string key="id">143</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDataInstance</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="679691016"/> - </object> - <string key="id">4707</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDocumentInstance</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">587</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDumpInstance</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="326640712"/> - </object> - <string key="id">619</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableEncodingButton</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="1050266816"/> - </object> - <string key="id">5366</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableInfoInstance</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="188482031"/> - </object> - <string key="id">6883</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableListFilterSplitView</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="152099238"/> - </object> - <string key="id">6280</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableListSplitView</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="220052404"/> - </object> - <string key="id">6257</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableNameField</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="374259664"/> - </object> - <string key="id">5698</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableSheet</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="971880172"/> - </object> - <string key="id">5368</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableSourceInstance</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="239767357"/> - </object> - <string key="id">137</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableTriggersInstance</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="232491680"/> - </object> - <string key="id">7042</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableTypeButton</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="189903457"/> - </object> - <string key="id">5743</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">toolbarActionsButton</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="819189090"/> - </object> - <string key="id">7943</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">toolbarAddButton</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="99671504"/> - </object> - <string key="id">7853</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">toolbarReloadButton</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="466961207"/> - </object> - <string key="id">7958</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">truncateTableButton</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="34195582"/> - </object> - <string key="id">7946</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">truncateTableContextMenuItem</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="675484094"/> - </object> - <string key="id">7681</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">renameTable:</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="207266527"/> - </object> - <string key="id">6194</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">copyTable:</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="917440216"/> - </object> - <string key="id">6197</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">truncateTable:</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="675484094"/> - </object> - <string key="id">6198</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">removeTable:</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="449076852"/> - </object> - <string key="id">6199</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">openTableInNewTab:</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="53213476"/> - </object> - <string key="id">7684</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tablesListView</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="720354614"/> - </object> - <string key="id">138</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">openTableInNewWindow:</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="277343222"/> - </object> - <string key="id">KbY-Cu-Uey</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">openTableInNewWindowContextMenuItem</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="277343222"/> - </object> - <string key="id">iiG-2r-r4b</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">openTableInNewWindowMenuItem</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="441784509"/> - </object> - <string key="id">quL-BY-YQJ</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">openTableInNewWindow:</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="441784509"/> - </object> - <string key="id">uJ9-sX-zir</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">copyTableNameField</string> - <reference key="source" ref="421424376"/> - <reference key="destination" ref="398163780"/> - </object> - <string key="id">i9F-Er-ve6</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">toggleColumnView:</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="428444087"/> - </object> - <string key="id">8062</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">toggleColumnView:</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="589031743"/> - </object> - <string key="id">8064</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">toggleColumnView:</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="45971758"/> - </object> - <string key="id">8063</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">toggleColumnView:</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="574879768"/> - </object> - <string key="id">8061</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">duplicateField:</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="927360703"/> - </object> - <string key="id">7834</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">removeField:</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="997907892"/> - </object> - <string key="id">5140</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">reloadTable:</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="1031766954"/> - </object> - <string key="id">5142</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">addField:</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="400841207"/> - </object> - <string key="id">5133</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">unhideIndexesView:</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="1070311218"/> - </object> - <string key="id">7462</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">reloadTable:</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="385306370"/> - </object> - <string key="id">5162</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closeSheet:</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="407918734"/> - </object> - <string key="id">7671</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closeSheet:</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="729651532"/> - </object> - <string key="id">7672</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closeSheet:</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="207250419"/> - </object> - <string key="id">6845</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closeSheet:</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="372615010"/> - </object> - <string key="id">6846</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">addFieldButton</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="400841207"/> - </object> - <string key="id">5143</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">addIndexButton</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="389959795"/> - </object> - <string key="id">7085</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">chooseKeyButton</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="1067575740"/> - </object> - <string key="id">420</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">databaseDataInstance</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="92105597"/> - </object> - <string key="id">7670</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">duplicateFieldButton</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="927360703"/> - </object> - <string key="id">7835</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">editTableButton</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="978103818"/> - </object> - <string key="id">6012</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">extendedTableInfoInstance</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="269913528"/> - </object> - <string key="id">6875</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">indexesController</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="298287912"/> - </object> - <string key="id">7093</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">indexesShowButton</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="1070311218"/> - </object> - <string key="id">7460</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">keySheet</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="530761994"/> - </object> - <string key="id">421</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">refreshIndexesButton</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="385306370"/> - </object> - <string key="id">7088</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">reloadFieldsButton</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="1031766954"/> - </object> - <string key="id">6635</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">removeFieldButton</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="997907892"/> - </object> - <string key="id">5144</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">removeIndexButton</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="671174106"/> - </object> - <string key="id">7086</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">resetAutoIncrementLine</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="749202052"/> - </object> - <string key="id">6876</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">resetAutoIncrementSheet</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="151160384"/> - </object> - <string key="id">6843</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">resetAutoIncrementValue</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="552053126"/> - </object> - <string key="id">6844</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">structureGrabber</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="362266093"/> - </object> - <string key="id">4505</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDataInstance</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="679691016"/> - </object> - <string key="id">4709</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDocumentInstance</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">6637</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableInfoInstance</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="188482031"/> - </object> - <string key="id">6853</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tablesIndexesSplitView</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="204281121"/> - </object> - <string key="id">7461</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tablesListInstance</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="421424376"/> - </object> - <string key="id">1171</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">viewColumnsMenu</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="142860202"/> - </object> - <string key="id">8067</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">resetAutoIncrement:</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="211721936"/> - </object> - <string key="id">7095</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">removeField:</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="937683083"/> - </object> - <string key="id">6215</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">duplicateField:</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="592490673"/> - </object> - <string key="id">7836</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">showOptimizedFieldType:</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="1028902187"/> - </object> - <string key="id">7501</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">encodingPopupCell</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="732109310"/> - </object> - <string key="id">7496</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableSourceView</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="977333304"/> - </object> - <string key="id">244</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">indexesTableView</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="71493486"/> - </object> - <string key="id">7087</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">structureHelpPanel</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="746008569"/> - </object> - <string key="id">bLb-Jh-Jm1</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">structureHelpText</string> - <reference key="source" ref="239767357"/> - <reference key="destination" ref="81696073"/> - </object> - <string key="id">0cG-kD-PJR</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">gearMenuItemSelected:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="286715853"/> - </object> - <string key="id">7319</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">gearMenuItemSelected:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="1064501839"/> - </object> - <string key="id">7315</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">gearMenuItemSelected:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="766303892"/> - </object> - <string key="id">7327</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">gearMenuItemSelected:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="213433712"/> - </object> - <string key="id">7322</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">gearMenuItemSelected:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="447780045"/> - </object> - <string key="id">7308</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">gearMenuItemSelected:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="469260279"/> - </object> - <string key="id">7328</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">gearMenuItemSelected:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="57130105"/> - </object> - <string key="id">7309</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">showCompletionList:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="500992522"/> - </object> - <string key="id">7323</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">showCompletionList:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="918336131"/> - </object> - <string key="id">7310</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">showCompletionList:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="264393634"/> - </object> - <string key="id">7317</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">gearMenuItemSelected:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="144797562"/> - </object> - <string key="id">7320</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">gearMenuItemSelected:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="385179024"/> - </object> - <string key="id">7321</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">gearMenuItemSelected:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="45246447"/> - </object> - <string key="id">7307</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">gearMenuItemSelected:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="652841032"/> - </object> - <string key="id">7313</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">gearMenuItemSelected:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="55951713"/> - </object> - <string key="id">7318</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">chooseQueryFavorite:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="1011012479"/> - </object> - <string key="id">7316</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">copyQueryHistory:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="371986622"/> - </object> - <string key="id">7312</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">saveQueryHistory:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="550977381"/> - </object> - <string key="id">7324</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">clearQueryHistory:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="731432810"/> - </object> - <string key="id">7311</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">chooseQueryHistory:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="946631811"/> - </object> - <string key="id">7326</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">runPrimaryQueryAction:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="800429709"/> - </object> - <string key="id">8329</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">runSecondaryQueryAction:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="66267300"/> - </object> - <string key="id">8330</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">switchDefaultQueryAction:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="777403568"/> - </object> - <string key="id">8333</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">runPrimaryQueryAction:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="822332749"/> - </object> - <string key="id">8328</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closeSheet:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="49106017"/> - </object> - <string key="id">717</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">showHelpForSearchString:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="882067248"/> - </object> - <string key="id">5455</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">helpSegmentDispatcher:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="789201908"/> - </object> - <string key="id">5524</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">helpSearchFindNextInPage:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="790699928"/> - </object> - <string key="id">5502</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">helpSearchFindPreviousInPage:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="810058338"/> - </object> - <string key="id">5505</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">helpTargetDispatcher:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="948894306"/> - </object> - <string key="id">5513</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">helpSelectHelpTargetWeb:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="887242385"/> - </object> - <string key="id">5523</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">helpSelectHelpTargetPage:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="508882696"/> - </object> - <string key="id">5522</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">helpSelectHelpTargetMySQL:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="206859009"/> - </object> - <string key="id">5521</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closeSheet:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="119248743"/> - </object> - <string key="id">6419</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closeSheet:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="574616393"/> - </object> - <string key="id">6418</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">filterQueryFavorites:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="129264151"/> - </object> - <string key="id">6436</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">filterQueryHistory:</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="248511894"/> - </object> - <string key="id">6452</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">affectedRowsText</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="93347433"/> - </object> - <string key="id">7969</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">autohelpMenuItem</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="55951713"/> - </object> - <string key="id">7355</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">autoindentMenuItem</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="385179024"/> - </object> - <string key="id">7356</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">autopairMenuItem</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="45246447"/> - </object> - <string key="id">7357</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">autouppercaseKeywordsMenuItem</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="652841032"/> - </object> - <string key="id">7358</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">clearHistoryMenuItem</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="731432810"/> - </object> - <string key="id">7366</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">commentCurrentQueryMenuItem</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="469260279"/> - </object> - <string key="id">7359</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">commentLineOrSelectionMenuItem</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="447780045"/> - </object> - <string key="id">7360</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">completionListMenuItem</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="57130105"/> - </object> - <string key="id">7361</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">copyHistoryMenuItem</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="371986622"/> - </object> - <string key="id">7367</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">customQueryScrollView</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="752414392"/> - </object> - <string key="id">7372</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">editorFontMenuItem</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="144797562"/> - </object> - <string key="id">7370</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">errorTextScrollView</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="663912545"/> - </object> - <string key="id">8249</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">errorTextTitle</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="561268593"/> - </object> - <string key="id">8334</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">helpNavigator</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="789201908"/> - </object> - <string key="id">5478</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">helpSearchField</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="882067248"/> - </object> - <string key="id">5454</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">helpSearchFieldCell</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="643565822"/> - </object> - <string key="id">5496</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">helpTargetSelector</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="948894306"/> - </object> - <string key="id">5512</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">helpWebView</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="301565654"/> - </object> - <string key="id">5442</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">helpWebViewWindow</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="364554212"/> - </object> - <string key="id">5433</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextHistoryMenuItem</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="1064501839"/> - </object> - <string key="id">7368</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">previousHistoryMenuItem</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="286715853"/> - </object> - <string key="id">7369</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">queryEditorSplitView</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="9338668"/> - </object> - <string key="id">8023</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">queryFavoriteNameTextField</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="852380709"/> - </object> - <string key="id">6416</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">queryFavoritesButton</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="1011012479"/> - </object> - <string key="id">7353</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">queryFavoritesSaveAllMenuItem</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="234421740"/> - </object> - <string key="id">7363</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">queryFavoritesSaveAsMenuItem</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="1050766707"/> - </object> - <string key="id">7364</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">queryFavoritesSearchField</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="129264151"/> - </object> - <string key="id">6434</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">queryFavoritesSearchFieldView</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="979594791"/> - </object> - <string key="id">6435</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">queryFavoritesSearchMenuItem</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="515713596"/> - </object> - <string key="id">7365</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">queryFavoritesSheet</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="446142676"/> - </object> - <string key="id">6415</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">queryHistoryButton</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="946631811"/> - </object> - <string key="id">7354</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">queryHistorySearchField</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="248511894"/> - </object> - <string key="id">6451</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">queryHistorySearchFieldView</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="758231677"/> - </object> - <string key="id">6450</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">queryHistorySearchMenuItem</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="914705967"/> - </object> - <string key="id">7374</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">queryInfoButton</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="245508703"/> - </object> - <string key="id">7974</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">queryInfoPaneSplitView</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="77719398"/> - </object> - <string key="id">7338</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">runPrimaryActionButton</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="822332749"/> - </object> - <string key="id">8322</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">runPrimaryActionMenuItem</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="800429709"/> - </object> - <string key="id">8332</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">runSecondaryActionMenuItem</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="66267300"/> - </object> - <string key="id">8331</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">saveHistoryMenuItem</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="550977381"/> - </object> - <string key="id">7373</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">saveQueryFavoriteButton</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="119248743"/> - </object> - <string key="id">6420</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">saveQueryFavoriteGlobal</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="762101746"/> - </object> - <string key="id">6518</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">shiftLeftMenuItem</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="213433712"/> - </object> - <string key="id">7349</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">shiftRightMenuItem</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="766303892"/> - </object> - <string key="id">7348</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDocumentInstance</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">6256</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tablesListInstance</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="421424376"/> - </object> - <string key="id">6884</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">valueSheet</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="34460447"/> - </object> - <string key="id">718</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">textView</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="995019363"/> - </object> - <string key="id">8264</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">customQueryView</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="628833149"/> - </object> - <string key="id">7371</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">errorText</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="767200221"/> - </object> - <string key="id">8250</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">valueTextField</string> - <reference key="source" ref="227061690"/> - <reference key="destination" ref="606708295"/> - </object> - <string key="id">8221</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">menu</string> - <reference key="source" ref="617988703"/> - <reference key="destination" ref="283763973"/> - </object> - <string key="id">6217</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="977333304"/> - <reference key="destination" ref="239767357"/> - </object> - <string key="id">252</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">dataSource</string> - <reference key="source" ref="977333304"/> - <reference key="destination" ref="239767357"/> - </object> - <string key="id">243</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">menu</string> - <reference key="source" ref="977333304"/> - <reference key="destination" ref="283763973"/> - </object> - <string key="id">6218</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">dataSource</string> - <reference key="source" ref="71493486"/> - <reference key="destination" ref="298287912"/> - </object> - <string key="id">7091</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="71493486"/> - <reference key="destination" ref="298287912"/> - </object> - <string key="id">7092</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">menu</string> - <reference key="source" ref="71493486"/> - <reference key="destination" ref="419134222"/> - </object> - <string key="id">6223</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">cancelProgressBar:</string> - <reference key="source" ref="326640712"/> - <reference key="destination" ref="352238263"/> - </object> - <string key="id">6141</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closeSheet:</string> - <reference key="source" ref="326640712"/> - <reference key="destination" ref="884123771"/> - </object> - <string key="id">968</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closeSheet:</string> - <reference key="source" ref="326640712"/> - <reference key="destination" ref="757193708"/> - </object> - <string key="id">6816</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">customQueryInstance</string> - <reference key="source" ref="326640712"/> - <reference key="destination" ref="227061690"/> - </object> - <string key="id">953</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">errorsSheet</string> - <reference key="source" ref="326640712"/> - <reference key="destination" ref="401301040"/> - </object> - <string key="id">967</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">singleProgressBar</string> - <reference key="source" ref="326640712"/> - <reference key="destination" ref="573071454"/> - </object> - <string key="id">6138</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">singleProgressSheet</string> - <reference key="source" ref="326640712"/> - <reference key="destination" ref="321175300"/> - </object> - <string key="id">6139</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">singleProgressText</string> - <reference key="source" ref="326640712"/> - <reference key="destination" ref="1014084013"/> - </object> - <string key="id">6140</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">singleProgressTitle</string> - <reference key="source" ref="326640712"/> - <reference key="destination" ref="301657628"/> - </object> - <string key="id">6238</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableContentInstance</string> - <reference key="source" ref="326640712"/> - <reference key="destination" ref="62480485"/> - </object> - <string key="id">1025</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDataInstance</string> - <reference key="source" ref="326640712"/> - <reference key="destination" ref="679691016"/> - </object> - <string key="id">4713</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDocumentInstance</string> - <reference key="source" ref="326640712"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">534</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableSourceInstance</string> - <reference key="source" ref="326640712"/> - <reference key="destination" ref="239767357"/> - </object> - <string key="id">1172</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tablesListInstance</string> - <reference key="source" ref="326640712"/> - <reference key="destination" ref="421424376"/> - </object> - <string key="id">1173</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">errorsView</string> - <reference key="source" ref="326640712"/> - <reference key="destination" ref="208952526"/> - </object> - <string key="id">8203</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="536855438"/> - <reference key="destination" ref="535859051"/> - </object> - <string key="id">L78-2b-cKV</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="988821764"/> - <reference key="destination" ref="536855438"/> - </object> - <string key="id">7023</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="204281121"/> - <reference key="destination" ref="239767357"/> - </object> - <string key="id">679</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">initialFirstResponder</string> - <reference key="source" ref="401301040"/> - <reference key="destination" ref="884123771"/> - </object> - <string key="id">6813</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">updateTableType:</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="830707723"/> - </object> - <string key="id">5838</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">updateTableEncoding:</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="937658032"/> - </object> - <string key="id">5842</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">updateTableCollation:</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="820725497"/> - </object> - <string key="id">5840</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">tableRowAutoIncrementWasEdited:</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="735808692"/> - </object> - <string key="id">6881</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">resetAutoIncrement:</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="392059056"/> - </object> - <string key="id">6872</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">resetAutoIncrement:</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="265631523"/> - </object> - <string key="id">6873</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">databaseDataInstance</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="92105597"/> - </object> - <string key="id">5816</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">resetAutoIncrementResetButton</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="408386519"/> - </object> - <string key="id">6867</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableCollationPopUpButton</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="820725497"/> - </object> - <string key="id">5817</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableCreatedAt</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="63508502"/> - </object> - <string key="id">5772</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDataInstance</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="679691016"/> - </object> - <string key="id">4711</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDataSize</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="503851323"/> - </object> - <string key="id">5849</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDocumentInstance</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">6640</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableEncodingPopUpButton</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="937658032"/> - </object> - <string key="id">5813</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableIndexSize</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="82785785"/> - </object> - <string key="id">5850</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableMaxDataSize</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="647578769"/> - </object> - <string key="id">5851</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableRowAutoIncrement</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="735808692"/> - </object> - <string key="id">5852</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableRowAvgLength</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="369069279"/> - </object> - <string key="id">5853</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableRowFormat</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="410504890"/> - </object> - <string key="id">5854</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableRowNumber</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="943922923"/> - </object> - <string key="id">5855</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableSizeFree</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="127338398"/> - </object> - <string key="id">5856</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableSourceInstance</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="239767357"/> - </object> - <string key="id">6866</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableTypePopUpButton</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="830707723"/> - </object> - <string key="id">5811</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableUpdatedAt</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="1054128943"/> - </object> - <string key="id">5773</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tablesListInstance</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="421424376"/> - </object> - <string key="id">6812</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableCommentsTextView</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="902567272"/> - </object> - <string key="id">8238</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableCreateSyntaxTextView</string> - <reference key="source" ref="269913528"/> - <reference key="destination" ref="804444600"/> - </object> - <string key="id">8244</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">dataSource</string> - <reference key="source" ref="381357793"/> - <reference key="destination" ref="239767357"/> - </object> - <string key="id">7498</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">spDelegate</string> - <reference key="source" ref="381357793"/> - <reference key="destination" ref="239767357"/> - </object> - <string key="id">bLE-2M-Nym</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">menu</string> - <reference key="source" ref="594274975"/> - <reference key="destination" ref="142860202"/> - </object> - <string key="id">Uxa-5O-Q0T</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">menu</string> - <reference key="source" ref="534606014"/> - <reference key="destination" ref="446589600"/> - </object> - <string key="id">6187</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="366652030"/> - <reference key="destination" ref="188482031"/> - </object> - <string key="id">4492</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">dataSource</string> - <reference key="source" ref="366652030"/> - <reference key="destination" ref="188482031"/> - </object> - <string key="id">4493</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDataInstance</string> - <reference key="source" ref="188482031"/> - <reference key="destination" ref="679691016"/> - </object> - <string key="id">4710</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDocumentInstance</string> - <reference key="source" ref="188482031"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">4496</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableInfoScrollView</string> - <reference key="source" ref="188482031"/> - <reference key="destination" ref="980722778"/> - </object> - <string key="id">7690</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableListInstance</string> - <reference key="source" ref="188482031"/> - <reference key="destination" ref="421424376"/> - </object> - <string key="id">4491</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableList</string> - <reference key="source" ref="188482031"/> - <reference key="destination" ref="720354614"/> - </object> - <string key="id">4681</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">activitiesTable</string> - <reference key="source" ref="188482031"/> - <reference key="destination" ref="828624540"/> - </object> - <string key="id">7713</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">infoTable</string> - <reference key="source" ref="188482031"/> - <reference key="destination" ref="366652030"/> - </object> - <string key="id">4490</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDocumentInstance</string> - <reference key="source" ref="679691016"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">4705</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableListInstance</string> - <reference key="source" ref="679691016"/> - <reference key="destination" ref="421424376"/> - </object> - <string key="id">4706</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="869557066"/> - <reference key="destination" ref="749279002"/> - </object> - <string key="id">8273</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBBindingConnection" key="connection"> - <string key="label">values.EditInSheetEnabled</string> - <reference key="source" ref="20233805"/> - <reference key="destination" ref="839838102"/> - <object class="NSNibBindingConnector" key="connector"> - <reference key="NSSource" ref="20233805"/> - <reference key="NSDestination" ref="839838102"/> - <string key="NSLabel">value: values.EditInSheetEnabled</string> - <string key="NSBinding">value</string> - <string key="NSKeyPath">values.EditInSheetEnabled</string> - <int key="NSNibBindingConnectorVersion">2</int> - </object> - </object> - <string key="id">6351</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="374259664"/> - <reference key="destination" ref="421424376"/> - </object> - <string key="id">5364</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">exportCustomQueryResultAsFormat:</string> - <reference key="source" ref="143617304"/> - <reference key="destination" ref="734890802"/> - </object> - <string key="id">8009</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">exportCustomQueryResultAsFormat:</string> - <reference key="source" ref="143617304"/> - <reference key="destination" ref="591735120"/> - </object> - <string key="id">8010</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">customQueryInstance</string> - <reference key="source" ref="143617304"/> - <reference key="destination" ref="227061690"/> - </object> - <string key="id">7072</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableContentInstance</string> - <reference key="source" ref="143617304"/> - <reference key="destination" ref="62480485"/> - </object> - <string key="id">7071</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDataInstance</string> - <reference key="source" ref="143617304"/> - <reference key="destination" ref="679691016"/> - </object> - <string key="id">6622</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDocumentInstance</string> - <reference key="source" ref="143617304"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">6621</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tablesListInstance</string> - <reference key="source" ref="143617304"/> - <reference key="destination" ref="421424376"/> - </object> - <string key="id">6620</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="364554212"/> - <reference key="destination" ref="227061690"/> - </object> - <string key="id">7715</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">initialFirstResponder</string> - <reference key="source" ref="364554212"/> - <reference key="destination" ref="882067248"/> - </object> - <string key="id">5525</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">UIDelegate</string> - <reference key="source" ref="301565654"/> - <reference key="destination" ref="227061690"/> - </object> - <string key="id">5508</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="301565654"/> - <reference key="destination" ref="789201908"/> - </object> - <string key="id">5528</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">policyDelegate</string> - <reference key="source" ref="301565654"/> - <reference key="destination" ref="227061690"/> - </object> - <string key="id">5451</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">makeTextLarger:</string> - <reference key="source" ref="301565654"/> - <reference key="destination" ref="264841107"/> - </object> - <string key="id">5469</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">makeTextSmaller:</string> - <reference key="source" ref="301565654"/> - <reference key="destination" ref="176530295"/> - </object> - <string key="id">5468</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="882067248"/> - <reference key="destination" ref="948894306"/> - </object> - <string key="id">5526</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">selectText:</string> - <reference key="source" ref="882067248"/> - <reference key="destination" ref="157285958"/> - </object> - <string key="id">5506</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="789201908"/> - <reference key="destination" ref="882067248"/> - </object> - <string key="id">5529</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="948894306"/> - <reference key="destination" ref="301565654"/> - </object> - <string key="id">5527</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">menu</string> - <reference key="source" ref="371927703"/> - <reference key="destination" ref="972301077"/> - </object> - <string key="id">6236</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">dataSource</string> - <reference key="source" ref="371927703"/> - <reference key="destination" ref="292161225"/> - </object> - <string key="id">5573</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="371927703"/> - <reference key="destination" ref="292161225"/> - </object> - <string key="id">5572</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">addRelation:</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="485666585"/> - </object> - <string key="id">5909</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">refreshRelations:</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="686372736"/> - </object> - <string key="id">5911</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">removeRelation:</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="646345802"/> - </object> - <string key="id">5910</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">selectTableColumn:</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="613590545"/> - </object> - <string key="id">5907</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">selectReferenceTable:</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="997358225"/> - </object> - <string key="id">5908</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">confirmAddRelation:</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="770611577"/> - </object> - <string key="id">5912</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closeRelationSheet:</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="905045861"/> - </object> - <string key="id">5603</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">addRelationButton</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="485666585"/> - </object> - <string key="id">5918</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">addRelationPanel</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="267086801"/> - </object> - <string key="id">5922</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">addRelationTableBox</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="20882945"/> - </object> - <string key="id">5923</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">columnPopUpButton</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="613590545"/> - </object> - <string key="id">5928</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">confirmAddRelationButton</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="770611577"/> - </object> - <string key="id">5929</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">constraintName</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="164726151"/> - </object> - <string key="id">7812</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">dataProgressIndicator</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="579485108"/> - </object> - <string key="id">7827</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">labelTextField</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="854734864"/> - </object> - <string key="id">5921</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">onDeletePopUpButton</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="542486225"/> - </object> - <string key="id">5924</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">onUpdatePopUpButton</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="327029678"/> - </object> - <string key="id">5925</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">progressStatusTextField</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="172580784"/> - </object> - <string key="id">7826</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">refColumnPopUpButton</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="776137040"/> - </object> - <string key="id">5926</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">refTablePopUpButton</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="997358225"/> - </object> - <string key="id">5927</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">refreshRelationsButton</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="686372736"/> - </object> - <string key="id">5920</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">removeRelationButton</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="646345802"/> - </object> - <string key="id">5919</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDataInstance</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="679691016"/> - </object> - <string key="id">5595</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDocumentInstance</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">5593</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tablesListInstance</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="421424376"/> - </object> - <string key="id">5594</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">removeRelation:</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="856127754"/> - </object> - <string key="id">6237</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableList</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="720354614"/> - </object> - <string key="id">5712</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">relationsTableView</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="371927703"/> - </object> - <string key="id">5917</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">detailErrorView</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="419216241"/> - </object> - <string key="id">tnS-Wc-vbj</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">detailErrorText</string> - <reference key="source" ref="292161225"/> - <reference key="destination" ref="167869478"/> - </object> - <string key="id">JXS-FR-qOe</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="735808692"/> - <reference key="destination" ref="269913528"/> - </object> - <string key="id">6880</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">collapseToggleButton</string> - <reference key="source" ref="220052404"/> - <reference key="destination" ref="559497073"/> - </object> - <string key="id">7963</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="220052404"/> - <reference key="destination" ref="421424376"/> - </object> - <string key="id">6286</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="419134222"/> - <reference key="destination" ref="298287912"/> - </object> - <string key="id">7094</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="152099238"/> - <reference key="destination" ref="421424376"/> - </object> - <string key="id">7841</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="440427720"/> - <reference key="destination" ref="720354614"/> - </object> - <string key="id">6322</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">historyControlClicked:</string> - <reference key="source" ref="588458816"/> - <reference key="destination" ref="488920219"/> - </object> - <string key="id">6300</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">historyControl</string> - <reference key="source" ref="588458816"/> - <reference key="destination" ref="488920219"/> - </object> - <string key="id">6299</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">theDocument</string> - <reference key="source" ref="588458816"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">6301</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="852380709"/> - <reference key="destination" ref="227061690"/> - </object> - <string key="id">6417</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="129264151"/> - <reference key="destination" ref="227061690"/> - </object> - <string key="id">6437</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="248511894"/> - <reference key="destination" ref="227061690"/> - </object> - <string key="id">6453</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBBindingConnection" key="connection"> - <string key="label">values._dummy</string> - <reference key="source" ref="767030531"/> - <reference key="destination" ref="839838102"/> - <object class="NSNibBindingConnector" key="connector"> - <reference key="NSSource" ref="767030531"/> - <reference key="NSDestination" ref="839838102"/> - <string key="NSLabel">fontBold: values._dummy</string> - <string key="NSBinding">fontBold</string> - <string key="NSKeyPath">values._dummy</string> - <dictionary key="NSOptions"> - <integer value="1" key="NSMultipleValuesPlaceholder"/> - <integer value="1" key="NSNoSelectionPlaceholder"/> - <integer value="1" key="NSNotApplicablePlaceholder"/> - <integer value="1" key="NSNullPlaceholder"/> - </dictionary> - <int key="NSNibBindingConnectorVersion">2</int> - </object> - </object> - <string key="id">6515</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">initialFirstResponder</string> - <reference key="source" ref="629557373"/> - <reference key="destination" ref="791611345"/> - </object> - <string key="id">6827</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="96543456"/> - <reference key="destination" ref="331708526"/> - </object> - <string key="id">6820</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="20857429"/> - <reference key="destination" ref="96543456"/> - </object> - <string key="id">6822</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="331708526"/> - <reference key="destination" ref="20857429"/> - </object> - <string key="id">6821</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">addTrigger:</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="421474"/> - </object> - <string key="id">6746</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">refreshTriggers:</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="862482881"/> - </object> - <string key="id">6747</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">removeTrigger:</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="826516051"/> - </object> - <string key="id">6748</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">confirmAddTrigger:</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="59936077"/> - </object> - <string key="id">6804</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">closeTriggerSheet:</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="870795952"/> - </object> - <string key="id">6805</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">addTriggerButton</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="421474"/> - </object> - <string key="id">6741</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">addTriggerPanel</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="411883363"/> - </object> - <string key="id">6797</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">confirmAddTriggerButton</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="59936077"/> - </object> - <string key="id">6803</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">labelTextField</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="3722547"/> - </object> - <string key="id">6806</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">refreshTriggersButton</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="862482881"/> - </object> - <string key="id">6807</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">removeTriggerButton</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="826516051"/> - </object> - <string key="id">6808</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDataInstance</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="679691016"/> - </object> - <string key="id">6744</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDocumentInstance</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">6742</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tablesListInstance</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="421424376"/> - </object> - <string key="id">6752</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">triggerActionTimePopUpButton</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="570239451"/> - </object> - <string key="id">6799</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">triggerEventPopUpButton</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="613841003"/> - </object> - <string key="id">6800</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">triggerNameTextField</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="7465336"/> - </object> - <string key="id">6798</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">editTrigger:</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="964663133"/> - </object> - <string key="id">7669</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">removeTrigger:</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="901373201"/> - </object> - <string key="id">6809</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableList</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="720354614"/> - </object> - <string key="id">6751</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">triggersTableView</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="203790701"/> - </object> - <string key="id">6745</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">triggerStatementTextView</string> - <reference key="source" ref="232491680"/> - <reference key="destination" ref="193453639"/> - </object> - <string key="id">8232</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">menu</string> - <reference key="source" ref="203790701"/> - <reference key="destination" ref="673337099"/> - </object> - <string key="id">6810</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="203790701"/> - <reference key="destination" ref="232491680"/> - </object> - <string key="id">6740</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">dataSource</string> - <reference key="source" ref="203790701"/> - <reference key="destination" ref="232491680"/> - </object> - <string key="id">6739</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="7465336"/> - <reference key="destination" ref="232491680"/> - </object> - <string key="id">6802</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="791611345"/> - <reference key="destination" ref="96543456"/> - </object> - <string key="id">6828</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="151160384"/> - <reference key="destination" ref="239767357"/> - </object> - <string key="id">6851</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">initialFirstResponder</string> - <reference key="source" ref="151160384"/> - <reference key="destination" ref="552053126"/> - </object> - <string key="id">6847</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="207250419"/> - <reference key="destination" ref="372615010"/> - </object> - <string key="id">6849</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="372615010"/> - <reference key="destination" ref="552053126"/> - </object> - <string key="id">6850</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="552053126"/> - <reference key="destination" ref="207250419"/> - </object> - <string key="id">6848</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">dataSource</string> - <reference key="source" ref="665534268"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">6899</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="665534268"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">6900</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="35704701"/> - <reference key="destination" ref="677823009"/> - </object> - <string key="id">7026</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="677823009"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">6977</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="677823009"/> - <reference key="destination" ref="256429839"/> - </object> - <string key="id">7017</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="35301577"/> - <reference key="destination" ref="35704701"/> - </object> - <string key="id">6989</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="256429839"/> - <reference key="destination" ref="35301577"/> - </object> - <string key="id">6988</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="208600380"/> - <reference key="destination" ref="876797055"/> - </object> - <string key="id">7007</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="910445056"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">7010</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="910445056"/> - <reference key="destination" ref="208600380"/> - </object> - <string key="id">7019</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="876797055"/> - <reference key="destination" ref="910445056"/> - </object> - <string key="id">7020</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">removeIndex:</string> - <reference key="source" ref="298287912"/> - <reference key="destination" ref="671174106"/> - </object> - <string key="id">7081</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">addIndex:</string> - <reference key="source" ref="298287912"/> - <reference key="destination" ref="389959795"/> - </object> - <string key="id">7080</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">addIndexButton</string> - <reference key="source" ref="298287912"/> - <reference key="destination" ref="389959795"/> - </object> - <string key="id">7076</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">dbDocument</string> - <reference key="source" ref="298287912"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">7074</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">removeIndexButton</string> - <reference key="source" ref="298287912"/> - <reference key="destination" ref="671174106"/> - </object> - <string key="id">7096</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableData</string> - <reference key="source" ref="298287912"/> - <reference key="destination" ref="679691016"/> - </object> - <string key="id">7089</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableStructure</string> - <reference key="source" ref="298287912"/> - <reference key="destination" ref="239767357"/> - </object> - <string key="id">7090</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tablesList</string> - <reference key="source" ref="298287912"/> - <reference key="destination" ref="421424376"/> - </object> - <string key="id">7075</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">removeIndex:</string> - <reference key="source" ref="298287912"/> - <reference key="destination" ref="1064723396"/> - </object> - <string key="id">7082</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">indexesTableView</string> - <reference key="source" ref="298287912"/> - <reference key="destination" ref="71493486"/> - </object> - <string key="id">7079</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBActionConnection" key="connection"> - <string key="label">toggleCollapse:</string> - <reference key="source" ref="77719398"/> - <reference key="destination" ref="245508703"/> - </object> - <string key="id">8024</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">collapseToggleButton</string> - <reference key="source" ref="77719398"/> - <reference key="destination" ref="245508703"/> - </object> - <string key="id">8022</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="77719398"/> - <reference key="destination" ref="227061690"/> - </object> - <string key="id">7337</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="9338668"/> - <reference key="destination" ref="227061690"/> - </object> - <string key="id">7298</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBBindingConnection" key="connection"> - <string key="label">values.CustomQueryMaxHistoryItems</string> - <reference key="source" ref="946631811"/> - <reference key="destination" ref="839838102"/> - <object class="NSNibBindingConnector" key="connector"> - <reference key="NSSource" ref="946631811"/> - <reference key="NSDestination" ref="839838102"/> - <string key="NSLabel">hidden: values.CustomQueryMaxHistoryItems</string> - <string key="NSBinding">hidden</string> - <string key="NSKeyPath">values.CustomQueryMaxHistoryItems</string> - <object class="NSDictionary" key="NSOptions"> - <string key="NS.key.0">NSValueTransformerName</string> - <string key="NS.object.0">NSNegateBoolean</string> - </object> - <int key="NSNibBindingConnectorVersion">2</int> - </object> - </object> - <string key="id">7290</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">dataSource</string> - <reference key="source" ref="628833149"/> - <reference key="destination" ref="227061690"/> - </object> - <string key="id">7305</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="628833149"/> - <reference key="destination" ref="227061690"/> - </object> - <string key="id">7304</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">menu</string> - <reference key="source" ref="628833149"/> - <reference key="destination" ref="112420931"/> - </object> - <string key="id">7479</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBBindingConnection" key="connection"> - <string key="label">values.CustomQueryAutoUppercaseKeywords</string> - <reference key="source" ref="652841032"/> - <reference key="destination" ref="839838102"/> - <object class="NSNibBindingConnector" key="connector"> - <reference key="NSSource" ref="652841032"/> - <reference key="NSDestination" ref="839838102"/> - <string key="NSLabel">value: values.CustomQueryAutoUppercaseKeywords</string> - <string key="NSBinding">value</string> - <string key="NSKeyPath">values.CustomQueryAutoUppercaseKeywords</string> - <int key="NSNibBindingConnectorVersion">2</int> - </object> - </object> - <string key="id">7289</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBBindingConnection" key="connection"> - <string key="label">values.CustomQueryAutoPairCharacters</string> - <reference key="source" ref="45246447"/> - <reference key="destination" ref="839838102"/> - <object class="NSNibBindingConnector" key="connector"> - <reference key="NSSource" ref="45246447"/> - <reference key="NSDestination" ref="839838102"/> - <string key="NSLabel">value: values.CustomQueryAutoPairCharacters</string> - <string key="NSBinding">value</string> - <string key="NSKeyPath">values.CustomQueryAutoPairCharacters</string> - <int key="NSNibBindingConnectorVersion">2</int> - </object> - </object> - <string key="id">7291</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBBindingConnection" key="connection"> - <string key="label">values.CustomQueryAutoIndent</string> - <reference key="source" ref="385179024"/> - <reference key="destination" ref="839838102"/> - <object class="NSNibBindingConnector" key="connector"> - <reference key="NSSource" ref="385179024"/> - <reference key="NSDestination" ref="839838102"/> - <string key="NSLabel">value: values.CustomQueryAutoIndent</string> - <string key="NSBinding">value</string> - <string key="NSKeyPath">values.CustomQueryAutoIndent</string> - <int key="NSNibBindingConnectorVersion">2</int> - </object> - </object> - <string key="id">7295</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBBindingConnection" key="connection"> - <string key="label">values.CustomQueryUpdateAutoHelp</string> - <reference key="source" ref="55951713"/> - <reference key="destination" ref="839838102"/> - <object class="NSNibBindingConnector" key="connector"> - <reference key="NSSource" ref="55951713"/> - <reference key="NSDestination" ref="839838102"/> - <string key="NSLabel">value: values.CustomQueryUpdateAutoHelp</string> - <string key="NSBinding">value</string> - <string key="NSKeyPath">values.CustomQueryUpdateAutoHelp</string> - <int key="NSNibBindingConnectorVersion">2</int> - </object> - </object> - <string key="id">7293</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBBindingConnection" key="connection"> - <string key="label">values.QueryFavoriteReplacesContent</string> - <reference key="source" ref="1020611848"/> - <reference key="destination" ref="839838102"/> - <object class="NSNibBindingConnector" key="connector"> - <reference key="NSSource" ref="1020611848"/> - <reference key="NSDestination" ref="839838102"/> - <string key="NSLabel">value: values.QueryFavoriteReplacesContent</string> - <string key="NSBinding">value</string> - <string key="NSKeyPath">values.QueryFavoriteReplacesContent</string> - <int key="NSNibBindingConnectorVersion">2</int> - </object> - </object> - <string key="id">7294</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBBindingConnection" key="connection"> - <string key="label">values.QueryHistoryReplacesContent</string> - <reference key="source" ref="199616001"/> - <reference key="destination" ref="839838102"/> - <object class="NSNibBindingConnector" key="connector"> - <reference key="NSSource" ref="199616001"/> - <reference key="NSDestination" ref="839838102"/> - <string key="NSLabel">value: values.QueryHistoryReplacesContent</string> - <string key="NSBinding">value</string> - <string key="NSKeyPath">values.QueryHistoryReplacesContent</string> - <int key="NSNibBindingConnectorVersion">2</int> - </object> - </object> - <string key="id">7287</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBBindingConnection" key="connection"> - <string key="label">values.CustomQueryAutoComplete</string> - <reference key="source" ref="541956954"/> - <reference key="destination" ref="839838102"/> - <object class="NSNibBindingConnector" key="connector"> - <reference key="NSSource" ref="541956954"/> - <reference key="NSDestination" ref="839838102"/> - <string key="NSLabel">value: values.CustomQueryAutoComplete</string> - <string key="NSBinding">value</string> - <string key="NSKeyPath">values.CustomQueryAutoComplete</string> - <int key="NSNibBindingConnectorVersion">2</int> - </object> - </object> - <string key="id">7292</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="224969865"/> - <reference key="destination" ref="227061690"/> - </object> - <string key="id">7306</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">view</string> - <reference key="source" ref="515713596"/> - <reference key="destination" ref="979594791"/> - </object> - <string key="id">7303</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="68018697"/> - <reference key="destination" ref="227061690"/> - </object> - <string key="id">7302</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">view</string> - <reference key="source" ref="914705967"/> - <reference key="destination" ref="758231677"/> - </object> - <string key="id">7299</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="856601787"/> - <reference key="destination" ref="239767357"/> - </object> - <string key="id">Jbs-NM-Lzb</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="65801928"/> - <reference key="destination" ref="239767357"/> - </object> - <string key="id">Dcc-ay-7AU</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="828624540"/> - <reference key="destination" ref="188482031"/> - </object> - <string key="id">7697</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">dataSource</string> - <reference key="source" ref="828624540"/> - <reference key="destination" ref="188482031"/> - </object> - <string key="id">7698</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">additionalDragHandleView</string> - <reference key="source" ref="310278688"/> - <reference key="destination" ref="678302833"/> - </object> - <string key="id">7964</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="310278688"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">7732</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="974853574"/> - <reference key="destination" ref="62480485"/> - </object> - <string key="id">7780</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="164726151"/> - <reference key="destination" ref="292161225"/> - </object> - <string key="id">7813</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="585720437"/> - <reference key="destination" ref="143617304"/> - </object> - <string key="id">8011</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBBindingConnection" key="connection"> - <string key="label">values.EditInSheetEnabled</string> - <reference key="source" ref="21519590"/> - <reference key="destination" ref="839838102"/> - <object class="NSNibBindingConnector" key="connector"> - <reference key="NSSource" ref="21519590"/> - <reference key="NSDestination" ref="839838102"/> - <string key="NSLabel">value: values.EditInSheetEnabled</string> - <string key="NSBinding">value</string> - <string key="NSKeyPath">values.EditInSheetEnabled</string> - <int key="NSNibBindingConnectorVersion">2</int> - </object> - </object> - <string key="id">8016</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">initialFirstResponder</string> - <reference key="source" ref="754703764"/> - <reference key="destination" ref="536214448"/> - </object> - <string key="id">8159</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBBindingConnection" key="connection"> - <string key="label">values.FilterTableDefaultOperator</string> - <reference key="source" ref="267932131"/> - <reference key="destination" ref="839838102"/> - <object class="NSNibBindingConnector" key="connector"> - <reference key="NSSource" ref="267932131"/> - <reference key="NSDestination" ref="839838102"/> - <string key="NSLabel">value: values.FilterTableDefaultOperator</string> - <string key="NSBinding">value</string> - <string key="NSKeyPath">values.FilterTableDefaultOperator</string> - <int key="NSNibBindingConnectorVersion">2</int> - </object> - </object> - <string key="id">8167</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">dataSource</string> - <reference key="source" ref="536214448"/> - <reference key="destination" ref="62480485"/> - </object> - <string key="id">8157</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="536214448"/> - <reference key="destination" ref="62480485"/> - </object> - <string key="id">8158</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="148817449"/> - <reference key="destination" ref="62480485"/> - </object> - <string key="id">8208</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">scrollView</string> - <reference key="source" ref="939003537"/> - <reference key="destination" ref="121401505"/> - </object> - <string key="id">8214</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="606708295"/> - <reference key="destination" ref="227061690"/> - </object> - <string key="id">8220</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">scrollView</string> - <reference key="source" ref="193453639"/> - <reference key="destination" ref="924992653"/> - </object> - <string key="id">8231</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="902567272"/> - <reference key="destination" ref="269913528"/> - </object> - <string key="id">8237</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="804444600"/> - <reference key="destination" ref="269913528"/> - </object> - <string key="id">8243</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">customQueryInstance</string> - <reference key="source" ref="995019363"/> - <reference key="destination" ref="227061690"/> - </object> - <string key="id">8259</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBBindingConnection" key="connection"> - <string key="label">values.CustomQueryEditorTextColor</string> - <reference key="source" ref="995019363"/> - <reference key="destination" ref="839838102"/> - <object class="NSNibBindingConnector" key="connector"> - <reference key="NSSource" ref="995019363"/> - <reference key="NSDestination" ref="839838102"/> - <string key="NSLabel">textColor: values.CustomQueryEditorTextColor</string> - <string key="NSBinding">textColor</string> - <string key="NSKeyPath">values.CustomQueryEditorTextColor</string> - <object class="NSDictionary" key="NSOptions"> - <string key="NS.key.0">NSValueTransformerName</string> - <string key="NS.object.0">NSUnarchiveFromData</string> - </object> - <int key="NSNibBindingConnectorVersion">2</int> - </object> - </object> - <string key="id">8258</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tablesListInstance</string> - <reference key="source" ref="995019363"/> - <reference key="destination" ref="421424376"/> - </object> - <string key="id">8262</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">scrollView</string> - <reference key="source" ref="995019363"/> - <reference key="destination" ref="804607013"/> - </object> - <string key="id">8255</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="995019363"/> - <reference key="destination" ref="227061690"/> - </object> - <string key="id">8260</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDocumentInstance</string> - <reference key="source" ref="995019363"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">8261</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="749279002"/> - <reference key="destination" ref="988821764"/> - </object> - <string key="id">8272</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="716757490"/> - <reference key="destination" ref="899887673"/> - </object> - <string key="id">8302</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="403583857"/> - <reference key="destination" ref="716757490"/> - </object> - <string key="id">8301</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="899887673"/> - <reference key="destination" ref="329386404"/> - </object> - <string key="id">8299</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="329386404"/> - <reference key="destination" ref="403583857"/> - </object> - <string key="id">8300</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="897255549"/> - <reference key="destination" ref="174325282"/> - </object> - <string key="id">rFd-07-AiC</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">contentSplitView</string> - <reference key="source" ref="174325282"/> - <reference key="destination" ref="786146577"/> - </object> - <string key="id">KB1-gk-Ssi</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDataInstance</string> - <reference key="source" ref="174325282"/> - <reference key="destination" ref="679691016"/> - </object> - <string key="id">e69-W6-UwN</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tableDocumentInstance</string> - <reference key="source" ref="174325282"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">2Xe-WU-zRw</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">tablesListInstance</string> - <reference key="source" ref="174325282"/> - <reference key="destination" ref="421424376"/> - </object> - <string key="id">byh-Eh-UAv</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">filterRuleEditor</string> - <reference key="source" ref="174325282"/> - <reference key="destination" ref="897255549"/> - </object> - <string key="id">RW4-XM-XQS</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="535859051"/> - <reference key="destination" ref="800783608"/> - </object> - <string key="id">m0B-z4-t6u</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">nextKeyView</string> - <reference key="source" ref="535859051"/> - <reference key="destination" ref="536855438"/> - </object> - <string key="id">Apc-YB-OnC</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="786146577"/> - <reference key="destination" ref="174325282"/> - </object> - <string key="id">28j-fv-HkI</string> - </object> - <object class="IBConnectionRecord"> - <object class="IBOutletConnection" key="connection"> - <string key="label">delegate</string> - <reference key="source" ref="398163780"/> - <reference key="destination" ref="421424376"/> - </object> - <string key="id">FTJ-Fb-vbI</string> - </object> - </array> - <object class="IBMutableOrderedSet" key="objectRecords"> - <array key="orderedObjects"> - <object class="IBObjectRecord"> - <string key="id">0</string> - <array key="object" id="0"/> - <reference key="children" ref="1000044710"/> - <nil key="parent"/> - </object> - <object class="IBObjectRecord"> - <string key="id">-2</string> - <reference key="object" ref="800783608"/> - <reference key="parent" ref="0"/> - <string key="objectName">File's Owner</string> - </object> - <object class="IBObjectRecord"> - <string key="id">-1</string> - <reference key="object" ref="463834704"/> - <reference key="parent" ref="0"/> - <string key="objectName">First Responder</string> - </object> - <object class="IBObjectRecord"> - <string key="id">-3</string> - <reference key="object" ref="608223254"/> - <reference key="parent" ref="0"/> - <string key="objectName">Application</string> - </object> - <object class="IBObjectRecord"> - <string key="id">7043</string> - <reference key="object" ref="173438986"/> - <array class="NSMutableArray" key="children"> - <reference ref="310278688"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Master DB View</string> - </object> - <object class="IBObjectRecord"> - <string key="id">7727</string> - <reference key="object" ref="310278688"/> - <array class="NSMutableArray" key="children"> - <reference ref="841205379"/> - <reference ref="630926746"/> - </array> - <reference key="parent" ref="173438986"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7728</string> - <reference key="object" ref="841205379"/> - <array class="NSMutableArray" key="children"> - <reference ref="220052404"/> - <reference ref="381962579"/> - <reference ref="678302833"/> - <reference ref="99671504"/> - <reference ref="559497073"/> - <reference ref="819189090"/> - <reference ref="466961207"/> - </array> - <reference key="parent" ref="310278688"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6032</string> - <reference key="object" ref="220052404"/> - <array class="NSMutableArray" key="children"> - <reference ref="315394535"/> - <reference ref="1061162984"/> - </array> - <reference key="parent" ref="841205379"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6033</string> - <reference key="object" ref="315394535"/> - <array class="NSMutableArray" key="children"> - <reference ref="152099238"/> - </array> - <reference key="parent" ref="220052404"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6265</string> - <reference key="object" ref="152099238"/> - <array class="NSMutableArray" key="children"> - <reference ref="695889527"/> - <reference ref="217761928"/> - </array> - <reference key="parent" ref="315394535"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6266</string> - <reference key="object" ref="695889527"/> - <array class="NSMutableArray" key="children"> - <reference ref="45537637"/> - <reference ref="440427720"/> - </array> - <reference key="parent" ref="152099238"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6682</string> - <reference key="object" ref="45537637"/> - <array class="NSMutableArray" key="children"> - <reference ref="510684108"/> - <reference ref="36449649"/> - <reference ref="778694607"/> - </array> - <reference key="parent" ref="695889527"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6684</string> - <reference key="object" ref="510684108"/> - <reference key="parent" ref="45537637"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6683</string> - <reference key="object" ref="36449649"/> - <reference key="parent" ref="45537637"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6278</string> - <reference key="object" ref="440427720"/> - <array class="NSMutableArray" key="children"> - <reference ref="249281227"/> - </array> - <reference key="parent" ref="695889527"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6279</string> - <reference key="object" ref="249281227"/> - <reference key="parent" ref="440427720"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6267</string> - <reference key="object" ref="217761928"/> - <array class="NSMutableArray" key="children"> - <reference ref="737277163"/> - </array> - <reference key="parent" ref="152099238"/> - </object> - <object class="IBObjectRecord"> - <string key="id">21</string> - <reference key="object" ref="737277163"/> - <array class="NSMutableArray" key="children"> - <reference ref="769186993"/> - <reference ref="710239831"/> - <reference ref="720354614"/> - </array> - <reference key="parent" ref="217761928"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3916</string> - <reference key="object" ref="769186993"/> - <reference key="parent" ref="737277163"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3915</string> - <reference key="object" ref="710239831"/> - <reference key="parent" ref="737277163"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6034</string> - <reference key="object" ref="1061162984"/> - <array class="NSMutableArray" key="children"> - <reference ref="883675819"/> - <reference ref="980722778"/> - </array> - <reference key="parent" ref="220052404"/> - <string key="objectName">Table Info / Activities View</string> - </object> - <object class="IBObjectRecord"> - <string key="id">7691</string> - <reference key="object" ref="883675819"/> - <array class="NSMutableArray" key="children"> - <reference ref="321115393"/> - <reference ref="29986399"/> - <reference ref="828624540"/> - </array> - <reference key="parent" ref="1061162984"/> - <string key="objectName">Scroll View (Activities Table View)</string> - </object> - <object class="IBObjectRecord"> - <string key="id">7694</string> - <reference key="object" ref="321115393"/> - <reference key="parent" ref="883675819"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7693</string> - <reference key="object" ref="29986399"/> - <reference key="parent" ref="883675819"/> - </object> - <object class="IBObjectRecord"> - <string key="id">4481</string> - <reference key="object" ref="980722778"/> - <array class="NSMutableArray" key="children"> - <reference ref="562900810"/> - <reference ref="735507568"/> - <reference ref="366652030"/> - </array> - <reference key="parent" ref="1061162984"/> - <string key="objectName">Scroll View (Table Info Table View)</string> - </object> - <object class="IBObjectRecord"> - <string key="id">4482</string> - <reference key="object" ref="562900810"/> - <reference key="parent" ref="980722778"/> - </object> - <object class="IBObjectRecord"> - <string key="id">4483</string> - <reference key="object" ref="735507568"/> - <reference key="parent" ref="980722778"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7846</string> - <reference key="object" ref="381962579"/> - <array class="NSMutableArray" key="children"> - <reference ref="227866542"/> - </array> - <reference key="parent" ref="841205379"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7847</string> - <reference key="object" ref="227866542"/> - <reference key="parent" ref="381962579"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7848</string> - <reference key="object" ref="678302833"/> - <array class="NSMutableArray" key="children"> - <reference ref="972774468"/> - </array> - <reference key="parent" ref="841205379"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7849</string> - <reference key="object" ref="972774468"/> - <reference key="parent" ref="678302833"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7850</string> - <reference key="object" ref="99671504"/> - <array class="NSMutableArray" key="children"> - <reference ref="616383319"/> - </array> - <reference key="parent" ref="841205379"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7851</string> - <reference key="object" ref="616383319"/> - <reference key="parent" ref="99671504"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7959</string> - <reference key="object" ref="559497073"/> - <array class="NSMutableArray" key="children"> - <reference ref="204889426"/> - </array> - <reference key="parent" ref="841205379"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7960</string> - <reference key="object" ref="204889426"/> - <reference key="parent" ref="559497073"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7859</string> - <reference key="object" ref="819189090"/> - <array class="NSMutableArray" key="children"> - <reference ref="1070180181"/> - </array> - <reference key="parent" ref="841205379"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7860</string> - <reference key="object" ref="1070180181"/> - <array class="NSMutableArray" key="children"> - <reference ref="136120153"/> - </array> - <reference key="parent" ref="819189090"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7861</string> - <reference key="object" ref="136120153"/> - <array class="NSMutableArray" key="children"> - <reference ref="185872988"/> - <reference ref="767969003"/> - <reference ref="35600651"/> - <reference ref="508046468"/> - <reference ref="34195582"/> - <reference ref="1000459683"/> - <reference ref="414744242"/> - <reference ref="457022029"/> - <reference ref="326741175"/> - <reference ref="1062524995"/> - <reference ref="744514514"/> - <reference ref="363570133"/> - <reference ref="664336387"/> - <reference ref="441784509"/> - </array> - <reference key="parent" ref="1070180181"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7862</string> - <reference key="object" ref="185872988"/> - <reference key="parent" ref="136120153"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7917</string> - <reference key="object" ref="767969003"/> - <reference key="parent" ref="136120153"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7918</string> - <reference key="object" ref="35600651"/> - <reference key="parent" ref="136120153"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7919</string> - <reference key="object" ref="508046468"/> - <reference key="parent" ref="136120153"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7920</string> - <reference key="object" ref="34195582"/> - <reference key="parent" ref="136120153"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7921</string> - <reference key="object" ref="1000459683"/> - <reference key="parent" ref="136120153"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7922</string> - <reference key="object" ref="414744242"/> - <reference key="parent" ref="136120153"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7923</string> - <reference key="object" ref="457022029"/> - <reference key="parent" ref="136120153"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7924</string> - <reference key="object" ref="326741175"/> - <reference key="parent" ref="136120153"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7925</string> - <reference key="object" ref="1062524995"/> - <array class="NSMutableArray" key="children"> - <reference ref="403633916"/> - </array> - <reference key="parent" ref="136120153"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7929</string> - <reference key="object" ref="403633916"/> - <array class="NSMutableArray" key="children"> - <reference ref="990722358"/> - <reference ref="669933272"/> - <reference ref="746120465"/> - </array> - <reference key="parent" ref="1062524995"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7931</string> - <reference key="object" ref="990722358"/> - <reference key="parent" ref="403633916"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7932</string> - <reference key="object" ref="669933272"/> - <reference key="parent" ref="403633916"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7930</string> - <reference key="object" ref="746120465"/> - <reference key="parent" ref="403633916"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7926</string> - <reference key="object" ref="744514514"/> - <reference key="parent" ref="136120153"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7927</string> - <reference key="object" ref="363570133"/> - <reference key="parent" ref="136120153"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7928</string> - <reference key="object" ref="664336387"/> - <reference key="parent" ref="136120153"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7954</string> - <reference key="object" ref="466961207"/> - <array class="NSMutableArray" key="children"> - <reference ref="45851570"/> - </array> - <reference key="parent" ref="841205379"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7955</string> - <reference key="object" ref="45851570"/> - <reference key="parent" ref="466961207"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7729</string> - <reference key="object" ref="630926746"/> - <array class="NSMutableArray" key="children"> - <reference ref="280187924"/> - </array> - <reference key="parent" ref="310278688"/> - </object> - <object class="IBObjectRecord"> - <string key="id">25</string> - <reference key="object" ref="280187924"/> - <array class="NSMutableArray" key="children"> - <reference ref="449203689"/> - <reference ref="565636902"/> - <reference ref="390082212"/> - <reference ref="618922025"/> - <reference ref="770375991"/> - <reference ref="782140269"/> - </array> - <reference key="parent" ref="630926746"/> - </object> - <object class="IBObjectRecord"> - <string key="id">28</string> - <reference key="object" ref="449203689"/> - <array class="NSMutableArray" key="children"> - <reference ref="113573997"/> - </array> - <reference key="parent" ref="280187924"/> - </object> - <object class="IBObjectRecord"> - <string key="id">29</string> - <reference key="object" ref="113573997"/> - <array class="NSMutableArray" key="children"> - <reference ref="204281121"/> - </array> - <reference key="parent" ref="449203689"/> - </object> - <object class="IBObjectRecord"> - <string key="id">674</string> - <reference key="object" ref="204281121"/> - <array class="NSMutableArray" key="children"> - <reference ref="981492694"/> - <reference ref="162304252"/> - </array> - <reference key="parent" ref="113573997"/> - </object> - <object class="IBObjectRecord"> - <string key="id">673</string> - <reference key="object" ref="981492694"/> - <array class="NSMutableArray" key="children"> - <reference ref="978103818"/> - <reference ref="202426453"/> - <reference ref="1005939238"/> - <reference ref="927360703"/> - <reference ref="997907892"/> - <reference ref="1031766954"/> - <reference ref="400841207"/> - <reference ref="617988703"/> - <reference ref="1070311218"/> - </array> - <reference key="parent" ref="204281121"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6009</string> - <reference key="object" ref="978103818"/> - <array class="NSMutableArray" key="children"> - <reference ref="884552548"/> - </array> - <reference key="parent" ref="981492694"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6010</string> - <reference key="object" ref="884552548"/> - <reference key="parent" ref="978103818"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5129</string> - <reference key="object" ref="202426453"/> - <array class="NSMutableArray" key="children"> - <reference ref="231240181"/> - </array> - <reference key="parent" ref="981492694"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5130</string> - <reference key="object" ref="231240181"/> - <reference key="parent" ref="202426453"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8025</string> - <reference key="object" ref="1005939238"/> - <array class="NSMutableArray" key="children"> - <reference ref="550184118"/> - </array> - <reference key="parent" ref="981492694"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8026</string> - <reference key="object" ref="550184118"/> - <array class="NSMutableArray" key="children"> - <reference ref="56045332"/> - </array> - <reference key="parent" ref="1005939238"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8027</string> - <reference key="object" ref="56045332"/> - <array class="NSMutableArray" key="children"> - <reference ref="1027654780"/> - <reference ref="548236546"/> - </array> - <reference key="parent" ref="550184118"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8028</string> - <reference key="object" ref="1027654780"/> - <reference key="parent" ref="56045332"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8055</string> - <reference key="object" ref="548236546"/> - <array class="NSMutableArray" key="children"> - <reference ref="142860202"/> - </array> - <reference key="parent" ref="56045332"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8056</string> - <reference key="object" ref="142860202"/> - <array class="NSMutableArray" key="children"> - <reference ref="428444087"/> - <reference ref="589031743"/> - <reference ref="45971758"/> - <reference ref="574879768"/> - </array> - <reference key="parent" ref="548236546"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8057</string> - <reference key="object" ref="428444087"/> - <reference key="parent" ref="142860202"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8059</string> - <reference key="object" ref="589031743"/> - <reference key="parent" ref="142860202"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8060</string> - <reference key="object" ref="45971758"/> - <reference key="parent" ref="142860202"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8058</string> - <reference key="object" ref="574879768"/> - <reference key="parent" ref="142860202"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5138</string> - <reference key="object" ref="927360703"/> - <array class="NSMutableArray" key="children"> - <reference ref="545699528"/> - </array> - <reference key="parent" ref="981492694"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5139</string> - <reference key="object" ref="545699528"/> - <reference key="parent" ref="927360703"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5136</string> - <reference key="object" ref="997907892"/> - <array class="NSMutableArray" key="children"> - <reference ref="822972303"/> - </array> - <reference key="parent" ref="981492694"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5137</string> - <reference key="object" ref="822972303"/> - <reference key="parent" ref="997907892"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5134</string> - <reference key="object" ref="1031766954"/> - <array class="NSMutableArray" key="children"> - <reference ref="815322347"/> - </array> - <reference key="parent" ref="981492694"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5135</string> - <reference key="object" ref="815322347"/> - <reference key="parent" ref="1031766954"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5131</string> - <reference key="object" ref="400841207"/> - <array class="NSMutableArray" key="children"> - <reference ref="51440813"/> - </array> - <reference key="parent" ref="981492694"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5132</string> - <reference key="object" ref="51440813"/> - <reference key="parent" ref="400841207"/> - </object> - <object class="IBObjectRecord"> - <string key="id">231</string> - <reference key="object" ref="617988703"/> - <array class="NSMutableArray" key="children"> - <reference ref="1057730379"/> - <reference ref="346829497"/> - <reference ref="594274975"/> - <reference ref="977333304"/> - </array> - <reference key="parent" ref="981492694"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3925</string> - <reference key="object" ref="1057730379"/> - <reference key="parent" ref="617988703"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3924</string> - <reference key="object" ref="346829497"/> - <reference key="parent" ref="617988703"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3926</string> - <reference key="object" ref="594274975"/> - <reference key="parent" ref="617988703"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7457</string> - <reference key="object" ref="1070311218"/> - <array class="NSMutableArray" key="children"> - <reference ref="605356234"/> - </array> - <reference key="parent" ref="981492694"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7458</string> - <reference key="object" ref="605356234"/> - <reference key="parent" ref="1070311218"/> - </object> - <object class="IBObjectRecord"> - <string key="id">672</string> - <reference key="object" ref="162304252"/> - <array class="NSMutableArray" key="children"> - <reference ref="1007102250"/> - <reference ref="671174106"/> - <reference ref="385306370"/> - <reference ref="389959795"/> - <reference ref="601320525"/> - <reference ref="955470299"/> - </array> - <reference key="parent" ref="204281121"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5148</string> - <reference key="object" ref="1007102250"/> - <array class="NSMutableArray" key="children"> - <reference ref="153461887"/> - </array> - <reference key="parent" ref="162304252"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5149</string> - <reference key="object" ref="153461887"/> - <reference key="parent" ref="1007102250"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5152</string> - <reference key="object" ref="671174106"/> - <array class="NSMutableArray" key="children"> - <reference ref="1016102946"/> - </array> - <reference key="parent" ref="162304252"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5153</string> - <reference key="object" ref="1016102946"/> - <reference key="parent" ref="671174106"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5151</string> - <reference key="object" ref="385306370"/> - <array class="NSMutableArray" key="children"> - <reference ref="432985613"/> - </array> - <reference key="parent" ref="162304252"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5154</string> - <reference key="object" ref="432985613"/> - <reference key="parent" ref="385306370"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5150</string> - <reference key="object" ref="389959795"/> - <array class="NSMutableArray" key="children"> - <reference ref="144441460"/> - </array> - <reference key="parent" ref="162304252"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5155</string> - <reference key="object" ref="144441460"/> - <reference key="parent" ref="389959795"/> - </object> - <object class="IBObjectRecord"> - <string key="id">287</string> - <reference key="object" ref="601320525"/> - <array class="NSMutableArray" key="children"> - <reference ref="230182748"/> - <reference ref="673560219"/> - <reference ref="262774116"/> - <reference ref="71493486"/> - </array> - <reference key="parent" ref="162304252"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3922</string> - <reference key="object" ref="230182748"/> - <reference key="parent" ref="601320525"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3921</string> - <reference key="object" ref="673560219"/> - <reference key="parent" ref="601320525"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3923</string> - <reference key="object" ref="262774116"/> - <reference key="parent" ref="601320525"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6024</string> - <reference key="object" ref="955470299"/> - <array class="NSMutableArray" key="children"> - <reference ref="82207312"/> - <reference ref="362266093"/> - </array> - <reference key="parent" ref="162304252"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6027</string> - <reference key="object" ref="82207312"/> - <array class="NSMutableArray" key="children"> - <reference ref="962970972"/> - </array> - <reference key="parent" ref="955470299"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6028</string> - <reference key="object" ref="962970972"/> - <reference key="parent" ref="82207312"/> - </object> - <object class="IBObjectRecord"> - <string key="id">4503</string> - <reference key="object" ref="362266093"/> - <array class="NSMutableArray" key="children"> - <reference ref="632600614"/> - </array> - <reference key="parent" ref="955470299"/> - </object> - <object class="IBObjectRecord"> - <string key="id">4504</string> - <reference key="object" ref="632600614"/> - <reference key="parent" ref="362266093"/> - </object> - <object class="IBObjectRecord"> - <string key="id">26</string> - <reference key="object" ref="565636902"/> - <array class="NSMutableArray" key="children"> - <reference ref="100283475"/> - </array> - <reference key="parent" ref="280187924"/> - </object> - <object class="IBObjectRecord"> - <string key="id">27</string> - <reference key="object" ref="100283475"/> - <array class="NSMutableArray" key="children"> - <reference ref="115869327"/> - <reference ref="744169708"/> - <reference ref="947593509"/> - <reference ref="140315871"/> - <reference ref="1003637841"/> - <reference ref="20233805"/> - <reference ref="72511287"/> - <reference ref="622694405"/> - <reference ref="1065343609"/> - <reference ref="957548798"/> - <reference ref="786146577"/> - </array> - <reference key="parent" ref="565636902"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5175</string> - <reference key="object" ref="115869327"/> - <array class="NSMutableArray" key="children"> - <reference ref="686397415"/> - </array> - <reference key="parent" ref="100283475"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5184</string> - <reference key="object" ref="686397415"/> - <reference key="parent" ref="115869327"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5176</string> - <reference key="object" ref="744169708"/> - <array class="NSMutableArray" key="children"> - <reference ref="567529982"/> - </array> - <reference key="parent" ref="100283475"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5183</string> - <reference key="object" ref="567529982"/> - <reference key="parent" ref="744169708"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5177</string> - <reference key="object" ref="947593509"/> - <array class="NSMutableArray" key="children"> - <reference ref="558901501"/> - </array> - <reference key="parent" ref="100283475"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5182</string> - <reference key="object" ref="558901501"/> - <reference key="parent" ref="947593509"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5178</string> - <reference key="object" ref="140315871"/> - <array class="NSMutableArray" key="children"> - <reference ref="220876846"/> - </array> - <reference key="parent" ref="100283475"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5181</string> - <reference key="object" ref="220876846"/> - <reference key="parent" ref="140315871"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5179</string> - <reference key="object" ref="1003637841"/> - <array class="NSMutableArray" key="children"> - <reference ref="949491561"/> - </array> - <reference key="parent" ref="100283475"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5180</string> - <reference key="object" ref="949491561"/> - <reference key="parent" ref="1003637841"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5201</string> - <reference key="object" ref="20233805"/> - <array class="NSMutableArray" key="children"> - <reference ref="786767043"/> - </array> - <reference key="parent" ref="100283475"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5202</string> - <reference key="object" ref="786767043"/> - <reference key="parent" ref="20233805"/> - </object> - <object class="IBObjectRecord"> - <string key="id">261</string> - <reference key="object" ref="72511287"/> - <array class="NSMutableArray" key="children"> - <reference ref="119907492"/> - </array> - <reference key="parent" ref="100283475"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3759</string> - <reference key="object" ref="119907492"/> - <reference key="parent" ref="72511287"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6647</string> - <reference key="object" ref="622694405"/> - <array class="NSMutableArray" key="children"> - <reference ref="492133055"/> - </array> - <reference key="parent" ref="100283475"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6648</string> - <reference key="object" ref="492133055"/> - <reference key="parent" ref="622694405"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6650</string> - <reference key="object" ref="1065343609"/> - <array class="NSMutableArray" key="children"> - <reference ref="991653471"/> - </array> - <reference key="parent" ref="100283475"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6651</string> - <reference key="object" ref="991653471"/> - <reference key="parent" ref="1065343609"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6653</string> - <reference key="object" ref="957548798"/> - <array class="NSMutableArray" key="children"> - <reference ref="534650734"/> - </array> - <reference key="parent" ref="100283475"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6654</string> - <reference key="object" ref="534650734"/> - <reference key="parent" ref="957548798"/> - </object> - <object class="IBObjectRecord"> - <string key="id">yTv-Lq-Y3H</string> - <reference key="object" ref="786146577"/> - <array class="NSMutableArray" key="children"> - <reference ref="134459988"/> - <reference ref="527054400"/> - </array> - <reference key="parent" ref="100283475"/> - </object> - <object class="IBObjectRecord"> - <string key="id">gSO-0R-Xdc</string> - <reference key="object" ref="134459988"/> - <array class="NSMutableArray" key="children"> - <reference ref="16186465"/> - <reference ref="815051235"/> - </array> - <reference key="parent" ref="786146577"/> - </object> - <object class="IBObjectRecord"> - <string key="id">CIQ-tc-1Fn</string> - <reference key="object" ref="16186465"/> - <array class="NSMutableArray" key="children"> - <reference ref="497073944"/> - <reference ref="287875968"/> - <reference ref="897255549"/> - </array> - <reference key="parent" ref="134459988"/> - </object> - <object class="IBObjectRecord"> - <string key="id">dIO-Od-K6g</string> - <reference key="object" ref="497073944"/> - <reference key="parent" ref="16186465"/> - </object> - <object class="IBObjectRecord"> - <string key="id">wlW-vM-FUZ</string> - <reference key="object" ref="287875968"/> - <reference key="parent" ref="16186465"/> - </object> - <object class="IBObjectRecord"> - <string key="id">gTZ-sd-Ef7</string> - <reference key="object" ref="815051235"/> - <array class="NSMutableArray" key="children"> - <reference ref="480914227"/> - </array> - <reference key="parent" ref="134459988"/> - </object> - <object class="IBObjectRecord"> - <string key="id">khN-PI-iEA</string> - <reference key="object" ref="480914227"/> - <reference key="parent" ref="815051235"/> - </object> - <object class="IBObjectRecord"> - <string key="id">AjX-OA-b5u</string> - <reference key="object" ref="527054400"/> - <array class="NSMutableArray" key="children"> - <reference ref="402546253"/> - <reference ref="332657589"/> - <reference ref="974853574"/> - <reference ref="526437487"/> - </array> - <reference key="parent" ref="786146577"/> - </object> - <object class="IBObjectRecord"> - <string key="id">858</string> - <reference key="object" ref="402546253"/> - <reference key="parent" ref="527054400"/> - </object> - <object class="IBObjectRecord"> - <string key="id">4676</string> - <reference key="object" ref="332657589"/> - <array class="NSMutableArray" key="children"> - <reference ref="1037504042"/> - </array> - <reference key="parent" ref="527054400"/> - </object> - <object class="IBObjectRecord"> - <string key="id">4677</string> - <reference key="object" ref="1037504042"/> - <reference key="parent" ref="332657589"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7777</string> - <reference key="object" ref="974853574"/> - <array class="NSMutableArray" key="children"> - <reference ref="548981602"/> - <reference ref="56200808"/> - </array> - <reference key="parent" ref="527054400"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7778</string> - <reference key="object" ref="548981602"/> - <array class="NSMutableArray" key="children"> - <reference ref="953920141"/> - <reference ref="805164801"/> - <reference ref="687258326"/> - </array> - <reference key="parent" ref="974853574"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3971</string> - <reference key="object" ref="953920141"/> - <array class="NSMutableArray" key="children"> - <reference ref="983853423"/> - </array> - <reference key="parent" ref="548981602"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3972</string> - <reference key="object" ref="983853423"/> - <reference key="parent" ref="953920141"/> - </object> - <object class="IBObjectRecord"> - <string key="id">146</string> - <reference key="object" ref="805164801"/> - <array class="NSMutableArray" key="children"> - <reference ref="190413350"/> - </array> - <reference key="parent" ref="548981602"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3754</string> - <reference key="object" ref="190413350"/> - <array class="NSMutableArray" key="children"> - <reference ref="1024026123"/> - </array> - <reference key="parent" ref="805164801"/> - </object> - <object class="IBObjectRecord"> - <string key="id">147</string> - <reference key="object" ref="1024026123"/> - <array class="NSMutableArray" key="children"> - <reference ref="877675088"/> - </array> - <reference key="parent" ref="190413350"/> - </object> - <object class="IBObjectRecord"> - <string key="id">144</string> - <reference key="object" ref="877675088"/> - <reference key="parent" ref="1024026123"/> - </object> - <object class="IBObjectRecord"> - <string key="id">156</string> - <reference key="object" ref="687258326"/> - <array class="NSMutableArray" key="children"> - <reference ref="76433614"/> - </array> - <reference key="parent" ref="548981602"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3755</string> - <reference key="object" ref="76433614"/> - <array class="NSMutableArray" key="children"> - <reference ref="664849929"/> - </array> - <reference key="parent" ref="687258326"/> - </object> - <object class="IBObjectRecord"> - <string key="id">157</string> - <reference key="object" ref="664849929"/> - <array class="NSMutableArray" key="children"> - <reference ref="357684212"/> - </array> - <reference key="parent" ref="76433614"/> - </object> - <object class="IBObjectRecord"> - <string key="id">154</string> - <reference key="object" ref="357684212"/> - <reference key="parent" ref="664849929"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7779</string> - <reference key="object" ref="56200808"/> - <array class="NSMutableArray" key="children"> - <reference ref="316472124"/> - <reference ref="953677073"/> - <reference ref="182013136"/> - <reference ref="426625670"/> - </array> - <reference key="parent" ref="974853574"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6371</string> - <reference key="object" ref="316472124"/> - <array class="NSMutableArray" key="children"> - <reference ref="769252744"/> - </array> - <reference key="parent" ref="56200808"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6372</string> - <reference key="object" ref="769252744"/> - <reference key="parent" ref="316472124"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6369</string> - <reference key="object" ref="953677073"/> - <array class="NSMutableArray" key="children"> - <reference ref="579032529"/> - </array> - <reference key="parent" ref="56200808"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6370</string> - <reference key="object" ref="579032529"/> - <reference key="parent" ref="953677073"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6364</string> - <reference key="object" ref="182013136"/> - <array class="NSMutableArray" key="children"> - <reference ref="870995440"/> - </array> - <reference key="parent" ref="56200808"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6365</string> - <reference key="object" ref="870995440"/> - <reference key="parent" ref="182013136"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3963</string> - <reference key="object" ref="426625670"/> - <array class="NSMutableArray" key="children"> - <reference ref="837725116"/> - </array> - <reference key="parent" ref="56200808"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3964</string> - <reference key="object" ref="837725116"/> - <reference key="parent" ref="426625670"/> - </object> - <object class="IBObjectRecord"> - <string key="id">35</string> - <reference key="object" ref="526437487"/> - <array class="NSMutableArray" key="children"> - <reference ref="759845062"/> - <reference ref="849754709"/> - <reference ref="357277343"/> - <reference ref="589548204"/> - </array> - <reference key="parent" ref="527054400"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3919</string> - <reference key="object" ref="759845062"/> - <reference key="parent" ref="526437487"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3918</string> - <reference key="object" ref="849754709"/> - <reference key="parent" ref="526437487"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3920</string> - <reference key="object" ref="357277343"/> - <reference key="parent" ref="526437487"/> - </object> - <object class="IBObjectRecord"> - <string key="id">119</string> - <reference key="object" ref="390082212"/> - <array class="NSMutableArray" key="children"> - <reference ref="950160581"/> - </array> - <reference key="parent" ref="280187924"/> - </object> - <object class="IBObjectRecord"> - <string key="id">120</string> - <reference key="object" ref="950160581"/> - <array class="NSMutableArray" key="children"> - <reference ref="582682244"/> - <reference ref="1057125714"/> - <reference ref="245508703"/> - <reference ref="21519590"/> - <reference ref="77719398"/> - <reference ref="93347433"/> - </array> - <reference key="parent" ref="390082212"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7965</string> - <reference key="object" ref="582682244"/> - <array class="NSMutableArray" key="children"> - <reference ref="680485591"/> - </array> - <reference key="parent" ref="950160581"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7966</string> - <reference key="object" ref="680485591"/> - <reference key="parent" ref="582682244"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7975</string> - <reference key="object" ref="1057125714"/> - <array class="NSMutableArray" key="children"> - <reference ref="402856244"/> - </array> - <reference key="parent" ref="950160581"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7976</string> - <reference key="object" ref="402856244"/> - <array class="NSMutableArray" key="children"> - <reference ref="899617199"/> - </array> - <reference key="parent" ref="1057125714"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7977</string> - <reference key="object" ref="899617199"/> - <array class="NSMutableArray" key="children"> - <reference ref="342750345"/> - <reference ref="579391886"/> - </array> - <reference key="parent" ref="402856244"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7978</string> - <reference key="object" ref="342750345"/> - <reference key="parent" ref="899617199"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8005</string> - <reference key="object" ref="579391886"/> - <array class="NSMutableArray" key="children"> - <reference ref="585720437"/> - </array> - <reference key="parent" ref="899617199"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8006</string> - <reference key="object" ref="585720437"/> - <array class="NSMutableArray" key="children"> - <reference ref="734890802"/> - <reference ref="591735120"/> - </array> - <reference key="parent" ref="579391886"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8008</string> - <reference key="object" ref="734890802"/> - <reference key="parent" ref="585720437"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8007</string> - <reference key="object" ref="591735120"/> - <reference key="parent" ref="585720437"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7970</string> - <reference key="object" ref="245508703"/> - <array class="NSMutableArray" key="children"> - <reference ref="393490969"/> - </array> - <reference key="parent" ref="950160581"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7971</string> - <reference key="object" ref="393490969"/> - <reference key="parent" ref="245508703"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8012</string> - <reference key="object" ref="21519590"/> - <array class="NSMutableArray" key="children"> - <reference ref="911724772"/> - </array> - <reference key="parent" ref="950160581"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8013</string> - <reference key="object" ref="911724772"/> - <reference key="parent" ref="21519590"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7206</string> - <reference key="object" ref="77719398"/> - <array class="NSMutableArray" key="children"> - <reference ref="446923801"/> - <reference ref="105597532"/> - </array> - <reference key="parent" ref="950160581"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7207</string> - <reference key="object" ref="446923801"/> - <array class="NSMutableArray" key="children"> - <reference ref="9338668"/> - </array> - <reference key="parent" ref="77719398"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7209</string> - <reference key="object" ref="9338668"/> - <array class="NSMutableArray" key="children"> - <reference ref="154150014"/> - <reference ref="1045056406"/> - </array> - <reference key="parent" ref="446923801"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7210</string> - <reference key="object" ref="154150014"/> - <array class="NSMutableArray" key="children"> - <reference ref="804607013"/> - </array> - <reference key="parent" ref="9338668"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8251</string> - <reference key="object" ref="804607013"/> - <array class="NSMutableArray" key="children"> - <reference ref="103288676"/> - <reference ref="1058351455"/> - <reference ref="995019363"/> - </array> - <reference key="parent" ref="154150014"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8253</string> - <reference key="object" ref="103288676"/> - <reference key="parent" ref="804607013"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8252</string> - <reference key="object" ref="1058351455"/> - <reference key="parent" ref="804607013"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7211</string> - <reference key="object" ref="1045056406"/> - <array class="NSMutableArray" key="children"> - <reference ref="53884609"/> - <reference ref="302688264"/> - <reference ref="1011012479"/> - <reference ref="752414392"/> - <reference ref="822332749"/> - <reference ref="946631811"/> - </array> - <reference key="parent" ref="9338668"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7222</string> - <reference key="object" ref="53884609"/> - <array class="NSMutableArray" key="children"> - <reference ref="939189497"/> - </array> - <reference key="parent" ref="1045056406"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7230</string> - <reference key="object" ref="939189497"/> - <reference key="parent" ref="53884609"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7221</string> - <reference key="object" ref="302688264"/> - <array class="NSMutableArray" key="children"> - <reference ref="364838886"/> - </array> - <reference key="parent" ref="1045056406"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7231</string> - <reference key="object" ref="364838886"/> - <array class="NSMutableArray" key="children"> - <reference ref="1011773814"/> - </array> - <reference key="parent" ref="302688264"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7232</string> - <reference key="object" ref="1011773814"/> - <array class="NSMutableArray" key="children"> - <reference ref="456837278"/> - <reference ref="286715853"/> - <reference ref="1064501839"/> - <reference ref="199616001"/> - <reference ref="660953252"/> - <reference ref="1020611848"/> - <reference ref="869205956"/> - <reference ref="766303892"/> - <reference ref="213433712"/> - <reference ref="447780045"/> - <reference ref="469260279"/> - <reference ref="57130105"/> - <reference ref="990629311"/> - <reference ref="192567662"/> - <reference ref="144797562"/> - <reference ref="385179024"/> - <reference ref="45246447"/> - <reference ref="652841032"/> - <reference ref="541956954"/> - <reference ref="55951713"/> - </array> - <reference key="parent" ref="364838886"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7247</string> - <reference key="object" ref="456837278"/> - <reference key="parent" ref="1011773814"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7243</string> - <reference key="object" ref="286715853"/> - <reference key="parent" ref="1011773814"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7242</string> - <reference key="object" ref="1064501839"/> - <reference key="parent" ref="1011773814"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7253</string> - <reference key="object" ref="199616001"/> - <reference key="parent" ref="1011773814"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7241</string> - <reference key="object" ref="660953252"/> - <reference key="parent" ref="1011773814"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7251</string> - <reference key="object" ref="1020611848"/> - <reference key="parent" ref="1011773814"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7252</string> - <reference key="object" ref="869205956"/> - <reference key="parent" ref="1011773814"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7240</string> - <reference key="object" ref="766303892"/> - <reference key="parent" ref="1011773814"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7239</string> - <reference key="object" ref="213433712"/> - <reference key="parent" ref="1011773814"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7249</string> - <reference key="object" ref="447780045"/> - <reference key="parent" ref="1011773814"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7250</string> - <reference key="object" ref="469260279"/> - <reference key="parent" ref="1011773814"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7238</string> - <reference key="object" ref="57130105"/> - <reference key="parent" ref="1011773814"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7255</string> - <reference key="object" ref="990629311"/> - <array class="NSMutableArray" key="children"> - <reference ref="742637004"/> - </array> - <reference key="parent" ref="1011773814"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7256</string> - <reference key="object" ref="742637004"/> - <array class="NSMutableArray" key="children"> - <reference ref="500992522"/> - <reference ref="918336131"/> - <reference ref="264393634"/> - </array> - <reference key="parent" ref="990629311"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7257</string> - <reference key="object" ref="500992522"/> - <reference key="parent" ref="742637004"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7258</string> - <reference key="object" ref="918336131"/> - <reference key="parent" ref="742637004"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7259</string> - <reference key="object" ref="264393634"/> - <reference key="parent" ref="742637004"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7237</string> - <reference key="object" ref="192567662"/> - <reference key="parent" ref="1011773814"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7233</string> - <reference key="object" ref="144797562"/> - <reference key="parent" ref="1011773814"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7236</string> - <reference key="object" ref="385179024"/> - <reference key="parent" ref="1011773814"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7235</string> - <reference key="object" ref="45246447"/> - <reference key="parent" ref="1011773814"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7234</string> - <reference key="object" ref="652841032"/> - <reference key="parent" ref="1011773814"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7254</string> - <reference key="object" ref="541956954"/> - <reference key="parent" ref="1011773814"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7248</string> - <reference key="object" ref="55951713"/> - <reference key="parent" ref="1011773814"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7218</string> - <reference key="object" ref="1011012479"/> - <array class="NSMutableArray" key="children"> - <reference ref="564853010"/> - </array> - <reference key="parent" ref="1045056406"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7262</string> - <reference key="object" ref="564853010"/> - <array class="NSMutableArray" key="children"> - <reference ref="224969865"/> - </array> - <reference key="parent" ref="1011012479"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7263</string> - <reference key="object" ref="224969865"/> - <array class="NSMutableArray" key="children"> - <reference ref="355501218"/> - <reference ref="1050766707"/> - <reference ref="234421740"/> - <reference ref="1022664845"/> - <reference ref="932988434"/> - <reference ref="515713596"/> - <reference ref="625552275"/> - </array> - <reference key="parent" ref="564853010"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7264</string> - <reference key="object" ref="355501218"/> - <reference key="parent" ref="224969865"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7265</string> - <reference key="object" ref="1050766707"/> - <reference key="parent" ref="224969865"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7269</string> - <reference key="object" ref="234421740"/> - <reference key="parent" ref="224969865"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7266</string> - <reference key="object" ref="1022664845"/> - <reference key="parent" ref="224969865"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7267</string> - <reference key="object" ref="932988434"/> - <reference key="parent" ref="224969865"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7268</string> - <reference key="object" ref="515713596"/> - <reference key="parent" ref="224969865"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7270</string> - <reference key="object" ref="625552275"/> - <reference key="parent" ref="224969865"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7217</string> - <reference key="object" ref="946631811"/> - <array class="NSMutableArray" key="children"> - <reference ref="203451275"/> - </array> - <reference key="parent" ref="1045056406"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7271</string> - <reference key="object" ref="203451275"/> - <array class="NSMutableArray" key="children"> - <reference ref="68018697"/> - </array> - <reference key="parent" ref="946631811"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7272</string> - <reference key="object" ref="68018697"/> - <array class="NSMutableArray" key="children"> - <reference ref="805187535"/> - <reference ref="371986622"/> - <reference ref="550977381"/> - <reference ref="731432810"/> - <reference ref="93362483"/> - <reference ref="914705967"/> - <reference ref="822215583"/> - </array> - <reference key="parent" ref="203451275"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7273</string> - <reference key="object" ref="805187535"/> - <reference key="parent" ref="68018697"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7279</string> - <reference key="object" ref="371986622"/> - <reference key="parent" ref="68018697"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7276</string> - <reference key="object" ref="550977381"/> - <reference key="parent" ref="68018697"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7277</string> - <reference key="object" ref="731432810"/> - <reference key="parent" ref="68018697"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7278</string> - <reference key="object" ref="93362483"/> - <reference key="parent" ref="68018697"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7274</string> - <reference key="object" ref="914705967"/> - <reference key="parent" ref="68018697"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7275</string> - <reference key="object" ref="822215583"/> - <reference key="parent" ref="68018697"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7223</string> - <reference key="object" ref="752414392"/> - <array class="NSMutableArray" key="children"> - <reference ref="1031686395"/> - <reference ref="556042083"/> - <reference ref="603882466"/> - <reference ref="628833149"/> - </array> - <reference key="parent" ref="1045056406"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7226</string> - <reference key="object" ref="1031686395"/> - <reference key="parent" ref="752414392"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7225</string> - <reference key="object" ref="556042083"/> - <reference key="parent" ref="752414392"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7227</string> - <reference key="object" ref="603882466"/> - <reference key="parent" ref="752414392"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8316</string> - <reference key="object" ref="822332749"/> - <array class="NSMutableArray" key="children"> - <reference ref="924991654"/> - </array> - <reference key="parent" ref="1045056406"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8317</string> - <reference key="object" ref="924991654"/> - <array class="NSMutableArray" key="children"> - <reference ref="419759801"/> - </array> - <reference key="parent" ref="822332749"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8318</string> - <reference key="object" ref="419759801"/> - <array class="NSMutableArray" key="children"> - <reference ref="327623453"/> - <reference ref="800429709"/> - <reference ref="184409066"/> - <reference ref="66267300"/> - <reference ref="777403568"/> - </array> - <reference key="parent" ref="924991654"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8319</string> - <reference key="object" ref="327623453"/> - <reference key="parent" ref="419759801"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8323</string> - <reference key="object" ref="800429709"/> - <reference key="parent" ref="419759801"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8327</string> - <reference key="object" ref="184409066"/> - <reference key="parent" ref="419759801"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8324</string> - <reference key="object" ref="66267300"/> - <reference key="parent" ref="419759801"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8321</string> - <reference key="object" ref="777403568"/> - <reference key="parent" ref="419759801"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7208</string> - <reference key="object" ref="105597532"/> - <array class="NSMutableArray" key="children"> - <reference ref="561268593"/> - <reference ref="663912545"/> - </array> - <reference key="parent" ref="77719398"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7429</string> - <reference key="object" ref="561268593"/> - <array class="NSMutableArray" key="children"> - <reference ref="779758898"/> - </array> - <reference key="parent" ref="105597532"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7430</string> - <reference key="object" ref="779758898"/> - <reference key="parent" ref="561268593"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8245</string> - <reference key="object" ref="663912545"/> - <array class="NSMutableArray" key="children"> - <reference ref="865629592"/> - <reference ref="622087604"/> - <reference ref="767200221"/> - </array> - <reference key="parent" ref="105597532"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8247</string> - <reference key="object" ref="865629592"/> - <reference key="parent" ref="663912545"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8246</string> - <reference key="object" ref="622087604"/> - <reference key="parent" ref="663912545"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7967</string> - <reference key="object" ref="93347433"/> - <array class="NSMutableArray" key="children"> - <reference ref="316003741"/> - </array> - <reference key="parent" ref="950160581"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7968</string> - <reference key="object" ref="316003741"/> - <reference key="parent" ref="93347433"/> - </object> - <object class="IBObjectRecord"> - <string key="id">1245</string> - <reference key="object" ref="618922025"/> - <array class="NSMutableArray" key="children"> - <reference ref="278510490"/> - </array> - <reference key="parent" ref="280187924"/> - </object> - <object class="IBObjectRecord"> - <string key="id">1246</string> - <reference key="object" ref="278510490"/> - <array class="NSMutableArray" key="children"> - <reference ref="420718918"/> - <reference ref="592029739"/> - <reference ref="1054128943"/> - <reference ref="63508502"/> - <reference ref="242316182"/> - <reference ref="526261346"/> - <reference ref="830707723"/> - <reference ref="937658032"/> - <reference ref="820725497"/> - <reference ref="743309567"/> - <reference ref="1000632746"/> - <reference ref="943922923"/> - <reference ref="410504890"/> - <reference ref="369069279"/> - <reference ref="735808692"/> - <reference ref="503851323"/> - <reference ref="647578769"/> - <reference ref="82785785"/> - <reference ref="127338398"/> - <reference ref="408386519"/> - <reference ref="1043559038"/> - <reference ref="999015886"/> - <reference ref="3304071"/> - <reference ref="776897844"/> - <reference ref="791684674"/> - <reference ref="124896395"/> - <reference ref="812921916"/> - <reference ref="522385452"/> - <reference ref="611328602"/> - <reference ref="232041442"/> - </array> - <reference key="parent" ref="618922025"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5904</string> - <reference key="object" ref="420718918"/> - <array class="NSMutableArray" key="children"> - <reference ref="697228900"/> - <reference ref="807082629"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5905</string> - <reference key="object" ref="697228900"/> - <array class="NSMutableArray" key="children"> - <reference ref="839835928"/> - <reference ref="834551573"/> - </array> - <reference key="parent" ref="420718918"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5809</string> - <reference key="object" ref="839835928"/> - <array class="NSMutableArray" key="children"> - <reference ref="191751479"/> - </array> - <reference key="parent" ref="697228900"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5810</string> - <reference key="object" ref="191751479"/> - <reference key="parent" ref="839835928"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8233</string> - <reference key="object" ref="834551573"/> - <array class="NSMutableArray" key="children"> - <reference ref="301562599"/> - <reference ref="582113763"/> - <reference ref="902567272"/> - </array> - <reference key="parent" ref="697228900"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8235</string> - <reference key="object" ref="301562599"/> - <reference key="parent" ref="834551573"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8234</string> - <reference key="object" ref="582113763"/> - <reference key="parent" ref="834551573"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5906</string> - <reference key="object" ref="807082629"/> - <array class="NSMutableArray" key="children"> - <reference ref="473337782"/> - <reference ref="866412611"/> - </array> - <reference key="parent" ref="420718918"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5828</string> - <reference key="object" ref="473337782"/> - <array class="NSMutableArray" key="children"> - <reference ref="456332788"/> - </array> - <reference key="parent" ref="807082629"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5829</string> - <reference key="object" ref="456332788"/> - <reference key="parent" ref="473337782"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8239</string> - <reference key="object" ref="866412611"/> - <array class="NSMutableArray" key="children"> - <reference ref="492861350"/> - <reference ref="486433207"/> - <reference ref="804444600"/> - </array> - <reference key="parent" ref="807082629"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8241</string> - <reference key="object" ref="492861350"/> - <reference key="parent" ref="866412611"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8240</string> - <reference key="object" ref="486433207"/> - <reference key="parent" ref="866412611"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5750</string> - <reference key="object" ref="592029739"/> - <array class="NSMutableArray" key="children"> - <reference ref="46798413"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5751</string> - <reference key="object" ref="46798413"/> - <reference key="parent" ref="592029739"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5768</string> - <reference key="object" ref="1054128943"/> - <array class="NSMutableArray" key="children"> - <reference ref="683883535"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5769</string> - <reference key="object" ref="683883535"/> - <reference key="parent" ref="1054128943"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5770</string> - <reference key="object" ref="63508502"/> - <array class="NSMutableArray" key="children"> - <reference ref="374244434"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5771</string> - <reference key="object" ref="374244434"/> - <reference key="parent" ref="63508502"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5752</string> - <reference key="object" ref="242316182"/> - <array class="NSMutableArray" key="children"> - <reference ref="581448147"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5753</string> - <reference key="object" ref="581448147"/> - <reference key="parent" ref="242316182"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5763</string> - <reference key="object" ref="526261346"/> - <array class="NSMutableArray" key="children"> - <reference ref="91053939"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5764</string> - <reference key="object" ref="91053939"/> - <reference key="parent" ref="526261346"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5754</string> - <reference key="object" ref="830707723"/> - <array class="NSMutableArray" key="children"> - <reference ref="338004653"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5755</string> - <reference key="object" ref="338004653"/> - <array class="NSMutableArray" key="children"> - <reference ref="491557747"/> - </array> - <reference key="parent" ref="830707723"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5756</string> - <reference key="object" ref="491557747"/> - <reference key="parent" ref="338004653"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5760</string> - <reference key="object" ref="937658032"/> - <array class="NSMutableArray" key="children"> - <reference ref="962046381"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5761</string> - <reference key="object" ref="962046381"/> - <array class="NSMutableArray" key="children"> - <reference ref="920683899"/> - </array> - <reference key="parent" ref="937658032"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5762</string> - <reference key="object" ref="920683899"/> - <reference key="parent" ref="962046381"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5765</string> - <reference key="object" ref="820725497"/> - <array class="NSMutableArray" key="children"> - <reference ref="98299516"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5766</string> - <reference key="object" ref="98299516"/> - <array class="NSMutableArray" key="children"> - <reference ref="467696442"/> - </array> - <reference key="parent" ref="820725497"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5767</string> - <reference key="object" ref="467696442"/> - <reference key="parent" ref="98299516"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5806</string> - <reference key="object" ref="743309567"/> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5807</string> - <reference key="object" ref="1000632746"/> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5775</string> - <reference key="object" ref="943922923"/> - <array class="NSMutableArray" key="children"> - <reference ref="240431046"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5776</string> - <reference key="object" ref="240431046"/> - <reference key="parent" ref="943922923"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5777</string> - <reference key="object" ref="410504890"/> - <array class="NSMutableArray" key="children"> - <reference ref="1010023288"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5778</string> - <reference key="object" ref="1010023288"/> - <reference key="parent" ref="410504890"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5779</string> - <reference key="object" ref="369069279"/> - <array class="NSMutableArray" key="children"> - <reference ref="521580051"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5780</string> - <reference key="object" ref="521580051"/> - <reference key="parent" ref="369069279"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5781</string> - <reference key="object" ref="735808692"/> - <array class="NSMutableArray" key="children"> - <reference ref="105876720"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5782</string> - <reference key="object" ref="105876720"/> - <array class="NSMutableArray" key="children"/> - <reference key="parent" ref="735808692"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5793</string> - <reference key="object" ref="503851323"/> - <array class="NSMutableArray" key="children"> - <reference ref="317042184"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5794</string> - <reference key="object" ref="317042184"/> - <reference key="parent" ref="503851323"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5792</string> - <reference key="object" ref="647578769"/> - <array class="NSMutableArray" key="children"> - <reference ref="22762208"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5795</string> - <reference key="object" ref="22762208"/> - <reference key="parent" ref="647578769"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5791</string> - <reference key="object" ref="82785785"/> - <array class="NSMutableArray" key="children"> - <reference ref="789799380"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5796</string> - <reference key="object" ref="789799380"/> - <reference key="parent" ref="82785785"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5790</string> - <reference key="object" ref="127338398"/> - <array class="NSMutableArray" key="children"> - <reference ref="265963207"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5797</string> - <reference key="object" ref="265963207"/> - <reference key="parent" ref="127338398"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6856</string> - <reference key="object" ref="408386519"/> - <array class="NSMutableArray" key="children"> - <reference ref="697454287"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6857</string> - <reference key="object" ref="697454287"/> - <array class="NSMutableArray" key="children"> - <reference ref="461446275"/> - </array> - <reference key="parent" ref="408386519"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6858</string> - <reference key="object" ref="461446275"/> - <array class="NSMutableArray" key="children"> - <reference ref="237209968"/> - <reference ref="392059056"/> - <reference ref="265631523"/> - </array> - <reference key="parent" ref="697454287"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6859</string> - <reference key="object" ref="237209968"/> - <reference key="parent" ref="461446275"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6860</string> - <reference key="object" ref="392059056"/> - <reference key="parent" ref="461446275"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6861</string> - <reference key="object" ref="265631523"/> - <reference key="parent" ref="461446275"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6877</string> - <reference key="object" ref="1043559038"/> - <array class="NSMutableArray" key="children"> - <reference ref="955749643"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6878</string> - <reference key="object" ref="955749643"/> - <reference key="parent" ref="1043559038"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7438</string> - <reference key="object" ref="999015886"/> - <array class="NSMutableArray" key="children"> - <reference ref="341607832"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7439</string> - <reference key="object" ref="341607832"/> - <reference key="parent" ref="999015886"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7440</string> - <reference key="object" ref="3304071"/> - <array class="NSMutableArray" key="children"> - <reference ref="359324690"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7441</string> - <reference key="object" ref="359324690"/> - <reference key="parent" ref="3304071"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7442</string> - <reference key="object" ref="776897844"/> - <array class="NSMutableArray" key="children"> - <reference ref="704221403"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7443</string> - <reference key="object" ref="704221403"/> - <reference key="parent" ref="776897844"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7444</string> - <reference key="object" ref="791684674"/> - <array class="NSMutableArray" key="children"> - <reference ref="526015898"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7445</string> - <reference key="object" ref="526015898"/> - <reference key="parent" ref="791684674"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7452</string> - <reference key="object" ref="124896395"/> - <array class="NSMutableArray" key="children"> - <reference ref="65339765"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7453</string> - <reference key="object" ref="65339765"/> - <reference key="parent" ref="124896395"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7454</string> - <reference key="object" ref="812921916"/> - <array class="NSMutableArray" key="children"> - <reference ref="1020224144"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7455</string> - <reference key="object" ref="1020224144"/> - <reference key="parent" ref="812921916"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7446</string> - <reference key="object" ref="522385452"/> - <array class="NSMutableArray" key="children"> - <reference ref="195581642"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7447</string> - <reference key="object" ref="195581642"/> - <reference key="parent" ref="522385452"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7448</string> - <reference key="object" ref="611328602"/> - <array class="NSMutableArray" key="children"> - <reference ref="1065971511"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7449</string> - <reference key="object" ref="1065971511"/> - <reference key="parent" ref="611328602"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7450</string> - <reference key="object" ref="232041442"/> - <array class="NSMutableArray" key="children"> - <reference ref="138231801"/> - </array> - <reference key="parent" ref="278510490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7451</string> - <reference key="object" ref="138231801"/> - <reference key="parent" ref="232041442"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5542</string> - <reference key="object" ref="770375991"/> - <array class="NSMutableArray" key="children"> - <reference ref="995722234"/> - </array> - <reference key="parent" ref="280187924"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5543</string> - <reference key="object" ref="995722234"/> - <array class="NSMutableArray" key="children"> - <reference ref="129614519"/> - <reference ref="485666585"/> - <reference ref="686372736"/> - <reference ref="646345802"/> - <reference ref="651913430"/> - <reference ref="854734864"/> - </array> - <reference key="parent" ref="770375991"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5544</string> - <reference key="object" ref="129614519"/> - <array class="NSMutableArray" key="children"> - <reference ref="235841912"/> - <reference ref="816193636"/> - <reference ref="738684910"/> - <reference ref="371927703"/> - </array> - <reference key="parent" ref="995722234"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5546</string> - <reference key="object" ref="235841912"/> - <reference key="parent" ref="129614519"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5547</string> - <reference key="object" ref="816193636"/> - <reference key="parent" ref="129614519"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5545</string> - <reference key="object" ref="738684910"/> - <reference key="parent" ref="129614519"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5559</string> - <reference key="object" ref="485666585"/> - <array class="NSMutableArray" key="children"> - <reference ref="39026102"/> - </array> - <reference key="parent" ref="995722234"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5566</string> - <reference key="object" ref="39026102"/> - <reference key="parent" ref="485666585"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5560</string> - <reference key="object" ref="686372736"/> - <array class="NSMutableArray" key="children"> - <reference ref="822114336"/> - </array> - <reference key="parent" ref="995722234"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5565</string> - <reference key="object" ref="822114336"/> - <reference key="parent" ref="686372736"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5561</string> - <reference key="object" ref="646345802"/> - <array class="NSMutableArray" key="children"> - <reference ref="1026156865"/> - </array> - <reference key="parent" ref="995722234"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5564</string> - <reference key="object" ref="1026156865"/> - <reference key="parent" ref="646345802"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5562</string> - <reference key="object" ref="651913430"/> - <array class="NSMutableArray" key="children"> - <reference ref="620473249"/> - </array> - <reference key="parent" ref="995722234"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5563</string> - <reference key="object" ref="620473249"/> - <reference key="parent" ref="651913430"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5589</string> - <reference key="object" ref="854734864"/> - <array class="NSMutableArray" key="children"> - <reference ref="913165277"/> - </array> - <reference key="parent" ref="995722234"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5590</string> - <reference key="object" ref="913165277"/> - <reference key="parent" ref="854734864"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6692</string> - <reference key="object" ref="782140269"/> - <array class="NSMutableArray" key="children"> - <reference ref="348437605"/> - </array> - <reference key="parent" ref="280187924"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6693</string> - <reference key="object" ref="348437605"/> - <array class="NSMutableArray" key="children"> - <reference ref="76455301"/> - <reference ref="421474"/> - <reference ref="862482881"/> - <reference ref="826516051"/> - <reference ref="290417695"/> - <reference ref="3722547"/> - </array> - <reference key="parent" ref="782140269"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6698</string> - <reference key="object" ref="76455301"/> - <array class="NSMutableArray" key="children"> - <reference ref="901243988"/> - <reference ref="892667665"/> - <reference ref="836953331"/> - <reference ref="203790701"/> - </array> - <reference key="parent" ref="348437605"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6703</string> - <reference key="object" ref="901243988"/> - <reference key="parent" ref="76455301"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6702</string> - <reference key="object" ref="892667665"/> - <reference key="parent" ref="76455301"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6704</string> - <reference key="object" ref="836953331"/> - <reference key="parent" ref="76455301"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6699</string> - <reference key="object" ref="421474"/> - <array class="NSMutableArray" key="children"> - <reference ref="38287174"/> - </array> - <reference key="parent" ref="348437605"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6700</string> - <reference key="object" ref="38287174"/> - <reference key="parent" ref="421474"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6697</string> - <reference key="object" ref="862482881"/> - <array class="NSMutableArray" key="children"> - <reference ref="801469834"/> - </array> - <reference key="parent" ref="348437605"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6717</string> - <reference key="object" ref="801469834"/> - <reference key="parent" ref="862482881"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6696</string> - <reference key="object" ref="826516051"/> - <array class="NSMutableArray" key="children"> - <reference ref="137357772"/> - </array> - <reference key="parent" ref="348437605"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6718</string> - <reference key="object" ref="137357772"/> - <reference key="parent" ref="826516051"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6695</string> - <reference key="object" ref="290417695"/> - <array class="NSMutableArray" key="children"> - <reference ref="136585690"/> - </array> - <reference key="parent" ref="348437605"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6719</string> - <reference key="object" ref="136585690"/> - <reference key="parent" ref="290417695"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6694</string> - <reference key="object" ref="3722547"/> - <array class="NSMutableArray" key="children"> - <reference ref="195422453"/> - </array> - <reference key="parent" ref="348437605"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6720</string> - <reference key="object" ref="195422453"/> - <reference key="parent" ref="3722547"/> - </object> - <object class="IBObjectRecord"> - <string key="id">565</string> - <reference key="object" ref="27889601"/> - <array class="NSMutableArray" key="children"> - <reference ref="544458901"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">New Database Sheet</string> - </object> - <object class="IBObjectRecord"> - <string key="id">557</string> - <reference key="object" ref="544458901"/> - <array class="NSMutableArray" key="children"> - <reference ref="128617942"/> - <reference ref="304814996"/> - <reference ref="1066843353"/> - <reference ref="536855438"/> - <reference ref="988821764"/> - <reference ref="869557066"/> - <reference ref="749279002"/> - <reference ref="535859051"/> - </array> - <reference key="parent" ref="27889601"/> - </object> - <object class="IBObjectRecord"> - <string key="id">579</string> - <reference key="object" ref="128617942"/> - <array class="NSMutableArray" key="children"> - <reference ref="377787818"/> - </array> - <reference key="parent" ref="544458901"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3835</string> - <reference key="object" ref="377787818"/> - <reference key="parent" ref="128617942"/> - </object> - <object class="IBObjectRecord"> - <string key="id">4741</string> - <reference key="object" ref="304814996"/> - <array class="NSMutableArray" key="children"> - <reference ref="72865155"/> - </array> - <reference key="parent" ref="544458901"/> - </object> - <object class="IBObjectRecord"> - <string key="id">4742</string> - <reference key="object" ref="72865155"/> - <reference key="parent" ref="304814996"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8265</string> - <reference key="object" ref="1066843353"/> - <array class="NSMutableArray" key="children"> - <reference ref="716999507"/> - </array> - <reference key="parent" ref="544458901"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8266</string> - <reference key="object" ref="716999507"/> - <reference key="parent" ref="1066843353"/> - </object> - <object class="IBObjectRecord"> - <string key="id">581</string> - <reference key="object" ref="536855438"/> - <array class="NSMutableArray" key="children"> - <reference ref="670096873"/> - </array> - <reference key="parent" ref="544458901"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3837</string> - <reference key="object" ref="670096873"/> - <reference key="parent" ref="536855438"/> - </object> - <object class="IBObjectRecord"> - <string key="id">582</string> - <reference key="object" ref="988821764"/> - <array class="NSMutableArray" key="children"> - <reference ref="1034040691"/> - </array> - <reference key="parent" ref="544458901"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3838</string> - <reference key="object" ref="1034040691"/> - <reference key="parent" ref="988821764"/> - </object> - <object class="IBObjectRecord"> - <string key="id">4751</string> - <reference key="object" ref="869557066"/> - <array class="NSMutableArray" key="children"> - <reference ref="506424747"/> - </array> - <reference key="parent" ref="544458901"/> - </object> - <object class="IBObjectRecord"> - <string key="id">4752</string> - <reference key="object" ref="506424747"/> - <array class="NSMutableArray" key="children"> - <reference ref="386152430"/> - </array> - <reference key="parent" ref="869557066"/> - </object> - <object class="IBObjectRecord"> - <string key="id">4753</string> - <reference key="object" ref="386152430"/> - <reference key="parent" ref="506424747"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8269</string> - <reference key="object" ref="749279002"/> - <array class="NSMutableArray" key="children"> - <reference ref="226260075"/> - </array> - <reference key="parent" ref="544458901"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8270</string> - <reference key="object" ref="226260075"/> - <array class="NSMutableArray" key="children"> - <reference ref="388430567"/> - </array> - <reference key="parent" ref="749279002"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8271</string> - <reference key="object" ref="388430567"/> - <reference key="parent" ref="226260075"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8276</string> - <reference key="object" ref="513263904"/> - <array class="NSMutableArray" key="children"> - <reference ref="974307677"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Alter Database Sheet</string> - </object> - <object class="IBObjectRecord"> - <string key="id">8277</string> - <reference key="object" ref="974307677"/> - <array class="NSMutableArray" key="children"> - <reference ref="167742944"/> - <reference ref="414222088"/> - <reference ref="716757490"/> - <reference ref="403583857"/> - <reference ref="899887673"/> - <reference ref="329386404"/> - </array> - <reference key="parent" ref="513263904"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8278</string> - <reference key="object" ref="167742944"/> - <array class="NSMutableArray" key="children"> - <reference ref="727757264"/> - </array> - <reference key="parent" ref="974307677"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8291</string> - <reference key="object" ref="727757264"/> - <reference key="parent" ref="167742944"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8279</string> - <reference key="object" ref="414222088"/> - <array class="NSMutableArray" key="children"> - <reference ref="585583765"/> - </array> - <reference key="parent" ref="974307677"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8290</string> - <reference key="object" ref="585583765"/> - <reference key="parent" ref="414222088"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8280</string> - <reference key="object" ref="716757490"/> - <array class="NSMutableArray" key="children"> - <reference ref="18910145"/> - </array> - <reference key="parent" ref="974307677"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8289</string> - <reference key="object" ref="18910145"/> - <reference key="parent" ref="716757490"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8281</string> - <reference key="object" ref="403583857"/> - <array class="NSMutableArray" key="children"> - <reference ref="180029339"/> - </array> - <reference key="parent" ref="974307677"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8288</string> - <reference key="object" ref="180029339"/> - <reference key="parent" ref="403583857"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8282</string> - <reference key="object" ref="899887673"/> - <array class="NSMutableArray" key="children"> - <reference ref="650922530"/> - </array> - <reference key="parent" ref="974307677"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8286</string> - <reference key="object" ref="650922530"/> - <array class="NSMutableArray" key="children"> - <reference ref="1039131292"/> - </array> - <reference key="parent" ref="899887673"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8287</string> - <reference key="object" ref="1039131292"/> - <reference key="parent" ref="650922530"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8283</string> - <reference key="object" ref="329386404"/> - <array class="NSMutableArray" key="children"> - <reference ref="375609982"/> - </array> - <reference key="parent" ref="974307677"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8284</string> - <reference key="object" ref="375609982"/> - <array class="NSMutableArray" key="children"> - <reference ref="643152217"/> - </array> - <reference key="parent" ref="329386404"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8285</string> - <reference key="object" ref="643152217"/> - <reference key="parent" ref="375609982"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6937</string> - <reference key="object" ref="44735767"/> - <array class="NSMutableArray" key="children"> - <reference ref="1049928659"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Duplicate Database Sheet</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6938</string> - <reference key="object" ref="1049928659"/> - <array class="NSMutableArray" key="children"> - <reference ref="680878714"/> - <reference ref="677823009"/> - <reference ref="35704701"/> - <reference ref="35301577"/> - <reference ref="256429839"/> - <reference ref="872657032"/> - <reference ref="927968242"/> - <reference ref="83930004"/> - </array> - <reference key="parent" ref="44735767"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6942</string> - <reference key="object" ref="680878714"/> - <array class="NSMutableArray" key="children"> - <reference ref="103621268"/> - </array> - <reference key="parent" ref="1049928659"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6947</string> - <reference key="object" ref="103621268"/> - <reference key="parent" ref="680878714"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6943</string> - <reference key="object" ref="677823009"/> - <array class="NSMutableArray" key="children"> - <reference ref="1027522412"/> - </array> - <reference key="parent" ref="1049928659"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6946</string> - <reference key="object" ref="1027522412"/> - <reference key="parent" ref="677823009"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6939</string> - <reference key="object" ref="35704701"/> - <array class="NSMutableArray" key="children"> - <reference ref="682177319"/> - </array> - <reference key="parent" ref="1049928659"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6976</string> - <reference key="object" ref="682177319"/> - <reference key="parent" ref="35704701"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6944</string> - <reference key="object" ref="35301577"/> - <array class="NSMutableArray" key="children"> - <reference ref="925732606"/> - </array> - <reference key="parent" ref="1049928659"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6945</string> - <reference key="object" ref="925732606"/> - <reference key="parent" ref="35301577"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6980</string> - <reference key="object" ref="256429839"/> - <array class="NSMutableArray" key="children"> - <reference ref="979935454"/> - </array> - <reference key="parent" ref="1049928659"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6981</string> - <reference key="object" ref="979935454"/> - <reference key="parent" ref="256429839"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7817</string> - <reference key="object" ref="872657032"/> - <array class="NSMutableArray" key="children"> - <reference ref="228906745"/> - </array> - <reference key="parent" ref="1049928659"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7818</string> - <reference key="object" ref="228906745"/> - <reference key="parent" ref="872657032"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7819</string> - <reference key="object" ref="927968242"/> - <array class="NSMutableArray" key="children"> - <reference ref="765156058"/> - </array> - <reference key="parent" ref="1049928659"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7820</string> - <reference key="object" ref="765156058"/> - <reference key="parent" ref="927968242"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7821</string> - <reference key="object" ref="83930004"/> - <array class="NSMutableArray" key="children"> - <reference ref="196609327"/> - </array> - <reference key="parent" ref="1049928659"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7822</string> - <reference key="object" ref="196609327"/> - <reference key="parent" ref="83930004"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6990</string> - <reference key="object" ref="40560749"/> - <array class="NSMutableArray" key="children"> - <reference ref="873075508"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Rename Database Sheet</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6991</string> - <reference key="object" ref="873075508"/> - <array class="NSMutableArray" key="children"> - <reference ref="716707300"/> - <reference ref="910445056"/> - <reference ref="876797055"/> - <reference ref="208600380"/> - </array> - <reference key="parent" ref="40560749"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6995</string> - <reference key="object" ref="716707300"/> - <array class="NSMutableArray" key="children"> - <reference ref="267190921"/> - </array> - <reference key="parent" ref="873075508"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7000</string> - <reference key="object" ref="267190921"/> - <reference key="parent" ref="716707300"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6994</string> - <reference key="object" ref="910445056"/> - <array class="NSMutableArray" key="children"> - <reference ref="492882069"/> - </array> - <reference key="parent" ref="873075508"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7001</string> - <reference key="object" ref="492882069"/> - <reference key="parent" ref="910445056"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6997</string> - <reference key="object" ref="876797055"/> - <array class="NSMutableArray" key="children"> - <reference ref="333966099"/> - </array> - <reference key="parent" ref="873075508"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6998</string> - <reference key="object" ref="333966099"/> - <reference key="parent" ref="876797055"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6993</string> - <reference key="object" ref="208600380"/> - <array class="NSMutableArray" key="children"> - <reference ref="403775611"/> - </array> - <reference key="parent" ref="873075508"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7002</string> - <reference key="object" ref="403775611"/> - <reference key="parent" ref="208600380"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5322</string> - <reference key="object" ref="971880172"/> - <array class="NSMutableArray" key="children"> - <reference ref="381160134"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">New Table Sheet</string> - </object> - <object class="IBObjectRecord"> - <string key="id">5323</string> - <reference key="object" ref="381160134"/> - <array class="NSMutableArray" key="children"> - <reference ref="1005413998"/> - <reference ref="513414376"/> - <reference ref="374259664"/> - <reference ref="671615720"/> - <reference ref="1050266816"/> - <reference ref="289339603"/> - <reference ref="467430961"/> - <reference ref="725803993"/> - <reference ref="189903457"/> - <reference ref="635170907"/> - </array> - <reference key="parent" ref="971880172"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5327</string> - <reference key="object" ref="1005413998"/> - <array class="NSMutableArray" key="children"> - <reference ref="688301525"/> - </array> - <reference key="parent" ref="381160134"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5332</string> - <reference key="object" ref="688301525"/> - <reference key="parent" ref="1005413998"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5326</string> - <reference key="object" ref="513414376"/> - <array class="NSMutableArray" key="children"> - <reference ref="711752917"/> - </array> - <reference key="parent" ref="381160134"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5333</string> - <reference key="object" ref="711752917"/> - <reference key="parent" ref="513414376"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5324</string> - <reference key="object" ref="374259664"/> - <array class="NSMutableArray" key="children"> - <reference ref="476637769"/> - </array> - <reference key="parent" ref="381160134"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5361</string> - <reference key="object" ref="476637769"/> - <reference key="parent" ref="374259664"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5328</string> - <reference key="object" ref="671615720"/> - <array class="NSMutableArray" key="children"> - <reference ref="331559207"/> - </array> - <reference key="parent" ref="381160134"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5331</string> - <reference key="object" ref="331559207"/> - <reference key="parent" ref="671615720"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5325</string> - <reference key="object" ref="1050266816"/> - <array class="NSMutableArray" key="children"> - <reference ref="121674630"/> - </array> - <reference key="parent" ref="381160134"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5334</string> - <reference key="object" ref="121674630"/> - <array class="NSMutableArray" key="children"> - <reference ref="72990819"/> - </array> - <reference key="parent" ref="1050266816"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5335</string> - <reference key="object" ref="72990819"/> - <reference key="parent" ref="121674630"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8309</string> - <reference key="object" ref="289339603"/> - <array class="NSMutableArray" key="children"> - <reference ref="291856075"/> - </array> - <reference key="parent" ref="381160134"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8313</string> - <reference key="object" ref="291856075"/> - <reference key="parent" ref="289339603"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8310</string> - <reference key="object" ref="467430961"/> - <array class="NSMutableArray" key="children"> - <reference ref="628098377"/> - </array> - <reference key="parent" ref="381160134"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8311</string> - <reference key="object" ref="628098377"/> - <array class="NSMutableArray" key="children"> - <reference ref="459142250"/> - </array> - <reference key="parent" ref="467430961"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8312</string> - <reference key="object" ref="459142250"/> - <reference key="parent" ref="628098377"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5713</string> - <reference key="object" ref="725803993"/> - <array class="NSMutableArray" key="children"> - <reference ref="518115151"/> - </array> - <reference key="parent" ref="381160134"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5742</string> - <reference key="object" ref="518115151"/> - <reference key="parent" ref="725803993"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5714</string> - <reference key="object" ref="189903457"/> - <array class="NSMutableArray" key="children"> - <reference ref="1016527944"/> - </array> - <reference key="parent" ref="381160134"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5715</string> - <reference key="object" ref="1016527944"/> - <array class="NSMutableArray" key="children"> - <reference ref="113155691"/> - </array> - <reference key="parent" ref="189903457"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5716</string> - <reference key="object" ref="113155691"/> - <reference key="parent" ref="1016527944"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5701</string> - <reference key="object" ref="635170907"/> - <array class="NSMutableArray" key="children"> - <reference ref="29955093"/> - </array> - <reference key="parent" ref="381160134"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5702</string> - <reference key="object" ref="29955093"/> - <reference key="parent" ref="635170907"/> - </object> - <object class="IBObjectRecord"> - <string key="id">501</string> - <reference key="object" ref="776700210"/> - <array class="NSMutableArray" key="children"> - <reference ref="66282258"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Duplicate Table Sheet</string> - </object> - <object class="IBObjectRecord"> - <string key="id">500</string> - <reference key="object" ref="66282258"/> - <array class="NSMutableArray" key="children"> - <reference ref="906659947"/> - <reference ref="966166933"/> - <reference ref="162304526"/> - <reference ref="1014938601"/> - <reference ref="398163780"/> - </array> - <reference key="parent" ref="776700210"/> - </object> - <object class="IBObjectRecord"> - <string key="id">512</string> - <reference key="object" ref="906659947"/> - <array class="NSMutableArray" key="children"> - <reference ref="1035435092"/> - </array> - <reference key="parent" ref="66282258"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3830</string> - <reference key="object" ref="1035435092"/> - <reference key="parent" ref="906659947"/> - </object> - <object class="IBObjectRecord"> - <string key="id">514</string> - <reference key="object" ref="966166933"/> - <array class="NSMutableArray" key="children"> - <reference ref="680876624"/> - </array> - <reference key="parent" ref="66282258"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3832</string> - <reference key="object" ref="680876624"/> - <reference key="parent" ref="966166933"/> - </object> - <object class="IBObjectRecord"> - <string key="id">515</string> - <reference key="object" ref="162304526"/> - <array class="NSMutableArray" key="children"> - <reference ref="1000824559"/> - </array> - <reference key="parent" ref="66282258"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3833</string> - <reference key="object" ref="1000824559"/> - <reference key="parent" ref="162304526"/> - </object> - <object class="IBObjectRecord"> - <string key="id">516</string> - <reference key="object" ref="1014938601"/> - <array class="NSMutableArray" key="children"> - <reference ref="668793013"/> - </array> - <reference key="parent" ref="66282258"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3834</string> - <reference key="object" ref="668793013"/> - <reference key="parent" ref="1014938601"/> - </object> - <object class="IBObjectRecord"> - <string key="id">409</string> - <reference key="object" ref="530761994"/> - <array class="NSMutableArray" key="children"> - <reference ref="573301824"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Key Sheet</string> - </object> - <object class="IBObjectRecord"> - <string key="id">410</string> - <reference key="object" ref="573301824"/> - <array class="NSMutableArray" key="children"> - <reference ref="840126536"/> - <reference ref="1067575740"/> - <reference ref="407918734"/> - <reference ref="729651532"/> - </array> - <reference key="parent" ref="530761994"/> - </object> - <object class="IBObjectRecord"> - <string key="id">411</string> - <reference key="object" ref="840126536"/> - <array class="NSMutableArray" key="children"> - <reference ref="250285018"/> - </array> - <reference key="parent" ref="573301824"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3826</string> - <reference key="object" ref="250285018"/> - <reference key="parent" ref="840126536"/> - </object> - <object class="IBObjectRecord"> - <string key="id">414</string> - <reference key="object" ref="1067575740"/> - <array class="NSMutableArray" key="children"> - <reference ref="875427113"/> - </array> - <reference key="parent" ref="573301824"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3827</string> - <reference key="object" ref="875427113"/> - <array class="NSMutableArray" key="children"> - <reference ref="609005525"/> - </array> - <reference key="parent" ref="1067575740"/> - </object> - <object class="IBObjectRecord"> - <string key="id">415</string> - <reference key="object" ref="609005525"/> - <array class="NSMutableArray" key="children"> - <reference ref="250261756"/> - <reference ref="30702004"/> - <reference ref="622573600"/> - </array> - <reference key="parent" ref="875427113"/> - </object> - <object class="IBObjectRecord"> - <string key="id">412</string> - <reference key="object" ref="250261756"/> - <reference key="parent" ref="609005525"/> - </object> - <object class="IBObjectRecord"> - <string key="id">413</string> - <reference key="object" ref="30702004"/> - <reference key="parent" ref="609005525"/> - </object> - <object class="IBObjectRecord"> - <string key="id">416</string> - <reference key="object" ref="622573600"/> - <reference key="parent" ref="609005525"/> - </object> - <object class="IBObjectRecord"> - <string key="id">418</string> - <reference key="object" ref="407918734"/> - <array class="NSMutableArray" key="children"> - <reference ref="932461337"/> - </array> - <reference key="parent" ref="573301824"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3828</string> - <reference key="object" ref="932461337"/> - <reference key="parent" ref="407918734"/> - </object> - <object class="IBObjectRecord"> - <string key="id">419</string> - <reference key="object" ref="729651532"/> - <array class="NSMutableArray" key="children"> - <reference ref="956433610"/> - </array> - <reference key="parent" ref="573301824"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3829</string> - <reference key="object" ref="956433610"/> - <reference key="parent" ref="729651532"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6832</string> - <reference key="object" ref="151160384"/> - <array class="NSMutableArray" key="children"> - <reference ref="334190761"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Reset Auto Increment Sheet</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6833</string> - <reference key="object" ref="334190761"/> - <array class="NSMutableArray" key="children"> - <reference ref="207250419"/> - <reference ref="372615010"/> - <reference ref="170893992"/> - <reference ref="552053126"/> - <reference ref="749202052"/> - </array> - <reference key="parent" ref="151160384"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6834</string> - <reference key="object" ref="207250419"/> - <array class="NSMutableArray" key="children"> - <reference ref="528765232"/> - </array> - <reference key="parent" ref="334190761"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6835</string> - <reference key="object" ref="528765232"/> - <reference key="parent" ref="207250419"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6836</string> - <reference key="object" ref="372615010"/> - <array class="NSMutableArray" key="children"> - <reference ref="87624259"/> - </array> - <reference key="parent" ref="334190761"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6837</string> - <reference key="object" ref="87624259"/> - <reference key="parent" ref="372615010"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6838</string> - <reference key="object" ref="170893992"/> - <array class="NSMutableArray" key="children"> - <reference ref="647845845"/> - </array> - <reference key="parent" ref="334190761"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6839</string> - <reference key="object" ref="647845845"/> - <reference key="parent" ref="170893992"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6840</string> - <reference key="object" ref="552053126"/> - <array class="NSMutableArray" key="children"> - <reference ref="725373559"/> - </array> - <reference key="parent" ref="334190761"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6841</string> - <reference key="object" ref="725373559"/> - <array class="NSMutableArray" key="children"> - <reference ref="354814181"/> - </array> - <reference key="parent" ref="552053126"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6842</string> - <reference key="object" ref="354814181"/> - <reference key="parent" ref="725373559"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6852</string> - <reference key="object" ref="749202052"/> - <reference key="parent" ref="334190761"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5596</string> - <reference key="object" ref="267086801"/> - <array class="NSMutableArray" key="children"> - <reference ref="1015718648"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">New RelationSheet</string> - </object> - <object class="IBObjectRecord"> - <string key="id">5597</string> - <reference key="object" ref="1015718648"/> - <array class="NSMutableArray" key="children"> - <reference ref="20882945"/> - <reference ref="331810027"/> - <reference ref="607457532"/> - <reference ref="53193920"/> - <reference ref="770611577"/> - <reference ref="905045861"/> - <reference ref="579485108"/> - <reference ref="172580784"/> - </array> - <reference key="parent" ref="267086801"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5660</string> - <reference key="object" ref="20882945"/> - <array class="NSMutableArray" key="children"> - <reference ref="613590545"/> - <reference ref="723208931"/> - </array> - <reference key="parent" ref="1015718648"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5653</string> - <reference key="object" ref="613590545"/> - <array class="NSMutableArray" key="children"> - <reference ref="141907570"/> - </array> - <reference key="parent" ref="20882945"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5654</string> - <reference key="object" ref="141907570"/> - <array class="NSMutableArray" key="children"> - <reference ref="1071148761"/> - </array> - <reference key="parent" ref="613590545"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5655</string> - <reference key="object" ref="1071148761"/> - <array class="NSMutableArray" key="children"> - <reference ref="7277683"/> - <reference ref="66984092"/> - <reference ref="1059338658"/> - </array> - <reference key="parent" ref="141907570"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5656</string> - <reference key="object" ref="7277683"/> - <reference key="parent" ref="1071148761"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5657</string> - <reference key="object" ref="66984092"/> - <reference key="parent" ref="1071148761"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5658</string> - <reference key="object" ref="1059338658"/> - <reference key="parent" ref="1071148761"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5606</string> - <reference key="object" ref="723208931"/> - <array class="NSMutableArray" key="children"> - <reference ref="758586794"/> - </array> - <reference key="parent" ref="20882945"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5607</string> - <reference key="object" ref="758586794"/> - <reference key="parent" ref="723208931"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7798</string> - <reference key="object" ref="331810027"/> - <array class="NSMutableArray" key="children"> - <reference ref="789490190"/> - <reference ref="164726151"/> - </array> - <reference key="parent" ref="1015718648"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7800</string> - <reference key="object" ref="789490190"/> - <array class="NSMutableArray" key="children"> - <reference ref="755284617"/> - </array> - <reference key="parent" ref="331810027"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7801</string> - <reference key="object" ref="755284617"/> - <reference key="parent" ref="789490190"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7808</string> - <reference key="object" ref="164726151"/> - <array class="NSMutableArray" key="children"> - <reference ref="697349750"/> - </array> - <reference key="parent" ref="331810027"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7809</string> - <reference key="object" ref="697349750"/> - <reference key="parent" ref="164726151"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5659</string> - <reference key="object" ref="607457532"/> - <array class="NSMutableArray" key="children"> - <reference ref="327029678"/> - <reference ref="542486225"/> - <reference ref="124650739"/> - <reference ref="624744215"/> - </array> - <reference key="parent" ref="1015718648"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5614</string> - <reference key="object" ref="327029678"/> - <array class="NSMutableArray" key="children"> - <reference ref="181473300"/> - </array> - <reference key="parent" ref="607457532"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5615</string> - <reference key="object" ref="181473300"/> - <array class="NSMutableArray" key="children"> - <reference ref="548652310"/> - </array> - <reference key="parent" ref="327029678"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5616</string> - <reference key="object" ref="548652310"/> - <array class="NSMutableArray" key="children"> - <reference ref="93412391"/> - <reference ref="161482738"/> - <reference ref="13100001"/> - <reference ref="819021382"/> - <reference ref="234472558"/> - </array> - <reference key="parent" ref="181473300"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5617</string> - <reference key="object" ref="93412391"/> - <reference key="parent" ref="548652310"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5621</string> - <reference key="object" ref="161482738"/> - <reference key="parent" ref="548652310"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5618</string> - <reference key="object" ref="13100001"/> - <reference key="parent" ref="548652310"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5619</string> - <reference key="object" ref="819021382"/> - <reference key="parent" ref="548652310"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5620</string> - <reference key="object" ref="234472558"/> - <reference key="parent" ref="548652310"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5622</string> - <reference key="object" ref="542486225"/> - <array class="NSMutableArray" key="children"> - <reference ref="968836506"/> - </array> - <reference key="parent" ref="607457532"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5623</string> - <reference key="object" ref="968836506"/> - <array class="NSMutableArray" key="children"> - <reference ref="790475827"/> - </array> - <reference key="parent" ref="542486225"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5624</string> - <reference key="object" ref="790475827"/> - <array class="NSMutableArray" key="children"> - <reference ref="792746982"/> - <reference ref="304953078"/> - <reference ref="373375937"/> - <reference ref="693611810"/> - <reference ref="823067229"/> - </array> - <reference key="parent" ref="968836506"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5629</string> - <reference key="object" ref="792746982"/> - <reference key="parent" ref="790475827"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5628</string> - <reference key="object" ref="304953078"/> - <reference key="parent" ref="790475827"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5627</string> - <reference key="object" ref="373375937"/> - <reference key="parent" ref="790475827"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5626</string> - <reference key="object" ref="693611810"/> - <reference key="parent" ref="790475827"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5625</string> - <reference key="object" ref="823067229"/> - <reference key="parent" ref="790475827"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5610</string> - <reference key="object" ref="124650739"/> - <array class="NSMutableArray" key="children"> - <reference ref="316160058"/> - </array> - <reference key="parent" ref="607457532"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5611</string> - <reference key="object" ref="316160058"/> - <reference key="parent" ref="124650739"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5612</string> - <reference key="object" ref="624744215"/> - <array class="NSMutableArray" key="children"> - <reference ref="806766501"/> - </array> - <reference key="parent" ref="607457532"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5613</string> - <reference key="object" ref="806766501"/> - <reference key="parent" ref="624744215"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5652</string> - <reference key="object" ref="53193920"/> - <array class="NSMutableArray" key="children"> - <reference ref="997358225"/> - <reference ref="776137040"/> - <reference ref="897769178"/> - <reference ref="523115675"/> - </array> - <reference key="parent" ref="1015718648"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5630</string> - <reference key="object" ref="997358225"/> - <array class="NSMutableArray" key="children"> - <reference ref="342204808"/> - </array> - <reference key="parent" ref="53193920"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5631</string> - <reference key="object" ref="342204808"/> - <array class="NSMutableArray" key="children"> - <reference ref="224086912"/> - </array> - <reference key="parent" ref="997358225"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5632</string> - <reference key="object" ref="224086912"/> - <array class="NSMutableArray" key="children"> - <reference ref="504826794"/> - <reference ref="853021323"/> - <reference ref="277853325"/> - </array> - <reference key="parent" ref="342204808"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5633</string> - <reference key="object" ref="504826794"/> - <reference key="parent" ref="224086912"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5634</string> - <reference key="object" ref="853021323"/> - <reference key="parent" ref="224086912"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5635</string> - <reference key="object" ref="277853325"/> - <reference key="parent" ref="224086912"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5636</string> - <reference key="object" ref="776137040"/> - <array class="NSMutableArray" key="children"> - <reference ref="525708739"/> - </array> - <reference key="parent" ref="53193920"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5637</string> - <reference key="object" ref="525708739"/> - <array class="NSMutableArray" key="children"> - <reference ref="284179633"/> - </array> - <reference key="parent" ref="776137040"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5638</string> - <reference key="object" ref="284179633"/> - <array class="NSMutableArray" key="children"> - <reference ref="628705007"/> - <reference ref="26208707"/> - <reference ref="460154124"/> - </array> - <reference key="parent" ref="525708739"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5639</string> - <reference key="object" ref="628705007"/> - <reference key="parent" ref="284179633"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5640</string> - <reference key="object" ref="26208707"/> - <reference key="parent" ref="284179633"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5641</string> - <reference key="object" ref="460154124"/> - <reference key="parent" ref="284179633"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5608</string> - <reference key="object" ref="897769178"/> - <array class="NSMutableArray" key="children"> - <reference ref="204934061"/> - </array> - <reference key="parent" ref="53193920"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5609</string> - <reference key="object" ref="204934061"/> - <reference key="parent" ref="897769178"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5642</string> - <reference key="object" ref="523115675"/> - <array class="NSMutableArray" key="children"> - <reference ref="695000720"/> - </array> - <reference key="parent" ref="53193920"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5643</string> - <reference key="object" ref="695000720"/> - <reference key="parent" ref="523115675"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5599</string> - <reference key="object" ref="770611577"/> - <array class="NSMutableArray" key="children"> - <reference ref="710438142"/> - </array> - <reference key="parent" ref="1015718648"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5600</string> - <reference key="object" ref="710438142"/> - <reference key="parent" ref="770611577"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5601</string> - <reference key="object" ref="905045861"/> - <array class="NSMutableArray" key="children"> - <reference ref="235633067"/> - </array> - <reference key="parent" ref="1015718648"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5602</string> - <reference key="object" ref="235633067"/> - <reference key="parent" ref="905045861"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7823</string> - <reference key="object" ref="579485108"/> - <reference key="parent" ref="1015718648"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7824</string> - <reference key="object" ref="172580784"/> - <array class="NSMutableArray" key="children"> - <reference ref="243830498"/> - </array> - <reference key="parent" ref="1015718648"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7825</string> - <reference key="object" ref="243830498"/> - <reference key="parent" ref="172580784"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6765</string> - <reference key="object" ref="411883363"/> - <array class="NSMutableArray" key="children"> - <reference ref="28677781"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">New Trigger Sheet</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6766</string> - <reference key="object" ref="28677781"/> - <array class="NSMutableArray" key="children"> - <reference ref="473749629"/> - <reference ref="59936077"/> - <reference ref="870795952"/> - <reference ref="924992653"/> - </array> - <reference key="parent" ref="411883363"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6770</string> - <reference key="object" ref="473749629"/> - <array class="NSMutableArray" key="children"> - <reference ref="193402932"/> - <reference ref="7465336"/> - <reference ref="570239451"/> - <reference ref="613841003"/> - <reference ref="817603032"/> - <reference ref="593093495"/> - </array> - <reference key="parent" ref="28677781"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6776</string> - <reference key="object" ref="193402932"/> - <array class="NSMutableArray" key="children"> - <reference ref="569155656"/> - </array> - <reference key="parent" ref="473749629"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6777</string> - <reference key="object" ref="569155656"/> - <reference key="parent" ref="193402932"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6775</string> - <reference key="object" ref="7465336"/> - <array class="NSMutableArray" key="children"> - <reference ref="118322854"/> - </array> - <reference key="parent" ref="473749629"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6778</string> - <reference key="object" ref="118322854"/> - <reference key="parent" ref="7465336"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6774</string> - <reference key="object" ref="570239451"/> - <array class="NSMutableArray" key="children"> - <reference ref="556116646"/> - </array> - <reference key="parent" ref="473749629"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6779</string> - <reference key="object" ref="556116646"/> - <array class="NSMutableArray" key="children"> - <reference ref="520429612"/> - </array> - <reference key="parent" ref="570239451"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6780</string> - <reference key="object" ref="520429612"/> - <array class="NSMutableArray" key="children"> - <reference ref="751711751"/> - <reference ref="772594730"/> - </array> - <reference key="parent" ref="556116646"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6781</string> - <reference key="object" ref="751711751"/> - <reference key="parent" ref="520429612"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6782</string> - <reference key="object" ref="772594730"/> - <reference key="parent" ref="520429612"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6773</string> - <reference key="object" ref="613841003"/> - <array class="NSMutableArray" key="children"> - <reference ref="468443756"/> - </array> - <reference key="parent" ref="473749629"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6783</string> - <reference key="object" ref="468443756"/> - <array class="NSMutableArray" key="children"> - <reference ref="24859048"/> - </array> - <reference key="parent" ref="613841003"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6784</string> - <reference key="object" ref="24859048"/> - <array class="NSMutableArray" key="children"> - <reference ref="508933686"/> - <reference ref="656778915"/> - <reference ref="766167700"/> - </array> - <reference key="parent" ref="468443756"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6785</string> - <reference key="object" ref="508933686"/> - <reference key="parent" ref="24859048"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6786</string> - <reference key="object" ref="656778915"/> - <reference key="parent" ref="24859048"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6787</string> - <reference key="object" ref="766167700"/> - <reference key="parent" ref="24859048"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6772</string> - <reference key="object" ref="817603032"/> - <array class="NSMutableArray" key="children"> - <reference ref="424224466"/> - </array> - <reference key="parent" ref="473749629"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6788</string> - <reference key="object" ref="424224466"/> - <reference key="parent" ref="817603032"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6771</string> - <reference key="object" ref="593093495"/> - <array class="NSMutableArray" key="children"> - <reference ref="1011590098"/> - </array> - <reference key="parent" ref="473749629"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6789</string> - <reference key="object" ref="1011590098"/> - <reference key="parent" ref="593093495"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6768</string> - <reference key="object" ref="59936077"/> - <array class="NSMutableArray" key="children"> - <reference ref="833148794"/> - </array> - <reference key="parent" ref="28677781"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6793</string> - <reference key="object" ref="833148794"/> - <reference key="parent" ref="59936077"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6767</string> - <reference key="object" ref="870795952"/> - <array class="NSMutableArray" key="children"> - <reference ref="409821299"/> - </array> - <reference key="parent" ref="28677781"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6794</string> - <reference key="object" ref="409821299"/> - <reference key="parent" ref="870795952"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8227</string> - <reference key="object" ref="924992653"/> - <array class="NSMutableArray" key="children"> - <reference ref="797275081"/> - <reference ref="488376274"/> - <reference ref="193453639"/> - </array> - <reference key="parent" ref="28677781"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8229</string> - <reference key="object" ref="797275081"/> - <reference key="parent" ref="924992653"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8228</string> - <reference key="object" ref="488376274"/> - <reference key="parent" ref="924992653"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6125</string> - <reference key="object" ref="321175300"/> - <array class="NSMutableArray" key="children"> - <reference ref="477632272"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Progress Sheet</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6126</string> - <reference key="object" ref="477632272"/> - <array class="NSMutableArray" key="children"> - <reference ref="573071454"/> - <reference ref="1014084013"/> - <reference ref="352238263"/> - <reference ref="301657628"/> - <reference ref="696435068"/> - </array> - <reference key="parent" ref="321175300"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6131</string> - <reference key="object" ref="573071454"/> - <reference key="parent" ref="477632272"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6130</string> - <reference key="object" ref="1014084013"/> - <array class="NSMutableArray" key="children"> - <reference ref="514689588"/> - </array> - <reference key="parent" ref="477632272"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6134</string> - <reference key="object" ref="514689588"/> - <reference key="parent" ref="1014084013"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6129</string> - <reference key="object" ref="352238263"/> - <array class="NSMutableArray" key="children"> - <reference ref="33427226"/> - </array> - <reference key="parent" ref="477632272"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6135</string> - <reference key="object" ref="33427226"/> - <reference key="parent" ref="352238263"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6132</string> - <reference key="object" ref="301657628"/> - <array class="NSMutableArray" key="children"> - <reference ref="857914808"/> - </array> - <reference key="parent" ref="477632272"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6133</string> - <reference key="object" ref="857914808"/> - <reference key="parent" ref="301657628"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6127</string> - <reference key="object" ref="696435068"/> - <array class="NSMutableArray" key="children"> - <reference ref="527788589"/> - </array> - <reference key="parent" ref="477632272"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6137</string> - <reference key="object" ref="527788589"/> - <reference key="parent" ref="696435068"/> - </object> - <object class="IBObjectRecord"> - <string key="id">714</string> - <reference key="object" ref="34460447"/> - <array class="NSMutableArray" key="children"> - <reference ref="463455866"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Field Value Sheet</string> - </object> - <object class="IBObjectRecord"> - <string key="id">713</string> - <reference key="object" ref="463455866"/> - <array class="NSMutableArray" key="children"> - <reference ref="49106017"/> - <reference ref="132959666"/> - </array> - <reference key="parent" ref="34460447"/> - </object> - <object class="IBObjectRecord"> - <string key="id">711</string> - <reference key="object" ref="49106017"/> - <array class="NSMutableArray" key="children"> - <reference ref="852447608"/> - </array> - <reference key="parent" ref="463455866"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3844</string> - <reference key="object" ref="852447608"/> - <reference key="parent" ref="49106017"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8216</string> - <reference key="object" ref="132959666"/> - <array class="NSMutableArray" key="children"> - <reference ref="271182733"/> - <reference ref="524361801"/> - <reference ref="606708295"/> - </array> - <reference key="parent" ref="463455866"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8218</string> - <reference key="object" ref="271182733"/> - <reference key="parent" ref="132959666"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8217</string> - <reference key="object" ref="524361801"/> - <reference key="parent" ref="132959666"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6557</string> - <reference key="object" ref="629557373"/> - <array class="NSMutableArray" key="children"> - <reference ref="614170633"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Create Table Syntax</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6558</string> - <reference key="object" ref="614170633"/> - <array class="NSMutableArray" key="children"> - <reference ref="20857429"/> - <reference ref="791611345"/> - <reference ref="96543456"/> - <reference ref="772568181"/> - <reference ref="331708526"/> - <reference ref="121401505"/> - </array> - <reference key="parent" ref="629557373"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6564</string> - <reference key="object" ref="20857429"/> - <array class="NSMutableArray" key="children"> - <reference ref="18643543"/> - </array> - <reference key="parent" ref="614170633"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6565</string> - <reference key="object" ref="18643543"/> - <reference key="parent" ref="20857429"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6823</string> - <reference key="object" ref="791611345"/> - <array class="NSMutableArray" key="children"> - <reference ref="832740667"/> - </array> - <reference key="parent" ref="614170633"/> - <string key="objectName">Push Button (Dummy for Close via ESC)</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6824</string> - <reference key="object" ref="832740667"/> - <reference key="parent" ref="791611345"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6563</string> - <reference key="object" ref="96543456"/> - <array class="NSMutableArray" key="children"> - <reference ref="152079722"/> - </array> - <reference key="parent" ref="614170633"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6566</string> - <reference key="object" ref="152079722"/> - <reference key="parent" ref="96543456"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6562</string> - <reference key="object" ref="772568181"/> - <array class="NSMutableArray" key="children"> - <reference ref="712254353"/> - </array> - <reference key="parent" ref="614170633"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6567</string> - <reference key="object" ref="712254353"/> - <reference key="parent" ref="772568181"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6606</string> - <reference key="object" ref="331708526"/> - <array class="NSMutableArray" key="children"> - <reference ref="582064074"/> - </array> - <reference key="parent" ref="614170633"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6607</string> - <reference key="object" ref="582064074"/> - <reference key="parent" ref="331708526"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8210</string> - <reference key="object" ref="121401505"/> - <array class="NSMutableArray" key="children"> - <reference ref="900574291"/> - <reference ref="760360609"/> - <reference ref="939003537"/> - </array> - <reference key="parent" ref="614170633"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8212</string> - <reference key="object" ref="900574291"/> - <reference key="parent" ref="121401505"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8211</string> - <reference key="object" ref="760360609"/> - <reference key="parent" ref="121401505"/> - </object> - <object class="IBObjectRecord"> - <string key="id">959</string> - <reference key="object" ref="401301040"/> - <array class="NSMutableArray" key="children"> - <reference ref="736055667"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Error Sheet</string> - </object> - <object class="IBObjectRecord"> - <string key="id">960</string> - <reference key="object" ref="736055667"/> - <array class="NSMutableArray" key="children"> - <reference ref="884123771"/> - <reference ref="757193708"/> - <reference ref="805064076"/> - <reference ref="999783710"/> - </array> - <reference key="parent" ref="401301040"/> - </object> - <object class="IBObjectRecord"> - <string key="id">964</string> - <reference key="object" ref="884123771"/> - <array class="NSMutableArray" key="children"> - <reference ref="445279030"/> - </array> - <reference key="parent" ref="736055667"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3868</string> - <reference key="object" ref="445279030"/> - <reference key="parent" ref="884123771"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6814</string> - <reference key="object" ref="757193708"/> - <array class="NSMutableArray" key="children"> - <reference ref="361341574"/> - </array> - <reference key="parent" ref="736055667"/> - <string key="objectName">Push Button (Close Dummy for ESC)</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6815</string> - <reference key="object" ref="361341574"/> - <reference key="parent" ref="757193708"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8199</string> - <reference key="object" ref="805064076"/> - <array class="NSMutableArray" key="children"> - <reference ref="832962230"/> - <reference ref="239096412"/> - <reference ref="208952526"/> - </array> - <reference key="parent" ref="736055667"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8201</string> - <reference key="object" ref="832962230"/> - <reference key="parent" ref="805064076"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8200</string> - <reference key="object" ref="239096412"/> - <reference key="parent" ref="805064076"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5428</string> - <reference key="object" ref="364554212"/> - <array class="NSMutableArray" key="children"> - <reference ref="510607156"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Help Panel</string> - </object> - <object class="IBObjectRecord"> - <string key="id">5429</string> - <reference key="object" ref="510607156"/> - <array class="NSMutableArray" key="children"> - <reference ref="301565654"/> - <reference ref="882067248"/> - <reference ref="264841107"/> - <reference ref="176530295"/> - <reference ref="789201908"/> - <reference ref="157285958"/> - <reference ref="790699928"/> - <reference ref="810058338"/> - <reference ref="746091106"/> - <reference ref="948894306"/> - <reference ref="887242385"/> - <reference ref="508882696"/> - <reference ref="206859009"/> - </array> - <reference key="parent" ref="364554212"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5441</string> - <reference key="object" ref="301565654"/> - <reference key="parent" ref="510607156"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5452</string> - <reference key="object" ref="882067248"/> - <array class="NSMutableArray" key="children"> - <reference ref="643565822"/> - </array> - <reference key="parent" ref="510607156"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5453</string> - <reference key="object" ref="643565822"/> - <reference key="parent" ref="882067248"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5464</string> - <reference key="object" ref="264841107"/> - <array class="NSMutableArray" key="children"> - <reference ref="471484739"/> - </array> - <reference key="parent" ref="510607156"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5465</string> - <reference key="object" ref="471484739"/> - <reference key="parent" ref="264841107"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5466</string> - <reference key="object" ref="176530295"/> - <array class="NSMutableArray" key="children"> - <reference ref="821494698"/> - </array> - <reference key="parent" ref="510607156"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5467</string> - <reference key="object" ref="821494698"/> - <reference key="parent" ref="176530295"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5474</string> - <reference key="object" ref="789201908"/> - <array class="NSMutableArray" key="children"> - <reference ref="951022170"/> - </array> - <reference key="parent" ref="510607156"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5475</string> - <reference key="object" ref="951022170"/> - <reference key="parent" ref="789201908"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5497</string> - <reference key="object" ref="157285958"/> - <array class="NSMutableArray" key="children"> - <reference ref="92741637"/> - </array> - <reference key="parent" ref="510607156"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5498</string> - <reference key="object" ref="92741637"/> - <reference key="parent" ref="157285958"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5500</string> - <reference key="object" ref="790699928"/> - <array class="NSMutableArray" key="children"> - <reference ref="458189017"/> - </array> - <reference key="parent" ref="510607156"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5501</string> - <reference key="object" ref="458189017"/> - <reference key="parent" ref="790699928"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5503</string> - <reference key="object" ref="810058338"/> - <array class="NSMutableArray" key="children"> - <reference ref="112913412"/> - </array> - <reference key="parent" ref="510607156"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5504</string> - <reference key="object" ref="112913412"/> - <reference key="parent" ref="810058338"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5509</string> - <reference key="object" ref="746091106"/> - <reference key="parent" ref="510607156"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5510</string> - <reference key="object" ref="948894306"/> - <array class="NSMutableArray" key="children"> - <reference ref="336571135"/> - </array> - <reference key="parent" ref="510607156"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5511</string> - <reference key="object" ref="336571135"/> - <reference key="parent" ref="948894306"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5514</string> - <reference key="object" ref="887242385"/> - <array class="NSMutableArray" key="children"> - <reference ref="1027343673"/> - </array> - <reference key="parent" ref="510607156"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5515</string> - <reference key="object" ref="1027343673"/> - <reference key="parent" ref="887242385"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5517</string> - <reference key="object" ref="508882696"/> - <array class="NSMutableArray" key="children"> - <reference ref="231235267"/> - </array> - <reference key="parent" ref="510607156"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5518</string> - <reference key="object" ref="231235267"/> - <reference key="parent" ref="508882696"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5519</string> - <reference key="object" ref="206859009"/> - <array class="NSMutableArray" key="children"> - <reference ref="35422042"/> - </array> - <reference key="parent" ref="510607156"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5520</string> - <reference key="object" ref="35422042"/> - <reference key="parent" ref="206859009"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8068</string> - <reference key="object" ref="754703764"/> - <array class="NSMutableArray" key="children"> - <reference ref="1008640892"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Advanced Filter Table Window</string> - </object> - <object class="IBObjectRecord"> - <string key="id">8069</string> - <reference key="object" ref="1008640892"/> - <array class="NSMutableArray" key="children"> - <reference ref="676149810"/> - <reference ref="311320315"/> - <reference ref="888560371"/> - <reference ref="567978438"/> - </array> - <reference key="parent" ref="754703764"/> - <string key="objectName">Filter Table Window</string> - </object> - <object class="IBObjectRecord"> - <string key="id">8079</string> - <reference key="object" ref="676149810"/> - <array class="NSMutableArray" key="children"> - <reference ref="1047499221"/> - <reference ref="705697287"/> - </array> - <reference key="parent" ref="1008640892"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8080</string> - <reference key="object" ref="1047499221"/> - <array class="NSMutableArray" key="children"> - <reference ref="873900606"/> - </array> - <reference key="parent" ref="676149810"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8141</string> - <reference key="object" ref="873900606"/> - <array class="NSMutableArray" key="children"> - <reference ref="219664334"/> - <reference ref="684709638"/> - <reference ref="974377033"/> - <reference ref="536214448"/> - </array> - <reference key="parent" ref="1047499221"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8143</string> - <reference key="object" ref="219664334"/> - <reference key="parent" ref="873900606"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8142</string> - <reference key="object" ref="684709638"/> - <reference key="parent" ref="873900606"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8145</string> - <reference key="object" ref="974377033"/> - <reference key="parent" ref="873900606"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8081</string> - <reference key="object" ref="705697287"/> - <array class="NSMutableArray" key="children"> - <reference ref="831663923"/> - <reference ref="97861442"/> - <reference ref="154035357"/> - <reference ref="42463014"/> - <reference ref="995074970"/> - <reference ref="267932131"/> - <reference ref="851365730"/> - <reference ref="983464860"/> - </array> - <reference key="parent" ref="676149810"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8129</string> - <reference key="object" ref="831663923"/> - <array class="NSMutableArray" key="children"> - <reference ref="610378765"/> - </array> - <reference key="parent" ref="705697287"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8130</string> - <reference key="object" ref="610378765"/> - <reference key="parent" ref="831663923"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8131</string> - <reference key="object" ref="97861442"/> - <array class="NSMutableArray" key="children"> - <reference ref="997399969"/> - </array> - <reference key="parent" ref="705697287"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8132</string> - <reference key="object" ref="997399969"/> - <reference key="parent" ref="97861442"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8133</string> - <reference key="object" ref="154035357"/> - <array class="NSMutableArray" key="children"> - <reference ref="459645508"/> - </array> - <reference key="parent" ref="705697287"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8134</string> - <reference key="object" ref="459645508"/> - <reference key="parent" ref="154035357"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8135</string> - <reference key="object" ref="42463014"/> - <array class="NSMutableArray" key="children"> - <reference ref="548227039"/> - </array> - <reference key="parent" ref="705697287"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8136</string> - <reference key="object" ref="548227039"/> - <reference key="parent" ref="42463014"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8137</string> - <reference key="object" ref="995074970"/> - <array class="NSMutableArray" key="children"> - <reference ref="756806938"/> - </array> - <reference key="parent" ref="705697287"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8138</string> - <reference key="object" ref="756806938"/> - <reference key="parent" ref="995074970"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8139</string> - <reference key="object" ref="267932131"/> - <array class="NSMutableArray" key="children"> - <reference ref="869463809"/> - </array> - <reference key="parent" ref="705697287"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8140</string> - <reference key="object" ref="869463809"/> - <reference key="parent" ref="267932131"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8180</string> - <reference key="object" ref="851365730"/> - <array class="NSMutableArray" key="children"> - <reference ref="170918284"/> - </array> - <reference key="parent" ref="705697287"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8181</string> - <reference key="object" ref="170918284"/> - <reference key="parent" ref="851365730"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8204</string> - <reference key="object" ref="983464860"/> - <array class="NSMutableArray" key="children"> - <reference ref="351512146"/> - <reference ref="459608706"/> - <reference ref="148817449"/> - </array> - <reference key="parent" ref="705697287"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8206</string> - <reference key="object" ref="351512146"/> - <reference key="parent" ref="983464860"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8205</string> - <reference key="object" ref="459608706"/> - <reference key="parent" ref="983464860"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8083</string> - <reference key="object" ref="311320315"/> - <array class="NSMutableArray" key="children"> - <reference ref="197752703"/> - </array> - <reference key="parent" ref="1008640892"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8084</string> - <reference key="object" ref="197752703"/> - <reference key="parent" ref="311320315"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8127</string> - <reference key="object" ref="888560371"/> - <array class="NSMutableArray" key="children"> - <reference ref="902890035"/> - </array> - <reference key="parent" ref="1008640892"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8128</string> - <reference key="object" ref="902890035"/> - <reference key="parent" ref="888560371"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8085</string> - <reference key="object" ref="567978438"/> - <array class="NSMutableArray" key="children"> - <reference ref="1028832092"/> - </array> - <reference key="parent" ref="1008640892"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8086</string> - <reference key="object" ref="1028832092"/> - <reference key="parent" ref="567978438"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7609</string> - <reference key="object" ref="926616295"/> - <array class="NSMutableArray" key="children"> - <reference ref="186470798"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Filter Table Set Default Operator Sheet</string> - </object> - <object class="IBObjectRecord"> - <string key="id">7610</string> - <reference key="object" ref="186470798"/> - <array class="NSMutableArray" key="children"> - <reference ref="702058933"/> - <reference ref="3117311"/> - <reference ref="393328807"/> - <reference ref="636956002"/> - <reference ref="167672071"/> - </array> - <reference key="parent" ref="926616295"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7615</string> - <reference key="object" ref="702058933"/> - <array class="NSMutableArray" key="children"> - <reference ref="725540292"/> - </array> - <reference key="parent" ref="186470798"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7616</string> - <reference key="object" ref="725540292"/> - <reference key="parent" ref="702058933"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7617</string> - <reference key="object" ref="3117311"/> - <array class="NSMutableArray" key="children"> - <reference ref="681593820"/> - </array> - <reference key="parent" ref="186470798"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7618</string> - <reference key="object" ref="681593820"/> - <reference key="parent" ref="3117311"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7619</string> - <reference key="object" ref="393328807"/> - <array class="NSMutableArray" key="children"> - <reference ref="1047474636"/> - </array> - <reference key="parent" ref="186470798"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7620</string> - <reference key="object" ref="1047474636"/> - <reference key="parent" ref="393328807"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7629</string> - <reference key="object" ref="636956002"/> - <array class="NSMutableArray" key="children"> - <reference ref="1042029719"/> - </array> - <reference key="parent" ref="186470798"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7630</string> - <reference key="object" ref="1042029719"/> - <reference key="parent" ref="636956002"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7814</string> - <reference key="object" ref="167672071"/> - <array class="NSMutableArray" key="children"> - <reference ref="484537136"/> - </array> - <reference key="parent" ref="186470798"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7815</string> - <reference key="object" ref="484537136"/> - <reference key="parent" ref="167672071"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6405</string> - <reference key="object" ref="446142676"/> - <array class="NSMutableArray" key="children"> - <reference ref="973326234"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Query Favorite Sheet</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6406</string> - <reference key="object" ref="973326234"/> - <array class="NSMutableArray" key="children"> - <reference ref="942662929"/> - <reference ref="852380709"/> - <reference ref="119248743"/> - <reference ref="574616393"/> - <reference ref="762101746"/> - </array> - <reference key="parent" ref="446142676"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6409</string> - <reference key="object" ref="942662929"/> - <array class="NSMutableArray" key="children"> - <reference ref="833672543"/> - </array> - <reference key="parent" ref="973326234"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6412</string> - <reference key="object" ref="833672543"/> - <reference key="parent" ref="942662929"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6408</string> - <reference key="object" ref="852380709"/> - <array class="NSMutableArray" key="children"> - <reference ref="685985166"/> - </array> - <reference key="parent" ref="973326234"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6413</string> - <reference key="object" ref="685985166"/> - <reference key="parent" ref="852380709"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6410</string> - <reference key="object" ref="119248743"/> - <array class="NSMutableArray" key="children"> - <reference ref="1066598212"/> - </array> - <reference key="parent" ref="973326234"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6411</string> - <reference key="object" ref="1066598212"/> - <reference key="parent" ref="119248743"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6407</string> - <reference key="object" ref="574616393"/> - <array class="NSMutableArray" key="children"> - <reference ref="228167501"/> - </array> - <reference key="parent" ref="973326234"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6414</string> - <reference key="object" ref="228167501"/> - <reference key="parent" ref="574616393"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6516</string> - <reference key="object" ref="762101746"/> - <array class="NSMutableArray" key="children"> - <reference ref="57520373"/> - </array> - <reference key="parent" ref="973326234"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6517</string> - <reference key="object" ref="57520373"/> - <reference key="parent" ref="762101746"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6492</string> - <reference key="object" ref="14157748"/> - <array class="NSMutableArray" key="children"> - <reference ref="819636044"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Secure Text Input Sheet</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6493</string> - <reference key="object" ref="819636044"/> - <array class="NSMutableArray" key="children"> - <reference ref="415521383"/> - <reference ref="910916197"/> - <reference ref="205502925"/> - <reference ref="767030531"/> - <reference ref="688538104"/> - </array> - <reference key="parent" ref="14157748"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6494</string> - <reference key="object" ref="415521383"/> - <array class="NSMutableArray" key="children"> - <reference ref="354195963"/> - </array> - <reference key="parent" ref="819636044"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6503</string> - <reference key="object" ref="354195963"/> - <reference key="parent" ref="415521383"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6495</string> - <reference key="object" ref="910916197"/> - <array class="NSMutableArray" key="children"> - <reference ref="974257607"/> - </array> - <reference key="parent" ref="819636044"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6502</string> - <reference key="object" ref="974257607"/> - <reference key="parent" ref="910916197"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6496</string> - <reference key="object" ref="205502925"/> - <array class="NSMutableArray" key="children"> - <reference ref="529004113"/> - </array> - <reference key="parent" ref="819636044"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6501</string> - <reference key="object" ref="529004113"/> - <reference key="parent" ref="205502925"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6497</string> - <reference key="object" ref="767030531"/> - <array class="NSMutableArray" key="children"> - <reference ref="101946838"/> - </array> - <reference key="parent" ref="819636044"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6500</string> - <reference key="object" ref="101946838"/> - <reference key="parent" ref="767030531"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6498</string> - <reference key="object" ref="688538104"/> - <array class="NSMutableArray" key="children"> - <reference ref="851535954"/> - </array> - <reference key="parent" ref="819636044"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6499</string> - <reference key="object" ref="851535954"/> - <reference key="parent" ref="688538104"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3994</string> - <reference key="object" ref="473434057"/> - <array class="NSMutableArray" key="children"> - <reference ref="488920219"/> - <reference ref="688363677"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Custom Toolbar Views</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6293</string> - <reference key="object" ref="488920219"/> - <array class="NSMutableArray" key="children"> - <reference ref="621744750"/> - </array> - <reference key="parent" ref="473434057"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6294</string> - <reference key="object" ref="621744750"/> - <reference key="parent" ref="488920219"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3995</string> - <reference key="object" ref="688363677"/> - <array class="NSMutableArray" key="children"> - <reference ref="627468414"/> - </array> - <reference key="parent" ref="473434057"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3996</string> - <reference key="object" ref="627468414"/> - <array class="NSMutableArray" key="children"> - <reference ref="731000119"/> - </array> - <reference key="parent" ref="688363677"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3997</string> - <reference key="object" ref="731000119"/> - <array class="NSMutableArray" key="children"> - <reference ref="786224119"/> - <reference ref="560134855"/> - <reference ref="1004711405"/> - <reference ref="964448367"/> - </array> - <reference key="parent" ref="627468414"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3998</string> - <reference key="object" ref="786224119"/> - <reference key="parent" ref="731000119"/> - </object> - <object class="IBObjectRecord"> - <string key="id">4521</string> - <reference key="object" ref="560134855"/> - <reference key="parent" ref="731000119"/> - </object> - <object class="IBObjectRecord"> - <string key="id">4523</string> - <reference key="object" ref="1004711405"/> - <reference key="parent" ref="731000119"/> - </object> - <object class="IBObjectRecord"> - <string key="id">4522</string> - <reference key="object" ref="964448367"/> - <reference key="parent" ref="731000119"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5999</string> - <reference key="object" ref="938785731"/> - <array class="NSMutableArray" key="children"> - <reference ref="601040667"/> - <reference ref="742507626"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Title Icon View</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6170</string> - <reference key="object" ref="601040667"/> - <array class="NSMutableArray" key="children"> - <reference ref="958314885"/> - </array> - <reference key="parent" ref="938785731"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6171</string> - <reference key="object" ref="958314885"/> - <reference key="parent" ref="601040667"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6000</string> - <reference key="object" ref="742507626"/> - <array class="NSMutableArray" key="children"> - <reference ref="513736703"/> - </array> - <reference key="parent" ref="938785731"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6001</string> - <reference key="object" ref="513736703"/> - <reference key="parent" ref="742507626"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6885</string> - <reference key="object" ref="51514705"/> - <array class="NSMutableArray" key="children"> - <reference ref="1060011970"/> - <reference ref="229355777"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">statusTable Accessory View</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6886</string> - <reference key="object" ref="1060011970"/> - <array class="NSMutableArray" key="children"> - <reference ref="633820164"/> - <reference ref="229681740"/> - <reference ref="811925718"/> - <reference ref="665534268"/> - </array> - <reference key="parent" ref="51514705"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6888</string> - <reference key="object" ref="633820164"/> - <reference key="parent" ref="1060011970"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6887</string> - <reference key="object" ref="229681740"/> - <reference key="parent" ref="1060011970"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6890</string> - <reference key="object" ref="811925718"/> - <reference key="parent" ref="1060011970"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6901</string> - <reference key="object" ref="229355777"/> - <array class="NSMutableArray" key="children"> - <reference ref="121939811"/> - </array> - <reference key="parent" ref="51514705"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6902</string> - <reference key="object" ref="121939811"/> - <reference key="parent" ref="229355777"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6431</string> - <reference key="object" ref="979594791"/> - <array class="NSMutableArray" key="children"> - <reference ref="129264151"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Query Favorite Search</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6432</string> - <reference key="object" ref="129264151"/> - <array class="NSMutableArray" key="children"> - <reference ref="502741268"/> - </array> - <reference key="parent" ref="979594791"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6433</string> - <reference key="object" ref="502741268"/> - <reference key="parent" ref="129264151"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6447</string> - <reference key="object" ref="758231677"/> - <array class="NSMutableArray" key="children"> - <reference ref="248511894"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Query History Search</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6448</string> - <reference key="object" ref="248511894"/> - <array class="NSMutableArray" key="children"> - <reference ref="3613839"/> - </array> - <reference key="parent" ref="758231677"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6449</string> - <reference key="object" ref="3613839"/> - <reference key="parent" ref="248511894"/> - </object> - <object class="IBObjectRecord"> - <string key="id">1907</string> - <reference key="object" ref="839838102"/> - <reference key="parent" ref="0"/> - <string key="objectName">Shared User Defaults Controller</string> - </object> - <object class="IBObjectRecord"> - <string key="id">134</string> - <reference key="object" ref="227061690"/> - <reference key="parent" ref="0"/> - <string key="objectName">SPCustomQuery</string> - </object> - <object class="IBObjectRecord"> - <string key="id">67</string> - <reference key="object" ref="62480485"/> - <reference key="parent" ref="0"/> - <string key="objectName">SPTableContent</string> - </object> - <object class="IBObjectRecord"> - <string key="id">ki9-Po-bdr</string> - <reference key="object" ref="174325282"/> - <reference key="parent" ref="0"/> - <string key="objectName">SPTableContentFilter</string> - </object> - <object class="IBObjectRecord"> - <string key="id">362</string> - <reference key="object" ref="326640712"/> - <reference key="parent" ref="0"/> - <string key="objectName">TableDump</string> - </object> - <object class="IBObjectRecord"> - <string key="id">68</string> - <reference key="object" ref="421424376"/> - <reference key="parent" ref="0"/> - <string key="objectName">SPTablesList</string> - </object> - <object class="IBObjectRecord"> - <string key="id">69</string> - <reference key="object" ref="239767357"/> - <reference key="parent" ref="0"/> - <string key="objectName">SPTableStructure</string> - </object> - <object class="IBObjectRecord"> - <string key="id">1277</string> - <reference key="object" ref="269913528"/> - <reference key="parent" ref="0"/> - <string key="objectName">SPExtendedTableInfo</string> - </object> - <object class="IBObjectRecord"> - <string key="id">5567</string> - <reference key="object" ref="292161225"/> - <reference key="parent" ref="0"/> - <string key="objectName">SPTableRelations</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6691</string> - <reference key="object" ref="232491680"/> - <reference key="parent" ref="0"/> - <string key="objectName">SPTableTriggers</string> - </object> - <object class="IBObjectRecord"> - <string key="id">4488</string> - <reference key="object" ref="188482031"/> - <reference key="parent" ref="0"/> - <string key="objectName">SPTableInfo</string> - </object> - <object class="IBObjectRecord"> - <string key="id">4702</string> - <reference key="object" ref="679691016"/> - <reference key="parent" ref="0"/> - <string key="objectName">SPTableData</string> - </object> - <object class="IBObjectRecord"> - <string key="id">5377</string> - <reference key="object" ref="143617304"/> - <reference key="parent" ref="0"/> - <string key="objectName">SPExportController</string> - </object> - <object class="IBObjectRecord"> - <string key="id">5814</string> - <reference key="object" ref="92105597"/> - <reference key="parent" ref="0"/> - <string key="objectName">SPDatabaseData</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6297</string> - <reference key="object" ref="588458816"/> - <reference key="parent" ref="0"/> - <string key="objectName">SPHistoryController</string> - </object> - <object class="IBObjectRecord"> - <string key="id">7073</string> - <reference key="object" ref="298287912"/> - <reference key="parent" ref="0"/> - <string key="objectName">SPIndexesController</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6180</string> - <reference key="object" ref="446589600"/> - <array class="NSMutableArray" key="children"> - <reference ref="207266527"/> - <reference ref="917440216"/> - <reference ref="717548863"/> - <reference ref="675484094"/> - <reference ref="449076852"/> - <reference ref="854596635"/> - <reference ref="53213476"/> - <reference ref="993733929"/> - <reference ref="50371646"/> - <reference ref="540586716"/> - <reference ref="203930795"/> - <reference ref="545888363"/> - <reference ref="277343222"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Table List Menu</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6186</string> - <reference key="object" ref="207266527"/> - <reference key="parent" ref="446589600"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6185</string> - <reference key="object" ref="917440216"/> - <reference key="parent" ref="446589600"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6183</string> - <reference key="object" ref="717548863"/> - <reference key="parent" ref="446589600"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6184</string> - <reference key="object" ref="675484094"/> - <reference key="parent" ref="446589600"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6182</string> - <reference key="object" ref="449076852"/> - <reference key="parent" ref="446589600"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6922</string> - <reference key="object" ref="854596635"/> - <reference key="parent" ref="446589600"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7683</string> - <reference key="object" ref="53213476"/> - <reference key="parent" ref="446589600"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7783</string> - <reference key="object" ref="993733929"/> - <reference key="parent" ref="446589600"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7051</string> - <reference key="object" ref="50371646"/> - <array class="NSMutableArray" key="children"> - <reference ref="1068146938"/> - </array> - <reference key="parent" ref="446589600"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7052</string> - <reference key="object" ref="1068146938"/> - <array class="NSMutableArray" key="children"> - <reference ref="91510864"/> - <reference ref="647331108"/> - <reference ref="864241427"/> - </array> - <reference key="parent" ref="50371646"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7054</string> - <reference key="object" ref="91510864"/> - <reference key="parent" ref="1068146938"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7053</string> - <reference key="object" ref="647331108"/> - <reference key="parent" ref="1068146938"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7055</string> - <reference key="object" ref="864241427"/> - <reference key="parent" ref="1068146938"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7056</string> - <reference key="object" ref="540586716"/> - <reference key="parent" ref="446589600"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6923</string> - <reference key="object" ref="203930795"/> - <reference key="parent" ref="446589600"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7828</string> - <reference key="object" ref="545888363"/> - <reference key="parent" ref="446589600"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6219</string> - <reference key="object" ref="419134222"/> - <array class="NSMutableArray" key="children"> - <reference ref="1064723396"/> - <reference ref="45595957"/> - <reference ref="211721936"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Table Indexes Menu</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6220</string> - <reference key="object" ref="1064723396"/> - <reference key="parent" ref="419134222"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6830</string> - <reference key="object" ref="45595957"/> - <reference key="parent" ref="419134222"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6829</string> - <reference key="object" ref="211721936"/> - <reference key="parent" ref="419134222"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6210</string> - <reference key="object" ref="283763973"/> - <array class="NSMutableArray" key="children"> - <reference ref="937683083"/> - <reference ref="592490673"/> - <reference ref="379635614"/> - <reference ref="1028902187"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Table Structure Menu</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6212</string> - <reference key="object" ref="937683083"/> - <reference key="parent" ref="283763973"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6211</string> - <reference key="object" ref="592490673"/> - <reference key="parent" ref="283763973"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7499</string> - <reference key="object" ref="379635614"/> - <reference key="parent" ref="283763973"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7500</string> - <reference key="object" ref="1028902187"/> - <reference key="parent" ref="283763973"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6225</string> - <reference key="object" ref="199906040"/> - <array class="NSMutableArray" key="children"> - <reference ref="146436681"/> - <reference ref="782999991"/> - <reference ref="484791236"/> - <reference ref="598597685"/> - <reference ref="441331289"/> - <reference ref="802401895"/> - <reference ref="817183249"/> - <reference ref="868170049"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Table Content Menu</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6344</string> - <reference key="object" ref="146436681"/> - <reference key="parent" ref="199906040"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6343</string> - <reference key="object" ref="782999991"/> - <reference key="parent" ref="199906040"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6341</string> - <reference key="object" ref="484791236"/> - <reference key="parent" ref="199906040"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7796</string> - <reference key="object" ref="598597685"/> - <reference key="parent" ref="199906040"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7795</string> - <reference key="object" ref="441331289"/> - <reference key="parent" ref="199906040"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6340</string> - <reference key="object" ref="802401895"/> - <reference key="parent" ref="199906040"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6227</string> - <reference key="object" ref="817183249"/> - <reference key="parent" ref="199906040"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6226</string> - <reference key="object" ref="868170049"/> - <reference key="parent" ref="199906040"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7467</string> - <reference key="object" ref="112420931"/> - <array class="NSMutableArray" key="children"> - <reference ref="101703911"/> - <reference ref="690895394"/> - <reference ref="444231487"/> - <reference ref="175357598"/> - <reference ref="769512971"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Table Custom Query Menu</string> - </object> - <object class="IBObjectRecord"> - <string key="id">7468</string> - <reference key="object" ref="101703911"/> - <reference key="parent" ref="112420931"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7469</string> - <reference key="object" ref="690895394"/> - <reference key="parent" ref="112420931"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7470</string> - <reference key="object" ref="444231487"/> - <reference key="parent" ref="112420931"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7472</string> - <reference key="object" ref="175357598"/> - <reference key="parent" ref="112420931"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7473</string> - <reference key="object" ref="769512971"/> - <reference key="parent" ref="112420931"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6232</string> - <reference key="object" ref="972301077"/> - <array class="NSMutableArray" key="children"> - <reference ref="856127754"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Table Relations Menu</string> - </object> - <object class="IBObjectRecord"> - <string key="id">6233</string> - <reference key="object" ref="856127754"/> - <reference key="parent" ref="972301077"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6735</string> - <reference key="object" ref="673337099"/> - <array class="NSMutableArray" key="children"> - <reference ref="964663133"/> - <reference ref="901373201"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Table Triggers Menu</string> - </object> - <object class="IBObjectRecord"> - <string key="id">7668</string> - <reference key="object" ref="964663133"/> - <reference key="parent" ref="673337099"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6736</string> - <reference key="object" ref="901373201"/> - <reference key="parent" ref="673337099"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6685</string> - <reference key="object" ref="778694607"/> - <array class="NSMutableArray" key="children"> - <reference ref="1000153598"/> - </array> - <reference key="parent" ref="45537637"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6687</string> - <reference key="object" ref="1000153598"/> - <array class="NSMutableArray" key="children"> - <reference ref="4503810"/> - </array> - <reference key="parent" ref="778694607"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6690</string> - <reference key="object" ref="4503810"/> - <reference key="parent" ref="1000153598"/> - </object> - <object class="IBObjectRecord"> - <string key="id">22</string> - <reference key="object" ref="720354614"/> - <array class="NSMutableArray" key="children"> - <reference ref="724601240"/> - </array> - <reference key="parent" ref="737277163"/> - </object> - <object class="IBObjectRecord"> - <string key="id">23</string> - <reference key="object" ref="724601240"/> - <array class="NSMutableArray" key="children"> - <reference ref="534606014"/> - </array> - <reference key="parent" ref="720354614"/> - </object> - <object class="IBObjectRecord"> - <string key="id">4015</string> - <reference key="object" ref="534606014"/> - <reference key="parent" ref="724601240"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7692</string> - <reference key="object" ref="828624540"/> - <array class="NSMutableArray" key="children"> - <reference ref="651950067"/> - </array> - <reference key="parent" ref="883675819"/> - <string key="objectName">Table View (Activities)</string> - </object> - <object class="IBObjectRecord"> - <string key="id">7695</string> - <reference key="object" ref="651950067"/> - <array class="NSMutableArray" key="children"> - <reference ref="686094632"/> - </array> - <reference key="parent" ref="828624540"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7696</string> - <reference key="object" ref="686094632"/> - <reference key="parent" ref="651950067"/> - </object> - <object class="IBObjectRecord"> - <string key="id">4484</string> - <reference key="object" ref="366652030"/> - <array class="NSMutableArray" key="children"> - <reference ref="698332053"/> - </array> - <reference key="parent" ref="980722778"/> - </object> - <object class="IBObjectRecord"> - <string key="id">4485</string> - <reference key="object" ref="698332053"/> - <array class="NSMutableArray" key="children"> - <reference ref="62743380"/> - </array> - <reference key="parent" ref="366652030"/> - </object> - <object class="IBObjectRecord"> - <string key="id">4486</string> - <reference key="object" ref="62743380"/> - <reference key="parent" ref="698332053"/> - </object> - <object class="IBObjectRecord"> - <string key="id">232</string> - <reference key="object" ref="977333304"/> - <array class="NSMutableArray" key="children"> - <reference ref="446023352"/> - <reference ref="310575395"/> - <reference ref="55597770"/> - <reference ref="674189853"/> - <reference ref="368094768"/> - <reference ref="409792733"/> - <reference ref="574703638"/> - <reference ref="897097881"/> - <reference ref="511738572"/> - <reference ref="352497767"/> - <reference ref="445098808"/> - <reference ref="1071872427"/> - <reference ref="243202311"/> - </array> - <reference key="parent" ref="617988703"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7488</string> - <reference key="object" ref="446023352"/> - <array class="NSMutableArray" key="children"> - <reference ref="329669870"/> - </array> - <reference key="parent" ref="977333304"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7486</string> - <reference key="object" ref="310575395"/> - <array class="NSMutableArray" key="children"> - <reference ref="511865308"/> - </array> - <reference key="parent" ref="977333304"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7484</string> - <reference key="object" ref="55597770"/> - <array class="NSMutableArray" key="children"> - <reference ref="732109310"/> - </array> - <reference key="parent" ref="977333304"/> - </object> - <object class="IBObjectRecord"> - <string key="id">249</string> - <reference key="object" ref="674189853"/> - <array class="NSMutableArray" key="children"> - <reference ref="617145453"/> - </array> - <reference key="parent" ref="977333304"/> - </object> - <object class="IBObjectRecord"> - <string key="id">248</string> - <reference key="object" ref="368094768"/> - <array class="NSMutableArray" key="children"> - <reference ref="365139124"/> - </array> - <reference key="parent" ref="977333304"/> - </object> - <object class="IBObjectRecord"> - <string key="id">247</string> - <reference key="object" ref="409792733"/> - <array class="NSMutableArray" key="children"> - <reference ref="249661974"/> - </array> - <reference key="parent" ref="977333304"/> - </object> - <object class="IBObjectRecord"> - <string key="id">246</string> - <reference key="object" ref="574703638"/> - <array class="NSMutableArray" key="children"> - <reference ref="562235954"/> - </array> - <reference key="parent" ref="977333304"/> - </object> - <object class="IBObjectRecord"> - <string key="id">749</string> - <reference key="object" ref="897097881"/> - <array class="NSMutableArray" key="children"> - <reference ref="410734081"/> - </array> - <reference key="parent" ref="977333304"/> - </object> - <object class="IBObjectRecord"> - <string key="id">748</string> - <reference key="object" ref="511738572"/> - <array class="NSMutableArray" key="children"> - <reference ref="629296588"/> - </array> - <reference key="parent" ref="977333304"/> - </object> - <object class="IBObjectRecord"> - <string key="id">655</string> - <reference key="object" ref="352497767"/> - <array class="NSMutableArray" key="children"> - <reference ref="87089816"/> - </array> - <reference key="parent" ref="977333304"/> - </object> - <object class="IBObjectRecord"> - <string key="id">654</string> - <reference key="object" ref="445098808"/> - <array class="NSMutableArray" key="children"> - <reference ref="139392153"/> - </array> - <reference key="parent" ref="977333304"/> - </object> - <object class="IBObjectRecord"> - <string key="id">245</string> - <reference key="object" ref="1071872427"/> - <array class="NSMutableArray" key="children"> - <reference ref="381357793"/> - </array> - <reference key="parent" ref="977333304"/> - </object> - <object class="IBObjectRecord"> - <string key="id">233</string> - <reference key="object" ref="243202311"/> - <array class="NSMutableArray" key="children"> - <reference ref="804651188"/> - </array> - <reference key="parent" ref="977333304"/> - </object> - <object class="IBObjectRecord"> - <string key="id">1311</string> - <reference key="object" ref="804651188"/> - <reference key="parent" ref="243202311"/> - </object> - <object class="IBObjectRecord"> - <string key="id">1304</string> - <reference key="object" ref="381357793"/> - <reference key="parent" ref="1071872427"/> - </object> - <object class="IBObjectRecord"> - <string key="id">1310</string> - <reference key="object" ref="139392153"/> - <reference key="parent" ref="445098808"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6242</string> - <reference key="object" ref="87089816"/> - <reference key="parent" ref="352497767"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6241</string> - <reference key="object" ref="629296588"/> - <reference key="parent" ref="511738572"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6240</string> - <reference key="object" ref="410734081"/> - <reference key="parent" ref="897097881"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6239</string> - <reference key="object" ref="562235954"/> - <reference key="parent" ref="574703638"/> - </object> - <object class="IBObjectRecord"> - <string key="id">1312</string> - <reference key="object" ref="249661974"/> - <reference key="parent" ref="409792733"/> - </object> - <object class="IBObjectRecord"> - <string key="id">1313</string> - <reference key="object" ref="365139124"/> - <reference key="parent" ref="368094768"/> - </object> - <object class="IBObjectRecord"> - <string key="id">1309</string> - <reference key="object" ref="617145453"/> - <reference key="parent" ref="674189853"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7490</string> - <reference key="object" ref="732109310"/> - <array class="NSMutableArray" key="children"> - <reference ref="856601787"/> - </array> - <reference key="parent" ref="55597770"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7491</string> - <reference key="object" ref="856601787"/> - <reference key="parent" ref="732109310"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7493</string> - <reference key="object" ref="511865308"/> - <array class="NSMutableArray" key="children"> - <reference ref="65801928"/> - </array> - <reference key="parent" ref="310575395"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7494</string> - <reference key="object" ref="65801928"/> - <reference key="parent" ref="511865308"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7489</string> - <reference key="object" ref="329669870"/> - <reference key="parent" ref="446023352"/> - </object> - <object class="IBObjectRecord"> - <string key="id">289</string> - <reference key="object" ref="71493486"/> - <array class="NSMutableArray" key="children"> - <reference ref="809153998"/> - <reference ref="507461202"/> - <reference ref="717750995"/> - <reference ref="421504808"/> - <reference ref="132049433"/> - <reference ref="780491378"/> - <reference ref="867527160"/> - <reference ref="442623828"/> - <reference ref="836088148"/> - </array> - <reference key="parent" ref="601320525"/> - </object> - <object class="IBObjectRecord"> - <string key="id">297</string> - <reference key="object" ref="809153998"/> - <array class="NSMutableArray" key="children"> - <reference ref="467975189"/> - </array> - <reference key="parent" ref="71493486"/> - </object> - <object class="IBObjectRecord"> - <string key="id">296</string> - <reference key="object" ref="507461202"/> - <array class="NSMutableArray" key="children"> - <reference ref="810715598"/> - </array> - <reference key="parent" ref="71493486"/> - </object> - <object class="IBObjectRecord"> - <string key="id">295</string> - <reference key="object" ref="717750995"/> - <array class="NSMutableArray" key="children"> - <reference ref="172139056"/> - </array> - <reference key="parent" ref="71493486"/> - </object> - <object class="IBObjectRecord"> - <string key="id">294</string> - <reference key="object" ref="421504808"/> - <array class="NSMutableArray" key="children"> - <reference ref="1042677827"/> - </array> - <reference key="parent" ref="71493486"/> - </object> - <object class="IBObjectRecord"> - <string key="id">293</string> - <reference key="object" ref="132049433"/> - <array class="NSMutableArray" key="children"> - <reference ref="634069657"/> - </array> - <reference key="parent" ref="71493486"/> - </object> - <object class="IBObjectRecord"> - <string key="id">292</string> - <reference key="object" ref="780491378"/> - <array class="NSMutableArray" key="children"> - <reference ref="683876628"/> - </array> - <reference key="parent" ref="71493486"/> - </object> - <object class="IBObjectRecord"> - <string key="id">291</string> - <reference key="object" ref="867527160"/> - <array class="NSMutableArray" key="children"> - <reference ref="321431771"/> - </array> - <reference key="parent" ref="71493486"/> - </object> - <object class="IBObjectRecord"> - <string key="id">290</string> - <reference key="object" ref="442623828"/> - <array class="NSMutableArray" key="children"> - <reference ref="5426640"/> - </array> - <reference key="parent" ref="71493486"/> - </object> - <object class="IBObjectRecord"> - <string key="id">288</string> - <reference key="object" ref="836088148"/> - <array class="NSMutableArray" key="children"> - <reference ref="682005233"/> - </array> - <reference key="parent" ref="71493486"/> - </object> - <object class="IBObjectRecord"> - <string key="id">1314</string> - <reference key="object" ref="682005233"/> - <reference key="parent" ref="836088148"/> - </object> - <object class="IBObjectRecord"> - <string key="id">1315</string> - <reference key="object" ref="5426640"/> - <reference key="parent" ref="442623828"/> - </object> - <object class="IBObjectRecord"> - <string key="id">1316</string> - <reference key="object" ref="321431771"/> - <reference key="parent" ref="867527160"/> - </object> - <object class="IBObjectRecord"> - <string key="id">1317</string> - <reference key="object" ref="683876628"/> - <reference key="parent" ref="780491378"/> - </object> - <object class="IBObjectRecord"> - <string key="id">1323</string> - <reference key="object" ref="634069657"/> - <reference key="parent" ref="132049433"/> - </object> - <object class="IBObjectRecord"> - <string key="id">1322</string> - <reference key="object" ref="1042677827"/> - <reference key="parent" ref="421504808"/> - </object> - <object class="IBObjectRecord"> - <string key="id">1318</string> - <reference key="object" ref="172139056"/> - <reference key="parent" ref="717750995"/> - </object> - <object class="IBObjectRecord"> - <string key="id">1319</string> - <reference key="object" ref="810715598"/> - <reference key="parent" ref="507461202"/> - </object> - <object class="IBObjectRecord"> - <string key="id">1320</string> - <reference key="object" ref="467975189"/> - <reference key="parent" ref="809153998"/> - </object> - <object class="IBObjectRecord"> - <string key="id">FF9-z2-9od</string> - <reference key="object" ref="897255549"/> - <reference key="parent" ref="16186465"/> - </object> - <object class="IBObjectRecord"> - <string key="id">36</string> - <reference key="object" ref="589548204"/> - <array class="NSMutableArray" key="children"> - <reference ref="564631085"/> - </array> - <reference key="parent" ref="526437487"/> - </object> - <object class="IBObjectRecord"> - <string key="id">38</string> - <reference key="object" ref="564631085"/> - <array class="NSMutableArray" key="children"> - <reference ref="335095511"/> - </array> - <reference key="parent" ref="589548204"/> - </object> - <object class="IBObjectRecord"> - <string key="id">3903</string> - <reference key="object" ref="335095511"/> - <reference key="parent" ref="564631085"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8254</string> - <reference key="object" ref="995019363"/> - <reference key="parent" ref="804607013"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7224</string> - <reference key="object" ref="628833149"/> - <array class="NSMutableArray" key="children"> - <reference ref="120128716"/> - </array> - <reference key="parent" ref="752414392"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7228</string> - <reference key="object" ref="120128716"/> - <array class="NSMutableArray" key="children"> - <reference ref="929769209"/> - </array> - <reference key="parent" ref="628833149"/> - </object> - <object class="IBObjectRecord"> - <string key="id">7229</string> - <reference key="object" ref="929769209"/> - <reference key="parent" ref="120128716"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8248</string> - <reference key="object" ref="767200221"/> - <reference key="parent" ref="663912545"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8236</string> - <reference key="object" ref="902567272"/> - <reference key="parent" ref="834551573"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8242</string> - <reference key="object" ref="804444600"/> - <reference key="parent" ref="866412611"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5548</string> - <reference key="object" ref="371927703"/> - <array class="NSMutableArray" key="children"> - <reference ref="584754487"/> - <reference ref="682363670"/> - <reference ref="266761466"/> - <reference ref="140307253"/> - <reference ref="769452486"/> - <reference ref="406152619"/> - <reference ref="944957441"/> - </array> - <reference key="parent" ref="129614519"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5586</string> - <reference key="object" ref="584754487"/> - <array class="NSMutableArray" key="children"> - <reference ref="552310450"/> - </array> - <reference key="parent" ref="371927703"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5584</string> - <reference key="object" ref="682363670"/> - <array class="NSMutableArray" key="children"> - <reference ref="471953548"/> - </array> - <reference key="parent" ref="371927703"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5582</string> - <reference key="object" ref="266761466"/> - <array class="NSMutableArray" key="children"> - <reference ref="680367617"/> - </array> - <reference key="parent" ref="371927703"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5580</string> - <reference key="object" ref="140307253"/> - <array class="NSMutableArray" key="children"> - <reference ref="1059770652"/> - </array> - <reference key="parent" ref="371927703"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8335</string> - <reference key="object" ref="769452486"/> - <array class="NSMutableArray" key="children"> - <reference ref="115960720"/> - </array> - <reference key="parent" ref="371927703"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5578</string> - <reference key="object" ref="406152619"/> - <array class="NSMutableArray" key="children"> - <reference ref="28130600"/> - </array> - <reference key="parent" ref="371927703"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5549</string> - <reference key="object" ref="944957441"/> - <array class="NSMutableArray" key="children"> - <reference ref="118076262"/> - </array> - <reference key="parent" ref="371927703"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5550</string> - <reference key="object" ref="118076262"/> - <reference key="parent" ref="944957441"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5579</string> - <reference key="object" ref="28130600"/> - <reference key="parent" ref="406152619"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8336</string> - <reference key="object" ref="115960720"/> - <reference key="parent" ref="769452486"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5581</string> - <reference key="object" ref="1059770652"/> - <reference key="parent" ref="140307253"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5583</string> - <reference key="object" ref="680367617"/> - <reference key="parent" ref="266761466"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5585</string> - <reference key="object" ref="471953548"/> - <reference key="parent" ref="682363670"/> - </object> - <object class="IBObjectRecord"> - <string key="id">5587</string> - <reference key="object" ref="552310450"/> - <reference key="parent" ref="584754487"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6701</string> - <reference key="object" ref="203790701"/> - <array class="NSMutableArray" key="children"> - <reference ref="896451098"/> - <reference ref="895656760"/> - <reference ref="560699090"/> - <reference ref="658795423"/> - <reference ref="289888126"/> - <reference ref="297670866"/> - <reference ref="830933480"/> - </array> - <reference key="parent" ref="76455301"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6729</string> - <reference key="object" ref="896451098"/> - <array class="NSMutableArray" key="children"> - <reference ref="258822130"/> - </array> - <reference key="parent" ref="203790701"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6727</string> - <reference key="object" ref="895656760"/> - <array class="NSMutableArray" key="children"> - <reference ref="931739523"/> - </array> - <reference key="parent" ref="203790701"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6705</string> - <reference key="object" ref="560699090"/> - <array class="NSMutableArray" key="children"> - <reference ref="441066285"/> - </array> - <reference key="parent" ref="203790701"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6706</string> - <reference key="object" ref="658795423"/> - <array class="NSMutableArray" key="children"> - <reference ref="580250904"/> - </array> - <reference key="parent" ref="203790701"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6707</string> - <reference key="object" ref="289888126"/> - <array class="NSMutableArray" key="children"> - <reference ref="937165163"/> - </array> - <reference key="parent" ref="203790701"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6708</string> - <reference key="object" ref="297670866"/> - <array class="NSMutableArray" key="children"> - <reference ref="49327695"/> - </array> - <reference key="parent" ref="203790701"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6709</string> - <reference key="object" ref="830933480"/> - <array class="NSMutableArray" key="children"> - <reference ref="71140164"/> - </array> - <reference key="parent" ref="203790701"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6712</string> - <reference key="object" ref="71140164"/> - <reference key="parent" ref="830933480"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6713</string> - <reference key="object" ref="49327695"/> - <reference key="parent" ref="297670866"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6714</string> - <reference key="object" ref="937165163"/> - <reference key="parent" ref="289888126"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6715</string> - <reference key="object" ref="580250904"/> - <reference key="parent" ref="658795423"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6716</string> - <reference key="object" ref="441066285"/> - <reference key="parent" ref="560699090"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6728</string> - <reference key="object" ref="931739523"/> - <reference key="parent" ref="895656760"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6730</string> - <reference key="object" ref="258822130"/> - <reference key="parent" ref="896451098"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8230</string> - <reference key="object" ref="193453639"/> - <reference key="parent" ref="924992653"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8219</string> - <reference key="object" ref="606708295"/> - <reference key="parent" ref="132959666"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8213</string> - <reference key="object" ref="939003537"/> - <reference key="parent" ref="121401505"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8202</string> - <reference key="object" ref="208952526"/> - <reference key="parent" ref="805064076"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8144</string> - <reference key="object" ref="536214448"/> - <array class="NSMutableArray" key="children"> - <reference ref="198516851"/> - </array> - <reference key="parent" ref="873900606"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8146</string> - <reference key="object" ref="198516851"/> - <array class="NSMutableArray" key="children"> - <reference ref="169455411"/> - </array> - <reference key="parent" ref="536214448"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8149</string> - <reference key="object" ref="169455411"/> - <reference key="parent" ref="198516851"/> - </object> - <object class="IBObjectRecord"> - <string key="id">8207</string> - <reference key="object" ref="148817449"/> - <reference key="parent" ref="983464860"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6889</string> - <reference key="object" ref="665534268"/> - <array class="NSMutableArray" key="children"> - <reference ref="1000908373"/> - <reference ref="783270339"/> - <reference ref="851816083"/> - </array> - <reference key="parent" ref="1060011970"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6895</string> - <reference key="object" ref="1000908373"/> - <array class="NSMutableArray" key="children"> - <reference ref="193926016"/> - </array> - <reference key="parent" ref="665534268"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6892</string> - <reference key="object" ref="783270339"/> - <array class="NSMutableArray" key="children"> - <reference ref="923576592"/> - </array> - <reference key="parent" ref="665534268"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6891</string> - <reference key="object" ref="851816083"/> - <array class="NSMutableArray" key="children"> - <reference ref="547524746"/> - </array> - <reference key="parent" ref="665534268"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6894</string> - <reference key="object" ref="547524746"/> - <reference key="parent" ref="851816083"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6893</string> - <reference key="object" ref="923576592"/> - <reference key="parent" ref="783270339"/> - </object> - <object class="IBObjectRecord"> - <string key="id">6896</string> - <reference key="object" ref="193926016"/> - <reference key="parent" ref="1000908373"/> - </object> - <object class="IBObjectRecord"> - <string key="id">KYo-IU-iIw</string> - <reference key="object" ref="277343222"/> - <reference key="parent" ref="446589600"/> - </object> - <object class="IBObjectRecord"> - <string key="id">Ts3-iA-OpO</string> - <reference key="object" ref="441784509"/> - <reference key="parent" ref="136120153"/> - </object> - <object class="IBObjectRecord"> - <string key="id">VCn-3k-MdI</string> - <reference key="object" ref="419216241"/> - <array class="NSMutableArray" key="children"> - <reference ref="773336919"/> - <reference ref="282832207"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">MySQL Error Accessory View</string> - </object> - <object class="IBObjectRecord"> - <string key="id">GVI-VY-JuM</string> - <reference key="object" ref="282832207"/> - <array class="NSMutableArray" key="children"> - <reference ref="164374303"/> - </array> - <reference key="parent" ref="419216241"/> - </object> - <object class="IBObjectRecord"> - <string key="id">00a-86-EQq</string> - <reference key="object" ref="164374303"/> - <reference key="parent" ref="282832207"/> - </object> - <object class="IBObjectRecord"> - <string key="id">qxR-EW-V6F</string> - <reference key="object" ref="773336919"/> - <array class="NSMutableArray" key="children"> - <reference ref="167869478"/> - <reference ref="430345086"/> - <reference ref="14611541"/> - </array> - <reference key="parent" ref="419216241"/> - </object> - <object class="IBObjectRecord"> - <string key="id">UVh-gz-xnJ</string> - <reference key="object" ref="167869478"/> - <reference key="parent" ref="773336919"/> - </object> - <object class="IBObjectRecord"> - <string key="id">TRD-dk-r1Q</string> - <reference key="object" ref="430345086"/> - <reference key="parent" ref="773336919"/> - </object> - <object class="IBObjectRecord"> - <string key="id">mRm-ts-hRV</string> - <reference key="object" ref="14611541"/> - <reference key="parent" ref="773336919"/> - </object> - <object class="IBObjectRecord"> - <string key="id">zPq-c4-GfK</string> - <reference key="object" ref="398163780"/> - <array class="NSMutableArray" key="children"> - <reference ref="658680247"/> - </array> - <reference key="parent" ref="66282258"/> - </object> - <object class="IBObjectRecord"> - <string key="id">n3P-gU-pX8</string> - <reference key="object" ref="658680247"/> - <reference key="parent" ref="398163780"/> - </object> - <object class="IBObjectRecord"> - <string key="id">n5n-Ef-ROd</string> - <reference key="object" ref="535859051"/> - <array class="NSMutableArray" key="children"> - <reference ref="329948835"/> - </array> - <reference key="parent" ref="544458901"/> - </object> - <object class="IBObjectRecord"> - <string key="id">SPm-RJ-YgI</string> - <reference key="object" ref="329948835"/> - <reference key="parent" ref="535859051"/> - </object> - <object class="IBObjectRecord"> - <string key="id">0kM-iB-j0E</string> - <reference key="object" ref="999783710"/> - <array class="NSMutableArray" key="children"> - <reference ref="120319413"/> - </array> - <reference key="parent" ref="736055667"/> - </object> - <object class="IBObjectRecord"> - <string key="id">j3N-dd-SyM</string> - <reference key="object" ref="120319413"/> - <reference key="parent" ref="999783710"/> - </object> - <object class="IBObjectRecord"> - <string key="id">NkY-EN-Fxn</string> - <reference key="object" ref="746008569"/> - <array class="NSMutableArray" key="children"> - <reference ref="343760123"/> - </array> - <reference key="parent" ref="0"/> - <string key="objectName">Structure Type Help</string> - </object> - <object class="IBObjectRecord"> - <string key="id">h2r-1x-8ZD</string> - <reference key="object" ref="343760123"/> - <array class="NSMutableArray" key="children"> - <reference ref="417749005"/> - </array> - <reference key="parent" ref="746008569"/> - </object> - <object class="IBObjectRecord"> - <string key="id">VTe-1x-Phd</string> - <reference key="object" ref="417749005"/> - <array class="NSMutableArray" key="children"> - <reference ref="81696073"/> - <reference ref="21184185"/> - <reference ref="1022049165"/> - </array> - <reference key="parent" ref="343760123"/> - </object> - <object class="IBObjectRecord"> - <string key="id">Bfr-0R-dqh</string> - <reference key="object" ref="81696073"/> - <reference key="parent" ref="417749005"/> - </object> - <object class="IBObjectRecord"> - <string key="id">mBC-nL-nLZ</string> - <reference key="object" ref="21184185"/> - <reference key="parent" ref="417749005"/> - </object> - <object class="IBObjectRecord"> - <string key="id">INC-ms-oeO</string> - <reference key="object" ref="1022049165"/> - <reference key="parent" ref="417749005"/> - </object> - </array> - </object> - <dictionary class="NSMutableDictionary" key="flattenedProperties"> - <string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="-1.showNotes"/> - <string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="-2.showNotes"/> - <string key="-3.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="-3.showNotes"/> - <string key="00a-86-EQq.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <string key="0kM-iB-j0E.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <string key="119.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="119.showNotes"/> - <string key="120.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="120.IBUserGuides" ref="0"/> - <boolean value="NO" key="120.showNotes"/> - <string key="120.userInterfaceItemIdentifier">QueryTabView</string> - <string key="1245.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="1245.showNotes"/> - <string key="1246.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="1246.IBUserGuides" ref="0"/> - <boolean value="NO" key="1246.showNotes"/> - <string key="1246.userInterfaceItemIdentifier">StatusTabView</string> - <string key="1277.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="1277.showNotes"/> - <string key="1304.CustomClassName">SPComboBoxCell</string> - <string key="1304.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="1304.showNotes"/> - <string key="1309.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="1309.showNotes"/> - <string key="1310.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="1310.showNotes"/> - <string key="1311.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="1311.showNotes"/> - <string key="1312.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="1312.showNotes"/> - <string key="1313.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="1313.showNotes"/> - <string key="1314.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="1314.showNotes"/> - <string key="1315.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="1315.showNotes"/> - <string key="1316.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="1316.showNotes"/> - <string key="1317.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="1317.showNotes"/> - <string key="1318.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="1318.showNotes"/> - <string key="1319.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="1319.showNotes"/> - <string key="1320.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="1320.showNotes"/> - <string key="1322.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="1322.showNotes"/> - <string key="1323.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="1323.showNotes"/> - <string key="134.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="134.showNotes"/> - <string key="144.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="144.showNotes"/> - <object class="NSMutableDictionary" key="146.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="805164801"/> - <string key="toolTip">Choose a field you want to use for your search</string> - </object> - </object> - <string key="146.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="146.IBUserGuides" ref="0"/> - <boolean value="NO" key="146.showNotes"/> - <string key="147.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="147.showNotes"/> - <string key="154.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="154.showNotes"/> - <object class="NSMutableDictionary" key="156.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="687258326"/> - <string key="toolTip">Choose a search operator</string> - </object> - </object> - <string key="156.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="156.IBUserGuides" ref="0"/> - <boolean value="NO" key="156.showNotes"/> - <string key="157.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="157.showNotes"/> - <string key="1907.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="1907.showNotes"/> - <string key="21.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="21.IBUserGuides" ref="0"/> - <boolean value="NO" key="21.showNotes"/> - <string key="22.CustomClassName">SPTableView</string> - <string key="22.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="22.IBUserGuides" ref="0"/> - <boolean value="NO" key="22.showNotes"/> - <string key="22.userInterfaceItemIdentifier">TablesListTableView</string> - <string key="23.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="23.showNotes"/> - <string key="231.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="231.IBUserGuides" ref="0"/> - <boolean value="NO" key="231.showNotes"/> - <string key="232.CustomClassName">SPTableView</string> - <string key="232.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="232.IBUserGuides" ref="0"/> - <boolean value="NO" key="232.showNotes"/> - <string key="232.userInterfaceItemIdentifier">TableStructureColumnsTableView</string> - <string key="233.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="233.showNotes"/> - <string key="245.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="245.showNotes"/> - <string key="246.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="246.showNotes"/> - <string key="247.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="247.showNotes"/> - <string key="248.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="248.showNotes"/> - <string key="249.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="249.showNotes"/> - <object class="NSMutableDictionary" key="25.IBAttributePlaceholdersKey"> - <string key="NS.key.0">InitialTabViewItem</string> - <object class="IBInitialTabViewItemAttribute" key="NS.object.0"> - <string key="name">InitialTabViewItem</string> - <reference key="object" ref="280187924"/> - <reference key="initialTabViewItem" ref="449203689"/> - </object> - </object> - <string key="25.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="25.IBUserGuides" ref="0"/> - <boolean value="NO" key="25.showNotes"/> - <string key="26.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="26.showNotes"/> - <string key="261.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="261.IBUserGuides" ref="0"/> - <boolean value="NO" key="261.showNotes"/> - <string key="27.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="27.IBUserGuides" ref="0"/> - <boolean value="NO" key="27.showNotes"/> - <string key="27.userInterfaceItemIdentifier">ContentTabView</string> - <string key="28.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="28.showNotes"/> - <string key="287.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="287.IBUserGuides" ref="0"/> - <boolean value="NO" key="287.showNotes"/> - <string key="287.userInterfaceItemIdentifier">TableStructureIndexesTableScrollView</string> - <string key="288.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="288.showNotes"/> - <string key="289.CustomClassName">SPTableView</string> - <string key="289.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="289.IBUserGuides" ref="0"/> - <boolean value="NO" key="289.showNotes"/> - <string key="289.userInterfaceItemIdentifier">TableStructureIndexesTableView</string> - <string key="29.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="29.IBUserGuides" ref="0"/> - <boolean value="NO" key="29.showNotes"/> - <string key="29.userInterfaceItemIdentifier">StructureTabView</string> - <string key="290.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="290.showNotes"/> - <string key="291.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="291.showNotes"/> - <string key="292.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="292.showNotes"/> - <string key="293.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="293.showNotes"/> - <string key="294.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="294.showNotes"/> - <string key="295.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="295.showNotes"/> - <string key="296.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="296.showNotes"/> - <string key="297.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="297.showNotes"/> - <string key="35.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="35.IBUserGuides" ref="0"/> - <boolean value="NO" key="35.showNotes"/> - <string key="36.CustomClassName">SPCopyTable</string> - <string key="36.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="36.IBUserGuides" ref="0"/> - <boolean value="NO" key="36.showNotes"/> - <string key="36.userInterfaceItemIdentifier">TableContentTableView</string> - <string key="362.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="362.showNotes"/> - <string key="3754.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3754.showNotes"/> - <string key="3755.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3755.showNotes"/> - <string key="3759.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3759.showNotes"/> - <string key="38.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="38.showNotes"/> - <string key="3826.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3826.showNotes"/> - <string key="3827.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3827.showNotes"/> - <string key="3828.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3828.showNotes"/> - <string key="3829.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3829.showNotes"/> - <string key="3830.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3830.showNotes"/> - <string key="3832.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3832.showNotes"/> - <string key="3833.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3833.showNotes"/> - <string key="3834.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3834.showNotes"/> - <string key="3835.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3835.showNotes"/> - <string key="3837.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3837.showNotes"/> - <string key="3838.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3838.showNotes"/> - <string key="3844.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3844.showNotes"/> - <string key="3868.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3868.showNotes"/> - <string key="3903.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3903.showNotes"/> - <string key="3915.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="3915.IBUserGuides" ref="0"/> - <boolean value="NO" key="3915.showNotes"/> - <string key="3916.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="3916.IBUserGuides" ref="0"/> - <boolean value="NO" key="3916.showNotes"/> - <string key="3918.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="3918.IBUserGuides" ref="0"/> - <boolean value="NO" key="3918.showNotes"/> - <string key="3919.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="3919.IBUserGuides" ref="0"/> - <boolean value="NO" key="3919.showNotes"/> - <string key="3920.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="3920.IBUserGuides" ref="0"/> - <boolean value="NO" key="3920.showNotes"/> - <string key="3921.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="3921.IBUserGuides" ref="0"/> - <boolean value="NO" key="3921.showNotes"/> - <string key="3922.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="3922.IBUserGuides" ref="0"/> - <boolean value="NO" key="3922.showNotes"/> - <string key="3923.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="3923.IBUserGuides" ref="0"/> - <boolean value="NO" key="3923.showNotes"/> - <string key="3924.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="3924.IBUserGuides" ref="0"/> - <boolean value="NO" key="3924.showNotes"/> - <string key="3925.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="3925.IBUserGuides" ref="0"/> - <boolean value="NO" key="3925.showNotes"/> - <string key="3926.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="3926.IBUserGuides" ref="0"/> - <boolean value="NO" key="3926.showNotes"/> - <string key="3963.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="3963.IBUserGuides" ref="0"/> - <boolean value="NO" key="3963.showNotes"/> - <string key="3964.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3964.showNotes"/> - <string key="3971.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="3971.IBUserGuides" ref="0"/> - <boolean value="NO" key="3971.showNotes"/> - <string key="3972.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3972.showNotes"/> - <string key="3994.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="3994.IBUserGuides" ref="0"/> - <boolean value="NO" key="3994.showNotes"/> - <object class="NSMutableDictionary" key="3995.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="688363677"/> - <string key="toolTip">Select a database to view (⇧⌘D)</string> - </object> - </object> - <string key="3995.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="3995.IBUserGuides" ref="0"/> - <boolean value="NO" key="3995.showNotes"/> - <string key="3996.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3996.showNotes"/> - <string key="3997.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3997.showNotes"/> - <string key="3998.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="3998.showNotes"/> - <string key="4015.CustomClassName">SPTableTextFieldCell</string> - <string key="4015.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="4015.showNotes"/> - <boolean value="NO" key="409.IBNSWindowAutoPositionCentersHorizontal"/> - <boolean value="NO" key="409.IBNSWindowAutoPositionCentersVertical"/> - <string key="409.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="409.showNotes"/> - <string key="410.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="410.IBUserGuides" ref="0"/> - <boolean value="NO" key="410.showNotes"/> - <string key="411.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="411.IBUserGuides" ref="0"/> - <boolean value="NO" key="411.showNotes"/> - <string key="412.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="412.showNotes"/> - <string key="413.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="413.showNotes"/> - <object class="NSMutableDictionary" key="414.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="1067575740"/> - <string key="toolTip">Choose the type of the index</string> - </object> - </object> - <string key="414.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="414.IBUserGuides" ref="0"/> - <boolean value="NO" key="414.showNotes"/> - <string key="415.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="415.showNotes"/> - <string key="416.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="416.showNotes"/> - <string key="418.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="418.IBUserGuides" ref="0"/> - <boolean value="NO" key="418.showNotes"/> - <string key="419.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="419.IBUserGuides" ref="0"/> - <boolean value="NO" key="419.showNotes"/> - <string key="4481.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="4481.IBUserGuides" ref="0"/> - <boolean value="NO" key="4481.showNotes"/> - <string key="4482.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="4482.IBUserGuides" ref="0"/> - <boolean value="NO" key="4482.showNotes"/> - <string key="4483.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="4483.IBUserGuides" ref="0"/> - <boolean value="NO" key="4483.showNotes"/> - <string key="4484.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="4484.IBUserGuides" ref="0"/> - <boolean value="NO" key="4484.showNotes"/> - <string key="4485.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="4485.showNotes"/> - <string key="4486.CustomClassName">SPTableTextFieldCell</string> - <string key="4486.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="4486.showNotes"/> - <string key="4488.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="4488.showNotes"/> - <string key="4503.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="4503.IBUserGuides" ref="0"/> - <boolean value="NO" key="4503.showNotes"/> - <string key="4504.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="4504.showNotes"/> - <string key="4521.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="4521.showNotes"/> - <string key="4522.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="4522.showNotes"/> - <string key="4523.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="4523.showNotes"/> - <string key="4676.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="4676.IBUserGuides" ref="0"/> - <boolean value="NO" key="4676.showNotes"/> - <string key="4677.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="4677.showNotes"/> - <string key="4702.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="4702.showNotes"/> - <string key="4741.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="4741.IBUserGuides" ref="0"/> - <boolean value="NO" key="4741.showNotes"/> - <string key="4742.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="4742.showNotes"/> - <string key="4751.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="4751.IBUserGuides" ref="0"/> - <boolean value="NO" key="4751.showNotes"/> - <string key="4752.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="4752.showNotes"/> - <string key="4753.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="4753.showNotes"/> - <reference key="500.IBNSViewMetadataGestureRecognizers" ref="0"/> - <string key="500.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="500.IBUserGuides" ref="0"/> - <boolean value="NO" key="500.showNotes"/> - <boolean value="NO" key="501.IBNSWindowAutoPositionCentersHorizontal"/> - <boolean value="NO" key="501.IBNSWindowAutoPositionCentersVertical"/> - <string key="501.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="501.showNotes"/> - <string key="512.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="512.IBUserGuides" ref="0"/> - <boolean value="NO" key="512.showNotes"/> - <string key="5129.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5129.IBUserGuides" ref="0"/> - <boolean value="NO" key="5129.showNotes"/> - <string key="5130.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5130.showNotes"/> - <object class="NSMutableDictionary" key="5131.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="400841207"/> - <string key="toolTip">Add field (⌥⌘A)</string> - </object> - </object> - <string key="5131.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5131.IBUserGuides" ref="0"/> - <boolean value="NO" key="5131.showNotes"/> - <string key="5132.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5132.showNotes"/> - <object class="NSMutableDictionary" key="5134.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="1031766954"/> - <string key="toolTip">Refresh table structure (⌘R)</string> - </object> - </object> - <string key="5134.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5134.IBUserGuides" ref="0"/> - <boolean value="NO" key="5134.showNotes"/> - <string key="5135.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5135.showNotes"/> - <object class="NSMutableDictionary" key="5136.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="997907892"/> - <string key="toolTip">Delete selected field (⌫)</string> - </object> - </object> - <string key="5136.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5136.IBUserGuides" ref="0"/> - <boolean value="NO" key="5136.showNotes"/> - <string key="5137.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5137.showNotes"/> - <object class="NSMutableDictionary" key="5138.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="927360703"/> - <string key="toolTip">Duplicate selected or last field definition (⌘D)</string> - </object> - </object> - <string key="5138.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5138.IBUserGuides" ref="0"/> - <boolean value="NO" key="5138.showNotes"/> - <string key="5139.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5139.showNotes"/> - <string key="514.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="514.IBUserGuides" ref="0"/> - <boolean value="NO" key="514.showNotes"/> - <string key="5148.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5148.IBUserGuides" ref="0"/> - <boolean value="NO" key="5148.showNotes"/> - <string key="5149.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5149.showNotes"/> - <string key="515.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="515.IBUserGuides" ref="0"/> - <boolean value="NO" key="515.showNotes"/> - <object class="NSMutableDictionary" key="5150.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="389959795"/> - <string key="toolTip">Add index</string> - </object> - </object> - <string key="5150.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5150.IBUserGuides" ref="0"/> - <boolean value="NO" key="5150.showNotes"/> - <object class="NSMutableDictionary" key="5151.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="385306370"/> - <string key="toolTip">Refresh table indexes (⌘R)</string> - </object> - </object> - <string key="5151.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5151.IBUserGuides" ref="0"/> - <boolean value="NO" key="5151.showNotes"/> - <object class="NSMutableDictionary" key="5152.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="671174106"/> - <string key="toolTip">Delete selected index</string> - </object> - </object> - <string key="5152.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5152.IBUserGuides" ref="0"/> - <boolean value="NO" key="5152.showNotes"/> - <string key="5153.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5153.showNotes"/> - <string key="5154.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5154.showNotes"/> - <string key="5155.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5155.showNotes"/> - <string key="516.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="516.IBUserGuides" ref="0"/> - <boolean value="NO" key="516.showNotes"/> - <object class="NSMutableDictionary" key="5175.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="115869327"/> - <string key="toolTip">Add row (⌥⌘A)</string> - </object> - </object> - <string key="5175.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5175.IBUserGuides" ref="0"/> - <boolean value="NO" key="5175.showNotes"/> - <object class="NSMutableDictionary" key="5176.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="744169708"/> - <string key="toolTip">Refresh table contents (⌘R)</string> - </object> - </object> - <string key="5176.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5176.IBUserGuides" ref="0"/> - <boolean value="NO" key="5176.showNotes"/> - <object class="NSMutableDictionary" key="5177.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="947593509"/> - <string key="toolTip">Delete selected row(s) (⌫)</string> - </object> - </object> - <string key="5177.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5177.IBUserGuides" ref="0"/> - <boolean value="NO" key="5177.showNotes"/> - <object class="NSMutableDictionary" key="5178.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="140315871"/> - <string key="toolTip">Duplicate selected row (⌘D)</string> - </object> - </object> - <string key="5178.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5178.IBUserGuides" ref="0"/> - <boolean value="NO" key="5178.showNotes"/> - <string key="5179.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5179.IBUserGuides" ref="0"/> - <boolean value="NO" key="5179.showNotes"/> - <string key="5180.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5180.showNotes"/> - <string key="5181.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5181.showNotes"/> - <string key="5182.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5182.showNotes"/> - <string key="5183.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5183.showNotes"/> - <string key="5184.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5184.showNotes"/> - <object class="NSMutableDictionary" key="5201.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="20233805"/> - <string key="toolTip">Toggle between editing simple text cells as a spreadsheet or in pop-up sheets</string> - </object> - </object> - <string key="5201.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5201.IBUserGuides" ref="0"/> - <boolean value="NO" key="5201.showNotes"/> - <string key="5202.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5202.showNotes"/> - <boolean value="NO" key="5322.IBNSWindowAutoPositionCentersHorizontal"/> - <boolean value="NO" key="5322.IBNSWindowAutoPositionCentersVertical"/> - <string key="5322.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5322.showNotes"/> - <string key="5323.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5323.IBUserGuides" ref="0"/> - <boolean value="NO" key="5323.showNotes"/> - <string key="5324.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5324.IBUserGuides" ref="0"/> - <boolean value="NO" key="5324.showNotes"/> - <string key="5325.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5325.IBUserGuides" ref="0"/> - <boolean value="NO" key="5325.showNotes"/> - <string key="5326.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5326.IBUserGuides" ref="0"/> - <boolean value="NO" key="5326.showNotes"/> - <string key="5327.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5327.IBUserGuides" ref="0"/> - <boolean value="NO" key="5327.showNotes"/> - <string key="5328.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5328.IBUserGuides" ref="0"/> - <boolean value="NO" key="5328.showNotes"/> - <string key="5331.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5331.showNotes"/> - <string key="5332.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5332.showNotes"/> - <string key="5333.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5333.showNotes"/> - <string key="5334.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5334.showNotes"/> - <string key="5335.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5335.showNotes"/> - <string key="5361.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5361.showNotes"/> - <string key="5377.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5377.showNotes"/> - <string key="5428.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5428.showNotes"/> - <string key="5429.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5429.IBUserGuides" ref="0"/> - <boolean value="NO" key="5429.showNotes"/> - <string key="5441.IBPluginDependency">com.apple.WebKitIBPlugin</string> - <reference key="5441.IBUserGuides" ref="0"/> - <boolean value="NO" key="5441.showNotes"/> - <string key="5452.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5452.IBUserGuides" ref="0"/> - <boolean value="NO" key="5452.showNotes"/> - <string key="5453.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5453.showNotes"/> - <string key="5464.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5464.IBUserGuides" ref="0"/> - <boolean value="NO" key="5464.showNotes"/> - <string key="5465.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5465.showNotes"/> - <string key="5466.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5466.IBUserGuides" ref="0"/> - <boolean value="NO" key="5466.showNotes"/> - <string key="5467.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5467.showNotes"/> - <string key="5474.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5474.IBUserGuides" ref="0"/> - <boolean value="NO" key="5474.showNotes"/> - <string key="5475.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5475.showNotes"/> - <string key="5497.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5497.IBUserGuides" ref="0"/> - <boolean value="NO" key="5497.showNotes"/> - <string key="5498.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5498.showNotes"/> - <string key="5500.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5500.IBUserGuides" ref="0"/> - <boolean value="NO" key="5500.showNotes"/> - <string key="5501.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5501.showNotes"/> - <string key="5503.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5503.IBUserGuides" ref="0"/> - <boolean value="NO" key="5503.showNotes"/> - <string key="5504.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5504.showNotes"/> - <string key="5509.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5509.IBUserGuides" ref="0"/> - <boolean value="NO" key="5509.showNotes"/> - <string key="5510.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5510.IBUserGuides" ref="0"/> - <boolean value="NO" key="5510.showNotes"/> - <string key="5511.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5511.showNotes"/> - <string key="5514.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5514.IBUserGuides" ref="0"/> - <boolean value="NO" key="5514.showNotes"/> - <string key="5515.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5515.showNotes"/> - <string key="5517.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5517.IBUserGuides" ref="0"/> - <boolean value="NO" key="5517.showNotes"/> - <string key="5518.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5518.showNotes"/> - <string key="5519.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5519.IBUserGuides" ref="0"/> - <boolean value="NO" key="5519.showNotes"/> - <string key="5520.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5520.showNotes"/> - <string key="5542.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5542.showNotes"/> - <string key="5543.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5543.IBUserGuides" ref="0"/> - <boolean value="NO" key="5543.showNotes"/> - <string key="5543.userInterfaceItemIdentifier">RelationsTabView</string> - <string key="5544.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5544.IBUserGuides" ref="0"/> - <boolean value="NO" key="5544.showNotes"/> - <string key="5545.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5545.IBUserGuides" ref="0"/> - <boolean value="NO" key="5545.showNotes"/> - <string key="5546.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5546.IBUserGuides" ref="0"/> - <boolean value="NO" key="5546.showNotes"/> - <string key="5547.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5547.IBUserGuides" ref="0"/> - <boolean value="NO" key="5547.showNotes"/> - <string key="5548.CustomClassName">SPCopyTable</string> - <string key="5548.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5548.IBUserGuides" ref="0"/> - <boolean value="NO" key="5548.showNotes"/> - <string key="5548.userInterfaceItemIdentifier">TableRelationsTableView</string> - <string key="5549.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5549.showNotes"/> - <string key="5550.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5550.showNotes"/> - <object class="NSMutableDictionary" key="5559.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="485666585"/> - <string key="toolTip">Add table relation (⌥⌘A)</string> - </object> - </object> - <string key="5559.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5559.IBUserGuides" ref="0"/> - <boolean value="NO" key="5559.showNotes"/> - <object class="NSMutableDictionary" key="5560.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="686372736"/> - <string key="toolTip">Refresh table relations (⌘R)</string> - </object> - </object> - <string key="5560.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5560.IBUserGuides" ref="0"/> - <boolean value="NO" key="5560.showNotes"/> - <object class="NSMutableDictionary" key="5561.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="646345802"/> - <string key="toolTip">Delete selected relation(s) (⌫)</string> - </object> - </object> - <string key="5561.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5561.IBUserGuides" ref="0"/> - <boolean value="NO" key="5561.showNotes"/> - <string key="5562.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5562.IBUserGuides" ref="0"/> - <boolean value="NO" key="5562.showNotes"/> - <string key="5563.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5563.showNotes"/> - <string key="5564.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5564.showNotes"/> - <string key="5565.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5565.showNotes"/> - <string key="5566.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5566.showNotes"/> - <string key="5567.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5567.showNotes"/> - <reference key="557.IBNSViewMetadataGestureRecognizers" ref="0"/> - <string key="557.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="557.IBUserGuides" ref="0"/> - <boolean value="NO" key="557.showNotes"/> - <string key="5578.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5578.showNotes"/> - <string key="5579.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5579.showNotes"/> - <string key="5580.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5580.showNotes"/> - <string key="5581.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5581.showNotes"/> - <string key="5582.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5582.showNotes"/> - <string key="5583.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5583.showNotes"/> - <string key="5584.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5584.showNotes"/> - <string key="5585.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5585.showNotes"/> - <string key="5586.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5586.showNotes"/> - <string key="5587.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5587.showNotes"/> - <string key="5589.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5589.IBUserGuides" ref="0"/> - <boolean value="NO" key="5589.showNotes"/> - <string key="5590.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5590.showNotes"/> - <string key="5596.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5596.showNotes"/> - <string key="5597.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5597.IBUserGuides" ref="0"/> - <boolean value="NO" key="5597.showNotes"/> - <string key="5599.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5599.IBUserGuides" ref="0"/> - <boolean value="NO" key="5599.showNotes"/> - <string key="5600.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5600.showNotes"/> - <string key="5601.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5601.IBUserGuides" ref="0"/> - <boolean value="NO" key="5601.showNotes"/> - <string key="5602.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5602.showNotes"/> - <string key="5606.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5606.IBUserGuides" ref="0"/> - <boolean value="NO" key="5606.showNotes"/> - <string key="5607.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5607.showNotes"/> - <string key="5608.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5608.IBUserGuides" ref="0"/> - <boolean value="NO" key="5608.showNotes"/> - <string key="5609.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5609.showNotes"/> - <string key="5610.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5610.IBUserGuides" ref="0"/> - <boolean value="NO" key="5610.showNotes"/> - <string key="5611.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5611.showNotes"/> - <string key="5612.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5612.IBUserGuides" ref="0"/> - <boolean value="NO" key="5612.showNotes"/> - <string key="5613.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5613.showNotes"/> - <string key="5614.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5614.IBUserGuides" ref="0"/> - <boolean value="NO" key="5614.showNotes"/> - <string key="5615.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5615.showNotes"/> - <string key="5616.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5616.showNotes"/> - <string key="5617.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5617.showNotes"/> - <string key="5618.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5618.showNotes"/> - <string key="5619.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5619.showNotes"/> - <string key="5620.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5620.showNotes"/> - <string key="5621.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5621.showNotes"/> - <string key="5622.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5622.IBUserGuides" ref="0"/> - <boolean value="NO" key="5622.showNotes"/> - <string key="5623.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5623.showNotes"/> - <string key="5624.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5624.showNotes"/> - <string key="5625.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5625.showNotes"/> - <string key="5626.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5626.showNotes"/> - <string key="5627.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5627.showNotes"/> - <string key="5628.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5628.showNotes"/> - <string key="5629.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5629.showNotes"/> - <string key="5630.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5630.IBUserGuides" ref="0"/> - <boolean value="NO" key="5630.showNotes"/> - <string key="5631.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5631.showNotes"/> - <string key="5632.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5632.showNotes"/> - <string key="5633.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5633.showNotes"/> - <string key="5634.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5634.showNotes"/> - <string key="5635.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5635.showNotes"/> - <string key="5636.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5636.IBUserGuides" ref="0"/> - <boolean value="NO" key="5636.showNotes"/> - <string key="5637.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5637.showNotes"/> - <string key="5638.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5638.showNotes"/> - <string key="5639.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5639.showNotes"/> - <string key="5640.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5640.showNotes"/> - <string key="5641.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5641.showNotes"/> - <string key="5642.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5642.IBUserGuides" ref="0"/> - <boolean value="NO" key="5642.showNotes"/> - <string key="5643.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5643.showNotes"/> - <boolean value="NO" key="565.IBNSWindowAutoPositionCentersHorizontal"/> - <boolean value="NO" key="565.IBNSWindowAutoPositionCentersVertical"/> - <string key="565.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="565.showNotes"/> - <string key="5652.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5652.IBUserGuides" ref="0"/> - <boolean value="NO" key="5652.showNotes"/> - <string key="5653.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5653.IBUserGuides" ref="0"/> - <boolean value="NO" key="5653.showNotes"/> - <string key="5654.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5654.showNotes"/> - <string key="5655.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5655.showNotes"/> - <string key="5656.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5656.showNotes"/> - <string key="5657.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5657.showNotes"/> - <string key="5658.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5658.showNotes"/> - <string key="5659.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5659.IBUserGuides" ref="0"/> - <boolean value="NO" key="5659.showNotes"/> - <string key="5660.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5660.IBUserGuides" ref="0"/> - <boolean value="NO" key="5660.showNotes"/> - <string key="5701.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5701.IBUserGuides" ref="0"/> - <boolean value="NO" key="5701.showNotes"/> - <string key="5702.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5702.showNotes"/> - <string key="5713.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5713.IBUserGuides" ref="0"/> - <boolean value="NO" key="5713.showNotes"/> - <string key="5714.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5714.IBUserGuides" ref="0"/> - <boolean value="NO" key="5714.showNotes"/> - <string key="5715.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5715.showNotes"/> - <string key="5716.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5716.showNotes"/> - <string key="5742.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5742.showNotes"/> - <string key="5750.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5750.IBUserGuides" ref="0"/> - <boolean value="NO" key="5750.showNotes"/> - <string key="5751.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5751.showNotes"/> - <string key="5752.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5752.IBUserGuides" ref="0"/> - <boolean value="NO" key="5752.showNotes"/> - <string key="5753.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5753.showNotes"/> - <string key="5754.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5754.IBUserGuides" ref="0"/> - <boolean value="NO" key="5754.showNotes"/> - <string key="5755.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5755.showNotes"/> - <string key="5756.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5756.showNotes"/> - <string key="5760.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5760.IBUserGuides" ref="0"/> - <boolean value="NO" key="5760.showNotes"/> - <string key="5761.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5761.showNotes"/> - <string key="5762.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5762.showNotes"/> - <string key="5763.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5763.IBUserGuides" ref="0"/> - <boolean value="NO" key="5763.showNotes"/> - <string key="5764.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5764.showNotes"/> - <string key="5765.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5765.IBUserGuides" ref="0"/> - <boolean value="NO" key="5765.showNotes"/> - <string key="5766.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5766.showNotes"/> - <string key="5767.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5767.showNotes"/> - <string key="5768.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5768.IBUserGuides" ref="0"/> - <boolean value="NO" key="5768.showNotes"/> - <string key="5769.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5769.showNotes"/> - <string key="5770.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5770.IBUserGuides" ref="0"/> - <boolean value="NO" key="5770.showNotes"/> - <string key="5771.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5771.showNotes"/> - <string key="5775.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5775.IBUserGuides" ref="0"/> - <boolean value="NO" key="5775.showNotes"/> - <string key="5776.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5776.showNotes"/> - <string key="5777.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5777.IBUserGuides" ref="0"/> - <boolean value="NO" key="5777.showNotes"/> - <string key="5778.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5778.showNotes"/> - <string key="5779.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5779.IBUserGuides" ref="0"/> - <boolean value="NO" key="5779.showNotes"/> - <string key="5780.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5780.showNotes"/> - <string key="5781.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5781.IBUserGuides" ref="0"/> - <boolean value="NO" key="5781.showNotes"/> - <string key="5782.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5782.showNotes"/> - <string key="579.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="579.IBUserGuides" ref="0"/> - <boolean value="NO" key="579.showNotes"/> - <string key="5790.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5790.IBUserGuides" ref="0"/> - <boolean value="NO" key="5790.showNotes"/> - <string key="5791.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5791.IBUserGuides" ref="0"/> - <boolean value="NO" key="5791.showNotes"/> - <string key="5792.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5792.IBUserGuides" ref="0"/> - <boolean value="NO" key="5792.showNotes"/> - <string key="5793.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5793.IBUserGuides" ref="0"/> - <boolean value="NO" key="5793.showNotes"/> - <string key="5794.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5794.showNotes"/> - <string key="5795.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5795.showNotes"/> - <string key="5796.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5796.showNotes"/> - <string key="5797.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5797.showNotes"/> - <string key="5806.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5806.IBUserGuides" ref="0"/> - <boolean value="NO" key="5806.showNotes"/> - <string key="5807.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5807.IBUserGuides" ref="0"/> - <boolean value="NO" key="5807.showNotes"/> - <string key="5809.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5809.IBUserGuides" ref="0"/> - <boolean value="NO" key="5809.showNotes"/> - <string key="581.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="581.IBUserGuides" ref="0"/> - <boolean value="NO" key="581.showNotes"/> - <string key="5810.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5810.showNotes"/> - <string key="5814.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5814.showNotes"/> - <string key="582.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="582.IBUserGuides" ref="0"/> - <boolean value="NO" key="582.showNotes"/> - <string key="5828.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5828.IBUserGuides" ref="0"/> - <boolean value="NO" key="5828.showNotes"/> - <string key="5829.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="5829.showNotes"/> - <string key="5904.CustomClassName">SPSplitView</string> - <string key="5904.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5904.IBUserGuides" ref="0"/> - <boolean value="NO" key="5904.showNotes"/> - <string key="5905.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5905.IBUserGuides" ref="0"/> - <boolean value="NO" key="5905.showNotes"/> - <string key="5906.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5906.IBUserGuides" ref="0"/> - <boolean value="NO" key="5906.showNotes"/> - <string key="5999.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="5999.IBUserGuides" ref="0"/> - <boolean value="NO" key="5999.showNotes"/> - <string key="6000.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6000.IBUserGuides" ref="0"/> - <boolean value="NO" key="6000.showNotes"/> - <string key="6001.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6001.showNotes"/> - <object class="NSMutableDictionary" key="6009.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="978103818"/> - <string key="toolTip">Edit Table Details (⌘4)</string> - </object> - </object> - <string key="6009.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6009.IBUserGuides" ref="0"/> - <boolean value="NO" key="6009.showNotes"/> - <string key="6010.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6010.showNotes"/> - <string key="6024.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6024.IBUserGuides" ref="0"/> - <boolean value="NO" key="6024.showNotes"/> - <string key="6027.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6027.IBUserGuides" ref="0"/> - <boolean value="NO" key="6027.showNotes"/> - <string key="6028.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6028.showNotes"/> - <string key="6032.CustomClassName">SPSplitView</string> - <string key="6032.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6032.IBUserGuides" ref="0"/> - <boolean value="NO" key="6032.showNotes"/> - <string key="6033.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6033.IBUserGuides" ref="0"/> - <boolean value="NO" key="6033.showNotes"/> - <string key="6034.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6034.IBUserGuides" ref="0"/> - <boolean value="NO" key="6034.showNotes"/> - <boolean value="NO" key="6125.IBNSWindowAutoPositionCentersHorizontal"/> - <boolean value="NO" key="6125.IBNSWindowAutoPositionCentersVertical"/> - <string key="6125.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6125.showNotes"/> - <string key="6126.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6126.IBUserGuides" ref="0"/> - <boolean value="NO" key="6126.showNotes"/> - <string key="6127.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6127.IBUserGuides" ref="0"/> - <boolean value="NO" key="6127.showNotes"/> - <string key="6129.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6129.IBUserGuides" ref="0"/> - <boolean value="NO" key="6129.showNotes"/> - <string key="6130.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6130.IBUserGuides" ref="0"/> - <boolean value="NO" key="6130.showNotes"/> - <string key="6131.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6131.IBUserGuides" ref="0"/> - <boolean value="NO" key="6131.showNotes"/> - <string key="6132.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6132.IBUserGuides" ref="0"/> - <boolean value="NO" key="6132.showNotes"/> - <string key="6133.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6133.showNotes"/> - <string key="6134.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6134.showNotes"/> - <string key="6135.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6135.showNotes"/> - <string key="6137.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6137.showNotes"/> - <string key="6170.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6170.IBUserGuides" ref="0"/> - <boolean value="NO" key="6170.showNotes"/> - <string key="6171.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6171.showNotes"/> - <string key="6180.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6180.showNotes"/> - <object class="NSMutableDictionary" key="6182.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="449076852"/> - <string key="toolTip">Remove the selected item(s)</string> - </object> - </object> - <string key="6182.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6182.showNotes"/> - <string key="6183.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6183.showNotes"/> - <object class="NSMutableDictionary" key="6184.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="675484094"/> - <string key="toolTip">Delete all records of selected table(s)</string> - </object> - </object> - <string key="6184.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6184.showNotes"/> - <object class="NSMutableDictionary" key="6185.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="917440216"/> - <string key="toolTip">Duplicate the selected item</string> - </object> - </object> - <string key="6185.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6185.showNotes"/> - <object class="NSMutableDictionary" key="6186.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="207266527"/> - <string key="toolTip">Rename the selected item</string> - </object> - </object> - <string key="6186.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6186.showNotes"/> - <string key="6210.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6210.showNotes"/> - <string key="6211.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6211.showNotes"/> - <string key="6212.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6212.showNotes"/> - <string key="6219.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6219.showNotes"/> - <string key="6220.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6220.showNotes"/> - <string key="6225.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6225.showNotes"/> - <string key="6226.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6226.showNotes"/> - <string key="6227.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6227.showNotes"/> - <string key="6232.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6232.showNotes"/> - <string key="6233.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6233.showNotes"/> - <string key="6239.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6239.showNotes"/> - <string key="6240.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6240.showNotes"/> - <string key="6241.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6241.showNotes"/> - <string key="6242.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6242.showNotes"/> - <string key="6265.CustomClassName">SPSplitView</string> - <string key="6265.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6265.IBUserGuides" ref="0"/> - <boolean value="NO" key="6265.showNotes"/> - <string key="6266.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6266.IBUserGuides" ref="0"/> - <boolean value="NO" key="6266.showNotes"/> - <string key="6267.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6267.IBUserGuides" ref="0"/> - <boolean value="NO" key="6267.showNotes"/> - <string key="6278.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6278.IBUserGuides" ref="0"/> - <boolean value="NO" key="6278.showNotes"/> - <string key="6279.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6279.showNotes"/> - <string key="6293.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6293.IBUserGuides" ref="0"/> - <boolean value="NO" key="6293.showNotes"/> - <string key="6294.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6294.showNotes"/> - <string key="6297.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6297.showNotes"/> - <string key="6340.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6340.showNotes"/> - <string key="6341.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6341.showNotes"/> - <string key="6343.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6343.showNotes"/> - <string key="6344.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6344.showNotes"/> - <string key="6364.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6364.IBUserGuides" ref="0"/> - <boolean value="NO" key="6364.showNotes"/> - <string key="6365.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6365.showNotes"/> - <string key="6369.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6369.IBUserGuides" ref="0"/> - <boolean value="NO" key="6369.showNotes"/> - <string key="6370.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6370.showNotes"/> - <string key="6371.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6371.IBUserGuides" ref="0"/> - <boolean value="NO" key="6371.showNotes"/> - <string key="6372.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6372.showNotes"/> - <boolean value="NO" key="6405.IBNSWindowAutoPositionCentersHorizontal"/> - <boolean value="NO" key="6405.IBNSWindowAutoPositionCentersVertical"/> - <string key="6405.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6405.showNotes"/> - <string key="6406.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6406.IBUserGuides" ref="0"/> - <boolean value="NO" key="6406.showNotes"/> - <string key="6407.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6407.IBUserGuides" ref="0"/> - <boolean value="NO" key="6407.showNotes"/> - <string key="6408.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6408.IBUserGuides" ref="0"/> - <boolean value="NO" key="6408.showNotes"/> - <string key="6409.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6409.IBUserGuides" ref="0"/> - <boolean value="NO" key="6409.showNotes"/> - <string key="6410.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6410.IBUserGuides" ref="0"/> - <boolean value="NO" key="6410.showNotes"/> - <string key="6411.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6411.showNotes"/> - <string key="6412.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6412.showNotes"/> - <string key="6413.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6413.showNotes"/> - <string key="6414.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6414.showNotes"/> - <string key="6431.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6431.IBUserGuides" ref="0"/> - <boolean value="NO" key="6431.showNotes"/> - <string key="6432.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6432.IBUserGuides" ref="0"/> - <boolean value="NO" key="6432.showNotes"/> - <string key="6433.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6433.showNotes"/> - <string key="6447.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6447.IBUserGuides" ref="0"/> - <boolean value="NO" key="6447.showNotes"/> - <string key="6448.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6448.IBUserGuides" ref="0"/> - <boolean value="NO" key="6448.showNotes"/> - <string key="6449.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6449.showNotes"/> - <string key="6492.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6492.showNotes"/> - <string key="6493.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6493.IBUserGuides" ref="0"/> - <boolean value="NO" key="6493.showNotes"/> - <string key="6494.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6494.IBUserGuides" ref="0"/> - <boolean value="NO" key="6494.showNotes"/> - <string key="6495.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6495.IBUserGuides" ref="0"/> - <boolean value="NO" key="6495.showNotes"/> - <string key="6496.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6496.IBUserGuides" ref="0"/> - <boolean value="NO" key="6496.showNotes"/> - <string key="6497.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6497.IBUserGuides" ref="0"/> - <boolean value="NO" key="6497.showNotes"/> - <string key="6498.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6498.IBUserGuides" ref="0"/> - <boolean value="NO" key="6498.showNotes"/> - <string key="6499.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6499.showNotes"/> - <string key="6500.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6500.showNotes"/> - <string key="6501.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6501.showNotes"/> - <string key="6502.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6502.showNotes"/> - <string key="6503.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6503.showNotes"/> - <object class="NSMutableDictionary" key="6516.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="762101746"/> - <string key="toolTip">If set save the favorite globally accessible for each document</string> - </object> - </object> - <string key="6516.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6516.IBUserGuides" ref="0"/> - <boolean value="NO" key="6516.showNotes"/> - <string key="6517.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6517.showNotes"/> - <string key="654.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="654.showNotes"/> - <string key="655.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="655.showNotes"/> - <boolean value="NO" key="6557.IBNSWindowAutoPositionCentersHorizontal"/> - <boolean value="NO" key="6557.IBNSWindowAutoPositionCentersVertical"/> - <string key="6557.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6557.showNotes"/> - <string key="6558.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6558.IBUserGuides" ref="0"/> - <boolean value="NO" key="6558.showNotes"/> - <string key="6562.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6562.IBUserGuides" ref="0"/> - <boolean value="NO" key="6562.showNotes"/> - <string key="6563.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6563.IBUserGuides" ref="0"/> - <boolean value="NO" key="6563.showNotes"/> - <string key="6564.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6564.IBUserGuides" ref="0"/> - <boolean value="NO" key="6564.showNotes"/> - <string key="6565.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6565.showNotes"/> - <string key="6566.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6566.showNotes"/> - <string key="6567.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6567.showNotes"/> - <string key="6606.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6606.IBUserGuides" ref="0"/> - <boolean value="NO" key="6606.showNotes"/> - <string key="6607.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6607.showNotes"/> - <object class="NSMutableDictionary" key="6647.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="622694405"/> - <string key="toolTip">View next page of results</string> - </object> - </object> - <string key="6647.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6647.IBUserGuides" ref="0"/> - <boolean value="NO" key="6647.showNotes"/> - <string key="6648.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6648.showNotes"/> - <object class="NSMutableDictionary" key="6650.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="1065343609"/> - <string key="toolTip">View previous page of results</string> - </object> - </object> - <string key="6650.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6650.IBUserGuides" ref="0"/> - <boolean value="NO" key="6650.showNotes"/> - <string key="6651.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6651.showNotes"/> - <object class="NSMutableDictionary" key="6653.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="957548798"/> - <string key="toolTip">Jump to page (⌘J) or view pagination options</string> - </object> - </object> - <string key="6653.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6653.IBUserGuides" ref="0"/> - <boolean value="NO" key="6653.showNotes"/> - <string key="6654.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6654.showNotes"/> - <string key="6682.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6682.IBUserGuides" ref="0"/> - <boolean value="NO" key="6682.showNotes"/> - <string key="6683.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6683.IBUserGuides" ref="0"/> - <boolean value="NO" key="6683.showNotes"/> - <string key="6684.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6684.IBUserGuides" ref="0"/> - <boolean value="NO" key="6684.showNotes"/> - <string key="6685.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6685.IBUserGuides" ref="0"/> - <boolean value="NO" key="6685.showNotes"/> - <string key="6687.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6687.showNotes"/> - <string key="6690.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6690.showNotes"/> - <string key="6691.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6691.showNotes"/> - <string key="6692.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6692.showNotes"/> - <string key="6693.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6693.IBUserGuides" ref="0"/> - <boolean value="NO" key="6693.showNotes"/> - <string key="6693.userInterfaceItemIdentifier">TriggersTabView</string> - <string key="6694.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6694.IBUserGuides" ref="0"/> - <boolean value="NO" key="6694.showNotes"/> - <string key="6695.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6695.IBUserGuides" ref="0"/> - <boolean value="NO" key="6695.showNotes"/> - <object class="NSMutableDictionary" key="6696.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="826516051"/> - <string key="toolTip">Delete selected relation(s) (⌫)</string> - </object> - </object> - <string key="6696.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6696.IBUserGuides" ref="0"/> - <boolean value="NO" key="6696.showNotes"/> - <object class="NSMutableDictionary" key="6697.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="862482881"/> - <string key="toolTip">Refresh table relations (⌘R)</string> - </object> - </object> - <string key="6697.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6697.IBUserGuides" ref="0"/> - <boolean value="NO" key="6697.showNotes"/> - <string key="6698.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6698.IBUserGuides" ref="0"/> - <boolean value="NO" key="6698.showNotes"/> - <object class="NSMutableDictionary" key="6699.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="421474"/> - <string key="toolTip">Add table relation (⌥⌘A)</string> - </object> - </object> - <string key="6699.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6699.IBUserGuides" ref="0"/> - <boolean value="NO" key="6699.showNotes"/> - <string key="67.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="67.showNotes"/> - <string key="6700.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6700.showNotes"/> - <string key="6701.CustomClassName">SPCopyTable</string> - <string key="6701.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6701.IBUserGuides" ref="0"/> - <boolean value="NO" key="6701.showNotes"/> - <string key="6701.userInterfaceItemIdentifier">TableTriggersTableView</string> - <string key="6702.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6702.IBUserGuides" ref="0"/> - <boolean value="NO" key="6702.showNotes"/> - <string key="6703.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6703.IBUserGuides" ref="0"/> - <boolean value="NO" key="6703.showNotes"/> - <string key="6704.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6704.IBUserGuides" ref="0"/> - <boolean value="NO" key="6704.showNotes"/> - <string key="6705.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6705.showNotes"/> - <string key="6706.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6706.showNotes"/> - <string key="6707.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6707.showNotes"/> - <string key="6708.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6708.showNotes"/> - <string key="6709.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6709.showNotes"/> - <string key="6712.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6712.showNotes"/> - <string key="6713.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6713.showNotes"/> - <string key="6714.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6714.showNotes"/> - <string key="6715.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6715.showNotes"/> - <string key="6716.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6716.showNotes"/> - <string key="6717.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6717.showNotes"/> - <string key="6718.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6718.showNotes"/> - <string key="6719.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6719.showNotes"/> - <string key="672.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="672.IBUserGuides" ref="0"/> - <boolean value="NO" key="672.showNotes"/> - <string key="672.userInterfaceItemIdentifier">TableStructureIndexesView</string> - <string key="6720.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6720.showNotes"/> - <string key="6727.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6727.showNotes"/> - <string key="6728.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6728.showNotes"/> - <string key="6729.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6729.showNotes"/> - <string key="673.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="673.IBUserGuides" ref="0"/> - <boolean value="NO" key="673.showNotes"/> - <string key="673.userInterfaceItemIdentifier">TableStructureColumnsView</string> - <string key="6730.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6730.showNotes"/> - <string key="6735.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6735.showNotes"/> - <string key="6736.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6736.showNotes"/> - <string key="674.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="674.IBUserGuides" ref="0"/> - <boolean value="NO" key="674.showNotes"/> - <string key="6765.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6765.showNotes"/> - <string key="6766.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <array class="NSMutableArray" key="6766.IBUserGuides"> - <object class="IBUserGuide"> - <reference key="view" ref="28677781"/> - <double key="location">132</double> - <int key="affinity">0</int> - </object> - <object class="IBUserGuide"> - <reference key="view" ref="28677781"/> - <double key="location">323</double> - <int key="affinity">0</int> - </object> - </array> - <boolean value="NO" key="6766.showNotes"/> - <string key="6767.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6767.IBUserGuides" ref="0"/> - <boolean value="NO" key="6767.showNotes"/> - <string key="6768.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6768.IBUserGuides" ref="0"/> - <boolean value="NO" key="6768.showNotes"/> - <string key="6770.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6770.IBUserGuides" ref="0"/> - <boolean value="NO" key="6770.showNotes"/> - <string key="6771.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6771.IBUserGuides" ref="0"/> - <boolean value="NO" key="6771.showNotes"/> - <string key="6772.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6772.IBUserGuides" ref="0"/> - <boolean value="NO" key="6772.showNotes"/> - <string key="6773.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6773.IBUserGuides" ref="0"/> - <boolean value="NO" key="6773.showNotes"/> - <string key="6774.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6774.IBUserGuides" ref="0"/> - <boolean value="NO" key="6774.showNotes"/> - <string key="6775.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6775.IBUserGuides" ref="0"/> - <boolean value="NO" key="6775.showNotes"/> - <string key="6776.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6776.IBUserGuides" ref="0"/> - <boolean value="NO" key="6776.showNotes"/> - <string key="6777.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6777.showNotes"/> - <string key="6778.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6778.showNotes"/> - <string key="6779.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6779.showNotes"/> - <string key="6780.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6780.showNotes"/> - <string key="6781.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6781.showNotes"/> - <string key="6782.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6782.showNotes"/> - <string key="6783.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6783.showNotes"/> - <string key="6784.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6784.showNotes"/> - <string key="6785.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6785.showNotes"/> - <string key="6786.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6786.showNotes"/> - <string key="6787.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6787.showNotes"/> - <string key="6788.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6788.showNotes"/> - <string key="6789.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6789.showNotes"/> - <string key="6793.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6793.showNotes"/> - <string key="6794.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6794.showNotes"/> - <string key="68.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="68.showNotes"/> - <string key="6814.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6814.IBUserGuides" ref="0"/> - <boolean value="NO" key="6814.showNotes"/> - <string key="6815.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6815.showNotes"/> - <string key="6823.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6823.IBUserGuides" ref="0"/> - <boolean value="NO" key="6823.showNotes"/> - <string key="6824.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6824.showNotes"/> - <string key="6829.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6829.showNotes"/> - <string key="6830.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6830.showNotes"/> - <boolean value="NO" key="6832.IBNSWindowAutoPositionCentersHorizontal"/> - <boolean value="NO" key="6832.IBNSWindowAutoPositionCentersVertical"/> - <string key="6832.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6832.showNotes"/> - <string key="6833.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6833.IBUserGuides" ref="0"/> - <boolean value="NO" key="6833.showNotes"/> - <string key="6834.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6834.IBUserGuides" ref="0"/> - <boolean value="NO" key="6834.showNotes"/> - <string key="6835.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6835.showNotes"/> - <string key="6836.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6836.IBUserGuides" ref="0"/> - <boolean value="NO" key="6836.showNotes"/> - <string key="6837.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6837.showNotes"/> - <string key="6838.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6838.IBUserGuides" ref="0"/> - <boolean value="NO" key="6838.showNotes"/> - <string key="6839.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6839.showNotes"/> - <string key="6840.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6840.IBUserGuides" ref="0"/> - <boolean value="NO" key="6840.showNotes"/> - <string key="6841.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6841.showNotes"/> - <integer value="1040" key="6842.IBNumberFormatterBehaviorMetadataKey"/> - <boolean value="YES" key="6842.IBNumberFormatterLocalizesFormatMetadataKey"/> - <string key="6842.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6842.showNotes"/> - <string key="6852.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6852.IBUserGuides" ref="0"/> - <boolean value="NO" key="6852.showNotes"/> - <object class="NSMutableDictionary" key="6856.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="408386519"/> - <string key="toolTip">Reset AUTO_INCREMENT…</string> - </object> - </object> - <string key="6856.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6856.IBUserGuides" ref="0"/> - <boolean value="NO" key="6856.showNotes"/> - <string key="6857.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6857.showNotes"/> - <string key="6858.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6858.showNotes"/> - <string key="6859.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6859.showNotes"/> - <object class="NSMutableDictionary" key="6860.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="392059056"/> - <string key="toolTip">Reset AUTO_INCREMENT to the minimal possible value.</string> - </object> - </object> - <string key="6860.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6860.showNotes"/> - <string key="6861.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6861.showNotes"/> - <string key="6877.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6877.IBUserGuides" ref="0"/> - <boolean value="NO" key="6877.showNotes"/> - <string key="6878.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6878.showNotes"/> - <string key="6885.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6885.IBUserGuides" ref="0"/> - <boolean value="NO" key="6885.showNotes"/> - <string key="6886.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6886.IBUserGuides" ref="0"/> - <boolean value="NO" key="6886.showNotes"/> - <string key="6887.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6887.IBUserGuides" ref="0"/> - <boolean value="NO" key="6887.showNotes"/> - <string key="6888.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6888.IBUserGuides" ref="0"/> - <boolean value="NO" key="6888.showNotes"/> - <string key="6889.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6889.IBUserGuides" ref="0"/> - <boolean value="NO" key="6889.showNotes"/> - <string key="6890.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6890.IBUserGuides" ref="0"/> - <boolean value="NO" key="6890.showNotes"/> - <string key="6891.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6891.showNotes"/> - <string key="6892.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6892.showNotes"/> - <string key="6893.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6893.showNotes"/> - <string key="6894.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6894.showNotes"/> - <string key="6895.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6895.showNotes"/> - <string key="6896.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6896.showNotes"/> - <string key="69.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="69.showNotes"/> - <string key="6901.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6901.IBUserGuides" ref="0"/> - <boolean value="NO" key="6901.showNotes"/> - <string key="6902.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6902.showNotes"/> - <string key="6922.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6922.showNotes"/> - <string key="6923.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6923.showNotes"/> - <boolean value="NO" key="6937.IBNSWindowAutoPositionCentersHorizontal"/> - <boolean value="NO" key="6937.IBNSWindowAutoPositionCentersVertical"/> - <string key="6937.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6937.showNotes"/> - <string key="6938.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6938.IBUserGuides" ref="0"/> - <boolean value="NO" key="6938.showNotes"/> - <string key="6939.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6939.IBUserGuides" ref="0"/> - <boolean value="NO" key="6939.showNotes"/> - <string key="6942.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6942.IBUserGuides" ref="0"/> - <boolean value="NO" key="6942.showNotes"/> - <string key="6943.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6943.IBUserGuides" ref="0"/> - <boolean value="NO" key="6943.showNotes"/> - <string key="6944.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6944.IBUserGuides" ref="0"/> - <boolean value="NO" key="6944.showNotes"/> - <string key="6945.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6945.showNotes"/> - <string key="6946.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6946.showNotes"/> - <string key="6947.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6947.showNotes"/> - <string key="6976.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6976.showNotes"/> - <string key="6980.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6980.IBUserGuides" ref="0"/> - <boolean value="NO" key="6980.showNotes"/> - <string key="6981.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6981.showNotes"/> - <boolean value="NO" key="6990.IBNSWindowAutoPositionCentersHorizontal"/> - <boolean value="NO" key="6990.IBNSWindowAutoPositionCentersVertical"/> - <string key="6990.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6990.showNotes"/> - <string key="6991.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6991.IBUserGuides" ref="0"/> - <boolean value="NO" key="6991.showNotes"/> - <string key="6993.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6993.IBUserGuides" ref="0"/> - <boolean value="NO" key="6993.showNotes"/> - <string key="6994.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6994.IBUserGuides" ref="0"/> - <boolean value="NO" key="6994.showNotes"/> - <string key="6995.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6995.IBUserGuides" ref="0"/> - <boolean value="NO" key="6995.showNotes"/> - <string key="6997.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="6997.IBUserGuides" ref="0"/> - <boolean value="NO" key="6997.showNotes"/> - <string key="6998.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="6998.showNotes"/> - <string key="7000.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7000.showNotes"/> - <string key="7001.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7001.showNotes"/> - <string key="7002.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7002.showNotes"/> - <string key="7043.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7043.IBUserGuides" ref="0"/> - <boolean value="NO" key="7043.showNotes"/> - <string key="7043.userInterfaceItemIdentifier">MasterDBView</string> - <string key="7051.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7051.showNotes"/> - <string key="7052.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7052.showNotes"/> - <string key="7053.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7053.showNotes"/> - <string key="7054.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7054.showNotes"/> - <string key="7055.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7055.showNotes"/> - <string key="7056.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7056.showNotes"/> - <string key="7073.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7073.showNotes"/> - <string key="711.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="711.IBUserGuides" ref="0"/> - <boolean value="NO" key="711.showNotes"/> - <string key="713.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="713.IBUserGuides" ref="0"/> - <boolean value="NO" key="713.showNotes"/> - <boolean value="NO" key="714.IBNSWindowAutoPositionCentersHorizontal"/> - <boolean value="NO" key="714.IBNSWindowAutoPositionCentersVertical"/> - <string key="714.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="714.showNotes"/> - <string key="7206.CustomClassName">SPSplitView</string> - <string key="7206.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7206.IBUserGuides" ref="0"/> - <boolean value="NO" key="7206.showNotes"/> - <string key="7207.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7207.IBUserGuides" ref="0"/> - <boolean value="NO" key="7207.showNotes"/> - <string key="7208.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7208.IBUserGuides" ref="0"/> - <boolean value="NO" key="7208.showNotes"/> - <string key="7209.CustomClassName">SPSplitView</string> - <string key="7209.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7209.IBUserGuides" ref="0"/> - <boolean value="NO" key="7209.showNotes"/> - <string key="7210.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7210.IBUserGuides" ref="0"/> - <boolean value="NO" key="7210.showNotes"/> - <reference key="7211.IBNSViewMetadataGestureRecognizers" ref="0"/> - <string key="7211.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7211.IBUserGuides" ref="0"/> - <boolean value="NO" key="7211.showNotes"/> - <object class="NSMutableDictionary" key="7217.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="946631811"/> - <string key="toolTip">Choose a query from your recent queries (⌥⌘Y)</string> - </object> - </object> - <string key="7217.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7217.IBUserGuides" ref="0"/> - <boolean value="NO" key="7217.showNotes"/> - <object class="NSMutableDictionary" key="7218.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="1011012479"/> - <string key="toolTip">Choose a favorite from the menu or save queries to the favorites (⌥⌘F)</string> - </object> - </object> - <string key="7218.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7218.IBUserGuides" ref="0"/> - <boolean value="NO" key="7218.showNotes"/> - <string key="7221.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7221.IBUserGuides" ref="0"/> - <boolean value="NO" key="7221.showNotes"/> - <string key="7222.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7222.IBUserGuides" ref="0"/> - <boolean value="NO" key="7222.showNotes"/> - <string key="7223.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7223.IBUserGuides" ref="0"/> - <boolean value="NO" key="7223.showNotes"/> - <string key="7224.CustomClassName">SPCopyTable</string> - <string key="7224.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7224.IBUserGuides" ref="0"/> - <boolean value="NO" key="7224.showNotes"/> - <string key="7224.userInterfaceItemIdentifier">CustomQueryResultsTableView</string> - <string key="7225.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7225.IBUserGuides" ref="0"/> - <boolean value="NO" key="7225.showNotes"/> - <string key="7226.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7226.IBUserGuides" ref="0"/> - <boolean value="NO" key="7226.showNotes"/> - <string key="7227.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7227.IBUserGuides" ref="0"/> - <boolean value="NO" key="7227.showNotes"/> - <string key="7228.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7228.showNotes"/> - <string key="7229.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7229.showNotes"/> - <string key="7230.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7230.showNotes"/> - <string key="7231.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7231.showNotes"/> - <string key="7232.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7232.showNotes"/> - <string key="7233.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7233.showNotes"/> - <string key="7234.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7234.showNotes"/> - <string key="7235.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7235.showNotes"/> - <string key="7236.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7236.showNotes"/> - <string key="7237.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7237.showNotes"/> - <string key="7238.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7238.showNotes"/> - <string key="7239.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7239.showNotes"/> - <string key="7240.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7240.showNotes"/> - <string key="7241.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7241.showNotes"/> - <object class="NSMutableDictionary" key="7242.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="1064501839"/> - <string key="toolTip">Replaces the current query by the next one coming from the history.</string> - </object> - </object> - <string key="7242.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7242.showNotes"/> - <object class="NSMutableDictionary" key="7243.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="286715853"/> - <string key="toolTip">Replaces the current query by the previous one coming from the history.</string> - </object> - </object> - <string key="7243.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7243.showNotes"/> - <string key="7247.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7247.showNotes"/> - <string key="7248.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7248.showNotes"/> - <string key="7249.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7249.showNotes"/> - <string key="7250.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7250.showNotes"/> - <string key="7251.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7251.showNotes"/> - <string key="7252.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7252.showNotes"/> - <string key="7253.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7253.showNotes"/> - <string key="7254.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7254.showNotes"/> - <string key="7255.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7255.showNotes"/> - <string key="7256.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7256.showNotes"/> - <string key="7257.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7257.showNotes"/> - <string key="7258.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7258.showNotes"/> - <string key="7259.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7259.showNotes"/> - <string key="7262.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7262.showNotes"/> - <string key="7263.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7263.showNotes"/> - <string key="7264.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7264.showNotes"/> - <object class="NSMutableDictionary" key="7265.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="1050766707"/> - <string key="toolTip">Save current query, selection, or - if no selection or current query could be found - the entire content to Favorite.</string> - </object> - </object> - <string key="7265.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7265.showNotes"/> - <string key="7266.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7266.showNotes"/> - <string key="7267.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7267.showNotes"/> - <string key="7268.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7268.showNotes"/> - <object class="NSMutableDictionary" key="7269.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="234421740"/> - <string key="toolTip">Save editor content to Favorite. Press ⌥ to restrict for current query or selection.</string> - </object> - </object> - <string key="7269.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7269.showNotes"/> - <string key="7270.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7270.showNotes"/> - <string key="7271.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7271.showNotes"/> - <string key="7272.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7272.showNotes"/> - <string key="7273.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7273.showNotes"/> - <string key="7274.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7274.showNotes"/> - <string key="7275.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7275.showNotes"/> - <object class="NSMutableDictionary" key="7276.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="550977381"/> - <string key="toolTip">Save all history items to file. Press ⌥ to copy all history items onto the clipboard.</string> - </object> - </object> - <string key="7276.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7276.showNotes"/> - <string key="7277.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7277.showNotes"/> - <string key="7278.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7278.showNotes"/> - <object class="NSMutableDictionary" key="7279.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="371986622"/> - <string key="toolTip">Copy all history items onto the clipboard.</string> - </object> - </object> - <string key="7279.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7279.showNotes"/> - <string key="7429.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7429.IBUserGuides" ref="0"/> - <boolean value="NO" key="7429.showNotes"/> - <string key="7430.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7430.showNotes"/> - <string key="7438.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7438.IBUserGuides" ref="0"/> - <boolean value="NO" key="7438.showNotes"/> - <string key="7439.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7439.showNotes"/> - <string key="7440.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7440.IBUserGuides" ref="0"/> - <boolean value="NO" key="7440.showNotes"/> - <string key="7441.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7441.showNotes"/> - <string key="7442.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7442.IBUserGuides" ref="0"/> - <boolean value="NO" key="7442.showNotes"/> - <string key="7443.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7443.showNotes"/> - <string key="7444.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7444.IBUserGuides" ref="0"/> - <boolean value="NO" key="7444.showNotes"/> - <string key="7445.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7445.showNotes"/> - <string key="7446.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7446.IBUserGuides" ref="0"/> - <boolean value="NO" key="7446.showNotes"/> - <string key="7447.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7447.showNotes"/> - <string key="7448.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7448.IBUserGuides" ref="0"/> - <boolean value="NO" key="7448.showNotes"/> - <string key="7449.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7449.showNotes"/> - <string key="7450.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7450.IBUserGuides" ref="0"/> - <boolean value="NO" key="7450.showNotes"/> - <string key="7451.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7451.showNotes"/> - <string key="7452.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7452.IBUserGuides" ref="0"/> - <boolean value="NO" key="7452.showNotes"/> - <string key="7453.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7453.showNotes"/> - <string key="7454.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7454.IBUserGuides" ref="0"/> - <boolean value="NO" key="7454.showNotes"/> - <string key="7455.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7455.showNotes"/> - <object class="NSMutableDictionary" key="7457.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="1070311218"/> - <string key="toolTip">Reveal the collapsed indexes pane</string> - </object> - </object> - <string key="7457.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7457.IBUserGuides" ref="0"/> - <boolean value="NO" key="7457.showNotes"/> - <string key="7458.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7458.showNotes"/> - <string key="7467.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7467.showNotes"/> - <string key="7468.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7468.showNotes"/> - <string key="7469.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7469.showNotes"/> - <string key="7470.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7470.showNotes"/> - <string key="7472.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7472.showNotes"/> - <string key="7473.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7473.showNotes"/> - <string key="748.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="748.showNotes"/> - <string key="7484.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7484.showNotes"/> - <string key="7486.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7486.showNotes"/> - <string key="7488.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7488.showNotes"/> - <string key="7489.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7489.showNotes"/> - <string key="749.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="749.showNotes"/> - <string key="7490.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7490.showNotes"/> - <string key="7491.CustomClassName">SPIdMenu</string> - <object class="NSMutableDictionary" key="7491.IBAttributePlaceholdersKey"> - <string key="NS.key.0">IBUserDefinedRuntimeAttributesPlaceholderName</string> - <object class="IBUserDefinedRuntimeAttributesPlaceholder" key="NS.object.0"> - <string key="name">IBUserDefinedRuntimeAttributesPlaceholderName</string> - <reference key="object" ref="856601787"/> - <array key="userDefinedRuntimeAttributes"> - <object class="IBUserDefinedRuntimeAttribute"> - <string key="typeIdentifier">com.apple.InterfaceBuilder.userDefinedRuntimeAttributeType.string</string> - <string key="keyPath">menuId</string> - <string key="value">encodingPopupMenu</string> - </object> - </array> - </object> - </object> - <string key="7491.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7491.showNotes"/> - <string key="7493.CustomClassName">SPPopUpButtonCell</string> - <string key="7493.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7493.showNotes"/> - <string key="7494.CustomClassName">SPIdMenu</string> - <object class="NSMutableDictionary" key="7494.IBAttributePlaceholdersKey"> - <string key="NS.key.0">IBUserDefinedRuntimeAttributesPlaceholderName</string> - <object class="IBUserDefinedRuntimeAttributesPlaceholder" key="NS.object.0"> - <string key="name">IBUserDefinedRuntimeAttributesPlaceholderName</string> - <reference key="object" ref="65801928"/> - <array key="userDefinedRuntimeAttributes"> - <object class="IBUserDefinedRuntimeAttribute"> - <string key="typeIdentifier">com.apple.InterfaceBuilder.userDefinedRuntimeAttributeType.string</string> - <string key="keyPath">menuId</string> - <string key="value">collationPopupMenu</string> - </object> - </array> - </object> - </object> - <string key="7494.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7494.showNotes"/> - <string key="7499.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7499.showNotes"/> - <string key="7500.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7500.showNotes"/> - <boolean value="NO" key="7609.IBNSWindowAutoPositionCentersHorizontal"/> - <boolean value="NO" key="7609.IBNSWindowAutoPositionCentersVertical"/> - <string key="7609.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7609.showNotes"/> - <string key="7610.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7610.IBUserGuides" ref="0"/> - <boolean value="NO" key="7610.showNotes"/> - <string key="7615.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7615.IBUserGuides" ref="0"/> - <boolean value="NO" key="7615.showNotes"/> - <string key="7616.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7616.showNotes"/> - <string key="7617.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7617.IBUserGuides" ref="0"/> - <boolean value="NO" key="7617.showNotes"/> - <string key="7618.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7618.showNotes"/> - <string key="7619.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7619.IBUserGuides" ref="0"/> - <boolean value="NO" key="7619.showNotes"/> - <string key="7620.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7620.showNotes"/> - <string key="7629.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7629.IBUserGuides" ref="0"/> - <boolean value="NO" key="7629.showNotes"/> - <string key="7630.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7630.showNotes"/> - <string key="7668.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7668.showNotes"/> - <string key="7683.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7683.showNotes"/> - <string key="7691.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7691.IBUserGuides" ref="0"/> - <boolean value="NO" key="7691.showNotes"/> - <string key="7692.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7692.IBUserGuides" ref="0"/> - <boolean value="NO" key="7692.showNotes"/> - <string key="7693.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7693.IBUserGuides" ref="0"/> - <boolean value="NO" key="7693.showNotes"/> - <string key="7694.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7694.IBUserGuides" ref="0"/> - <boolean value="NO" key="7694.showNotes"/> - <string key="7695.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7695.showNotes"/> - <string key="7696.CustomClassName">SPTableTextFieldCell</string> - <string key="7696.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7696.showNotes"/> - <string key="7727.CustomClassName">SPSplitView</string> - <string key="7727.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7727.IBUserGuides" ref="0"/> - <boolean value="NO" key="7727.showNotes"/> - <string key="7728.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7728.IBUserGuides" ref="0"/> - <boolean value="NO" key="7728.showNotes"/> - <string key="7728.userInterfaceItemIdentifier">TabesListSplitPane</string> - <string key="7729.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7729.IBUserGuides" ref="0"/> - <boolean value="NO" key="7729.showNotes"/> - <string key="7729.userInterfaceItemIdentifier">MainAreaSplitPane</string> - <string key="7777.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7777.IBUserGuides" ref="0"/> - <boolean value="NO" key="7777.showNotes"/> - <string key="7778.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7778.IBUserGuides" ref="0"/> - <boolean value="NO" key="7778.showNotes"/> - <string key="7779.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7779.IBUserGuides" ref="0"/> - <boolean value="NO" key="7779.showNotes"/> - <string key="7783.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7783.showNotes"/> - <string key="7795.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7795.showNotes"/> - <string key="7796.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7796.showNotes"/> - <string key="7798.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7798.IBUserGuides" ref="0"/> - <boolean value="NO" key="7798.showNotes"/> - <string key="7800.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7800.IBUserGuides" ref="0"/> - <boolean value="NO" key="7800.showNotes"/> - <string key="7801.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7801.showNotes"/> - <string key="7808.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7808.IBUserGuides" ref="0"/> - <boolean value="NO" key="7808.showNotes"/> - <string key="7809.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7809.showNotes"/> - <string key="7814.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7814.IBUserGuides" ref="0"/> - <boolean value="NO" key="7814.showNotes"/> - <string key="7815.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7815.showNotes"/> - <string key="7817.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7817.IBUserGuides" ref="0"/> - <boolean value="NO" key="7817.showNotes"/> - <string key="7818.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7818.showNotes"/> - <string key="7819.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7819.IBUserGuides" ref="0"/> - <boolean value="NO" key="7819.showNotes"/> - <string key="7820.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7820.showNotes"/> - <string key="7821.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7821.IBUserGuides" ref="0"/> - <boolean value="NO" key="7821.showNotes"/> - <string key="7822.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7822.showNotes"/> - <string key="7823.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7823.IBUserGuides" ref="0"/> - <boolean value="NO" key="7823.showNotes"/> - <string key="7824.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7824.IBUserGuides" ref="0"/> - <boolean value="NO" key="7824.showNotes"/> - <string key="7825.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7825.showNotes"/> - <string key="7828.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7828.showNotes"/> - <string key="7846.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7846.IBUserGuides" ref="0"/> - <boolean value="NO" key="7846.showNotes"/> - <string key="7847.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7847.showNotes"/> - <string key="7848.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7848.IBUserGuides" ref="0"/> - <boolean value="NO" key="7848.showNotes"/> - <string key="7849.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7849.showNotes"/> - <object class="NSMutableDictionary" key="7850.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="99671504"/> - <string key="toolTip">Add new table</string> - </object> - </object> - <string key="7850.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7850.IBUserGuides" ref="0"/> - <boolean value="NO" key="7850.showNotes"/> - <string key="7851.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7851.showNotes"/> - <string key="7859.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7859.IBUserGuides" ref="0"/> - <boolean value="NO" key="7859.showNotes"/> - <string key="7860.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7860.showNotes"/> - <string key="7861.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7861.showNotes"/> - <string key="7862.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7862.showNotes"/> - <object class="NSMutableDictionary" key="7917.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="767969003"/> - <string key="toolTip">Rename the selected item</string> - </object> - </object> - <string key="7917.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7917.showNotes"/> - <object class="NSMutableDictionary" key="7918.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="35600651"/> - <string key="toolTip">Duplicate the selected item</string> - </object> - </object> - <string key="7918.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7918.showNotes"/> - <string key="7919.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7919.showNotes"/> - <object class="NSMutableDictionary" key="7920.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="34195582"/> - <string key="toolTip">Delete all records of selected table(s)</string> - </object> - </object> - <string key="7920.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7920.showNotes"/> - <object class="NSMutableDictionary" key="7921.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="1000459683"/> - <string key="toolTip">Remove the selected item(s)</string> - </object> - </object> - <string key="7921.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7921.showNotes"/> - <string key="7922.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7922.showNotes"/> - <string key="7923.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7923.showNotes"/> - <string key="7924.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7924.showNotes"/> - <string key="7925.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7925.showNotes"/> - <string key="7926.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7926.showNotes"/> - <string key="7927.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7927.showNotes"/> - <string key="7928.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7928.showNotes"/> - <string key="7929.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7929.showNotes"/> - <string key="7930.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7930.showNotes"/> - <string key="7931.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7931.showNotes"/> - <string key="7932.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7932.showNotes"/> - <object class="NSMutableDictionary" key="7954.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="466961207"/> - <string key="toolTip">Refresh table list</string> - </object> - </object> - <string key="7954.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7954.IBUserGuides" ref="0"/> - <boolean value="NO" key="7954.showNotes"/> - <string key="7955.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7955.showNotes"/> - <object class="NSMutableDictionary" key="7959.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="559497073"/> - <string key="toolTip">Toggle the visibility of the Information panel</string> - </object> - </object> - <string key="7959.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7959.IBUserGuides" ref="0"/> - <boolean value="NO" key="7959.showNotes"/> - <string key="7960.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7960.showNotes"/> - <string key="7965.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7965.IBUserGuides" ref="0"/> - <boolean value="NO" key="7965.showNotes"/> - <string key="7966.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7966.showNotes"/> - <string key="7967.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7967.IBUserGuides" ref="0"/> - <boolean value="NO" key="7967.showNotes"/> - <string key="7968.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7968.showNotes"/> - <object class="NSMutableDictionary" key="7970.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="245508703"/> - <string key="toolTip">Toggle the visibility of the Query Information Pane</string> - </object> - </object> - <string key="7970.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7970.IBUserGuides" ref="0"/> - <boolean value="NO" key="7970.showNotes"/> - <string key="7971.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7971.showNotes"/> - <string key="7975.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="7975.IBUserGuides" ref="0"/> - <boolean value="NO" key="7975.showNotes"/> - <string key="7976.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7976.showNotes"/> - <string key="7977.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7977.showNotes"/> - <string key="7978.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="7978.showNotes"/> - <string key="8005.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8005.showNotes"/> - <string key="8006.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8006.showNotes"/> - <string key="8007.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8007.showNotes"/> - <string key="8008.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8008.showNotes"/> - <object class="NSMutableDictionary" key="8012.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="21519590"/> - <string key="toolTip">Toggle between editing simple text cells as a spreadsheet or in pop-up sheets</string> - </object> - </object> - <string key="8012.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8012.IBUserGuides" ref="0"/> - <boolean value="NO" key="8012.showNotes"/> - <string key="8013.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8013.showNotes"/> - <string key="8025.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8025.IBUserGuides" ref="0"/> - <boolean value="NO" key="8025.showNotes"/> - <string key="8026.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8026.showNotes"/> - <string key="8027.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8027.showNotes"/> - <string key="8028.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8028.showNotes"/> - <string key="8055.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8055.showNotes"/> - <string key="8056.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8056.showNotes"/> - <string key="8057.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8057.showNotes"/> - <string key="8058.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8058.showNotes"/> - <string key="8059.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8059.showNotes"/> - <string key="8060.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8060.showNotes"/> - <boolean value="NO" key="8068.IBNSWindowAutoPositionCentersHorizontal"/> - <boolean value="NO" key="8068.IBNSWindowAutoPositionCentersVertical"/> - <string key="8068.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8068.showNotes"/> - <string key="8069.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8069.IBUserGuides" ref="0"/> - <boolean value="NO" key="8069.showNotes"/> - <string key="8079.CustomClassName">SPSplitView</string> - <string key="8079.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8079.IBUserGuides" ref="0"/> - <boolean value="NO" key="8079.showNotes"/> - <string key="8080.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8080.IBUserGuides" ref="0"/> - <boolean value="NO" key="8080.showNotes"/> - <string key="8081.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8081.IBUserGuides" ref="0"/> - <boolean value="NO" key="8081.showNotes"/> - <object class="NSMutableDictionary" key="8083.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="311320315"/> - <string key="toolTip">Apply Filter to current Table (⌘F)</string> - </object> - </object> - <string key="8083.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8083.IBUserGuides" ref="0"/> - <boolean value="NO" key="8083.showNotes"/> - <string key="8084.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8084.showNotes"/> - <object class="NSMutableDictionary" key="8085.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="567978438"/> - <string key="toolTip">Clear all Filter Criterias (⌘⌫)</string> - </object> - </object> - <string key="8085.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8085.IBUserGuides" ref="0"/> - <boolean value="NO" key="8085.showNotes"/> - <string key="8086.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8086.showNotes"/> - <object class="NSMutableDictionary" key="8127.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="888560371"/> - <string key="toolTip">Create a WHERE clause to search for the last typed pattern in all fields</string> - </object> - </object> - <string key="8127.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8127.IBUserGuides" ref="0"/> - <boolean value="NO" key="8127.showNotes"/> - <string key="8128.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8128.showNotes"/> - <object class="NSMutableDictionary" key="8129.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="831663923"/> - <string key="toolTip">Perform filter while typing (⌘T)</string> - </object> - </object> - <string key="8129.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8129.IBUserGuides" ref="0"/> - <boolean value="NO" key="8129.showNotes"/> - <string key="8130.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8130.showNotes"/> - <object class="NSMutableDictionary" key="8131.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="97861442"/> - <string key="toolTip">If set negate entire WHERE clause (⌘N)</string> - </object> - </object> - <string key="8131.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8131.IBUserGuides" ref="0"/> - <boolean value="NO" key="8131.showNotes"/> - <string key="8132.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8132.showNotes"/> - <object class="NSMutableDictionary" key="8133.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="154035357"/> - <string key="toolTip">Perform filtering by using SELECT DISTINCT</string> - </object> - </object> - <string key="8133.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8133.IBUserGuides" ref="0"/> - <boolean value="NO" key="8133.showNotes"/> - <string key="8134.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8134.showNotes"/> - <string key="8135.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8135.IBUserGuides" ref="0"/> - <boolean value="NO" key="8135.showNotes"/> - <string key="8136.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8136.showNotes"/> - <object class="NSMutableDictionary" key="8137.IBAttributePlaceholdersKey"> - <string key="NS.key.0">ToolTip</string> - <object class="IBToolTipAttribute" key="NS.object.0"> - <string key="name">ToolTip</string> - <reference key="object" ref="995074970"/> - <string key="toolTip">Set default operator which should be used if pattern doen't begin with an operator</string> - </object> - </object> - <string key="8137.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8137.IBUserGuides" ref="0"/> - <boolean value="NO" key="8137.showNotes"/> - <string key="8138.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8138.showNotes"/> - <string key="8139.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8139.IBUserGuides" ref="0"/> - <boolean value="NO" key="8139.showNotes"/> - <string key="8140.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8140.showNotes"/> - <string key="8141.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8141.IBUserGuides" ref="0"/> - <boolean value="NO" key="8141.showNotes"/> - <string key="8142.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8142.IBUserGuides" ref="0"/> - <boolean value="NO" key="8142.showNotes"/> - <string key="8143.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8143.IBUserGuides" ref="0"/> - <boolean value="NO" key="8143.showNotes"/> - <string key="8144.CustomClassName">SPCopyTable</string> - <string key="8144.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8144.IBUserGuides" ref="0"/> - <boolean value="NO" key="8144.showNotes"/> - <string key="8144.userInterfaceItemIdentifier">AdvancedFilterTableView</string> - <string key="8145.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8145.IBUserGuides" ref="0"/> - <boolean value="NO" key="8145.showNotes"/> - <string key="8146.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8146.showNotes"/> - <string key="8149.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8149.showNotes"/> - <string key="8180.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8180.IBUserGuides" ref="0"/> - <boolean value="NO" key="8180.showNotes"/> - <string key="8181.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8181.showNotes"/> - <string key="8199.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8199.IBUserGuides" ref="0"/> - <boolean value="NO" key="8199.showNotes"/> - <string key="8200.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8200.IBUserGuides" ref="0"/> - <boolean value="NO" key="8200.showNotes"/> - <string key="8201.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8201.IBUserGuides" ref="0"/> - <boolean value="NO" key="8201.showNotes"/> - <string key="8202.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8202.IBUserGuides" ref="0"/> - <boolean value="NO" key="8202.showNotes"/> - <boolean value="NO" key="8202.usesInspectorBar"/> - <string key="8204.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8204.IBUserGuides" ref="0"/> - <boolean value="NO" key="8204.showNotes"/> - <string key="8205.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8205.IBUserGuides" ref="0"/> - <boolean value="NO" key="8205.showNotes"/> - <string key="8206.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8206.IBUserGuides" ref="0"/> - <boolean value="NO" key="8206.showNotes"/> - <string key="8207.CustomClassName">SPTextView</string> - <string key="8207.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8207.IBUserGuides" ref="0"/> - <boolean value="NO" key="8207.showNotes"/> - <boolean value="NO" key="8207.usesInspectorBar"/> - <string key="8210.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8210.IBUserGuides" ref="0"/> - <boolean value="NO" key="8210.showNotes"/> - <string key="8211.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8211.IBUserGuides" ref="0"/> - <boolean value="NO" key="8211.showNotes"/> - <string key="8212.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8212.IBUserGuides" ref="0"/> - <boolean value="NO" key="8212.showNotes"/> - <string key="8213.CustomClassName">SPTextView</string> - <string key="8213.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8213.IBUserGuides" ref="0"/> - <boolean value="NO" key="8213.showNotes"/> - <boolean value="NO" key="8213.usesInspectorBar"/> - <string key="8216.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8216.IBUserGuides" ref="0"/> - <boolean value="NO" key="8216.showNotes"/> - <string key="8217.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8217.IBUserGuides" ref="0"/> - <boolean value="NO" key="8217.showNotes"/> - <string key="8218.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8218.IBUserGuides" ref="0"/> - <boolean value="NO" key="8218.showNotes"/> - <string key="8219.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8219.IBUserGuides" ref="0"/> - <boolean value="NO" key="8219.showNotes"/> - <boolean value="NO" key="8219.usesInspectorBar"/> - <string key="8227.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8227.IBUserGuides" ref="0"/> - <boolean value="NO" key="8227.showNotes"/> - <string key="8228.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8228.IBUserGuides" ref="0"/> - <boolean value="NO" key="8228.showNotes"/> - <string key="8229.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8229.IBUserGuides" ref="0"/> - <boolean value="NO" key="8229.showNotes"/> - <string key="8230.CustomClassName">SPTextView</string> - <string key="8230.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8230.IBUserGuides" ref="0"/> - <boolean value="NO" key="8230.showNotes"/> - <boolean value="NO" key="8230.usesInspectorBar"/> - <string key="8233.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8233.IBUserGuides" ref="0"/> - <boolean value="NO" key="8233.showNotes"/> - <string key="8234.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8234.IBUserGuides" ref="0"/> - <boolean value="NO" key="8234.showNotes"/> - <string key="8235.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8235.IBUserGuides" ref="0"/> - <boolean value="NO" key="8235.showNotes"/> - <string key="8236.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8236.IBUserGuides" ref="0"/> - <boolean value="NO" key="8236.showNotes"/> - <boolean value="NO" key="8236.usesInspectorBar"/> - <string key="8239.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8239.IBUserGuides" ref="0"/> - <boolean value="NO" key="8239.showNotes"/> - <string key="8240.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8240.IBUserGuides" ref="0"/> - <boolean value="NO" key="8240.showNotes"/> - <string key="8241.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8241.IBUserGuides" ref="0"/> - <boolean value="NO" key="8241.showNotes"/> - <string key="8242.CustomClassName">SPTextView</string> - <string key="8242.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8242.IBUserGuides" ref="0"/> - <boolean value="NO" key="8242.showNotes"/> - <boolean value="NO" key="8242.usesInspectorBar"/> - <string key="8245.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8245.IBUserGuides" ref="0"/> - <boolean value="NO" key="8245.showNotes"/> - <string key="8246.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8246.IBUserGuides" ref="0"/> - <boolean value="NO" key="8246.showNotes"/> - <string key="8247.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8247.IBUserGuides" ref="0"/> - <boolean value="NO" key="8247.showNotes"/> - <string key="8248.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8248.IBUserGuides" ref="0"/> - <boolean value="NO" key="8248.showNotes"/> - <boolean value="NO" key="8248.usesInspectorBar"/> - <string key="8251.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8251.IBUserGuides" ref="0"/> - <boolean value="NO" key="8251.showNotes"/> - <string key="8252.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8252.IBUserGuides" ref="0"/> - <boolean value="NO" key="8252.showNotes"/> - <string key="8253.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8253.IBUserGuides" ref="0"/> - <boolean value="NO" key="8253.showNotes"/> - <string key="8254.CustomClassName">SPTextView</string> - <string key="8254.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8254.IBUserGuides" ref="0"/> - <boolean value="NO" key="8254.showNotes"/> - <boolean value="NO" key="8254.usesInspectorBar"/> - <string key="8265.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8265.IBUserGuides" ref="0"/> - <boolean value="NO" key="8265.showNotes"/> - <string key="8266.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8266.showNotes"/> - <string key="8269.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8269.IBUserGuides" ref="0"/> - <boolean value="NO" key="8269.showNotes"/> - <string key="8270.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8270.showNotes"/> - <string key="8271.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8271.showNotes"/> - <boolean value="NO" key="8276.IBNSWindowAutoPositionCentersHorizontal"/> - <boolean value="NO" key="8276.IBNSWindowAutoPositionCentersVertical"/> - <string key="8276.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8276.showNotes"/> - <string key="8277.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8277.IBUserGuides" ref="0"/> - <boolean value="NO" key="8277.showNotes"/> - <string key="8278.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8278.IBUserGuides" ref="0"/> - <boolean value="NO" key="8278.showNotes"/> - <string key="8279.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8279.IBUserGuides" ref="0"/> - <boolean value="NO" key="8279.showNotes"/> - <string key="8280.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8280.IBUserGuides" ref="0"/> - <boolean value="NO" key="8280.showNotes"/> - <string key="8281.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8281.IBUserGuides" ref="0"/> - <boolean value="NO" key="8281.showNotes"/> - <string key="8282.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8282.IBUserGuides" ref="0"/> - <boolean value="NO" key="8282.showNotes"/> - <string key="8283.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8283.IBUserGuides" ref="0"/> - <boolean value="NO" key="8283.showNotes"/> - <string key="8284.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8284.showNotes"/> - <string key="8285.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8285.showNotes"/> - <string key="8286.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8286.showNotes"/> - <string key="8287.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8287.showNotes"/> - <string key="8288.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8288.showNotes"/> - <string key="8289.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8289.showNotes"/> - <string key="8290.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8290.showNotes"/> - <string key="8291.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8291.showNotes"/> - <string key="8309.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8309.IBUserGuides" ref="0"/> - <boolean value="NO" key="8309.showNotes"/> - <string key="8310.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8310.IBUserGuides" ref="0"/> - <boolean value="NO" key="8310.showNotes"/> - <string key="8311.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8311.showNotes"/> - <string key="8312.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8312.showNotes"/> - <string key="8313.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8313.showNotes"/> - <string key="8316.CustomClassName">SPComboPopupButton</string> - <string key="8316.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="8316.IBUserGuides" ref="0"/> - <boolean value="NO" key="8316.showNotes"/> - <string key="8317.CustomClassName">SPComboPopupButtonCell</string> - <string key="8317.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8317.showNotes"/> - <string key="8318.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8318.showNotes"/> - <string key="8319.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8319.showNotes"/> - <string key="8321.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8321.showNotes"/> - <string key="8323.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8323.showNotes"/> - <string key="8324.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8324.showNotes"/> - <string key="8327.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8327.showNotes"/> - <string key="8335.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8335.showNotes"/> - <string key="8336.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="8336.showNotes"/> - <string key="858.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="858.IBUserGuides" ref="0"/> - <boolean value="NO" key="858.showNotes"/> - <boolean value="NO" key="959.IBNSWindowAutoPositionCentersHorizontal"/> - <boolean value="NO" key="959.IBNSWindowAutoPositionCentersVertical"/> - <string key="959.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="959.showNotes"/> - <reference key="960.IBNSViewMetadataGestureRecognizers" ref="0"/> - <string key="960.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="960.IBUserGuides" ref="0"/> - <boolean value="NO" key="960.showNotes"/> - <string key="964.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="964.IBUserGuides" ref="0"/> - <boolean value="NO" key="964.showNotes"/> - <string key="AjX-OA-b5u.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="AjX-OA-b5u.IBUserGuides" ref="0"/> - <boolean value="NO" key="AjX-OA-b5u.showNotes"/> - <string key="Bfr-0R-dqh.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <string key="CIQ-tc-1Fn.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="CIQ-tc-1Fn.IBUserGuides" ref="0"/> - <boolean value="NO" key="CIQ-tc-1Fn.showNotes"/> - <string key="FF9-z2-9od.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="FF9-z2-9od.IBUserGuides" ref="0"/> - <boolean value="NO" key="FF9-z2-9od.showNotes"/> - <string key="GVI-VY-JuM.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <string key="INC-ms-oeO.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <string key="KYo-IU-iIw.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <string key="NkY-EN-Fxn.IBPersistedLastKnownCanvasPosition">{98, 659.5}</string> - <string key="NkY-EN-Fxn.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="NkY-EN-Fxn.NSWindowTemplate.visibleAtLaunch"/> - <string key="SPm-RJ-YgI.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <string key="TRD-dk-r1Q.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <string key="Ts3-iA-OpO.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <string key="UVh-gz-xnJ.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="VCn-3k-MdI.IBNSViewMetadataGestureRecognizers" ref="0"/> - <string key="VCn-3k-MdI.IBPersistedLastKnownCanvasPosition">{-318.5, -215.5}</string> - <string key="VCn-3k-MdI.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <string key="VTe-1x-Phd.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <string key="dIO-Od-K6g.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="dIO-Od-K6g.IBUserGuides" ref="0"/> - <boolean value="NO" key="dIO-Od-K6g.showNotes"/> - <string key="gSO-0R-Xdc.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="gSO-0R-Xdc.IBUserGuides" ref="0"/> - <boolean value="NO" key="gSO-0R-Xdc.showNotes"/> - <string key="gTZ-sd-Ef7.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="gTZ-sd-Ef7.IBUserGuides" ref="0"/> - <boolean value="NO" key="gTZ-sd-Ef7.showNotes"/> - <string key="h2r-1x-8ZD.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <string key="j3N-dd-SyM.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <string key="khN-PI-iEA.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="khN-PI-iEA.showNotes"/> - <string key="ki9-Po-bdr.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <boolean value="NO" key="ki9-Po-bdr.showNotes"/> - <string key="mBC-nL-nLZ.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <string key="mRm-ts-hRV.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <string key="n3P-gU-pX8.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <string key="n5n-Ef-ROd.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <string key="qxR-EW-V6F.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <string key="wlW-vM-FUZ.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="wlW-vM-FUZ.IBUserGuides" ref="0"/> - <boolean value="NO" key="wlW-vM-FUZ.showNotes"/> - <string key="yTv-Lq-Y3H.CustomClassName">SPSplitView</string> - <string key="yTv-Lq-Y3H.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - <reference key="yTv-Lq-Y3H.IBUserGuides" ref="0"/> - <boolean value="NO" key="yTv-Lq-Y3H.showNotes"/> - <string key="zPq-c4-GfK.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="unlocalizedProperties"/> - <nil key="activeLocalization"/> - <dictionary class="NSMutableDictionary" key="localizations"/> - <nil key="sourceID"/> - </object> - <object class="IBClassDescriber" key="IBDocument.Classes"> - <array class="NSMutableArray" key="referencedPartialClassDescriptions"> - <object class="IBPartialClassDescription"> - <string key="className">ImageAndTextCell</string> - <string key="superclassName">NSTextFieldCell</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/ImageAndTextCell.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSComboBoxCell</string> - <object class="NSMutableDictionary" key="actions"> - <string key="NS.key.0">popUp:</string> - <string key="NS.object.0">id</string> - </object> - <object class="NSMutableDictionary" key="actionInfosByName"> - <string key="NS.key.0">popUp:</string> - <object class="IBActionInfo" key="NS.object.0"> - <string key="name">popUp:</string> - <string key="candidateClassName">id</string> - </object> - </object> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPComboBoxCell.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSTextView</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="doDecomposedStringWithCanonicalMapping:">id</string> - <string key="doDecomposedStringWithCompatibilityMapping:">id</string> - <string key="doPrecomposedStringWithCanonicalMapping:">id</string> - <string key="doPrecomposedStringWithCompatibilityMapping:">id</string> - <string key="doRemoveDiacritics:">id</string> - <string key="doSelectionLowerCase:">id</string> - <string key="doSelectionTitleCase:">id</string> - <string key="doSelectionUpperCase:">id</string> - <string key="doTranspose:">id</string> - <string key="executeBundleItemForInputField:">id</string> - <string key="insertNULLvalue:">id</string> - <string key="moveSelectionLineDown:">id</string> - <string key="moveSelectionLineUp:">id</string> - <string key="selectCurrentLine:">id</string> - <string key="selectCurrentWord:">id</string> - <string key="selectEnclosingBrackets:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="doDecomposedStringWithCanonicalMapping:"> - <string key="name">doDecomposedStringWithCanonicalMapping:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="doDecomposedStringWithCompatibilityMapping:"> - <string key="name">doDecomposedStringWithCompatibilityMapping:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="doPrecomposedStringWithCanonicalMapping:"> - <string key="name">doPrecomposedStringWithCanonicalMapping:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="doPrecomposedStringWithCompatibilityMapping:"> - <string key="name">doPrecomposedStringWithCompatibilityMapping:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="doRemoveDiacritics:"> - <string key="name">doRemoveDiacritics:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="doSelectionLowerCase:"> - <string key="name">doSelectionLowerCase:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="doSelectionTitleCase:"> - <string key="name">doSelectionTitleCase:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="doSelectionUpperCase:"> - <string key="name">doSelectionUpperCase:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="doTranspose:"> - <string key="name">doTranspose:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="executeBundleItemForInputField:"> - <string key="name">executeBundleItemForInputField:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="insertNULLvalue:"> - <string key="name">insertNULLvalue:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="moveSelectionLineDown:"> - <string key="name">moveSelectionLineDown:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="moveSelectionLineUp:"> - <string key="name">moveSelectionLineUp:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="selectCurrentLine:"> - <string key="name">selectCurrentLine:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="selectCurrentWord:"> - <string key="name">selectCurrentWord:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="selectEnclosingBrackets:"> - <string key="name">selectEnclosingBrackets:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPTextViewAdditions.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSTextView</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="doDecomposedStringWithCanonicalMapping:">id</string> - <string key="doDecomposedStringWithCompatibilityMapping:">id</string> - <string key="doPrecomposedStringWithCanonicalMapping:">id</string> - <string key="doPrecomposedStringWithCompatibilityMapping:">id</string> - <string key="doRemoveDiacritics:">id</string> - <string key="doSelectionLowerCase:">id</string> - <string key="doSelectionTitleCase:">id</string> - <string key="doSelectionUpperCase:">id</string> - <string key="doTranspose:">id</string> - <string key="executeBundleItemForInputField:">id</string> - <string key="insertNULLvalue:">id</string> - <string key="moveSelectionLineDown:">id</string> - <string key="moveSelectionLineUp:">id</string> - <string key="selectCurrentLine:">id</string> - <string key="selectCurrentWord:">id</string> - <string key="selectEnclosingBrackets:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="doDecomposedStringWithCanonicalMapping:"> - <string key="name">doDecomposedStringWithCanonicalMapping:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="doDecomposedStringWithCompatibilityMapping:"> - <string key="name">doDecomposedStringWithCompatibilityMapping:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="doPrecomposedStringWithCanonicalMapping:"> - <string key="name">doPrecomposedStringWithCanonicalMapping:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="doPrecomposedStringWithCompatibilityMapping:"> - <string key="name">doPrecomposedStringWithCompatibilityMapping:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="doRemoveDiacritics:"> - <string key="name">doRemoveDiacritics:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="doSelectionLowerCase:"> - <string key="name">doSelectionLowerCase:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="doSelectionTitleCase:"> - <string key="name">doSelectionTitleCase:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="doSelectionUpperCase:"> - <string key="name">doSelectionUpperCase:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="doTranspose:"> - <string key="name">doTranspose:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="executeBundleItemForInputField:"> - <string key="name">executeBundleItemForInputField:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="insertNULLvalue:"> - <string key="name">insertNULLvalue:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="moveSelectionLineDown:"> - <string key="name">moveSelectionLineDown:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="moveSelectionLineUp:"> - <string key="name">moveSelectionLineUp:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="selectCurrentLine:"> - <string key="name">selectCurrentLine:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="selectCurrentWord:"> - <string key="name">selectCurrentWord:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="selectEnclosingBrackets:"> - <string key="name">selectEnclosingBrackets:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPTextViewAdditions.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPComboBoxCell</string> - <string key="superclassName">NSComboBoxCell</string> - <object class="NSMutableDictionary" key="outlets"> - <string key="NS.key.0">spDelegate</string> - <string key="NS.object.0">id</string> - </object> - <object class="NSMutableDictionary" key="toOneOutletInfosByName"> - <string key="NS.key.0">spDelegate</string> - <object class="IBToOneOutletInfo" key="NS.object.0"> - <string key="name">spDelegate</string> - <string key="candidateClassName">id</string> - </object> - </object> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPComboBoxCell.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPComboPopupButton</string> - <string key="superclassName">NSPopUpButton</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier" id="514582401"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPComboPopupButton.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPComboPopupButtonCell</string> - <string key="superclassName">NSPopUpButtonCell</string> - <reference key="sourceIdentifier" ref="514582401"/> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPCopyTable</string> - <string key="superclassName">SPTableView</string> - <object class="NSMutableDictionary" key="actions"> - <string key="NS.key.0">executeBundleItemForDataTable:</string> - <string key="NS.object.0">id</string> - </object> - <object class="NSMutableDictionary" key="actionInfosByName"> - <string key="NS.key.0">executeBundleItemForDataTable:</string> - <object class="IBActionInfo" key="NS.object.0"> - <string key="name">executeBundleItemForDataTable:</string> - <string key="candidateClassName">id</string> - </object> - </object> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPCopyTable.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPCopyTable</string> - <object class="NSMutableDictionary" key="actions"> - <string key="NS.key.0">executeBundleItemForDataTable:</string> - <string key="NS.object.0">id</string> - </object> - <object class="NSMutableDictionary" key="actionInfosByName"> - <string key="NS.key.0">executeBundleItemForDataTable:</string> - <object class="IBActionInfo" key="NS.object.0"> - <string key="name">executeBundleItemForDataTable:</string> - <string key="candidateClassName">id</string> - </object> - </object> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPCopyTable.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPCustomQuery</string> - <string key="superclassName">NSObject</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="chooseQueryFavorite:">id</string> - <string key="chooseQueryHistory:">id</string> - <string key="clearQueryHistory:">id</string> - <string key="closeSheet:">id</string> - <string key="copyQueryHistory:">id</string> - <string key="filterQueryFavorites:">id</string> - <string key="filterQueryHistory:">id</string> - <string key="gearMenuItemSelected:">id</string> - <string key="helpSearchFindNextInPage:">id</string> - <string key="helpSearchFindPreviousInPage:">id</string> - <string key="helpSegmentDispatcher:">id</string> - <string key="helpSelectHelpTargetMySQL:">id</string> - <string key="helpSelectHelpTargetPage:">id</string> - <string key="helpSelectHelpTargetWeb:">id</string> - <string key="helpTargetDispatcher:">id</string> - <string key="runAllQueries:">id</string> - <string key="runPrimaryQueryAction:">id</string> - <string key="runSecondaryQueryAction:">id</string> - <string key="runSelectedQueries:">id</string> - <string key="saveQueryHistory:">id</string> - <string key="showCompletionList:">id</string> - <string key="showHelpForCurrentWord:">id</string> - <string key="showHelpForSearchString:">id</string> - <string key="switchDefaultQueryAction:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="chooseQueryFavorite:"> - <string key="name">chooseQueryFavorite:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="chooseQueryHistory:"> - <string key="name">chooseQueryHistory:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="clearQueryHistory:"> - <string key="name">clearQueryHistory:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closeSheet:"> - <string key="name">closeSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="copyQueryHistory:"> - <string key="name">copyQueryHistory:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="filterQueryFavorites:"> - <string key="name">filterQueryFavorites:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="filterQueryHistory:"> - <string key="name">filterQueryHistory:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="gearMenuItemSelected:"> - <string key="name">gearMenuItemSelected:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="helpSearchFindNextInPage:"> - <string key="name">helpSearchFindNextInPage:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="helpSearchFindPreviousInPage:"> - <string key="name">helpSearchFindPreviousInPage:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="helpSegmentDispatcher:"> - <string key="name">helpSegmentDispatcher:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="helpSelectHelpTargetMySQL:"> - <string key="name">helpSelectHelpTargetMySQL:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="helpSelectHelpTargetPage:"> - <string key="name">helpSelectHelpTargetPage:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="helpSelectHelpTargetWeb:"> - <string key="name">helpSelectHelpTargetWeb:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="helpTargetDispatcher:"> - <string key="name">helpTargetDispatcher:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="runAllQueries:"> - <string key="name">runAllQueries:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="runPrimaryQueryAction:"> - <string key="name">runPrimaryQueryAction:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="runSecondaryQueryAction:"> - <string key="name">runSecondaryQueryAction:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="runSelectedQueries:"> - <string key="name">runSelectedQueries:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="saveQueryHistory:"> - <string key="name">saveQueryHistory:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showCompletionList:"> - <string key="name">showCompletionList:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showHelpForCurrentWord:"> - <string key="name">showHelpForCurrentWord:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showHelpForSearchString:"> - <string key="name">showHelpForSearchString:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="switchDefaultQueryAction:"> - <string key="name">switchDefaultQueryAction:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <dictionary class="NSMutableDictionary" key="outlets"> - <string key="affectedRowsText">id</string> - <string key="autohelpMenuItem">NSMenuItem</string> - <string key="autoindentMenuItem">NSMenuItem</string> - <string key="autopairMenuItem">NSMenuItem</string> - <string key="autouppercaseKeywordsMenuItem">NSMenuItem</string> - <string key="clearHistoryMenuItem">NSMenuItem</string> - <string key="commentCurrentQueryMenuItem">NSMenuItem</string> - <string key="commentLineOrSelectionMenuItem">NSMenuItem</string> - <string key="completionListMenuItem">NSMenuItem</string> - <string key="copyHistoryMenuItem">NSMenuItem</string> - <string key="customQueryScrollView">NSScrollView</string> - <string key="customQueryView">SPCopyTable</string> - <string key="editorFontMenuItem">NSMenuItem</string> - <string key="encodingPopUp">NSPopUpButton</string> - <string key="errorText">id</string> - <string key="errorTextScrollView">NSScrollView</string> - <string key="errorTextTitle">NSTextField</string> - <string key="helpNavigator">NSSegmentedControl</string> - <string key="helpSearchField">NSSearchField</string> - <string key="helpSearchFieldCell">NSSearchFieldCell</string> - <string key="helpTargetSelector">NSSegmentedControl</string> - <string key="helpWebView">WebView</string> - <string key="helpWebViewWindow">NSWindow</string> - <string key="nextHistoryMenuItem">NSMenuItem</string> - <string key="previousHistoryMenuItem">NSMenuItem</string> - <string key="queryEditorSplitView">SPSplitView</string> - <string key="queryFavoriteNameTextField">NSTextField</string> - <string key="queryFavoritesButton">id</string> - <string key="queryFavoritesSaveAllMenuItem">NSMenuItem</string> - <string key="queryFavoritesSaveAsMenuItem">NSMenuItem</string> - <string key="queryFavoritesSearchField">NSSearchField</string> - <string key="queryFavoritesSearchFieldView">id</string> - <string key="queryFavoritesSearchMenuItem">NSMenuItem</string> - <string key="queryFavoritesSheet">NSWindow</string> - <string key="queryHistoryButton">id</string> - <string key="queryHistorySearchField">NSSearchField</string> - <string key="queryHistorySearchFieldView">id</string> - <string key="queryHistorySearchMenuItem">NSMenuItem</string> - <string key="queryInfoButton">NSButton</string> - <string key="queryInfoPaneSplitView">SPSplitView</string> - <string key="runAllButton">id</string> - <string key="runPrimaryActionButton">id</string> - <string key="runPrimaryActionButtonAsSelection">id</string> - <string key="runPrimaryActionMenuItem">NSMenuItem</string> - <string key="runSecondaryActionMenuItem">NSMenuItem</string> - <string key="saveHistoryMenuItem">NSMenuItem</string> - <string key="saveQueryFavoriteButton">NSButton</string> - <string key="saveQueryFavoriteGlobal">NSButton</string> - <string key="shiftLeftMenuItem">NSMenuItem</string> - <string key="shiftRightMenuItem">NSMenuItem</string> - <string key="tableDocumentInstance">id</string> - <string key="tablesListInstance">id</string> - <string key="textView">SPTextView</string> - <string key="valueSheet">id</string> - <string key="valueTextField">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName"> - <object class="IBToOneOutletInfo" key="affectedRowsText"> - <string key="name">affectedRowsText</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="autohelpMenuItem"> - <string key="name">autohelpMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="autoindentMenuItem"> - <string key="name">autoindentMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="autopairMenuItem"> - <string key="name">autopairMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="autouppercaseKeywordsMenuItem"> - <string key="name">autouppercaseKeywordsMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="clearHistoryMenuItem"> - <string key="name">clearHistoryMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="commentCurrentQueryMenuItem"> - <string key="name">commentCurrentQueryMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="commentLineOrSelectionMenuItem"> - <string key="name">commentLineOrSelectionMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="completionListMenuItem"> - <string key="name">completionListMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="copyHistoryMenuItem"> - <string key="name">copyHistoryMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="customQueryScrollView"> - <string key="name">customQueryScrollView</string> - <string key="candidateClassName">NSScrollView</string> - </object> - <object class="IBToOneOutletInfo" key="customQueryView"> - <string key="name">customQueryView</string> - <string key="candidateClassName">SPCopyTable</string> - </object> - <object class="IBToOneOutletInfo" key="editorFontMenuItem"> - <string key="name">editorFontMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="encodingPopUp"> - <string key="name">encodingPopUp</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="errorText"> - <string key="name">errorText</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="errorTextScrollView"> - <string key="name">errorTextScrollView</string> - <string key="candidateClassName">NSScrollView</string> - </object> - <object class="IBToOneOutletInfo" key="errorTextTitle"> - <string key="name">errorTextTitle</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="helpNavigator"> - <string key="name">helpNavigator</string> - <string key="candidateClassName">NSSegmentedControl</string> - </object> - <object class="IBToOneOutletInfo" key="helpSearchField"> - <string key="name">helpSearchField</string> - <string key="candidateClassName">NSSearchField</string> - </object> - <object class="IBToOneOutletInfo" key="helpSearchFieldCell"> - <string key="name">helpSearchFieldCell</string> - <string key="candidateClassName">NSSearchFieldCell</string> - </object> - <object class="IBToOneOutletInfo" key="helpTargetSelector"> - <string key="name">helpTargetSelector</string> - <string key="candidateClassName">NSSegmentedControl</string> - </object> - <object class="IBToOneOutletInfo" key="helpWebView"> - <string key="name">helpWebView</string> - <string key="candidateClassName">WebView</string> - </object> - <object class="IBToOneOutletInfo" key="helpWebViewWindow"> - <string key="name">helpWebViewWindow</string> - <string key="candidateClassName">NSWindow</string> - </object> - <object class="IBToOneOutletInfo" key="nextHistoryMenuItem"> - <string key="name">nextHistoryMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="previousHistoryMenuItem"> - <string key="name">previousHistoryMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="queryEditorSplitView"> - <string key="name">queryEditorSplitView</string> - <string key="candidateClassName">SPSplitView</string> - </object> - <object class="IBToOneOutletInfo" key="queryFavoriteNameTextField"> - <string key="name">queryFavoriteNameTextField</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="queryFavoritesButton"> - <string key="name">queryFavoritesButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="queryFavoritesSaveAllMenuItem"> - <string key="name">queryFavoritesSaveAllMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="queryFavoritesSaveAsMenuItem"> - <string key="name">queryFavoritesSaveAsMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="queryFavoritesSearchField"> - <string key="name">queryFavoritesSearchField</string> - <string key="candidateClassName">NSSearchField</string> - </object> - <object class="IBToOneOutletInfo" key="queryFavoritesSearchFieldView"> - <string key="name">queryFavoritesSearchFieldView</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="queryFavoritesSearchMenuItem"> - <string key="name">queryFavoritesSearchMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="queryFavoritesSheet"> - <string key="name">queryFavoritesSheet</string> - <string key="candidateClassName">NSWindow</string> - </object> - <object class="IBToOneOutletInfo" key="queryHistoryButton"> - <string key="name">queryHistoryButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="queryHistorySearchField"> - <string key="name">queryHistorySearchField</string> - <string key="candidateClassName">NSSearchField</string> - </object> - <object class="IBToOneOutletInfo" key="queryHistorySearchFieldView"> - <string key="name">queryHistorySearchFieldView</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="queryHistorySearchMenuItem"> - <string key="name">queryHistorySearchMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="queryInfoButton"> - <string key="name">queryInfoButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="queryInfoPaneSplitView"> - <string key="name">queryInfoPaneSplitView</string> - <string key="candidateClassName">SPSplitView</string> - </object> - <object class="IBToOneOutletInfo" key="runAllButton"> - <string key="name">runAllButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="runPrimaryActionButton"> - <string key="name">runPrimaryActionButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="runPrimaryActionButtonAsSelection"> - <string key="name">runPrimaryActionButtonAsSelection</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="runPrimaryActionMenuItem"> - <string key="name">runPrimaryActionMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="runSecondaryActionMenuItem"> - <string key="name">runSecondaryActionMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="saveHistoryMenuItem"> - <string key="name">saveHistoryMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="saveQueryFavoriteButton"> - <string key="name">saveQueryFavoriteButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="saveQueryFavoriteGlobal"> - <string key="name">saveQueryFavoriteGlobal</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="shiftLeftMenuItem"> - <string key="name">shiftLeftMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="shiftRightMenuItem"> - <string key="name">shiftRightMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="tableDocumentInstance"> - <string key="name">tableDocumentInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tablesListInstance"> - <string key="name">tablesListInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="textView"> - <string key="name">textView</string> - <string key="candidateClassName">SPTextView</string> - </object> - <object class="IBToOneOutletInfo" key="valueSheet"> - <string key="name">valueSheet</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="valueTextField"> - <string key="name">valueTextField</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPCustomQuery.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPCustomQuery</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="chooseQueryFavorite:">id</string> - <string key="chooseQueryHistory:">id</string> - <string key="clearQueryHistory:">id</string> - <string key="closeSheet:">id</string> - <string key="copyQueryHistory:">id</string> - <string key="filterQueryFavorites:">id</string> - <string key="filterQueryHistory:">id</string> - <string key="gearMenuItemSelected:">id</string> - <string key="helpSearchFindNextInPage:">id</string> - <string key="helpSearchFindPreviousInPage:">id</string> - <string key="helpSegmentDispatcher:">id</string> - <string key="helpSelectHelpTargetMySQL:">id</string> - <string key="helpSelectHelpTargetPage:">id</string> - <string key="helpSelectHelpTargetWeb:">id</string> - <string key="helpTargetDispatcher:">id</string> - <string key="runAllQueries:">id</string> - <string key="runPrimaryQueryAction:">id</string> - <string key="runSecondaryQueryAction:">id</string> - <string key="runSelectedQueries:">id</string> - <string key="saveQueryHistory:">id</string> - <string key="searchInDocForWebViewSelection:">id</string> - <string key="showCompletionList:">id</string> - <string key="showHelpForCurrentWord:">id</string> - <string key="showHelpForSearchString:">id</string> - <string key="showHelpForWebViewSelection:">id</string> - <string key="switchDefaultQueryAction:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="chooseQueryFavorite:"> - <string key="name">chooseQueryFavorite:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="chooseQueryHistory:"> - <string key="name">chooseQueryHistory:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="clearQueryHistory:"> - <string key="name">clearQueryHistory:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closeSheet:"> - <string key="name">closeSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="copyQueryHistory:"> - <string key="name">copyQueryHistory:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="filterQueryFavorites:"> - <string key="name">filterQueryFavorites:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="filterQueryHistory:"> - <string key="name">filterQueryHistory:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="gearMenuItemSelected:"> - <string key="name">gearMenuItemSelected:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="helpSearchFindNextInPage:"> - <string key="name">helpSearchFindNextInPage:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="helpSearchFindPreviousInPage:"> - <string key="name">helpSearchFindPreviousInPage:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="helpSegmentDispatcher:"> - <string key="name">helpSegmentDispatcher:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="helpSelectHelpTargetMySQL:"> - <string key="name">helpSelectHelpTargetMySQL:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="helpSelectHelpTargetPage:"> - <string key="name">helpSelectHelpTargetPage:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="helpSelectHelpTargetWeb:"> - <string key="name">helpSelectHelpTargetWeb:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="helpTargetDispatcher:"> - <string key="name">helpTargetDispatcher:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="runAllQueries:"> - <string key="name">runAllQueries:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="runPrimaryQueryAction:"> - <string key="name">runPrimaryQueryAction:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="runSecondaryQueryAction:"> - <string key="name">runSecondaryQueryAction:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="runSelectedQueries:"> - <string key="name">runSelectedQueries:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="saveQueryHistory:"> - <string key="name">saveQueryHistory:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="searchInDocForWebViewSelection:"> - <string key="name">searchInDocForWebViewSelection:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showCompletionList:"> - <string key="name">showCompletionList:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showHelpForCurrentWord:"> - <string key="name">showHelpForCurrentWord:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showHelpForSearchString:"> - <string key="name">showHelpForSearchString:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showHelpForWebViewSelection:"> - <string key="name">showHelpForWebViewSelection:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="switchDefaultQueryAction:"> - <string key="name">switchDefaultQueryAction:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPCustomQuery.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPDataImport</string> - <string key="superclassName">NSObject</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="cancelProgressBar:">id</string> - <string key="changeFormat:">id</string> - <string key="closeSheet:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="cancelProgressBar:"> - <string key="name">cancelProgressBar:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="changeFormat:"> - <string key="name">changeFormat:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closeSheet:"> - <string key="name">closeSheet:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <dictionary class="NSMutableDictionary" key="outlets"> - <string key="addCreateTableSwitch">id</string> - <string key="addDropTableSwitch">id</string> - <string key="addErrorsSwitch">id</string> - <string key="addTableContentSwitch">id</string> - <string key="csvFullStreamingSwitch">id</string> - <string key="customQueryInstance">id</string> - <string key="errorsSheet">id</string> - <string key="errorsView">id</string> - <string key="importEncodingPopup">NSPopUpButton</string> - <string key="importFieldMapperSheetWindow">id</string> - <string key="importFieldNamesSwitch">NSButton</string> - <string key="importFieldsEnclosedField">id</string> - <string key="importFieldsEscapedField">id</string> - <string key="importFieldsTerminatedField">id</string> - <string key="importFormatPopup">NSPopUpButton</string> - <string key="importFromClipboardAccessoryView">id</string> - <string key="importFromClipboardSheet">id</string> - <string key="importFromClipboardTextView">NSTextView</string> - <string key="importLinesTerminatedField">id</string> - <string key="importSQLErrorHandlingPopup">NSPopUpButton</string> - <string key="importTabView">id</string> - <string key="importView">id</string> - <string key="multiCSVFullStreamingSwitch">id</string> - <string key="multiXMLFullStreamingSwitch">id</string> - <string key="singleProgressBar">id</string> - <string key="singleProgressSheet">id</string> - <string key="singleProgressText">id</string> - <string key="singleProgressTitle">id</string> - <string key="sqlCompressionSwitch">id</string> - <string key="sqlFullStreamingSwitch">id</string> - <string key="tableContentInstance">id</string> - <string key="tableDataInstance">id</string> - <string key="tableDocumentInstance">id</string> - <string key="tableSourceInstance">id</string> - <string key="tablesListInstance">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName"> - <object class="IBToOneOutletInfo" key="addCreateTableSwitch"> - <string key="name">addCreateTableSwitch</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="addDropTableSwitch"> - <string key="name">addDropTableSwitch</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="addErrorsSwitch"> - <string key="name">addErrorsSwitch</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="addTableContentSwitch"> - <string key="name">addTableContentSwitch</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="csvFullStreamingSwitch"> - <string key="name">csvFullStreamingSwitch</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="customQueryInstance"> - <string key="name">customQueryInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="errorsSheet"> - <string key="name">errorsSheet</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="errorsView"> - <string key="name">errorsView</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="importEncodingPopup"> - <string key="name">importEncodingPopup</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="importFieldMapperSheetWindow"> - <string key="name">importFieldMapperSheetWindow</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="importFieldNamesSwitch"> - <string key="name">importFieldNamesSwitch</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="importFieldsEnclosedField"> - <string key="name">importFieldsEnclosedField</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="importFieldsEscapedField"> - <string key="name">importFieldsEscapedField</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="importFieldsTerminatedField"> - <string key="name">importFieldsTerminatedField</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="importFormatPopup"> - <string key="name">importFormatPopup</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="importFromClipboardAccessoryView"> - <string key="name">importFromClipboardAccessoryView</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="importFromClipboardSheet"> - <string key="name">importFromClipboardSheet</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="importFromClipboardTextView"> - <string key="name">importFromClipboardTextView</string> - <string key="candidateClassName">NSTextView</string> - </object> - <object class="IBToOneOutletInfo" key="importLinesTerminatedField"> - <string key="name">importLinesTerminatedField</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="importSQLErrorHandlingPopup"> - <string key="name">importSQLErrorHandlingPopup</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="importTabView"> - <string key="name">importTabView</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="importView"> - <string key="name">importView</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="multiCSVFullStreamingSwitch"> - <string key="name">multiCSVFullStreamingSwitch</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="multiXMLFullStreamingSwitch"> - <string key="name">multiXMLFullStreamingSwitch</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="singleProgressBar"> - <string key="name">singleProgressBar</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="singleProgressSheet"> - <string key="name">singleProgressSheet</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="singleProgressText"> - <string key="name">singleProgressText</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="singleProgressTitle"> - <string key="name">singleProgressTitle</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="sqlCompressionSwitch"> - <string key="name">sqlCompressionSwitch</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="sqlFullStreamingSwitch"> - <string key="name">sqlFullStreamingSwitch</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableContentInstance"> - <string key="name">tableContentInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableDataInstance"> - <string key="name">tableDataInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableDocumentInstance"> - <string key="name">tableDocumentInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableSourceInstance"> - <string key="name">tableSourceInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tablesListInstance"> - <string key="name">tablesListInstance</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPDataImport.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPDataImport</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="cancelProgressBar:">id</string> - <string key="changeFormat:">id</string> - <string key="closeSheet:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="cancelProgressBar:"> - <string key="name">cancelProgressBar:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="changeFormat:"> - <string key="name">changeFormat:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closeSheet:"> - <string key="name">closeSheet:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPDataImport.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPDatabaseData</string> - <string key="superclassName">NSObject</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPDatabaseData.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPDatabaseDocument</string> - <object class="NSMutableDictionary" key="actions"> - <string key="NS.key.0">closeErrorConnectionSheet:</string> - <string key="NS.object.0">id</string> - </object> - <object class="NSMutableDictionary" key="actionInfosByName"> - <string key="NS.key.0">closeErrorConnectionSheet:</string> - <object class="IBActionInfo" key="NS.object.0"> - <string key="name">closeErrorConnectionSheet:</string> - <string key="candidateClassName">id</string> - </object> - </object> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPConnectionDelegate.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPDatabaseDocument</string> - <string key="superclassName">NSObject</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="addConnectionToFavorites:">id</string> - <string key="addDatabase:">id</string> - <string key="alterDatabase:">id</string> - <string key="analyzeTable:">id</string> - <string key="backForwardInHistory:">id</string> - <string key="cancelTask:">id</string> - <string key="checkTable:">id</string> - <string key="checksumTable:">id</string> - <string key="chooseDatabase:">id</string> - <string key="chooseEncoding:">id</string> - <string key="closePanelSheet:">id</string> - <string key="closePasswordSheet:">id</string> - <string key="closeSheet:">id</string> - <string key="copyChecksumFromSheet:">id</string> - <string key="copyCreateTableSyntax:">id</string> - <string key="copyCreateTableSyntaxFromSheet:">id</string> - <string key="copyDatabase:">id</string> - <string key="export:">id</string> - <string key="exportSelectedTablesAs:">id</string> - <string key="flushTable:">id</string> - <string key="focusOnTableContentFilter:">id</string> - <string key="import:">id</string> - <string key="importFromClipboard:">id</string> - <string key="makeTableListFilterHaveFocus:">id</string> - <string key="openCurrentConnectionInNewWindow:">id</string> - <string key="openDatabaseInNewTab:">id</string> - <string key="optimizeTable:">id</string> - <string key="refreshTables:">id</string> - <string key="removeDatabase:">id</string> - <string key="renameDatabase:">id</string> - <string key="repairTable:">id</string> - <string key="saveConnectionSheet:">id</string> - <string key="saveCreateSyntax:">id</string> - <string key="setDatabases:">id</string> - <string key="showCreateTableSyntax:">id</string> - <string key="showFilterTable:">id</string> - <string key="showGotoDatabase:">id</string> - <string key="showMySQLHelp:">id</string> - <string key="showNavigator:">id</string> - <string key="showServerProcesses:">id</string> - <string key="showServerVariables:">id</string> - <string key="showUserManager:">id</string> - <string key="toggleNavigator:">id</string> - <string key="validateSaveConnectionAccessory:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="addConnectionToFavorites:"> - <string key="name">addConnectionToFavorites:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="addDatabase:"> - <string key="name">addDatabase:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="alterDatabase:"> - <string key="name">alterDatabase:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="analyzeTable:"> - <string key="name">analyzeTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="backForwardInHistory:"> - <string key="name">backForwardInHistory:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="cancelTask:"> - <string key="name">cancelTask:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="checkTable:"> - <string key="name">checkTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="checksumTable:"> - <string key="name">checksumTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="chooseDatabase:"> - <string key="name">chooseDatabase:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="chooseEncoding:"> - <string key="name">chooseEncoding:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closePanelSheet:"> - <string key="name">closePanelSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closePasswordSheet:"> - <string key="name">closePasswordSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closeSheet:"> - <string key="name">closeSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="copyChecksumFromSheet:"> - <string key="name">copyChecksumFromSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="copyCreateTableSyntax:"> - <string key="name">copyCreateTableSyntax:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="copyCreateTableSyntaxFromSheet:"> - <string key="name">copyCreateTableSyntaxFromSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="copyDatabase:"> - <string key="name">copyDatabase:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="export:"> - <string key="name">export:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="exportSelectedTablesAs:"> - <string key="name">exportSelectedTablesAs:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="flushTable:"> - <string key="name">flushTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="focusOnTableContentFilter:"> - <string key="name">focusOnTableContentFilter:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="import:"> - <string key="name">import:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="importFromClipboard:"> - <string key="name">importFromClipboard:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="makeTableListFilterHaveFocus:"> - <string key="name">makeTableListFilterHaveFocus:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="openCurrentConnectionInNewWindow:"> - <string key="name">openCurrentConnectionInNewWindow:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="openDatabaseInNewTab:"> - <string key="name">openDatabaseInNewTab:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="optimizeTable:"> - <string key="name">optimizeTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="refreshTables:"> - <string key="name">refreshTables:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="removeDatabase:"> - <string key="name">removeDatabase:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="renameDatabase:"> - <string key="name">renameDatabase:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="repairTable:"> - <string key="name">repairTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="saveConnectionSheet:"> - <string key="name">saveConnectionSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="saveCreateSyntax:"> - <string key="name">saveCreateSyntax:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="setDatabases:"> - <string key="name">setDatabases:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showCreateTableSyntax:"> - <string key="name">showCreateTableSyntax:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showFilterTable:"> - <string key="name">showFilterTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showGotoDatabase:"> - <string key="name">showGotoDatabase:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showMySQLHelp:"> - <string key="name">showMySQLHelp:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showNavigator:"> - <string key="name">showNavigator:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showServerProcesses:"> - <string key="name">showServerProcesses:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showServerVariables:"> - <string key="name">showServerVariables:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showUserManager:"> - <string key="name">showUserManager:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleNavigator:"> - <string key="name">toggleNavigator:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="validateSaveConnectionAccessory:"> - <string key="name">validateSaveConnectionAccessory:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <dictionary class="NSMutableDictionary" key="outlets"> - <string key="addDatabaseButton">id</string> - <string key="chooseDatabaseButton">id</string> - <string key="connectionErrorDialog">NSWindow</string> - <string key="contentViewSplitter">SPSplitView</string> - <string key="copyDatabaseButton">id</string> - <string key="copyDatabaseDataButton">NSButton</string> - <string key="copyDatabaseMessageField">id</string> - <string key="createTableSyntaxTextField">NSTextField</string> - <string key="createTableSyntaxTextView">NSTextView</string> - <string key="createTableSyntaxWindow">NSWindow</string> - <string key="customQueryInstance">id</string> - <string key="customQueryTextView">NSTextView</string> - <string key="databaseAlterCollationButton">NSPopUpButton</string> - <string key="databaseAlterEncodingButton">NSPopUpButton</string> - <string key="databaseAlterSheet">id</string> - <string key="databaseCollationButton">id</string> - <string key="databaseCopyNameField">id</string> - <string key="databaseCopySheet">id</string> - <string key="databaseDataInstance">id</string> - <string key="databaseEncodingButton">id</string> - <string key="databaseNameField">id</string> - <string key="databaseRenameNameField">id</string> - <string key="databaseRenameSheet">id</string> - <string key="databaseSheet">id</string> - <string key="dbTablesTableView">NSTableView</string> - <string key="documentActivityScrollView">NSScrollView</string> - <string key="encodingPopUp">NSPopUpButton</string> - <string key="exportControllerInstance">id</string> - <string key="extendedTableInfoInstance">id</string> - <string key="favoritesButton">id</string> - <string key="historyControl">id</string> - <string key="inputTextWindow">id</string> - <string key="inputTextWindowHeader">id</string> - <string key="inputTextWindowMessage">id</string> - <string key="inputTextWindowSecureTextField">id</string> - <string key="listFilterField">NSSearchField</string> - <string key="parentView">NSView</string> - <string key="queryProgressBar">NSProgressIndicator</string> - <string key="renameDatabaseButton">id</string> - <string key="renameDatabaseMessageField">id</string> - <string key="saveConnectionAccessory">id</string> - <string key="saveConnectionAutoConnect">NSButton</string> - <string key="saveConnectionEncrypt">NSButton</string> - <string key="saveConnectionEncryptString">NSSecureTextField</string> - <string key="saveConnectionIncludeData">NSButton</string> - <string key="saveConnectionIncludeQuery">NSButton</string> - <string key="saveConnectionSavePassword">NSButton</string> - <string key="saveConnectionSavePasswordAlert">id</string> - <string key="spHistoryControllerInstance">id</string> - <string key="statusTableAccessoryView">id</string> - <string key="statusTableCopyChecksum">id</string> - <string key="statusTableView">id</string> - <string key="tableContentInstance">SPTableContent</string> - <string key="tableDataInstance">SPTableData</string> - <string key="tableDumpInstance">id</string> - <string key="tableInfoScrollView">NSScrollView</string> - <string key="tableInfoSplitView">SPSplitView</string> - <string key="tableInfoTable">NSTableView</string> - <string key="tableRelationsInstance">id</string> - <string key="tableSourceInstance">SPTableStructure</string> - <string key="tableTabView">NSTabView</string> - <string key="tableTriggersInstance">id</string> - <string key="tablesListInstance">SPTablesList</string> - <string key="taskCancelButton">NSButton</string> - <string key="taskDescriptionText">id</string> - <string key="taskProgressIndicator">id</string> - <string key="taskProgressLayer">NSBox</string> - <string key="titleAccessoryView">id</string> - <string key="titleImageView">id</string> - <string key="titleStringView">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName"> - <object class="IBToOneOutletInfo" key="addDatabaseButton"> - <string key="name">addDatabaseButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="chooseDatabaseButton"> - <string key="name">chooseDatabaseButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="connectionErrorDialog"> - <string key="name">connectionErrorDialog</string> - <string key="candidateClassName">NSWindow</string> - </object> - <object class="IBToOneOutletInfo" key="contentViewSplitter"> - <string key="name">contentViewSplitter</string> - <string key="candidateClassName">SPSplitView</string> - </object> - <object class="IBToOneOutletInfo" key="copyDatabaseButton"> - <string key="name">copyDatabaseButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="copyDatabaseDataButton"> - <string key="name">copyDatabaseDataButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="copyDatabaseMessageField"> - <string key="name">copyDatabaseMessageField</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="createTableSyntaxTextField"> - <string key="name">createTableSyntaxTextField</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="createTableSyntaxTextView"> - <string key="name">createTableSyntaxTextView</string> - <string key="candidateClassName">NSTextView</string> - </object> - <object class="IBToOneOutletInfo" key="createTableSyntaxWindow"> - <string key="name">createTableSyntaxWindow</string> - <string key="candidateClassName">NSWindow</string> - </object> - <object class="IBToOneOutletInfo" key="customQueryInstance"> - <string key="name">customQueryInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="customQueryTextView"> - <string key="name">customQueryTextView</string> - <string key="candidateClassName">NSTextView</string> - </object> - <object class="IBToOneOutletInfo" key="databaseAlterCollationButton"> - <string key="name">databaseAlterCollationButton</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="databaseAlterEncodingButton"> - <string key="name">databaseAlterEncodingButton</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="databaseAlterSheet"> - <string key="name">databaseAlterSheet</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="databaseCollationButton"> - <string key="name">databaseCollationButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="databaseCopyNameField"> - <string key="name">databaseCopyNameField</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="databaseCopySheet"> - <string key="name">databaseCopySheet</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="databaseDataInstance"> - <string key="name">databaseDataInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="databaseEncodingButton"> - <string key="name">databaseEncodingButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="databaseNameField"> - <string key="name">databaseNameField</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="databaseRenameNameField"> - <string key="name">databaseRenameNameField</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="databaseRenameSheet"> - <string key="name">databaseRenameSheet</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="databaseSheet"> - <string key="name">databaseSheet</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="dbTablesTableView"> - <string key="name">dbTablesTableView</string> - <string key="candidateClassName">NSTableView</string> - </object> - <object class="IBToOneOutletInfo" key="documentActivityScrollView"> - <string key="name">documentActivityScrollView</string> - <string key="candidateClassName">NSScrollView</string> - </object> - <object class="IBToOneOutletInfo" key="encodingPopUp"> - <string key="name">encodingPopUp</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportControllerInstance"> - <string key="name">exportControllerInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="extendedTableInfoInstance"> - <string key="name">extendedTableInfoInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="favoritesButton"> - <string key="name">favoritesButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="historyControl"> - <string key="name">historyControl</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="inputTextWindow"> - <string key="name">inputTextWindow</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="inputTextWindowHeader"> - <string key="name">inputTextWindowHeader</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="inputTextWindowMessage"> - <string key="name">inputTextWindowMessage</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="inputTextWindowSecureTextField"> - <string key="name">inputTextWindowSecureTextField</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="listFilterField"> - <string key="name">listFilterField</string> - <string key="candidateClassName">NSSearchField</string> - </object> - <object class="IBToOneOutletInfo" key="parentView"> - <string key="name">parentView</string> - <string key="candidateClassName">NSView</string> - </object> - <object class="IBToOneOutletInfo" key="queryProgressBar"> - <string key="name">queryProgressBar</string> - <string key="candidateClassName">NSProgressIndicator</string> - </object> - <object class="IBToOneOutletInfo" key="renameDatabaseButton"> - <string key="name">renameDatabaseButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="renameDatabaseMessageField"> - <string key="name">renameDatabaseMessageField</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="saveConnectionAccessory"> - <string key="name">saveConnectionAccessory</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="saveConnectionAutoConnect"> - <string key="name">saveConnectionAutoConnect</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="saveConnectionEncrypt"> - <string key="name">saveConnectionEncrypt</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="saveConnectionEncryptString"> - <string key="name">saveConnectionEncryptString</string> - <string key="candidateClassName">NSSecureTextField</string> - </object> - <object class="IBToOneOutletInfo" key="saveConnectionIncludeData"> - <string key="name">saveConnectionIncludeData</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="saveConnectionIncludeQuery"> - <string key="name">saveConnectionIncludeQuery</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="saveConnectionSavePassword"> - <string key="name">saveConnectionSavePassword</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="saveConnectionSavePasswordAlert"> - <string key="name">saveConnectionSavePasswordAlert</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="spHistoryControllerInstance"> - <string key="name">spHistoryControllerInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="statusTableAccessoryView"> - <string key="name">statusTableAccessoryView</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="statusTableCopyChecksum"> - <string key="name">statusTableCopyChecksum</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="statusTableView"> - <string key="name">statusTableView</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableContentInstance"> - <string key="name">tableContentInstance</string> - <string key="candidateClassName">SPTableContent</string> - </object> - <object class="IBToOneOutletInfo" key="tableDataInstance"> - <string key="name">tableDataInstance</string> - <string key="candidateClassName">SPTableData</string> - </object> - <object class="IBToOneOutletInfo" key="tableDumpInstance"> - <string key="name">tableDumpInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableInfoScrollView"> - <string key="name">tableInfoScrollView</string> - <string key="candidateClassName">NSScrollView</string> - </object> - <object class="IBToOneOutletInfo" key="tableInfoSplitView"> - <string key="name">tableInfoSplitView</string> - <string key="candidateClassName">SPSplitView</string> - </object> - <object class="IBToOneOutletInfo" key="tableInfoTable"> - <string key="name">tableInfoTable</string> - <string key="candidateClassName">NSTableView</string> - </object> - <object class="IBToOneOutletInfo" key="tableRelationsInstance"> - <string key="name">tableRelationsInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableSourceInstance"> - <string key="name">tableSourceInstance</string> - <string key="candidateClassName">SPTableStructure</string> - </object> - <object class="IBToOneOutletInfo" key="tableTabView"> - <string key="name">tableTabView</string> - <string key="candidateClassName">NSTabView</string> - </object> - <object class="IBToOneOutletInfo" key="tableTriggersInstance"> - <string key="name">tableTriggersInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tablesListInstance"> - <string key="name">tablesListInstance</string> - <string key="candidateClassName">SPTablesList</string> - </object> - <object class="IBToOneOutletInfo" key="taskCancelButton"> - <string key="name">taskCancelButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="taskDescriptionText"> - <string key="name">taskDescriptionText</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="taskProgressIndicator"> - <string key="name">taskProgressIndicator</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="taskProgressLayer"> - <string key="name">taskProgressLayer</string> - <string key="candidateClassName">NSBox</string> - </object> - <object class="IBToOneOutletInfo" key="titleAccessoryView"> - <string key="name">titleAccessoryView</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="titleImageView"> - <string key="name">titleImageView</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="titleStringView"> - <string key="name">titleStringView</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPDatabaseDocument.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPDatabaseDocument</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="addConnectionToFavorites:">id</string> - <string key="addDatabase:">id</string> - <string key="alterDatabase:">id</string> - <string key="analyzeTable:">id</string> - <string key="backForwardInHistory:">id</string> - <string key="cancelTask:">id</string> - <string key="checkTable:">id</string> - <string key="checksumTable:">id</string> - <string key="chooseDatabase:">id</string> - <string key="chooseEncoding:">id</string> - <string key="closePanelSheet:">id</string> - <string key="closePasswordSheet:">id</string> - <string key="closeSheet:">id</string> - <string key="copyChecksumFromSheet:">id</string> - <string key="copyCreateTableSyntax:">id</string> - <string key="copyCreateTableSyntaxFromSheet:">id</string> - <string key="copyDatabase:">id</string> - <string key="export:">id</string> - <string key="exportSelectedTablesAs:">id</string> - <string key="flushTable:">id</string> - <string key="focusOnTableContentFilter:">id</string> - <string key="import:">id</string> - <string key="importFromClipboard:">id</string> - <string key="makeTableListFilterHaveFocus:">id</string> - <string key="openCurrentConnectionInNewWindow:">id</string> - <string key="openDatabaseInNewTab:">id</string> - <string key="optimizeTable:">id</string> - <string key="refreshTables:">id</string> - <string key="removeDatabase:">id</string> - <string key="renameDatabase:">id</string> - <string key="repairTable:">id</string> - <string key="saveConnectionSheet:">id</string> - <string key="saveCreateSyntax:">id</string> - <string key="setDatabases:">id</string> - <string key="showCreateTableSyntax:">id</string> - <string key="showFilterTable:">id</string> - <string key="showGotoDatabase:">id</string> - <string key="showMySQLHelp:">id</string> - <string key="showNavigator:">id</string> - <string key="showServerProcesses:">id</string> - <string key="showServerVariables:">id</string> - <string key="showUserManager:">id</string> - <string key="toggleNavigator:">id</string> - <string key="validateSaveConnectionAccessory:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="addConnectionToFavorites:"> - <string key="name">addConnectionToFavorites:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="addDatabase:"> - <string key="name">addDatabase:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="alterDatabase:"> - <string key="name">alterDatabase:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="analyzeTable:"> - <string key="name">analyzeTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="backForwardInHistory:"> - <string key="name">backForwardInHistory:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="cancelTask:"> - <string key="name">cancelTask:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="checkTable:"> - <string key="name">checkTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="checksumTable:"> - <string key="name">checksumTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="chooseDatabase:"> - <string key="name">chooseDatabase:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="chooseEncoding:"> - <string key="name">chooseEncoding:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closePanelSheet:"> - <string key="name">closePanelSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closePasswordSheet:"> - <string key="name">closePasswordSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closeSheet:"> - <string key="name">closeSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="copyChecksumFromSheet:"> - <string key="name">copyChecksumFromSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="copyCreateTableSyntax:"> - <string key="name">copyCreateTableSyntax:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="copyCreateTableSyntaxFromSheet:"> - <string key="name">copyCreateTableSyntaxFromSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="copyDatabase:"> - <string key="name">copyDatabase:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="export:"> - <string key="name">export:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="exportSelectedTablesAs:"> - <string key="name">exportSelectedTablesAs:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="flushTable:"> - <string key="name">flushTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="focusOnTableContentFilter:"> - <string key="name">focusOnTableContentFilter:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="import:"> - <string key="name">import:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="importFromClipboard:"> - <string key="name">importFromClipboard:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="makeTableListFilterHaveFocus:"> - <string key="name">makeTableListFilterHaveFocus:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="openCurrentConnectionInNewWindow:"> - <string key="name">openCurrentConnectionInNewWindow:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="openDatabaseInNewTab:"> - <string key="name">openDatabaseInNewTab:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="optimizeTable:"> - <string key="name">optimizeTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="refreshTables:"> - <string key="name">refreshTables:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="removeDatabase:"> - <string key="name">removeDatabase:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="renameDatabase:"> - <string key="name">renameDatabase:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="repairTable:"> - <string key="name">repairTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="saveConnectionSheet:"> - <string key="name">saveConnectionSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="saveCreateSyntax:"> - <string key="name">saveCreateSyntax:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="setDatabases:"> - <string key="name">setDatabases:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showCreateTableSyntax:"> - <string key="name">showCreateTableSyntax:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showFilterTable:"> - <string key="name">showFilterTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showGotoDatabase:"> - <string key="name">showGotoDatabase:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showMySQLHelp:"> - <string key="name">showMySQLHelp:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showNavigator:"> - <string key="name">showNavigator:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showServerProcesses:"> - <string key="name">showServerProcesses:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showServerVariables:"> - <string key="name">showServerVariables:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showUserManager:"> - <string key="name">showUserManager:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleNavigator:"> - <string key="name">toggleNavigator:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="validateSaveConnectionAccessory:"> - <string key="name">validateSaveConnectionAccessory:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPDatabaseDocument.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPDatabaseDocument</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="viewContent:">id</string> - <string key="viewQuery:">id</string> - <string key="viewRelations:">id</string> - <string key="viewStatus:">id</string> - <string key="viewStructure:">id</string> - <string key="viewTriggers:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="viewContent:"> - <string key="name">viewContent:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="viewQuery:"> - <string key="name">viewQuery:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="viewRelations:"> - <string key="name">viewRelations:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="viewStatus:"> - <string key="name">viewStatus:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="viewStructure:"> - <string key="name">viewStructure:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="viewTriggers:"> - <string key="name">viewTriggers:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPDatabaseViewController.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPDatabaseDocument</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="viewContent:">id</string> - <string key="viewQuery:">id</string> - <string key="viewRelations:">id</string> - <string key="viewStatus:">id</string> - <string key="viewStructure:">id</string> - <string key="viewTriggers:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="viewContent:"> - <string key="name">viewContent:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="viewQuery:"> - <string key="name">viewQuery:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="viewRelations:"> - <string key="name">viewRelations:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="viewStatus:"> - <string key="name">viewStatus:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="viewStructure:"> - <string key="name">viewStructure:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="viewTriggers:"> - <string key="name">viewTriggers:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPDatabaseViewController.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPDatabaseDocument</string> - <object class="NSMutableDictionary" key="actions"> - <string key="NS.key.0">printDocument:</string> - <string key="NS.object.0">id</string> - </object> - <object class="NSMutableDictionary" key="actionInfosByName"> - <string key="NS.key.0">printDocument:</string> - <object class="IBActionInfo" key="NS.object.0"> - <string key="name">printDocument:</string> - <string key="candidateClassName">id</string> - </object> - </object> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPPrintController.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPExportController</string> - <string key="superclassName">NSWindowController</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="cancelExport:">id</string> - <string key="changeExportCompressionFormat:">id</string> - <string key="changeExportOutputPath:">id</string> - <string key="closeSheet:">id</string> - <string key="export:">id</string> - <string key="exportCustomQueryResultAsFormat:">id</string> - <string key="refreshTableList:">id</string> - <string key="selectDeselectAllTables:">id</string> - <string key="switchInput:">id</string> - <string key="toggleAdvancedExportOptionsView:">id</string> - <string key="toggleCustomFilenameFormatView:">id</string> - <string key="toggleNewFilePerTable:">NSButton</string> - <string key="toggleSQLIncludeContent:">NSButton</string> - <string key="toggleSQLIncludeDropSyntax:">NSButton</string> - <string key="toggleSQLIncludeStructure:">NSButton</string> - <string key="toggleXMLOutputFormat:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="cancelExport:"> - <string key="name">cancelExport:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="changeExportCompressionFormat:"> - <string key="name">changeExportCompressionFormat:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="changeExportOutputPath:"> - <string key="name">changeExportOutputPath:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closeSheet:"> - <string key="name">closeSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="export:"> - <string key="name">export:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="exportCustomQueryResultAsFormat:"> - <string key="name">exportCustomQueryResultAsFormat:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="refreshTableList:"> - <string key="name">refreshTableList:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="selectDeselectAllTables:"> - <string key="name">selectDeselectAllTables:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="switchInput:"> - <string key="name">switchInput:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleAdvancedExportOptionsView:"> - <string key="name">toggleAdvancedExportOptionsView:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleCustomFilenameFormatView:"> - <string key="name">toggleCustomFilenameFormatView:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleNewFilePerTable:"> - <string key="name">toggleNewFilePerTable:</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBActionInfo" key="toggleSQLIncludeContent:"> - <string key="name">toggleSQLIncludeContent:</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBActionInfo" key="toggleSQLIncludeDropSyntax:"> - <string key="name">toggleSQLIncludeDropSyntax:</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBActionInfo" key="toggleSQLIncludeStructure:"> - <string key="name">toggleSQLIncludeStructure:</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBActionInfo" key="toggleXMLOutputFormat:"> - <string key="name">toggleXMLOutputFormat:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <dictionary class="NSMutableDictionary" key="outlets"> - <string key="customQueryInstance">SPCustomQuery</string> - <string key="errorsTextView">NSTextView</string> - <string key="errorsWindow">NSWindow</string> - <string key="exportAdvancedOptionsView">NSView</string> - <string key="exportAdvancedOptionsViewButton">NSButton</string> - <string key="exportAdvancedOptionsViewLabelButton">NSButton</string> - <string key="exportButton">NSButton</string> - <string key="exportCSVFieldsEscapedField">NSComboBox</string> - <string key="exportCSVFieldsTerminatedField">NSComboBox</string> - <string key="exportCSVFieldsWrappedField">NSComboBox</string> - <string key="exportCSVIncludeFieldNamesCheck">NSButton</string> - <string key="exportCSVLinesTerminatedField">NSComboBox</string> - <string key="exportCSVNULLValuesAsTextField">NSTextField</string> - <string key="exportCustomFilenameTokenField">NSTokenField</string> - <string key="exportCustomFilenameTokenPool">NSTokenField</string> - <string key="exportCustomFilenameView">NSView</string> - <string key="exportCustomFilenameViewButton">NSButton</string> - <string key="exportCustomFilenameViewLabelButton">NSButton</string> - <string key="exportDeselectAllTablesButton">NSButton</string> - <string key="exportDotForceLowerTableNamesCheck">NSButton</string> - <string key="exportFilePerTableCheck">NSButton</string> - <string key="exportFilenameDividerBox">NSBox</string> - <string key="exportFormatInfoText">NSTextField</string> - <string key="exportInputPopUpButton">NSPopUpButton</string> - <string key="exportOptionsTabBar">NSTabView</string> - <string key="exportOutputCompressionFormatPopupButton">NSPopUpButton</string> - <string key="exportPathField">NSTextField</string> - <string key="exportProcessLowMemoryButton">NSButton</string> - <string key="exportProgressIndicator">NSProgressIndicator</string> - <string key="exportProgressText">NSTextField</string> - <string key="exportProgressTitle">NSTextField</string> - <string key="exportProgressWindow">NSWindow</string> - <string key="exportRefreshTablesButton">NSButton</string> - <string key="exportSQLBLOBFieldsAsHexCheck">NSButton</string> - <string key="exportSQLIncludeAutoIncrementValueButton">NSButton</string> - <string key="exportSQLIncludeContentCheck">NSButton</string> - <string key="exportSQLIncludeDropSyntaxCheck">NSButton</string> - <string key="exportSQLIncludeErrorsCheck">NSButton</string> - <string key="exportSQLIncludeStructureCheck">NSButton</string> - <string key="exportSQLInsertDividerPopUpButton">NSPopUpButton</string> - <string key="exportSQLInsertNValueTextField">NSTextField</string> - <string key="exportSelectAllTablesButton">NSButton</string> - <string key="exportTableList">NSTableView</string> - <string key="exportTableListButtonBar">NSBox</string> - <string key="exportTablelistScrollView">NSScrollView</string> - <string key="exportTypeTabBar">NSTabView</string> - <string key="exportUseUTF8BOMButton">NSButton</string> - <string key="exportXMLFormatPopUpButton">NSPopUpButton</string> - <string key="exportXMLIncludeContent">NSButton</string> - <string key="exportXMLIncludeStructure">NSButton</string> - <string key="exportXMLNULLValuesAsTextField">NSTextField</string> - <string key="exporterView">NSView</string> - <string key="tableContentInstance">SPTableContent</string> - <string key="tableDataInstance">SPTableData</string> - <string key="tableDocumentInstance">SPDatabaseDocument</string> - <string key="tablesListInstance">SPTablesList</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName"> - <object class="IBToOneOutletInfo" key="customQueryInstance"> - <string key="name">customQueryInstance</string> - <string key="candidateClassName">SPCustomQuery</string> - </object> - <object class="IBToOneOutletInfo" key="errorsTextView"> - <string key="name">errorsTextView</string> - <string key="candidateClassName">NSTextView</string> - </object> - <object class="IBToOneOutletInfo" key="errorsWindow"> - <string key="name">errorsWindow</string> - <string key="candidateClassName">NSWindow</string> - </object> - <object class="IBToOneOutletInfo" key="exportAdvancedOptionsView"> - <string key="name">exportAdvancedOptionsView</string> - <string key="candidateClassName">NSView</string> - </object> - <object class="IBToOneOutletInfo" key="exportAdvancedOptionsViewButton"> - <string key="name">exportAdvancedOptionsViewButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportAdvancedOptionsViewLabelButton"> - <string key="name">exportAdvancedOptionsViewLabelButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportButton"> - <string key="name">exportButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportCSVFieldsEscapedField"> - <string key="name">exportCSVFieldsEscapedField</string> - <string key="candidateClassName">NSComboBox</string> - </object> - <object class="IBToOneOutletInfo" key="exportCSVFieldsTerminatedField"> - <string key="name">exportCSVFieldsTerminatedField</string> - <string key="candidateClassName">NSComboBox</string> - </object> - <object class="IBToOneOutletInfo" key="exportCSVFieldsWrappedField"> - <string key="name">exportCSVFieldsWrappedField</string> - <string key="candidateClassName">NSComboBox</string> - </object> - <object class="IBToOneOutletInfo" key="exportCSVIncludeFieldNamesCheck"> - <string key="name">exportCSVIncludeFieldNamesCheck</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportCSVLinesTerminatedField"> - <string key="name">exportCSVLinesTerminatedField</string> - <string key="candidateClassName">NSComboBox</string> - </object> - <object class="IBToOneOutletInfo" key="exportCSVNULLValuesAsTextField"> - <string key="name">exportCSVNULLValuesAsTextField</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="exportCustomFilenameTokenField"> - <string key="name">exportCustomFilenameTokenField</string> - <string key="candidateClassName">NSTokenField</string> - </object> - <object class="IBToOneOutletInfo" key="exportCustomFilenameTokenPool"> - <string key="name">exportCustomFilenameTokenPool</string> - <string key="candidateClassName">NSTokenField</string> - </object> - <object class="IBToOneOutletInfo" key="exportCustomFilenameView"> - <string key="name">exportCustomFilenameView</string> - <string key="candidateClassName">NSView</string> - </object> - <object class="IBToOneOutletInfo" key="exportCustomFilenameViewButton"> - <string key="name">exportCustomFilenameViewButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportCustomFilenameViewLabelButton"> - <string key="name">exportCustomFilenameViewLabelButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportDeselectAllTablesButton"> - <string key="name">exportDeselectAllTablesButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportDotForceLowerTableNamesCheck"> - <string key="name">exportDotForceLowerTableNamesCheck</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportFilePerTableCheck"> - <string key="name">exportFilePerTableCheck</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportFilenameDividerBox"> - <string key="name">exportFilenameDividerBox</string> - <string key="candidateClassName">NSBox</string> - </object> - <object class="IBToOneOutletInfo" key="exportFormatInfoText"> - <string key="name">exportFormatInfoText</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="exportInputPopUpButton"> - <string key="name">exportInputPopUpButton</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportOptionsTabBar"> - <string key="name">exportOptionsTabBar</string> - <string key="candidateClassName">NSTabView</string> - </object> - <object class="IBToOneOutletInfo" key="exportOutputCompressionFormatPopupButton"> - <string key="name">exportOutputCompressionFormatPopupButton</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportPathField"> - <string key="name">exportPathField</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="exportProcessLowMemoryButton"> - <string key="name">exportProcessLowMemoryButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportProgressIndicator"> - <string key="name">exportProgressIndicator</string> - <string key="candidateClassName">NSProgressIndicator</string> - </object> - <object class="IBToOneOutletInfo" key="exportProgressText"> - <string key="name">exportProgressText</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="exportProgressTitle"> - <string key="name">exportProgressTitle</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="exportProgressWindow"> - <string key="name">exportProgressWindow</string> - <string key="candidateClassName">NSWindow</string> - </object> - <object class="IBToOneOutletInfo" key="exportRefreshTablesButton"> - <string key="name">exportRefreshTablesButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportSQLBLOBFieldsAsHexCheck"> - <string key="name">exportSQLBLOBFieldsAsHexCheck</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportSQLIncludeAutoIncrementValueButton"> - <string key="name">exportSQLIncludeAutoIncrementValueButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportSQLIncludeContentCheck"> - <string key="name">exportSQLIncludeContentCheck</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportSQLIncludeDropSyntaxCheck"> - <string key="name">exportSQLIncludeDropSyntaxCheck</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportSQLIncludeErrorsCheck"> - <string key="name">exportSQLIncludeErrorsCheck</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportSQLIncludeStructureCheck"> - <string key="name">exportSQLIncludeStructureCheck</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportSQLInsertDividerPopUpButton"> - <string key="name">exportSQLInsertDividerPopUpButton</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportSQLInsertNValueTextField"> - <string key="name">exportSQLInsertNValueTextField</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="exportSelectAllTablesButton"> - <string key="name">exportSelectAllTablesButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportTableList"> - <string key="name">exportTableList</string> - <string key="candidateClassName">NSTableView</string> - </object> - <object class="IBToOneOutletInfo" key="exportTableListButtonBar"> - <string key="name">exportTableListButtonBar</string> - <string key="candidateClassName">NSBox</string> - </object> - <object class="IBToOneOutletInfo" key="exportTablelistScrollView"> - <string key="name">exportTablelistScrollView</string> - <string key="candidateClassName">NSScrollView</string> - </object> - <object class="IBToOneOutletInfo" key="exportTypeTabBar"> - <string key="name">exportTypeTabBar</string> - <string key="candidateClassName">NSTabView</string> - </object> - <object class="IBToOneOutletInfo" key="exportUseUTF8BOMButton"> - <string key="name">exportUseUTF8BOMButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportXMLFormatPopUpButton"> - <string key="name">exportXMLFormatPopUpButton</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportXMLIncludeContent"> - <string key="name">exportXMLIncludeContent</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportXMLIncludeStructure"> - <string key="name">exportXMLIncludeStructure</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="exportXMLNULLValuesAsTextField"> - <string key="name">exportXMLNULLValuesAsTextField</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="exporterView"> - <string key="name">exporterView</string> - <string key="candidateClassName">NSView</string> - </object> - <object class="IBToOneOutletInfo" key="tableContentInstance"> - <string key="name">tableContentInstance</string> - <string key="candidateClassName">SPTableContent</string> - </object> - <object class="IBToOneOutletInfo" key="tableDataInstance"> - <string key="name">tableDataInstance</string> - <string key="candidateClassName">SPTableData</string> - </object> - <object class="IBToOneOutletInfo" key="tableDocumentInstance"> - <string key="name">tableDocumentInstance</string> - <string key="candidateClassName">SPDatabaseDocument</string> - </object> - <object class="IBToOneOutletInfo" key="tablesListInstance"> - <string key="name">tablesListInstance</string> - <string key="candidateClassName">SPTablesList</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPExportController.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPExportController</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="cancelExport:">id</string> - <string key="changeExportCompressionFormat:">id</string> - <string key="changeExportOutputPath:">id</string> - <string key="closeSheet:">id</string> - <string key="export:">id</string> - <string key="exportCustomQueryResultAsFormat:">id</string> - <string key="refreshTableList:">id</string> - <string key="selectDeselectAllTables:">id</string> - <string key="switchInput:">id</string> - <string key="toggleAdvancedExportOptionsView:">id</string> - <string key="toggleCustomFilenameFormatView:">id</string> - <string key="toggleNewFilePerTable:">NSButton</string> - <string key="toggleSQLIncludeContent:">NSButton</string> - <string key="toggleSQLIncludeDropSyntax:">NSButton</string> - <string key="toggleSQLIncludeStructure:">NSButton</string> - <string key="toggleXMLOutputFormat:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="cancelExport:"> - <string key="name">cancelExport:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="changeExportCompressionFormat:"> - <string key="name">changeExportCompressionFormat:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="changeExportOutputPath:"> - <string key="name">changeExportOutputPath:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closeSheet:"> - <string key="name">closeSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="export:"> - <string key="name">export:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="exportCustomQueryResultAsFormat:"> - <string key="name">exportCustomQueryResultAsFormat:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="refreshTableList:"> - <string key="name">refreshTableList:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="selectDeselectAllTables:"> - <string key="name">selectDeselectAllTables:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="switchInput:"> - <string key="name">switchInput:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleAdvancedExportOptionsView:"> - <string key="name">toggleAdvancedExportOptionsView:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleCustomFilenameFormatView:"> - <string key="name">toggleCustomFilenameFormatView:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleNewFilePerTable:"> - <string key="name">toggleNewFilePerTable:</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBActionInfo" key="toggleSQLIncludeContent:"> - <string key="name">toggleSQLIncludeContent:</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBActionInfo" key="toggleSQLIncludeDropSyntax:"> - <string key="name">toggleSQLIncludeDropSyntax:</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBActionInfo" key="toggleSQLIncludeStructure:"> - <string key="name">toggleSQLIncludeStructure:</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBActionInfo" key="toggleXMLOutputFormat:"> - <string key="name">toggleXMLOutputFormat:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPExportController.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPExportController</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="exportCurrentSettings:">id</string> - <string key="importCurrentSettings:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="exportCurrentSettings:"> - <string key="name">exportCurrentSettings:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="importCurrentSettings:"> - <string key="name">importCurrentSettings:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPExportSettingsPersistence.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPExportController</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="exportCurrentSettings:">id</string> - <string key="importCurrentSettings:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="exportCurrentSettings:"> - <string key="name">exportCurrentSettings:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="importCurrentSettings:"> - <string key="name">importCurrentSettings:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPExportSettingsPersistence.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPExtendedTableInfo</string> - <string key="superclassName">NSObject</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="reloadTable:">id</string> - <string key="resetAutoIncrement:">id</string> - <string key="tableRowAutoIncrementWasEdited:">id</string> - <string key="updateTableCollation:">id</string> - <string key="updateTableEncoding:">id</string> - <string key="updateTableType:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="reloadTable:"> - <string key="name">reloadTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="resetAutoIncrement:"> - <string key="name">resetAutoIncrement:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="tableRowAutoIncrementWasEdited:"> - <string key="name">tableRowAutoIncrementWasEdited:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="updateTableCollation:"> - <string key="name">updateTableCollation:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="updateTableEncoding:"> - <string key="name">updateTableEncoding:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="updateTableType:"> - <string key="name">updateTableType:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <dictionary class="NSMutableDictionary" key="outlets"> - <string key="databaseDataInstance">SPDatabaseData</string> - <string key="resetAutoIncrementResetButton">id</string> - <string key="tableCollationPopUpButton">NSPopUpButton</string> - <string key="tableCommentsTextView">NSTextView</string> - <string key="tableCreateSyntaxTextView">NSTextView</string> - <string key="tableCreatedAt">NSTextField</string> - <string key="tableDataInstance">SPTableData</string> - <string key="tableDataSize">NSTextField</string> - <string key="tableDocumentInstance">id</string> - <string key="tableEncodingPopUpButton">NSPopUpButton</string> - <string key="tableIndexSize">NSTextField</string> - <string key="tableMaxDataSize">NSTextField</string> - <string key="tableRowAutoIncrement">NSTextField</string> - <string key="tableRowAvgLength">NSTextField</string> - <string key="tableRowFormat">NSTextField</string> - <string key="tableRowNumber">NSTextField</string> - <string key="tableSizeFree">NSTextField</string> - <string key="tableSourceInstance">id</string> - <string key="tableTypePopUpButton">NSPopUpButton</string> - <string key="tableUpdatedAt">NSTextField</string> - <string key="tablesListInstance">SPTablesList</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName"> - <object class="IBToOneOutletInfo" key="databaseDataInstance"> - <string key="name">databaseDataInstance</string> - <string key="candidateClassName">SPDatabaseData</string> - </object> - <object class="IBToOneOutletInfo" key="resetAutoIncrementResetButton"> - <string key="name">resetAutoIncrementResetButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableCollationPopUpButton"> - <string key="name">tableCollationPopUpButton</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="tableCommentsTextView"> - <string key="name">tableCommentsTextView</string> - <string key="candidateClassName">NSTextView</string> - </object> - <object class="IBToOneOutletInfo" key="tableCreateSyntaxTextView"> - <string key="name">tableCreateSyntaxTextView</string> - <string key="candidateClassName">NSTextView</string> - </object> - <object class="IBToOneOutletInfo" key="tableCreatedAt"> - <string key="name">tableCreatedAt</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="tableDataInstance"> - <string key="name">tableDataInstance</string> - <string key="candidateClassName">SPTableData</string> - </object> - <object class="IBToOneOutletInfo" key="tableDataSize"> - <string key="name">tableDataSize</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="tableDocumentInstance"> - <string key="name">tableDocumentInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableEncodingPopUpButton"> - <string key="name">tableEncodingPopUpButton</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="tableIndexSize"> - <string key="name">tableIndexSize</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="tableMaxDataSize"> - <string key="name">tableMaxDataSize</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="tableRowAutoIncrement"> - <string key="name">tableRowAutoIncrement</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="tableRowAvgLength"> - <string key="name">tableRowAvgLength</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="tableRowFormat"> - <string key="name">tableRowFormat</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="tableRowNumber"> - <string key="name">tableRowNumber</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="tableSizeFree"> - <string key="name">tableSizeFree</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="tableSourceInstance"> - <string key="name">tableSourceInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableTypePopUpButton"> - <string key="name">tableTypePopUpButton</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="tableUpdatedAt"> - <string key="name">tableUpdatedAt</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="tablesListInstance"> - <string key="name">tablesListInstance</string> - <string key="candidateClassName">SPTablesList</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPExtendedTableInfo.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPExtendedTableInfo</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="reloadTable:">id</string> - <string key="resetAutoIncrement:">id</string> - <string key="tableRowAutoIncrementWasEdited:">id</string> - <string key="updateTableCollation:">id</string> - <string key="updateTableEncoding:">id</string> - <string key="updateTableType:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="reloadTable:"> - <string key="name">reloadTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="resetAutoIncrement:"> - <string key="name">resetAutoIncrement:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="tableRowAutoIncrementWasEdited:"> - <string key="name">tableRowAutoIncrementWasEdited:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="updateTableCollation:"> - <string key="name">updateTableCollation:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="updateTableEncoding:"> - <string key="name">updateTableEncoding:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="updateTableType:"> - <string key="name">updateTableType:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPExtendedTableInfo.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPHistoryController</string> - <string key="superclassName">NSObject</string> - <object class="NSMutableDictionary" key="actions"> - <string key="NS.key.0">historyControlClicked:</string> - <string key="NS.object.0">NSSegmentedControl</string> - </object> - <object class="NSMutableDictionary" key="actionInfosByName"> - <string key="NS.key.0">historyControlClicked:</string> - <object class="IBActionInfo" key="NS.object.0"> - <string key="name">historyControlClicked:</string> - <string key="candidateClassName">NSSegmentedControl</string> - </object> - </object> - <dictionary class="NSMutableDictionary" key="outlets"> - <string key="historyControl">NSSegmentedControl</string> - <string key="theDocument">SPDatabaseDocument</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName"> - <object class="IBToOneOutletInfo" key="historyControl"> - <string key="name">historyControl</string> - <string key="candidateClassName">NSSegmentedControl</string> - </object> - <object class="IBToOneOutletInfo" key="theDocument"> - <string key="name">theDocument</string> - <string key="candidateClassName">SPDatabaseDocument</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPHistoryController.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPHistoryController</string> - <object class="NSMutableDictionary" key="actions"> - <string key="NS.key.0">historyControlClicked:</string> - <string key="NS.object.0">NSSegmentedControl</string> - </object> - <object class="NSMutableDictionary" key="actionInfosByName"> - <string key="NS.key.0">historyControlClicked:</string> - <object class="IBActionInfo" key="NS.object.0"> - <string key="name">historyControlClicked:</string> - <string key="candidateClassName">NSSegmentedControl</string> - </object> - </object> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPHistoryController.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPIdMenu</string> - <string key="superclassName">NSMenu</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPIdMenu.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPIndexesController</string> - <string key="superclassName">NSWindowController</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="addIndex:">id</string> - <string key="addIndexedField:">id</string> - <string key="chooseIndexType:">id</string> - <string key="closeSheet:">id</string> - <string key="removeIndex:">id</string> - <string key="removeIndexedField:">id</string> - <string key="toggleAdvancedIndexOptionsView:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="addIndex:"> - <string key="name">addIndex:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="addIndexedField:"> - <string key="name">addIndexedField:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="chooseIndexType:"> - <string key="name">chooseIndexType:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closeSheet:"> - <string key="name">closeSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="removeIndex:"> - <string key="name">removeIndex:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="removeIndexedField:"> - <string key="name">removeIndexedField:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleAdvancedIndexOptionsView:"> - <string key="name">toggleAdvancedIndexOptionsView:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <dictionary class="NSMutableDictionary" key="outlets"> - <string key="addIndexButton">NSButton</string> - <string key="addIndexedColumnButton">NSButton</string> - <string key="anchoredButtonBar">NSBox</string> - <string key="confirmAddIndexButton">NSButton</string> - <string key="dbDocument">SPDatabaseDocument</string> - <string key="indexAdvancedOptionsView">NSView</string> - <string key="indexAdvancedOptionsViewButton">NSButton</string> - <string key="indexAdvancedOptionsViewLabelButton">NSButton</string> - <string key="indexKeyBlockSizeTextField">NSTextField</string> - <string key="indexNameLabel">NSTextField</string> - <string key="indexNameTextField">NSTextField</string> - <string key="indexSizeTableColumn">NSTableColumn</string> - <string key="indexStorageTypePopUpButton">NSPopUpButton</string> - <string key="indexTypeLabel">NSTextField</string> - <string key="indexTypePopUpButton">NSPopUpButton</string> - <string key="indexedColumnsScrollView">NSScrollView</string> - <string key="indexedColumnsTableView">NSTableView</string> - <string key="indexesTableView">SPTableView</string> - <string key="removeIndexButton">NSButton</string> - <string key="removeIndexedColumnButton">NSButton</string> - <string key="tableData">SPTableData</string> - <string key="tableStructure">SPTableStructure</string> - <string key="tablesList">SPTablesList</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName"> - <object class="IBToOneOutletInfo" key="addIndexButton"> - <string key="name">addIndexButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="addIndexedColumnButton"> - <string key="name">addIndexedColumnButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="anchoredButtonBar"> - <string key="name">anchoredButtonBar</string> - <string key="candidateClassName">NSBox</string> - </object> - <object class="IBToOneOutletInfo" key="confirmAddIndexButton"> - <string key="name">confirmAddIndexButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="dbDocument"> - <string key="name">dbDocument</string> - <string key="candidateClassName">SPDatabaseDocument</string> - </object> - <object class="IBToOneOutletInfo" key="indexAdvancedOptionsView"> - <string key="name">indexAdvancedOptionsView</string> - <string key="candidateClassName">NSView</string> - </object> - <object class="IBToOneOutletInfo" key="indexAdvancedOptionsViewButton"> - <string key="name">indexAdvancedOptionsViewButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="indexAdvancedOptionsViewLabelButton"> - <string key="name">indexAdvancedOptionsViewLabelButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="indexKeyBlockSizeTextField"> - <string key="name">indexKeyBlockSizeTextField</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="indexNameLabel"> - <string key="name">indexNameLabel</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="indexNameTextField"> - <string key="name">indexNameTextField</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="indexSizeTableColumn"> - <string key="name">indexSizeTableColumn</string> - <string key="candidateClassName">NSTableColumn</string> - </object> - <object class="IBToOneOutletInfo" key="indexStorageTypePopUpButton"> - <string key="name">indexStorageTypePopUpButton</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="indexTypeLabel"> - <string key="name">indexTypeLabel</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="indexTypePopUpButton"> - <string key="name">indexTypePopUpButton</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="indexedColumnsScrollView"> - <string key="name">indexedColumnsScrollView</string> - <string key="candidateClassName">NSScrollView</string> - </object> - <object class="IBToOneOutletInfo" key="indexedColumnsTableView"> - <string key="name">indexedColumnsTableView</string> - <string key="candidateClassName">NSTableView</string> - </object> - <object class="IBToOneOutletInfo" key="indexesTableView"> - <string key="name">indexesTableView</string> - <string key="candidateClassName">SPTableView</string> - </object> - <object class="IBToOneOutletInfo" key="removeIndexButton"> - <string key="name">removeIndexButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="removeIndexedColumnButton"> - <string key="name">removeIndexedColumnButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="tableData"> - <string key="name">tableData</string> - <string key="candidateClassName">SPTableData</string> - </object> - <object class="IBToOneOutletInfo" key="tableStructure"> - <string key="name">tableStructure</string> - <string key="candidateClassName">SPTableStructure</string> - </object> - <object class="IBToOneOutletInfo" key="tablesList"> - <string key="name">tablesList</string> - <string key="candidateClassName">SPTablesList</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPIndexesController.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPIndexesController</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="addIndex:">id</string> - <string key="addIndexedField:">id</string> - <string key="chooseIndexType:">id</string> - <string key="closeSheet:">id</string> - <string key="removeIndex:">id</string> - <string key="removeIndexedField:">id</string> - <string key="toggleAdvancedIndexOptionsView:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="addIndex:"> - <string key="name">addIndex:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="addIndexedField:"> - <string key="name">addIndexedField:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="chooseIndexType:"> - <string key="name">chooseIndexType:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closeSheet:"> - <string key="name">closeSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="removeIndex:"> - <string key="name">removeIndex:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="removeIndexedField:"> - <string key="name">removeIndexedField:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleAdvancedIndexOptionsView:"> - <string key="name">toggleAdvancedIndexOptionsView:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPIndexesController.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPPopUpButtonCell</string> - <string key="superclassName">NSPopUpButtonCell</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPPopUpButtonCell.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPProcessListController</string> - <string key="superclassName">NSWindowController</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="closeSheet:">id</string> - <string key="copy:">id</string> - <string key="killProcessConnection:">id</string> - <string key="killProcessQuery:">id</string> - <string key="refreshProcessList:">id</string> - <string key="saveServerProcesses:">id</string> - <string key="setAutoRefreshInterval:">id</string> - <string key="setCustomAutoRefreshInterval:">id</string> - <string key="toggeleShowFullProcessList:">NSMenuItem</string> - <string key="toggleProcessListAutoRefresh:">NSButton</string> - <string key="toggleShowProcessID:">NSMenuItem</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="closeSheet:"> - <string key="name">closeSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="copy:"> - <string key="name">copy:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="killProcessConnection:"> - <string key="name">killProcessConnection:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="killProcessQuery:"> - <string key="name">killProcessQuery:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="refreshProcessList:"> - <string key="name">refreshProcessList:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="saveServerProcesses:"> - <string key="name">saveServerProcesses:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="setAutoRefreshInterval:"> - <string key="name">setAutoRefreshInterval:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="setCustomAutoRefreshInterval:"> - <string key="name">setCustomAutoRefreshInterval:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggeleShowFullProcessList:"> - <string key="name">toggeleShowFullProcessList:</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBActionInfo" key="toggleProcessListAutoRefresh:"> - <string key="name">toggleProcessListAutoRefresh:</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBActionInfo" key="toggleShowProcessID:"> - <string key="name">toggleShowProcessID:</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - </dictionary> - <dictionary class="NSMutableDictionary" key="outlets"> - <string key="autoRefreshButton">NSButton</string> - <string key="autoRefreshIntervalMenuItem">NSMenuItem</string> - <string key="customIntervalButton">NSButton</string> - <string key="customIntervalTextField">NSTextField</string> - <string key="customIntervalWindow">NSWindow</string> - <string key="filterProcessesSearchField">NSSearchField</string> - <string key="processListTableView">NSTableView</string> - <string key="processesCountTextField">NSTextField</string> - <string key="refreshProcessesButton">NSButton</string> - <string key="refreshProgressIndicator">NSProgressIndicator</string> - <string key="saveProcessesButton">NSButton</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName"> - <object class="IBToOneOutletInfo" key="autoRefreshButton"> - <string key="name">autoRefreshButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="autoRefreshIntervalMenuItem"> - <string key="name">autoRefreshIntervalMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="customIntervalButton"> - <string key="name">customIntervalButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="customIntervalTextField"> - <string key="name">customIntervalTextField</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="customIntervalWindow"> - <string key="name">customIntervalWindow</string> - <string key="candidateClassName">NSWindow</string> - </object> - <object class="IBToOneOutletInfo" key="filterProcessesSearchField"> - <string key="name">filterProcessesSearchField</string> - <string key="candidateClassName">NSSearchField</string> - </object> - <object class="IBToOneOutletInfo" key="processListTableView"> - <string key="name">processListTableView</string> - <string key="candidateClassName">NSTableView</string> - </object> - <object class="IBToOneOutletInfo" key="processesCountTextField"> - <string key="name">processesCountTextField</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="refreshProcessesButton"> - <string key="name">refreshProcessesButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="refreshProgressIndicator"> - <string key="name">refreshProgressIndicator</string> - <string key="candidateClassName">NSProgressIndicator</string> - </object> - <object class="IBToOneOutletInfo" key="saveProcessesButton"> - <string key="name">saveProcessesButton</string> - <string key="candidateClassName">NSButton</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPProcessListController.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPProcessListController</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="closeSheet:">id</string> - <string key="copy:">id</string> - <string key="killProcessConnection:">id</string> - <string key="killProcessQuery:">id</string> - <string key="refreshProcessList:">id</string> - <string key="saveServerProcesses:">id</string> - <string key="setAutoRefreshInterval:">id</string> - <string key="setCustomAutoRefreshInterval:">id</string> - <string key="toggeleShowFullProcessList:">NSMenuItem</string> - <string key="toggleProcessListAutoRefresh:">NSButton</string> - <string key="toggleShowProcessID:">NSMenuItem</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="closeSheet:"> - <string key="name">closeSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="copy:"> - <string key="name">copy:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="killProcessConnection:"> - <string key="name">killProcessConnection:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="killProcessQuery:"> - <string key="name">killProcessQuery:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="refreshProcessList:"> - <string key="name">refreshProcessList:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="saveServerProcesses:"> - <string key="name">saveServerProcesses:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="setAutoRefreshInterval:"> - <string key="name">setAutoRefreshInterval:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="setCustomAutoRefreshInterval:"> - <string key="name">setCustomAutoRefreshInterval:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggeleShowFullProcessList:"> - <string key="name">toggeleShowFullProcessList:</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBActionInfo" key="toggleProcessListAutoRefresh:"> - <string key="name">toggleProcessListAutoRefresh:</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBActionInfo" key="toggleShowProcessID:"> - <string key="name">toggleShowProcessID:</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPProcessListController.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPQueryController</string> - <string key="superclassName">NSWindowController</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="clearConsole:">id</string> - <string key="copy:">id</string> - <string key="saveConsoleAs:">id</string> - <string key="toggleShowConnections:">id</string> - <string key="toggleShowDatabases:">id</string> - <string key="toggleShowHelpStatements:">id</string> - <string key="toggleShowSelectShowStatements:">id</string> - <string key="toggleShowTimeStamps:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="clearConsole:"> - <string key="name">clearConsole:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="copy:"> - <string key="name">copy:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="saveConsoleAs:"> - <string key="name">saveConsoleAs:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleShowConnections:"> - <string key="name">toggleShowConnections:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleShowDatabases:"> - <string key="name">toggleShowDatabases:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleShowHelpStatements:"> - <string key="name">toggleShowHelpStatements:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleShowSelectShowStatements:"> - <string key="name">toggleShowSelectShowStatements:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleShowTimeStamps:"> - <string key="name">toggleShowTimeStamps:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <dictionary class="NSMutableDictionary" key="outlets"> - <string key="clearConsoleButton">NSButton</string> - <string key="consoleSearchField">NSSearchField</string> - <string key="consoleTableView">NSTableView</string> - <string key="includeConnectionButton">NSButton</string> - <string key="includeDatabaseButton">NSButton</string> - <string key="includeTimeStampsButton">NSButton</string> - <string key="loggingDisabledTextField">NSTextField</string> - <string key="progressIndicator">NSProgressIndicator</string> - <string key="saveConsoleButton">NSButton</string> - <string key="saveLogView">NSView</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName"> - <object class="IBToOneOutletInfo" key="clearConsoleButton"> - <string key="name">clearConsoleButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="consoleSearchField"> - <string key="name">consoleSearchField</string> - <string key="candidateClassName">NSSearchField</string> - </object> - <object class="IBToOneOutletInfo" key="consoleTableView"> - <string key="name">consoleTableView</string> - <string key="candidateClassName">NSTableView</string> - </object> - <object class="IBToOneOutletInfo" key="includeConnectionButton"> - <string key="name">includeConnectionButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="includeDatabaseButton"> - <string key="name">includeDatabaseButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="includeTimeStampsButton"> - <string key="name">includeTimeStampsButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="loggingDisabledTextField"> - <string key="name">loggingDisabledTextField</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="progressIndicator"> - <string key="name">progressIndicator</string> - <string key="candidateClassName">NSProgressIndicator</string> - </object> - <object class="IBToOneOutletInfo" key="saveConsoleButton"> - <string key="name">saveConsoleButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="saveLogView"> - <string key="name">saveLogView</string> - <string key="candidateClassName">NSView</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPQueryController.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPQueryController</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="clearConsole:">id</string> - <string key="saveConsoleAs:">id</string> - <string key="toggleShowConnections:">id</string> - <string key="toggleShowDatabases:">id</string> - <string key="toggleShowHelpStatements:">id</string> - <string key="toggleShowSelectShowStatements:">id</string> - <string key="toggleShowTimeStamps:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="clearConsole:"> - <string key="name">clearConsole:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="saveConsoleAs:"> - <string key="name">saveConsoleAs:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleShowConnections:"> - <string key="name">toggleShowConnections:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleShowDatabases:"> - <string key="name">toggleShowDatabases:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleShowHelpStatements:"> - <string key="name">toggleShowHelpStatements:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleShowSelectShowStatements:"> - <string key="name">toggleShowSelectShowStatements:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleShowTimeStamps:"> - <string key="name">toggleShowTimeStamps:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPQueryController.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPServerVariablesController</string> - <string key="superclassName">NSWindowController</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="closeSheet:">id</string> - <string key="copy:">id</string> - <string key="copyServerVariableName:">id</string> - <string key="copyServerVariableValue:">id</string> - <string key="saveServerVariables:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="closeSheet:"> - <string key="name">closeSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="copy:"> - <string key="name">copy:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="copyServerVariableName:"> - <string key="name">copyServerVariableName:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="copyServerVariableValue:"> - <string key="name">copyServerVariableValue:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="saveServerVariables:"> - <string key="name">saveServerVariables:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <dictionary class="NSMutableDictionary" key="outlets"> - <string key="filterVariablesSearchField">NSSearchField</string> - <string key="saveVariablesButton">NSButton</string> - <string key="variablesCountTextField">NSTextField</string> - <string key="variablesTableView">NSTableView</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName"> - <object class="IBToOneOutletInfo" key="filterVariablesSearchField"> - <string key="name">filterVariablesSearchField</string> - <string key="candidateClassName">NSSearchField</string> - </object> - <object class="IBToOneOutletInfo" key="saveVariablesButton"> - <string key="name">saveVariablesButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="variablesCountTextField"> - <string key="name">variablesCountTextField</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="variablesTableView"> - <string key="name">variablesTableView</string> - <string key="candidateClassName">NSTableView</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPServerVariablesController.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPServerVariablesController</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="closeSheet:">id</string> - <string key="copy:">id</string> - <string key="copyServerVariableName:">id</string> - <string key="copyServerVariableValue:">id</string> - <string key="saveServerVariables:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="closeSheet:"> - <string key="name">closeSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="copy:"> - <string key="name">copy:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="copyServerVariableName:"> - <string key="name">copyServerVariableName:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="copyServerVariableValue:"> - <string key="name">copyServerVariableValue:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="saveServerVariables:"> - <string key="name">saveServerVariables:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPServerVariablesController.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPSplitView</string> - <string key="superclassName">NSSplitView</string> - <object class="NSMutableDictionary" key="actions"> - <string key="NS.key.0">toggleCollapse:</string> - <string key="NS.object.0">id</string> - </object> - <object class="NSMutableDictionary" key="actionInfosByName"> - <string key="NS.key.0">toggleCollapse:</string> - <object class="IBActionInfo" key="NS.object.0"> - <string key="name">toggleCollapse:</string> - <string key="candidateClassName">id</string> - </object> - </object> - <dictionary class="NSMutableDictionary" key="outlets"> - <string key="additionalDragHandleView">NSView</string> - <string key="collapseToggleButton">NSButton</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName"> - <object class="IBToOneOutletInfo" key="additionalDragHandleView"> - <string key="name">additionalDragHandleView</string> - <string key="candidateClassName">NSView</string> - </object> - <object class="IBToOneOutletInfo" key="collapseToggleButton"> - <string key="name">collapseToggleButton</string> - <string key="candidateClassName">NSButton</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPSplitView.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPSplitView</string> - <object class="NSMutableDictionary" key="actions"> - <string key="NS.key.0">toggleCollapse:</string> - <string key="NS.object.0">id</string> - </object> - <object class="NSMutableDictionary" key="actionInfosByName"> - <string key="NS.key.0">toggleCollapse:</string> - <object class="IBActionInfo" key="NS.object.0"> - <string key="name">toggleCollapse:</string> - <string key="candidateClassName">id</string> - </object> - </object> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPSplitView.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPTableContent</string> - <string key="superclassName">NSObject</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="addRow:">id</string> - <string key="closeSheet:">id</string> - <string key="duplicateRow:">id</string> - <string key="filterTable:">id</string> - <string key="navigatePaginationFromButton:">id</string> - <string key="reloadTable:">id</string> - <string key="removeRow:">id</string> - <string key="setCompareTypes:">id</string> - <string key="setDefaultOperator:">id</string> - <string key="showDefaultOperaterHelp:">id</string> - <string key="showFilterTable:">id</string> - <string key="tableFilterClear:">id</string> - <string key="toggleDistinctSelect:">id</string> - <string key="toggleFilterField:">id</string> - <string key="toggleLookAllFieldsMode:">id</string> - <string key="toggleNegateClause:">id</string> - <string key="togglePagination:">NSButton</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="addRow:"> - <string key="name">addRow:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closeSheet:"> - <string key="name">closeSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="duplicateRow:"> - <string key="name">duplicateRow:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="filterTable:"> - <string key="name">filterTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="navigatePaginationFromButton:"> - <string key="name">navigatePaginationFromButton:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="reloadTable:"> - <string key="name">reloadTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="removeRow:"> - <string key="name">removeRow:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="setCompareTypes:"> - <string key="name">setCompareTypes:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="setDefaultOperator:"> - <string key="name">setDefaultOperator:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showDefaultOperaterHelp:"> - <string key="name">showDefaultOperaterHelp:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showFilterTable:"> - <string key="name">showFilterTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="tableFilterClear:"> - <string key="name">tableFilterClear:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleDistinctSelect:"> - <string key="name">toggleDistinctSelect:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleFilterField:"> - <string key="name">toggleFilterField:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleLookAllFieldsMode:"> - <string key="name">toggleLookAllFieldsMode:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleNegateClause:"> - <string key="name">toggleNegateClause:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="togglePagination:"> - <string key="name">togglePagination:</string> - <string key="candidateClassName">NSButton</string> - </object> - </dictionary> - <dictionary class="NSMutableDictionary" key="outlets"> - <string key="addButton">id</string> - <string key="argumentField">id</string> - <string key="betweenTextField">id</string> - <string key="compareField">id</string> - <string key="contentSplitView">SPSplitView</string> - <string key="contentViewPane">NSView</string> - <string key="countText">id</string> - <string key="duplicateButton">id</string> - <string key="fieldField">NSPopUpButton</string> - <string key="filterButton">id</string> - <string key="filterControllerInstance">SPTableContentFilterController</string> - <string key="filterTableClearButton">NSButton</string> - <string key="filterTableDistinctCheckbox">NSButton</string> - <string key="filterTableFilterButton">NSButton</string> - <string key="filterTableLiveSearchCheckbox">NSButton</string> - <string key="filterTableNegateCheckbox">NSButton</string> - <string key="filterTableQueryTitle">NSTextField</string> - <string key="filterTableSearchAllFields">NSButton</string> - <string key="filterTableSetDefaultOperatorSheet">NSPanel</string> - <string key="filterTableSetDefaultOperatorValue">NSComboBox</string> - <string key="filterTableSplitView">SPSplitView</string> - <string key="filterTableView">SPCopyTable</string> - <string key="filterTableWhereClause">SPTextView</string> - <string key="filterTableWindow">NSPanel</string> - <string key="firstBetweenField">id</string> - <string key="limitRowsButton">id</string> - <string key="limitRowsField">id</string> - <string key="limitRowsStepper">id</string> - <string key="multipleLineEditingButton">NSButton</string> - <string key="paginationBox">NSBox</string> - <string key="paginationButton">NSButton</string> - <string key="paginationGoButton">NSButton</string> - <string key="paginationNextButton">NSButton</string> - <string key="paginationPageField">NSTextField</string> - <string key="paginationPageStepper">NSStepper</string> - <string key="paginationPreviousButton">NSButton</string> - <string key="paginationView">NSView</string> - <string key="paginationViewController">NSViewController</string> - <string key="reloadButton">id</string> - <string key="removeButton">id</string> - <string key="secondBetweenField">id</string> - <string key="spHistoryControllerInstance">SPHistoryController</string> - <string key="tableContentView">SPCopyTable</string> - <string key="tableDataInstance">SPTableData</string> - <string key="tableDocumentInstance">SPDatabaseDocument</string> - <string key="tableInfoInstance">SPTableInfo</string> - <string key="tableSourceInstance">id</string> - <string key="tablesListInstance">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName"> - <object class="IBToOneOutletInfo" key="addButton"> - <string key="name">addButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="argumentField"> - <string key="name">argumentField</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="betweenTextField"> - <string key="name">betweenTextField</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="compareField"> - <string key="name">compareField</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="contentSplitView"> - <string key="name">contentSplitView</string> - <string key="candidateClassName">SPSplitView</string> - </object> - <object class="IBToOneOutletInfo" key="contentViewPane"> - <string key="name">contentViewPane</string> - <string key="candidateClassName">NSView</string> - </object> - <object class="IBToOneOutletInfo" key="countText"> - <string key="name">countText</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="duplicateButton"> - <string key="name">duplicateButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="fieldField"> - <string key="name">fieldField</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="filterButton"> - <string key="name">filterButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="filterControllerInstance"> - <string key="name">filterControllerInstance</string> - <string key="candidateClassName">SPTableContentFilterController</string> - </object> - <object class="IBToOneOutletInfo" key="filterTableClearButton"> - <string key="name">filterTableClearButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="filterTableDistinctCheckbox"> - <string key="name">filterTableDistinctCheckbox</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="filterTableFilterButton"> - <string key="name">filterTableFilterButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="filterTableLiveSearchCheckbox"> - <string key="name">filterTableLiveSearchCheckbox</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="filterTableNegateCheckbox"> - <string key="name">filterTableNegateCheckbox</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="filterTableQueryTitle"> - <string key="name">filterTableQueryTitle</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="filterTableSearchAllFields"> - <string key="name">filterTableSearchAllFields</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="filterTableSetDefaultOperatorSheet"> - <string key="name">filterTableSetDefaultOperatorSheet</string> - <string key="candidateClassName">NSPanel</string> - </object> - <object class="IBToOneOutletInfo" key="filterTableSetDefaultOperatorValue"> - <string key="name">filterTableSetDefaultOperatorValue</string> - <string key="candidateClassName">NSComboBox</string> - </object> - <object class="IBToOneOutletInfo" key="filterTableSplitView"> - <string key="name">filterTableSplitView</string> - <string key="candidateClassName">SPSplitView</string> - </object> - <object class="IBToOneOutletInfo" key="filterTableView"> - <string key="name">filterTableView</string> - <string key="candidateClassName">SPCopyTable</string> - </object> - <object class="IBToOneOutletInfo" key="filterTableWhereClause"> - <string key="name">filterTableWhereClause</string> - <string key="candidateClassName">SPTextView</string> - </object> - <object class="IBToOneOutletInfo" key="filterTableWindow"> - <string key="name">filterTableWindow</string> - <string key="candidateClassName">NSPanel</string> - </object> - <object class="IBToOneOutletInfo" key="firstBetweenField"> - <string key="name">firstBetweenField</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="limitRowsButton"> - <string key="name">limitRowsButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="limitRowsField"> - <string key="name">limitRowsField</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="limitRowsStepper"> - <string key="name">limitRowsStepper</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="multipleLineEditingButton"> - <string key="name">multipleLineEditingButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="paginationBox"> - <string key="name">paginationBox</string> - <string key="candidateClassName">NSBox</string> - </object> - <object class="IBToOneOutletInfo" key="paginationButton"> - <string key="name">paginationButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="paginationGoButton"> - <string key="name">paginationGoButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="paginationNextButton"> - <string key="name">paginationNextButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="paginationPageField"> - <string key="name">paginationPageField</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="paginationPageStepper"> - <string key="name">paginationPageStepper</string> - <string key="candidateClassName">NSStepper</string> - </object> - <object class="IBToOneOutletInfo" key="paginationPreviousButton"> - <string key="name">paginationPreviousButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="paginationView"> - <string key="name">paginationView</string> - <string key="candidateClassName">NSView</string> - </object> - <object class="IBToOneOutletInfo" key="paginationViewController"> - <string key="name">paginationViewController</string> - <string key="candidateClassName">NSViewController</string> - </object> - <object class="IBToOneOutletInfo" key="reloadButton"> - <string key="name">reloadButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="removeButton"> - <string key="name">removeButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="secondBetweenField"> - <string key="name">secondBetweenField</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="spHistoryControllerInstance"> - <string key="name">spHistoryControllerInstance</string> - <string key="candidateClassName">SPHistoryController</string> - </object> - <object class="IBToOneOutletInfo" key="tableContentView"> - <string key="name">tableContentView</string> - <string key="candidateClassName">SPCopyTable</string> - </object> - <object class="IBToOneOutletInfo" key="tableDataInstance"> - <string key="name">tableDataInstance</string> - <string key="candidateClassName">SPTableData</string> - </object> - <object class="IBToOneOutletInfo" key="tableDocumentInstance"> - <string key="name">tableDocumentInstance</string> - <string key="candidateClassName">SPDatabaseDocument</string> - </object> - <object class="IBToOneOutletInfo" key="tableInfoInstance"> - <string key="name">tableInfoInstance</string> - <string key="candidateClassName">SPTableInfo</string> - </object> - <object class="IBToOneOutletInfo" key="tableSourceInstance"> - <string key="name">tableSourceInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tablesListInstance"> - <string key="name">tablesListInstance</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPTableContent.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPTableContent</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="addRow:">id</string> - <string key="closeSheet:">id</string> - <string key="duplicateRow:">id</string> - <string key="filterTable:">id</string> - <string key="navigatePaginationFromButton:">id</string> - <string key="reloadTable:">id</string> - <string key="removeRow:">id</string> - <string key="setCompareTypes:">id</string> - <string key="setDefaultOperator:">id</string> - <string key="showDefaultOperaterHelp:">id</string> - <string key="showFilterTable:">id</string> - <string key="tableFilterClear:">id</string> - <string key="toggleDistinctSelect:">id</string> - <string key="toggleFilterField:">id</string> - <string key="toggleLookAllFieldsMode:">id</string> - <string key="toggleNegateClause:">id</string> - <string key="togglePagination:">NSButton</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="addRow:"> - <string key="name">addRow:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closeSheet:"> - <string key="name">closeSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="duplicateRow:"> - <string key="name">duplicateRow:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="filterTable:"> - <string key="name">filterTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="navigatePaginationFromButton:"> - <string key="name">navigatePaginationFromButton:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="reloadTable:"> - <string key="name">reloadTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="removeRow:"> - <string key="name">removeRow:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="setCompareTypes:"> - <string key="name">setCompareTypes:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="setDefaultOperator:"> - <string key="name">setDefaultOperator:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showDefaultOperaterHelp:"> - <string key="name">showDefaultOperaterHelp:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showFilterTable:"> - <string key="name">showFilterTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="tableFilterClear:"> - <string key="name">tableFilterClear:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleDistinctSelect:"> - <string key="name">toggleDistinctSelect:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleFilterField:"> - <string key="name">toggleFilterField:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleLookAllFieldsMode:"> - <string key="name">toggleLookAllFieldsMode:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleNegateClause:"> - <string key="name">toggleNegateClause:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="togglePagination:"> - <string key="name">togglePagination:</string> - <string key="candidateClassName">NSButton</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPTableContent.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPTableContentFilterController</string> - <string key="superclassName">NSObject</string> - <dictionary class="NSMutableDictionary" key="outlets"> - <string key="contentSplitView">SPSplitView</string> - <string key="filterRuleEditor">NSRuleEditor</string> - <string key="tableDataInstance">SPTableData</string> - <string key="tableDocumentInstance">SPDatabaseDocument</string> - <string key="tablesListInstance">SPTablesList</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName"> - <object class="IBToOneOutletInfo" key="contentSplitView"> - <string key="name">contentSplitView</string> - <string key="candidateClassName">SPSplitView</string> - </object> - <object class="IBToOneOutletInfo" key="filterRuleEditor"> - <string key="name">filterRuleEditor</string> - <string key="candidateClassName">NSRuleEditor</string> - </object> - <object class="IBToOneOutletInfo" key="tableDataInstance"> - <string key="name">tableDataInstance</string> - <string key="candidateClassName">SPTableData</string> - </object> - <object class="IBToOneOutletInfo" key="tableDocumentInstance"> - <string key="name">tableDocumentInstance</string> - <string key="candidateClassName">SPDatabaseDocument</string> - </object> - <object class="IBToOneOutletInfo" key="tablesListInstance"> - <string key="name">tablesListInstance</string> - <string key="candidateClassName">SPTablesList</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPTableContentFilterController.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPTableData</string> - <string key="superclassName">NSObject</string> - <dictionary class="NSMutableDictionary" key="outlets"> - <string key="tableDocumentInstance">SPDatabaseDocument</string> - <string key="tableListInstance">SPTablesList</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName"> - <object class="IBToOneOutletInfo" key="tableDocumentInstance"> - <string key="name">tableDocumentInstance</string> - <string key="candidateClassName">SPDatabaseDocument</string> - </object> - <object class="IBToOneOutletInfo" key="tableListInstance"> - <string key="name">tableListInstance</string> - <string key="candidateClassName">SPTablesList</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPTableData.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPTableInfo</string> - <string key="superclassName">NSObject</string> - <dictionary class="NSMutableDictionary" key="outlets"> - <string key="activitiesTable">NSTableView</string> - <string key="infoTable">NSTableView</string> - <string key="tableDataInstance">id</string> - <string key="tableDocumentInstance">id</string> - <string key="tableInfoScrollView">NSScrollView</string> - <string key="tableList">id</string> - <string key="tableListInstance">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName"> - <object class="IBToOneOutletInfo" key="activitiesTable"> - <string key="name">activitiesTable</string> - <string key="candidateClassName">NSTableView</string> - </object> - <object class="IBToOneOutletInfo" key="infoTable"> - <string key="name">infoTable</string> - <string key="candidateClassName">NSTableView</string> - </object> - <object class="IBToOneOutletInfo" key="tableDataInstance"> - <string key="name">tableDataInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableDocumentInstance"> - <string key="name">tableDocumentInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableInfoScrollView"> - <string key="name">tableInfoScrollView</string> - <string key="candidateClassName">NSScrollView</string> - </object> - <object class="IBToOneOutletInfo" key="tableList"> - <string key="name">tableList</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableListInstance"> - <string key="name">tableListInstance</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPTableInfo.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPTableRelations</string> - <string key="superclassName">NSObject</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="addRelation:">id</string> - <string key="closeRelationSheet:">id</string> - <string key="confirmAddRelation:">id</string> - <string key="openRelationSheet:">id</string> - <string key="refreshRelations:">id</string> - <string key="removeRelation:">id</string> - <string key="selectReferenceTable:">id</string> - <string key="selectTableColumn:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="addRelation:"> - <string key="name">addRelation:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closeRelationSheet:"> - <string key="name">closeRelationSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="confirmAddRelation:"> - <string key="name">confirmAddRelation:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="openRelationSheet:"> - <string key="name">openRelationSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="refreshRelations:"> - <string key="name">refreshRelations:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="removeRelation:"> - <string key="name">removeRelation:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="selectReferenceTable:"> - <string key="name">selectReferenceTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="selectTableColumn:"> - <string key="name">selectTableColumn:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <dictionary class="NSMutableDictionary" key="outlets"> - <string key="addRelationButton">NSButton</string> - <string key="addRelationPanel">NSPanel</string> - <string key="addRelationTableBox">NSBox</string> - <string key="columnPopUpButton">NSPopUpButton</string> - <string key="confirmAddRelationButton">NSButton</string> - <string key="constraintName">NSTextField</string> - <string key="dataProgressIndicator">NSProgressIndicator</string> - <string key="detailErrorText">NSTextView</string> - <string key="detailErrorView">NSView</string> - <string key="labelTextField">NSTextField</string> - <string key="onDeletePopUpButton">NSPopUpButton</string> - <string key="onUpdatePopUpButton">NSPopUpButton</string> - <string key="progressStatusTextField">NSTextField</string> - <string key="refColumnPopUpButton">NSPopUpButton</string> - <string key="refTablePopUpButton">NSPopUpButton</string> - <string key="refreshRelationsButton">NSButton</string> - <string key="relationsTableView">SPTableView</string> - <string key="removeRelationButton">NSButton</string> - <string key="tableDataInstance">SPTableData</string> - <string key="tableDocumentInstance">SPDatabaseDocument</string> - <string key="tableList">SPTableView</string> - <string key="tablesListInstance">SPTablesList</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName"> - <object class="IBToOneOutletInfo" key="addRelationButton"> - <string key="name">addRelationButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="addRelationPanel"> - <string key="name">addRelationPanel</string> - <string key="candidateClassName">NSPanel</string> - </object> - <object class="IBToOneOutletInfo" key="addRelationTableBox"> - <string key="name">addRelationTableBox</string> - <string key="candidateClassName">NSBox</string> - </object> - <object class="IBToOneOutletInfo" key="columnPopUpButton"> - <string key="name">columnPopUpButton</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="confirmAddRelationButton"> - <string key="name">confirmAddRelationButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="constraintName"> - <string key="name">constraintName</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="dataProgressIndicator"> - <string key="name">dataProgressIndicator</string> - <string key="candidateClassName">NSProgressIndicator</string> - </object> - <object class="IBToOneOutletInfo" key="detailErrorText"> - <string key="name">detailErrorText</string> - <string key="candidateClassName">NSTextView</string> - </object> - <object class="IBToOneOutletInfo" key="detailErrorView"> - <string key="name">detailErrorView</string> - <string key="candidateClassName">NSView</string> - </object> - <object class="IBToOneOutletInfo" key="labelTextField"> - <string key="name">labelTextField</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="onDeletePopUpButton"> - <string key="name">onDeletePopUpButton</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="onUpdatePopUpButton"> - <string key="name">onUpdatePopUpButton</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="progressStatusTextField"> - <string key="name">progressStatusTextField</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="refColumnPopUpButton"> - <string key="name">refColumnPopUpButton</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="refTablePopUpButton"> - <string key="name">refTablePopUpButton</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="refreshRelationsButton"> - <string key="name">refreshRelationsButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="relationsTableView"> - <string key="name">relationsTableView</string> - <string key="candidateClassName">SPTableView</string> - </object> - <object class="IBToOneOutletInfo" key="removeRelationButton"> - <string key="name">removeRelationButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="tableDataInstance"> - <string key="name">tableDataInstance</string> - <string key="candidateClassName">SPTableData</string> - </object> - <object class="IBToOneOutletInfo" key="tableDocumentInstance"> - <string key="name">tableDocumentInstance</string> - <string key="candidateClassName">SPDatabaseDocument</string> - </object> - <object class="IBToOneOutletInfo" key="tableList"> - <string key="name">tableList</string> - <string key="candidateClassName">SPTableView</string> - </object> - <object class="IBToOneOutletInfo" key="tablesListInstance"> - <string key="name">tablesListInstance</string> - <string key="candidateClassName">SPTablesList</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPTableRelations.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPTableRelations</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="addRelation:">id</string> - <string key="closeRelationSheet:">id</string> - <string key="confirmAddRelation:">id</string> - <string key="openRelationSheet:">id</string> - <string key="refreshRelations:">id</string> - <string key="removeRelation:">id</string> - <string key="selectReferenceTable:">id</string> - <string key="selectTableColumn:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="addRelation:"> - <string key="name">addRelation:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closeRelationSheet:"> - <string key="name">closeRelationSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="confirmAddRelation:"> - <string key="name">confirmAddRelation:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="openRelationSheet:"> - <string key="name">openRelationSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="refreshRelations:"> - <string key="name">refreshRelations:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="removeRelation:"> - <string key="name">removeRelation:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="selectReferenceTable:"> - <string key="name">selectReferenceTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="selectTableColumn:"> - <string key="name">selectTableColumn:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPTableRelations.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPTableStructure</string> - <string key="superclassName">NSObject</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="addField:">id</string> - <string key="closeSheet:">id</string> - <string key="duplicateField:">id</string> - <string key="removeField:">id</string> - <string key="resetAutoIncrement:">id</string> - <string key="showOptimizedFieldType:">id</string> - <string key="toggleColumnView:">NSMenuItem</string> - <string key="unhideIndexesView:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="addField:"> - <string key="name">addField:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closeSheet:"> - <string key="name">closeSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="duplicateField:"> - <string key="name">duplicateField:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="removeField:"> - <string key="name">removeField:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="resetAutoIncrement:"> - <string key="name">resetAutoIncrement:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showOptimizedFieldType:"> - <string key="name">showOptimizedFieldType:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleColumnView:"> - <string key="name">toggleColumnView:</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBActionInfo" key="unhideIndexesView:"> - <string key="name">unhideIndexesView:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <dictionary class="NSMutableDictionary" key="outlets"> - <string key="addFieldButton">id</string> - <string key="addIndexButton">id</string> - <string key="chooseKeyButton">id</string> - <string key="databaseDataInstance">SPDatabaseData</string> - <string key="duplicateFieldButton">id</string> - <string key="editTableButton">id</string> - <string key="encodingPopupCell">NSPopUpButtonCell</string> - <string key="extendedTableInfoInstance">SPExtendedTableInfo</string> - <string key="indexesController">SPIndexesController</string> - <string key="indexesShowButton">NSButton</string> - <string key="indexesTableView">SPTableView</string> - <string key="keySheet">id</string> - <string key="refreshIndexesButton">id</string> - <string key="reloadFieldsButton">id</string> - <string key="removeFieldButton">id</string> - <string key="removeIndexButton">id</string> - <string key="resetAutoIncrementLine">id</string> - <string key="resetAutoIncrementSheet">id</string> - <string key="resetAutoIncrementValue">id</string> - <string key="structureGrabber">id</string> - <string key="structureHelpPanel">NSPanel</string> - <string key="structureHelpText">NSTextView</string> - <string key="tableDataInstance">SPTableData</string> - <string key="tableDocumentInstance">SPDatabaseDocument</string> - <string key="tableInfoInstance">SPTableInfo</string> - <string key="tableSourceView">SPTableView</string> - <string key="tablesIndexesSplitView">NSSplitView</string> - <string key="tablesListInstance">SPTablesList</string> - <string key="viewColumnsMenu">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName"> - <object class="IBToOneOutletInfo" key="addFieldButton"> - <string key="name">addFieldButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="addIndexButton"> - <string key="name">addIndexButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="chooseKeyButton"> - <string key="name">chooseKeyButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="databaseDataInstance"> - <string key="name">databaseDataInstance</string> - <string key="candidateClassName">SPDatabaseData</string> - </object> - <object class="IBToOneOutletInfo" key="duplicateFieldButton"> - <string key="name">duplicateFieldButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="editTableButton"> - <string key="name">editTableButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="encodingPopupCell"> - <string key="name">encodingPopupCell</string> - <string key="candidateClassName">NSPopUpButtonCell</string> - </object> - <object class="IBToOneOutletInfo" key="extendedTableInfoInstance"> - <string key="name">extendedTableInfoInstance</string> - <string key="candidateClassName">SPExtendedTableInfo</string> - </object> - <object class="IBToOneOutletInfo" key="indexesController"> - <string key="name">indexesController</string> - <string key="candidateClassName">SPIndexesController</string> - </object> - <object class="IBToOneOutletInfo" key="indexesShowButton"> - <string key="name">indexesShowButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="indexesTableView"> - <string key="name">indexesTableView</string> - <string key="candidateClassName">SPTableView</string> - </object> - <object class="IBToOneOutletInfo" key="keySheet"> - <string key="name">keySheet</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="refreshIndexesButton"> - <string key="name">refreshIndexesButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="reloadFieldsButton"> - <string key="name">reloadFieldsButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="removeFieldButton"> - <string key="name">removeFieldButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="removeIndexButton"> - <string key="name">removeIndexButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="resetAutoIncrementLine"> - <string key="name">resetAutoIncrementLine</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="resetAutoIncrementSheet"> - <string key="name">resetAutoIncrementSheet</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="resetAutoIncrementValue"> - <string key="name">resetAutoIncrementValue</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="structureGrabber"> - <string key="name">structureGrabber</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="structureHelpPanel"> - <string key="name">structureHelpPanel</string> - <string key="candidateClassName">NSPanel</string> - </object> - <object class="IBToOneOutletInfo" key="structureHelpText"> - <string key="name">structureHelpText</string> - <string key="candidateClassName">NSTextView</string> - </object> - <object class="IBToOneOutletInfo" key="tableDataInstance"> - <string key="name">tableDataInstance</string> - <string key="candidateClassName">SPTableData</string> - </object> - <object class="IBToOneOutletInfo" key="tableDocumentInstance"> - <string key="name">tableDocumentInstance</string> - <string key="candidateClassName">SPDatabaseDocument</string> - </object> - <object class="IBToOneOutletInfo" key="tableInfoInstance"> - <string key="name">tableInfoInstance</string> - <string key="candidateClassName">SPTableInfo</string> - </object> - <object class="IBToOneOutletInfo" key="tableSourceView"> - <string key="name">tableSourceView</string> - <string key="candidateClassName">SPTableView</string> - </object> - <object class="IBToOneOutletInfo" key="tablesIndexesSplitView"> - <string key="name">tablesIndexesSplitView</string> - <string key="candidateClassName">NSSplitView</string> - </object> - <object class="IBToOneOutletInfo" key="tablesListInstance"> - <string key="name">tablesListInstance</string> - <string key="candidateClassName">SPTablesList</string> - </object> - <object class="IBToOneOutletInfo" key="viewColumnsMenu"> - <string key="name">viewColumnsMenu</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPTableStructure.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPTableStructure</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="addField:">id</string> - <string key="closeSheet:">id</string> - <string key="duplicateField:">id</string> - <string key="removeField:">id</string> - <string key="resetAutoIncrement:">id</string> - <string key="showOptimizedFieldType:">id</string> - <string key="toggleColumnView:">NSMenuItem</string> - <string key="unhideIndexesView:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="addField:"> - <string key="name">addField:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closeSheet:"> - <string key="name">closeSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="duplicateField:"> - <string key="name">duplicateField:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="removeField:"> - <string key="name">removeField:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="resetAutoIncrement:"> - <string key="name">resetAutoIncrement:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showOptimizedFieldType:"> - <string key="name">showOptimizedFieldType:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleColumnView:"> - <string key="name">toggleColumnView:</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBActionInfo" key="unhideIndexesView:"> - <string key="name">unhideIndexesView:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPTableStructure.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPTableStructure</string> - <object class="NSMutableDictionary" key="actions"> - <string key="NS.key.0">reloadTable:</string> - <string key="NS.object.0">id</string> - </object> - <object class="NSMutableDictionary" key="actionInfosByName"> - <string key="NS.key.0">reloadTable:</string> - <object class="IBActionInfo" key="NS.object.0"> - <string key="name">reloadTable:</string> - <string key="candidateClassName">id</string> - </object> - </object> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPTableStructureLoading.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPTableStructure</string> - <object class="NSMutableDictionary" key="actions"> - <string key="NS.key.0">reloadTable:</string> - <string key="NS.object.0">id</string> - </object> - <object class="NSMutableDictionary" key="actionInfosByName"> - <string key="NS.key.0">reloadTable:</string> - <object class="IBActionInfo" key="NS.object.0"> - <string key="name">reloadTable:</string> - <string key="candidateClassName">id</string> - </object> - </object> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPTableStructureLoading.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPTableTextFieldCell</string> - <string key="superclassName">ImageAndTextCell</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPTableTextFieldCell.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPTableTriggers</string> - <string key="superclassName">NSObject</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="addTrigger:">id</string> - <string key="closeTriggerSheet:">id</string> - <string key="confirmAddTrigger:">id</string> - <string key="editTrigger:">id</string> - <string key="refreshTriggers:">id</string> - <string key="removeTrigger:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="addTrigger:"> - <string key="name">addTrigger:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closeTriggerSheet:"> - <string key="name">closeTriggerSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="confirmAddTrigger:"> - <string key="name">confirmAddTrigger:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="editTrigger:"> - <string key="name">editTrigger:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="refreshTriggers:"> - <string key="name">refreshTriggers:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="removeTrigger:"> - <string key="name">removeTrigger:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <dictionary class="NSMutableDictionary" key="outlets"> - <string key="addTriggerButton">NSButton</string> - <string key="addTriggerPanel">NSPanel</string> - <string key="addTriggerTableBox">NSBox</string> - <string key="confirmAddTriggerButton">NSButton</string> - <string key="labelTextField">NSTextField</string> - <string key="refreshTriggersButton">NSButton</string> - <string key="removeTriggerButton">NSButton</string> - <string key="tableDataInstance">id</string> - <string key="tableDocumentInstance">id</string> - <string key="tableList">id</string> - <string key="tablesListInstance">id</string> - <string key="triggerActionTimePopUpButton">NSPopUpButton</string> - <string key="triggerEventPopUpButton">NSPopUpButton</string> - <string key="triggerNameTextField">NSTextField</string> - <string key="triggerStatementTextView">NSTextView</string> - <string key="triggersTableView">SPTableView</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName"> - <object class="IBToOneOutletInfo" key="addTriggerButton"> - <string key="name">addTriggerButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="addTriggerPanel"> - <string key="name">addTriggerPanel</string> - <string key="candidateClassName">NSPanel</string> - </object> - <object class="IBToOneOutletInfo" key="addTriggerTableBox"> - <string key="name">addTriggerTableBox</string> - <string key="candidateClassName">NSBox</string> - </object> - <object class="IBToOneOutletInfo" key="confirmAddTriggerButton"> - <string key="name">confirmAddTriggerButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="labelTextField"> - <string key="name">labelTextField</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="refreshTriggersButton"> - <string key="name">refreshTriggersButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="removeTriggerButton"> - <string key="name">removeTriggerButton</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="tableDataInstance"> - <string key="name">tableDataInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableDocumentInstance"> - <string key="name">tableDocumentInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableList"> - <string key="name">tableList</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tablesListInstance"> - <string key="name">tablesListInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="triggerActionTimePopUpButton"> - <string key="name">triggerActionTimePopUpButton</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="triggerEventPopUpButton"> - <string key="name">triggerEventPopUpButton</string> - <string key="candidateClassName">NSPopUpButton</string> - </object> - <object class="IBToOneOutletInfo" key="triggerNameTextField"> - <string key="name">triggerNameTextField</string> - <string key="candidateClassName">NSTextField</string> - </object> - <object class="IBToOneOutletInfo" key="triggerStatementTextView"> - <string key="name">triggerStatementTextView</string> - <string key="candidateClassName">NSTextView</string> - </object> - <object class="IBToOneOutletInfo" key="triggersTableView"> - <string key="name">triggersTableView</string> - <string key="candidateClassName">SPTableView</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPTableTriggers.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPTableTriggers</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="addTrigger:">id</string> - <string key="closeTriggerSheet:">id</string> - <string key="confirmAddTrigger:">id</string> - <string key="editTrigger:">id</string> - <string key="refreshTriggers:">id</string> - <string key="removeTrigger:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="addTrigger:"> - <string key="name">addTrigger:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closeTriggerSheet:"> - <string key="name">closeTriggerSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="confirmAddTrigger:"> - <string key="name">confirmAddTrigger:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="editTrigger:"> - <string key="name">editTrigger:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="refreshTriggers:"> - <string key="name">refreshTriggers:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="removeTrigger:"> - <string key="name">removeTrigger:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPTableTriggers.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPTableView</string> - <string key="superclassName">NSTableView</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPTableView.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPTablesList</string> - <string key="superclassName">NSObject</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="addTable:">id</string> - <string key="closeSheet:">id</string> - <string key="copyTable:">id</string> - <string key="openTableInNewTab:">id</string> - <string key="openTableInNewWindow:">id</string> - <string key="removeTable:">id</string> - <string key="renameTable:">id</string> - <string key="togglePaneCollapse:">id</string> - <string key="truncateTable:">id</string> - <string key="updateFilter:">id</string> - <string key="updateTables:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="addTable:"> - <string key="name">addTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closeSheet:"> - <string key="name">closeSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="copyTable:"> - <string key="name">copyTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="openTableInNewTab:"> - <string key="name">openTableInNewTab:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="openTableInNewWindow:"> - <string key="name">openTableInNewWindow:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="removeTable:"> - <string key="name">removeTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="renameTable:"> - <string key="name">renameTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="togglePaneCollapse:"> - <string key="name">togglePaneCollapse:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="truncateTable:"> - <string key="name">truncateTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="updateFilter:"> - <string key="name">updateFilter:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="updateTables:"> - <string key="name">updateTables:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <dictionary class="NSMutableDictionary" key="outlets"> - <string key="addTableButton">id</string> - <string key="copyCreateSyntaxContextMenuItem">NSMenuItem</string> - <string key="copyCreateSyntaxMenuItem">NSMenuItem</string> - <string key="copyTableButton">id</string> - <string key="copyTableContentSwitch">NSButton</string> - <string key="copyTableMessageField">id</string> - <string key="copyTableNameField">id</string> - <string key="copyTableSheet">id</string> - <string key="customQueryInstance">id</string> - <string key="databaseDataInstance">SPDatabaseData</string> - <string key="duplicateTableContextMenuItem">NSMenuItem</string> - <string key="duplicateTableMenuItem">NSMenuItem</string> - <string key="extendedTableInfoInstance">id</string> - <string key="listFilterField">NSSearchField</string> - <string key="openTableInNewTabContextMenuItem">NSMenuItem</string> - <string key="openTableInNewTabMenuItem">NSMenuItem</string> - <string key="openTableInNewWindowContextMenuItem">NSMenuItem</string> - <string key="openTableInNewWindowMenuItem">NSMenuItem</string> - <string key="removeTableContextMenuItem">NSMenuItem</string> - <string key="removeTableMenuItem">NSMenuItem</string> - <string key="renameTableContextMenuItem">NSMenuItem</string> - <string key="renameTableMenuItem">NSMenuItem</string> - <string key="separatorTableContextMenuItem">NSMenuItem</string> - <string key="separatorTableContextMenuItem2">NSMenuItem</string> - <string key="separatorTableContextMenuItem3">NSMenuItem</string> - <string key="separatorTableMenuItem">NSMenuItem</string> - <string key="separatorTableMenuItem2">NSMenuItem</string> - <string key="separatorTableMenuItem3">NSMenuItem</string> - <string key="showCreateSyntaxContextMenuItem">NSMenuItem</string> - <string key="showCreateSyntaxMenuItem">NSMenuItem</string> - <string key="spHistoryControllerInstance">SPHistoryController</string> - <string key="tableCollationButton">id</string> - <string key="tableContentInstance">SPTableContent</string> - <string key="tableDataInstance">id</string> - <string key="tableDocumentInstance">SPDatabaseDocument</string> - <string key="tableDumpInstance">id</string> - <string key="tableEncodingButton">id</string> - <string key="tableInfoInstance">id</string> - <string key="tableListFilterSplitView">SPSplitView</string> - <string key="tableListSplitView">SPSplitView</string> - <string key="tableNameField">id</string> - <string key="tableSheet">id</string> - <string key="tableSourceInstance">SPTableStructure</string> - <string key="tableTriggersInstance">id</string> - <string key="tableTypeButton">id</string> - <string key="tablesListView">SPTableView</string> - <string key="toolbarActionsButton">id</string> - <string key="toolbarAddButton">id</string> - <string key="toolbarReloadButton">id</string> - <string key="truncateTableButton">id</string> - <string key="truncateTableContextMenuItem">NSMenuItem</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName"> - <object class="IBToOneOutletInfo" key="addTableButton"> - <string key="name">addTableButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="copyCreateSyntaxContextMenuItem"> - <string key="name">copyCreateSyntaxContextMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="copyCreateSyntaxMenuItem"> - <string key="name">copyCreateSyntaxMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="copyTableButton"> - <string key="name">copyTableButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="copyTableContentSwitch"> - <string key="name">copyTableContentSwitch</string> - <string key="candidateClassName">NSButton</string> - </object> - <object class="IBToOneOutletInfo" key="copyTableMessageField"> - <string key="name">copyTableMessageField</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="copyTableNameField"> - <string key="name">copyTableNameField</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="copyTableSheet"> - <string key="name">copyTableSheet</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="customQueryInstance"> - <string key="name">customQueryInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="databaseDataInstance"> - <string key="name">databaseDataInstance</string> - <string key="candidateClassName">SPDatabaseData</string> - </object> - <object class="IBToOneOutletInfo" key="duplicateTableContextMenuItem"> - <string key="name">duplicateTableContextMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="duplicateTableMenuItem"> - <string key="name">duplicateTableMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="extendedTableInfoInstance"> - <string key="name">extendedTableInfoInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="listFilterField"> - <string key="name">listFilterField</string> - <string key="candidateClassName">NSSearchField</string> - </object> - <object class="IBToOneOutletInfo" key="openTableInNewTabContextMenuItem"> - <string key="name">openTableInNewTabContextMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="openTableInNewTabMenuItem"> - <string key="name">openTableInNewTabMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="openTableInNewWindowContextMenuItem"> - <string key="name">openTableInNewWindowContextMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="openTableInNewWindowMenuItem"> - <string key="name">openTableInNewWindowMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="removeTableContextMenuItem"> - <string key="name">removeTableContextMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="removeTableMenuItem"> - <string key="name">removeTableMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="renameTableContextMenuItem"> - <string key="name">renameTableContextMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="renameTableMenuItem"> - <string key="name">renameTableMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="separatorTableContextMenuItem"> - <string key="name">separatorTableContextMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="separatorTableContextMenuItem2"> - <string key="name">separatorTableContextMenuItem2</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="separatorTableContextMenuItem3"> - <string key="name">separatorTableContextMenuItem3</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="separatorTableMenuItem"> - <string key="name">separatorTableMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="separatorTableMenuItem2"> - <string key="name">separatorTableMenuItem2</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="separatorTableMenuItem3"> - <string key="name">separatorTableMenuItem3</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="showCreateSyntaxContextMenuItem"> - <string key="name">showCreateSyntaxContextMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="showCreateSyntaxMenuItem"> - <string key="name">showCreateSyntaxMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - <object class="IBToOneOutletInfo" key="spHistoryControllerInstance"> - <string key="name">spHistoryControllerInstance</string> - <string key="candidateClassName">SPHistoryController</string> - </object> - <object class="IBToOneOutletInfo" key="tableCollationButton"> - <string key="name">tableCollationButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableContentInstance"> - <string key="name">tableContentInstance</string> - <string key="candidateClassName">SPTableContent</string> - </object> - <object class="IBToOneOutletInfo" key="tableDataInstance"> - <string key="name">tableDataInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableDocumentInstance"> - <string key="name">tableDocumentInstance</string> - <string key="candidateClassName">SPDatabaseDocument</string> - </object> - <object class="IBToOneOutletInfo" key="tableDumpInstance"> - <string key="name">tableDumpInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableEncodingButton"> - <string key="name">tableEncodingButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableInfoInstance"> - <string key="name">tableInfoInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableListFilterSplitView"> - <string key="name">tableListFilterSplitView</string> - <string key="candidateClassName">SPSplitView</string> - </object> - <object class="IBToOneOutletInfo" key="tableListSplitView"> - <string key="name">tableListSplitView</string> - <string key="candidateClassName">SPSplitView</string> - </object> - <object class="IBToOneOutletInfo" key="tableNameField"> - <string key="name">tableNameField</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableSheet"> - <string key="name">tableSheet</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableSourceInstance"> - <string key="name">tableSourceInstance</string> - <string key="candidateClassName">SPTableStructure</string> - </object> - <object class="IBToOneOutletInfo" key="tableTriggersInstance"> - <string key="name">tableTriggersInstance</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tableTypeButton"> - <string key="name">tableTypeButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="tablesListView"> - <string key="name">tablesListView</string> - <string key="candidateClassName">SPTableView</string> - </object> - <object class="IBToOneOutletInfo" key="toolbarActionsButton"> - <string key="name">toolbarActionsButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="toolbarAddButton"> - <string key="name">toolbarAddButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="toolbarReloadButton"> - <string key="name">toolbarReloadButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="truncateTableButton"> - <string key="name">truncateTableButton</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBToOneOutletInfo" key="truncateTableContextMenuItem"> - <string key="name">truncateTableContextMenuItem</string> - <string key="candidateClassName">NSMenuItem</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPTablesList.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPTablesList</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="addTable:">id</string> - <string key="closeSheet:">id</string> - <string key="copyTable:">id</string> - <string key="openTableInNewTab:">id</string> - <string key="openTableInNewWindow:">id</string> - <string key="removeTable:">id</string> - <string key="renameTable:">id</string> - <string key="tableEncodingButtonChanged:">id</string> - <string key="togglePaneCollapse:">id</string> - <string key="truncateTable:">id</string> - <string key="updateFilter:">id</string> - <string key="updateTables:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="addTable:"> - <string key="name">addTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="closeSheet:"> - <string key="name">closeSheet:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="copyTable:"> - <string key="name">copyTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="openTableInNewTab:"> - <string key="name">openTableInNewTab:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="openTableInNewWindow:"> - <string key="name">openTableInNewWindow:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="removeTable:"> - <string key="name">removeTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="renameTable:"> - <string key="name">renameTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="tableEncodingButtonChanged:"> - <string key="name">tableEncodingButtonChanged:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="togglePaneCollapse:"> - <string key="name">togglePaneCollapse:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="truncateTable:"> - <string key="name">truncateTable:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="updateFilter:"> - <string key="name">updateFilter:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="updateTables:"> - <string key="name">updateTables:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPTablesList.m</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPTextView</string> - <string key="superclassName">NSTextView</string> - <object class="NSMutableDictionary" key="actions"> - <string key="NS.key.0">showMySQLHelpForCurrentWord:</string> - <string key="NS.object.0">id</string> - </object> - <object class="NSMutableDictionary" key="actionInfosByName"> - <string key="NS.key.0">showMySQLHelpForCurrentWord:</string> - <object class="IBActionInfo" key="NS.object.0"> - <string key="name">showMySQLHelpForCurrentWord:</string> - <string key="candidateClassName">id</string> - </object> - </object> - <dictionary class="NSMutableDictionary" key="outlets"> - <string key="customQueryInstance">SPCustomQuery</string> - <string key="scrollView">NSScrollView</string> - <string key="tableDocumentInstance">SPDatabaseDocument</string> - <string key="tablesListInstance">SPTablesList</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="toOneOutletInfosByName"> - <object class="IBToOneOutletInfo" key="customQueryInstance"> - <string key="name">customQueryInstance</string> - <string key="candidateClassName">SPCustomQuery</string> - </object> - <object class="IBToOneOutletInfo" key="scrollView"> - <string key="name">scrollView</string> - <string key="candidateClassName">NSScrollView</string> - </object> - <object class="IBToOneOutletInfo" key="tableDocumentInstance"> - <string key="name">tableDocumentInstance</string> - <string key="candidateClassName">SPDatabaseDocument</string> - </object> - <object class="IBToOneOutletInfo" key="tablesListInstance"> - <string key="name">tablesListInstance</string> - <string key="candidateClassName">SPTablesList</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPTextView.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">SPTextView</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="printDocument:">id</string> - <string key="showMySQLHelpForCurrentWord:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="printDocument:"> - <string key="name">printDocument:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="showMySQLHelpForCurrentWord:"> - <string key="name">showMySQLHelpForCurrentWord:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBProjectSource</string> - <string key="minorKey">../Source/SPTextView.m</string> - </object> - </object> - </array> - <array class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+"> - <object class="IBPartialClassDescription"> - <string key="className">NSActionCell</string> - <string key="superclassName">NSCell</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSActionCell.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSApplication</string> - <string key="superclassName">NSResponder</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSApplication.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSBox</string> - <string key="superclassName">NSView</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSBox.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSButton</string> - <string key="superclassName">NSControl</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSButton.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSButtonCell</string> - <string key="superclassName">NSActionCell</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSButtonCell.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSCell</string> - <string key="superclassName">NSObject</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSCell.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSComboBox</string> - <string key="superclassName">NSTextField</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSComboBox.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSComboBoxCell</string> - <string key="superclassName">NSTextFieldCell</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSComboBoxCell.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSControl</string> - <string key="superclassName">NSView</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSControl.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSController</string> - <string key="superclassName">NSObject</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSController.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSFormatter</string> - <string key="superclassName">NSObject</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">Foundation.framework/Headers/NSFormatter.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSImageCell</string> - <string key="superclassName">NSCell</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSImageCell.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSImageView</string> - <string key="superclassName">NSControl</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSImageView.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSMenu</string> - <string key="superclassName">NSObject</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSMenu.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSMenuItem</string> - <string key="superclassName">NSObject</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSMenuItem.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSMenuItemCell</string> - <string key="superclassName">NSButtonCell</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSMenuItemCell.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSMovieView</string> - <string key="superclassName">NSView</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSMovieView.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSNumberFormatter</string> - <string key="superclassName">NSFormatter</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">Foundation.framework/Headers/NSNumberFormatter.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSPanel</string> - <string key="superclassName">NSWindow</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSPanel.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSPopUpButton</string> - <string key="superclassName">NSButton</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSPopUpButton.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSPopUpButtonCell</string> - <string key="superclassName">NSMenuItemCell</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSPopUpButtonCell.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSProgressIndicator</string> - <string key="superclassName">NSView</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSProgressIndicator.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSResponder</string> - <string key="superclassName">NSObject</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSResponder.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSRuleEditor</string> - <string key="superclassName">NSControl</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSRuleEditor.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSScrollView</string> - <string key="superclassName">NSView</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSScrollView.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSScroller</string> - <string key="superclassName">NSControl</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSScroller.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSSearchField</string> - <string key="superclassName">NSTextField</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSSearchField.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSSearchFieldCell</string> - <string key="superclassName">NSTextFieldCell</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSSearchFieldCell.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSSecureTextField</string> - <string key="superclassName">NSTextField</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier" id="460542969"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSSecureTextField.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSSecureTextFieldCell</string> - <string key="superclassName">NSTextFieldCell</string> - <reference key="sourceIdentifier" ref="460542969"/> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSSegmentedCell</string> - <string key="superclassName">NSActionCell</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSSegmentedCell.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSSegmentedControl</string> - <string key="superclassName">NSControl</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSSegmentedControl.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSSplitView</string> - <string key="superclassName">NSView</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSSplitView.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSStepper</string> - <string key="superclassName">NSControl</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSStepper.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSTabView</string> - <string key="superclassName">NSView</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSTabView.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSTabViewItem</string> - <string key="superclassName">NSObject</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSTabViewItem.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSTableColumn</string> - <string key="superclassName">NSObject</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSTableColumn.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSTableHeaderView</string> - <string key="superclassName">NSView</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSTableHeaderView.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSTableView</string> - <string key="superclassName">NSControl</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSTableView.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSText</string> - <string key="superclassName">NSView</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSText.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSTextField</string> - <string key="superclassName">NSControl</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSTextField.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSTextFieldCell</string> - <string key="superclassName">NSActionCell</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSTextFieldCell.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSTextView</string> - <string key="superclassName">NSText</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSTextView.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSTokenField</string> - <string key="superclassName">NSTextField</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSTokenField.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSUserDefaultsController</string> - <string key="superclassName">NSController</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSUserDefaultsController.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSView</string> - <string key="superclassName">NSResponder</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSView.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSViewController</string> - <string key="superclassName">NSResponder</string> - <object class="NSMutableDictionary" key="outlets"> - <string key="NS.key.0">view</string> - <string key="NS.object.0">NSView</string> - </object> - <object class="NSMutableDictionary" key="toOneOutletInfosByName"> - <string key="NS.key.0">view</string> - <object class="IBToOneOutletInfo" key="NS.object.0"> - <string key="name">view</string> - <string key="candidateClassName">NSView</string> - </object> - </object> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSViewController.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSWindow</string> - <string key="superclassName">NSResponder</string> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSWindow.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">NSWindowController</string> - <string key="superclassName">NSResponder</string> - <object class="NSMutableDictionary" key="actions"> - <string key="NS.key.0">showWindow:</string> - <string key="NS.object.0">id</string> - </object> - <object class="NSMutableDictionary" key="actionInfosByName"> - <string key="NS.key.0">showWindow:</string> - <object class="IBActionInfo" key="NS.object.0"> - <string key="name">showWindow:</string> - <string key="candidateClassName">id</string> - </object> - </object> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">AppKit.framework/Headers/NSWindowController.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">QCView</string> - <string key="superclassName">NSView</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="play:">id</string> - <string key="start:">id</string> - <string key="stop:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="play:"> - <string key="name">play:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="start:"> - <string key="name">start:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="stop:"> - <string key="name">stop:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">Quartz.framework/Frameworks/QuartzComposer.framework/Headers/QCView.h</string> - </object> - </object> - <object class="IBPartialClassDescription"> - <string key="className">WebView</string> - <string key="superclassName">NSView</string> - <dictionary class="NSMutableDictionary" key="actions"> - <string key="goBack:">id</string> - <string key="goForward:">id</string> - <string key="makeTextLarger:">id</string> - <string key="makeTextSmaller:">id</string> - <string key="makeTextStandardSize:">id</string> - <string key="reload:">id</string> - <string key="reloadFromOrigin:">id</string> - <string key="stopLoading:">id</string> - <string key="takeStringURLFrom:">id</string> - <string key="toggleContinuousSpellChecking:">id</string> - <string key="toggleSmartInsertDelete:">id</string> - </dictionary> - <dictionary class="NSMutableDictionary" key="actionInfosByName"> - <object class="IBActionInfo" key="goBack:"> - <string key="name">goBack:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="goForward:"> - <string key="name">goForward:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="makeTextLarger:"> - <string key="name">makeTextLarger:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="makeTextSmaller:"> - <string key="name">makeTextSmaller:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="makeTextStandardSize:"> - <string key="name">makeTextStandardSize:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="reload:"> - <string key="name">reload:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="reloadFromOrigin:"> - <string key="name">reloadFromOrigin:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="stopLoading:"> - <string key="name">stopLoading:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="takeStringURLFrom:"> - <string key="name">takeStringURLFrom:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleContinuousSpellChecking:"> - <string key="name">toggleContinuousSpellChecking:</string> - <string key="candidateClassName">id</string> - </object> - <object class="IBActionInfo" key="toggleSmartInsertDelete:"> - <string key="name">toggleSmartInsertDelete:</string> - <string key="candidateClassName">id</string> - </object> - </dictionary> - <object class="IBClassDescriptionSource" key="sourceIdentifier"> - <string key="majorKey">IBFrameworkSource</string> - <string key="minorKey">WebKit.framework/Headers/WebView.h</string> - </object> - </object> - </array> - </object> - <int key="IBDocument.localizationMode">0</int> - <string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string> - <bool key="IBDocument.previouslyAttemptedUpgradeToXcode5">YES</bool> - <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies"> - <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string> - <integer value="4600" key="NS.object.0"/> - </object> - <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool> - <int key="IBDocument.defaultPropertyAccessControl">3</int> - <dictionary class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes"> - <string key="NSAdvanced">{32, 32}</string> - <string key="NSApplicationIcon">{128, 128}</string> - <string key="NSGoLeftTemplate">{9, 9}</string> - <string key="NSGoRightTemplate">{9, 9}</string> - <string key="NSLeftFacingTriangleTemplate">{9, 9}</string> - <string key="NSListViewTemplate">{11, 10}</string> - <string key="NSMenuCheckmark">{11, 11}</string> - <string key="NSMenuMixedState">{10, 3}</string> - <string key="NSRightFacingTriangleTemplate">{9, 9}</string> - <string key="NSSwitch">{15, 15}</string> - <string key="button_action">{32, 23}</string> - <string key="button_add">{32, 23}</string> - <string key="button_bar_handle">{15, 23}</string> - <string key="button_bar_spacer">{10, 23}</string> - <string key="button_duplicate">{33, 23}</string> - <string key="button_edit">{32, 23}</string> - <string key="button_edit_mode">{32, 23}</string> - <string key="button_edit_mode_selected">{32, 23}</string> - <string key="button_info_pane_show">{33, 23}</string> - <string key="button_left">{32, 23}</string> - <string key="button_pagination">{32, 23}</string> - <string key="button_pane_hide">{32, 23}</string> - <string key="button_pane_show">{32, 23}</string> - <string key="button_refresh">{32, 23}</string> - <string key="button_remove">{32, 23}</string> - <string key="button_right">{32, 23}</string> - <string key="grabber-horizontal">{10, 8}</string> - </dictionary> - </data> -</archive> +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="10116" systemVersion="15E65" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"> + <dependencies> + <deployment identifier="macosx"/> + <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="10116"/> + <plugIn identifier="com.apple.WebKitIBPlugin" version="10116"/> + <capability name="box content view" minToolsVersion="7.0"/> + </dependencies> + <objects> + <customObject id="-2" userLabel="File's Owner" customClass="SPDatabaseDocument"> + <connections> + <outlet property="addDatabaseButton" destination="581" id="6634"/> + <outlet property="chooseDatabaseButton" destination="3995" id="3999"/> + <outlet property="contentViewSplitter" destination="7727" id="7733"/> + <outlet property="copyDatabaseButton" destination="6939" id="6983"/> + <outlet property="copyDatabaseDataButton" destination="6980" id="7039"/> + <outlet property="copyDatabaseMessageField" destination="6942" id="7040"/> + <outlet property="createTableSyntaxTextField" destination="6562" id="6597"/> + <outlet property="createTableSyntaxTextView" destination="8213" id="8215"/> + <outlet property="createTableSyntaxWindow" destination="6557" id="6587"/> + <outlet property="customQueryInstance" destination="134" id="208"/> + <outlet property="customQueryTextView" destination="8254" id="8263"/> + <outlet property="databaseAlterCollationButton" destination="8283" id="8307"/> + <outlet property="databaseAlterEncodingButton" destination="8282" id="8306"/> + <outlet property="databaseAlterSheet" destination="8276" id="8305"/> + <outlet property="databaseCollationButton" destination="8269" id="8275"/> + <outlet property="databaseCopyNameField" destination="6943" id="7030"/> + <outlet property="databaseCopySheet" destination="6937" id="7032"/> + <outlet property="databaseDataInstance" destination="5814" id="5815"/> + <outlet property="databaseEncodingButton" destination="4751" id="4778"/> + <outlet property="databaseNameField" destination="n5n-Ef-ROd" id="LR5-fT-2qb"/> + <outlet property="databaseRenameNameField" destination="6994" id="7031"/> + <outlet property="databaseRenameSheet" destination="6990" id="7012"/> + <outlet property="databaseSheet" destination="565" id="584"/> + <outlet property="dbTablesTableView" destination="22" id="4000"/> + <outlet property="documentActivityScrollView" destination="7691" id="7790"/> + <outlet property="exportControllerInstance" destination="5377" id="6619"/> + <outlet property="extendedTableInfoInstance" destination="1277" id="5848"/> + <outlet property="historyControl" destination="6293" id="6296"/> + <outlet property="inputTextWindow" destination="6492" id="6504"/> + <outlet property="inputTextWindowHeader" destination="6497" id="6505"/> + <outlet property="inputTextWindowMessage" destination="6498" id="6506"/> + <outlet property="inputTextWindowSecureTextField" destination="6496" id="6507"/> + <outlet property="listFilterField" destination="6278" id="6323"/> + <outlet property="parentView" destination="7043" id="7044"/> + <outlet property="queryProgressBar" destination="858" id="860"/> + <outlet property="renameDatabaseButton" destination="6997" id="7011"/> + <outlet property="renameDatabaseMessageField" destination="6995" id="7041"/> + <outlet property="spHistoryControllerInstance" destination="6297" id="6298"/> + <outlet property="statusTableAccessoryView" destination="6885" id="6897"/> + <outlet property="statusTableCopyChecksum" destination="6901" id="6903"/> + <outlet property="statusTableView" destination="6889" id="6898"/> + <outlet property="tableContentInstance" destination="67" id="209"/> + <outlet property="tableDataInstance" destination="4702" id="4708"/> + <outlet property="tableDumpInstance" destination="362" id="378"/> + <outlet property="tableInfoScrollView" destination="4481" id="7782"/> + <outlet property="tableInfoSplitView" destination="5904" id="n3i-dz-XZx"/> + <outlet property="tableInfoTable" destination="4484" id="5941"/> + <outlet property="tableRelationsInstance" destination="5567" id="6764"/> + <outlet property="tableSourceInstance" destination="69" id="210"/> + <outlet property="tableTabView" destination="25" id="1244"/> + <outlet property="tableTriggersInstance" destination="6691" id="6796"/> + <outlet property="tablesListInstance" destination="68" id="104"/> + <outlet property="titleAccessoryView" destination="5999" id="6002"/> + <outlet property="titleImageView" destination="6000" id="6003"/> + <outlet property="titleStringView" destination="6170" id="6172"/> + </connections> + </customObject> + <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/> + <customObject id="-3" userLabel="Application" customClass="NSObject"/> + <customView identifier="MasterDBView" id="7043" userLabel="Master DB View"> + <rect key="frame" x="0.0" y="0.0" width="943" height="549"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <splitView autosaveName="DBViewSplitter" dividerStyle="thin" vertical="YES" id="7727" customClass="SPSplitView"> + <rect key="frame" x="0.0" y="0.0" width="943" height="549"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <view identifier="TabesListSplitPane" id="7728"> + <rect key="frame" x="0.0" y="0.0" width="214" height="549"/> + <autoresizingMask key="autoresizingMask" heightSizable="YES"/> + <subviews> + <splitView dividerStyle="thin" id="6032" customClass="SPSplitView"> + <rect key="frame" x="0.0" y="23" width="214" height="526"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <view id="6033"> + <rect key="frame" x="0.0" y="0.0" width="214" height="359"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <splitView dividerStyle="thin" id="6265" customClass="SPSplitView"> + <rect key="frame" x="0.0" y="0.0" width="214" height="359"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <view id="6266"> + <rect key="frame" x="0.0" y="0.0" width="214" height="24"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES"/> + <subviews> + <scrollView focusRingType="none" horizontalLineScroll="19" horizontalPageScroll="10" verticalLineScroll="19" verticalPageScroll="10" hasHorizontalScroller="NO" hasVerticalScroller="NO" usesPredominantAxisScrolling="NO" id="6682"> + <rect key="frame" x="-1" y="-13" width="220" height="40"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/> + <clipView key="contentView" drawsBackground="NO" copiesOnScroll="NO" id="IHv-Xk-gQD"> + <rect key="frame" x="1" y="1" width="218" height="38"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <tableView focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" selectionHighlightStyle="sourceList" columnReordering="NO" columnResizing="NO" multipleSelection="NO" autosaveColumns="NO" typeSelect="NO" id="6685"> + <rect key="frame" x="0.0" y="0.0" width="218" height="19"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <size key="intercellSpacing" width="3" height="2"/> + <color key="backgroundColor" name="_sourceListBackgroundColor" catalog="System" colorSpace="catalog"/> + <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> + <tableColumns> + <tableColumn width="215" minWidth="40" maxWidth="1000" id="6687"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" white="0.33333298560000002" alpha="1" colorSpace="calibratedWhite"/> + </tableHeaderCell> + <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="6690"> + <font key="font" metaFont="system"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + </tableColumns> + </tableView> + </subviews> + <nil key="backgroundColor"/> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="6684"> + <rect key="frame" x="-100" y="-100" width="223" height="15"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="6683"> + <rect key="frame" x="-100" y="-100" width="15" height="8"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + </scrollView> + <searchField wantsLayer="YES" verticalHuggingPriority="750" id="6278"> + <rect key="frame" x="5" y="2" width="204" height="19"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/> + <searchFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" borderStyle="bezel" usesSingleLineMode="YES" bezelStyle="round" sendsSearchStringImmediately="YES" id="6279"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </searchFieldCell> + <connections> + <action selector="updateFilter:" target="68" id="6285"/> + <outlet property="nextKeyView" destination="22" id="6322"/> + </connections> + </searchField> + </subviews> + </view> + <view id="6267"> + <rect key="frame" x="0.0" y="25" width="214" height="334"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <scrollView focusRingType="none" borderType="none" autohidesScrollers="YES" horizontalLineScroll="19" horizontalPageScroll="10" verticalLineScroll="19" verticalPageScroll="10" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" id="21"> + <rect key="frame" x="0.0" y="0.0" width="214" height="334"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" drawsBackground="NO" id="4mY-w1-Z6f"> + <rect key="frame" x="0.0" y="0.0" width="214" height="334"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <tableView identifier="TablesListTableView" focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="sequential" selectionHighlightStyle="sourceList" columnReordering="NO" autosaveColumns="NO" id="22" customClass="SPTableView"> + <rect key="frame" x="0.0" y="0.0" width="214" height="19"/> + <autoresizingMask key="autoresizingMask"/> + <size key="intercellSpacing" width="3" height="2"/> + <color key="backgroundColor" name="_sourceListBackgroundColor" catalog="System" colorSpace="catalog"/> + <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> + <tableColumns> + <tableColumn identifier="tables" width="211" minWidth="42.868999481201172" maxWidth="1000" id="23"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Tables"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" white="0.33333298560000002" alpha="1" colorSpace="calibratedWhite"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" title="Text Cell" id="4015" customClass="SPTableTextFieldCell"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + <connections> + <outlet property="menu" destination="6180" id="6187"/> + </connections> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + </tableColumns> + <connections> + <outlet property="dataSource" destination="68" id="89"/> + <outlet property="delegate" destination="68" id="251"/> + <outlet property="menu" destination="6180" id="6248"/> + </connections> + </tableView> + </subviews> + <nil key="backgroundColor"/> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" controlSize="small" horizontal="YES" id="3916"> + <rect key="frame" x="-100" y="-100" width="141" height="11"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="0.096045196056365967" horizontal="NO" id="3915"> + <rect key="frame" x="197" y="0.0" width="15" height="292"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + </scrollView> + </subviews> + </view> + </subviews> + <holdingPriorities> + <real value="250"/> + <real value="250"/> + </holdingPriorities> + <connections> + <outlet property="delegate" destination="68" id="7841"/> + </connections> + </splitView> + </subviews> + </view> + <view id="6034" userLabel="Table Info / Activities View"> + <rect key="frame" x="0.0" y="360" width="214" height="166"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES"/> + <subviews> + <scrollView focusRingType="none" borderType="none" autohidesScrollers="YES" horizontalLineScroll="47" horizontalPageScroll="10" verticalLineScroll="47" verticalPageScroll="10" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" id="7691" userLabel="Scroll View (Activities Table View)"> + <rect key="frame" x="-1" y="0.0" width="216" height="166"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" drawsBackground="NO" copiesOnScroll="NO" id="Gh3-hf-w7K"> + <rect key="frame" x="0.0" y="0.0" width="216" height="166"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <tableView focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="sequential" selectionHighlightStyle="sourceList" columnReordering="NO" multipleSelection="NO" autosaveColumns="NO" typeSelect="NO" rowHeight="45" id="7692" userLabel="Table View (Activities)"> + <rect key="frame" x="0.0" y="0.0" width="216" height="47"/> + <autoresizingMask key="autoresizingMask"/> + <size key="intercellSpacing" width="3" height="2"/> + <color key="backgroundColor" name="_sourceListBackgroundColor" catalog="System" colorSpace="catalog"/> + <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> + <tableColumns> + <tableColumn identifier="name" width="213" minWidth="43" maxWidth="1000" id="7695"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" white="0.33333298560000002" alpha="1" colorSpace="calibratedWhite"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" title="Text Cell" id="7696" customClass="SPTableTextFieldCell"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + </tableColumns> + <connections> + <outlet property="dataSource" destination="4488" id="7698"/> + <outlet property="delegate" destination="4488" id="7697"/> + </connections> + </tableView> + </subviews> + <nil key="backgroundColor"/> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" controlSize="small" horizontal="YES" id="7694"> + <rect key="frame" x="-100" y="-100" width="141" height="11"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="7693"> + <rect key="frame" x="-100" y="-100" width="15" height="20"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + </scrollView> + <scrollView focusRingType="none" borderType="none" autohidesScrollers="YES" horizontalLineScroll="19" horizontalPageScroll="10" verticalLineScroll="19" verticalPageScroll="10" hasHorizontalScroller="NO" hasVerticalScroller="NO" usesPredominantAxisScrolling="NO" id="4481" userLabel="Scroll View (Table Info Table View)"> + <rect key="frame" x="0.0" y="0.0" width="214" height="166"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" drawsBackground="NO" copiesOnScroll="NO" id="sYg-2H-T9j"> + <rect key="frame" x="0.0" y="0.0" width="214" height="166"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <tableView focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="sequential" selectionHighlightStyle="sourceList" columnReordering="NO" multipleSelection="NO" autosaveColumns="NO" typeSelect="NO" id="4484"> + <rect key="frame" x="0.0" y="0.0" width="214" height="19"/> + <autoresizingMask key="autoresizingMask"/> + <size key="intercellSpacing" width="3" height="2"/> + <color key="backgroundColor" name="_sourceListBackgroundColor" catalog="System" colorSpace="catalog"/> + <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> + <tableColumns> + <tableColumn identifier="info" width="210.8690185546875" minWidth="42.868999481201172" maxWidth="1000" id="4485"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Information"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" white="0.33333298560000002" alpha="1" colorSpace="calibratedWhite"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" title="Text Cell" id="4486" customClass="SPTableTextFieldCell"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + </tableColumns> + <connections> + <outlet property="dataSource" destination="4488" id="4493"/> + <outlet property="delegate" destination="4488" id="4492"/> + </connections> + </tableView> + </subviews> + <nil key="backgroundColor"/> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" controlSize="small" horizontal="YES" id="4482"> + <rect key="frame" x="-100" y="-100" width="141" height="11"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="0.48965516686439514" horizontal="NO" id="4483"> + <rect key="frame" x="-100" y="-100" width="15" height="20"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + </scrollView> + </subviews> + </view> + </subviews> + <holdingPriorities> + <real value="250"/> + <real value="250"/> + </holdingPriorities> + <connections> + <outlet property="collapseToggleButton" destination="7959" id="7963"/> + <outlet property="delegate" destination="68" id="6286"/> + </connections> + </splitView> + <imageView id="7846"> + <rect key="frame" x="0.0" y="0.0" width="214" height="23"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/> + <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="button_bar_spacer" id="7847"/> + </imageView> + <imageView id="7848"> + <rect key="frame" x="199" y="0.0" width="15" height="23"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES"/> + <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="button_bar_handle" id="7849"/> + </imageView> + <button toolTip="Add new table" id="7850"> + <rect key="frame" x="-1" y="-1" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_add" imagePosition="only" alignment="center" inset="2" id="7851"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + </buttonCell> + <connections> + <action selector="addTable:" target="68" id="7854"/> + </connections> + </button> + <button toolTip="Toggle the visibility of the Information panel" id="7959"> + <rect key="frame" x="92" y="-1" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_pane_hide" imagePosition="only" alignment="center" alternateImage="button_pane_show" inset="2" id="7960"> + <behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/> + <font key="font" metaFont="system"/> + </buttonCell> + <connections> + <action selector="togglePaneCollapse:" target="68" id="7962"/> + </connections> + </button> + <popUpButton id="7859"> + <rect key="frame" x="29" y="0.0" width="36" height="23"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES"/> + <popUpButtonCell key="cell" type="bevel" bezelStyle="regularSquare" imagePosition="right" alignment="center" lineBreakMode="truncatingTail" state="on" inset="2" pullsDown="YES" arrowPosition="noArrow" selectedItem="7862" id="7860"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="menu"/> + <menu key="menu" title="OtherViews" id="7861"> + <items> + <menuItem state="on" image="button_action" hidden="YES" id="7862"/> + <menuItem title="Rename Table..." toolTip="Rename the selected item" id="7917"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="renameTable:" target="68" id="7941"/> + </connections> + </menuItem> + <menuItem title="Duplicate Table..." toolTip="Duplicate the selected item" id="7918"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="copyTable:" target="68" id="7942"/> + </connections> + </menuItem> + <menuItem isSeparatorItem="YES" id="7919"/> + <menuItem title="Truncate Table" toolTip="Delete all records of selected table(s)" id="7920"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="truncateTable:" target="68" id="7938"/> + </connections> + </menuItem> + <menuItem title="Remove Table" toolTip="Remove the selected item(s)" id="7921"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="removeTable:" target="68" id="7937"/> + </connections> + </menuItem> + <menuItem isSeparatorItem="YES" id="7922"/> + <menuItem title="Open Table in New Tab" id="7923"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="openTableInNewTab:" target="68" id="7940"/> + </connections> + </menuItem> + <menuItem title="Open Table in New Window" alternate="YES" id="Ts3-iA-OpO"> + <modifierMask key="keyEquivalentModifierMask" option="YES"/> + <connections> + <action selector="openTableInNewWindow:" target="68" id="uJ9-sX-zir"/> + </connections> + </menuItem> + <menuItem isSeparatorItem="YES" id="7924"/> + <menuItem title="Export" id="7925"> + <modifierMask key="keyEquivalentModifierMask"/> + <menu key="submenu" title="Export" id="7929"> + <items> + <menuItem title="As SQL dump..." id="7931"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="exportSelectedTablesAs:" target="-2" id="7935"/> + </connections> + </menuItem> + <menuItem title="As CSV file..." tag="1" id="7932"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="exportSelectedTablesAs:" target="-2" id="7936"/> + </connections> + </menuItem> + <menuItem title="As XML file..." tag="2" id="7930"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="exportSelectedTablesAs:" target="-2" id="7934"/> + </connections> + </menuItem> + </items> + </menu> + </menuItem> + <menuItem isSeparatorItem="YES" id="7926"/> + <menuItem title="Show Create Table Syntax..." id="7927"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="showCreateTableSyntax:" target="-2" id="7933"/> + </connections> + </menuItem> + <menuItem title="Copy Create Table Syntax" id="7928"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="copyCreateTableSyntax:" target="-2" id="7939"/> + </connections> + </menuItem> + </items> + </menu> + </popUpButtonCell> + </popUpButton> + <button toolTip="Refresh table list" id="7954"> + <rect key="frame" x="61" y="-1" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_refresh" imagePosition="only" alignment="center" inset="2" id="7955"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + </buttonCell> + <connections> + <action selector="updateTables:" target="68" id="8185"/> + </connections> + </button> + </subviews> + </view> + <view identifier="MainAreaSplitPane" id="7729"> + <rect key="frame" x="215" y="0.0" width="728" height="549"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <tabView controlSize="small" type="rightTabsBezelBorder" initialItem="28" id="25"> + <rect key="frame" x="-7" y="-10" width="741" height="564"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <tabViewItems> + <tabViewItem label="Structure" identifier="source" id="28"> + <view key="view" identifier="StructureTabView" id="29"> + <rect key="frame" x="10" y="7" width="706" height="544"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <splitView dividerStyle="thin" id="674"> + <rect key="frame" x="7" y="10" width="695" height="530"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <customView identifier="TableStructureColumnsView" id="673"> + <rect key="frame" x="0.0" y="0.0" width="695" height="328"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <button toolTip="Edit Table Details (⌘4)" id="6009"> + <rect key="frame" x="632" y="-1" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_edit" imagePosition="overlaps" alignment="center" enabled="NO" state="on" inset="2" id="6010"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">4</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="viewStatus:" target="-2" id="6011"/> + </connections> + </button> + <imageView id="5129"> + <rect key="frame" x="125" y="0.0" width="507" height="23"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/> + <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="button_bar_spacer" id="5130"/> + </imageView> + <popUpButton id="8025"> + <rect key="frame" x="663" y="0.0" width="36" height="23"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/> + <popUpButtonCell key="cell" type="bevel" bezelStyle="regularSquare" imagePosition="right" alignment="center" lineBreakMode="truncatingTail" state="on" inset="2" pullsDown="YES" arrowPosition="noArrow" selectedItem="8028" id="8026"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="menu"/> + <menu key="menu" title="OtherViews" id="8027"> + <items> + <menuItem state="on" image="button_action" hidden="YES" id="8028"/> + <menuItem title="View Columns" id="8055"> + <modifierMask key="keyEquivalentModifierMask"/> + <menu key="submenu" title="View Columns" id="8056"> + <items> + <menuItem title="Key" state="on" tag="7" id="8057"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="toggleColumnView:" target="69" id="8062"/> + </connections> + </menuItem> + <menuItem title="Encoding" state="on" tag="10" id="8059"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="toggleColumnView:" target="69" id="8064"/> + </connections> + </menuItem> + <menuItem title="Collation" state="on" tag="11" id="8060"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="toggleColumnView:" target="69" id="8063"/> + </connections> + </menuItem> + <menuItem title="Comment" state="on" tag="12" id="8058"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="toggleColumnView:" target="69" id="8061"/> + </connections> + </menuItem> + </items> + </menu> + </menuItem> + </items> + </menu> + </popUpButtonCell> + </popUpButton> + <button toolTip="Duplicate selected or last field definition (⌘D)" id="5138"> + <rect key="frame" x="61" y="-1" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_duplicate" imagePosition="only" alignment="center" enabled="NO" state="on" inset="2" id="5139"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">d</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="duplicateField:" target="69" id="7834"/> + </connections> + </button> + <button toolTip="Delete selected field (⌫)" id="5136"> + <rect key="frame" x="30" y="-1" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_remove" imagePosition="overlaps" alignment="center" enabled="NO" state="on" inset="2" id="5137"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent"></string> + </buttonCell> + <connections> + <action selector="removeField:" target="69" id="5140"/> + </connections> + </button> + <button toolTip="Refresh table structure (⌘R)" id="5134"> + <rect key="frame" x="93" y="-1" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_refresh" imagePosition="overlaps" alignment="center" state="on" inset="2" id="5135"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">r</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="reloadTable:" target="69" id="5142"/> + </connections> + </button> + <button toolTip="Add field (⌥⌘A)" id="5131"> + <rect key="frame" x="-1" y="-1" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_add" imagePosition="only" alignment="center" enabled="NO" state="on" inset="2" id="5132"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">a</string> + <modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> + </buttonCell> + <connections> + <action selector="addField:" target="69" id="5133"/> + </connections> + </button> + <scrollView focusRingType="none" autohidesScrollers="YES" horizontalLineScroll="18" horizontalPageScroll="10" verticalLineScroll="18" verticalPageScroll="10" usesPredominantAxisScrolling="NO" id="231"> + <rect key="frame" x="-1" y="22" width="696" height="306"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" id="07n-i9-O0i"> + <rect key="frame" x="1" y="23" width="694" height="282"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <tableView identifier="TableStructureColumnsTableView" focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" multipleSelection="NO" autosaveName="SPTableStructureSource" rowHeight="16" headerView="3926" id="232" customClass="SPTableView"> + <rect key="frame" x="0.0" y="0.0" width="692" height="282"/> + <autoresizingMask key="autoresizingMask"/> + <size key="intercellSpacing" width="3" height="2"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> + <tableColumns> + <tableColumn identifier="name" width="57" minWidth="50" maxWidth="1000" id="233"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Field"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" white="0.33333298560000002" alpha="1" colorSpace="calibratedWhite"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="1311"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="type" width="69.5" minWidth="65" maxWidth="1000" id="245"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Type"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <comboBoxCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" buttonBordered="NO" usesDataSource="YES" numberOfVisibleItems="10" id="1304" customClass="SPComboBoxCell"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + <connections> + <outlet property="dataSource" destination="69" id="7498"/> + <outlet property="spDelegate" destination="69" id="bLE-2M-Nym"/> + </connections> + </comboBoxCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="length" width="42" minWidth="25" maxWidth="1000" id="654"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Length"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="1310"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="unsigned" width="54" minWidth="14" maxWidth="82" id="655"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Unsigned"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <buttonCell key="dataCell" type="check" bezelStyle="regularSquare" imagePosition="only" alignment="left" controlSize="small" inset="2" id="6242"> + <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/> + <font key="font" metaFont="smallSystem"/> + </buttonCell> + <tableColumnResizingMask key="resizingMask" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="zerofill" width="41" minWidth="14" maxWidth="84" id="748"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Zerofill"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <buttonCell key="dataCell" type="check" bezelStyle="regularSquare" imagePosition="only" alignment="left" controlSize="small" inset="2" id="6241"> + <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/> + <font key="font" metaFont="smallSystem"/> + </buttonCell> + <tableColumnResizingMask key="resizingMask" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="binary" width="37" minWidth="14" maxWidth="37" id="749"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Binary"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <buttonCell key="dataCell" type="check" bezelStyle="regularSquare" imagePosition="only" alignment="left" controlSize="small" inset="2" id="6240"> + <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/> + <font key="font" metaFont="smallSystem"/> + </buttonCell> + <tableColumnResizingMask key="resizingMask" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="null" width="57" minWidth="14" maxWidth="78" id="246"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Allow Null"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <buttonCell key="dataCell" type="check" bezelStyle="regularSquare" imagePosition="only" alignment="left" controlSize="small" inset="2" id="6239"> + <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/> + <font key="font" metaFont="smallSystem"/> + </buttonCell> + <tableColumnResizingMask key="resizingMask" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="Key" editable="NO" width="26" minWidth="26" maxWidth="60" id="247"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Key"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" alignment="left" title="Text Cell" id="1312"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="default" width="43.5" minWidth="34" maxWidth="1000" id="248"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Default"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="1313"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="Extra" width="66" minWidth="60" maxWidth="1000" id="249"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Extra"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <comboBoxCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" buttonBordered="NO" numberOfVisibleItems="4" id="1309"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </comboBoxCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="encoding" width="55.5" minWidth="10" maxWidth="1000" id="7484"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Encoding"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <popUpButtonCell key="dataCell" type="bevel" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="truncatingTail" borderStyle="bezel" imageScaling="proportionallyDown" inset="2" arrowPosition="arrowAtCenter" preferredEdge="maxY" id="7490"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES" changeBackground="YES" changeGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="7491" customClass="SPIdMenu"> + <userDefinedRuntimeAttributes> + <userDefinedRuntimeAttribute type="string" keyPath="menuId" value="encodingPopupMenu"/> + </userDefinedRuntimeAttributes> + <connections> + <outlet property="delegate" destination="69" id="Jbs-NM-Lzb"/> + </connections> + </menu> + </popUpButtonCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="collation" width="60.5" minWidth="10" maxWidth="1000" id="7486"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Collation"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <popUpButtonCell key="dataCell" type="bevel" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="truncatingTail" borderStyle="bezel" imageScaling="proportionallyDown" inset="2" arrowPosition="arrowAtCenter" preferredEdge="maxY" id="7493" customClass="SPPopUpButtonCell"> + <behavior key="behavior" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="7494" customClass="SPIdMenu"> + <userDefinedRuntimeAttributes> + <userDefinedRuntimeAttribute type="string" keyPath="menuId" value="collationPopupMenu"/> + </userDefinedRuntimeAttributes> + <connections> + <outlet property="delegate" destination="69" id="Dcc-ay-7AU"/> + </connections> + </menu> + </popUpButtonCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="comment" width="42" minWidth="10" maxWidth="1000" id="7488"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Comment"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="7489"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + </tableColumns> + <connections> + <outlet property="dataSource" destination="69" id="243"/> + <outlet property="delegate" destination="69" id="252"/> + <outlet property="menu" destination="6210" id="6218"/> + </connections> + </tableView> + </subviews> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </clipView> + <scroller key="horizontalScroller" verticalHuggingPriority="750" horizontal="YES" id="3925"> + <rect key="frame" x="1" y="289" width="690" height="16"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="3924"> + <rect key="frame" x="674" y="17" width="15" height="274"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <tableHeaderView key="headerView" id="3926"> + <rect key="frame" x="0.0" y="0.0" width="692" height="23"/> + <autoresizingMask key="autoresizingMask"/> + <connections> + <outlet property="menu" destination="8056" id="Uxa-5O-Q0T"/> + </connections> + </tableHeaderView> + <connections> + <outlet property="menu" destination="6210" id="6217"/> + </connections> + </scrollView> + <button hidden="YES" toolTip="Reveal the collapsed indexes pane" id="7457"> + <rect key="frame" x="124" y="-1" width="33" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_info_pane_show" imagePosition="overlaps" alignment="center" state="on" inset="2" id="7458"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + </buttonCell> + <connections> + <action selector="unhideIndexesView:" target="69" id="7462"/> + </connections> + </button> + </subviews> + </customView> + <customView identifier="TableStructureIndexesView" id="672"> + <rect key="frame" x="0.0" y="329" width="695" height="201"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <imageView id="5148"> + <rect key="frame" x="93" y="0.0" width="602" height="23"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/> + <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="button_bar_spacer" id="5149"/> + </imageView> + <button toolTip="Delete selected index" id="5152"> + <rect key="frame" x="30" y="-1" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_remove" imagePosition="overlaps" alignment="center" enabled="NO" state="on" inset="2" id="5153"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + </buttonCell> + <connections> + <action selector="removeIndex:" target="7073" id="7081"/> + </connections> + </button> + <button toolTip="Refresh table indexes (⌘R)" id="5151"> + <rect key="frame" x="61" y="-1" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_refresh" imagePosition="overlaps" alignment="center" state="on" inset="2" id="5154"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">r</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="reloadTable:" target="69" id="5162"/> + </connections> + </button> + <button toolTip="Add index" id="5150"> + <rect key="frame" x="-1" y="-1" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_add" imagePosition="only" alignment="center" enabled="NO" state="on" inset="2" id="5155"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + </buttonCell> + <connections> + <action selector="addIndex:" target="7073" id="7080"/> + </connections> + </button> + <scrollView identifier="TableStructureIndexesTableScrollView" focusRingType="none" autohidesScrollers="YES" horizontalLineScroll="18" horizontalPageScroll="10" verticalLineScroll="18" verticalPageScroll="10" usesPredominantAxisScrolling="NO" id="287"> + <rect key="frame" x="-1" y="22" width="696" height="159"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" id="N3x-Gt-GZH"> + <rect key="frame" x="1" y="23" width="694" height="135"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <tableView identifier="TableStructureIndexesTableView" focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" multipleSelection="NO" autosaveColumns="NO" rowHeight="16" headerView="3923" id="289" customClass="SPTableView"> + <rect key="frame" x="0.0" y="0.0" width="694" height="135"/> + <autoresizingMask key="autoresizingMask"/> + <size key="intercellSpacing" width="3" height="2"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> + <tableColumns> + <tableColumn identifier="Non_unique" editable="NO" width="79.5" minWidth="40" maxWidth="1000" id="288"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Non_unique"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" white="0.33333298560000002" alpha="1" colorSpace="calibratedWhite"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" alignment="left" title="Text Cell" id="1314"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="Key_name" editable="NO" width="69.5" minWidth="40" maxWidth="1000" id="290"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Key_name"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" white="0.33333298560000002" alpha="1" colorSpace="calibratedWhite"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" alignment="left" title="Text Cell" id="1315"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="Seq_in_index" editable="NO" width="81.5" minWidth="10" maxWidth="1000" id="291"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Seq_in_index"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" alignment="left" title="Text Cell" id="1316"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="Column_name" editable="NO" width="88.5" minWidth="10" maxWidth="1000" id="292"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Column_name"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" alignment="left" title="Text Cell" id="1317"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="Collation" editable="NO" width="59.5" minWidth="10" maxWidth="1000" id="293"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Collation"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" alignment="left" title="Text Cell" id="1323"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="Cardinality" editable="NO" width="69.5" minWidth="10" maxWidth="1000" id="294"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Cardinality"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" alignment="left" title="Text Cell" id="1322"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="Sub_part" editable="NO" width="59.5" minWidth="10" maxWidth="1000" id="295"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Sub_part"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" alignment="left" title="Text Cell" id="1318"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="Packed" editable="NO" width="46.5" minWidth="10" maxWidth="1000" id="296"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Packed"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" alignment="left" title="Text Cell" id="1319"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="Comment" editable="NO" width="108.97599792480469" minWidth="55.976001739501953" maxWidth="1000" id="297"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Comment"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" alignment="left" title="Text Cell" id="1320"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + </tableColumns> + <connections> + <outlet property="dataSource" destination="7073" id="7091"/> + <outlet property="delegate" destination="7073" id="7092"/> + <outlet property="menu" destination="6219" id="6223"/> + </connections> + </tableView> + </subviews> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </clipView> + <scroller key="horizontalScroller" verticalHuggingPriority="750" horizontal="YES" id="3922"> + <rect key="frame" x="1" y="142" width="690" height="16"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="3921"> + <rect key="frame" x="611" y="17" width="15" height="126"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <tableHeaderView key="headerView" id="3923"> + <rect key="frame" x="0.0" y="0.0" width="694" height="23"/> + <autoresizingMask key="autoresizingMask"/> + </tableHeaderView> + </scrollView> + <view id="6024"> + <rect key="frame" x="0.0" y="181" width="695" height="20"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <subviews> + <textField verticalHuggingPriority="750" id="6027"> + <rect key="frame" x="3" y="3" width="155" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="INDEXES" id="6028"> + <font key="font" metaFont="smallSystemBold"/> + <color key="textColor" red="0.36078432199999999" green="0.4313725531" blue="0.50588238240000005" alpha="1" colorSpace="calibratedRGB"/> + <color key="backgroundColor" red="0.91112124920000004" green="0.91112124920000004" blue="0.91112124920000004" alpha="0.0" colorSpace="calibratedRGB"/> + </textFieldCell> + </textField> + <imageView id="4503"> + <rect key="frame" x="678" y="3" width="10" height="13"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMinY="YES"/> + <imageCell key="cell" refusesFirstResponder="YES" alignment="left" image="grabber-horizontal" id="4504"/> + </imageView> + </subviews> + </view> + </subviews> + </customView> + </subviews> + <holdingPriorities> + <real value="250"/> + <real value="250"/> + </holdingPriorities> + <connections> + <outlet property="delegate" destination="69" id="679"/> + </connections> + </splitView> + </subviews> + </view> + </tabViewItem> + <tabViewItem label="Content" identifier="content" id="26"> + <view key="view" identifier="ContentTabView" id="27"> + <rect key="frame" x="10" y="7" width="706" height="544"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <button toolTip="Add row (⌥⌘A)" id="5175"> + <rect key="frame" x="6" y="9" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_add" imagePosition="only" alignment="center" enabled="NO" inset="2" id="5184"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">a</string> + <modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> + </buttonCell> + <connections> + <action selector="addRow:" target="67" id="5188"/> + </connections> + </button> + <button toolTip="Refresh table contents (⌘R)" id="5176"> + <rect key="frame" x="100" y="9" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_refresh" imagePosition="overlaps" alignment="center" inset="2" id="5183"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">r</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="reloadTable:" target="67" id="5185"/> + </connections> + </button> + <button toolTip="Delete selected row(s) (⌫)" id="5177"> + <rect key="frame" x="37" y="9" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_remove" imagePosition="only" alignment="center" enabled="NO" inset="2" id="5182"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent"></string> + </buttonCell> + <connections> + <action selector="removeRow:" target="67" id="5187"/> + </connections> + </button> + <button toolTip="Duplicate selected row (⌘D)" id="5178"> + <rect key="frame" x="68" y="9" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_duplicate" imagePosition="overlaps" alignment="center" enabled="NO" inset="2" id="5181"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">d</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="duplicateRow:" target="67" id="7838"/> + </connections> + </button> + <imageView id="5179"> + <rect key="frame" x="163" y="10" width="539" height="23"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/> + <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="button_bar_spacer" id="5180"/> + </imageView> + <button toolTip="Toggle between editing simple text cells as a spreadsheet or in pop-up sheets" id="5201"> + <rect key="frame" x="131" y="9" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_edit_mode" imagePosition="overlaps" alignment="center" alternateImage="button_edit_mode_selected" inset="2" id="5202"> + <behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/> + <font key="font" metaFont="system"/> + </buttonCell> + <connections> + <binding destination="1907" name="value" keyPath="values.EditInSheetEnabled" id="6351"/> + </connections> + </button> + <textField verticalHuggingPriority="750" id="261"> + <rect key="frame" x="166" y="6" width="421" height="22"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/> + <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="left" id="3759"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <button toolTip="View next page of results" id="6647"> + <rect key="frame" x="654" y="9" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_right" imagePosition="only" alignment="center" inset="2" id="6648"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + </buttonCell> + <connections> + <action selector="navigatePaginationFromButton:" target="67" id="6666"/> + </connections> + </button> + <button toolTip="View previous page of results" id="6650"> + <rect key="frame" x="592" y="9" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_left" imagePosition="only" alignment="center" inset="2" id="6651"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + </buttonCell> + <connections> + <action selector="navigatePaginationFromButton:" target="67" id="6665"/> + </connections> + </button> + <button toolTip="Jump to page (⌘J) or view pagination options" id="6653"> + <rect key="frame" x="623" y="9" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_pagination" imagePosition="overlaps" alignment="center" inset="2" id="6654"> + <behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent">j</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="togglePagination:" target="67" id="6662"/> + </connections> + </button> + <splitView autosaveName="" dividerStyle="thin" id="yTv-Lq-Y3H" customClass="SPSplitView"> + <rect key="frame" x="6" y="33" width="696" height="505"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <customView id="gSO-0R-Xdc"> + <rect key="frame" x="0.0" y="0.0" width="696" height="25"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="10" horizontalPageScroll="10" verticalLineScroll="10" verticalPageScroll="10" hasHorizontalScroller="NO" hasVerticalScroller="NO" usesPredominantAxisScrolling="NO" id="CIQ-tc-1Fn"> + <rect key="frame" x="0.0" y="-1" width="607" height="27"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" drawsBackground="NO" copiesOnScroll="NO" id="kdv-Wp-s5h"> + <rect key="frame" x="0.0" y="0.0" width="607" height="27"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <ruleEditor nestingMode="compound" canRemoveAllRows="YES" rowHeight="25" id="FF9-z2-9od"> + <rect key="frame" x="0.0" y="0.0" width="607" height="27"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES" flexibleMaxY="YES"/> + <connections> + <outlet property="delegate" destination="ki9-Po-bdr" id="rFd-07-AiC"/> + </connections> + </ruleEditor> + </subviews> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" controlSize="small" horizontal="YES" id="dIO-Od-K6g"> + <rect key="frame" x="-100" y="-100" width="223" height="11"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="1" controlSize="small" horizontal="NO" id="wlW-vM-FUZ"> + <rect key="frame" x="-100" y="-100" width="11" height="133"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + </scrollView> + <button verticalHuggingPriority="750" id="gTZ-sd-Ef7"> + <rect key="frame" x="615" y="2" width="54" height="19"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundRect" title="Filter" bezelStyle="roundedRect" alignment="center" state="on" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="khN-PI-iEA"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + </buttonCell> + <connections> + <action selector="filterTable:" target="67" id="RqZ-Kt-0nW"/> + </connections> + </button> + </subviews> + </customView> + <customView id="AjX-OA-b5u"> + <rect key="frame" x="0.0" y="26" width="696" height="479"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <progressIndicator horizontalHuggingPriority="750" verticalHuggingPriority="750" maxValue="100" displayedWhenStopped="NO" bezeled="NO" indeterminate="YES" controlSize="small" style="spinning" id="858"> + <rect key="frame" x="674" y="458" width="16" height="16"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMinY="YES"/> + </progressIndicator> + <button verticalHuggingPriority="750" id="4676"> + <rect key="frame" x="614" y="455" width="54" height="19"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMinY="YES"/> + <buttonCell key="cell" type="roundRect" title="Filter" bezelStyle="roundedRect" alignment="center" state="on" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="4677"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + </buttonCell> + <connections> + <action selector="filterTable:" target="67" id="4678"/> + </connections> + </button> + <splitView vertical="YES" id="7777"> + <rect key="frame" x="-1" y="451" width="606" height="27"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <subviews> + <customView id="7778"> + <rect key="frame" x="0.0" y="0.0" width="314" height="27"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <textField verticalHuggingPriority="750" id="3971"> + <rect key="frame" x="7" y="6" width="67" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Search:" id="3972"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <popUpButton toolTip="Choose a field you want to use for your search" verticalHuggingPriority="750" id="146"> + <rect key="frame" x="80" y="3" width="119" height="20"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <popUpButtonCell key="cell" type="roundRect" title="field" bezelStyle="roundedRect" alignment="left" controlSize="small" lineBreakMode="truncatingTail" enabled="NO" state="on" borderStyle="borderAndBezel" inset="2" arrowPosition="arrowAtCenter" preferredEdge="maxY" selectedItem="144" id="3754"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="147"> + <items> + <menuItem title="field" state="on" id="144"/> + </items> + </menu> + </popUpButtonCell> + <connections> + <action selector="setCompareTypes:" target="67" id="196"/> + </connections> + </popUpButton> + <popUpButton toolTip="Choose a search operator" verticalHuggingPriority="750" id="156"> + <rect key="frame" x="206" y="0.0" width="105" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMinY="YES"/> + <popUpButtonCell key="cell" type="roundRect" title="=" bezelStyle="roundedRect" alignment="left" controlSize="small" lineBreakMode="truncatingTail" enabled="NO" state="on" borderStyle="borderAndBezel" inset="2" arrowPosition="arrowAtCenter" preferredEdge="maxY" selectedItem="154" id="3755"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="157"> + <items> + <menuItem title="=" state="on" id="154"/> + </items> + </menu> + </popUpButtonCell> + <connections> + <action selector="toggleFilterField:" target="67" id="4685"/> + </connections> + </popUpButton> + </subviews> + </customView> + <customView id="7779"> + <rect key="frame" x="323" y="0.0" width="283" height="27"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <searchField hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" id="6371"> + <rect key="frame" x="168" y="4" width="110" height="19"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" widthSizable="YES" flexibleMinY="YES"/> + <searchFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" borderStyle="bezel" bezelStyle="round" sendsSearchStringImmediately="YES" sendsWholeSearchString="YES" id="6372"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </searchFieldCell> + <connections> + <action selector="filterTable:" target="67" id="6536"/> + </connections> + </searchField> + <searchField hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" id="6369"> + <rect key="frame" x="5" y="4" width="110" height="19"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMinY="YES"/> + <searchFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" borderStyle="bezel" bezelStyle="round" id="6370"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </searchFieldCell> + </searchField> + <textField hidden="YES" verticalHuggingPriority="750" id="6364"> + <rect key="frame" x="128" y="6" width="28" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="AND" id="6365"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <searchField wantsLayer="YES" verticalHuggingPriority="750" id="3963"> + <rect key="frame" x="5" y="4" width="276" height="19"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <searchFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" enabled="NO" borderStyle="bezel" usesSingleLineMode="YES" bezelStyle="round" sendsSearchStringImmediately="YES" sendsWholeSearchString="YES" id="3964"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </searchFieldCell> + <connections> + <action selector="filterTable:" target="67" id="4680"/> + </connections> + </searchField> + </subviews> + </customView> + </subviews> + <holdingPriorities> + <real value="250"/> + <real value="250"/> + </holdingPriorities> + <connections> + <outlet property="delegate" destination="67" id="7780"/> + </connections> + </splitView> + <scrollView focusRingType="none" autohidesScrollers="YES" horizontalLineScroll="18" horizontalPageScroll="10" verticalLineScroll="18" verticalPageScroll="10" usesPredominantAxisScrolling="NO" id="35"> + <rect key="frame" x="-1" y="-2" width="696" height="450"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" id="lwO-LP-RWZ"> + <rect key="frame" x="1" y="23" width="694" height="426"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <tableView identifier="TableContentTableView" focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="none" alternatingRowBackgroundColors="YES" autosaveColumns="NO" rowHeight="16" headerView="3920" id="36" customClass="SPCopyTable"> + <rect key="frame" x="0.0" y="0.0" width="626" height="18"/> + <autoresizingMask key="autoresizingMask"/> + <size key="intercellSpacing" width="3" height="2"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> + <tableColumns> + <tableColumn width="623" minWidth="8" maxWidth="1000" id="38"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" white="0.33333298560000002" alpha="1" colorSpace="calibratedWhite"/> + </tableHeaderCell> + <textFieldCell key="dataCell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="3903"> + <font key="font" metaFont="system"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + </tableColumns> + <connections> + <outlet property="dataSource" destination="67" id="72"/> + <outlet property="delegate" destination="67" id="203"/> + <outlet property="menu" destination="6225" id="6229"/> + </connections> + </tableView> + </subviews> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="0.021626397967338562" horizontal="YES" id="3919"> + <rect key="frame" x="1" y="458" width="429" height="15"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="3918"> + <rect key="frame" x="680" y="17" width="15" height="450"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <tableHeaderView key="headerView" id="3920"> + <rect key="frame" x="0.0" y="0.0" width="694" height="23"/> + <autoresizingMask key="autoresizingMask"/> + </tableHeaderView> + </scrollView> + </subviews> + </customView> + </subviews> + <holdingPriorities> + <real value="250"/> + <real value="250"/> + </holdingPriorities> + <connections> + <outlet property="delegate" destination="ki9-Po-bdr" id="28j-fv-HkI"/> + </connections> + </splitView> + </subviews> + </view> + </tabViewItem> + <tabViewItem label="Custom Query" identifier="customQuery" id="119"> + <view key="view" identifier="QueryTabView" id="120"> + <rect key="frame" x="10" y="7" width="706" height="544"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <imageView id="7965"> + <rect key="frame" x="6" y="10" width="696" height="23"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/> + <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="button_bar_spacer" id="7966"/> + </imageView> + <popUpButton id="7975"> + <rect key="frame" x="36" y="10" width="36" height="23"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <popUpButtonCell key="cell" type="bevel" bezelStyle="regularSquare" imagePosition="right" alignment="center" lineBreakMode="truncatingTail" state="on" inset="2" pullsDown="YES" arrowPosition="noArrow" selectedItem="7978" id="7976"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="menu"/> + <menu key="menu" title="OtherViews" id="7977"> + <items> + <menuItem state="on" image="button_action" hidden="YES" id="7978"/> + <menuItem title="Export Result" id="8005"> + <modifierMask key="keyEquivalentModifierMask"/> + <menu key="submenu" title="Export Result" id="8006"> + <items> + <menuItem title="As CSV file..." tag="1" id="8008"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="exportCustomQueryResultAsFormat:" target="5377" id="8009"/> + </connections> + </menuItem> + <menuItem title="As XML file..." tag="2" id="8007"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="exportCustomQueryResultAsFormat:" target="5377" id="8010"/> + </connections> + </menuItem> + </items> + <connections> + <outlet property="delegate" destination="5377" id="8011"/> + </connections> + </menu> + </menuItem> + </items> + </menu> + </popUpButtonCell> + </popUpButton> + <button toolTip="Toggle the visibility of the Query Information Pane" id="7970"> + <rect key="frame" x="6" y="9" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_pane_hide" imagePosition="only" alignment="center" alternateImage="button_pane_show" inset="2" id="7971"> + <behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">a</string> + <modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> + </buttonCell> + <connections> + <action selector="toggleCollapse:" target="7206" id="8024"/> + </connections> + </button> + <button toolTip="Toggle between editing simple text cells as a spreadsheet or in pop-up sheets" id="8012"> + <rect key="frame" x="68" y="9" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_edit_mode" imagePosition="only" alignment="center" alternateImage="button_edit_mode_selected" inset="2" id="8013"> + <behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/> + <font key="font" metaFont="system"/> + </buttonCell> + <connections> + <binding destination="1907" name="value" keyPath="values.EditInSheetEnabled" id="8016"/> + </connections> + </button> + <splitView dividerStyle="thin" id="7206" customClass="SPSplitView"> + <rect key="frame" x="6" y="33" width="696" height="509"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <view id="7207"> + <rect key="frame" x="0.0" y="0.0" width="696" height="391"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <splitView id="7209" customClass="SPSplitView"> + <rect key="frame" x="0.0" y="0.0" width="696" height="389"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <customView id="7210"> + <rect key="frame" x="0.0" y="0.0" width="696" height="143"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <scrollView focusRingType="none" autohidesScrollers="YES" horizontalLineScroll="10" horizontalPageScroll="10" verticalLineScroll="10" verticalPageScroll="10" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" id="8251"> + <rect key="frame" x="0.0" y="1" width="696" height="143"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" id="npE-bg-ppa"> + <rect key="frame" x="1" y="1" width="694" height="141"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <textView focusRingType="none" importsGraphics="NO" richText="NO" horizontallyResizable="YES" findStyle="panel" allowsDocumentBackgroundColorChange="YES" allowsUndo="YES" usesRuler="YES" usesFontPanel="YES" verticallyResizable="YES" id="8254" customClass="SPTextView"> + <rect key="frame" x="0.0" y="0.0" width="694" height="141"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + <size key="minSize" width="694" height="141"/> + <size key="maxSize" width="100000" height="10000000"/> + <color key="insertionPointColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <size key="minSize" width="694" height="141"/> + <size key="maxSize" width="100000" height="10000000"/> + <connections> + <binding destination="1907" name="textColor" keyPath="values.CustomQueryEditorTextColor" id="8258"> + <dictionary key="options"> + <string key="NSValueTransformerName">NSUnarchiveFromData</string> + </dictionary> + </binding> + <outlet property="customQueryInstance" destination="134" id="8259"/> + <outlet property="delegate" destination="134" id="8260"/> + <outlet property="scrollView" destination="8251" id="8255"/> + <outlet property="tableDocumentInstance" destination="-2" id="8261"/> + <outlet property="tablesListInstance" destination="68" id="8262"/> + </connections> + </textView> + </subviews> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="1" controlSize="small" horizontal="YES" id="8253"> + <rect key="frame" x="-100" y="-100" width="87" height="11"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="8252"> + <rect key="frame" x="224" y="1" width="15" height="133"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + </scrollView> + </subviews> + </customView> + <customView id="7211"> + <rect key="frame" x="0.0" y="152" width="696" height="237"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <imageView id="7222"> + <rect key="frame" x="26" y="214" width="670" height="23"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="button_bar_spacer" id="7230"/> + </imageView> + <popUpButton id="7221"> + <rect key="frame" x="-13" y="214" width="48" height="23"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <popUpButtonCell key="cell" type="bevel" bezelStyle="regularSquare" imagePosition="right" alignment="center" lineBreakMode="truncatingTail" inset="2" pullsDown="YES" arrowPosition="noArrow" autoenablesItems="NO" selectedItem="7236" id="7231"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="menu"/> + <menu key="menu" title="OtherViews" autoenablesItems="NO" id="7232"> + <items> + <menuItem image="button_action" onStateImage="67DEAE3B-36D8-4354-8A9D-3F5321D4DD08" mixedStateImage="042FBEB4-6486-42A0-9D5E-C853A7B3691F" hidden="YES" id="7247"/> + <menuItem title="Previous Query from History" tag="3" keyEquivalent="" toolTip="Replaces the current query by the previous one coming from the history." id="7243"> + <modifierMask key="keyEquivalentModifierMask" control="YES"/> + <connections> + <action selector="gearMenuItemSelected:" target="134" id="7319"/> + </connections> + </menuItem> + <menuItem title="Next Query from History" tag="4" keyEquivalent="" toolTip="Replaces the current query by the next one coming from the history." id="7242"> + <modifierMask key="keyEquivalentModifierMask" control="YES"/> + <connections> + <action selector="gearMenuItemSelected:" target="134" id="7315"/> + </connections> + </menuItem> + <menuItem title="History Replaces Editor Content" id="7253"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <binding destination="1907" name="value" keyPath="values.QueryHistoryReplacesContent" id="7287"/> + </connections> + </menuItem> + <menuItem isSeparatorItem="YES" id="7241"/> + <menuItem title="Favorite Replaces Editor Content" id="7251"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <binding destination="1907" name="value" keyPath="values.QueryFavoriteReplacesContent" id="7294"/> + </connections> + </menuItem> + <menuItem isSeparatorItem="YES" id="7252"/> + <menuItem title="Shift Right" tag="6" keyEquivalent="]" id="7240"> + <connections> + <action selector="gearMenuItemSelected:" target="134" id="7327"/> + </connections> + </menuItem> + <menuItem title="Shift Left" tag="7" keyEquivalent="[" id="7239"> + <connections> + <action selector="gearMenuItemSelected:" target="134" id="7322"/> + </connections> + </menuItem> + <menuItem title="Comment Line" tag="11" keyEquivalent="/" id="7249"> + <connections> + <action selector="gearMenuItemSelected:" target="134" id="7308"/> + </connections> + </menuItem> + <menuItem title="Comment Current Query" tag="12" enabled="NO" alternate="YES" keyEquivalent="/" id="7250"> + <modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> + <connections> + <action selector="gearMenuItemSelected:" target="134" id="7328"/> + </connections> + </menuItem> + <menuItem title="Completion List" tag="8" id="7238"> + <string key="keyEquivalent" base64-UTF8="YES"> +Gw +</string> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="gearMenuItemSelected:" target="134" id="7309"/> + </connections> + </menuItem> + <menuItem title="Show Completion List" id="7255"> + <modifierMask key="keyEquivalentModifierMask"/> + <menu key="submenu" title="Show Completion List" id="7256"> + <items> + <menuItem title="All Databases Names" tag="8000" keyEquivalent="1" id="7257"> + <modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> + <connections> + <action selector="showCompletionList:" target="134" id="7323"/> + </connections> + </menuItem> + <menuItem title="All Table and View Names" tag="8001" keyEquivalent="2" id="7258"> + <modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> + <connections> + <action selector="showCompletionList:" target="134" id="7310"/> + </connections> + </menuItem> + <menuItem title="All Field Names From Current Table" tag="8002" keyEquivalent="3" id="7259"> + <modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> + <connections> + <action selector="showCompletionList:" target="134" id="7317"/> + </connections> + </menuItem> + </items> + </menu> + </menuItem> + <menuItem isSeparatorItem="YES" id="7237"/> + <menuItem title="Editor Font..." id="7233"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="gearMenuItemSelected:" target="134" id="7320"/> + </connections> + </menuItem> + <menuItem title="Indent New Lines" state="on" tag="9" id="7236"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="gearMenuItemSelected:" target="134" id="7321"/> + <binding destination="1907" name="value" keyPath="values.CustomQueryAutoIndent" id="7295"/> + </connections> + </menuItem> + <menuItem title="Auto-pair Characters" state="on" tag="10" id="7235"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="gearMenuItemSelected:" target="134" id="7307"/> + <binding destination="1907" name="value" keyPath="values.CustomQueryAutoPairCharacters" id="7291"/> + </connections> + </menuItem> + <menuItem title="Auto-uppercase Keywords" id="7234"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="gearMenuItemSelected:" target="134" id="7313"/> + <binding destination="1907" name="value" keyPath="values.CustomQueryAutoUppercaseKeywords" id="7289"/> + </connections> + </menuItem> + <menuItem title="Auto-completion" id="7254"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <binding destination="1907" name="value" keyPath="values.CustomQueryAutoComplete" id="7292"/> + </connections> + </menuItem> + <menuItem title="Update Help while typing" id="7248"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="gearMenuItemSelected:" target="134" id="7318"/> + <binding destination="1907" name="value" keyPath="values.CustomQueryUpdateAutoHelp" id="7293"/> + </connections> + </menuItem> + </items> + </menu> + </popUpButtonCell> + </popUpButton> + <popUpButton toolTip="Choose a favorite from the menu or save queries to the favorites (⌥⌘F)" verticalHuggingPriority="750" id="7218"> + <rect key="frame" x="38" y="214" width="129" height="22"/> + <autoresizingMask key="autoresizingMask" flexibleMinY="YES"/> + <popUpButtonCell key="cell" type="recessed" title="Query Favorites" bezelStyle="recessed" alignment="center" controlSize="small" lineBreakMode="clipping" borderStyle="borderAndBezel" inset="2" pullsDown="YES" preferredEdge="maxY" selectedItem="7264" id="7262"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES" changeBackground="YES" changeGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent">f</string> + <modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> + <menu key="menu" title="OtherViews" id="7263"> + <items> + <menuItem title="Query Favorites" onStateImage="BD7FAE47-1BD9-41DA-ADBF-6E5D1CB5EB44" mixedStateImage="8A84264F-2AAA-441A-84CB-02820F5C6FC1" hidden="YES" id="7264"/> + <menuItem title="Save Query to Favorites" tag="100000" toolTip="Save current query, selection, or - if no selection or current query could be found - the entire content to Favorite." id="7265"> + <modifierMask key="keyEquivalentModifierMask" option="YES"/> + </menuItem> + <menuItem title="Save All to Favorites" tag="100001" alternate="YES" toolTip="Save editor content to Favorite. Press ⌥ to restrict for current query or selection." id="7269"> + <modifierMask key="keyEquivalentModifierMask"/> + </menuItem> + <menuItem title="Edit Favorites..." id="7266"/> + <menuItem isSeparatorItem="YES" id="7267"/> + <menuItem title="..placeholder for seachfield.." id="7268"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <outlet property="view" destination="6431" id="7303"/> + </connections> + </menuItem> + <menuItem isSeparatorItem="YES" id="7270"/> + </items> + <connections> + <outlet property="delegate" destination="134" id="7306"/> + </connections> + </menu> + </popUpButtonCell> + <connections> + <action selector="chooseQueryFavorite:" target="134" id="7316"/> + </connections> + </popUpButton> + <popUpButton toolTip="Choose a query from your recent queries (⌥⌘Y)" verticalHuggingPriority="750" id="7217"> + <rect key="frame" x="177" y="214" width="145" height="22"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <popUpButtonCell key="cell" type="recessed" title="Query History" bezelStyle="recessed" alignment="center" controlSize="small" lineBreakMode="clipping" borderStyle="borderAndBezel" inset="2" pullsDown="YES" preferredEdge="maxY" selectedItem="7273" id="7271"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES" changeBackground="YES" changeGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent">y</string> + <modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> + <menu key="menu" title="OtherViews" id="7272"> + <items> + <menuItem title="Query History" onStateImage="61CB6A24-92F9-4EDA-869D-0E72829279E1" mixedStateImage="A4B5929C-AB4D-4ABB-AB4F-8F7E17D2FB49" hidden="YES" id="7273"/> + <menuItem title="Copy History" tag="300000" toolTip="Copy all history items onto the clipboard." id="7279"> + <modifierMask key="keyEquivalentModifierMask" option="YES"/> + <connections> + <action selector="copyQueryHistory:" target="134" id="7312"/> + </connections> + </menuItem> + <menuItem title="Save History…" tag="300001" alternate="YES" toolTip="Save all history items to file. Press ⌥ to copy all history items onto the clipboard." id="7276"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="saveQueryHistory:" target="134" id="7324"/> + </connections> + </menuItem> + <menuItem title="Clear History" tag="300002" id="7277"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="clearQueryHistory:" target="134" id="7311"/> + </connections> + </menuItem> + <menuItem isSeparatorItem="YES" id="7278"/> + <menuItem title="..placeholder for seachfield.." id="7274"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <outlet property="view" destination="6447" id="7299"/> + </connections> + </menuItem> + <menuItem isSeparatorItem="YES" id="7275"/> + </items> + <connections> + <outlet property="delegate" destination="134" id="7302"/> + </connections> + </menu> + </popUpButtonCell> + <connections> + <action selector="chooseQueryHistory:" target="134" id="7326"/> + <binding destination="1907" name="hidden" keyPath="values.CustomQueryMaxHistoryItems" id="7290"> + <dictionary key="options"> + <string key="NSValueTransformerName">NSNegateBoolean</string> + </dictionary> + </binding> + </connections> + </popUpButton> + <scrollView focusRingType="none" autohidesScrollers="YES" horizontalLineScroll="18" horizontalPageScroll="10" verticalLineScroll="18" verticalPageScroll="10" usesPredominantAxisScrolling="NO" id="7223"> + <rect key="frame" x="0.0" y="-1" width="696" height="215"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" id="NVV-XL-mVZ"> + <rect key="frame" x="1" y="23" width="694" height="191"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <tableView identifier="CustomQueryResultsTableView" focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" alternatingRowBackgroundColors="YES" autosaveColumns="NO" rowHeight="16" headerView="7227" id="7224" customClass="SPCopyTable"> + <rect key="frame" x="0.0" y="0.0" width="694" height="191"/> + <autoresizingMask key="autoresizingMask"/> + <size key="intercellSpacing" width="3" height="2"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> + <tableColumns> + <tableColumn editable="NO" width="691" minWidth="40" maxWidth="1000" id="7228"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" white="0.33333298560000002" alpha="1" colorSpace="calibratedWhite"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" alignment="left" title="Text Cell" id="7229"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + </tableColumns> + <connections> + <outlet property="dataSource" destination="134" id="7305"/> + <outlet property="delegate" destination="134" id="7304"/> + <outlet property="menu" destination="7467" id="7479"/> + </connections> + </tableView> + </subviews> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="1" horizontal="YES" id="7226"> + <rect key="frame" x="1" y="199" width="693" height="15"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="7225"> + <rect key="frame" x="680" y="17" width="15" height="199"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <tableHeaderView key="headerView" id="7227"> + <rect key="frame" x="0.0" y="0.0" width="694" height="23"/> + <autoresizingMask key="autoresizingMask"/> + </tableHeaderView> + </scrollView> + <popUpButton verticalHuggingPriority="750" id="8316" customClass="SPComboPopupButton"> + <rect key="frame" x="508" y="214" width="180" height="22"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMinY="YES"/> + <popUpButtonCell key="cell" type="roundRect" title="Run Current" bezelStyle="roundedRect" alignment="center" controlSize="small" lineBreakMode="truncatingTail" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" pullsDown="YES" selectedItem="8319" id="8317" customClass="SPComboPopupButtonCell"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="8318"> + <items> + <menuItem title="Run Current" hidden="YES" id="8319"/> + <menuItem title="Run Current Query" tag="2" keyEquivalent="r" id="8323"> + <connections> + <action selector="runPrimaryQueryAction:" target="134" id="8329"/> + </connections> + </menuItem> + <menuItem isSeparatorItem="YES" id="8327"/> + <menuItem title="Run All Queries" tag="1" keyEquivalent="r" id="8324"> + <modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> + <connections> + <action selector="runSecondaryQueryAction:" target="134" id="8330"/> + </connections> + </menuItem> + <menuItem title="Switch Default" id="8321"> + <connections> + <action selector="switchDefaultQueryAction:" target="134" id="8333"/> + </connections> + </menuItem> + </items> + </menu> + </popUpButtonCell> + <connections> + <action selector="runPrimaryQueryAction:" target="134" id="8328"/> + </connections> + </popUpButton> + </subviews> + </customView> + </subviews> + <holdingPriorities> + <real value="250"/> + <real value="250"/> + </holdingPriorities> + <connections> + <outlet property="delegate" destination="134" id="7298"/> + </connections> + </splitView> + </subviews> + </view> + <view id="7208"> + <rect key="frame" x="0.0" y="392" width="696" height="117"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <textField verticalHuggingPriority="750" id="7429"> + <rect key="frame" x="15" y="91" width="363" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Query Status" id="7430"> + <font key="font" metaFont="smallSystemBold"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="10" horizontalPageScroll="10" verticalLineScroll="10" verticalPageScroll="10" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" id="8245"> + <rect key="frame" x="12" y="12" width="672" height="72"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" drawsBackground="NO" copiesOnScroll="NO" id="Nr9-eI-xLJ"> + <rect key="frame" x="0.0" y="0.0" width="672" height="72"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <textView editable="NO" drawsBackground="NO" importsGraphics="NO" horizontallyResizable="YES" usesFontPanel="YES" verticallyResizable="YES" allowsNonContiguousLayout="YES" id="8248"> + <rect key="frame" x="0.0" y="0.0" width="672" height="72"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + <size key="minSize" width="672" height="72"/> + <size key="maxSize" width="887" height="10000000"/> + <color key="insertionPointColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <size key="minSize" width="672" height="72"/> + <size key="maxSize" width="887" height="10000000"/> + </textView> + </subviews> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="1" horizontal="YES" id="8247"> + <rect key="frame" x="-100" y="-100" width="87" height="18"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="8246"> + <rect key="frame" x="225" y="0.0" width="15" height="135"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + </scrollView> + </subviews> + </view> + </subviews> + <holdingPriorities> + <real value="250"/> + <real value="250"/> + </holdingPriorities> + <connections> + <outlet property="collapseToggleButton" destination="7970" id="8022"/> + <outlet property="delegate" destination="134" id="7337"/> + </connections> + </splitView> + <textField verticalHuggingPriority="750" id="7967"> + <rect key="frame" x="103" y="12" width="582" height="17"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/> + <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="left" id="7968"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + </subviews> + </view> + </tabViewItem> + <tabViewItem label="Status" identifier="status" id="1245"> + <view key="view" identifier="StatusTabView" id="1246"> + <rect key="frame" x="10" y="7" width="706" height="544"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <splitView autosaveName="TableInfoSplitter" id="5904" customClass="SPSplitView"> + <rect key="frame" x="12" y="30" width="663" height="280"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <customView id="5905"> + <rect key="frame" x="0.0" y="0.0" width="663" height="72"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <textField verticalHuggingPriority="750" id="5809"> + <rect key="frame" x="4" y="58" width="100" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Comments:" id="5810"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <scrollView horizontalLineScroll="10" horizontalPageScroll="10" verticalLineScroll="10" verticalPageScroll="10" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" id="8233"> + <rect key="frame" x="109" y="0.0" width="554" height="72"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" id="fhZ-nZ-AwI"> + <rect key="frame" x="1" y="1" width="552" height="70"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <textView importsGraphics="NO" richText="NO" findStyle="panel" continuousSpellChecking="YES" verticallyResizable="YES" smartInsertDelete="YES" id="8236"> + <rect key="frame" x="0.0" y="0.0" width="552" height="70"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + <size key="minSize" width="552" height="70"/> + <size key="maxSize" width="1097" height="10000000"/> + <color key="insertionPointColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <size key="minSize" width="552" height="70"/> + <size key="maxSize" width="1097" height="10000000"/> + <connections> + <outlet property="delegate" destination="1277" id="8237"/> + </connections> + </textView> + </subviews> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="1" horizontal="YES" id="8235"> + <rect key="frame" x="-100" y="-100" width="87" height="18"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" verticalHuggingPriority="750" controlSize="small" horizontal="NO" id="8234"> + <rect key="frame" x="539" y="1" width="14" height="70"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + </scrollView> + </subviews> + </customView> + <customView id="5906"> + <rect key="frame" x="0.0" y="81" width="663" height="199"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <textField verticalHuggingPriority="750" id="5828"> + <rect key="frame" x="3" y="185" width="101" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Create syntax:" id="5829"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <scrollView horizontalLineScroll="10" horizontalPageScroll="10" verticalLineScroll="10" verticalPageScroll="10" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" id="8239"> + <rect key="frame" x="109" y="0.0" width="554" height="199"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" id="nV8-ly-BSi"> + <rect key="frame" x="1" y="1" width="552" height="197"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <textView editable="NO" importsGraphics="NO" richText="NO" verticallyResizable="YES" id="8242" customClass="SPTextView"> + <rect key="frame" x="0.0" y="0.0" width="552" height="197"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + <size key="minSize" width="552" height="197"/> + <size key="maxSize" width="1097" height="10000000"/> + <color key="insertionPointColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <size key="minSize" width="552" height="197"/> + <size key="maxSize" width="1097" height="10000000"/> + <connections> + <outlet property="delegate" destination="1277" id="8243"/> + </connections> + </textView> + </subviews> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="1" horizontal="YES" id="8241"> + <rect key="frame" x="-100" y="-100" width="87" height="18"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" verticalHuggingPriority="750" controlSize="small" horizontal="NO" id="8240"> + <rect key="frame" x="539" y="1" width="14" height="197"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + </scrollView> + </subviews> + </customView> + </subviews> + <holdingPriorities> + <real value="250"/> + <real value="250"/> + </holdingPriorities> + </splitView> + <textField verticalHuggingPriority="750" id="5750"> + <rect key="frame" x="22" y="501" width="91" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Type:" id="5751"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="5768"> + <rect key="frame" x="369" y="475" width="305" height="14"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" id="5769"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="5770"> + <rect key="frame" x="369" y="500" width="305" height="14"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" id="5771"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="5752"> + <rect key="frame" x="23" y="475" width="90" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Encoding:" id="5753"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="5763"> + <rect key="frame" x="23" y="450" width="91" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Collation:" id="5764"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <popUpButton verticalHuggingPriority="750" id="5754"> + <rect key="frame" x="115" y="496" width="161" height="22"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <popUpButtonCell key="cell" type="push" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="truncatingTail" enabled="NO" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" id="5755"> + <behavior key="behavior" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="5756"/> + </popUpButtonCell> + <connections> + <action selector="updateTableType:" target="1277" id="5838"/> + </connections> + </popUpButton> + <popUpButton verticalHuggingPriority="750" id="5760"> + <rect key="frame" x="115" y="471" width="161" height="22"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <popUpButtonCell key="cell" type="push" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="truncatingTail" enabled="NO" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" id="5761"> + <behavior key="behavior" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="5762"/> + </popUpButtonCell> + <connections> + <action selector="updateTableEncoding:" target="1277" id="5842"/> + </connections> + </popUpButton> + <popUpButton verticalHuggingPriority="750" id="5765"> + <rect key="frame" x="115" y="446" width="161" height="22"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <popUpButtonCell key="cell" type="push" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="truncatingTail" enabled="NO" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" id="5766"> + <behavior key="behavior" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="5767"/> + </popUpButtonCell> + <connections> + <action selector="updateTableCollation:" target="1277" id="5840"/> + </connections> + </popUpButton> + <box verticalHuggingPriority="750" title="Box" boxType="separator" titlePosition="noTitle" id="5806"> + <rect key="frame" x="25" y="427" width="650" height="5"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <color key="borderColor" white="0.0" alpha="0.41999999999999998" colorSpace="calibratedWhite"/> + <color key="fillColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/> + <font key="titleFont" metaFont="system"/> + </box> + <box verticalHuggingPriority="750" title="Box" boxType="separator" titlePosition="noTitle" id="5807"> + <rect key="frame" x="24" y="316" width="650" height="5"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <color key="borderColor" white="0.0" alpha="0.41999999999999998" colorSpace="calibratedWhite"/> + <color key="fillColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/> + <font key="titleFont" metaFont="system"/> + </box> + <textField verticalHuggingPriority="750" id="5775"> + <rect key="frame" x="175" y="400" width="100" height="14"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" id="5776"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="5777"> + <rect key="frame" x="175" y="378" width="100" height="14"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" id="5778"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="5779"> + <rect key="frame" x="175" y="356" width="100" height="14"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" id="5780"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="5781"> + <rect key="frame" x="175" y="334" width="101" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" id="5782"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <connections> + <action selector="tableRowAutoIncrementWasEdited:" target="1277" id="6881"/> + <outlet property="delegate" destination="1277" id="6880"/> + </connections> + </textField> + <textField verticalHuggingPriority="750" id="5793"> + <rect key="frame" x="462" y="400" width="211" height="14"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" id="5794"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="5792"> + <rect key="frame" x="462" y="378" width="211" height="14"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" id="5795"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="5791"> + <rect key="frame" x="462" y="356" width="212" height="14"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" id="5796"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="5790"> + <rect key="frame" x="462" y="334" width="212" height="14"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" id="5797"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <popUpButton toolTip="Reset AUTO_INCREMENT…" verticalHuggingPriority="750" id="6856"> + <rect key="frame" x="26" y="332" width="20" height="20"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <popUpButtonCell key="cell" type="smallSquare" title="Item 1" bezelStyle="smallSquare" imagePosition="only" alignment="center" controlSize="small" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" pullsDown="YES" arrowPosition="noArrow" selectedItem="6859" id="6857"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="6858"> + <items> + <menuItem title="Item 1" state="on" image="NSAdvanced" hidden="YES" id="6859"/> + <menuItem title="Reset AUTO_INCREMENT" tag="2" toolTip="Reset AUTO_INCREMENT to the minimal possible value." id="6860"> + <connections> + <action selector="resetAutoIncrement:" target="1277" id="6872"/> + </connections> + </menuItem> + <menuItem title="Reset AUTO_INCREMENT to…" tag="1" id="6861"> + <connections> + <action selector="resetAutoIncrement:" target="1277" id="6873"/> + </connections> + </menuItem> + </items> + </menu> + </popUpButtonCell> + </popUpButton> + <textField verticalHuggingPriority="750" id="6877"> + <rect key="frame" x="50" y="334" width="123" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Auto increment:" id="6878"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="7438"> + <rect key="frame" x="23" y="356" width="150" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Avg. row length:" id="7439"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="7440"> + <rect key="frame" x="23" y="378" width="150" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Row format:" id="7441"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="7442"> + <rect key="frame" x="23" y="400" width="150" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Number of rows:" id="7443"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="7444"> + <rect key="frame" x="286" y="400" width="172" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Data size:" id="7445"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="7452"> + <rect key="frame" x="286" y="500" width="82" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Created at:" id="7453"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="7454"> + <rect key="frame" x="286" y="475" width="82" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Updated at:" id="7455"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="7446"> + <rect key="frame" x="286" y="378" width="172" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Max data size:" id="7447"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="7448"> + <rect key="frame" x="286" y="356" width="172" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Index size:" id="7449"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="7450"> + <rect key="frame" x="286" y="334" width="172" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Free data size:" id="7451"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + </subviews> + </view> + </tabViewItem> + <tabViewItem label="Relations" identifier="relations" id="5542"> + <view key="view" identifier="RelationsTabView" id="5543"> + <rect key="frame" x="10" y="7" width="706" height="544"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <scrollView focusRingType="none" autohidesScrollers="YES" horizontalLineScroll="18" horizontalPageScroll="10" verticalLineScroll="18" verticalPageScroll="10" usesPredominantAxisScrolling="NO" id="5544"> + <rect key="frame" x="6" y="32" width="696" height="474"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" drawsBackground="NO" copiesOnScroll="NO" id="EaV-iG-q8t"> + <rect key="frame" x="1" y="23" width="694" height="450"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <tableView identifier="TableRelationsTableView" focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" autosaveColumns="NO" rowHeight="16" headerView="5545" id="5548" customClass="SPCopyTable"> + <rect key="frame" x="0.0" y="0.0" width="694" height="18"/> + <autoresizingMask key="autoresizingMask"/> + <size key="intercellSpacing" width="3" height="2"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> + <tableColumns> + <tableColumn identifier="name" width="126" minWidth="8" maxWidth="1000" id="5549"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Name"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" white="0.33333298560000002" alpha="1" colorSpace="calibratedWhite"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="5550"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="columns" width="89" minWidth="10" maxWidth="3.4028230607370965e+38" id="5578"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Columns"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="5579"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="fk_database" width="86" minWidth="10" maxWidth="3.4028234663852886e+38" id="8335"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="FK Database"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="8336"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="fk_table" width="95" minWidth="10" maxWidth="3.4028230607370965e+38" id="5580"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="FK Table"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="5581"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="fk_columns" width="130" minWidth="10" maxWidth="3.4028230607370965e+38" id="5582"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="FK Columns"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="5583"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="on_update" width="76" minWidth="10" maxWidth="3.4028230607370965e+38" id="5584"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="On Update"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="5585"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="on_delete" width="71" minWidth="10" maxWidth="3.4028230607370965e+38" id="5586"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="On Delete"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="5587"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + </tableColumns> + <connections> + <outlet property="dataSource" destination="5567" id="5573"/> + <outlet property="delegate" destination="5567" id="5572"/> + <outlet property="menu" destination="6232" id="6236"/> + </connections> + </tableView> + </subviews> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="5546"> + <rect key="frame" x="1" y="470" width="688" height="15"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="5547"> + <rect key="frame" x="674" y="17" width="15" height="453"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <tableHeaderView key="headerView" id="5545"> + <rect key="frame" x="0.0" y="0.0" width="694" height="23"/> + <autoresizingMask key="autoresizingMask"/> + </tableHeaderView> + </scrollView> + <button toolTip="Add table relation (⌥⌘A)" id="5559"> + <rect key="frame" x="6" y="9" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_add" imagePosition="only" alignment="center" enabled="NO" state="on" inset="2" id="5566"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">a</string> + <modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> + </buttonCell> + <connections> + <action selector="addRelation:" target="5567" id="5909"/> + </connections> + </button> + <button toolTip="Refresh table relations (⌘R)" id="5560"> + <rect key="frame" x="68" y="9" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_refresh" imagePosition="overlaps" alignment="center" state="on" inset="2" id="5565"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">r</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="refreshRelations:" target="5567" id="5911"/> + </connections> + </button> + <button toolTip="Delete selected relation(s) (⌫)" id="5561"> + <rect key="frame" x="37" y="9" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_remove" imagePosition="only" alignment="center" enabled="NO" state="on" inset="2" id="5564"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent"></string> + </buttonCell> + <connections> + <action selector="removeRelation:" target="5567" id="5910"/> + </connections> + </button> + <imageView id="5562"> + <rect key="frame" x="100" y="10" width="602" height="23"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/> + <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="button_bar_spacer" id="5563"/> + </imageView> + <textField verticalHuggingPriority="750" id="5589"> + <rect key="frame" x="14" y="515" width="687" height="14"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" sendsActionOnEndEditing="YES" id="5590"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + </subviews> + </view> + </tabViewItem> + <tabViewItem label="Triggers" identifier="triggers" id="6692"> + <view key="view" identifier="TriggersTabView" id="6693"> + <rect key="frame" x="10" y="7" width="706" height="544"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <scrollView focusRingType="none" autohidesScrollers="YES" horizontalLineScroll="18" horizontalPageScroll="10" verticalLineScroll="18" verticalPageScroll="10" usesPredominantAxisScrolling="NO" id="6698"> + <rect key="frame" x="6" y="32" width="696" height="474"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" drawsBackground="NO" copiesOnScroll="NO" id="tlh-Sg-Saf"> + <rect key="frame" x="1" y="23" width="694" height="450"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <tableView identifier="TableTriggersTableView" focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" autosaveColumns="NO" rowHeight="16" headerView="6704" id="6701" customClass="SPCopyTable"> + <rect key="frame" x="0.0" y="0.0" width="693" height="18"/> + <autoresizingMask key="autoresizingMask"/> + <size key="intercellSpacing" width="3" height="2"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> + <tableColumns> + <tableColumn identifier="TriggerName" width="93.5" minWidth="10" maxWidth="3.4028230607370965e+38" id="6709"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Trigger"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="6712"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="TriggerEvent" width="60" minWidth="10" maxWidth="3.4028230607370965e+38" id="6708"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Event"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="6713"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="TriggerActionTime" width="59" minWidth="10" maxWidth="3.4028230607370965e+38" id="6707"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Timing"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="6714"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="TriggerStatement" width="231.2109375" minWidth="10" maxWidth="3.4028230607370965e+38" id="6706"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Statement"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="6715"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="TriggerDefiner" width="72" minWidth="10" maxWidth="3.4028230607370965e+38" id="6705"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Definer"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="6716"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="TriggerCreated" width="50" minWidth="10" maxWidth="3.4028234663852886e+38" id="6727"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Created"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="6728"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="TriggerSQLMode" width="106.5" minWidth="10" maxWidth="3.4028234663852886e+38" id="6729"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="SQL Mode"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="6730"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + </tableColumns> + <connections> + <outlet property="dataSource" destination="6691" id="6739"/> + <outlet property="delegate" destination="6691" id="6740"/> + <outlet property="menu" destination="6735" id="6810"/> + </connections> + </tableView> + </subviews> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="6703"> + <rect key="frame" x="1" y="457" width="694" height="16"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="6702"> + <rect key="frame" x="674" y="17" width="15" height="453"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <tableHeaderView key="headerView" id="6704"> + <rect key="frame" x="0.0" y="0.0" width="694" height="23"/> + <autoresizingMask key="autoresizingMask"/> + </tableHeaderView> + </scrollView> + <button toolTip="Add table relation (⌥⌘A)" id="6699"> + <rect key="frame" x="6" y="9" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_add" imagePosition="only" alignment="center" enabled="NO" state="on" inset="2" id="6700"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">a</string> + <modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> + </buttonCell> + <connections> + <action selector="addTrigger:" target="6691" id="6746"/> + </connections> + </button> + <button toolTip="Refresh table relations (⌘R)" id="6697"> + <rect key="frame" x="68" y="9" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_refresh" imagePosition="overlaps" alignment="center" state="on" inset="2" id="6717"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">r</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="refreshTriggers:" target="6691" id="6747"/> + </connections> + </button> + <button toolTip="Delete selected relation(s) (⌫)" id="6696"> + <rect key="frame" x="37" y="9" width="32" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" bezelStyle="texturedRounded" image="button_remove" imagePosition="only" alignment="center" enabled="NO" state="on" inset="2" id="6718"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent"></string> + </buttonCell> + <connections> + <action selector="removeTrigger:" target="6691" id="6748"/> + </connections> + </button> + <imageView id="6695"> + <rect key="frame" x="100" y="10" width="602" height="23"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/> + <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="button_bar_spacer" id="6719"/> + </imageView> + <textField verticalHuggingPriority="750" id="6694"> + <rect key="frame" x="14" y="515" width="687" height="14"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" sendsActionOnEndEditing="YES" id="6720"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + </subviews> + </view> + </tabViewItem> + </tabViewItems> + <connections> + <outlet property="delegate" destination="-2" id="7673"/> + </connections> + </tabView> + </subviews> + </view> + </subviews> + <holdingPriorities> + <real value="250"/> + <real value="250"/> + </holdingPriorities> + <connections> + <outlet property="additionalDragHandleView" destination="7848" id="7964"/> + <outlet property="delegate" destination="-2" id="7732"/> + </connections> + </splitView> + </subviews> + </customView> + <window title="New Database" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default" id="565" userLabel="New Database Sheet"> + <windowStyleMask key="styleMask" titled="YES"/> + <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> + <rect key="contentRect" x="343" y="509" width="384" height="133"/> + <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1178"/> + <value key="minSize" type="size" width="384" height="133"/> + <value key="maxSize" type="size" width="600" height="133"/> + <view key="contentView" id="557"> + <rect key="frame" x="0.0" y="0.0" width="384" height="133"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <textField verticalHuggingPriority="750" id="579"> + <rect key="frame" x="5" y="96" width="134" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Database Name:" id="3835"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="4741"> + <rect key="frame" x="5" y="71" width="134" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Database Encoding:" id="4742"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="8265"> + <rect key="frame" x="5" y="46" width="134" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Database Collation:" id="8266"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <button verticalHuggingPriority="750" tag="1" id="581"> + <rect key="frame" x="289" y="13" width="80" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="Add" bezelStyle="rounded" alignment="center" controlSize="small" enabled="NO" borderStyle="border" tag="1" inset="2" id="3837"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +DQ +</string> + </buttonCell> + <connections> + <action selector="closePanelSheet:" target="-2" id="6633"/> + <outlet property="nextKeyView" destination="n5n-Ef-ROd" id="L78-2b-cKV"/> + </connections> + </button> + <button verticalHuggingPriority="750" id="582"> + <rect key="frame" x="205" y="13" width="86" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="Cancel" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" inset="2" id="3838"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +Gw +</string> + </buttonCell> + <connections> + <action selector="closePanelSheet:" target="-2" id="6632"/> + <outlet property="nextKeyView" destination="581" id="7023"/> + </connections> + </button> + <popUpButton verticalHuggingPriority="750" id="4751"> + <rect key="frame" x="143" y="66" width="224" height="22"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <popUpButtonCell key="cell" type="push" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="clipping" borderStyle="borderAndBezel" inset="2" arrowPosition="arrowAtCenter" preferredEdge="maxY" id="4752"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="4753"/> + </popUpButtonCell> + <connections> + <outlet property="nextKeyView" destination="8269" id="8273"/> + </connections> + </popUpButton> + <popUpButton verticalHuggingPriority="750" id="8269"> + <rect key="frame" x="143" y="41" width="224" height="22"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <popUpButtonCell key="cell" type="push" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="clipping" borderStyle="borderAndBezel" inset="2" arrowPosition="arrowAtCenter" preferredEdge="maxY" id="8270"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="8271"/> + </popUpButtonCell> + <connections> + <outlet property="nextKeyView" destination="582" id="8272"/> + </connections> + </popUpButton> + <textField verticalHuggingPriority="750" id="n5n-Ef-ROd"> + <rect key="frame" x="146" y="94" width="218" height="19"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" usesSingleLineMode="YES" id="SPm-RJ-YgI"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <connections> + <outlet property="delegate" destination="-2" id="m0B-z4-t6u"/> + <outlet property="nextKeyView" destination="581" id="Apc-YB-OnC"/> + </connections> + </textField> + </subviews> + </view> + </window> + <window title="Alter Database" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default" id="8276" userLabel="Alter Database Sheet"> + <windowStyleMask key="styleMask" titled="YES"/> + <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> + <rect key="contentRect" x="157" y="342" width="384" height="119"/> + <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1178"/> + <value key="minSize" type="size" width="384" height="119"/> + <value key="maxSize" type="size" width="600" height="119"/> + <view key="contentView" id="8277"> + <rect key="frame" x="0.0" y="0.0" width="384" height="119"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <textField verticalHuggingPriority="750" id="8278"> + <rect key="frame" x="17" y="83" width="122" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Database Encoding:" id="8291"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="8279"> + <rect key="frame" x="17" y="58" width="122" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Database Collation:" id="8290"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <button verticalHuggingPriority="750" tag="1" id="8280"> + <rect key="frame" x="268" y="13" width="101" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="Apply" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" tag="1" inset="2" id="8289"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +DQ +</string> + </buttonCell> + <connections> + <action selector="closePanelSheet:" target="-2" id="8303"/> + <outlet property="nextKeyView" destination="8282" id="8302"/> + </connections> + </button> + <button verticalHuggingPriority="750" id="8281"> + <rect key="frame" x="174" y="13" width="96" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="Cancel" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" inset="2" id="8288"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +Gw +</string> + </buttonCell> + <connections> + <action selector="closePanelSheet:" target="-2" id="8304"/> + <outlet property="nextKeyView" destination="8280" id="8301"/> + </connections> + </button> + <popUpButton verticalHuggingPriority="750" id="8282"> + <rect key="frame" x="143" y="78" width="224" height="22"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <popUpButtonCell key="cell" type="push" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="clipping" borderStyle="borderAndBezel" inset="2" arrowPosition="arrowAtCenter" preferredEdge="maxY" id="8286"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="8287"/> + </popUpButtonCell> + <connections> + <outlet property="nextKeyView" destination="8283" id="8299"/> + </connections> + </popUpButton> + <popUpButton verticalHuggingPriority="750" id="8283"> + <rect key="frame" x="143" y="53" width="224" height="22"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <popUpButtonCell key="cell" type="push" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="clipping" borderStyle="borderAndBezel" inset="2" arrowPosition="arrowAtCenter" preferredEdge="maxY" id="8284"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="8285"/> + </popUpButtonCell> + <connections> + <outlet property="nextKeyView" destination="8281" id="8300"/> + </connections> + </popUpButton> + </subviews> + </view> + </window> + <window title="Duplicate Database" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default" id="6937" userLabel="Duplicate Database Sheet"> + <windowStyleMask key="styleMask" titled="YES"/> + <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> + <rect key="contentRect" x="343" y="461" width="379" height="154"/> + <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1178"/> + <value key="minSize" type="size" width="379" height="154"/> + <value key="maxSize" type="size" width="379" height="154"/> + <view key="contentView" id="6938"> + <rect key="frame" x="0.0" y="0.0" width="379" height="154"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <textField verticalHuggingPriority="750" id="6942"> + <rect key="frame" x="104" y="98" width="258" height="14"/> + <autoresizingMask key="autoresizingMask"/> + <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="left" title="%SOURCE_TABLE%" id="6947"> + <font key="font" metaFont="smallSystemBold"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="6943"> + <rect key="frame" x="107" y="72" width="252" height="18"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" alignment="left" drawsBackground="YES" usesSingleLineMode="YES" id="6946"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <connections> + <outlet property="delegate" destination="-2" id="6977"/> + <outlet property="nextKeyView" destination="6980" id="7017"/> + </connections> + </textField> + <button verticalHuggingPriority="750" tag="1" id="6939"> + <rect key="frame" x="263" y="13" width="101" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" widthSizable="YES"/> + <buttonCell key="cell" type="push" title="Duplicate" bezelStyle="rounded" alignment="center" controlSize="small" enabled="NO" borderStyle="border" tag="1" inset="2" id="6976"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +DQ +</string> + </buttonCell> + <connections> + <action selector="closePanelSheet:" target="-2" id="6979"/> + <outlet property="nextKeyView" destination="6943" id="7026"/> + </connections> + </button> + <button verticalHuggingPriority="750" id="6944"> + <rect key="frame" x="172" y="13" width="93" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" widthSizable="YES"/> + <buttonCell key="cell" type="push" title="Cancel" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" inset="2" id="6945"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +Gw +</string> + </buttonCell> + <connections> + <action selector="closePanelSheet:" target="-2" id="6978"/> + <outlet property="nextKeyView" destination="6939" id="6989"/> + </connections> + </button> + <button id="6980"> + <rect key="frame" x="105" y="48" width="256" height="18"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <buttonCell key="cell" type="check" title="Duplicate database content" bezelStyle="regularSquare" imagePosition="left" alignment="left" controlSize="small" inset="2" id="6981"> + <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/> + <font key="font" metaFont="smallSystem"/> + </buttonCell> + <connections> + <outlet property="nextKeyView" destination="6944" id="6988"/> + </connections> + </button> + <textField verticalHuggingPriority="750" id="7817"> + <rect key="frame" x="-3" y="98" width="105" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Source:" id="7818"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="7819"> + <rect key="frame" x="-3" y="74" width="105" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Destination:" id="7820"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="7821"> + <rect key="frame" x="104" y="120" width="258" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Duplicate database:" id="7822"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + </subviews> + </view> + </window> + <window title="Rename Database" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default" id="6990" userLabel="Rename Database Sheet"> + <windowStyleMask key="styleMask" titled="YES" resizable="YES"/> + <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> + <rect key="contentRect" x="343" y="481" width="314" height="112"/> + <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1178"/> + <value key="minSize" type="size" width="292" height="112"/> + <value key="maxSize" type="size" width="650" height="112"/> + <view key="contentView" id="6991"> + <rect key="frame" x="0.0" y="0.0" width="314" height="112"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <textField verticalHuggingPriority="750" id="6995"> + <rect key="frame" x="17" y="78" width="280" height="14"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES"/> + <textFieldCell key="cell" lineBreakMode="truncatingMiddle" sendsActionOnEndEditing="YES" alignment="left" title="Rename database to" id="7000"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="6994"> + <rect key="frame" x="20" y="52" width="274" height="18"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" alignment="left" drawsBackground="YES" usesSingleLineMode="YES" id="7001"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <connections> + <outlet property="delegate" destination="-2" id="7010"/> + <outlet property="nextKeyView" destination="6993" id="7019"/> + </connections> + </textField> + <button verticalHuggingPriority="750" tag="1" id="6997"> + <rect key="frame" x="186" y="13" width="113" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="Rename" bezelStyle="rounded" alignment="center" controlSize="small" enabled="NO" borderStyle="border" tag="1" inset="2" id="6998"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +DQ +</string> + </buttonCell> + <connections> + <action selector="closePanelSheet:" target="-2" id="7009"/> + <outlet property="nextKeyView" destination="6994" id="7020"/> + </connections> + </button> + <button verticalHuggingPriority="750" id="6993"> + <rect key="frame" x="15" y="13" width="99" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="Cancel" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" inset="2" id="7002"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +Gw +</string> + </buttonCell> + <connections> + <action selector="closePanelSheet:" target="-2" id="7008"/> + <outlet property="nextKeyView" destination="6997" id="7007"/> + </connections> + </button> + </subviews> + </view> + </window> + <window title="New Table" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default" id="5322" userLabel="New Table Sheet"> + <windowStyleMask key="styleMask" titled="YES" resizable="YES"/> + <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> + <rect key="contentRect" x="343" y="433" width="425" height="162"/> + <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1178"/> + <value key="minSize" type="size" width="425" height="162"/> + <value key="maxSize" type="size" width="600" height="162"/> + <view key="contentView" id="5323"> + <rect key="frame" x="0.0" y="0.0" width="425" height="162"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <textField verticalHuggingPriority="750" id="5327"> + <rect key="frame" x="5" y="125" width="128" height="14"/> + <autoresizingMask key="autoresizingMask"/> + <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Table Name:" id="5332"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="5326"> + <rect key="frame" x="5" y="100" width="128" height="14"/> + <autoresizingMask key="autoresizingMask"/> + <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Table Encoding:" id="5333"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="5324"> + <rect key="frame" x="138" y="124" width="267" height="18"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" alignment="left" drawsBackground="YES" usesSingleLineMode="YES" id="5361"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <connections> + <outlet property="delegate" destination="68" id="5364"/> + </connections> + </textField> + <button verticalHuggingPriority="750" tag="1" id="5328"> + <rect key="frame" x="332" y="13" width="78" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES"/> + <buttonCell key="cell" type="push" title="Add" bezelStyle="rounded" alignment="center" controlSize="small" enabled="NO" borderStyle="border" tag="1" inset="2" id="5331"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +DQ +</string> + </buttonCell> + <connections> + <action selector="closeSheet:" target="68" id="5692"/> + </connections> + </button> + <popUpButton verticalHuggingPriority="750" id="5325"> + <rect key="frame" x="135" y="95" width="273" height="22"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES"/> + <popUpButtonCell key="cell" type="push" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="clipping" borderStyle="borderAndBezel" inset="2" arrowPosition="arrowAtCenter" preferredEdge="maxY" id="5334"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="5335"/> + </popUpButtonCell> + </popUpButton> + <textField verticalHuggingPriority="750" id="8309"> + <rect key="frame" x="5" y="75" width="128" height="14"/> + <autoresizingMask key="autoresizingMask"/> + <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Table Collation:" id="8313"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <popUpButton verticalHuggingPriority="750" id="8310"> + <rect key="frame" x="135" y="70" width="273" height="22"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES"/> + <popUpButtonCell key="cell" type="push" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="clipping" borderStyle="borderAndBezel" inset="2" arrowPosition="arrowAtCenter" preferredEdge="maxY" id="8311"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="8312"/> + </popUpButtonCell> + </popUpButton> + <textField verticalHuggingPriority="750" id="5713"> + <rect key="frame" x="5" y="49" width="128" height="14"/> + <autoresizingMask key="autoresizingMask"/> + <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Table Type:" id="5742"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <popUpButton verticalHuggingPriority="750" id="5714"> + <rect key="frame" x="135" y="45" width="273" height="22"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES"/> + <popUpButtonCell key="cell" type="push" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="clipping" borderStyle="borderAndBezel" inset="2" arrowPosition="arrowAtCenter" preferredEdge="maxY" id="5715"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="5716"/> + </popUpButtonCell> + </popUpButton> + <button verticalHuggingPriority="750" id="5701"> + <rect key="frame" x="250" y="13" width="84" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES"/> + <buttonCell key="cell" type="push" title="Cancel" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" inset="2" id="5702"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +Gw +</string> + </buttonCell> + <connections> + <action selector="closeSheet:" target="68" id="5703"/> + </connections> + </button> + </subviews> + </view> + </window> + <window title="Duplicate Table" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default" id="501" userLabel="Duplicate Table Sheet"> + <windowStyleMask key="styleMask" titled="YES" resizable="YES"/> + <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> + <rect key="contentRect" x="356" y="461" width="260" height="127"/> + <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1178"/> + <value key="minSize" type="size" width="260" height="127"/> + <value key="maxSize" type="size" width="600" height="127"/> + <view key="contentView" id="500"> + <rect key="frame" x="0.0" y="0.0" width="260" height="127"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <textField verticalHuggingPriority="750" id="512"> + <rect key="frame" x="17" y="93" width="226" height="14"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" lineBreakMode="truncatingMiddle" sendsActionOnEndEditing="YES" alignment="left" title="Duplicate table to" id="3830"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <button id="514"> + <rect key="frame" x="19" y="43" width="223" height="18"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="check" title="Duplicate table content" bezelStyle="regularSquare" imagePosition="left" alignment="left" controlSize="small" inset="2" id="3832"> + <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/> + <font key="font" metaFont="smallSystem"/> + </buttonCell> + </button> + <button verticalHuggingPriority="750" tag="1" id="515"> + <rect key="frame" x="148" y="13" width="97" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="Duplicate" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" tag="1" inset="2" id="3833"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +DQ +</string> + </buttonCell> + <connections> + <action selector="closeSheet:" target="68" id="6354"/> + </connections> + </button> + <button verticalHuggingPriority="750" id="516"> + <rect key="frame" x="59" y="13" width="91" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="Cancel" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" inset="2" id="3834"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +Gw +</string> + </buttonCell> + <connections> + <action selector="closeSheet:" target="68" id="6353"/> + </connections> + </button> + <textField verticalHuggingPriority="750" id="zPq-c4-GfK"> + <rect key="frame" x="20" y="66" width="222" height="19"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" usesSingleLineMode="YES" id="n3P-gU-pX8"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <connections> + <outlet property="delegate" destination="68" id="FTJ-Fb-vbI"/> + </connections> + </textField> + </subviews> + </view> + </window> + <window title="Key Sheet" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default" id="409" userLabel="Key Sheet"> + <windowStyleMask key="styleMask" titled="YES"/> + <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> + <rect key="contentRect" x="351" y="522" width="306" height="122"/> + <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1178"/> + <value key="minSize" type="size" width="213" height="107"/> + <view key="contentView" id="410"> + <rect key="frame" x="0.0" y="0.0" width="306" height="122"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <textField verticalHuggingPriority="750" id="411"> + <rect key="frame" x="17" y="74" width="272" height="28"/> + <autoresizingMask key="autoresizingMask"/> + <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="left" id="3826"> + <font key="font" metaFont="smallSystem"/> + <string key="title">Field must be indexed to support auto_increment. +Which index do you want to add for this field?</string> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <popUpButton toolTip="Choose the type of the index" verticalHuggingPriority="750" id="414"> + <rect key="frame" x="74" y="45" width="162" height="22"/> + <autoresizingMask key="autoresizingMask"/> + <popUpButtonCell key="cell" type="push" title="PRIMARY KEY" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="clipping" state="on" borderStyle="borderAndBezel" inset="2" arrowPosition="arrowAtCenter" preferredEdge="maxY" selectedItem="412" id="3827"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="415"> + <items> + <menuItem title="PRIMARY KEY" state="on" id="412"/> + <menuItem title="INDEX" tag="1" id="413"/> + <menuItem title="UNIQUE" tag="2" id="416"/> + </items> + </menu> + </popUpButtonCell> + </popUpButton> + <button verticalHuggingPriority="750" tag="1" id="418"> + <rect key="frame" x="154" y="17" width="84" height="28"/> + <autoresizingMask key="autoresizingMask"/> + <buttonCell key="cell" type="push" title="Add" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" tag="1" inset="2" id="3828"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +DQ +</string> + </buttonCell> + <connections> + <action selector="closeSheet:" target="69" id="7671"/> + </connections> + </button> + <button verticalHuggingPriority="750" id="419"> + <rect key="frame" x="72" y="17" width="84" height="28"/> + <autoresizingMask key="autoresizingMask"/> + <buttonCell key="cell" type="push" title="Don't add" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" inset="2" id="3829"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +Gw +</string> + </buttonCell> + <connections> + <action selector="closeSheet:" target="69" id="7672"/> + </connections> + </button> + </subviews> + </view> + </window> + <window title="Reset Auto Increment" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" showsToolbarButton="NO" visibleAtLaunch="NO" animationBehavior="default" id="6832" userLabel="Reset Auto Increment Sheet"> + <windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES"/> + <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> + <rect key="contentRect" x="131" y="407" width="303" height="95"/> + <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1178"/> + <value key="minSize" type="size" width="255" height="95"/> + <view key="contentView" id="6833"> + <rect key="frame" x="0.0" y="0.0" width="303" height="95"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/> + <subviews> + <button verticalHuggingPriority="750" tag="1" id="6834"> + <rect key="frame" x="198" y="13" width="90" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <buttonCell key="cell" type="push" title="OK" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="6835"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +DQ +</string> + </buttonCell> + <connections> + <action selector="closeSheet:" target="69" id="6845"/> + <outlet property="nextKeyView" destination="6836" id="6849"/> + </connections> + </button> + <button verticalHuggingPriority="750" id="6836"> + <rect key="frame" x="110" y="13" width="90" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <buttonCell key="cell" type="push" title="Cancel" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="6837"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +Gw +</string> + </buttonCell> + <connections> + <action selector="closeSheet:" target="69" id="6846"/> + <outlet property="nextKeyView" destination="6840" id="6850"/> + </connections> + </button> + <textField verticalHuggingPriority="750" id="6838"> + <rect key="frame" x="17" y="58" width="201" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Reset AUTO_INCREMENT to:" id="6839"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="6840"> + <rect key="frame" x="223" y="55" width="60" height="19"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" alignment="left" drawsBackground="YES" usesSingleLineMode="YES" id="6841"> + <numberFormatter key="formatter" formatterBehavior="custom10_4" positiveFormat="#0" negativeFormat="#0" allowsFloats="NO" usesGroupingSeparator="NO" lenient="YES" paddingCharacter="*" groupingSize="0" minimumIntegerDigits="1" maximumIntegerDigits="42" decimalSeparator="." groupingSeparator="," currencyDecimalSeparator="." plusSign="+" minusSign="-" notANumberSymbol="NaN" perMillSymbol="‰" percentSymbol="%" exponentSymbol="E" positivePrefix="" positiveSuffix="" negativePrefix="-" negativeSuffix="" id="6842"> + <real key="minimum" value="1"/> + </numberFormatter> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <connections> + <outlet property="nextKeyView" destination="6834" id="6848"/> + </connections> + </textField> + <box verticalHuggingPriority="750" title="Box" boxType="separator" titlePosition="noTitle" id="6852"> + <rect key="frame" x="-3" y="92" width="306" height="5"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <color key="borderColor" white="0.0" alpha="0.41999999999999998" colorSpace="calibratedWhite"/> + <color key="fillColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/> + <font key="titleFont" metaFont="system"/> + </box> + </subviews> + </view> + <connections> + <outlet property="delegate" destination="69" id="6851"/> + <outlet property="initialFirstResponder" destination="6840" id="6847"/> + </connections> + </window> + <window title="New Relation" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default" id="5596" userLabel="New RelationSheet" customClass="NSPanel"> + <windowStyleMask key="styleMask" titled="YES"/> + <windowPositionMask key="initialPositionMask" leftStrut="YES" bottomStrut="YES"/> + <rect key="contentRect" x="196" y="141" width="379" height="369"/> + <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1178"/> + <view key="contentView" id="5597"> + <rect key="frame" x="0.0" y="0.0" width="379" height="369"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <box autoresizesSubviews="NO" title="Table:" borderType="line" id="5660"> + <rect key="frame" x="17" y="231" width="345" height="56"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <view key="contentView" id="5Bl-Ho-IU0"> + <rect key="frame" x="1" y="1" width="343" height="40"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <popUpButton verticalHuggingPriority="750" id="5653"> + <rect key="frame" x="115" y="10" width="171" height="22"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <popUpButtonCell key="cell" type="push" title="Item 1" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="5656" id="5654"> + <behavior key="behavior" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="5655"> + <items> + <menuItem title="Item 1" state="on" id="5656"/> + <menuItem title="Item 2" id="5657"/> + <menuItem title="Item 3" id="5658"/> + </items> + </menu> + </popUpButtonCell> + <connections> + <action selector="selectTableColumn:" target="5567" id="5907"/> + </connections> + </popUpButton> + <textField verticalHuggingPriority="750" id="5606"> + <rect key="frame" x="15" y="15" width="98" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Column:" id="5607"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + </subviews> + </view> + <color key="borderColor" white="0.0" alpha="0.41999999999999998" colorSpace="calibratedWhite"/> + <color key="fillColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/> + </box> + <box autoresizesSubviews="NO" title="Name" borderType="line" id="7798"> + <rect key="frame" x="17" y="291" width="345" height="58"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <view key="contentView" id="3ZP-dJ-QhM"> + <rect key="frame" x="1" y="1" width="343" height="42"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <textField verticalHuggingPriority="750" id="7800"> + <rect key="frame" x="15" y="17" width="98" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Name:" id="7801"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="7808"> + <rect key="frame" x="118" y="14" width="165" height="19"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" placeholderString="Generate one" drawsBackground="YES" usesSingleLineMode="YES" id="7809"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <connections> + <outlet property="delegate" destination="5567" id="7813"/> + </connections> + </textField> + </subviews> + </view> + <color key="borderColor" white="0.0" alpha="0.41999999999999998" colorSpace="calibratedWhite"/> + <color key="fillColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/> + </box> + <box autoresizesSubviews="NO" title="Action" borderType="line" id="5659"> + <rect key="frame" x="17" y="49" width="345" height="87"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <view key="contentView" id="mnI-Zx-qey"> + <rect key="frame" x="1" y="1" width="343" height="71"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <popUpButton verticalHuggingPriority="750" id="5614"> + <rect key="frame" x="116" y="40" width="170" height="22"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <popUpButtonCell key="cell" type="push" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" tag="-1" imageScaling="proportionallyDown" inset="2" selectedItem="5617" id="5615"> + <behavior key="behavior" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="5616"> + <items> + <menuItem state="on" tag="-1" id="5617"/> + <menuItem title="Restrict" id="5621"> + <modifierMask key="keyEquivalentModifierMask"/> + </menuItem> + <menuItem title="Cascade" tag="1" id="5618"/> + <menuItem title="Set NULL" tag="2" id="5619"/> + <menuItem title="No Action" tag="3" id="5620"> + <modifierMask key="keyEquivalentModifierMask"/> + </menuItem> + </items> + </menu> + </popUpButtonCell> + </popUpButton> + <popUpButton verticalHuggingPriority="750" id="5622"> + <rect key="frame" x="116" y="10" width="170" height="22"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <popUpButtonCell key="cell" type="push" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" tag="-1" imageScaling="proportionallyDown" inset="2" selectedItem="5629" id="5623"> + <behavior key="behavior" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="5624"> + <items> + <menuItem state="on" tag="-1" id="5629"/> + <menuItem title="Restrict" id="5628"/> + <menuItem title="Cascade" tag="1" id="5627"/> + <menuItem title="Set NULL" tag="2" id="5626"> + <modifierMask key="keyEquivalentModifierMask"/> + </menuItem> + <menuItem title="No Action" tag="3" id="5625"> + <modifierMask key="keyEquivalentModifierMask"/> + </menuItem> + </items> + </menu> + </popUpButtonCell> + </popUpButton> + <textField verticalHuggingPriority="750" id="5610"> + <rect key="frame" x="15" y="45" width="99" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="On update:" id="5611"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="5612"> + <rect key="frame" x="15" y="15" width="98" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="On delete:" id="5613"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + </subviews> + </view> + <color key="borderColor" white="0.0" alpha="0.41999999999999998" colorSpace="calibratedWhite"/> + <color key="fillColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/> + </box> + <box autoresizesSubviews="NO" title="References" borderType="line" id="5652"> + <rect key="frame" x="17" y="140" width="345" height="87"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <view key="contentView" id="oBh-ZJ-t7F"> + <rect key="frame" x="1" y="1" width="343" height="71"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <popUpButton verticalHuggingPriority="750" id="5630"> + <rect key="frame" x="115" y="40" width="171" height="22"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <popUpButtonCell key="cell" type="push" title="Item 1" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="5633" id="5631"> + <behavior key="behavior" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="5632"> + <items> + <menuItem title="Item 1" state="on" id="5633"/> + <menuItem title="Item 2" id="5634"/> + <menuItem title="Item 3" id="5635"/> + </items> + </menu> + </popUpButtonCell> + <connections> + <action selector="selectReferenceTable:" target="5567" id="5908"/> + </connections> + </popUpButton> + <popUpButton verticalHuggingPriority="750" id="5636"> + <rect key="frame" x="115" y="10" width="171" height="22"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <popUpButtonCell key="cell" type="push" title="Item 1" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="5639" id="5637"> + <behavior key="behavior" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="5638"> + <items> + <menuItem title="Item 1" state="on" id="5639"/> + <menuItem title="Item 2" id="5640"/> + <menuItem title="Item 3" id="5641"/> + </items> + </menu> + </popUpButtonCell> + </popUpButton> + <textField verticalHuggingPriority="750" id="5608"> + <rect key="frame" x="15" y="45" width="98" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Table:" id="5609"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="5642"> + <rect key="frame" x="15" y="15" width="98" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Column:" id="5643"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + </subviews> + </view> + <color key="borderColor" white="0.0" alpha="0.41999999999999998" colorSpace="calibratedWhite"/> + <color key="fillColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/> + </box> + <button verticalHuggingPriority="750" tag="1" id="5599"> + <rect key="frame" x="268" y="13" width="96" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <buttonCell key="cell" type="push" title="Add" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="5600"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +DQ +</string> + </buttonCell> + <connections> + <action selector="confirmAddRelation:" target="5567" id="5912"/> + </connections> + </button> + <button verticalHuggingPriority="750" id="5601"> + <rect key="frame" x="174" y="13" width="96" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <buttonCell key="cell" type="push" title="Cancel" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="5602"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +Gw +</string> + </buttonCell> + <connections> + <action selector="closeRelationSheet:" target="5567" id="5603"/> + </connections> + </button> + <progressIndicator hidden="YES" horizontalHuggingPriority="750" verticalHuggingPriority="750" maxValue="100" displayedWhenStopped="NO" bezeled="NO" indeterminate="YES" controlSize="small" style="spinning" id="7823"> + <rect key="frame" x="20" y="20" width="16" height="16"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + </progressIndicator> + <textField hidden="YES" verticalHuggingPriority="750" id="7824"> + <rect key="frame" x="41" y="21" width="133" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Retrieving data..." id="7825"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + </subviews> + </view> + </window> + <window title="New Trigger" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default" id="6765" userLabel="New Trigger Sheet" customClass="NSPanel"> + <windowStyleMask key="styleMask" titled="YES" resizable="YES"/> + <windowPositionMask key="initialPositionMask" leftStrut="YES" bottomStrut="YES"/> + <rect key="contentRect" x="196" y="162" width="360" height="348"/> + <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1178"/> + <value key="minSize" type="size" width="360" height="348"/> + <view key="contentView" id="6766"> + <rect key="frame" x="0.0" y="0.0" width="360" height="348"/> + <autoresizingMask key="autoresizingMask"/> + <userGuides> + <userLayoutGuide location="132" affinity="minX"/> + <userLayoutGuide location="323" affinity="minX"/> + </userGuides> + <subviews> + <box autoresizesSubviews="NO" title="Trigger:" borderType="line" id="6770"> + <rect key="frame" x="17" y="219" width="326" height="109"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <view key="contentView" id="TWl-AK-BwB"> + <rect key="frame" x="1" y="1" width="324" height="93"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <textField verticalHuggingPriority="750" id="6776"> + <rect key="frame" x="1" y="66" width="116" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Name:" id="6777"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="6775"> + <rect key="frame" x="125" y="64" width="181" height="19"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" usesSingleLineMode="YES" id="6778"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <connections> + <outlet property="delegate" destination="6691" id="6802"/> + </connections> + </textField> + <popUpButton verticalHuggingPriority="750" id="6774"> + <rect key="frame" x="121" y="35" width="187" height="22"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <popUpButtonCell key="cell" type="push" title="Before" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="6781" id="6779"> + <behavior key="behavior" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="6780"> + <items> + <menuItem title="Before" state="on" id="6781"/> + <menuItem title="After" tag="1" id="6782"/> + </items> + </menu> + </popUpButtonCell> + </popUpButton> + <popUpButton verticalHuggingPriority="750" id="6773"> + <rect key="frame" x="121" y="10" width="187" height="22"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <popUpButtonCell key="cell" type="push" title="Insert" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="6785" id="6783"> + <behavior key="behavior" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <menu key="menu" title="OtherViews" id="6784"> + <items> + <menuItem title="Insert" state="on" id="6785"/> + <menuItem title="Update" tag="1" id="6786"/> + <menuItem title="Delete" tag="2" id="6787"/> + </items> + </menu> + </popUpButtonCell> + </popUpButton> + <textField verticalHuggingPriority="750" id="6772"> + <rect key="frame" x="1" y="40" width="116" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Action Time:" id="6788"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="6771"> + <rect key="frame" x="1" y="15" width="116" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Event:" id="6789"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + </subviews> + </view> + <color key="borderColor" white="0.0" alpha="0.41999999999999998" colorSpace="calibratedWhite"/> + <color key="fillColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/> + </box> + <button verticalHuggingPriority="750" tag="1" id="6768"> + <rect key="frame" x="249" y="13" width="96" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="Add" bezelStyle="rounded" alignment="center" controlSize="small" enabled="NO" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="6793"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +DQ +</string> + </buttonCell> + <connections> + <action selector="confirmAddTrigger:" target="6691" id="6804"/> + </connections> + </button> + <button verticalHuggingPriority="750" id="6767"> + <rect key="frame" x="155" y="13" width="96" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="Cancel" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="6794"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent">.</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="closeTriggerSheet:" target="6691" id="6805"/> + </connections> + </button> + <scrollView autohidesScrollers="YES" horizontalLineScroll="10" horizontalPageScroll="10" verticalLineScroll="10" verticalPageScroll="10" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" id="8227"> + <rect key="frame" x="20" y="45" width="320" height="170"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" id="ouK-7i-Xtd"> + <rect key="frame" x="1" y="1" width="318" height="168"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <textView importsGraphics="NO" richText="NO" findStyle="panel" allowsUndo="YES" usesFontPanel="YES" verticallyResizable="YES" smartInsertDelete="YES" id="8230" customClass="SPTextView"> + <rect key="frame" x="0.0" y="0.0" width="318" height="168"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + <size key="minSize" width="318" height="168"/> + <size key="maxSize" width="592" height="10000000"/> + <color key="insertionPointColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <size key="minSize" width="318" height="168"/> + <size key="maxSize" width="592" height="10000000"/> + <connections> + <outlet property="scrollView" destination="8227" id="8231"/> + </connections> + </textView> + </subviews> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="1" horizontal="YES" id="8229"> + <rect key="frame" x="-100" y="-100" width="87" height="18"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" controlSize="small" horizontal="NO" id="8228"> + <rect key="frame" x="224" y="1" width="11" height="133"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + </scrollView> + </subviews> + </view> + </window> + <window title="Progress" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default" id="6125" userLabel="Progress Sheet" customClass="NSPanel"> + <windowStyleMask key="styleMask" titled="YES" closable="YES"/> + <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> + <rect key="contentRect" x="101" y="476" width="379" height="139"/> + <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1178"/> + <value key="minSize" type="size" width="213" height="50"/> + <view key="contentView" id="6126"> + <rect key="frame" x="0.0" y="0.0" width="379" height="139"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <progressIndicator verticalHuggingPriority="750" maxValue="100" bezeled="NO" indeterminate="YES" style="bar" id="6131"> + <rect key="frame" x="18" y="56" width="343" height="20"/> + <autoresizingMask key="autoresizingMask"/> + </progressIndicator> + <textField verticalHuggingPriority="750" id="6130"> + <rect key="frame" x="59" y="84" width="300" height="17"/> + <autoresizingMask key="autoresizingMask"/> + <textFieldCell key="cell" lineBreakMode="truncatingMiddle" truncatesLastVisibleLine="YES" sendsActionOnEndEditing="YES" alignment="left" title="Importing…" id="6134"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" white="0.5" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <button verticalHuggingPriority="750" id="6129"> + <rect key="frame" x="257" y="12" width="108" height="32"/> + <autoresizingMask key="autoresizingMask"/> + <buttonCell key="cell" type="push" title="Cancel" bezelStyle="rounded" alignment="center" borderStyle="border" inset="2" id="6135"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent" base64-UTF8="YES"> +Gw +</string> + </buttonCell> + <connections> + <action selector="cancelProgressBar:" target="362" id="6141"/> + </connections> + </button> + <textField verticalHuggingPriority="750" id="6132"> + <rect key="frame" x="59" y="104" width="300" height="17"/> + <autoresizingMask key="autoresizingMask"/> + <textFieldCell key="cell" lineBreakMode="truncatingTail" sendsActionOnEndEditing="YES" alignment="left" title="Doing Stuff…" id="6133"> + <font key="font" metaFont="systemBold"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <imageView id="6127"> + <rect key="frame" x="20" y="87" width="32" height="32"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="NSApplicationIcon" id="6137"/> + </imageView> + </subviews> + </view> + </window> + <window title="Field Value" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default" id="714" userLabel="Field Value Sheet"> + <windowStyleMask key="styleMask" titled="YES" resizable="YES"/> + <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> + <rect key="contentRect" x="221" y="567" width="381" height="247"/> + <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1178"/> + <value key="minSize" type="size" width="213" height="107"/> + <view key="contentView" id="713"> + <rect key="frame" x="0.0" y="0.0" width="381" height="247"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <button verticalHuggingPriority="750" tag="1" id="711"> + <rect key="frame" x="285" y="4" width="76" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="roundTextured" title="Close" bezelStyle="texturedRounded" alignment="center" controlSize="small" borderStyle="border" tag="1" inset="2" id="3844"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +DQ +</string> + </buttonCell> + <connections> + <action selector="closeSheet:" target="134" id="717"/> + </connections> + </button> + <scrollView horizontalLineScroll="10" horizontalPageScroll="10" verticalLineScroll="10" verticalPageScroll="10" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" id="8216"> + <rect key="frame" x="-1" y="35" width="383" height="206"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" id="w4Z-p1-GZA"> + <rect key="frame" x="1" y="1" width="381" height="204"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <textView editable="NO" importsGraphics="NO" verticallyResizable="YES" id="8219"> + <rect key="frame" x="0.0" y="0.0" width="381" height="204"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + <size key="minSize" width="381" height="204"/> + <size key="maxSize" width="753" height="10000000"/> + <color key="insertionPointColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <size key="minSize" width="381" height="204"/> + <size key="maxSize" width="753" height="10000000"/> + <connections> + <outlet property="delegate" destination="134" id="8220"/> + </connections> + </textView> + </subviews> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="1" controlSize="small" horizontal="YES" id="8218"> + <rect key="frame" x="-100" y="-100" width="87" height="11"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" verticalHuggingPriority="750" controlSize="small" horizontal="NO" id="8217"> + <rect key="frame" x="368" y="1" width="14" height="204"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + </scrollView> + </subviews> + </view> + </window> + <window title="Variables" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" frameAutosaveName="SPCreateSyntaxSheet" animationBehavior="default" id="6557" userLabel="Create Table Syntax"> + <windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES"/> + <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> + <rect key="contentRect" x="386" y="508" width="411" height="341"/> + <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1178"/> + <value key="minSize" type="size" width="350" height="200"/> + <view key="contentView" id="6558"> + <rect key="frame" x="0.0" y="0.0" width="411" height="341"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <button verticalHuggingPriority="750" id="6564"> + <rect key="frame" x="319" y="5" width="77" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES"/> + <buttonCell key="cell" type="push" title="Close" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" inset="2" id="6565"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +DQ +</string> + </buttonCell> + <connections> + <action selector="closePanelSheet:" target="-2" id="6599"/> + <outlet property="nextKeyView" destination="6563" id="6822"/> + </connections> + </button> + <button verticalHuggingPriority="750" id="6823" userLabel="Push Button (Dummy for Close via ESC)"> + <rect key="frame" x="246" y="-216" width="76" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES"/> + <buttonCell key="cell" type="push" title="Close" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" inset="2" id="6824"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +Gw +</string> + </buttonCell> + <connections> + <action selector="closePanelSheet:" target="-2" id="6826"/> + <outlet property="nextKeyView" destination="6563" id="6828"/> + </connections> + </button> + <button verticalHuggingPriority="750" id="6563"> + <rect key="frame" x="15" y="5" width="124" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES"/> + <buttonCell key="cell" type="push" title="Save As..." bezelStyle="rounded" alignment="center" controlSize="small" state="on" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="6566"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + </buttonCell> + <connections> + <action selector="saveCreateSyntax:" target="-2" id="6598"/> + <outlet property="nextKeyView" destination="6606" id="6820"/> + </connections> + </button> + <textField verticalHuggingPriority="750" id="6562"> + <rect key="frame" x="9" y="316" width="385" height="14"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Create syntax for object" id="6567"> + <font key="font" metaFont="smallSystemBold"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <button verticalHuggingPriority="750" id="6606"> + <rect key="frame" x="137" y="5" width="90" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES"/> + <buttonCell key="cell" type="push" title="Copy" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" inset="2" id="6607"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + </buttonCell> + <connections> + <action selector="copyCreateTableSyntaxFromSheet:" target="-2" id="6608"/> + <outlet property="nextKeyView" destination="6564" id="6821"/> + </connections> + </button> + <scrollView autohidesScrollers="YES" horizontalLineScroll="10" horizontalPageScroll="10" verticalLineScroll="10" verticalPageScroll="10" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" id="8210"> + <rect key="frame" x="-1" y="42" width="413" height="266"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" id="IdI-fg-CXh"> + <rect key="frame" x="1" y="1" width="411" height="264"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <textView editable="NO" importsGraphics="NO" richText="NO" verticallyResizable="YES" id="8213" customClass="SPTextView"> + <rect key="frame" x="0.0" y="0.0" width="411" height="264"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + <size key="minSize" width="411" height="264"/> + <size key="maxSize" width="824" height="10000000"/> + <color key="insertionPointColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <size key="minSize" width="411" height="264"/> + <size key="maxSize" width="824" height="10000000"/> + <connections> + <outlet property="scrollView" destination="8210" id="8214"/> + </connections> + </textView> + </subviews> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="1" horizontal="YES" id="8212"> + <rect key="frame" x="-100" y="-100" width="87" height="15"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" controlSize="small" horizontal="NO" id="8211"> + <rect key="frame" x="224" y="1" width="11" height="133"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + </scrollView> + </subviews> + </view> + <connections> + <outlet property="initialFirstResponder" destination="6823" id="6827"/> + </connections> + </window> + <window title="Error" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default" id="959" userLabel="Error Sheet"> + <windowStyleMask key="styleMask" titled="YES" resizable="YES"/> + <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> + <rect key="contentRect" x="467" y="379" width="405" height="267"/> + <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1178"/> + <value key="minSize" type="size" width="213" height="107"/> + <view key="contentView" id="960"> + <rect key="frame" x="0.0" y="0.0" width="405" height="267"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <button focusRingType="none" verticalHuggingPriority="750" id="964"> + <rect key="frame" x="314" y="13" width="76" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES"/> + <buttonCell key="cell" type="push" title="Close" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" focusRingType="none" inset="2" id="3868"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +DQ +</string> + </buttonCell> + <connections> + <action selector="closeSheet:" target="362" id="968"/> + </connections> + </button> + <button focusRingType="none" verticalHuggingPriority="750" id="6814" userLabel="Push Button (Close Dummy for ESC)"> + <rect key="frame" x="350" y="-130" width="80" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES"/> + <buttonCell key="cell" type="push" title="Close" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" focusRingType="none" inset="2" id="6815"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +Gw +</string> + </buttonCell> + <connections> + <action selector="closeSheet:" target="362" id="6816"/> + </connections> + </button> + <scrollView horizontalLineScroll="10" horizontalPageScroll="10" verticalLineScroll="10" verticalPageScroll="10" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" id="8199"> + <rect key="frame" x="20" y="45" width="365" height="177"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" id="aEl-zD-ga2"> + <rect key="frame" x="1" y="1" width="363" height="175"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <textView editable="NO" importsGraphics="NO" richText="NO" verticallyResizable="YES" id="8202"> + <rect key="frame" x="0.0" y="0.0" width="363" height="175"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + <size key="minSize" width="363" height="175"/> + <size key="maxSize" width="717" height="10000000"/> + <color key="insertionPointColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <size key="minSize" width="363" height="175"/> + <size key="maxSize" width="717" height="10000000"/> + </textView> + </subviews> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="1" controlSize="small" horizontal="YES" id="8201"> + <rect key="frame" x="-100" y="-100" width="87" height="11"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" verticalHuggingPriority="750" controlSize="small" horizontal="NO" id="8200"> + <rect key="frame" x="350" y="1" width="14" height="175"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + </scrollView> + <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" id="0kM-iB-j0E"> + <rect key="frame" x="18" y="230" width="369" height="17"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="There have been errors!" id="j3N-dd-SyM"> + <font key="font" metaFont="smallSystemBold"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + </subviews> + </view> + <connections> + <outlet property="initialFirstResponder" destination="964" id="6813"/> + </connections> + </window> + <window title="MySQL Help" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" hidesOnDeactivate="YES" releasedWhenClosed="NO" showsToolbarButton="NO" visibleAtLaunch="NO" frameAutosaveName="MYSQL_HELP_WINDOW" animationBehavior="default" id="5428" userLabel="Help Panel" customClass="NSPanel"> + <windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES" utility="YES"/> + <windowPositionMask key="initialPositionMask" leftStrut="YES" bottomStrut="YES"/> + <rect key="contentRect" x="415" y="136" width="505" height="308"/> + <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1178"/> + <value key="minSize" type="size" width="351" height="120"/> + <view key="contentView" id="5429"> + <rect key="frame" x="0.0" y="0.0" width="505" height="308"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <webView id="5441"> + <rect key="frame" x="0.0" y="0.0" width="505" height="271"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <webPreferences key="preferences" defaultFontSize="16" defaultFixedFontSize="13" minimumFontSize="0"> + <nil key="identifier"/> + </webPreferences> + <connections> + <outlet property="UIDelegate" destination="134" id="5508"/> + <outlet property="nextKeyView" destination="5474" id="5528"/> + <outlet property="policyDelegate" destination="134" id="5451"/> + </connections> + </webView> + <searchField verticalHuggingPriority="750" id="5452"> + <rect key="frame" x="122" y="280" width="218" height="19"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <searchFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" borderStyle="bezel" placeholderString="Search" usesSingleLineMode="YES" bezelStyle="round" sendsWholeSearchString="YES" id="5453"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </searchFieldCell> + <connections> + <action selector="showHelpForSearchString:" target="134" id="5455"/> + <outlet property="nextKeyView" destination="5510" id="5526"/> + </connections> + </searchField> + <button verticalHuggingPriority="750" id="5464"> + <rect key="frame" x="81" y="-91" width="77" height="32"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="larger" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="5465"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">+</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="makeTextLarger:" target="5441" id="5469"/> + </connections> + </button> + <button verticalHuggingPriority="750" id="5466"> + <rect key="frame" x="150" y="-91" width="86" height="32"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="smaller" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="5467"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">-</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="makeTextSmaller:" target="5441" id="5468"/> + </connections> + </button> + <segmentedControl verticalHuggingPriority="750" id="5474"> + <rect key="frame" x="11" y="280" width="104" height="20"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <segmentedCell key="cell" borderStyle="border" alignment="left" style="roundRect" trackingMode="momentary" id="5475"> + <font key="font" metaFont="titleBar" size="12"/> + <segments> + <segment toolTip="Show the previous page" image="NSLeftFacingTriangleTemplate" width="32"> + <nil key="label"/> + </segment> + <segment toolTip="MySQL Table of Contents" image="NSListViewTemplate" width="32" tag="1"/> + <segment toolTip="Show the next page" image="NSRightFacingTriangleTemplate" width="32"/> + </segments> + </segmentedCell> + <connections> + <action selector="helpSegmentDispatcher:" target="134" id="5524"/> + <outlet property="nextKeyView" destination="5452" id="5529"/> + </connections> + </segmentedControl> + <button verticalHuggingPriority="750" id="5497"> + <rect key="frame" x="157" y="-48" width="132" height="32"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="focusToSearch" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="5498"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">f</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="selectText:" target="5452" id="5506"/> + </connections> + </button> + <button verticalHuggingPriority="750" id="5500"> + <rect key="frame" x="71" y="-48" width="97" height="32"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="FindNext" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="5501"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">g</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="helpSearchFindNextInPage:" target="134" id="5502"/> + </connections> + </button> + <button verticalHuggingPriority="750" id="5503"> + <rect key="frame" x="72" y="-70" width="96" height="32"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="FindPrev" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="5504"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">G</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="helpSearchFindPreviousInPage:" target="134" id="5505"/> + </connections> + </button> + <box verticalHuggingPriority="750" title="Box" boxType="separator" titlePosition="noTitle" id="5509"> + <rect key="frame" x="0.0" y="269" width="505" height="5"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <color key="borderColor" white="0.0" alpha="0.41999999999999998" colorSpace="calibratedWhite"/> + <color key="fillColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/> + <font key="titleFont" metaFont="system"/> + </box> + <segmentedControl verticalHuggingPriority="750" id="5510"> + <rect key="frame" x="347" y="279" width="152" height="20"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMinY="YES"/> + <segmentedCell key="cell" borderStyle="border" alignment="left" style="roundRect" trackingMode="selectOne" id="5511"> + <font key="font" metaFont="smallSystem"/> + <segments> + <segment label="MySQL" toolTip="Search in MySQL Help [⇧⌘M]" width="48" selected="YES"/> + <segment label="Page" toolTip="Search in current page [⇧⌘P]" width="48" tag="1"/> + <segment label="Web" toolTip="Search in the online documentation [⇧⌘W]" width="48" tag="2"/> + </segments> + </segmentedCell> + <connections> + <action selector="helpTargetDispatcher:" target="134" id="5513"/> + <outlet property="nextKeyView" destination="5441" id="5527"/> + </connections> + </segmentedControl> + <button verticalHuggingPriority="750" id="5514"> + <rect key="frame" x="129" y="-50" width="96" height="32"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="Web" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="5515"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">W</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="helpSelectHelpTargetWeb:" target="134" id="5523"/> + </connections> + </button> + <button verticalHuggingPriority="750" id="5517"> + <rect key="frame" x="220" y="-50" width="96" height="32"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="page" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="5518"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">P</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="helpSelectHelpTargetPage:" target="134" id="5522"/> + </connections> + </button> + <button verticalHuggingPriority="750" id="5519"> + <rect key="frame" x="308" y="-50" width="96" height="32"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="mysql" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="5520"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">M</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="helpSelectHelpTargetMySQL:" target="134" id="5521"/> + </connections> + </button> + </subviews> + </view> + <connections> + <outlet property="delegate" destination="134" id="7715"/> + <outlet property="initialFirstResponder" destination="5452" id="5525"/> + </connections> + </window> + <window title="Advanced Filter" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" hidesOnDeactivate="YES" oneShot="NO" releasedWhenClosed="NO" showsToolbarButton="NO" visibleAtLaunch="NO" frameAutosaveName="SPTableFilterPanel" animationBehavior="default" id="8068" userLabel="Advanced Filter Table Window" customClass="NSPanel"> + <windowStyleMask key="styleMask" titled="YES" closable="YES" resizable="YES" nonactivatingPanel="YES"/> + <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> + <rect key="contentRect" x="162" y="162" width="752" height="317"/> + <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1178"/> + <value key="minSize" type="size" width="600" height="317"/> + <view key="contentView" id="8069" userLabel="Filter Table Window"> + <rect key="frame" x="0.0" y="0.0" width="752" height="317"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <splitView dividerStyle="thin" id="8079" customClass="SPSplitView"> + <rect key="frame" x="0.0" y="40" width="752" height="277"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <customView id="8080"> + <rect key="frame" x="0.0" y="0.0" width="752" height="141"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="19" horizontalPageScroll="10" verticalLineScroll="19" verticalPageScroll="10" usesPredominantAxisScrolling="NO" id="8141"> + <rect key="frame" x="0.0" y="0.0" width="752" height="142"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" id="e9P-dP-cyb"> + <rect key="frame" x="0.0" y="23" width="752" height="119"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <tableView identifier="AdvancedFilterTableView" verticalHuggingPriority="750" allowsExpansionToolTips="YES" selectionHighlightStyle="sourceList" alternatingRowBackgroundColors="YES" emptySelection="NO" autosaveColumns="NO" headerView="8145" id="8144" customClass="SPCopyTable"> + <rect key="frame" x="0.0" y="0.0" width="752" height="119"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <size key="intercellSpacing" width="3" height="2"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> + <tableColumns> + <tableColumn width="748.921875" minWidth="40" maxWidth="1000" id="8146"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" white="0.33333298560000002" alpha="1" colorSpace="calibratedWhite"/> + </tableHeaderCell> + <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="8149"> + <font key="font" metaFont="system"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + </tableColumns> + <connections> + <outlet property="dataSource" destination="67" id="8157"/> + <outlet property="delegate" destination="67" id="8158"/> + </connections> + </tableView> + </subviews> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="YES" id="8143"> + <rect key="frame" x="1" y="95.851600000000005" width="751.5" height="15"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="8142"> + <rect key="frame" x="224" y="17" width="15" height="102"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <tableHeaderView key="headerView" id="8145"> + <rect key="frame" x="0.0" y="0.0" width="752" height="23"/> + <autoresizingMask key="autoresizingMask"/> + </tableHeaderView> + </scrollView> + </subviews> + </customView> + <customView id="8081"> + <rect key="frame" x="0.0" y="142" width="752" height="135"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <button toolTip="Perform filter while typing (⌘T)" id="8129"> + <rect key="frame" x="537" y="97" width="197" height="18"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMinY="YES"/> + <buttonCell key="cell" type="check" title="Search while typing" bezelStyle="regularSquare" imagePosition="left" alignment="left" controlSize="small" inset="2" id="8130"> + <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent">t</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + </button> + <button toolTip="If set negate entire WHERE clause (⌘N)" id="8131"> + <rect key="frame" x="537" y="77" width="197" height="18"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMinY="YES"/> + <buttonCell key="cell" type="check" title="Negate clause" bezelStyle="regularSquare" imagePosition="left" alignment="left" controlSize="small" inset="2" id="8132"> + <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent">n</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="toggleNegateClause:" target="67" id="8172"/> + </connections> + </button> + <button toolTip="Perform filtering by using SELECT DISTINCT" id="8133"> + <rect key="frame" x="537" y="57" width="197" height="18"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMinY="YES"/> + <buttonCell key="cell" type="check" title="Select distinct" bezelStyle="regularSquare" imagePosition="left" alignment="left" controlSize="small" inset="2" id="8134"> + <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent">d</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="toggleDistinctSelect:" target="67" id="8170"/> + </connections> + </button> + <textField verticalHuggingPriority="750" id="8135"> + <rect key="frame" x="537" y="37" width="137" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Default operator:" id="8136"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <button toolTip="Set default operator which should be used if pattern doen't begin with an operator" verticalHuggingPriority="750" id="8137"> + <rect key="frame" x="678" y="35" width="55" height="16"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMinY="YES"/> + <buttonCell key="cell" type="push" title="Edit" bezelStyle="rounded" alignment="center" controlSize="mini" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="8138"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="miniSystem"/> + <string key="keyEquivalent">o</string> + <modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> + </buttonCell> + <connections> + <action selector="setDefaultOperator:" target="67" id="8163"/> + </connections> + </button> + <textField verticalHuggingPriority="750" id="8139"> + <rect key="frame" x="554" y="19" width="181" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="LIKE '%@%'" id="8140"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="disabledControlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <connections> + <binding destination="1907" name="value" keyPath="values.FilterTableDefaultOperator" id="8167"/> + </connections> + </textField> + <textField verticalHuggingPriority="750" id="8180"> + <rect key="frame" x="17" y="115" width="294" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="WHERE query" id="8181"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <scrollView autohidesScrollers="YES" horizontalLineScroll="10" horizontalPageScroll="10" verticalLineScroll="10" verticalPageScroll="10" usesPredominantAxisScrolling="NO" id="8204"> + <rect key="frame" x="20" y="21" width="512" height="92"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" copiesOnScroll="NO" id="FLj-pH-h40"> + <rect key="frame" x="1" y="1" width="510" height="90"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <textView editable="NO" importsGraphics="NO" findStyle="panel" verticallyResizable="YES" allowsNonContiguousLayout="YES" id="8207" customClass="SPTextView"> + <rect key="frame" x="0.0" y="0.0" width="510" height="90"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + <size key="minSize" width="510" height="90"/> + <size key="maxSize" width="518" height="10000000"/> + <color key="insertionPointColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <size key="minSize" width="510" height="90"/> + <size key="maxSize" width="518" height="10000000"/> + <connections> + <outlet property="delegate" destination="67" id="8208"/> + </connections> + </textView> + </subviews> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="1" horizontal="YES" id="8206"> + <rect key="frame" x="1" y="119" width="232" height="15"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="8205"> + <rect key="frame" x="224" y="1" width="15" height="127"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + </scrollView> + </subviews> + </customView> + </subviews> + <holdingPriorities> + <real value="250"/> + <real value="250"/> + </holdingPriorities> + </splitView> + <button toolTip="Apply Filter to current Table (⌘F)" verticalHuggingPriority="750" id="8083"> + <rect key="frame" x="595" y="12" width="143" height="32"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="Filter" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="8084"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">f</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="filterTable:" target="67" id="8176"/> + </connections> + </button> + <button toolTip="Create a WHERE clause to search for the last typed pattern in all fields" verticalHuggingPriority="750" id="8127"> + <rect key="frame" x="14" y="12" width="216" height="32"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="Search all fields" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="8128"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent">a</string> + <modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/> + </buttonCell> + <connections> + <action selector="toggleLookAllFieldsMode:" target="67" id="8168"/> + </connections> + </button> + <button toolTip="Clear all Filter Criterias (⌘⌫)" verticalHuggingPriority="750" id="8085"> + <rect key="frame" x="452" y="12" width="143" height="32"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="Clear" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="8086"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent"></string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="tableFilterClear:" target="67" id="8175"/> + </connections> + </button> + </subviews> + </view> + <connections> + <outlet property="initialFirstResponder" destination="8144" id="8159"/> + </connections> + </window> + <window title="Window" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" oneShot="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default" id="7609" userLabel="Filter Table Set Default Operator Sheet" customClass="NSPanel"> + <windowStyleMask key="styleMask" titled="YES"/> + <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> + <rect key="contentRect" x="235" y="418" width="251" height="102"/> + <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1178"/> + <value key="minSize" type="size" width="251" height="102"/> + <value key="maxSize" type="size" width="251" height="102"/> + <view key="contentView" id="7610"> + <rect key="frame" x="0.0" y="0.0" width="251" height="102"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <button verticalHuggingPriority="750" tag="1" id="7615"> + <rect key="frame" x="140" y="13" width="96" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="Save" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="7616"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +DQ +</string> + </buttonCell> + <connections> + <action selector="closeSheet:" target="67" id="7627"/> + </connections> + </button> + <button verticalHuggingPriority="750" id="7617"> + <rect key="frame" x="46" y="13" width="96" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES"/> + <buttonCell key="cell" type="push" title="Cancel" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="7618"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +Gw +</string> + </buttonCell> + <connections> + <action selector="closeSheet:" target="67" id="7628"/> + </connections> + </button> + <textField verticalHuggingPriority="750" id="7619"> + <rect key="frame" x="17" y="76" width="208" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Enter Filter Table's Default Operator:" id="7620"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <comboBox verticalHuggingPriority="750" id="7629"> + <rect key="frame" x="20" y="51" width="214" height="22"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <comboBoxCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" borderStyle="bezel" drawsBackground="YES" completes="NO" numberOfVisibleItems="5" id="7630"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </comboBoxCell> + </comboBox> + <button horizontalHuggingPriority="750" verticalHuggingPriority="750" id="7814"> + <rect key="frame" x="17" y="14" width="25" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="help" bezelStyle="helpButton" alignment="center" controlSize="small" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="7815"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + </buttonCell> + <connections> + <action selector="showDefaultOperaterHelp:" target="67" id="7816"/> + </connections> + </button> + </subviews> + </view> + </window> + <window title="Query Favorite Sheet" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default" id="6405" userLabel="Query Favorite Sheet" customClass="NSPanel"> + <windowStyleMask key="styleMask" titled="YES" resizable="YES"/> + <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> + <rect key="contentRect" x="343" y="488" width="260" height="127"/> + <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1178"/> + <value key="minSize" type="size" width="260" height="127"/> + <value key="maxSize" type="size" width="600" height="127"/> + <view key="contentView" id="6406"> + <rect key="frame" x="0.0" y="0.0" width="260" height="127"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <textField verticalHuggingPriority="750" id="6409"> + <rect key="frame" x="17" y="93" width="225" height="14"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" lineBreakMode="truncatingMiddle" sendsActionOnEndEditing="YES" alignment="left" title="Query Name:" id="6412"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <textField verticalHuggingPriority="750" id="6408"> + <rect key="frame" x="19" y="67" width="220" height="18"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" alignment="left" drawsBackground="YES" usesSingleLineMode="YES" id="6413"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <connections> + <outlet property="delegate" destination="134" id="6417"/> + </connections> + </textField> + <button verticalHuggingPriority="750" tag="1" id="6410"> + <rect key="frame" x="150" y="13" width="94" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="Save" bezelStyle="rounded" alignment="center" controlSize="small" enabled="NO" borderStyle="border" tag="1" inset="2" id="6411"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +DQ +</string> + </buttonCell> + <connections> + <action selector="closeSheet:" target="134" id="6419"/> + </connections> + </button> + <button verticalHuggingPriority="750" id="6407"> + <rect key="frame" x="14" y="13" width="99" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> + <buttonCell key="cell" type="push" title="Cancel" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" inset="2" id="6414"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent" base64-UTF8="YES"> +Gw +</string> + </buttonCell> + <connections> + <action selector="closeSheet:" target="134" id="6418"/> + </connections> + </button> + <button toolTip="If set save the favorite globally accessible for each document" id="6516"> + <rect key="frame" x="18" y="43" width="224" height="18"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <buttonCell key="cell" type="check" title="Save globally" bezelStyle="regularSquare" imagePosition="left" alignment="left" controlSize="small" inset="2" id="6517"> + <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/> + <font key="font" metaFont="smallSystem"/> + </buttonCell> + </button> + </subviews> + </view> + </window> + <window title="Secure Text Input Sheet" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" hidesOnDeactivate="YES" releasedWhenClosed="NO" showsToolbarButton="NO" visibleAtLaunch="NO" animationBehavior="default" id="6492" userLabel="Secure Text Input Sheet" customClass="NSPanel"> + <windowStyleMask key="styleMask" titled="YES" utility="YES"/> + <windowPositionMask key="initialPositionMask" leftStrut="YES" bottomStrut="YES"/> + <rect key="contentRect" x="196" y="360" width="338" height="150"/> + <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1178"/> + <view key="contentView" id="6493"> + <rect key="frame" x="0.0" y="0.0" width="338" height="150"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <button verticalHuggingPriority="750" tag="1" id="6494"> + <rect key="frame" x="228" y="12" width="96" height="32"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <buttonCell key="cell" type="push" title="OK" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="6503"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent" base64-UTF8="YES"> +DQ +</string> + </buttonCell> + <connections> + <action selector="closePasswordSheet:" target="-2" id="6508"/> + </connections> + </button> + <button verticalHuggingPriority="750" id="6495"> + <rect key="frame" x="132" y="12" width="96" height="32"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <buttonCell key="cell" type="push" title="Cancel" bezelStyle="rounded" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="6502"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="system"/> + <string key="keyEquivalent" base64-UTF8="YES"> +Gw +</string> + </buttonCell> + <connections> + <action selector="closePasswordSheet:" target="-2" id="6509"/> + </connections> + </button> + <secureTextField verticalHuggingPriority="750" id="6496"> + <rect key="frame" x="20" y="60" width="298" height="22"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <secureTextFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" borderStyle="bezel" drawsBackground="YES" usesSingleLineMode="YES" id="6501"> + <font key="font" metaFont="system"/> + <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + <allowedInputSourceLocales> + <string>NSAllRomanInputSourcesLocaleIdentifier</string> + </allowedInputSourceLocales> + </secureTextFieldCell> + </secureTextField> + <textField verticalHuggingPriority="750" id="6497"> + <rect key="frame" x="17" y="113" width="304" height="17"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Label" id="6500"> + <font key="font" metaFont="system"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <connections> + <binding destination="1907" name="fontBold" keyPath="values._dummy" id="6515"> + <dictionary key="options"> + <integer key="NSMultipleValuesPlaceholder" value="1"/> + <integer key="NSNoSelectionPlaceholder" value="1"/> + <integer key="NSNotApplicablePlaceholder" value="1"/> + <integer key="NSNullPlaceholder" value="1"/> + </dictionary> + </binding> + </connections> + </textField> + <textField verticalHuggingPriority="750" id="6498"> + <rect key="frame" x="17" y="90" width="304" height="14"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Label" id="6499"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + </subviews> + </view> + </window> + <customView id="3994" userLabel="Custom Toolbar Views"> + <rect key="frame" x="0.0" y="0.0" width="269" height="32"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/> + <subviews> + <segmentedControl verticalHuggingPriority="750" id="6293"> + <rect key="frame" x="208" y="3" width="57" height="25"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/> + <segmentedCell key="cell" borderStyle="border" alignment="left" style="texturedSquare" trackingMode="momentary" id="6294"> + <font key="font" metaFont="system"/> + <segments> + <segment toolTip="Back" image="NSGoLeftTemplate" width="27" enabled="NO"/> + <segment toolTip="Forward" image="NSGoRightTemplate" width="27" enabled="NO" tag="1"/> + </segments> + </segmentedCell> + <connections> + <action selector="historyControlClicked:" target="6297" id="6300"/> + </connections> + </segmentedControl> + <popUpButton toolTip="Select a database to view (⇧⌘D)" verticalHuggingPriority="750" id="3995"> + <rect key="frame" x="0.0" y="3" width="200" height="26"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES" flexibleMaxY="YES"/> + <popUpButtonCell key="cell" type="roundTextured" title="Choose Database..." bezelStyle="texturedRounded" alignment="center" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" inset="2" selectedItem="3998" id="3996"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="titleBar" size="12"/> + <menu key="menu" title="OtherViews" id="3997"> + <items> + <menuItem title="Choose Database..." state="on" id="3998"/> + <menuItem isSeparatorItem="YES" id="4521"/> + <menuItem title="Add Database…" id="4523"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="addDatabase:" target="-1" id="4524"/> + </connections> + </menuItem> + <menuItem isSeparatorItem="YES" state="on" id="4522"/> + </items> + </menu> + </popUpButtonCell> + </popUpButton> + </subviews> + </customView> + <customView id="5999" userLabel="Title Icon View"> + <rect key="frame" x="0.0" y="0.0" width="110" height="20"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMinY="YES"/> + <subviews> + <textField verticalHuggingPriority="750" id="6170"> + <rect key="frame" x="2" y="2" width="105" height="14"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES"/> + <textFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" id="6171"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="disabledControlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <imageView id="6000"> + <rect key="frame" x="5" y="-2" width="101" height="22"/> + <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMinY="YES"/> + <imageCell key="cell" refusesFirstResponder="YES" alignment="left" animates="YES" imageAlignment="right" imageScaling="proportionallyDown" id="6001"/> + </imageView> + </subviews> + </customView> + <customView id="6885" userLabel="statusTable Accessory View"> + <rect key="frame" x="0.0" y="0.0" width="360" height="157"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <subviews> + <scrollView autohidesScrollers="YES" horizontalLineScroll="16" horizontalPageScroll="10" verticalLineScroll="16" verticalPageScroll="10" usesPredominantAxisScrolling="NO" id="6886"> + <rect key="frame" x="0.0" y="0.0" width="360" height="157"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" drawsBackground="NO" id="en7-kg-fIt"> + <rect key="frame" x="1" y="23" width="358" height="133"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <tableView verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" selectionHighlightStyle="sourceList" alternatingRowBackgroundColors="YES" columnReordering="NO" multipleSelection="NO" autosaveColumns="NO" rowHeight="14" headerView="6890" id="6889"> + <rect key="frame" x="0.0" y="0.0" width="358" height="133"/> + <autoresizingMask key="autoresizingMask"/> + <size key="intercellSpacing" width="3" height="2"/> + <color key="backgroundColor" name="_sourceListBackgroundColor" catalog="System" colorSpace="catalog"/> + <tableViewGridLines key="gridStyleMask" vertical="YES"/> + <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/> + <tableColumns> + <tableColumn identifier="table_name" editable="NO" width="101" minWidth="40" maxWidth="1000" id="6891"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Item"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" white="0.33333298560000002" alpha="1" colorSpace="calibratedWhite"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="6894"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="msg_status" editable="NO" width="69" minWidth="40" maxWidth="1000" id="6892"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" white="0.33333298560000002" alpha="1" colorSpace="calibratedWhite"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="6893"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + <tableColumn identifier="msg_text" editable="NO" width="179" minWidth="10" maxWidth="3.4028234663852886e+38" id="6895"> + <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Message"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/> + </tableHeaderCell> + <textFieldCell key="dataCell" controlSize="small" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="6896"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/> + </tableColumn> + </tableColumns> + <connections> + <outlet property="dataSource" destination="-2" id="6899"/> + <outlet property="delegate" destination="-2" id="6900"/> + </connections> + </tableView> + </subviews> + <nil key="backgroundColor"/> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="1" horizontal="YES" id="6888"> + <rect key="frame" x="1" y="119" width="344" height="15"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" horizontal="NO" id="6887"> + <rect key="frame" x="344" y="17" width="15" height="102"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <tableHeaderView key="headerView" id="6890"> + <rect key="frame" x="0.0" y="0.0" width="358" height="23"/> + <autoresizingMask key="autoresizingMask"/> + </tableHeaderView> + </scrollView> + <button verticalHuggingPriority="750" id="6901"> + <rect key="frame" x="270" y="-32" width="58" height="28"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <buttonCell key="cell" type="push" title="Copy" bezelStyle="rounded" alignment="center" controlSize="small" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="6902"> + <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/> + <font key="font" metaFont="smallSystem"/> + <string key="keyEquivalent">c</string> + <modifierMask key="keyEquivalentModifierMask" command="YES"/> + </buttonCell> + <connections> + <action selector="copyChecksumFromSheet:" target="-2" id="6904"/> + </connections> + </button> + </subviews> + </customView> + <customView focusRingType="none" id="6431" userLabel="Query Favorite Search"> + <rect key="frame" x="0.0" y="0.0" width="217" height="20"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <subviews> + <searchField focusRingType="none" verticalHuggingPriority="750" id="6432"> + <rect key="frame" x="20" y="1" width="176" height="19"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <searchFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" borderStyle="bezel" focusRingType="none" placeholderString="Filter" usesSingleLineMode="YES" bezelStyle="round" sendsSearchStringImmediately="YES" maximumRecents="10" recentsAutosaveName="SPQueryFavoriteSearchField" id="6433"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </searchFieldCell> + <connections> + <action selector="filterQueryFavorites:" target="134" id="6436"/> + <outlet property="delegate" destination="134" id="6437"/> + </connections> + </searchField> + </subviews> + </customView> + <customView focusRingType="none" id="6447" userLabel="Query History Search"> + <rect key="frame" x="0.0" y="0.0" width="217" height="20"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <subviews> + <searchField focusRingType="none" verticalHuggingPriority="750" id="6448"> + <rect key="frame" x="20" y="1" width="176" height="19"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <searchFieldCell key="cell" controlSize="small" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" borderStyle="bezel" focusRingType="none" placeholderString="Filter" usesSingleLineMode="YES" bezelStyle="round" sendsSearchStringImmediately="YES" maximumRecents="10" recentsAutosaveName="SPQueryHistorySearchField" id="6449"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/> + </searchFieldCell> + <connections> + <action selector="filterQueryHistory:" target="134" id="6452"/> + <outlet property="delegate" destination="134" id="6453"/> + </connections> + </searchField> + </subviews> + </customView> + <userDefaultsController representsSharedInstance="YES" id="1907" userLabel="Shared User Defaults Controller"/> + <customObject id="134" userLabel="SPCustomQuery" customClass="SPCustomQuery"> + <connections> + <outlet property="affectedRowsText" destination="7967" id="7969"/> + <outlet property="autohelpMenuItem" destination="7248" id="7355"/> + <outlet property="autoindentMenuItem" destination="7236" id="7356"/> + <outlet property="autopairMenuItem" destination="7235" id="7357"/> + <outlet property="autouppercaseKeywordsMenuItem" destination="7234" id="7358"/> + <outlet property="clearHistoryMenuItem" destination="7277" id="7366"/> + <outlet property="commentCurrentQueryMenuItem" destination="7250" id="7359"/> + <outlet property="commentLineOrSelectionMenuItem" destination="7249" id="7360"/> + <outlet property="completionListMenuItem" destination="7238" id="7361"/> + <outlet property="copyHistoryMenuItem" destination="7279" id="7367"/> + <outlet property="customQueryScrollView" destination="7223" id="7372"/> + <outlet property="customQueryView" destination="7224" id="7371"/> + <outlet property="editorFontMenuItem" destination="7233" id="7370"/> + <outlet property="errorText" destination="8248" id="8250"/> + <outlet property="errorTextScrollView" destination="8245" id="8249"/> + <outlet property="errorTextTitle" destination="7429" id="8334"/> + <outlet property="helpNavigator" destination="5474" id="5478"/> + <outlet property="helpSearchField" destination="5452" id="5454"/> + <outlet property="helpSearchFieldCell" destination="5453" id="5496"/> + <outlet property="helpTargetSelector" destination="5510" id="5512"/> + <outlet property="helpWebView" destination="5441" id="5442"/> + <outlet property="helpWebViewWindow" destination="5428" id="5433"/> + <outlet property="nextHistoryMenuItem" destination="7242" id="7368"/> + <outlet property="previousHistoryMenuItem" destination="7243" id="7369"/> + <outlet property="queryEditorSplitView" destination="7209" id="8023"/> + <outlet property="queryFavoriteNameTextField" destination="6408" id="6416"/> + <outlet property="queryFavoritesButton" destination="7218" id="7353"/> + <outlet property="queryFavoritesSaveAllMenuItem" destination="7269" id="7363"/> + <outlet property="queryFavoritesSaveAsMenuItem" destination="7265" id="7364"/> + <outlet property="queryFavoritesSearchField" destination="6432" id="6434"/> + <outlet property="queryFavoritesSearchFieldView" destination="6431" id="6435"/> + <outlet property="queryFavoritesSearchMenuItem" destination="7268" id="7365"/> + <outlet property="queryFavoritesSheet" destination="6405" id="6415"/> + <outlet property="queryHistoryButton" destination="7217" id="7354"/> + <outlet property="queryHistorySearchField" destination="6448" id="6451"/> + <outlet property="queryHistorySearchFieldView" destination="6447" id="6450"/> + <outlet property="queryHistorySearchMenuItem" destination="7274" id="7374"/> + <outlet property="queryInfoButton" destination="7970" id="7974"/> + <outlet property="queryInfoPaneSplitView" destination="7206" id="7338"/> + <outlet property="runPrimaryActionButton" destination="8316" id="8322"/> + <outlet property="runPrimaryActionMenuItem" destination="8323" id="8332"/> + <outlet property="runSecondaryActionMenuItem" destination="8324" id="8331"/> + <outlet property="saveHistoryMenuItem" destination="7276" id="7373"/> + <outlet property="saveQueryFavoriteButton" destination="6410" id="6420"/> + <outlet property="saveQueryFavoriteGlobal" destination="6516" id="6518"/> + <outlet property="shiftLeftMenuItem" destination="7239" id="7349"/> + <outlet property="shiftRightMenuItem" destination="7240" id="7348"/> + <outlet property="tableDocumentInstance" destination="-2" id="6256"/> + <outlet property="tablesListInstance" destination="68" id="6884"/> + <outlet property="textView" destination="8254" id="8264"/> + <outlet property="valueSheet" destination="714" id="718"/> + <outlet property="valueTextField" destination="8219" id="8221"/> + </connections> + </customObject> + <customObject id="67" userLabel="SPTableContent" customClass="SPTableContent"> + <connections> + <outlet property="addButton" destination="5175" id="5189"/> + <outlet property="argumentField" destination="3963" id="3965"/> + <outlet property="betweenTextField" destination="6364" id="6368"/> + <outlet property="compareField" destination="156" id="166"/> + <outlet property="contentSplitView" destination="yTv-Lq-Y3H" id="BQr-g6-UG3"/> + <outlet property="contentViewPane" destination="27" id="6661"/> + <outlet property="countText" destination="261" id="262"/> + <outlet property="duplicateButton" destination="5178" id="7837"/> + <outlet property="fieldField" destination="146" id="164"/> + <outlet property="filterButton" destination="4676" id="5942"/> + <outlet property="filterControllerInstance" destination="ki9-Po-bdr" id="5od-0U-9xj"/> + <outlet property="filterTableDistinctCheckbox" destination="8133" id="8171"/> + <outlet property="filterTableFilterButton" destination="8083" id="8177"/> + <outlet property="filterTableLiveSearchCheckbox" destination="8129" id="8174"/> + <outlet property="filterTableNegateCheckbox" destination="8131" id="8173"/> + <outlet property="filterTableQueryTitle" destination="8180" id="8184"/> + <outlet property="filterTableSearchAllFields" destination="8127" id="8169"/> + <outlet property="filterTableSetDefaultOperatorSheet" destination="7609" id="7632"/> + <outlet property="filterTableSetDefaultOperatorValue" destination="7629" id="7631"/> + <outlet property="filterTableSplitView" destination="8079" id="8178"/> + <outlet property="filterTableView" destination="8144" id="8160"/> + <outlet property="filterTableWhereClause" destination="8207" id="8209"/> + <outlet property="filterTableWindow" destination="8068" id="8161"/> + <outlet property="firstBetweenField" destination="6369" id="6373"/> + <outlet property="multipleLineEditingButton" destination="5201" id="5203"/> + <outlet property="paginationButton" destination="6653" id="6657"/> + <outlet property="paginationNextButton" destination="6647" id="6664"/> + <outlet property="paginationPreviousButton" destination="6650" id="6663"/> + <outlet property="reloadButton" destination="5176" id="6625"/> + <outlet property="removeButton" destination="5177" id="5190"/> + <outlet property="secondBetweenField" destination="6371" id="6374"/> + <outlet property="spHistoryControllerInstance" destination="6297" id="6316"/> + <outlet property="tableContentView" destination="36" id="142"/> + <outlet property="tableDataInstance" destination="4702" id="4712"/> + <outlet property="tableDocumentInstance" destination="-2" id="900"/> + <outlet property="tableInfoInstance" destination="4488" id="6352"/> + <outlet property="tableSourceInstance" destination="69" id="6882"/> + <outlet property="tablesListInstance" destination="68" id="1026"/> + </connections> + </customObject> + <customObject id="ki9-Po-bdr" userLabel="SPTableContentFilter" customClass="SPTableContentFilterController"> + <connections> + <outlet property="contentSplitView" destination="yTv-Lq-Y3H" id="KB1-gk-Ssi"/> + <outlet property="filterRuleEditor" destination="FF9-z2-9od" id="RW4-XM-XQS"/> + <outlet property="tableDataInstance" destination="4702" id="e69-W6-UwN"/> + <outlet property="tableDocumentInstance" destination="-2" id="2Xe-WU-zRw"/> + <outlet property="tablesListInstance" destination="68" id="byh-Eh-UAv"/> + </connections> + </customObject> + <customObject id="362" userLabel="TableDump" customClass="SPDataImport"> + <connections> + <outlet property="customQueryInstance" destination="134" id="953"/> + <outlet property="errorsSheet" destination="959" id="967"/> + <outlet property="errorsView" destination="8202" id="8203"/> + <outlet property="singleProgressBar" destination="6131" id="6138"/> + <outlet property="singleProgressSheet" destination="6125" id="6139"/> + <outlet property="singleProgressText" destination="6130" id="6140"/> + <outlet property="singleProgressTitle" destination="6132" id="6238"/> + <outlet property="tableContentInstance" destination="67" id="1025"/> + <outlet property="tableDataInstance" destination="4702" id="4713"/> + <outlet property="tableDocumentInstance" destination="-2" id="534"/> + <outlet property="tableSourceInstance" destination="69" id="1172"/> + <outlet property="tablesListInstance" destination="68" id="1173"/> + </connections> + </customObject> + <customObject id="68" userLabel="SPTablesList" customClass="SPTablesList"> + <connections> + <outlet property="addTableButton" destination="5328" id="5367"/> + <outlet property="copyCreateSyntaxContextMenuItem" destination="7828" id="7830"/> + <outlet property="copyCreateSyntaxMenuItem" destination="7928" id="7950"/> + <outlet property="copyTableButton" destination="515" id="5705"/> + <outlet property="copyTableContentSwitch" destination="514" id="520"/> + <outlet property="copyTableMessageField" destination="512" id="5427"/> + <outlet property="copyTableNameField" destination="zPq-c4-GfK" id="i9F-Er-ve6"/> + <outlet property="copyTableSheet" destination="501" id="521"/> + <outlet property="customQueryInstance" destination="134" id="750"/> + <outlet property="databaseDataInstance" destination="5814" id="6209"/> + <outlet property="duplicateTableContextMenuItem" destination="6185" id="6201"/> + <outlet property="duplicateTableMenuItem" destination="7918" id="7945"/> + <outlet property="extendedTableInfoInstance" destination="1277" id="5857"/> + <outlet property="listFilterField" destination="6278" id="6284"/> + <outlet property="openTableInNewTabContextMenuItem" destination="7683" id="7685"/> + <outlet property="openTableInNewTabMenuItem" destination="7923" id="7948"/> + <outlet property="openTableInNewWindowContextMenuItem" destination="KYo-IU-iIw" id="iiG-2r-r4b"/> + <outlet property="openTableInNewWindowMenuItem" destination="Ts3-iA-OpO" id="quL-BY-YQJ"/> + <outlet property="removeTableContextMenuItem" destination="6182" id="6203"/> + <outlet property="removeTableMenuItem" destination="7921" id="7947"/> + <outlet property="renameTableContextMenuItem" destination="6186" id="6200"/> + <outlet property="renameTableMenuItem" destination="7917" id="7944"/> + <outlet property="separatorTableContextMenuItem" destination="6183" id="6202"/> + <outlet property="separatorTableContextMenuItem2" destination="7056" id="7060"/> + <outlet property="separatorTableContextMenuItem3" destination="6922" id="7792"/> + <outlet property="separatorTableMenuItem" destination="7919" id="7951"/> + <outlet property="separatorTableMenuItem2" destination="7926" id="7952"/> + <outlet property="separatorTableMenuItem3" destination="7924" id="7953"/> + <outlet property="showCreateSyntaxContextMenuItem" destination="6923" id="6929"/> + <outlet property="showCreateSyntaxMenuItem" destination="7927" id="7949"/> + <outlet property="spHistoryControllerInstance" destination="6297" id="6302"/> + <outlet property="tableCollationButton" destination="8310" id="8314"/> + <outlet property="tableContentInstance" destination="67" id="143"/> + <outlet property="tableDataInstance" destination="4702" id="4707"/> + <outlet property="tableDocumentInstance" destination="-2" id="587"/> + <outlet property="tableDumpInstance" destination="362" id="619"/> + <outlet property="tableEncodingButton" destination="5325" id="5366"/> + <outlet property="tableInfoInstance" destination="4488" id="6883"/> + <outlet property="tableListFilterSplitView" destination="6265" id="6280"/> + <outlet property="tableListSplitView" destination="6032" id="6257"/> + <outlet property="tableNameField" destination="5324" id="5698"/> + <outlet property="tableSheet" destination="5322" id="5368"/> + <outlet property="tableSourceInstance" destination="69" id="137"/> + <outlet property="tableTriggersInstance" destination="6691" id="7042"/> + <outlet property="tableTypeButton" destination="5714" id="5743"/> + <outlet property="tablesListView" destination="22" id="138"/> + <outlet property="toolbarActionsButton" destination="7859" id="7943"/> + <outlet property="toolbarAddButton" destination="7850" id="7853"/> + <outlet property="toolbarReloadButton" destination="7954" id="7958"/> + <outlet property="truncateTableButton" destination="7920" id="7946"/> + <outlet property="truncateTableContextMenuItem" destination="6184" id="7681"/> + </connections> + </customObject> + <customObject id="69" userLabel="SPTableStructure" customClass="SPTableStructure"> + <connections> + <outlet property="addFieldButton" destination="5131" id="5143"/> + <outlet property="addIndexButton" destination="5150" id="7085"/> + <outlet property="chooseKeyButton" destination="414" id="420"/> + <outlet property="databaseDataInstance" destination="5814" id="7670"/> + <outlet property="duplicateFieldButton" destination="5138" id="7835"/> + <outlet property="editTableButton" destination="6009" id="6012"/> + <outlet property="encodingPopupCell" destination="7490" id="7496"/> + <outlet property="extendedTableInfoInstance" destination="1277" id="6875"/> + <outlet property="indexesController" destination="7073" id="7093"/> + <outlet property="indexesShowButton" destination="7457" id="7460"/> + <outlet property="indexesTableView" destination="289" id="7087"/> + <outlet property="keySheet" destination="409" id="421"/> + <outlet property="refreshIndexesButton" destination="5151" id="7088"/> + <outlet property="reloadFieldsButton" destination="5134" id="6635"/> + <outlet property="removeFieldButton" destination="5136" id="5144"/> + <outlet property="removeIndexButton" destination="5152" id="7086"/> + <outlet property="resetAutoIncrementLine" destination="6852" id="6876"/> + <outlet property="resetAutoIncrementSheet" destination="6832" id="6843"/> + <outlet property="resetAutoIncrementValue" destination="6840" id="6844"/> + <outlet property="structureGrabber" destination="4503" id="4505"/> + <outlet property="structureHelpPanel" destination="NkY-EN-Fxn" id="bLb-Jh-Jm1"/> + <outlet property="structureHelpText" destination="Bfr-0R-dqh" id="0cG-kD-PJR"/> + <outlet property="tableDataInstance" destination="4702" id="4709"/> + <outlet property="tableDocumentInstance" destination="-2" id="6637"/> + <outlet property="tableInfoInstance" destination="4488" id="6853"/> + <outlet property="tableSourceView" destination="232" id="244"/> + <outlet property="tablesIndexesSplitView" destination="674" id="7461"/> + <outlet property="tablesListInstance" destination="68" id="1171"/> + <outlet property="viewColumnsMenu" destination="8056" id="8067"/> + </connections> + </customObject> + <customObject id="1277" userLabel="SPExtendedTableInfo" customClass="SPExtendedTableInfo"> + <connections> + <outlet property="databaseDataInstance" destination="5814" id="5816"/> + <outlet property="resetAutoIncrementResetButton" destination="6856" id="6867"/> + <outlet property="tableCollationPopUpButton" destination="5765" id="5817"/> + <outlet property="tableCommentsTextView" destination="8236" id="8238"/> + <outlet property="tableCreateSyntaxTextView" destination="8242" id="8244"/> + <outlet property="tableCreatedAt" destination="5770" id="5772"/> + <outlet property="tableDataInstance" destination="4702" id="4711"/> + <outlet property="tableDataSize" destination="5793" id="5849"/> + <outlet property="tableDocumentInstance" destination="-2" id="6640"/> + <outlet property="tableEncodingPopUpButton" destination="5760" id="5813"/> + <outlet property="tableIndexSize" destination="5791" id="5850"/> + <outlet property="tableMaxDataSize" destination="5792" id="5851"/> + <outlet property="tableRowAutoIncrement" destination="5781" id="5852"/> + <outlet property="tableRowAvgLength" destination="5779" id="5853"/> + <outlet property="tableRowFormat" destination="5777" id="5854"/> + <outlet property="tableRowNumber" destination="5775" id="5855"/> + <outlet property="tableSizeFree" destination="5790" id="5856"/> + <outlet property="tableSourceInstance" destination="69" id="6866"/> + <outlet property="tableTypePopUpButton" destination="5754" id="5811"/> + <outlet property="tableUpdatedAt" destination="5768" id="5773"/> + <outlet property="tablesListInstance" destination="68" id="6812"/> + </connections> + </customObject> + <customObject id="5567" userLabel="SPTableRelations" customClass="SPTableRelations"> + <connections> + <outlet property="addRelationButton" destination="5559" id="5918"/> + <outlet property="addRelationPanel" destination="5596" id="5922"/> + <outlet property="addRelationTableBox" destination="5660" id="5923"/> + <outlet property="columnPopUpButton" destination="5653" id="5928"/> + <outlet property="confirmAddRelationButton" destination="5599" id="5929"/> + <outlet property="constraintName" destination="7808" id="7812"/> + <outlet property="dataProgressIndicator" destination="7823" id="7827"/> + <outlet property="detailErrorText" destination="UVh-gz-xnJ" id="JXS-FR-qOe"/> + <outlet property="detailErrorView" destination="VCn-3k-MdI" id="tnS-Wc-vbj"/> + <outlet property="labelTextField" destination="5589" id="5921"/> + <outlet property="onDeletePopUpButton" destination="5622" id="5924"/> + <outlet property="onUpdatePopUpButton" destination="5614" id="5925"/> + <outlet property="progressStatusTextField" destination="7824" id="7826"/> + <outlet property="refColumnPopUpButton" destination="5636" id="5926"/> + <outlet property="refTablePopUpButton" destination="5630" id="5927"/> + <outlet property="refreshRelationsButton" destination="5560" id="5920"/> + <outlet property="relationsTableView" destination="5548" id="5917"/> + <outlet property="removeRelationButton" destination="5561" id="5919"/> + <outlet property="tableDataInstance" destination="4702" id="5595"/> + <outlet property="tableDocumentInstance" destination="-2" id="5593"/> + <outlet property="tableList" destination="22" id="5712"/> + <outlet property="tablesListInstance" destination="68" id="5594"/> + </connections> + </customObject> + <customObject id="6691" userLabel="SPTableTriggers" customClass="SPTableTriggers"> + <connections> + <outlet property="addTriggerButton" destination="6699" id="6741"/> + <outlet property="addTriggerPanel" destination="6765" id="6797"/> + <outlet property="confirmAddTriggerButton" destination="6768" id="6803"/> + <outlet property="labelTextField" destination="6694" id="6806"/> + <outlet property="refreshTriggersButton" destination="6697" id="6807"/> + <outlet property="removeTriggerButton" destination="6696" id="6808"/> + <outlet property="tableDataInstance" destination="4702" id="6744"/> + <outlet property="tableDocumentInstance" destination="-2" id="6742"/> + <outlet property="tableList" destination="22" id="6751"/> + <outlet property="tablesListInstance" destination="68" id="6752"/> + <outlet property="triggerActionTimePopUpButton" destination="6774" id="6799"/> + <outlet property="triggerEventPopUpButton" destination="6773" id="6800"/> + <outlet property="triggerNameTextField" destination="6775" id="6798"/> + <outlet property="triggerStatementTextView" destination="8230" id="8232"/> + <outlet property="triggersTableView" destination="6701" id="6745"/> + </connections> + </customObject> + <customObject id="4488" userLabel="SPTableInfo" customClass="SPTableInfo"> + <connections> + <outlet property="activitiesTable" destination="7692" id="7713"/> + <outlet property="infoTable" destination="4484" id="4490"/> + <outlet property="tableDataInstance" destination="4702" id="4710"/> + <outlet property="tableDocumentInstance" destination="-2" id="4496"/> + <outlet property="tableInfoScrollView" destination="4481" id="7690"/> + <outlet property="tableList" destination="22" id="4681"/> + <outlet property="tableListInstance" destination="68" id="4491"/> + </connections> + </customObject> + <customObject id="4702" userLabel="SPTableData" customClass="SPTableData"> + <connections> + <outlet property="tableDocumentInstance" destination="-2" id="4705"/> + <outlet property="tableListInstance" destination="68" id="4706"/> + </connections> + </customObject> + <customObject id="5377" userLabel="SPExportController" customClass="SPExportController"> + <connections> + <outlet property="customQueryInstance" destination="134" id="7072"/> + <outlet property="tableContentInstance" destination="67" id="7071"/> + <outlet property="tableDataInstance" destination="4702" id="6622"/> + <outlet property="tableDocumentInstance" destination="-2" id="6621"/> + <outlet property="tablesListInstance" destination="68" id="6620"/> + </connections> + </customObject> + <customObject id="5814" userLabel="SPDatabaseData" customClass="SPDatabaseData"/> + <customObject id="6297" userLabel="SPHistoryController" customClass="SPHistoryController"> + <connections> + <outlet property="historyControl" destination="6293" id="6299"/> + <outlet property="theDocument" destination="-2" id="6301"/> + </connections> + </customObject> + <customObject id="7073" userLabel="SPIndexesController" customClass="SPIndexesController"> + <connections> + <outlet property="addIndexButton" destination="5150" id="7076"/> + <outlet property="dbDocument" destination="-2" id="7074"/> + <outlet property="indexesTableView" destination="289" id="7079"/> + <outlet property="removeIndexButton" destination="5152" id="7096"/> + <outlet property="tableData" destination="4702" id="7089"/> + <outlet property="tableStructure" destination="69" id="7090"/> + <outlet property="tablesList" destination="68" id="7075"/> + </connections> + </customObject> + <menu id="6180" userLabel="Table List Menu"> + <items> + <menuItem title="Rename Table..." toolTip="Rename the selected item" id="6186"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="renameTable:" target="68" id="6194"/> + </connections> + </menuItem> + <menuItem title="Duplicate Table..." toolTip="Duplicate the selected item" id="6185"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="copyTable:" target="68" id="6197"/> + </connections> + </menuItem> + <menuItem isSeparatorItem="YES" id="6183"/> + <menuItem title="Truncate Table..." toolTip="Delete all records of selected table(s)" id="6184"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="truncateTable:" target="68" id="6198"/> + </connections> + </menuItem> + <menuItem title="Remove Table..." toolTip="Remove the selected item(s)" id="6182"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="removeTable:" target="68" id="6199"/> + </connections> + </menuItem> + <menuItem isSeparatorItem="YES" id="6922"/> + <menuItem title="Open Table in New Tab" id="7683"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="openTableInNewTab:" target="68" id="7684"/> + </connections> + </menuItem> + <menuItem title="Open Table in New Window" alternate="YES" id="KYo-IU-iIw"> + <modifierMask key="keyEquivalentModifierMask" option="YES"/> + <connections> + <action selector="openTableInNewWindow:" target="68" id="KbY-Cu-Uey"/> + </connections> + </menuItem> + <menuItem isSeparatorItem="YES" id="7783"/> + <menuItem title="Export" id="7051"> + <modifierMask key="keyEquivalentModifierMask"/> + <menu key="submenu" title="Export" id="7052"> + <items> + <menuItem title="As SQL dump..." id="7054"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="exportSelectedTablesAs:" target="-2" id="7057"/> + </connections> + </menuItem> + <menuItem title="As CSV file..." tag="1" id="7053"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="exportSelectedTablesAs:" target="-2" id="7058"/> + </connections> + </menuItem> + <menuItem title="As XML file..." tag="2" id="7055"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="exportSelectedTablesAs:" target="-2" id="7059"/> + </connections> + </menuItem> + </items> + </menu> + </menuItem> + <menuItem isSeparatorItem="YES" id="7056"/> + <menuItem title="Show Create Table Syntax..." id="6923"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="showCreateTableSyntax:" target="-2" id="6925"/> + </connections> + </menuItem> + <menuItem title="Copy Create Table Syntax" id="7828"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="copyCreateTableSyntax:" target="-2" id="7829"/> + </connections> + </menuItem> + </items> + </menu> + <menu id="6219" userLabel="Table Indexes Menu"> + <items> + <menuItem title="Delete Index" id="6220"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="removeIndex:" target="7073" id="7082"/> + </connections> + </menuItem> + <menuItem isSeparatorItem="YES" id="6830"/> + <menuItem title="Reset AUTO_INCREMENT…" tag="1" id="6829"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="resetAutoIncrement:" target="69" id="7095"/> + </connections> + </menuItem> + </items> + <connections> + <outlet property="delegate" destination="7073" id="7094"/> + </connections> + </menu> + <menu id="6210" userLabel="Table Structure Menu"> + <items> + <menuItem title="Delete Field" id="6212"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="removeField:" target="69" id="6215"/> + </connections> + </menuItem> + <menuItem title="Duplicate Field" id="6211"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="duplicateField:" target="69" id="7836"/> + </connections> + </menuItem> + <menuItem isSeparatorItem="YES" id="7499"/> + <menuItem title="Show Optimized Field Type" id="7500"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="showOptimizedFieldType:" target="69" id="7501"/> + </connections> + </menuItem> + </items> + </menu> + <menu id="6225" userLabel="Table Content Menu"> + <items> + <menuItem title="Copy" tag="2001" id="6344"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="copy:" target="36" id="6346"/> + </connections> + </menuItem> + <menuItem title="Copy with Column Names" tag="2002" id="6343"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="copy:" target="36" id="6345"/> + </connections> + </menuItem> + <menuItem title="Copy as SQL INSERT" tag="2003" id="6341"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="copy:" target="36" id="6342"/> + </connections> + </menuItem> + <menuItem isSeparatorItem="YES" id="7796"/> + <menuItem title="Add New Row" id="7795"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="addRow:" target="67" id="7797"/> + </connections> + </menuItem> + <menuItem isSeparatorItem="YES" id="6340"/> + <menuItem title="Duplicate Row" id="6227"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="duplicateRow:" target="67" id="7839"/> + </connections> + </menuItem> + <menuItem title="Delete Row" id="6226"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="removeRow:" target="67" id="6230"/> + </connections> + </menuItem> + </items> + </menu> + <menu id="7467" userLabel="Table Custom Query Menu"> + <items> + <menuItem title="Copy" tag="2001" id="7468"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="copy:" target="-1" id="7481"/> + </connections> + </menuItem> + <menuItem title="Copy with Column Names" tag="2002" id="7469"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="copy:" target="-1" id="7482"/> + </connections> + </menuItem> + <menuItem title="Copy as SQL INSERT" tag="2003" id="7470"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="copy:" target="-1" id="7483"/> + </connections> + </menuItem> + <menuItem isSeparatorItem="YES" hidden="YES" id="7472"/> + <menuItem title="Delete Row" hidden="YES" id="7473"> + <modifierMask key="keyEquivalentModifierMask"/> + </menuItem> + </items> + </menu> + <menu id="6232" userLabel="Table Relations Menu"> + <items> + <menuItem title="Delete Relation" id="6233"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="removeRelation:" target="5567" id="6237"/> + </connections> + </menuItem> + </items> + </menu> + <menu id="6735" userLabel="Table Triggers Menu"> + <items> + <menuItem title="Edit Trigger" id="7668"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="editTrigger:" target="6691" id="7669"/> + </connections> + </menuItem> + <menuItem title="Delete Trigger" id="6736"> + <modifierMask key="keyEquivalentModifierMask"/> + <connections> + <action selector="removeTrigger:" target="6691" id="6809"/> + </connections> + </menuItem> + </items> + </menu> + <customView id="VCn-3k-MdI" userLabel="MySQL Error Accessory View"> + <rect key="frame" x="0.0" y="0.0" width="395" height="135"/> + <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> + <subviews> + <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" id="GVI-VY-JuM"> + <rect key="frame" x="-1" y="118" width="398" height="17"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> + <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Details:" id="00a-86-EQq"> + <font key="font" metaFont="smallSystem"/> + <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/> + </textFieldCell> + </textField> + <scrollView autohidesScrollers="YES" horizontalLineScroll="10" horizontalPageScroll="10" verticalLineScroll="10" verticalPageScroll="10" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" id="qxR-EW-V6F"> + <rect key="frame" x="1" y="0.0" width="394" height="112"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" id="Jv9-hI-7CJ"> + <rect key="frame" x="1" y="1" width="392" height="110"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <textView editable="NO" importsGraphics="NO" richText="NO" allowsUndo="YES" verticallyResizable="YES" allowsNonContiguousLayout="YES" quoteSubstitution="YES" dashSubstitution="YES" smartInsertDelete="YES" id="UVh-gz-xnJ"> + <rect key="frame" x="0.0" y="0.0" width="392" height="110"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + <size key="minSize" width="392" height="110"/> + <size key="maxSize" width="463" height="10000000"/> + <color key="insertionPointColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <size key="minSize" width="392" height="110"/> + <size key="maxSize" width="463" height="10000000"/> + </textView> + </subviews> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="1" horizontal="YES" id="TRD-dk-r1Q"> + <rect key="frame" x="-100" y="-100" width="87" height="18"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="1" horizontal="NO" id="mRm-ts-hRV"> + <rect key="frame" x="244" y="1" width="15" height="76"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + </scrollView> + </subviews> + <point key="canvasLocation" x="-318.5" y="-215.5"/> + </customView> + <window title="Type Info" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" hidesOnDeactivate="YES" oneShot="NO" releasedWhenClosed="NO" showsToolbarButton="NO" visibleAtLaunch="NO" animationBehavior="default" id="NkY-EN-Fxn" userLabel="Structure Type Help" customClass="NSPanel"> + <windowStyleMask key="styleMask" titled="YES" utility="YES" nonactivatingPanel="YES"/> + <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/> + <rect key="contentRect" x="196" y="132" width="410" height="165"/> + <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1178"/> + <view key="contentView" id="h2r-1x-8ZD"> + <rect key="frame" x="0.0" y="0.0" width="410" height="165"/> + <autoresizingMask key="autoresizingMask"/> + <subviews> + <scrollView borderType="none" horizontalLineScroll="10" horizontalPageScroll="10" verticalLineScroll="10" verticalPageScroll="10" hasHorizontalScroller="NO" hasVerticalScroller="NO" usesPredominantAxisScrolling="NO" horizontalScrollElasticity="none" verticalScrollElasticity="none" id="VTe-1x-Phd"> + <rect key="frame" x="13" y="6" width="384" height="152"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <clipView key="contentView" drawsBackground="NO" copiesOnScroll="NO" id="AYA-4f-zEy"> + <rect key="frame" x="0.0" y="0.0" width="384" height="152"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <subviews> + <textView editable="NO" drawsBackground="NO" importsGraphics="NO" richText="NO" findStyle="panel" usesFontPanel="YES" verticallyResizable="YES" allowsNonContiguousLayout="YES" id="Bfr-0R-dqh"> + <rect key="frame" x="0.0" y="0.0" width="384" height="152"/> + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + <size key="minSize" width="384" height="152"/> + <size key="maxSize" width="463" height="10000000"/> + <attributedString key="textStorage"> + <fragment content="Help dummy text"> + <attributes> + <font key="NSFont" size="12" name="Helvetica"/> + <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/> + </attributes> + </fragment> + </attributedString> + <color key="insertionPointColor" name="controlTextColor" catalog="System" colorSpace="catalog"/> + <size key="minSize" width="384" height="152"/> + <size key="maxSize" width="463" height="10000000"/> + </textView> + </subviews> + <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> + </clipView> + <scroller key="horizontalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="1" horizontal="YES" id="mBC-nL-nLZ"> + <rect key="frame" x="-100" y="-100" width="87" height="18"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + <scroller key="verticalScroller" hidden="YES" verticalHuggingPriority="750" doubleValue="1" horizontal="NO" id="INC-ms-oeO"> + <rect key="frame" x="-100" y="-100" width="15" height="133"/> + <autoresizingMask key="autoresizingMask"/> + </scroller> + </scrollView> + </subviews> + </view> + <point key="canvasLocation" x="98" y="659.5"/> + </window> + </objects> + <resources> + <image name="042FBEB4-6486-42A0-9D5E-C853A7B3691F" width="128" height="128"/> + <image name="61CB6A24-92F9-4EDA-869D-0E72829279E1" width="128" height="128"/> + <image name="67DEAE3B-36D8-4354-8A9D-3F5321D4DD08" width="128" height="128"/> + <image name="8A84264F-2AAA-441A-84CB-02820F5C6FC1" width="128" height="128"/> + <image name="A4B5929C-AB4D-4ABB-AB4F-8F7E17D2FB49" width="128" height="128"/> + <image name="BD7FAE47-1BD9-41DA-ADBF-6E5D1CB5EB44" width="128" height="128"/> + <image name="NSAdvanced" width="32" height="32"/> + <image name="NSApplicationIcon" width="128" height="128"/> + <image name="NSGoLeftTemplate" width="9" height="12"/> + <image name="NSGoRightTemplate" width="9" height="12"/> + <image name="NSLeftFacingTriangleTemplate" width="9" height="12"/> + <image name="NSListViewTemplate" width="14" height="10"/> + <image name="NSRightFacingTriangleTemplate" width="9" height="12"/> + <image name="button_action" width="32" height="23"/> + <image name="button_add" width="32" height="23"/> + <image name="button_bar_handle" width="15" height="23"/> + <image name="button_bar_spacer" width="10" height="23"/> + <image name="button_duplicate" width="33" height="23"/> + <image name="button_edit" width="32" height="23"/> + <image name="button_edit_mode" width="32" height="23"/> + <image name="button_edit_mode_selected" width="32" height="23"/> + <image name="button_info_pane_show" width="33" height="23"/> + <image name="button_left" width="32" height="23"/> + <image name="button_pagination" width="32" height="23"/> + <image name="button_pane_hide" width="32" height="23"/> + <image name="button_pane_show" width="32" height="23"/> + <image name="button_refresh" width="32" height="23"/> + <image name="button_remove" width="32" height="23"/> + <image name="button_right" width="32" height="23"/> + <image name="grabber-horizontal" width="10" height="8"/> + </resources> +</document> diff --git a/Source/GeneratePreviewForURL.m b/Source/GeneratePreviewForURL.m index 53087eb0..9dce1011 100644 --- a/Source/GeneratePreviewForURL.m +++ b/Source/GeneratePreviewForURL.m @@ -97,13 +97,13 @@ OSStatus GeneratePreviewForURL(void *thisInterface, QLPreviewRequestRef preview, if(!iconImages || [iconImages count] < 1) iconImages = @[[NSImage imageNamed:NSImageNameStopProgressTemplate]]; -#warning Shouldn't that be "> 1"? - if([iconImages count] > 0) + if([iconImages count] > 1) iconImage = [iconImages objectAtIndex:1]; else iconImage = [iconImages objectAtIndex:0]; #warning This can cause a runtime error: "This application is assuming that a particular image contains an NSBitmapImageRep, which is not a good assumption. We are instantiating a bitmap so that whatever this is keeps working, but please do not do this. (...) This may break in the future." + // TODO: draw the image into a bitmap context and grab the jpeg representation? NSData *image = [iconImage TIFFRepresentation]; NSMutableDictionary *props = [[NSMutableDictionary alloc] initWithCapacity:6]; diff --git a/Source/SPAppController.m b/Source/SPAppController.m index a0f4865f..4f985133 100644 --- a/Source/SPAppController.m +++ b/Source/SPAppController.m @@ -286,7 +286,7 @@ [filePaths addObject:[obj path]]; }]; - [self application:nil openFiles:filePaths]; + [self application:NSApp openFiles:filePaths]; } }]; } @@ -301,7 +301,7 @@ [filePaths addObject:[obj path]]; }]; - [self application:nil openFiles:filePaths]; + [self application:NSApp openFiles:filePaths]; } } diff --git a/Source/SPBundleHTMLOutputController.m b/Source/SPBundleHTMLOutputController.m index ee4b5286..ecf16faa 100644 --- a/Source/SPBundleHTMLOutputController.m +++ b/Source/SPBundleHTMLOutputController.m @@ -355,7 +355,7 @@ static NSString *SPSaveDocumentAction = @"SPSaveDocument"; } // sp-reveal-file://a_file_path reveals the file in Finder else if([[[request URL] scheme] isEqualToString:@"sp-reveal-file"] && navigationType == WebNavigationTypeLinkClicked) { - [[NSWorkspace sharedWorkspace] selectFile:[[[request mainDocumentURL] absoluteString] substringFromIndex:16] inFileViewerRootedAtPath:nil]; + [[NSWorkspace sharedWorkspace] selectFile:[[[request mainDocumentURL] absoluteString] substringFromIndex:16] inFileViewerRootedAtPath:@""]; [listener ignore]; } // sp-open-file://a_file_path opens the file with the default diff --git a/Source/SPConnectionController.h b/Source/SPConnectionController.h index 59a83740..dd7ac6e5 100644 --- a/Source/SPConnectionController.h +++ b/Source/SPConnectionController.h @@ -29,6 +29,7 @@ // More info at <https://github.com/sequelpro/sequelpro> #import "SPConnectionControllerDelegateProtocol.h" +#import "SPFavoritesExportProtocol.h" #import <SPMySQL/SPMySQL.h> @@ -47,7 +48,7 @@ #endif ; -@interface SPConnectionController : NSViewController <SPMySQLConnectionDelegate, NSOpenSavePanelDelegate> +@interface SPConnectionController : NSViewController <SPMySQLConnectionDelegate, NSOpenSavePanelDelegate, SPFavoritesExportProtocol, NSSplitViewDelegate> { id <SPConnectionControllerDelegateProtocol, NSObject> delegate; diff --git a/Source/SPConnectionController.m b/Source/SPConnectionController.m index 91629bf3..25dc8c1b 100644 --- a/Source/SPConnectionController.m +++ b/Source/SPConnectionController.m @@ -1167,7 +1167,7 @@ static NSComparisonResult _compareFavoritesUsingKey(id favorite1, id favorite2, if (returnCode == NSOKButton) { SPFavoritesExporter *exporter = [[[SPFavoritesExporter alloc] init] autorelease]; - [exporter setDelegate:(NSObject<SPFavoritesExportProtocol> *)self]; + [exporter setDelegate:self]; [exporter writeFavorites:[self selectedFavoriteNodes] toFile:[[savePanel URL] path]]; } diff --git a/Source/SPConstants.h b/Source/SPConstants.h index db51b462..26fdc1ab 100644 --- a/Source/SPConstants.h +++ b/Source/SPConstants.h @@ -684,7 +684,7 @@ typedef NSUInteger NSCellHitResult; #define SPLog(fmt, ...) NSLog((@"%s:%d: " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__) // See http://stackoverflow.com/questions/4415524 -#define COUNT_OF(x) ((sizeof(x)/sizeof(0[x])) / ((size_t)(!(sizeof(x) % sizeof(0[x]))))) +#define COUNT_OF(x) (NSInteger)((sizeof(x)/sizeof(0[x])) / ((size_t)(!(sizeof(x) % sizeof(0[x]))))) // This definition is mostly for legibility #ifndef ESUCCESS diff --git a/Source/SPCustomQuery.m b/Source/SPCustomQuery.m index 3a04d1d5..2aeaacb6 100644 --- a/Source/SPCustomQuery.m +++ b/Source/SPCustomQuery.m @@ -3921,9 +3921,9 @@ // Send moveDown/Up to the popup menu NSEvent *arrowEvent; if(command == @selector(moveDown:)) - arrowEvent = [NSEvent keyEventWithType:NSKeyDown location:NSMakePoint(0,0) modifierFlags:0 timestamp:0 windowNumber:[[tableDocumentInstance parentWindow] windowNumber] context:[NSGraphicsContext currentContext] characters:nil charactersIgnoringModifiers:nil isARepeat:NO keyCode:0x7D]; + arrowEvent = [NSEvent keyEventWithType:NSKeyDown location:NSMakePoint(0,0) modifierFlags:0 timestamp:0 windowNumber:[[tableDocumentInstance parentWindow] windowNumber] context:[NSGraphicsContext currentContext] characters:@"" charactersIgnoringModifiers:@"" isARepeat:NO keyCode:0x7D]; else - arrowEvent = [NSEvent keyEventWithType:NSKeyDown location:NSMakePoint(0,0) modifierFlags:0 timestamp:0 windowNumber:[[tableDocumentInstance parentWindow] windowNumber] context:[NSGraphicsContext currentContext] characters:nil charactersIgnoringModifiers:nil isARepeat:NO keyCode:0x7E]; + arrowEvent = [NSEvent keyEventWithType:NSKeyDown location:NSMakePoint(0,0) modifierFlags:0 timestamp:0 windowNumber:[[tableDocumentInstance parentWindow] windowNumber] context:[NSGraphicsContext currentContext] characters:@"" charactersIgnoringModifiers:@"" isARepeat:NO keyCode:0x7E]; [NSApp postEvent:arrowEvent atStart:NO]; return YES; diff --git a/Source/SPDataImport.m b/Source/SPDataImport.m index c29f3b23..1f619070 100644 --- a/Source/SPDataImport.m +++ b/Source/SPDataImport.m @@ -1598,18 +1598,18 @@ cleanup: /** * Called when the selection within an open/save panel changes. */ -- (void)panelSelectionDidChange:(id)sender +- (void)panelSelectionDidChange:(NSOpenPanel *)sender { - NSArray *selectedFilenames = [sender filenames]; + NSArray *selectedUrls = sender.URLs; NSString *pathExtension; // If a single file is selected and the extension is recognised, change the format dropdown automatically - if ( [selectedFilenames count] != 1 ) return; - pathExtension = [[[selectedFilenames objectAtIndex:0] pathExtension] uppercaseString]; + if ( selectedUrls.count != 1 ) return; + pathExtension = [[selectedUrls[0] pathExtension] uppercaseString]; // If the file has an extension '.gz' or '.bz2' indicating gzip or bzip2 compression, fetch the next extension if ([pathExtension isEqualToString:@"GZ"] || [pathExtension isEqualToString:@"BZ2"]) { - NSMutableString *pathString = [NSMutableString stringWithString:[selectedFilenames objectAtIndex:0]]; + NSMutableString *pathString = [NSMutableString stringWithString:[selectedUrls[0] path]]; BOOL isGzip = [pathExtension isEqualToString:@"GZ"]; @@ -1637,7 +1637,7 @@ cleanup: NSPipe *filePipe = [[NSPipe alloc] init]; [fileTask setLaunchPath:@"/usr/bin/file"]; - [fileTask setArguments:[NSArray arrayWithObjects:@"-L", @"-b", [selectedFilenames objectAtIndex:0], nil]]; + [fileTask setArguments:[NSArray arrayWithObjects:@"-L", @"-b", [selectedUrls[0] path], nil]]; [fileTask setStandardOutput:filePipe]; NSFileHandle *fileHandle = [filePipe fileHandleForReading]; diff --git a/Source/SPDatabaseDocument.h b/Source/SPDatabaseDocument.h index 62aa11d7..c708cd9f 100644 --- a/Source/SPDatabaseDocument.h +++ b/Source/SPDatabaseDocument.h @@ -67,7 +67,7 @@ /** * The SPDatabaseDocument class controls the primary database view window. */ -@interface SPDatabaseDocument : NSObject <SPConnectionControllerDelegateProtocol, SPMySQLConnectionDelegate, NSTextFieldDelegate, NSToolbarDelegate, SPCountedObject> +@interface SPDatabaseDocument : NSObject <SPConnectionControllerDelegateProtocol, SPMySQLConnectionDelegate, NSTextFieldDelegate, NSToolbarDelegate, SPCountedObject, WebFrameLoadDelegate> { #ifdef SP_CODA /* patch */ id delegate; diff --git a/Source/SPDatabaseDocument.m b/Source/SPDatabaseDocument.m index ab7f2a5d..bd4233ae 100644 --- a/Source/SPDatabaseDocument.m +++ b/Source/SPDatabaseDocument.m @@ -5752,7 +5752,7 @@ static int64_t SPDatabaseDocumentInstanceCounter = 0; - (void)setActivityPaneHidden:(NSNumber*)hide { - if(![hide integerValue] == 1) { + if(hide.boolValue) { [tableInfoScrollView setHidden:YES]; [documentActivityScrollView setHidden:NO]; } else { diff --git a/Source/SPDatabaseRename.m b/Source/SPDatabaseRename.m index 04f71182..a6b393be 100644 --- a/Source/SPDatabaseRename.m +++ b/Source/SPDatabaseRename.m @@ -55,7 +55,7 @@ if (!sourceExists || targetExists) return NO; NSArray *tables = [tablesList allTableNames]; - NSArray *views = [tablesList allViewNames]; +// NSArray *views = [tablesList allViewNames]; // TODO: handle views when renaming database BOOL success = [self createDatabase:targetDatabase withEncoding:[sourceDatabase defaultEncoding] diff --git a/Source/SPExportControllerDelegate.m b/Source/SPExportControllerDelegate.m index 0f18ef25..8c020fc3 100644 --- a/Source/SPExportControllerDelegate.m +++ b/Source/SPExportControllerDelegate.m @@ -335,8 +335,8 @@ static inline BOOL IS_STRING(id x); timestamp:0 windowNumber:[[exportCustomFilenameTokenField window] windowNumber] context:[NSGraphicsContext currentContext] - characters:nil - charactersIgnoringModifiers:nil + characters:@"" + charactersIgnoringModifiers:@"" isARepeat:NO keyCode:0x24]; diff --git a/Source/SPExportInitializer.m b/Source/SPExportInitializer.m index 15e9de66..3238ea5c 100644 --- a/Source/SPExportInitializer.m +++ b/Source/SPExportInitializer.m @@ -47,6 +47,7 @@ #import "SPExportFileNameTokenObject.h" #import "SPConnectionControllerDelegateProtocol.h" #import "SPExportController+SharedPrivateAPI.h" +#import "SPSQLExporterDelegate.h" #import <SPMySQL/SPMySQL.h> diff --git a/Source/SPExportSettingsPersistence.m b/Source/SPExportSettingsPersistence.m index 29a981af..33118e84 100644 --- a/Source/SPExportSettingsPersistence.m +++ b/Source/SPExportSettingsPersistence.m @@ -127,6 +127,7 @@ static inline void SetOnOff(NSNumber *ref,id obj); NAMEOF(SPPDFExport); NAMEOF(SPHTMLExport); NAMEOF(SPExcelExport); + NAMEOF(SPAnyExportType); } return nil; } diff --git a/Source/SPFavoriteNode.m b/Source/SPFavoriteNode.m index b51980f7..bff760a1 100644 --- a/Source/SPFavoriteNode.m +++ b/Source/SPFavoriteNode.m @@ -81,7 +81,10 @@ static NSString *SPFavoriteNodeKey = @"SPFavoriteNode"; - (id)initWithCoder:(NSCoder *)coder { -#warning This is not a valid initializer. + if (!(self = [super init])) { + return nil; + } + [self setNodeFavorite:[coder decodeObjectForKey:SPFavoriteNodeKey]]; return self; diff --git a/Source/SPGroupNode.m b/Source/SPGroupNode.m index e1a0dfb3..e54f3652 100644 --- a/Source/SPGroupNode.m +++ b/Source/SPGroupNode.m @@ -98,7 +98,10 @@ static NSString *SPGroupNodeIsExpandedKey = @"SPGroupNodeIsExpanded"; - (id)initWithCoder:(NSCoder *)coder { -#warning This is not a valid initializer. + if (!(self = [super init])) { + return nil; + } + [self setNodeName:[coder decodeObjectForKey:SPGroupNodeNameKey]]; [self setNodeIsExpanded:[[coder decodeObjectForKey:SPGroupNodeIsExpandedKey] boolValue]]; diff --git a/Source/SPImageView.m b/Source/SPImageView.m index 23e95859..d56b7fa5 100644 --- a/Source/SPImageView.m +++ b/Source/SPImageView.m @@ -72,7 +72,7 @@ NSData *pngData = nil; NSBitmapImageRep *draggedImage = [[NSBitmapImageRep alloc] initWithData:[[sender draggingPasteboard] dataForType:@"NSTIFFPboardType"]]; if (draggedImage) { - pngData = [draggedImage representationUsingType:NSPNGFileType properties:nil]; + pngData = [draggedImage representationUsingType:NSPNGFileType properties:@{}]; [draggedImage release]; } if (pngData) { @@ -91,7 +91,7 @@ [draggedImage drawInRect:[draggedImage boundingBox]]; NSBitmapImageRep *bitmapImageRep = [[NSBitmapImageRep alloc] initWithFocusedViewRect:[draggedImage boundingBox]]; if (bitmapImageRep) { - pngData = [bitmapImageRep representationUsingType:NSPNGFileType properties:nil]; + pngData = [bitmapImageRep representationUsingType:NSPNGFileType properties:@{}]; [bitmapImageRep release]; } [convertImage unlockFocus]; diff --git a/Source/SPPreferencesUpgrade.m b/Source/SPPreferencesUpgrade.m index 6d0a3393..11cd146c 100644 --- a/Source/SPPreferencesUpgrade.m +++ b/Source/SPPreferencesUpgrade.m @@ -32,6 +32,7 @@ #import "SPKeychain.h" #import "SPFavoritesController.h" #import "SPTreeNode.h" +#import "SPFavoriteNode.h" static NSString *SPOldFavoritesKey = @"favorites"; static NSString *SPOldDefaultEncodingKey = @"DefaultEncoding"; @@ -354,7 +355,7 @@ void SPApplyRevisionChanges(void) for(SPTreeNode *node in favs) { if([node isGroup]) continue; - NSMutableDictionary *data = [[node representedObject] nodeFavorite]; + NSMutableDictionary *data = [(SPFavoriteNode *)[node representedObject] nodeFavorite]; if(![data objectForKey:SPFavoriteColorIndexKey]) [data setObject:@(-1) forKey:SPFavoriteColorIndexKey]; } diff --git a/Source/SPQueryDocumentsController.m b/Source/SPQueryDocumentsController.m index e4689c41..a9602b61 100644 --- a/Source/SPQueryDocumentsController.m +++ b/Source/SPQueryDocumentsController.m @@ -31,6 +31,7 @@ #import "SPQueryDocumentsController.h" #import "SPCustomQuery.h" #import "SPAppController.h" +#import "SPAppleScriptSupport.h" @implementation SPQueryController (SPQueryDocumentsController) diff --git a/Source/SPTableContent.h b/Source/SPTableContent.h index 9ce2299a..ac720d01 100644 --- a/Source/SPTableContent.h +++ b/Source/SPTableContent.h @@ -305,7 +305,7 @@ - (void)setFilterTableData:(NSData *)arcData; - (NSData *)filterTableData; -- (NSString *)escapeFilterArgument:(NSString *)argument againstClause:(NSString *)clause; +//- (NSString *)escapeFilterArgument:(NSString *)argument againstClause:(NSString *)clause; - (void)openContentFilterManager; - (NSArray *)fieldEditStatusForRow:(NSInteger)rowIndex andColumn:(NSInteger)columnIndex; diff --git a/Source/SPTableContent.m b/Source/SPTableContent.m index bf45e9c5..d39edd73 100644 --- a/Source/SPTableContent.m +++ b/Source/SPTableContent.m @@ -2964,7 +2964,7 @@ static NSString *SPTableFilterSetDefaultOperator = @"SPTableFilterSetDefaultOper // Edit row selected - reselect the row, and start editing. if ( returnCode == NSAlertDefaultReturn ) { [tableContentView selectRowIndexes:[NSIndexSet indexSetWithIndex:currentlyEditingRow] byExtendingSelection:NO]; - [tableContentView performSelector:@selector(keyDown:) withObject:[NSEvent keyEventWithType:NSKeyDown location:NSMakePoint(0,0) modifierFlags:0 timestamp:0 windowNumber:[[tableContentView window] windowNumber] context:[NSGraphicsContext currentContext] characters:nil charactersIgnoringModifiers:nil isARepeat:NO keyCode:0x24] afterDelay:0.0]; + [tableContentView performSelector:@selector(keyDown:) withObject:[NSEvent keyEventWithType:NSKeyDown location:NSMakePoint(0,0) modifierFlags:0 timestamp:0 windowNumber:[[tableContentView window] windowNumber] context:[NSGraphicsContext currentContext] characters:@"" charactersIgnoringModifiers:@"" isARepeat:NO keyCode:0x24] afterDelay:0.0]; } else { diff --git a/Source/SPTableStructure.m b/Source/SPTableStructure.m index 6e94bf88..d17d1807 100644 --- a/Source/SPTableStructure.m +++ b/Source/SPTableStructure.m @@ -1203,7 +1203,7 @@ static inline SPFieldTypeHelp *MakeFieldTypeHelp(NSString *typeName,NSString *ty // Problem: reentering edit mode for first cell doesn't function [tableSourceView selectRowIndexes:[NSIndexSet indexSetWithIndex:currentlyEditingRow] byExtendingSelection:NO]; - [tableSourceView performSelector:@selector(keyDown:) withObject:[NSEvent keyEventWithType:NSKeyDown location:NSMakePoint(0,0) modifierFlags:0 timestamp:0 windowNumber:[[tableDocumentInstance parentWindow] windowNumber] context:[NSGraphicsContext currentContext] characters:nil charactersIgnoringModifiers:nil isARepeat:NO keyCode:0x24] afterDelay:0.0]; + [tableSourceView performSelector:@selector(keyDown:) withObject:[NSEvent keyEventWithType:NSKeyDown location:NSMakePoint(0,0) modifierFlags:0 timestamp:0 windowNumber:[[tableDocumentInstance parentWindow] windowNumber] context:[NSGraphicsContext currentContext] characters:@"" charactersIgnoringModifiers:@"" isARepeat:NO keyCode:0x24] afterDelay:0.0]; } // Discard changes and cancel editing diff --git a/Source/SPTableStructureDelegate.m b/Source/SPTableStructureDelegate.m index 42a9eaa3..4c6e2db3 100644 --- a/Source/SPTableStructureDelegate.m +++ b/Source/SPTableStructureDelegate.m @@ -760,7 +760,7 @@ static void _BuildMenuWithPills(NSMenu *menu,struct _cmpMap *map,size_t mapEntri #pragma mark - #pragma mark Menu delegate methods (encoding/collation dropdown menu) -- (void)menuNeedsUpdate:(NSMenu *)menu +- (void)menuNeedsUpdate:(SPIdMenu *)menu { if(![menu isKindOfClass:[SPIdMenu class]]) return; //NOTE: NSTableView will usually copy the menu and call this method on the copy. Matching with == won't work! diff --git a/Source/SPTablesList.h b/Source/SPTablesList.h index 198f327f..433879ea 100644 --- a/Source/SPTablesList.h +++ b/Source/SPTablesList.h @@ -143,66 +143,66 @@ } // IBAction methods -- (IBAction)updateTables:(id)sender; -- (IBAction)addTable:(id)sender; -- (IBAction)closeSheet:(id)sender; -- (IBAction)removeTable:(id)sender; +- (IBAction)updateTables:(nullable id)sender; +- (IBAction)addTable:(nullable id)sender; +- (IBAction)closeSheet:(nullable id)sender; +- (IBAction)removeTable:(nullable id)sender; #ifndef SP_CODA /* method decls */ -- (IBAction)copyTable:(id)sender; -- (IBAction)renameTable:(id)sender; -- (IBAction)truncateTable:(id)sender; -- (IBAction)openTableInNewTab:(id)sender; -- (IBAction)openTableInNewWindow:(id)sender; -- (IBAction)togglePaneCollapse:(id)sender; +- (IBAction)copyTable:(nullable id)sender; +- (IBAction)renameTable:(nullable id)sender; +- (IBAction)truncateTable:(nullable id)sender; +- (IBAction)openTableInNewTab:(nullable id)sender; +- (IBAction)openTableInNewWindow:(nullable id)sender; +- (IBAction)togglePaneCollapse:(nullable id)sender; #endif // Additional methods -- (void)setConnection:(SPMySQLConnection *)theConnection; -- (void)setSelectionState:(NSDictionary *)selectionDetails; +- (void)setConnection:(nonnull SPMySQLConnection *)theConnection; +- (void)setSelectionState:(nullable NSDictionary *)selectionDetails; #ifndef SP_CODA /* method decls */ -- (void)selectTableAtIndex:(NSNumber *)row; +- (void)selectTableAtIndex:(nullable NSNumber *)row; - (void)makeTableListFilterHaveFocus; - (void)makeTableListHaveFocus; #endif // Getters -- (NSArray *)selectedTableNames; -- (NSArray *)selectedTableItems; -- (NSArray *)selectedTableTypes; -- (NSString *)tableName; +- (nonnull NSArray *)selectedTableNames; +- (nonnull NSArray *)selectedTableItems; +- (nonnull NSArray *)selectedTableTypes; +- (nullable NSString *)tableName; - (SPTableType)tableType; -- (NSArray *)tables; -- (NSArray *)tableTypes; -- (NSArray *)allTableAndViewNames; -- (NSArray *)allTableNames; -- (NSArray *)allViewNames; -- (NSArray *)allFunctionNames; -- (NSArray *)allProcedureNames; -- (NSArray *)allEventNames; -- (NSArray *)allDatabaseNames; -- (NSArray *)allSystemDatabaseNames; -- (NSString *)selectedDatabase; +- (nonnull NSArray *)tables; +- (nonnull NSArray *)tableTypes; +- (nonnull NSArray *)allTableAndViewNames; +- (nonnull NSArray *)allTableNames; +- (nonnull NSArray *)allViewNames; +- (nonnull NSArray *)allFunctionNames; +- (nonnull NSArray *)allProcedureNames; +- (nonnull NSArray *)allEventNames; +- (nonnull NSArray *)allDatabaseNames; +- (nonnull NSArray *)allSystemDatabaseNames; +- (nullable NSString *)selectedDatabase; // Setters -- (BOOL)selectItemWithName:(NSString *)theName; +- (BOOL)selectItemWithName:(nullable NSString *)theName; #ifndef SP_CODA /* method decls */ -- (BOOL)selectItemsWithNames:(NSArray *)theNames; +- (BOOL)selectItemsWithNames:(nonnull NSArray *)theNames; // Table list filter interaction - (void)showFilter; - (void)hideFilter; - (void)clearFilter; #endif -- (IBAction) updateFilter:(id)sender; +- (IBAction) updateFilter:(nullable id)sender; // Task interaction -- (void)startDocumentTaskForTab:(NSNotification *)aNotification; -- (void)endDocumentTaskForTab:(NSNotification *)aNotification; +- (void)startDocumentTaskForTab:(nullable NSNotification *)aNotification; +- (void)endDocumentTaskForTab:(nullable NSNotification *)aNotification; - (void)setTableListSelectability:(BOOL)isSelectable; -- (BOOL)isTableNameValid:(NSString *)tableName forType:(SPTableType)tableType; -- (BOOL)isTableNameValid:(NSString *)tableName forType:(SPTableType)tableType ignoringSelectedTable:(BOOL)ignoreSelectedTable; +- (BOOL)isTableNameValid:(nullable NSString *)tableName forType:(SPTableType)tableType; +- (BOOL)isTableNameValid:(nullable NSString *)tableName forType:(SPTableType)tableType ignoringSelectedTable:(BOOL)ignoreSelectedTable; #ifdef SP_CODA /* method decls */ @property (assign) SPTableStructure* tableSourceInstance; @@ -224,4 +224,7 @@ - (void)tableView:(NSTableView *)aTableView setObjectValue:(id)anObject forTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex; #endif + +- (BOOL)selectionShouldChangeInTableView:(nullable NSTableView *)aTableView; + @end diff --git a/Source/SPTablesList.m b/Source/SPTablesList.m index 92f7cae5..67f26c31 100644 --- a/Source/SPTablesList.m +++ b/Source/SPTablesList.m @@ -182,7 +182,7 @@ static NSString *SPDuplicateTable = @"SPDuplicateTable"; /** * Loads all table names in array tables and reload the tableView */ -- (IBAction)updateTables:(id)sender +- (IBAction)updateTables:(nullable id)sender { SPMySQLResult *theResult; NSString *previousSelectedTable = nil; @@ -1647,7 +1647,7 @@ static NSString *SPDuplicateTable = @"SPDuplicateTable"; /** * Table view delegate method */ -- (BOOL)selectionShouldChangeInTableView:(NSTableView *)aTableView +- (BOOL)selectionShouldChangeInTableView:(nullable NSTableView *)aTableView { // Don't allow selection changes while performing a task. if (!tableListIsSelectable) return NO; diff --git a/Source/SPTextView.m b/Source/SPTextView.m index 3c6d7b53..ce5f8454 100644 --- a/Source/SPTextView.m +++ b/Source/SPTextView.m @@ -1122,8 +1122,7 @@ static inline NSPoint SPPointOnLine(NSPoint a, NSPoint b, CGFloat t) { return NS NSPasteboard *pb = [NSPasteboard generalPasteboard]; NSTextStorage *textStorage = [self textStorage]; - NSData *rtf = [textStorage RTFFromRange:[self selectedRange] - documentAttributes:nil]; + NSData *rtf = [textStorage RTFFromRange:[self selectedRange] documentAttributes:@{}]; if (rtf) { diff --git a/Source/SPTooltip.h b/Source/SPTooltip.h index 8777ddff..b0d03de3 100644 --- a/Source/SPTooltip.h +++ b/Source/SPTooltip.h @@ -30,7 +30,7 @@ #import <WebKit/WebKit.h> -@interface SPTooltip : NSWindow +@interface SPTooltip : NSWindow <WebFrameLoadDelegate> { WebView* webView; WebPreferences* webPreferences; diff --git a/Source/SPTreeNode.h b/Source/SPTreeNode.h index aa2edbdc..e05bfa33 100644 --- a/Source/SPTreeNode.h +++ b/Source/SPTreeNode.h @@ -40,23 +40,25 @@ BOOL isGroup; } +@property (nullable, readonly, copy) NSArray<SPTreeNode *> *childNodes; + /** * @property isGroup Indicates whether or not the node is a group. */ @property (readwrite, assign) BOOL isGroup; -- (void)removeObjectFromChildren:(id)object; +- (void)removeObjectFromChildren:(nonnull id)object; -- (NSMutableArray *)descendants; -- (NSMutableArray *)childLeafs; -- (NSMutableArray *)allChildLeafs; -- (NSMutableArray *)groupChildren; +- (nonnull NSMutableArray *)descendants; +- (nonnull NSMutableArray *)childLeafs; +- (nonnull NSMutableArray *)allChildLeafs; +- (nonnull NSMutableArray *)groupChildren; -- (SPTreeNode *)parentFromArray:(NSArray *)array; +- (nullable SPTreeNode *)parentFromArray:(nonnull NSArray *)array; -- (BOOL)isDescendantOfOrOneOfNodes:(NSArray *)nodes; -- (BOOL)isDescendantOfNodes:(NSArray *)nodes; +- (BOOL)isDescendantOfOrOneOfNodes:(nonnull NSArray *)nodes; +- (BOOL)isDescendantOfNodes:(nonnull NSArray *)nodes; -- (NSDictionary *)dictionaryRepresentation; +- (nonnull NSDictionary *)dictionaryRepresentation; @end diff --git a/Source/SPTreeNode.m b/Source/SPTreeNode.m index 22cfb1da..f6d419d8 100644 --- a/Source/SPTreeNode.m +++ b/Source/SPTreeNode.m @@ -37,6 +37,7 @@ static NSString *SPTreeNodeIsGroupKey = @"SPTreeNodeIsGroup"; @implementation SPTreeNode +@dynamic childNodes; @synthesize isGroup; #pragma mark - diff --git a/Source/SPWindowController.m b/Source/SPWindowController.m index d9214ada..b6d04184 100644 --- a/Source/SPWindowController.m +++ b/Source/SPWindowController.m @@ -118,7 +118,6 @@ enum { // Set up a new tab with the connection view as the identifier, add the view, and add it to the tab view NSTabViewItem *newItem = [[[NSTabViewItem alloc] initWithIdentifier:newTableDocument] autorelease]; - [newItem setColor:nil]; //cocoa defaults to [NSColor controlColor] but we want the tabstyle to choose a default color [newItem setView:[newTableDocument databaseView]]; [tabView addTabViewItem:newItem]; |