Need a ebook or some explanation and tutorial on OOP

Hi experts,
I'm new to OOP in SAP ABAP. Does anyone have some copy of tutorials, explanation and ebooks on OOP? I badly need it to finish my work in office.. Please... thanks in advance!

Hi,
The following lines explain the main Abap object oriented concepts that differs from traditional abap.
Introduction
The object orientation can be defined as a problem-solving method in which the software solution reflects objects in the real world. Therefore, a comprehensive introduction to object orientation would go far beyond the limits of this introduction to ABAP Objects as a whole.
Object
An object can be defined as a section of source code that contains data and provides services. The attributes of the object are formed by the data. The services are known as methods (also known as operations or functions). Typically, it is seen that the methods operate on private data (the attributes, or state of the object), which is only visible to the methods of the object. Thus, the attributes of an object cannot be changed directly by the user, but by the methods of the object only. This guarantees the internal consistency of the object.
Classes
The classes are very important, as they describe the objects. From a technical point of view, the objects are runtime instances of a class. One can create any number of objects based on a single class in theory. Each instance (object) of a class has a unique identity and its own set of values for its attributes.
Features of Object Orientation
Encapsulation
According to this property, objects restrict the visibility of their resources (attributes and methods) to other users. Every object has an interface which plays a very important role. It determines how other objects can interact with it. It is found that the implementation of the object is encapsulated, which means that it is invisible outside the object itself.
Polymorphism
According to this property, identical (identically-named) methods behave differently in different classes. Object-oriented programming contains constructions, which are called interfaces. They enable you to address methods with the same name in different objects. The implementation of the method is specific to a particular class, though the form of address is always the same.
Inheritance
According to this property, one can use an existing class to derive a new class. The data and methods of the super class are inherited by the derived classes. However, they can overwrite existing methods and add new ones.
Uses of Object Orientation
The object-oriented programming is quite useful in many ways. It has various advantages, some of which are mentioned below.
Since object-oriented structuring provides a closer representation of reality than other programming techniques, complex software systems become easier to understand.
In object-oriented system, it should be possible to implement changes at class level, without having to make alterations at other points in the system. This reduces the overall amount of maintenance required.
The object-oriented programming allows reusing individual components through polymorphism and inheritance.
In this system, the amount of work involved in revising and maintaining the system is reduced as many problems can be detected and corrected in the design phase.
To achieve these goals, the followings are required:
Object-oriented programming languages: The efficiency of object-oriented programming depends directly on how object-oriented language techniques are implemented in the system kernel.
Object-oriented tools: Object-oriented tools allow you to create object-oriented programs in object Oriented languages. They also allow you to model and store development objects and the Relationships between them.
Object-oriented modeling: The object-orientation modeling of a software system is the most important, most time-consuming, and most difficult requirement for attaining the above goals. These designs involve more than just object-oriented programming and logical advantages that are independent of the actual implementation are provided by it.
ABAP Objects
ABAP Objects is a new concept in R/3 System and you can find its two distinct meanings --- one is for the entire ABAP runtime environment and the other represents the new object-oriented generation of this language.
The Runtime Environment
ABAP Objects, for the entire ABAP runtime environment, are an indication of how SAP has, for sometime, been moving towards object orientation. Object-oriented techniques have been used exclusively in system design. The ABAP language did not support these techniques earlier.
The ABAP Workbench will allow creating R/3 Repository objects in this regard. These objects are programs, authorization objects, lock objects, customizing objects, and so on and so forth. By using function modules, one can also encapsulate functions in separate programs with a defined lnterface. The Business Object Repository (BOR) allows you to create SAP Business Objects for internal and external use.
The Object-Oriented Language Extension
ABAP Objects support object-oriented programming. The ABAP Objects is a complete set of object-oriented statements, which has been introduced into the ABAP language. This object-oriented extension of ABAP builds on the existing language and is fully compatible with it.
The Object Orientation (OO), also known as the object-oriented paradigm, is a programming model that unites data and functions in objects. You can not only use ABAP Objects in existing programs, but also work with and use a conventional ABAP in new ABAP Objects programs. The rest of the ABAP language is primarily intended for structured programming, where data is stored in a structured form in database tables and function-oriented programs access and work with it.
Moreover, we should know that the object-oriented enhancement of ABAP is based on the models of Java and C++. It is compatible with external object interfaces such as DCOM and CORBA. The implementation of object-oriented elements in the kernel of the ABAP language has considerably increased response times when you work with ABAP Objects. Some other objects, such as SAP Business Objects and GUI objects, which are already object-oriented by themselves, are also benefiting from being incorporated into ABAP Objects.
About Classes
The classes are templates for objects. An abstract description of an object is the class. You could say it is a set of instructions for building an object. The attributes of objects are defined by the components of the class, which describe the state and behavior of objects.
Local and Global Classes
In ABAP Objects, classes can be declared either globally or locally. You define global classes and interfaces in the Class Builder (Transaction SE24.} in the ABAP Workbench. In the R/3 Repository, they are stored centrally in class pools in the class library. In an R/3 System, all of the ABAP programs can access the global classes. The local classes are defined within an ABAP program. Local classes and interfaces can only be used in the program in which they are defined. When you use a class in an ABAP program, the system first searches for a local class with the specified name. If it does not find one, then it looks for a global class. Apart from the visibility question, there is no difference between using a global class and using a local class.
However, there is a significant difference in the way that local and global classes are designed. If you are defining a local class that is only used in a single program, then to define the outwardly visible components so that it fits into that program is usually sufficient. On the other hand, global classes must be able to be used anywhere. Since the system must be able to guarantee any program using an object of a global class, it can recognize the data type of each interface parameter and then certain restrictions are applied at the time of defining the interface of a global class.
Defining Local Classes
Local classes consist of ABAP source code, where the ABAP statements CLASS...ENDCLASS are enclosed. A complete class definition consists of the following parts, a declaration part and, if required, an implementation part. It is found that the declaration part of a class . The new class is called the subclass of the class from which it is derived. The original class is called the superclass of the new class. It contains the same components as the superclass if you do not add any new declarations to the subclass. However, in the subclass only the public and protected components of the superclass are visible. The private components of the superclass are not visible though they exist in the subclass. You can declare private components in a subclass that have the same names as private components of the superclass. It is seen that each class works with its own private components. The another point that we note is that methods which a subclass inherits from a superclass use the private attributes of the superclass and not any private components of the subclass with the same names.
The subclass is an exact replica of the superclass if the superclass does not have any private visibility section. However, you can add a new component to the subclass because it allows you to turn the subclass into a specialized version of the superclass. If a subclass is itself the superclass of further classes, then you can introduce a new level of specialization.
Polymorphism
Reference variables are defined with reference to a superclass or an interface defined with reference to it can also contain references to any of its subclasses. A reference variable defined with reference to a superclass or an interface implemented by a superclass can contain references to instances of any of its subclasses, since subclasses contain all of the components of all of their superclasses and also convey that the interfaces of methods cannot be changed. In particular, you can define the target variable with reference to the generic class OBJECT.
Using the CREATE OBJECT statement, when you create an object and a reference variable typed with reference to a subclass then you can use the TY PE addition to which the reference in the reference variable will point.
A reference variable can be used by a static user to address the components visible to it in the superclass to which the reference variable refers. However, any specialization implemented in the subclass cannot be addressed by it.
Depending on the position in the inheritance tree at which the referenced object occurs, you can use a single reference variable to call different implementations of the method. This is possible only if you redefine an instance method in one or more subclasses. This concept is called polymorphism, in which different classes can have the same interface and, therefore, be addressed using reference variables with a single type.
Conclusion
I have explained object orientation which is such an important aspect in SAP. The discussion began with the features of Object Orientation and includes the runtime environment, the language extension, the classes and the class components. Apart from that I have also discussed for new first time readers event handling, inheritance encapsulation and polymorphism.
* &   R e p o r t     Z G S _ F I S R T _ C L A S S
R E P O R T     Z G S _ F I S R T _ C L A S S .
c l a s s   l c l _ w h e e l   d e f i n i t i o n .
e n d c l a s s .
c l a s s   l c l _ w h e e l   i m p l e m e n t a t i o n .
e n d c l a s s .
c l a s s   l c l _ c a r   d e f i n i t i o n .
p u b l i c   s e c t i o n .
m e t h o d s   :   c r e a t e _ w h e e l s .
p r i v a t e   s e c t i o n .
d a t a   :   w h e e l 1   t y p e   r e f   t o   l c l _ w h e e l ,
               w h e e l 2   t y p e   r e f   t o   l c l _ w h e e l ,
               w h e e l 3   t y p e   r e f   t o   l c l _ w h e e l ,
               w h e e l 4   t y p e   r e f   t o   l c l _ w h e e l .
e n d c l a s s .
c l a s s   l c l _ c a r   i m p l e m e n t a t i o n .
m e t h o d   c r e a t e _ w h e e l s .
     c r e a t e   o b j e c t   :   w h e e l 1 , w h e e l 2 , w h e e l 3 , w h e e l 4 .
e n d m e t h o d .
e n d c l a s s .
s t a r t - o f - s e l e c t i o n .
d a t a   :   o r e f   t y p e   r e f   t o   l c l _ c a r .
c r e a t e   o b j e c t   o r e f .
c a l l   m e t h o d   o r e f - > c r e a t e _ w h e e l s .
* c r e a t e   o b j e c t   o r e f .
b r e a k - p o i n t .
copy paste this code and debug you will understand the flow.
Reward points if useful,
Aleem.

Similar Messages

  • TS1389 Needing help, I purchased some apps, and music, using my computer iTunes, and now I am having problems installing, it says that I computer is not authorised, but I've authorised it many times, a window keeps popping up saying I need to authorise. P

    Needing help authorizing my computer to install my purchases, I tried the >store,> authorise this computer.
    When I try to install a window pops up saying I need to authorise it

    Hello dizzy bizzy,
    Thank you for providing the details of the issue you are experiencing with purchases from the iTunes Store.  I recommend following the steps in the following article:
    iTunes repeatedly prompts to authorize computer to play iTunes Store purchases
    http://support.apple.com/kb/ts1389
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • In need of some experienced and willing Mac help for a Macnewb, Please!=)

    Hello & thank you for giving me some of your time & looking at my topic. I am very new to the Macworld & am having some unidentified issue(s) with a mid2010 MBP such as: firefox & Safari both frequently crashing & refusing to load pages, general system slowing and freezes, many force quits required for various (nonpattern) apps. After a brief visit to the Safari forum I decided to have another look at the console logs but came up short for crash logs that really coincided with the freuqunt issues occuring. A Sagitarius, I am never satisfied with the results unless they achieve what I intend them too, I continued to peruse the log, after all its only a log(right?) & I dont believe someone with basic, albeit limited, knowledge could screw up things via the logs but Ive been wrong, none the less , I did not touch(alter) anything. What I did come across in the "private/var/log:kernel.log" was something that even with my limited knowledge apears somewhat suspicious, enough that I believe it warented my first 'copy & paste for assistance purposes' , to date, despite having suffered through windowsWHATEVER for all my life prior to about 3 months ago. {{SOrry, I dont intend to be long winded but I acknowledge my tenancy to being overly throrough & my inability to leave out my personality as well. }}Thank you once again.
    Log as follows:
      *This first section is for referrence purposes, all log prior is basically identical, with no appearaces from out of the ordinary items (such as those indicated below):
    Dec 22 10:31:59 DreaBabyymbp kernel[0]: hibernate_write_image done(0)
    Dec 22 10:31:59 DreaBabyymbp kernel[0]: sleep
    Dec 22 10:31:59 DreaBabyymbp kernel[0]: Wake reason = EC LID0
    Dec 22 10:31:59 DreaBabyymbp kernel[0]: System Wake
    Dec 22 10:31:59 DreaBabyymbp kernel[0]: Previous Sleep Cause: 5
    Dec 22 10:31:59 DreaBabyymbp kernel[0]: en1: 802.11d country code set to 'X0'.
    Dec 22 10:31:59 DreaBabyymbp kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    Dec 22 10:31:59 DreaBabyymbp kernel[0]: EIR is supported.
    Dec 22 10:31:59 DreaBabyymbp kernel[0]: SSP is supported.
    Dec 22 10:31:59 DreaBabyymbp kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Dec 22 10:32:15 DreaBabyymbp kernel[0]: Auth result for: 00:14:d1:e1:22:c8 MAC AUTH succeeded
    Dec 22 10:32:15 DreaBabyymbp kernel[0]: AirPort: Link Up on en1
    Dec 22 10:32:15 DreaBabyymbp kernel[0]: AirPort: RSN handshake complete on en1
    Dec 22 11:13:43 DreaBabyymbp kernel[0]: hibernate image path: /var/vm/sleepimage
    Dec 22 11:13:43 DreaBabyymbp kernel[0]: sizeof(IOHibernateImageHeader) == 512
    Dec 22 11:13:43 DreaBabyymbp kernel[0]: Opened file /var/vm/sleepimage, size 2147483648, partition base 0xc805000, maxio 400000 ssd 0
    Dec 22 11:13:43 DreaBabyymbp kernel[0]: hibernate image major 14, minor 2, blocksize 512, pollers 5
    Dec 22 11:13:43 DreaBabyymbp kernel[0]: hibernate_alloc_pages flags 00000000, gobbling 0 pages
    Dec 22 11:13:43 DreaBabyymbp kernel[0]: hibernate_setup(0) took 0 ms
    Dec 22 11:13:47 DreaBabyymbp kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Dec 22 11:13:47 DreaBabyymbp kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    Dec 22 11:13:57 DreaBabyymbp kernel[0]: System SafeSleep
    Dec 22 11:14:09 DreaBabyymbp kernel[0]: hibernate_page_list_setall start 0x21b57000, 0x21b66000
    Dec 22 11:14:09 DreaBabyymbp kernel[0]: hibernate_page_list_setall time: 242 ms
    Dec 22 11:14:09 DreaBabyymbp kernel[0]: pages 458081, wire 62559, act 172899, inact 52939, spec 3, zf 8344, throt 0, could discard act 79758 inact 63491 purgeable 18086 spec 2
    Dec 22 11:14:09 DreaBabyymbp kernel[0]: hibernate_page_list_setall found pageCount 296744
    Dec 22 11:14:09 DreaBabyymbp kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    Dec 22 11:14:09 DreaBabyymbp kernel[0]: IOHibernatePollerOpen(0)
    Dec 22 11:14:09 DreaBabyymbp kernel[0]: writing 295240 pages
    Dec 22 11:14:09 DreaBabyymbp kernel[0]: encryptStart 15cc50
    Dec 22 11:14:09 DreaBabyymbp kernel[0]: encryptEnd 3f8de30
    Dec 22 11:14:09 DreaBabyymbp kernel[0]: image1Size 113213952, encryptStart1 15cc50, End1 3f8de30
    Dec 22 11:14:09 DreaBabyymbp kernel[0]: encryptStart 6bf8200
    Dec 22 11:14:09 DreaBabyymbp kernel[0]: encryptEnd 20f284a0
    Dec 22 11:14:09 DreaBabyymbp kernel[0]: PMStats: Hibernate write took 11603 ms
    Dec 22 11:14:09 DreaBabyymbp kernel[0]: all time: 11603 ms, comp time: 2210 ms, deco time: 0 ms,
    Dec 22 11:14:09 DreaBabyymbp kernel[0]: image 552764928, uncompressed 1209593856 (295311), compressed 548976896 (45%), sum1 28c06a5e, sum2 2638f829
    Dec 22 11:14:09 DreaBabyymbp kernel[0]: wired_pages_encrypted 36521, wired_pages_clear 24605, dirty_pages_encrypted 234185
    Dec 22 11:14:09 DreaBabyymbp kernel[0]: hibernate_write_image done(0)
    Dec 22 11:14:09 DreaBabyymbp kernel[0]: sleep
    Dec 22 16:51:03 DreaBabyymbp kernel[0]: Wake reason = EC LID0
    Dec 22 16:51:03 DreaBabyymbp kernel[0]: System Wake
    Dec 22 16:51:03 DreaBabyymbp kernel[0]: Previous Sleep Cause: 5
    Dec 22 16:51:03 DreaBabyymbp kernel[0]: EIR is supported.
    Dec 22 16:51:03 DreaBabyymbp kernel[0]: SSP is supported.
    Dec 22 16:51:05 DreaBabyymbp kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Dec 22 16:51:10 DreaBabyymbp kernel[0]: en1: 802.11d country code set to 'US'.
    Dec 22 16:51:10 DreaBabyymbp kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    Dec 22 16:51:11 DreaBabyymbp kernel[0]: Auth result for: 00:14:d1:e1:22:c8 MAC AUTH succeeded
    Dec 22 16:51:11 DreaBabyymbp kernel[0]: AirPort: Link Up on en1
    Dec 22 16:51:11 DreaBabyymbp kernel[0]: AirPort: RSN handshake complete on en1
    Dec 22 18:08:29 DreaBabyymbp kernel[0]: hibernate image path: /var/vm/sleepimage
    Dec 22 18:08:29 DreaBabyymbp kernel[0]: sizeof(IOHibernateImageHeader) == 512
    Dec 22 18:08:29 DreaBabyymbp kernel[0]: Opened file /var/vm/sleepimage, size 2147483648, partition base 0xc805000, maxio 400000 ssd 0
    Dec 22 18:08:29 DreaBabyymbp kernel[0]: hibernate image major 14, minor 2, blocksize 512, pollers 5
    Dec 22 18:08:29 DreaBabyymbp kernel[0]: hibernate_alloc_pages flags 00000000, gobbling 0 pages
    Dec 22 18:08:29 DreaBabyymbp kernel[0]: hibernate_setup(0) took 0 ms
    Dec 22 18:08:29 DreaBabyymbp kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Dec 22 18:08:29 DreaBabyymbp kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    Dec 22 18:08:29 DreaBabyymbp kernel[0]: System SafeSleep
    Dec 22 18:08:43 DreaBabyymbp kernel[0]: hibernate_page_list_setall start 0x21994000, 0x219af000
    Dec 22 18:08:43 DreaBabyymbp kernel[0]: hibernate_page_list_setall time: 189 ms
    Dec 22 18:08:43 DreaBabyymbp kernel[0]: pages 387901, wire 54134, act 168406, inact 27770, spec 13, zf 16, throt 0, could discard act 40620 inact 64647 purgeable 5375 spec 26920
    Dec 22 18:08:43 DreaBabyymbp kernel[0]: hibernate_page_list_setall found pageCount 250339
    Dec 22 18:08:43 DreaBabyymbp kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    Dec 22 18:08:43 DreaBabyymbp kernel[0]: IOHibernatePollerOpen(0)
    Dec 22 18:08:43 DreaBabyymbp kernel[0]: writing 248331 pages
    Dec 22 18:08:43 DreaBabyymbp kernel[0]: encryptStart 355c10
    Dec 22 18:08:43 DreaBabyymbp kernel[0]: encryptEnd 3be5780
    Dec 22 18:08:43 DreaBabyymbp kernel[0]: image1Size 107462144, encryptStart1 355c10, End1 3be5780
    Dec 22 18:08:43 DreaBabyymbp kernel[0]: encryptStart 667be00
    Dec 22 18:08:43 DreaBabyymbp kernel[0]: encryptEnd 1e542560
    Dec 22 18:08:43 DreaBabyymbp kernel[0]: PMStats: Hibernate write took 12335 ms
    Dec 22 18:08:43 DreaBabyymbp kernel[0]: all time: 12335 ms, comp time: 1896 ms, deco time: 0 ms,
    Dec 22 18:08:43 DreaBabyymbp kernel[0]: image 508831232, uncompressed 1017454592 (248402), compressed 503229488 (49%), sum1 93d4b304, sum2 b3b3fb62
    Dec 22 18:08:43 DreaBabyymbp kernel[0]: wired_pages_encrypted 29048, wired_pages_clear 23149, dirty_pages_encrypted 196205
    Dec 22 18:08:43 DreaBabyymbp kernel[0]: hibernate_write_image done(0)
    Dec 22 18:08:43 DreaBabyymbp kernel[0]: sleep
    Dec 22 23:09:54 DreaBabyymbp kernel[0]: Wake reason = EC LID0
    Dec 22 23:09:54 DreaBabyymbp kernel[0]: System Wake
    Dec 22 23:09:54 DreaBabyymbp kernel[0]: Previous Sleep Cause: 5
    Dec 22 23:09:54 DreaBabyymbp kernel[0]: en1: 802.11d country code set to 'X0'.
    Dec 22 23:09:54 DreaBabyymbp kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    Dec 22 23:09:54 DreaBabyymbp kernel[0]: EIR is supported.
    Dec 22 23:09:54 DreaBabyymbp kernel[0]: SSP is supported.
    Dec 22 23:09:54 DreaBabyymbp kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Dec 22 23:10:23 DreaBabyymbp kernel[0]: Ethernet [nvenet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,0000,0de1,0005,45e1,0000]
    Dec 22 23:10:23 DreaBabyymbp kernel[0]: 05f5e100  00500026  NVEthernet::setLinkStatus - Active
    Dec 22 23:10:39 DreaBabyymbp kernel[0]: en1: 802.11d country code set to 'US'.
    Dec 22 23:10:39 DreaBabyymbp kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    Dec 22 23:11:23 DreaBabyymbp kernel[0]: en1: 802.11d country code set to 'X0'.
    Dec 22 23:11:23 DreaBabyymbp kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    Dec 22 23:11:23 DreaBabyymbp kernel[0]: AirPort: Link Up on en1
    Dec 22 23:30:17 DreaBabyymbp kernel[0]: Limiting icmp ping response from 354 to 250 packets per second
    Dec 23 02:12:58 DreaBabyymbp kernel[0]: hibernate image path: /var/vm/sleepimage
    Dec 23 02:12:58 DreaBabyymbp kernel[0]: sizeof(IOHibernateImageHeader) == 512
    Dec 23 02:12:58 DreaBabyymbp kernel[0]: Opened file /var/vm/sleepimage, size 2147483648, partition base 0xc805000, maxio 400000 ssd 0
    Dec 23 02:12:58 DreaBabyymbp kernel[0]: hibernate image major 14, minor 2, blocksize 512, pollers 5
    Dec 23 02:12:58 DreaBabyymbp kernel[0]: hibernate_alloc_pages flags 00000000, gobbling 0 pages
    Dec 23 02:12:58 DreaBabyymbp kernel[0]: hibernate_setup(0) took 0 ms
    Dec 23 02:12:59 DreaBabyymbp kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Dec 23 02:12:59 DreaBabyymbp kernel[0]: AirPort: Link Down on en1. Reason 3 (Deauthenticated because station leaving).
    Dec 23 02:12:59 DreaBabyymbp kernel[0]: System SafeSleep
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: hibernate_page_list_setall start 0x217f1000, 0x21800000
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: hibernate_page_list_setall time: 168 ms
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: pages 320822, wire 55004, act 86567, inact 7703, spec 47, zf 105, throt 0, could discard act 29615 inact 82379 purgeable 20281 spec 39121
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: hibernate_page_list_setall found pageCount 149426
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: IOHibernatePollerOpen(0)
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: writing 147896 pages
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: encryptStart 176d20
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: encryptEnd 3d14720
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: hibernate_machine_init: state 2, image pages 53890, sum was 9fb81823, image1Size 66c8200, conflictCount 621, nextFree 13dd
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: hibernate_page_list_discard time: 211 ms, discarded act 29615 inact 82379 purgeable 20281 spec 39121
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: IOHibernatePollerOpen(), ml_get_interrupts_enabled 0
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: IOHibernatePollerOpen(0)
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: hibernate_machine_init reading
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: PMStats: Hibernate read took 3567 ms
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: hibernate_machine_init pagesDone 148312 sum2 eb5a664e, time: 3567 ms
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: Wake reason =
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: System SafeSleep Wake
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: Previous Sleep Cause: -60
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: Previous Shutdown Cause: -60
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: E:[AppleUSBBluetoothHCIController][InterruptReadHandler] Received kIOReturnAborted with 1 pending interrupts
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: IONetworkController::disable
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: Ethernet [nvenet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,0000,0de1,0005,45e1,0000]
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: 05f5e100  00500026  NVEthernet::setLinkStatus - Active
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: Ethernet [nvenet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,0000,0de1,0005,45e1,0000]
    Dec 23 02:34:55 DreaBabyymbp kernel[0]: 05f5e100  00500026  NVEthernet::setLinkStatus - Active
    Dec 23 02:34:57 DreaBabyymbp kernel[0]: AirPort: Link Up on en1
    Dec 23 02:35:08 DreaBabyymbp kernel[0]: Bluetooth USB Host Controller::terminate(kIOServiceSynchronous) timeout
    Dec 23 02:36:11 DreaBabyymbp kernel[0]: AirPort: Link Down on en1. Reason 3 (Deauthenticated because station leaving).
       ***This is where what seemed off/odd to me begins:
    Dec 23 02:36:11 DreaBabyymbp kernel[0]: AirPort: Link Up on en1
    Dec 23 02:36:15 DreaBabyymbp kernel[0]: systemShutdown true
    Dec 23 02:36:20 DreaBabyymbp kernel[0]: 2.4.2 Little Snitch: connection deferred for:/usr/sbin/natd uid:0 to:0.0.0.0 :2560
    Dec 23 02:36:20 DreaBabyymbp kernel[0]: systemShutdown true
    Dec 23 02:36:21 DreaBabyymbp kernel[0]: Kext loading now disabled.
    Dec 23 02:36:21 DreaBabyymbp kernel[0]: Kext unloading now disabled.
    Dec 23 02:36:21 DreaBabyymbp kernel[0]: Kext autounloading now disabled.
    Dec 23 02:36:21 DreaBabyymbp kernel[0]: Kernel requests now disabled.
    Dec 23 02:36:21 DreaBabyymbp kernel[0]: AirPort: Link Down on en1. Reason 3 (Deauthenticated because station leaving).
    Dec 23 02:37:17 localhost kernel[0]: npvhash=4095
    Dec 23 02:37:17 localhost kernel[0]: PAE enabled
    Dec 23 02:37:17 localhost kernel[0]: 64 bit mode enabled
    Dec 23 02:37:17 localhost kernel[0]: Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    Dec 23 02:37:17 localhost kernel[0]: vm_page_bootstrap: 446362 free pages and 12390 wired pages
    Dec 23 02:37:17 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Dec 23 02:37:17 localhost kernel[0]: mig_table_max_displ = 73
    Dec 23 02:37:17 localhost kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    Dec 23 02:37:17 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    Dec 23 02:37:17 localhost kernel[0]: calling mpo_policy_init for Quarantine
    Dec 23 02:37:17 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    Dec 23 02:37:17 localhost kernel[0]: calling mpo_policy_init for Sandbox
    Dec 23 02:37:17 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    Dec 23 02:37:17 localhost kernel[0]: calling mpo_policy_init for TMSafetyNet
    Dec 23 02:37:17 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Dec 23 02:37:17 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Dec 23 02:37:17 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Dec 23 02:37:17 localhost kernel[0]: MAC Framework successfully initialized
    Dec 23 02:37:17 localhost kernel[0]: using 9175 buffer headers and 4096 cluster IO buffer headers
    Dec 23 02:37:17 localhost kernel[0]: IOAPIC: Version 0x11 Vectors 64:87
    Dec 23 02:37:17 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Dec 23 02:37:17 localhost kernel[0]: PFM64 0xf10000000, 0xf0000000
    Dec 23 02:37:17 localhost kernel[0]: [ PCI configuration begin ]
    Dec 23 02:37:17 localhost kernel[0]: console relocated to 0xf10030000
    Dec 23 02:37:17 localhost kernel[0]: PCI configuration changed (bridge=6 device=3 cardbus=0)
    Dec 23 02:37:17 localhost kernel[0]: [ PCI configuration end, bridges 7 devices 19 ]
    Dec 23 02:37:17 localhost kernel[0]: AppleIntelCPUPowerManagement: (built 16:44:45 Jun  7 2011) initialization complete
    Dec 23 02:37:17 localhost kernel[0]: mbinit: done (64 MB memory set for mbuf pool)
    Dec 23 02:37:17 localhost kernel[0]: rooting via boot-uuid from /chosen: 0BAAA4A0-7ED7-3967-A06E-F7544A9CAA50
    Dec 23 02:37:17 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Dec 23 02:37:17 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    Dec 23 02:37:17 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    Dec 23 02:37:17 localhost kernel[0]: 2.4.2 Little Snitch: starting
    Dec 23 02:37:17 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
    Dec 23 02:37:17 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@B/AppleMCP79AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/Hitachi HTS543225L9SA02 Media/IOGUIDPartitionScheme/Customer@2
    Dec 23 02:37:17 localhost kernel[0]: BSD root: disk0s2, major 14, minor 2
    Dec 23 02:37:17 localhost kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 0023dffffea59a16; max speed s800.
    Dec 23 02:37:17 localhost kernel[0]: hfs: Removed 5 orphaned / unlinked files and 0 directories
    Dec 23 02:37:19 localhost kernel[0]: systemShutdown false
    Dec 23 02:37:33 DreaBabyymbp kernel[0]: Waiting for DSMOS...
    Dec 23 02:37:40 DreaBabyymbp kernel[0]: AGC: 2.10.6, HW version=1.7.3, flags:0, features:4
    Dec 23 02:37:40 DreaBabyymbp kernel[0]: Previous Shutdown Cause: -60
    Dec 23 02:37:46 DreaBabyymbp kernel[0]: NVDANV50HAL loaded and registered.
    Dec 23 02:37:48: --- last message repeated 1 time ---
    Dec 23 02:37:48 DreaBabyymbp kernel[0]: BTCOEXIST off
    Dec 23 02:37:48 DreaBabyymbp kernel[0]: wl0: Broadcom BCM432b 802.11 Wireless Controller
    Dec 23 02:37:48 DreaBabyymbp kernel[0]: 5.10.131.42
    Dec 23 02:37:50 DreaBabyymbp kernel[0]: DSMOS has arrived
    Dec 23 02:37:50 DreaBabyymbp kernel[0]: NVEthernet: Ethernet address 00:23:df:a5:9a:16
    Dec 23 02:37:50 DreaBabyymbp kernel[0]: AirPort_Brcm43224: Ethernet address 00:23:6c:9a:13:9b
    Dec 23 02:37:50 DreaBabyymbp kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    Dec 23 02:37:51 DreaBabyymbp kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Dec 23 02:37:51 DreaBabyymbp kernel[0]: AirPort: Link Down on en1. Reason 1 (Unspecified).
    Dec 23 02:37:51 DreaBabyymbp kernel[0]: en1: 802.11d country code set to 'US'.
    Dec 23 02:37:51 DreaBabyymbp kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    Dec 23 02:37:51 DreaBabyymbp kernel[0]: Ethernet [nvenet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,0000,0de1,0005,45e1,0000]
    Dec 23 02:37:51 DreaBabyymbp kernel[0]: 05f5e100  00500026  NVEthernet::setLinkStatus - Active
    Dec 23 02:37:51 DreaBabyymbp kernel[0]: Ethernet [nvenet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,0000,0de1,0005,45e1,0000]
    Dec 23 02:37:51 DreaBabyymbp kernel[0]: 05f5e100  00500026  NVEthernet::setLinkStatus - Active
    Dec 23 02:37:52 DreaBabyymbp kernel[0]: IOBluetoothBNEPDriver: Ethernet address 00:25:00:53:aa:c0
    Dec 23 02:37:52 DreaBabyymbp kernel[0]: en1: 802.11d country code set to 'X0'.
    Dec 23 02:37:52 DreaBabyymbp kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    Dec 23 02:37:52 DreaBabyymbp kernel[0]: AirPort: Link Up on en1
    Dec 23 02:37:53 DreaBabyymbp kernel[0]: 2.4.2 Little Snitch: connection deferred for:/usr/sbin/natd uid:0 to:0.0.0.0 :2560
    Dec 23 02:38:23: --- last message repeated 3 times ---
    Dec 23 02:43:02 DreaBabyymbp kernel[0]: AirPort: Link Down on en1. Reason 3 (Deauthenticated because station leaving).
    Dec 23 02:44:31 DreaBabyymbp kernel[0]: en1: 802.11d country code set to 'US'.
    Dec 23 02:44:31 DreaBabyymbp kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    Dec 23 02:44:43 DreaBabyymbp kernel[0]: Auth result for: 00:1c:58:d8:2a:c0 MAC AUTH succeeded
    Dec 23 02:44:43 DreaBabyymbp kernel[0]: AirPort: Link Up on en1
    Dec 23 02:48:32 DreaBabyymbp kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    Dec 23 02:48:32 DreaBabyymbp kernel[0]: en1: 802.11d country code set to 'X0'.
    Dec 23 02:48:32 DreaBabyymbp kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    Dec 23 02:48:32 DreaBabyymbp kernel[0]: AirPort: Link Up on en1
    Dec 23 02:48:42 DreaBabyymbp kernel[0]: AirPort: Link Down on en1. Reason 3 (Deauthenticated because station leaving).
    Dec 23 02:48:56 DreaBabyymbp kernel[0]: AirPort: Link Up on en1
    Dec 23 02:50:55 DreaBabyymbp kernel[0]: AirPort: Link Down on en1. Reason 3 (Deauthenticated because station leaving).
    Dec 23 02:51:27 DreaBabyymbp kernel[0]: AirPort: Link Up on en1
    Dec 23 04:00:08 DreaBabyymbp kernel[0]: Limiting icmp ping response from 362 to 250 packets per second
    Dec 23 06:42:14 DreaBabyymbp kernel[0]: Limiting icmp ping response from 297 to 250 packets per second
    Dec 23 06:42:29 DreaBabyymbp kernel[0]: Limiting icmp ping response from 252 to 250 packets per second
    Dec 23 08:26:33 DreaBabyymbp kernel[0]: 00000000  01947949  NVEthernet::mediaChanged - Link is down
    Dec 23 08:26:33 DreaBabyymbp kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Dec 23 08:26:34 dreababyymbp kernel[0]: Ethernet [nvenet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,0000,0de1,0005,45e1,0000]
    Dec 23 08:26:34 dreababyymbp kernel[0]: 05f5e100  00500026  NVEthernet::setLinkStatus - Active
    Dec 23 08:26:42 dreababyymbp kernel[0]: 00000000  01947949  NVEthernet::mediaChanged - Link is down
    Dec 23 08:26:42 dreababyymbp kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Dec 23 08:26:43 dreababyymbp kernel[0]: Ethernet [nvenet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,0000,0de1,0005,45e1,0000]
    Dec 23 08:26:43 dreababyymbp kernel[0]: 05f5e100  00500026  NVEthernet::setLinkStatus - Active
    Dec 23 08:26:49 dreababyymbp kernel[0]: 00000000  01947949  NVEthernet::mediaChanged - Link is down
    Dec 23 08:26:49 dreababyymbp kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Dec 23 08:26:50 dreababyymbp kernel[0]: Ethernet [nvenet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,0000,0de1,0005,45e1,0000]
    Dec 23 08:26:50 dreababyymbp kernel[0]: 05f5e100  00500026  NVEthernet::setLinkStatus - Active
    Dec 23 10:42:14 DreaBabyymbp kernel[0]: Limiting icmp ping response from 283 to 250 packets per second
    Dec 23 10:42:22 DreaBabyymbp kernel[0]: Limiting icmp ping response from 358 to 250 packets per second
    Dec 23 12:35:59 DreaBabyymbp kernel[0]: 00000000  01947949  NVEthernet::mediaChanged - Link is down
    Dec 23 12:35:59 DreaBabyymbp kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Dec 23 12:36:01 dreababyymbp kernel[0]: hibernate image path: /var/vm/sleepimage
    Dec 23 12:36:01 dreababyymbp kernel[0]: sizeof(IOHibernateImageHeader) == 512
    Dec 23 12:36:01 dreababyymbp kernel[0]: Opened file /var/vm/sleepimage, size 2147483648, partition base 0xc805000, maxio 400000 ssd 0
    Dec 23 12:36:01 dreababyymbp kernel[0]: hibernate image major 14, minor 2, blocksize 512, pollers 5
    Dec 23 12:36:01 dreababyymbp kernel[0]: hibernate_alloc_pages flags 00000000, gobbling 0 pages
    Dec 23 12:36:01 dreababyymbp kernel[0]: hibernate_setup(0) took 0 ms
    Dec 23 12:36:02 dreababyymbp kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Dec 23 12:36:02 dreababyymbp kernel[0]: IO80211Controller::disable: Failed to enable WoW.
    Dec 23 12:36:02 dreababyymbp kernel[0]: AirPort: Link Down on en1. Reason 3 (Deauthenticated because station leaving).
    Dec 23 12:36:02 dreababyymbp kernel[0]: System SafeSleep
    Dec 23 12:36:13 dreababyymbp kernel[0]: hibernate_page_list_setall start 0x20303000, 0x20312000
    Dec 23 12:36:13 dreababyymbp kernel[0]: hibernate_page_list_setall time: 163 ms
    Dec 23 12:36:13 dreababyymbp kernel[0]: pages 456586, wire 42428, act 158126, inact 1053, spec 72, zf 727, throt 0, could discard act 51598 inact 59072 purgeable 14243 spec 129267
    Dec 23 12:36:13 dreababyymbp kernel[0]: hibernate_page_list_setall found pageCount 202406
    Dec 23 12:36:13 dreababyymbp kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    Dec 23 12:36:13 dreababyymbp kernel[0]: IOHibernatePollerOpen(0)
    Dec 23 12:36:13 dreababyymbp kernel[0]: writing 200775 pages
    Dec 23 12:36:13 dreababyymbp kernel[0]: encryptStart 1dc040
    Dec 23 12:36:13 dreababyymbp kernel[0]: encryptEnd 2b541d0
    Dec 23 12:36:13 dreababyymbp kernel[0]: image1Size 85133312, encryptStart1 1dc040, End1 2b541d0
    Dec 23 12:36:13 dreababyymbp kernel[0]: encryptStart 5130800
    Dec 23 12:36:13 dreababyymbp kernel[0]: encryptEnd 160dad90
    Dec 23 12:36:13 dreababyymbp kernel[0]: PMStats: Hibernate write took 10422 ms
    Dec 23 12:36:13 dreababyymbp kernel[0]: all time: 10422 ms, comp time: 1426 ms, deco time: 0 ms,
    Dec 23 12:36:13 dreababyymbp kernel[0]: image 369995264, uncompressed 822665216 (200846), compressed 366444816 (44%), sum1 3e54aa41, sum2 f6fec739
    Dec 23 12:36:13 dreababyymbp kernel[0]: wired_pages_encrypted 20647, wired_pages_clear 20221, dirty_pages_encrypted 159978
    Dec 23 12:36:13 dreababyymbp kernel[0]: hibernate_write_image done(0)
    Dec 23 12:36:13 dreababyymbp kernel[0]: sleep
    Dec 24 02:26:24 dreababyymbp kernel[0]: Wake reason = EC LID0
    Dec 24 02:26:24 dreababyymbp kernel[0]: System Wake
    Dec 24 02:26:24 dreababyymbp kernel[0]: Previous Sleep Cause: 5
    Dec 24 02:26:24 dreababyymbp kernel[0]: AirPort: Link Up on en1
    Dec 24 02:26:24 dreababyymbp kernel[0]: EIR is supported.
    Dec 24 02:26:24 dreababyymbp kernel[0]: SSP is supported.
    Dec 24 02:26:25 dreababyymbp kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Dec 24 02:26:26 dreababyymbp kernel[0]: AirPort: Link Down on en1. Reason 3 (Deauthenticated because station leaving).
    Dec 24 02:26:27 DreaBabyymbp kernel[0]: AirPort: Link Up on en1
    Dec 24 02:27:04 dreababyymbp kernel[0]: AirPort: Link Down on en1. Reason 3 (Deauthenticated because station leaving).
    Dec 24 02:46:23 DreaBabyymbp kernel[0]: Auth result for: 00:14:d1:e1:22:c8 MAC AUTH succeeded
    Dec 24 02:46:23 DreaBabyymbp kernel[0]: AirPort: Link Up on en1
    Dec 24 02:46:23 DreaBabyymbp kernel[0]: AirPort: RSN handshake complete on en1
    Dec 24 02:53:29 DreaBabyymbp kernel[0]: systemShutdown true
    Dec 24 02:53:31: --- last message repeated 1 time ---
    Dec 24 02:53:31 DreaBabyymbp kernel[0]: Kext loading now disabled.
    Dec 24 02:53:31 DreaBabyymbp kernel[0]: Kext unloading now disabled.
    Dec 24 02:53:31 DreaBabyymbp kernel[0]: Kext autounloading now disabled.
    Dec 24 02:53:31 DreaBabyymbp kernel[0]: Kernel requests now disabled.
    Dec 24 13:27:15 localhost kernel[0]: npvhash=4095
    Dec 24 13:27:15 localhost kernel[0]: PAE enabled
    Dec 24 13:27:15 localhost kernel[0]: 64 bit mode enabled
    Dec 24 13:27:15 localhost kernel[0]: Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    Dec 24 13:27:15 localhost kernel[0]: vm_page_bootstrap: 440681 free pages and 18071 wired pages
    Dec 24 13:27:15 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Dec 24 13:27:15 localhost kernel[0]: mig_table_max_displ = 73
    Dec 24 13:27:15 localhost kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    Dec 24 13:27:15 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    Dec 24 13:27:15 localhost kernel[0]: calling mpo_policy_init for TMSafetyNet
    Dec 24 13:27:15 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Dec 24 13:27:15 localhost kernel[0]: calling mpo_policy_init for Quarantine
    Dec 24 13:27:15 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    Dec 24 13:27:15 localhost kernel[0]: calling mpo_policy_init for Sandbox
    Dec 24 13:27:15 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    Dec 24 13:27:15 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Dec 24 13:27:15 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Dec 24 13:27:15 localhost kernel[0]: MAC Framework successfully initialized
    Dec 24 13:27:15 localhost kernel[0]: using 9175 buffer headers and 4096 cluster IO buffer headers
    Dec 24 13:27:15 localhost kernel[0]: IOAPIC: Version 0x11 Vectors 64:87
    Dec 24 13:27:15 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Dec 24 13:27:15 localhost kernel[0]: PFM64 0xf10000000, 0xf0000000
    Dec 24 13:27:15 localhost kernel[0]: [ PCI configuration begin ]
    Dec 24 13:27:15 localhost kernel[0]: console relocated to 0xf10030000
    Dec 24 13:27:15 localhost kernel[0]: PCI configuration changed (bridge=6 device=3 cardbus=0)
    Dec 24 13:27:15 localhost kernel[0]: [ PCI configuration end, bridges 7 devices 19 ]
    Dec 24 13:27:15 localhost kernel[0]: AppleIntelCPUPowerManagement: (built 16:44:45 Jun  7 2011) initialization complete
    Dec 24 13:27:15 localhost kernel[0]: mbinit: done (64 MB memory set for mbuf pool)
    Dec 24 13:27:15 localhost kernel[0]: rooting via boot-uuid from /chosen: 0BAAA4A0-7ED7-3967-A06E-F7544A9CAA50
    Dec 24 13:27:15 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Dec 24 13:27:15 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    Dec 24 13:27:15 localhost kernel[0]: 2.4.2 Little Snitch: starting
    Dec 24 13:27:15 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    Dec 24 13:27:15 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@B/AppleMCP79AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/Hitachi HTS543225L9SA02 Media/IOGUIDPartitionScheme/Customer@2
    Dec 24 13:27:15 localhost kernel[0]: BSD root: disk0s2, major 14, minor 2
    Dec 24 13:27:15 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
    Dec 24 13:27:15 localhost kernel[0]: BTCOEXIST off
    Dec 24 13:27:15 localhost kernel[0]: wl0: Broadcom BCM432b 802.11 Wireless Controller
    Dec 24 13:27:15 localhost kernel[0]: 5.10.131.42
    Dec 24 13:27:15 localhost kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 0023dffffea59a16; max speed s800.
    Dec 24 13:27:16 localhost kernel[0]: NVEthernet: Ethernet address 00:23:df:a5:9a:16
    Dec 24 13:27:16 localhost kernel[0]: systemShutdown false
    Dec 24 13:27:16 localhost kernel[0]: AirPort_Brcm43224: Ethernet address 00:23:6c:9a:13:9b
    Dec 24 13:27:16 localhost kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    Dec 24 13:27:18 localhost kernel[0]: AGC: 2.10.6, HW version=1.7.3, flags:0, features:4
    Dec 24 13:27:18 localhost kernel[0]: NVDANV50HAL loaded and registered.
    Dec 24 13:27:27: --- last message repeated 1 time ---
    Dec 24 13:27:18 localhost kernel[0]: Previous Shutdown Cause: 5
    Dec 24 13:27:18 localhost kernel[0]: DSMOS has arrived
    Dec 24 13:27:28 localhost kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    Dec 24 13:27:29 localhost kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Dec 24 13:27:30 DreaBabyymbp kernel[0]: IOBluetoothBNEPDriver: Ethernet address 00:25:00:53:aa:c0
    Dec 24 13:27:30 DreaBabyymbp kernel[0]: Auth result for: 00:14:d1:e1:22:c8 MAC AUTH succeeded
    Dec 24 13:27:30 DreaBabyymbp kernel[0]: AirPort: Link Up on en1
    Dec 24 13:27:30 DreaBabyymbp kernel[0]: AirPort: RSN handshake complete on en1
    Dec 24 22:58:42 DreaBabyymbp kernel[0]: hibernate image path: /var/vm/sleepimage
    Dec 24 22:58:42 DreaBabyymbp kernel[0]: sizeof(IOHibernateImageHeader) == 512
    Dec 24 22:58:42 DreaBabyymbp kernel[0]: Opened file /var/vm/sleepimage, size 2147483648, partition base 0xc805000, maxio 400000 ssd 0
    Dec 24 22:58:42 DreaBabyymbp kernel[0]: hibernate image major 14, minor 2, blocksize 512, pollers 5
    Dec 24 22:58:42 DreaBabyymbp kernel[0]: hibernate_alloc_pages flags 00000000, gobbling 0 pages
    Dec 24 22:58:42 DreaBabyymbp kernel[0]: hibernate_setup(0) took 0 ms
    Dec 24 22:58:43 DreaBabyymbp kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Dec 24 22:58:43 DreaBabyymbp kernel[0]: System SafeSleep
    Dec 24 22:58:56 DreaBabyymbp kernel[0]: hibernate_page_list_setall start 0x2190e000, 0x21956000
    Dec 24 22:58:56 DreaBabyymbp kernel[0]: hibernate_page_list_setall time: 212 ms
    Dec 24 22:58:56 DreaBabyymbp kernel[0]: pages 454836, wire 43253, act 184816, inact 41545, spec 3, zf 15736, throt 0, could discard act 88688 inact 70213 purgeable 6310 spec 4272
    Dec 24 22:58:56 DreaBabyymbp kernel[0]: hibernate_page_list_setall found pageCount 285353
    Dec 24 22:58:56 DreaBabyymbp kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    Dec 24 22:58:56 DreaBabyymbp kernel[0]: IOHibernatePollerOpen(0)
    Dec 24 22:58:56 DreaBabyymbp kernel[0]: writing 283826 pages
    Dec 24 22:58:56 DreaBabyymbp kernel[0]: encryptStart 173d10
    Dec 24 22:58:56 DreaBabyymbp kernel[0]: encryptEnd 2daded0
    Dec 24 22:58:56 DreaBabyymbp kernel[0]: image1Size 90139136, encryptStart1 173d10, End1 2daded0
    Dec 24 22:58:56 DreaBabyymbp kernel[0]: encryptStart 55f6a00
    Dec 24 22:58:56 DreaBabyymbp kernel[0]: encryptEnd 21eaa1e0
    Dec 24 22:58:56 DreaBabyymbp kernel[0]: PMStats: Hibernate write took 11561 ms
    Dec 24 22:58:56 DreaBabyymbp kernel[0]: all time: 11561 ms, comp time: 2081 ms, deco time: 0 ms,
    Dec 24 22:58:56 DreaBabyymbp kernel[0]: image 569025024, uncompressed 1162842112 (283897), compressed 565402496 (48%), sum1 bf719446, sum2 3482c0ba
    Dec 24 22:58:56 DreaBabyymbp kernel[0]: wired_pages_encrypted 19991, wired_pages_clear 21806, dirty_pages_encrypted 242100
    Dec 24 22:58:56 DreaBabyymbp kernel[0]: hibernate_write_image done(0)
    Dec 24 22:58:56 DreaBabyymbp kernel[0]: sleep
    Dec 24 23:08:14 DreaBabyymbp kernel[0]: Wake reason = EC LID0
    Dec 24 23:08:14 DreaBabyymbp kernel[0]: System Wake
    Dec 24 23:08:14 DreaBabyymbp kernel[0]: Previous Sleep Cause: 5
    Dec 24 23:08:14 DreaBabyymbp kernel[0]: AirPort: Link Down on en1. Reason 4 (Disassociated due to inactivity).
    Dec 24 23:08:14 DreaBabyymbp kernel[0]: EIR is supported.
    Dec 24 23:08:14 DreaBabyymbp kernel[0]: SSP is supported.
    Dec 24 23:08:15 DreaBabyymbp kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Dec 24 23:08:18 DreaBabyymbp kernel[0]: Auth result for: 00:14:d1:e1:22:c8 MAC AUTH succeeded
    Dec 24 23:08:18 DreaBabyymbp kernel[0]: AirPort: Link Up on en1
    Dec 24 23:08:18 DreaBabyymbp kernel[0]: AirPort: RSN handshake complete on en1
    Dec 25 00:20:18 DreaBabyymbp kernel[0]: Auth result for: 00:14:d1:e1:22:c8 MAC AUTH succeeded
    Dec 25 00:20:18 DreaBabyymbp kernel[0]: AirPort: RSN handshake complete on en1
    Dec 25 00:50:19 DreaBabyymbp kernel[0]: Auth result for: 00:14:d1:e1:22:c8 MAC AUTH succeeded
    Dec 25 00:50:19 DreaBabyymbp kernel[0]: AirPort: RSN handshake complete on en1
    Dec 25 02:30:22 DreaBabyymbp kernel[0]: Auth result for: 00:14:d1:e1:22:c8 MAC AUTH succeeded
    Dec 25 02:30:22 DreaBabyymbp kernel[0]: AirPort: RSN handshake complete on en1
    Dec 25 03:00:18 DreaBabyymbp kernel[0]: Auth result for: 00:14:d1:e1:22:c8 MAC AUTH succeeded
    Dec 25 03:00:18 DreaBabyymbp kernel[0]: AirPort: RSN handshake complete on en1
    Dec 25 03:10:21 DreaBabyymbp kernel[0]: Auth result for: 00:14:d1:e1:22:c8 MAC AUTH succeeded
    Dec 25 03:10:21 DreaBabyymbp kernel[0]: AirPort: RSN handshake complete on en1
    Dec 25 03:30:12 DreaBabyymbp kernel[0]: hibernate image path: /var/vm/sleepimage
    Dec 25 03:30:12 DreaBabyymbp kernel[0]: sizeof(IOHibernateImageHeader) == 512
    Dec 25 03:30:12 DreaBabyymbp kernel[0]: Opened file /var/vm/sleepimage, size 2147483648, partition base 0xc805000, maxio 400000 ssd 0
    Dec 25 03:30:12 DreaBabyymbp kernel[0]: hibernate image major 14, minor 2, blocksize 512, pollers 5
    Dec 25 03:30:12 DreaBabyymbp kernel[0]: hibernate_alloc_pages flags 00000000, gobbling 0 pages
    Dec 25 03:30:12 DreaBabyymbp kernel[0]: hibernate_setup(0) took 0 ms
    Dec 25 03:30:13 DreaBabyymbp kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Dec 25 03:30:14 DreaBabyymbp kernel[0]: System SafeSleep
    Dec 25 03:30:27 DreaBabyymbp kernel[0]: hibernate_page_list_setall start 0x2190e000, 0x21956000
    Dec 25 03:30:27 DreaBabyymbp kernel[0]: hibernate_page_list_setall time: 204 ms
    Dec 25 03:30:27 DreaBabyymbp kernel[0]: pages 456725, wire 42331, act 196797, inact 53273, spec 3, zf 12991, throt 0, could discard act 74677 inact 68507 purgeable 8053 spec 93
    Dec 25 03:30:27 DreaBabyymbp kernel[0]: hibernate_page_list_setall found pageCount 305395
    Dec 25 03:30:27 DreaBabyymbp kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    Dec 25 03:30:27 DreaBabyymbp kernel[0]: IOHibernatePollerOpen(0)
    Dec 25 03:30:27 DreaBabyymbp kernel[0]: writing 303872 pages
    Dec 25 03:30:27 DreaBabyymbp kernel[0]: encryptStart 16fcf0
    Dec 25 03:30:27 DreaBabyymbp kernel[0]: encryptEnd 2b81770
    Dec 25 03:30:27 DreaBabyymbp kernel[0]: image1Size 88253952, encryptStart1 16fcf0, End1 2b81770
    Dec 25 03:30:27 DreaBabyymbp kernel[0]: encryptStart 542a600
    Dec 25 03:30:27 DreaBabyymbp kernel[0]: encryptEnd 237c5460
    Dec 25 03:30:27 DreaBabyymbp kernel[0]: PMStats: Hibernate write took 12304 ms
    Dec 25 03:30:27 DreaBabyymbp kernel[0]: all time: 12304 ms, comp time: 2255 ms, deco time: 0 ms,
    Dec 25 03:30:27 DreaBabyymbp kernel[0]: image 595351040, uncompressed 1244950528 (303943), compressed 591668208 (47%), sum1 75b4ca33, sum2 e4925f63
    Dec 25 03:30:27 DreaBabyymbp kernel[0]: wired_pages_encrypted 19066, wired_pages_clear 21813, dirty_pages_encrypted 263064
    Dec 25 03:30:27 DreaBabyymbp kernel[0]: hibernate_write_image done(0)
    Dec 25 03:30:27 DreaBabyymbp kernel[0]: sleep
    Dec 25 03:34:01 DreaBabyymbp kernel[0]: Wake reason = EC LID0
    Dec 25 03:34:01 DreaBabyymbp kernel[0]: System Wake
    Dec 25 03:34:01 DreaBabyymbp kernel[0]: Previous Sleep Cause: 5
    Dec 25 03:34:01 DreaBabyymbp kernel[0]: AirPort: Link Down on en1. Reason 4 (Disassociated due to inactivity).
    Dec 25 03:34:01 DreaBabyymbp kernel[0]: EIR is supported.
    Dec 25 03:34:01 DreaBabyymbp kernel[0]: SSP is supported.
    Dec 25 03:34:02 DreaBabyymbp kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Dec 25 03:34:05 DreaBabyymbp kernel[0]: en1: 802.11d country code set to 'US'.
    Dec 25 03:34:05 DreaBabyymbp kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    Dec 25 03:34:05 DreaBabyymbp kernel[0]: Auth result for: 00:14:d1:e1:22:c8 MAC AUTH succeeded
    Dec 25 03:34:05 DreaBabyymbp kernel[0]: AirPort: Link Up on en1
    Dec 25 03:34:05 DreaBabyymbp kernel[0]: AirPort: RSN handshake complete on en1
    Dec 25 03:36:13 DreaBabyymbp kernel[0]: hibernate image path: /var/vm/sleepimage
    Dec 25 03:36:13 DreaBabyymbp kernel[0]: sizeof(IOHibernateImageHeader) == 512
    Dec 25 03:36:13 DreaBabyymbp kernel[0]: Opened file /var/vm/sleepimage, size 2147483648, partition base 0xc805000, maxio 400000 ssd 0
    Dec 25 03:36:13 DreaBabyymbp kernel[0]: hibernate image major 14, minor 2, blocksize 512, pollers 5
    Dec 25 03:36:13 DreaBabyymbp kernel[0]: hibernate_alloc_pages flags 00000000, gobbling 0 pages
    Dec 25 03:36:13 DreaBabyymbp kernel[0]: hibernate_setup(0) took 0 ms
    Dec 25 03:36:13 DreaBabyymbp kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Dec 25 03:36:14 DreaBabyymbp kernel[0]: System SafeSleep
    Dec 25 03:36:26 DreaBabyymbp kernel[0]: hibernate_page_list_setall start 0x2190e000, 0x21956000
    Dec 25 03:36:26 DreaBabyymbp kernel[0]: hibernate_page_list_setall time: 170 ms
    Dec 25 03:36:26 DreaBabyymbp kernel[0]: pages 424704, wire 43100, act 191755, inact 45421, spec 4, zf 1325, throt 0, could discard act 70451 inact 64863 purgeable 6982 spec 803
    Dec 25 03:36:26 DreaBabyymbp kernel[0]: hibernate_page_list_setall found pageCount 281605
    Dec 25 03:36:26 DreaBabyymbp kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    Dec 25 03:36:26 DreaBabyymbp kernel[0]: IOHibernatePollerOpen(0)
    Dec 25 03:36:26 DreaBabyymbp kernel[0]: writing 279620 pages
    Dec 25 03:36:26 DreaBabyymbp kernel[0]: encryptStart 33eb60
    Dec 25 03:36:26 DreaBabyymbp kernel[0]: encryptEnd 2eac510
    Dec 25 03:36:26 DreaBabyymbp kernel[0]: image1Size 91188224, encryptStart1 33eb60, End1 2eac510
    Dec 25 03:36:26 DreaBabyymbp kernel[0]: encryptStart 56f6c00
    Dec 25 03:36:26 DreaBabyymbp kernel[0]: encryptEnd 20623cd0
    Dec 25 03:36:26 DreaBabyymbp kernel[0]: PMStats: Hibernate write took 11229 ms
    Dec 25 03:36:26 DreaBabyymbp kernel[0]: all time: 11229 ms, comp time: 2098 ms, deco time: 0 ms,
    Dec 25 03:36:26 DreaBabyymbp kernel[0]: image 543309312, uncompressed 1145614336 (279691), compressed 537800240 (46%), sum1 9533d169, sum2 801220c8
    Dec 25 03:36:26 DreaBabyymbp kernel[0]: wired_pages_encrypted 19582, wired_pages_clear 21604, dirty_pages_encrypted 238505
    Dec 25 03:36:26 DreaBabyymbp kernel[0]: hibernate_write_image done(0)
    Dec 25 03:36:26 DreaBabyymbp kernel[0]: sleep
    Dec 25 12:31:44 DreaBabyymbp kernel[0]: Wake reason = EC LID0
    Dec 25 12:31:44 DreaBabyymbp kernel[0]: System Wake
    Dec 25 12:31:44 DreaBabyymbp kernel[0]: Previous Sleep Cause: 5
    Dec 25 12:31:44 DreaBabyymbp kernel[0]: AirPort: Link Down on en1. Reason 4 (Disassociated due to inactivity).
    Dec 25 12:31:44 DreaBabyymbp kernel[0]: en1: 802.11d country code set to 'X0'.
    Dec 25 12:31:44 DreaBabyymbp kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    Dec 25 12:31:44 DreaBabyymbp kernel[0]: EIR is supported.
    Dec 25 12:31:44 DreaBabyymbp kernel[0]: SSP is supported.
    Dec 25 12:31:45 DreaBabyymbp kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Dec 25 12:31:48 DreaBabyymbp kernel[0]: Auth result for: 00:14:d1:e1:22:c8 MAC AUTH succeeded
    Dec 25 12:31:48 DreaBabyymbp kernel[0]: AirPort: Link Up on en1
    Dec 25 12:31:48 DreaBabyymbp kernel[0]: AirPort: RSN handshake complete on en1
    Dec 25 12:40:20 DreaBabyymbp kernel[0]: Auth result for: 00:14:d1:e1:22:c8 MAC AUTH succeeded
    Dec 25 12:40:20 DreaBabyymbp kernel[0]: AirPort: RSN handshake complete on en1
    Dec 26 07:27:06 DreaBabyymbp kernel[0]: systemShutdown true
    Dec 26 07:27:10 DreaBabyymbp kernel[0]: systemShutdown true
    Dec 26 07:27:12 DreaBabyymbp kernel[0]: Kext loading now disabled.
    Dec 26 07:27:12 DreaBabyymbp kernel[0]: Kext unloading now disabled.
    Dec 26 07:27:12 DreaBabyymbp kernel[0]: Kext autounloading now disabled.
    Dec 26 07:27:12 DreaBabyymbp kernel[0]: Kernel requests now disabled.
    Dec 26 14:01:30 localhost kernel[0]: npvhash=4095
    Dec 26 14:01:30 localhost kernel[0]: PAE enabled
    Dec 26 14:01:30 localhost kernel[0]: 64 bit mode enabled
    Dec 26 14:01:30 localhost kernel[0]: Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    Dec 26 14:01:30 localhost kernel[0]: vm_page_bootstrap: 440681 free pages and 18071 wired pages
    Dec 26 14:01:30 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Dec 26 14:01:30 localhost kernel[0]: mig_table_max_displ = 73
    Dec 26 14:01:30 localhost kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    Dec 26 14:01:30 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    Dec 26 14:01:30 localhost kernel[0]: calling mpo_policy_init for TMSafetyNet
    Dec 26 14:01:30 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Dec 26 14:01:30 localhost kernel[0]: calling mpo_policy_init for Quarantine
    Dec 26 14:01:30 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    Dec 26 14:01:30 localhost kernel[0]: calling mpo_policy_init for Sandbox
    Dec 26 14:01:30 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    Dec 26 14:01:30 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Dec 26 14:01:30 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Dec 26 14:01:30 localhost kernel[0]: MAC Framework successfully initialized
    Dec 26 14:01:30 localhost kernel[0]: using 9175 buffer headers and 4096 cluster IO buffer headers
    Dec 26 14:01:30 localhost kernel[0]: IOAPIC: Version 0x11 Vectors 64:87
    Dec 26 14:01:30 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Dec 26 14:01:30 localhost kernel[0]: PFM64 0xf10000000, 0xf0000000
    Dec 26 14:01:30 localhost kernel[0]: [ PCI configuration begin ]
    Dec 26 14:01:30 localhost kernel[0]: console relocated to 0xf10030000
    Dec 26 14:01:30 localhost kernel[0]: PCI configuration changed (bridge=6 device=3 cardbus=0)
    Dec 26 14:01:30 localhost kernel[0]: [ PCI configuration end, bridges 7 devices 19 ]
    Dec 26 14:01:30 localhost kernel[0]: AppleIntelCPUPowerManagement: (built 16:44:45 Jun  7 2011) initialization complete
    Dec 26 14:01:30 localhost kernel[0]: mbinit: done (64 MB memory set for mbuf pool)
    Dec 26 14:01:30 localhost kernel[0]: rooting via boot-uuid from /chosen: 0BAAA4A0-7ED7-3967-A06E-F7544A9CAA50
    Dec 26 14:01:30 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Dec 26 14:01:30 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    Dec 26 14:01:30 localhost kernel[0]: 2.4.2 Little Snitch: starting
    Dec 26 14:01:30 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    Dec 26 14:01:30 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
    Dec 26 14:01:30 localhost kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 0023dffffea59a16; max speed
    If more ( or less) is need please advise, & once more , thank you for your time!
    Regards,
    Drea

    Since you're a newcomer to the Mac, see these:
    Switching from Windows to Mac OS X,
    Basic Tutorials on using a Mac,
    Mac 101: Mac Essentials,
    Mac OS X keyboard shortcuts,
    Anatomy of a Mac,
    MacTips,
    Switching to Mac Superguide, and
    Switching to the Mac: The Missing Manual,
    Snow Leopard Edition.&
    Additionally, *Texas Mac Man* recommends:
    Quick Assist,
    Welcome to the Switch To A Mac Guides,
    Take Control E-books, and
    A guide for switching to a Mac.
    For the crashes, see
    What is a kernel panic,
    Technical Note TN2063: Understanding and Debugging Kernel Panics,
    Mac OS X Kernel Panic FAQ,
    Resolving Kernel Panics, and
    Tutorial: Avoiding and eliminating Kernel panics for more details.

  • Some explanation needed

    Hi all,
    I'm new for all the adobe application development.
    I don't realy underestend if I can create some PDF documents  with the InDesine Script without to open the InDesign tool.
    Can youi  please explain me how to do this? and if it not posible do you know with wich tool can I do this thing?
    Thanks
    Yael

    Hi Yael,
    I need some explanation of your question, too.
    Do you want to 'convert' InDesign-documents to PDF-files without opening InDesign?
    That is not possible.
    Do you want to export PDF-files out of opened (or closed - to be opened) InDesign-documents with InDesign-application opened but without any dialog?
    That is possible.
    What do you mean with 'the InDesign tool'?
    Do you mean the application InDesign or the dialog to export PDF-format out of a document?
    Martin

  • [AIR_on_ANDROID] Needs some explanations

    Hi guys,
    I'm an italian flash programmer. I'm so happy that I can finally build apps fdor android and iPhone too. This wouyld be great for my job.
    But first I need some explanations to some issues I found:
    1 If the new Flash CS5 extension allows us to compile a native Android application (.apk file), why people needs to install AIR runtime on its phone? IT shouldn't be just like iPhone and its packeger?
    2 Why when I do set the publish settings to "AIR Android", the functionality  "Control -> Test Movie -> In device central" goes off?
    3 Since I installed the Android ext, every time I start a new AIR 2 project the publish settings goes automatically in "AIR Android". The I set it on "Adobe AIR 2", but when I try to compile it give me always the same error:
    "Error creating file"
    "Name file is invalid in the descriptor file"
    Thank you for help.
    P.S. I use Flash Cs5 in windows Vista x32.

    Well, the latest extension (09/30/10) has some issues qhen you try to visualize "Android settings":
    "The following JavaScript error(s) occurred:
    At line 1 of file "Apollo_OpenSettingDialog.jsfl":
    ReferenceError: Air2_5_Android is not defined"
    This is a bug a lot of people in internet found. So the only solution was to install an older release (09/23/10 works fine on it).
    After all, I tried to run an .apk on Desire HD emulated by Device Central Cs 5, but it occured an error "file not supported on this device".
    I suppose that device central smartphones are still not update, right?
    Thanks for your time. I really appreciate that

  • Need some explanation on nested AMs

    Hello OTN,
    Need some explanation on nested application modules.
    It is descibed in several posts and videos that each AM holds its own connection and to reduce connection number we nest AMs under RootAM.
    So, I have the master application with a RootAM.
    There are some detail applications imported into RootViewController project as ADF libraries. Each containing a taskflow to use on a main page and an application module.
    So in the Data Controls I have RootAM + all of imported. Each holding its own connection. To reduce it I want to nest importeed AMs under RootAM.
    But in RootAM DataModel - Appliaction Module Instances there is just RootAM and nothing more. Seems, RootModel project is not aware of imported AMs.
    http://img72.imageshack.us/img72/4964/nestam.png
    So I deploy each detail Model project as an ADF Library and import it into RootModel project. OK, now I see imported AMs in Application Module Instances section and I can nest them.
    After doing so I open Data Controls section inteding to see only RootAM on the top level, but still there are each of imported AMs on the top level and there are nested AMs under RootAM also.
    http://img7.imageshack.us/img7/5042/nestam2.png
    Seems, I've done something wrong.
    Could someone explain me, please?
    Thanks.
    ADF 11.1.2.1

    I don't think that you made an error. Is just the way application module are imported. You see the nested ones under your root application module and you see the same as root application module on the same level as your real application module.
    It all depend on which one you use. You can however control which artifacts you see in the data control. Check Chris Muirs bloghttp://one-size-doesnt-fit-all.blogspot.com/2011/02/jdev-adf-bc-and-adf-libraries-library.html about this.
    Timo

  • I am trying to restore an older iPod Touch, but do not have the passcode.  I am getting an error message saying that I need to free up some space, but I cannot because I don't have the passcode and have never synced this device to my account.  Help..

    I am trying to restore an older iPod Touch, but do not have the passcode.  I am getting an error message saying that I need to free up some space, but I cannot because I don't have the passcode and have never synced this device to my account.  Help..

    If it is asking for the screen-lock passcode then:
    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: Back up and restore your iOS device with iCloud or iTunes
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        
    If problem what happens or does not happen and when in the instructions? When you successfully get the iPod in recovery mode and connect to computer iTunes should say it found an iPod in recovery mode.
    Otherwise follow varjak paw recommendation

  • I need advise and help with this problem . First , I have been with Mac for many years ( 14 to be exact ) I do have some knowledge and understanding of Apple product . At the present time I'm having lots of problems with the router so I was looking in to

    I need advise and help with this problem .
    First , I have been with Mac for many years ( 14 to be exact ) I do have some knowledge and understanding of Apple product .
    At the present time I'm having lots of problems with the router so I was looking in to some info , and come across one web site regarding : port forwarding , IP addresses .
    In my frustration , amongst lots of open web pages tutorials and other useless information , I come across innocent looking link and software to installed called Genieo , which suppose to help with any router .
    Software ask for permission to install , and about 30 % in , my instinct was telling me , there is something not right . I stop installation . Delete everything , look for any
    trace in Spotlight , Library . Nothing could be find .
    Now , every time I open Safari , Firefox or Chrome , it will open in my home page , but when I start looking for something in steed of Google page , there is
    ''search.genieo.com'' page acting like a Google . I try again to get raid of this but I can not find solution .
    With more research , again using genieo.com search eng. there is lots of articles and warnings . From that I learn do not use uninstall software , because doing this will install more things where it come from.
    I do have AppleCare support but its to late to phone them , so maybe there some people with knowledge , how to get this of my computer
    Any help is welcome , English is my learned language , you may notice this , so I'm not that quick with the respond

    Genieo definitely doesn't help with your router. It's just adware, and has no benefit to you at all. They scammed you so that they could display their ads on your computer.
    To remove it, see:
    http://www.thesafemac.com/arg-genieo/
    Do not use the Genieo uninstaller!

  • I still have 5 Gb icloud storage but 2.1 gb on iphone I want to upgrade to 6.0 but need 2.6 gb on my phone can i use icloud to free up some space and still access the apps that I store there on my iphone

    i still have 5 Gb icloud storage but 2.1 gb on iphone I want to upgrade to 6.0 but need 2.6 gb on my phone can i use icloud to free up some space and still access the apps that I store there on my iphone.

    No.
    You need to delete content from your iphone.

  • For the new iPhone 5s - is there not an option anymore to edit imessages without deleting the whole stream?  There are some things I need to keep within a stream and some not necessary, and it looks as like no editing within a conversation?

    For the new iPhone 5s - is there not an option anymore to edit imessages without deleting the whole stream?  There are some things I need to keep within a stream and some not necessary, and it looks as like no editing within a conversation?

    Now I also know about pulling the message to the left to see the time stamp.  Good to know, although I preferred it being right where I could see it without having to do a swipe or keystroke. 

  • Firefox have some promlems and it block when is opeining hotmail, in my laptop always have that problem, so i need check my email using another programs...that problem is in my laptop or it´s a problem of navigator??

    Firefox have some problems and it block when is opening hotmail, in my laptop always have that problem, so i need check my email using another programs...that problem is in my laptop or it´s a problem of navigator??

    I know you can't help with my Yahoo problem, however, apparently at some time in the past I have went to the Sync and tried to figure it out on both my laptop and my desktop, because I have the long snyc key information. However, when I go to try to sync both computers I never get the box to enter that key on either one. That is my problem. So should I try and get a new sync key and see if that works.

  • Help and some explanation how to get a Microsoft.Office.Tools.Excel.Worksheet host item that extends the functionality of the current Microsoft.Office.Interop.Excel.Worksheet object

    Hello,
    I would use some help and more info about how to get host object that extends the functionality of my current Interop.Excel.Worksheet object. I read this artical: https://msdn.microsoft.com/en-us/library/ee794671.aspx where I can call this function
    GetVstoObject to get host object. But I see that here I need to pass the Globals.Factory object as second parametar. Can someone give me more details about that parameter and how to access it? I would like to get host object so I can access extension
    property, since my interop excel worksheet doesn't have it.  
    I am using Visual Studio 2013 for developing Excel addin. Using Excel 2010.
    Thanks in advance for help.
    Regards,
    Zeljka

    Hi Zeljka,
    >>I am using the Microsoft Office PIAs, so my question is how to access this automatic generated class Globals in my case?   <<
    Sorry, I am not able to understand the application you were developing exactly. From the orgnal post, you were developing an application level add-in, however based on the description above, it seems that you were building an console or Windows form application
    to automate Office application.
    If you were developing Office automation, the host item can't work for this secnario since it should run under the VSTO runtime.
    If I misunderstood, please feel free to let me know.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • So I bought a phone off some one and it happened to be reported lost and I need the previous owners icloud to unlock it. what can I do?

    so i bought an iphone 4s off some one and it happened to be reported lost and i need the old owners icloud info to unlock it. what can i do?

    almightyrollin wrote:
    ive contacted the old owner he isnt willing to do it because he said its my problem and he cant trust me. is there any other way like taking it to the apple store?
    As you've already been told...NO.

  • Can I download an iWeb site so that I can change the html? I need to add a better blog and also some SEO.

    Can I download an iWeb site so that I can change the html? I need to add a better blog and also some SEO.

    Where is your site hosted? If it's hosted on MobileMe you can use SEO to edit the site online.  No need to get it locally.
    If the site is hosted with a 3rd party fpt client then publish your site to a folder on your hard drive, use SEO on it there and then upload the site to your server with a 3rd party ftp client.
    What do you mean "add a better blog"?
    OT

  • Can someone please help me... i'm about to buy a new macbook pro and i need some pros and cons of SSD

    hi.. i'm about to buy a new macbook pro and i need some pros and cons of SSD.... i'm not sure which is really better, the regular hard drive or the SSD... because if i buy the mac with SSD it would be the 128GB, so i want to know how would that affect the overall performance of the computer...
    Thanks!

    I would suggest that you purchase the SSD through a third party source.  You will save money that way.
    Regarding the performance, go to the OWC web site.  They have bench tested their SSD vs conventional HDD and have published the results for anyone to see,
    The difference between the 128GB and the 256GB drives is capacity, no practical change to performance.
    Ciao.

Maybe you are looking for

  • Tables for contract account receivables & payables

    Dear Members I would like to know tables for contract account receivables & payables. 1)header 2) line items. when we run report by t-code FPL9 we get information line itemwise. this information coming from which table.? Kindly inform me tables & not

  • Help with file sharing

    I am unable to find the "apps" selection under device in itunes (windows) now and thus no longer have access to file sharing . I do have an app on my ipod touch 5 that requires file sharing to copy files from/to. That app is "my disk". I presume that

  • Where is the option for system updates in the update center

    Hi, I want to check if lollipop is available for my phone. So I went to software updates in the About Phone section, but I don't see the option to check for system updates. Why? My Z3 compact Android version: 4.4.4 Build number: 23.0.1.A.5.77 Solved!

  • Aperture is unable to reconnect with PSD files

    I used Aperture's 'Consolidate Master' command to move some files from Referenced to Aperture's managed Library. Aperture didn't locate some PSD files with edited in external editor badges and left them behind during the file move. The files that got

  • Install of bundled product

    Hi everyone-- I have previously been using Photoshop Elements 6 (Windows version) but recently purchased the bundled product that contains Photoshop Elements 11 AND Premier Elements 11.  I just tried to install and realized that each one is installed