How To Read a Websites Certificate

I have used JSSE to read web pages from SSL websites. Is there a way I can use JSSE to read the public information in a website's certificate? What I need to read is how long the website's certifate is valid for. I can view these dates in a website's certificate using a broswer, but I need to read it in my java program.

I want to read the certificate validity from a web site but the code is failing during the startHandShake().I am getting a the following exception when I tried to connect to the ssl port using the code below. please help
javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: Couldn't find trusted certificate
     at com.sun.net.ssl.internal.ssl.BaseSSLSocketImpl.a(DashoA6275)
     at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA6275)
     at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA6275)
     at com.sun.net.ssl.internal.ssl.SunJSSE_az.a(DashoA6275)
     at com.sun.net.ssl.internal.ssl.SunJSSE_az.a(DashoA6275)
     at com.sun.net.ssl.internal.ssl.SunJSSE_ax.a(DashoA6275)
     at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA6275)
     at com.sun.net.ssl.internal.ssl.SSLSocketImpl.j(DashoA6275)
     at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(DashoA6275)
     at Certificate.main(Certificate.java:37)
Caused by: java.security.cert.CertificateException: Couldn't find trusted certificate
     at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.a(DashoA6275)
     at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkServerTrusted(DashoA6275)
     at com.sun.net.ssl.internal.ssl.JsseX509TrustManager.checkServerTrusted(DashoA6275)
     ... 7 more
The Code is as follows.
import java.net.*;
import java.io.*;
import java.security.*;
import java.security.Security;
import java.security.KeyStore;
import java.security.cert.X509Certificate;
import javax.net.*;
import javax.net.SocketFactory;
import javax.net.ssl.SSLSocketFactory;
import javax.net.ssl.SSLSocket;
import javax.net.ssl.*;
import java.util.*;
public class Certificate {
     public static void main(String[] args) {
          SSLSocketFactory factory = HttpsURLConnection.getDefaultSSLSocketFactory();
          //SSLSocket socket = (SSLSocket)factory.createSocket(host, port);
          SSLSocket socket = null;
          try{
          socket = (SSLSocket)factory.createSocket("xx.xx.xx.xx", 50000);
          //Connect to the server
          socket.startHandshake();
          catch(Exception eh){
               try{
                    socket.close();
               }catch(Exception eio)
                    eio.printStackTrace();
               eh.printStackTrace();
               System.exit(1);
          SSLSession session = socket.getSession();
          javax.security.cert.X509Certificate certchain[] = null;
          certchain = new javax.security.cert.X509Certificate[1];
          //- get all the certs in the chain for this server
          try {
               certchain = session.getPeerCertificateChain();
          catch(Exception es){
               System.err.println("Error");
          //- follow cert chain, look at each cert
          for (int ii = 0; ii < certchain.length; ii++) {
               System.out.println( "---- Certchain Cert number: " + ii + " ----");
               // Check validity
               String validity = "Cert is valid";
               try { certchain[ii].checkValidity();
               } catch (javax.security.cert.CertificateExpiredException ex ) {
                    System.out.println( "Certificate has expired!" );
                    validity = "Certificate Expired!";
               } catch (javax.security.cert.CertificateNotYetValidException ex ) {
                    System.out.println( "Certificate is not yet valid!" );
                    validity = "Certificate Not Yet Valid";
               String subjectDN = certchain[ii].getSubjectDN().getName();
               String issuerDN = certchain[ii].getIssuerDN().getName();
               Date notAfter = certchain[ii].getNotAfter();
               Date notBefore = certchain[ii].getNotBefore();
               int version = certchain[ii].getVersion();
               String peerHost = session.getPeerHost();
               String sessionProto = session.getProtocol();
               String cipherSuite = session.getCipherSuite();
               boolean needClientAuth = socket.getNeedClientAuth();
               String stringImageOfCert = certchain[ii].toString();
               System.out.println("IssuerDN ===== " + issuerDN);
               System.out.println("Validity ===== " + validity);
               System.out.println("NotAfter ===== " + notAfter.toString());
               System.out.println("NotBefore ==== " + notBefore.toString());
               System.out.println("Version ===== " + version);
               System.out.println("SubjectDN === " + subjectDN);
               System.out.println("PeerHost ==== " + peerHost);
               System.out.println("SessionProto = " + sessionProto);
               System.out.println("CipherSuite == " + cipherSuite);
               System.out.println("NeedClntAuth = " + needClientAuth);
               System.out.println("StringImageOfCert = "+ stringImageOfCert);          
          try {
               socket.close();
          }catch (Exception ess) {}

Similar Messages

  • How to read tamil websites in my C5-03

    hi
    when i browse through opera browser to dinamalar .com tamil website i cannot able to read the  font all font coming like box can anybody tell how to read tamil font in my mobile.
    surendar

    /t5/Eseries-and-Communicators/ViewingTamil-Fonts-in-Nokia-E63/m-p/1023621#M89826 have a look it. Simple configuration change in Opera mini makes you to read Tamizh websites.
    If a reply has solved your problem click Accept as solution button, doing it will help others know the solution. Thanks.

  • How to read Tamil websites in Nokia5800?

    Is there anyway to read Tamil websites in Nokia5800 using the built in browser?

    This would depend on having the Tamil language supported on the phone. To save system resources, they only include support for non-Roman alphabets if languages using the alphabet in question are supported by the phone.
    Unfortunately, there is official way (and therefore no safe way) for us as the end users to add language support. It may be possible to have Tamil added to your phone by a Nokia service point, but not all of them are willing and/or able to do this. If it is done, then we need to note that depending on which method they use to add the language, it may be lost by hard resets or software updates, setting you back at square one.

  • How to read client certificate after SSL has be established

    Hi, Folks:
    I've established mutual authentication between client and server, how do I go about reading the client certificate on the server side after SSL session has been established? Basically I am trying to read the client name from the client certificate, based on the name, the server will decide what resource the client can access.
    Thanks a lot
    --Richard                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    I need to know the process clearly... like how to configure ssl serverAs I said, that's not the topic of this thread. It's described in the Javadoc, and it's been covered in this forum, and the forum has a search facility. If you still have a question, start your own thread. Don't hijack other threads about other topics.
    Every one knows to read API documentation. If those were clear then I wouldn't ask here for help. Then you need to ask a specific question about something you specifically didn't understand, in a specific thread, in a specific forum. The best reference is the Javadoc. That's what it's for, and reading it is how I learned Java. If you can't understand it maybe you need to make more of an effort. Nobody is going to type it in here again for you in a more comprehensible form (I hope). It's your job to understand the material you have to work with. At the moment you're just asking someone to do your job for you.
    And yes this topic may have been covered previously, but its not necessary for me to know what topics are covered in this forum.The question asked in this thread has been answered previously in this thread. Is that too hard to find? The question you asked that hasn't been covered in this thread doesn't belong in this thread. Is that too hard to understand?

  • How to read security certificates from registry using java 1.4

    Hi All,
    I installed one Security certificate in IE browser. that certificate is UNExportable which contains private keys which are imported to use while server cuommunication.
    Now have to send that certificate for authentication to vendor server using java(J2SDK 1.4).I tried allways to do cummunication but filed due to unabalability of private key.
    Here I want to read that certificate from windows sertificate registry store which is installed from IE.
    Is there any way to read IE installed certificates using java. If so please provide me that code.
    Its very URGENT for me.....please help
    thank you
    Vinod

    while exporting the certificate the am able to export only public keys, private key option is disabled. but those private keys are very important for my communication. I should pass those private keys to vendor for authentication purpose.
    That's way am paling to read certificate from windows registry. but am new to these concepts.
    can anybody have code to read certificates from windows registry using java 1.4?

  • HOw to read a Certificate protected PDF

    hello
    i just what to know is anyone has succeded to access to a PDF encrypted usinfg PFX certificate ?!!!
    i install the certificate on my IPAD but that seems not resolving the probleme...
    thnx in advance !

    The iOS version of Adobe Reader does not certificate-based encryption ; i think.   coz  When I tried reading a pdf file encrypted with a certificate on the iPad, Adobe Reader for iOS said, “The document has features that are not supported in this version of Adobe Reader”.  

  • How to use self-signed Certificate or No-Check-Certificate in Browser ?

    Folks,
    Hello. I am running Oracle Database 11gR1 with Operaing System Oracle Linux 5. But Enterprise Manager Console cannot display in Browser. I do it in this way:
    [user@localhost bin]$ ./emctl start dbconsole
    The command returns the output:
    https://localhost.localdomain:1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 11g Database Control ... ...
    I open the link https://localhost.localdomain:1158/em/console/aboutApplication in browser, this message comes up:
    The connection to localhost.localdomain: 1158 cannot be established.
    [user@localhost bin]$ ./emctl status dbconsole
    The command returns this message: not running.
    [user@localhost bin]$ wget https://localhost.localdomain:1158/em
    The command returns the output:
    10:48:08 https://localhost.localdomain:1158/em
    Resolving localhost.localdomain... 127.0.0.1
    Connecting to localhost.localdomain|127.0.0.1|:1158... connected.
    ERROR: cannot verify localhost.localdomain's certificate, issued by `/DC=com/C=US/ST=CA/L=EnterpriseManager on localhost.localdomain/O=EnterpriseManager on localhost.localdomain/OU=EnterpriseManager on localhost.localdomain/CN=localhost.localdomain/[email protected]':
    Self-signed certificate encountered.
    To connect to localhost.localdomain insecurely, use `--no-check-certificate'.
    Unable to establish SSL connection.
    A long time ago when I installed Database Server Oracle 11gR1 into my computer, https://localhost.localdomain:1158/em in Browser comes up this message:
    Website certified by an Unknown Authority. Examine Certificate...
    I select Accept this certificate permanently. Then https://localhost.localdomain:1158/em/console/logon/logon in Browser displays successfully.
    But after shut down Operating System Oracle Linux 5 and reopen the OS, https://localhost.localdomain:1158/em/console/logon/logon in Browser returns a blank screen with nothing, and no more message comes up to accept Certificate.
    My browser Mozilla Firefox, dbconsole, and Database Server 11gR1 are in the same physical machine.I have checked Mozilla Firefox in the following way:
    Edit Menu > Preferences > Advanced > Security > View Certificates > Certificate Manager > Web Sites and Authorities
    In web sites tab, there is only one Certificate Name: Enterprise Manager on localhost.localdomain
    In Authorities tab, there are a few names as indicated in the above output of wget.
    My question is: How to use self-signed certificate and no-check-certificate in Mozilla Firefox for EM console to display ?
    Thanks.

    Neither problem nor solution do involve Oracle DB
    root cause of problem & fix is 100% external, detached, & isolated from Oracle DB.
    This thread is OFF TOPIC for this forum.

  • How to identify which root certificate is used?

    How to identify which root certificate(on terminal) is used when a terminal is connecting to a https website?
    SecurityInfo.getServerCertificate() only returns the certificate send from the https server.
    But how could know the which local root certificate is used to verify the certificate send from the https server?
    Is there a method or class in MIDP 2.1?
    Thanks

    UP�Cthis question is urgent. Hope anyone can answer me!

  • Website certificate invalid?

    I am trying to access google .com but I'm receiving a notice telling me that the website certificate is invalid and that I might be comnnecting to an invalid website that is insecure.how do I ensure that the crtificate is valid and the website secure?

    Are you connecting to this site with the same browser on the same computer? Which browser is it?

  • What is S.M.A.R.T. and how to read S.M.A.R.T. attributes

    Read the bottom for updated information/amendments
    Hi everyone,
    S.M.A.R.T. is Self-Monitoring, Analysis and Reporting Technology.
    [size=15]1. S.M.A.R.T. info websites[/size]
    OK, now we all know what S.M.A.R.T. stands for. For more details about S.M.A.R.T., here is a comprehensive non-technical explanation about S.M.A.R.T. by pcguide.com. Maxtor has published a white paper on S.M.A.R.T. too. And this is from Seagate. Anyhow, I am not going to discuss whether S.M.A.R.T will protect your harddisk from failure, etc etc here. Let us focus more on S.M.A.R.T. itself.
    [size=15]2. S.M.A.R.T. monitoring tools[/size]
    S.M.A.R.T. data is stored as a tabulated data somewhere in the harddisk as registers. The tools below support reading these registers value from S.M.A.R.T. enabled harddisk.
    1. SpeedFan *sign-up is required for download, but it's FREE
    2. Active SMART
    3. Sisoftware SANDRA 2002.6.8.97 SP1 , older version doesn't support
    [size=15]3. S.M.A.R.T. Tabulated Information[/size]
    Here is a screenshot captured with SpeedFan.
    Let us go through the screenshot. As can be seen, there are 5 columns - Attribute, Value, Worst, Warn and Raw.
    Attribute
    describes the meaning of the values. As mentioned above, the SMART data is stored as a tabulated data as registers. Each attribute represents one register ID. eg Raw Read Error Rate is register ID 01, register ID 03 is Spin-up Time, etc.
    Note that the register IDs are not displayed by SpeedFan, but are displayed by other SANDRA and Active SMART. I have no idea how many S.M.A.R.T. attributes are there, Active SMART stated it can detect more than 35 attributes!
    However, some attributes are manufacturer specific. So possibly some attribute names as shown in these SMART tools might not represent the true meaning of the values too!!
    Value
    is the current relative value of the attribute read from the registers.
    Worst
    is the worst value ever achieved.
    Warn
    is the critical threshold value of the attribute. If the Value has reached and OVER this threshold value, with very high probability the harddisk is in trouble. If SMART is enabled in the BIOS, SMART will alert user in the POST screen, with some manufacturer specific error code. You may need to refer to your manufacturer then.
    Note : Value, Worst and Warn are all relative values, such as percentage, not actual count. I have no idea how to calculate these values. This is the very S.M.A.R.T. algorithm, isn't it? ?(
    Raw
    is in fact, the most understandable represented value here! It represents the actual count of the attribute. SpeedFan displays this raw value as hexadecimal numbers. Such as Power On Hours Count is "AA8", which is 2728 in decimal numbers, meaning that the harddisk has been power on for 2728 hours!! There are some Raws represent average rate, such as "CRC Error Rate" etc.
    [size=15]4. S.M.A.R.T. Attributes In Detail[/size]
    Hopefully by now, you have the basic idea how to read the tabulated data. I will try my best to go through the attributes one-by-one, which after that shall make you understand more about S.M.A.R.T. and of course, starts to appreciate it.
    Raw Read Error Rate represents the condition of the physical disk, based on raw (physical) read errors, and physical surface defects.
    Spin Up Time is the time taken for the hdd to spin-up. more info
    Start/Stop Count is the number of counts (cycles) the hdd start/stop. more info
    Reallocated Sector Count - the number of sectors have been reallocated. Surface scan and found bad sector will increase this count. Now this drive has 7 bad sectors already!
    Seek Error Rate - how often the drive failed to locate the data (seeking)
    Power On Hours Count - the number of hours you have powered on the HDD.
    Spin Retry Count - how many time your drive need to attempt to get the drive platter spinning. If this value is more than 1, your drive is seriously in very bad condition!
    Calibration Retry Count - represents the number of time your drive perform calibration retry. I am not sure if low-level format would increase this value.
    Power Cycle CountThe number of time the hdd has been powered on. On and Off = 1 cycle.
    Read Soft Error Rate - should be Soft Read Error Rate. Similar to Raw Read Error Rate but this one depends on logical level, such as error occured in the hdd buffer, etc.
    Temperature - The drive temperature, Forget the relative values, read from the Raw value -- "2D" in this example, which is 45C. But my SpeedFan displayed 47C at that time!! SpeedFan seems to produce some +-2C error from actual reading once in a while. :P
    Hardware ECC Recovered is the number of counts ECC correction is performed on the data.
    Reallocated Event Count - similar to Reallocated Sector Count but this one is on the data.
    Current Pending Sector - is the number of counts how many sectors are currently pending. But what is a pending sector?? ?( ?(
    Offline Correctable - which is Off-line Scan Uncorrectable Sector Count. Again, what is off-line scan?
    UltraATA CRC Error Rate - which is in fact, CRC Error Count instead of rate. As shown, there have been "3C3", which is 883 errors occured already!!!
    There are more S.M.A.R.T. attributes, such as
    Thoroughput Performance - again, this relative value is surely got from some wierd algorithm again.
    Seek Time Performance - some algorithm has been used to calculate this performance value.
    Power Off Retract and Load Cycle Count are IBM HDD specific features -- unload the head off the platters when power off. More info on Head Load/unload cycle.
    [size=15]5. SpeedFan S.M.A.R.T. Fitness and Performance bars[/size]
    I should not comment on this too much because this is Almico's work. I am not sure how he calculate to define the "fitness" and "performance" though. It could probably based on mathematic relation between the current Values  and the threshold Warns.  
    For most hdds, like Maxtor and Seagate's, out-of-the-box the fitness bar has already reaching half-way 50%. But for IBM hdd, the fitness bar is always around 100%. This is because IBM hdd has its threshold/Warn values set to unrealistically high until it's quite unreachable even after a long term use. While for other brand HDDs, the threshold values are more realistic. Thus, the fitness bar in particular, does not tell the true fitness of the HDD. Take it as a reference only. Please always refer back to the Raw values to determine the fitness.
    [size=15]6. Conclusion : Judging HDD fitness by our own selves![/size]
    Now we all know what the Attributes are, so roughly everyone will have the basic idea how to judge HDD health by our own selves depend on the attributes you're reading. S.M.A.R.T. itself however, define "fitness" and "performance" based on its own algorithm.
    We can categorize the attributes into :
    Error Related Attributes
    "UltraATA CRC Error Rate", "Raw Read Error Rate", "Raw Soft Error Rate", "Hardware ECC Recovered Count", "Reallocated Sector Count", "Reallocated Event/Data Count", Offline Correctable"
    -- tell how often are those errors occured. For the above example, this Maxtor harddisk should be RMA-ed for its high CRC Error Rate count.
    Drive Fitness Attributes
    Spin Up Time, Start/Stop Count, Seek Error Rate, Power On Hours Count, Spin Retry Count, Calibration Retry Count, Power Cycle Count, Power Off Retract Count, Load Cycle Count
    -- check "spin retry count" and "Seek Error Rate", any value other than zero is really bad.
    Other Attributes
    I have no idea what they are for except Temperature.
    As the conclusion, understanding S.M.A.R.T. attributes helps in knowing your HDD fitness by your own self, rather than waiting for the S.M.A.R.T. to alert you for severe error. That might be too late already.  8o
    Thanks for reading.
    Edited:
    1. for better reading pleasure
    2. added Conclusion
    3. added explanations about SpeedFan SMART Fitness and Performance bar.

    Quote
    Originally posted by WarLord
    I like this HD tool. i use it everyday now. the tempture readings are great Hd temp cpu temp and even the system temp nice added feature to the monitoring. And this is an alternative to enabling the SMART in the bios? Thats the way im understanding it. is that right Maesus ?Because i have disabled in bios. She went threw alot of trouble here. thank you  
    Well from my observation, whether SMART is disabled or enabled in the BIOS, SMART is always working within the HDD itself.
    Basically SMART is acting like a blackbox, monitoring and tabulating HDD condition from time to time and its attributes only fully revealable by the manufacturers. SpeedFan's SMART status only displays partial information that is displayable. Some attributes are hidden, ~OR~ the attributes' locations are different from one HDD to another brand, such that some values don't correspond to the attribute meaning at all.
    It is very doubtful to claim that enabling SMART in the BIOS will hog down the performance. Just like a transport bus (yeah real bus that fetch passenger :P ), with or without the black box installed can't help it if the driver wants to speeding. :P

  • For the AD FS Wizard how do I configure a certificate so I can run WCF applications on my server

    For the AD FS Wizard how do I configure a certificate so I can run WCF applications on my server.
    Certificate Status: This CA Root certificate is not trusted because it is not in the Trusted Root Certification Authorities store.
    In IIS under Server Certificates:
    IIS Express Development Certificate
    It will not let me "Complete Certificate Request" because I do not have a ".cer" certificate file.
    How do I get ".cer" file for this Certificate or maybe make one in IIS 8.0 not Express? 

    You need to make the certificate trusted by adding it in the Trusted Root Certification Authorities
    store using Certificates snap-in. You can use Certificates
    snap-in in MMC to export the certificate in a .cer file.
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

  • Debugging Synchronization Problem - How to read PtTrace.log / tif.log?

    I believe the following is the portion of the PtTrace.log log giving a clue to why I'm receiving a "Connector Specific" error during synchronization. I've also included the tif.log as KB15294 told me to create these logs, but not how to read and solve the problem. THANK YOU ANYONE!!
    PtTrace.log
    11:23:10.485: Fetching implemented classes at .\iluptbl.cpp line 3408
    11:23:10.704: Fetching implemented classes at .\iluptbl.cpp line 3408
    11:23:11.888:
    11:23:11.888: Begin ILX Session, Source=Microsoft Outlook, Target=Device
    11:23:11.907:
    11:23:11.907: Starting Standard Sync
    11:23:11.956: Phase=10, User=3211EB77: Reading data from Device Address Book
    11:23:13.870: Finished Reading 1 Records + 0 Deletes + 0 Unchangeds for User=3211EB77 from Device Address Book (fast sync input)
    11:23:13.871: Phase=20, User=3211EB77: Reading data from Microsoft Outlook Contacts
    11:23:15.110: Finished Reading 0 Records + 0 Deletes + 704 Unchangeds for User=3211EB77 from Microsoft Outlook Contacts (slow/medium sync input)
    11:23:15.111: Phase=30, User=3211EB77: Writing data into Device Address Book
    11:25:09.541: Add 0, Change 0, Delete 0, and Leave 705 Alone in Device Address Book
    11:25:09.542: Add 1, Change 0, Delete 0, and Leave 704 Alone in Microsoft Outlook Contacts
    11:25:18.679: Phase=40, User=3211EB77: Writing data into Microsoft Outlook Contacts
    11:25:18.747: Creating new Sync History File
    11:25:18.780: History file 'C:\Users\Pj\AppData\Roaming\RESEAR~1\BLACKB~2\\Intellisync\\3211EB77\1.ish' committed
    11:25:18.781: Translation Unit Completed: User=3211EB77, rc=0
    11:25:18.859:
    11:25:18.860: End ILX Session, elapsed time = 126.000 seconds
    11:26:44.609: Fetching implemented classes at .\iluptbl.cpp line 3408
    11:26:44.821: Fetching implemented classes at .\iluptbl.cpp line 3408
    11:26:46.010:
    11:26:46.010: Begin ILX Session, Source=Microsoft Outlook, Target=Device
    11:26:46.025:
    11:26:46.026: Starting Standard Sync
    11:26:46.060: Phase=10, User=3211EB77: Reading data from Device Tasks
    Sat Feb 11 11:26:46 2012: Error 12.12 at .\sdk_data.cpp line 875
    Sat Feb 11 11:26:46 2012: Error 0.4238 at .\ciltrans.cpp line 241
    Sat Feb 11 11:26:46 2012: Error 4238.4238 at .\Ilx_sdk.cpp line 220
    11:26:46.542: Translation Unit Status: User=3211EB77, rc=4238, Phase=10, TrErr=4238, SysErr=0 at .\xlatev3.cpp line 650
    11:26:46.546:
    11:26:46.546: End ILX Session, elapsed time = 0.000 seconds
    11:33:33.206: Fetching implemented classes at .\iluptbl.cpp line 3408
    11:33:33.416: Fetching implemented classes at .\iluptbl.cpp line 3408
    11:33:34.571:
    11:33:34.571: Begin ILX Session, Source=Microsoft Outlook, Target=Device
    11:33:34.584:
    11:33:34.584: Starting Standard Sync
    11:33:34.628: Phase=10, User=3211EB77: Reading data from Device Tasks
    Sat Feb 11 11:33:35 2012: Error 12.12 at .\sdk_data.cpp line 875
    Sat Feb 11 11:33:35 2012: Error 0.4238 at .\ciltrans.cpp line 241
    Sat Feb 11 11:33:35 2012: Error 4238.4238 at .\Ilx_sdk.cpp line 220
    11:33:35.055: Translation Unit Status: User=3211EB77, rc=4238, Phase=10, TrErr=4238, SysErr=0 at .\xlatev3.cpp line 650
    11:33:35.058:
    11:33:35.058: End ILX Session, elapsed time = 0.000 seconds
    tif.log
    Sat Feb 11 11:33:34 2012
    TIFInit(10)
    -------- Running 'C:\Program Files (x86)\Research In Motion\BlackBerry Desktop\IntelliSync\iltif32.dll' Synchronization engine. Internal use only. Part of the Nokia Intellisync SDK
    Version 7,3,2,23
    ilsdk ==> ilsdk
    SOURCE: Microsoft Outlook Tasks
    TARGET: Device Tasks ()
    src=144.4, tar=145.4, func=4 (todo), map#8, phase=5, TIFLOG=100, LoggingFilter=0
    v=58, sync=1, UpdOpt=2 (notify), policy=0x0, ILTR_Flags=0x9000.0x3, sizeof(tr)=17280
    TIFVersion=0x6001, SourceSST=0, TargetSST=0, OKTP=0x0
    Xlator Filtering Level = 0
    Filter Expression Has Changed = 0
    HistoryDir is 'C:\Users\Pj\AppData\Roaming\RESEAR~1\BLACKB~2\\Intellisync\\3211EB77'
    Date Range: from 19800101 (29219) to 30991231 (438290); future=1
    -------- Requested Service is Full Sync (incremental)
    Target Field Map:
    #0.1: 21 Title Title (A, , 0)
    #1.1: 22 Notes Notes (A, , 11)
    #2.1: 30 Due Date Due Date (D, , 2)
    #3.1: 33 Priority Priority (N, , 5)
    #4.1: 37 Completed Flag Completed Flag (B, , 1)
    #5.1: 32 Status Status (A, , 4)
    #6.1: _UniqueID _UniqueID (A, , -1)
    #7.1: _Delta _Delta (A, , -1)
    #8.1: 31 Due Time Due Time (T, , -1)
    #9.1: 24 Alarm Date Alarm Date (D, , 8)
    #10.1: 25 Alarm Time Alarm Time (T, , 9)
    #11.1: 36 Alarm Flag Alarm Flag (B, , 7)
    #12.1: 49 Categories Categories (A, , 12)
    #13.1: 26 Start Date Start Date (D, , 3)
    #14.1: 27 Start Time Start Time (T, , -1)
    Extra Special Fields:
    #15.1: _appData ~ (Y, , -1)
    #16.1: _repBasic ~ (Y, , -1)
    #17.1: _repExcl ~ (Y, , -1)
    #18.1: _subType ~ (N, , -1)
    Temporary Work File is 'C:\Users\Pj\AppData\Roaming\RESEAR~1\BLACKB~2\\Intellisync\\3211EB77\workfile.tmp'
    TIF FldLst1[000]=Y.01.01200000 InstanceArray (iltr#-1)
    Using key 'Sync.(Microsoft Outlook.Tasks.0).(Device.Tasks.0).0' for history lookup
    Using old history name '3'
    FlipFlopFlags=0xc00000
    ----- Starting ILTR phase 5
    TIF FldLst2[000]=A.00.00042820 2004_Subject (iltr#0)
    TIF FldLst2[001]=B.00.00000400 p21_CompletionFlag (iltr#1)
    TIF FldLst2[002]=D.00.00020000 p20_DueDate (iltr#2)
    TIF FldLst2[003]=D.00.00010000 p1_StartDate (iltr#3)
    TIF FldLst2[004]=A.00.00000000 p23_TaskStatus (iltr#4)
    TIF FldLst2[005]=N.00.00400002 p25_Priority (iltr#5)
    TIF FldLst1[001]=N.01.00200000 p24_PercentComplete (iltr#6)
    TIF FldLst2[006]=B.00.00008000 p7_AlarmFlag (iltr#7)
    TIF FldLst2[007]=D.00.00008000 p5_AlarmDate (iltr#8)
    TIF FldLst2[008]=T.00.00008000 p6_AlarmTime (iltr#9)
    TIF FldLst1[002]=A.01.00200000 39_TaskOwner (iltr#10)
    TIF FldLst2[009]=A.00.02002000 2005_Body (iltr#11)
    TIF FldLst2[010]=A.100.00000000 116_Keywords (iltr#12)
    TIF FldLst1[003]=B.01.00200000 p8_PrivateFlag (iltr#13)
    TIF FldLst1[004]=D.01.00200000 p22_CompletionDate (iltr#14)
    TIF FldLst1[005]=N.01.00200000 33_TotalWorkMinutes (iltr#15)
    TIF FldLst1[006]=N.01.00200000 32_ActualWorkMinutes (iltr#16)
    TIF FldLst1[007]=A.01.00200000 102_Mileage (iltr#17)
    TIF FldLst1[008]=A.01.00200000 103_BillingInformation (iltr#18)
    TIF FldLst1[009]=A.01.00200000 106_Contacts (iltr#19)
    TIF FldLst1[010]=A.01.00200000 105_Companies (iltr#20)
    TIF FldLst1[011]=B.01.00200000 94_DoNotAutoArchive (iltr#21)
    TIF FldLst1[012]=A.01.00200000 44_Role (iltr#22)
    TIF FldLst1[013]=B.01.00200000 159_Override (iltr#23)
    TIF FldLst1[014]=B.01.00200000 160_Play (iltr#24)
    TIF FldLst1[015]=A.01.00200000 161_SndFile (iltr#25)
    TIF FldLst1[016]=N.01.00200000 2076_Sensitivity (iltr#26)
    TIF FldLst1[017]=A.41.00202000 p101_AttachmentInfo (iltr#27)
    TIF FldLst1[018]=A.01.01200000 _UniqueID (iltr#28)
    TIF FldLst1[019]=A.01.01200000 p94_StoreIDHash (iltr#29)
    TIF FldLst1[020]=N.01.01200000 _FolderGroup (iltr#30)
    TIF FldLst1[021]=N.01.01200000 2068_TLM (iltr#31)
    TIF FldLst1[022]=A.01.01200000 _Delta (iltr#32)
    TIF FldLst1[023]=N.01.01200000 _FolderID (iltr#33)
    TIF FldLst1[024]=A.01.01200000 _RecordID (iltr#34)
    TIF FldLst1[025]=A.01.01200000 2069_EntryID (iltr#35)
    TIF FldLst1[026]=B.01.00200000 45_Ownership (iltr#36)
    TIF FldLst1[027]=N.01.00200000 p29_TaskStatus (iltr#37)
    TIF FldLst2[011]=Y.00.01200000 _appData (iltr#38)
    TIF FldLst2[012]=Y.00.01200000 _repBasic (iltr#39)
    TIF FldLst2[013]=Y.00.01200000 _repExcl (iltr#40)
    TIF FldLst2[014]=N.00.01040000 _subType (iltr#41)
    ----- Starting ILTR phase 10
    TIF FldLst1[028]=A.20.00040820 21 Title (iltr#0)
    TIF FldLst1[029]=A.20.02002000 22 Notes (iltr#1)
    TIF FldLst1[030]=D.20.00020000 30 Due Date (iltr#2)
    TIF FldLst1[031]=N.20.00400000 33 Priority (iltr#3)
    TIF FldLst1[032]=B.20.00000400 37 Completed Flag (iltr#4)
    TIF FldLst1[033]=A.20.00000000 32 Status (iltr#5)
    TIF FldLst1[034]=A.21.01200000 _UniqueID (iltr#6)
    TIF FldLst1[035]=A.21.01200000 _Delta (iltr#7)
    TIF FldLst1[036]=T.21.00200000 31 Due Time (iltr#8)
    TIF FldLst1[037]=D.20.00008000 24 Alarm Date (iltr#9)
    TIF FldLst1[038]=T.20.00008000 25 Alarm Time (iltr#10)
    TIF FldLst1[039]=B.20.00008000 36 Alarm Flag (iltr#11)
    TIF FldLst1[040]=A.120.00000000 49 Categories (iltr#12)
    TIF FldLst1[041]=D.20.00010000 26 Start Date (iltr#13)
    TIF FldLst1[042]=T.21.00200000 27 Start Time (iltr#14)
    TIF FldLst1[043]=Y.20.01200000 _appData (iltr#15)
    TIF FldLst1[044]=Y.20.01200000 _repBasic (iltr#16)
    TIF FldLst1[045]=Y.20.01200000 _repExcl (iltr#17)
    TIF FldLst1[046]=N.20.01040000 _subType (iltr#18)
    -------- Ending Setup phase; starting Done Setup phase
    DateRange of Previous Sync: 1/1/1980 (29219) - 12/31/3099 (438290)
    Date Of Previous Sync = 2/1/2012 (40938)
    Previous SourceSyncStamp: ?? 0x4f2a0554 ?? (1328153940)
    Previous TargetSyncStamp: ?? 0x4f2a0537 ?? (1328153911)
    -------- Ending Done Setup phase; starting Load Previous History phase
    Deleting useless workfile 'C:\Users\Pj\AppData\Roaming\RESEAR~1\BLACKB~2\\Intellisync\\3211EB77\workfile.tmp'
    Creating new workfile 'C:\Users\Pj\AppData\Roaming\RESEAR~1\BLACKB~2\\Intellisync\\3211EB77\3.wrk' by copying 'C:\Users\Pj\AppData\Roaming\RESEAR~1\BLACKB~2\\Intellisync\\3211EB77\3.ish'
    Digesting previous history record #3
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106064532100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cc4efe:f8278120\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F106064532100\00"
    21 Title (len= 43) "Eph Ch 2 - salvation / rewards - see below\00"
    22 Notes (len= 99) "* Judgement of service not salvations\1f* 1 cor ch 3 works burned up - passed test of fire (rewards)\00"
    30 Due Date (len= 9) "20120728\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1614\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "050000\00"
    36 Alarm Flag (len= 2) "0\00"
    26 Start Date (len= 9) "20120728\00"
    27 Start Time (len= 7) "050000\00"
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=4cff8456
    TargetID Hash: TIH=29138b5
    KeyFields Hash: KFH=c22a1fe8
    NonKeyFields Hash: NKH=a269839b
    Flags: F=82.0000
    TIFPutRecord/3 (item #3) ==> rc=0
    Digesting previous history record #4
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060C4482100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cc5ec2:cb8291e0\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060C4482100\00"
    21 Title (len= 14) "Joe's haircut\00"
    30 Due Date (len= 9) "20120123\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1608\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "000000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 7) "Family\00"
    26 Start Date (len= 9) "20120123\00"
    27 Start Time (len= 7) "000000\00"
    _repBasic (len=144)
    rpt.type = Weekly_Days (12)
    rpt.startDate = 1/22/2012 (40928)
    rpt.stopDate = Open-Ended (-1)
    freq=6, numDays=1, day=0, month=0
    dayOfWeek=0, weekOfMonth=0, days[0..6]=0100000
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=7519503d
    TargetID Hash: TIH=291389a
    KeyFields Hash: KFH=aabe09e4
    NonKeyFields Hash: NKH=fd21515
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #4) ==> rc=0
    Digesting previous history record #5
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060C44D2100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cccc9b:d8e0a560\00"
    _Delta (len= 2) "C\00"
    _FolderID (len= 12) "-2010948102\00"
    _RecordID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060C44D2100@a1c12ae9\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060C44D2100\00"
    21 Title (len= 7) "Church\00"
    22 Notes (len= 50) "Order Church snake part: Carvin SNK16X part SH-KW\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1601\00"
    _Delta (len= 2) "C\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 4) "Joe\00"
    27 Start Time (len= 7) "103100\00"
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=b7ec3b1
    TargetID Hash: TIH=2913893
    KeyFields Hash: KFH=905f9349
    NonKeyFields Hash: NKH=57d7fc20
    Flags: F=82.0000
    TIFPutRecord/3 (item #5) ==> rc=0
    Digesting previous history record #6
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060A4472100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01ccbf9f:77dcdc10\00"
    _Delta (len= 2) "C\00"
    _FolderID (len= 12) "-2010948102\00"
    _RecordID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060A4472100@a1c12ae9\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060A4472100\00"
    21 Title (len= 16) "Daily CLASSROOM\00"
    22 Notes (len= 54) "PVHS Bulletin\1f------------\1fStinger Articles - Publish\00"
    30 Due Date (len= 9) "20120109\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1597\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "000000\00"
    36 Alarm Flag (len= 2) "0\00"
    26 Start Date (len= 9) "20120109\00"
    27 Start Time (len= 7) "000000\00"
    _repBasic (len=144)
    rpt.type = Weekly_Days (12)
    rpt.startDate = 1/9/2012 (40915)
    rpt.stopDate = Open-Ended (-1)
    freq=1, numDays=1, day=0, month=0
    dayOfWeek=0, weekOfMonth=0, days[0..6]=0111110
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=f1e7ca9c
    TargetID Hash: TIH=29135ef
    KeyFields Hash: KFH=86542ce4
    NonKeyFields Hash: NKH=eaad079d
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #6) ==> rc=0
    Digesting previous history record #7
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106024482100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01ccc98d:84237630\00"
    _Delta (len= 2) "C\00"
    _FolderID (len= 12) "-2010948102\00"
    _RecordID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106024482100@a1c12ae9\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F106024482100\00"
    21 Title (len= 14) "Fourth Monday\00"
    22 Notes (len=129) "\1f------------\1fVacuum /mop under bed ( )\1fWipe off under bed containers...um / Wipe off bed/box spring ( )\00"
    30 Due Date (len= 9) "20120123\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1549\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "000000\00"
    36 Alarm Flag (len= 2) "0\00"
    26 Start Date (len= 9) "20120123\00"
    27 Start Time (len= 7) "030100\00"
    _repBasic (len=144)
    rpt.type = Monthly by position (4)
    rpt.startDate = 1/23/2012 (40929)
    rpt.stopDate = Open-Ended (-1)
    freq=1, numDays=1, day=0, month=0
    dayOfWeek=2, weekOfMonth=4, days[0..6]=0000000
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=19d1922c
    TargetID Hash: TIH=2913556
    KeyFields Hash: KFH=959de11a
    NonKeyFields Hash: NKH=c13aac8e
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #7) ==> rc=0
    Digesting previous history record #8
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106064472100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cc5ec2:cb685320\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F106064472100\00"
    21 Title (len= 23) "Monthly - Third Monday\00"
    22 Notes (len=119) "\1f------------\1f* Go thru organizer's business cards and TOSS!\1f* Empty cell p...voicemails\1f\1fClassroom:\1fUpdate walls...\00"
    30 Due Date (len= 9) "20120116\00"
    33 Priority (len= 2) "0\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1518\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "000000\00"
    36 Alarm Flag (len= 2) "0\00"
    27 Start Time (len= 7) "043800\00"
    _repBasic (len=144)
    rpt.type = Monthly by position (4)
    rpt.startDate = 1/15/2012 (40921)
    rpt.stopDate = Open-Ended (-1)
    freq=1, numDays=1, day=0, month=0
    dayOfWeek=2, weekOfMonth=3, days[0..6]=0000000
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=7a9b4091
    TargetID Hash: TIH=29134f8
    KeyFields Hash: KFH=a9fc0e41
    NonKeyFields Hash: NKH=34370988
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #8) ==> rc=0
    Digesting previous history record #9
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060E4472100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cc5ec2:cb7b65f0\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060E4472100\00"
    21 Title (len= 21) "Goals with Elizabeth\00"
    22 Notes (len= 61) "\1f------------\1fThis One\e2\80\99s for the Girls \e2\80\93 Martina BcBride\00"
    30 Due Date (len= 9) "20120124\00"
    33 Priority (len= 2) "0\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1385\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "000000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 18) "Family, Important\00"
    26 Start Date (len= 9) "20120124\00"
    27 Start Time (len= 7) "000000\00"
    _repBasic (len=144)
    rpt.type = Monthly (3)
    rpt.startDate = 1/23/2012 (40929)
    rpt.stopDate = Open-Ended (-1)
    freq=1, numDays=1, day=24, month=0
    dayOfWeek=0, weekOfMonth=0, days[0..6]=0000000
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=348f42a0
    TargetID Hash: TIH=2912e4c
    KeyFields Hash: KFH=512c32aa
    NonKeyFields Hash: NKH=d8cab10d
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #9) ==> rc=0
    Digesting previous history record #10
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060C4472100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cc5ec2:cb78f4f0\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060C4472100\00"
    21 Title (len= 20) "Goals with Danielle\00"
    22 Notes (len=124) "\1f------------\1f\1f\1fThis One\e2\80\99s for the Girls \e2\80\93 Martina BcBrid... PVC \e2\80\93 automotive, Sacto in Dec 2010\00"
    30 Due Date (len= 9) "20120320\00"
    33 Priority (len= 2) "0\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1384\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "000000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 18) "Family, Important\00"
    27 Start Time (len= 7) "043800\00"
    _repBasic (len=144)
    rpt.type = Monthly (3)
    rpt.startDate = 3/20/2012 (40986)
    rpt.stopDate = Open-Ended (-1)
    freq=1, numDays=1, day=20, month=0
    dayOfWeek=0, weekOfMonth=0, days[0..6]=0000000
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=933b869e
    TargetID Hash: TIH=2912e4b
    KeyFields Hash: KFH=46f015e
    NonKeyFields Hash: NKH=93b2d48b
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #10) ==> rc=0
    Digesting previous history record #11
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106084472100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cc5ec2:cb6ac420\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F106084472100\00"
    21 Title (len= 17) "Goals with Sarah\00"
    22 Notes (len= 63) "\1f------------\1f\1f\1fThis One\e2\80\99s for the Girls \e2\80\93 Martina BcBride\00"
    30 Due Date (len= 9) "20120111\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1383\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "000000\00"
    36 Alarm Flag (len= 2) "0\00"
    27 Start Time (len= 7) "043800\00"
    _repBasic (len=144)
    rpt.type = Monthly (3)
    rpt.startDate = 1/10/2012 (40916)
    rpt.stopDate = Open-Ended (-1)
    freq=1, numDays=1, day=11, month=0
    dayOfWeek=0, weekOfMonth=0, days[0..6]=0000000
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=1beefc93
    TargetID Hash: TIH=2912e4a
    KeyFields Hash: KFH=99018abf
    NonKeyFields Hash: NKH=5d12e5ca
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #11) ==> rc=0
    Digesting previous history record #12
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106044472100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cc5ec2:cb65e220\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F106044472100\00"
    21 Title (len= 24) "Monthly - Second Monday\00"
    22 Notes (len= 41) "\1f------------\1fClean Up Laptop - msconfig\00"
    30 Due Date (len= 9) "20120109\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1382\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "000000\00"
    36 Alarm Flag (len= 2) "0\00"
    27 Start Time (len= 7) "043800\00"
    _repBasic (len=144)
    rpt.type = Monthly by position (4)
    rpt.startDate = 1/8/2012 (40914)
    rpt.stopDate = Open-Ended (-1)
    freq=1, numDays=1, day=0, month=0
    dayOfWeek=2, weekOfMonth=2, days[0..6]=0000000
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=d947848f
    TargetID Hash: TIH=2912e49
    KeyFields Hash: KFH=a16cd99a
    NonKeyFields Hash: NKH=c38a6710
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #12) ==> rc=0
    Digesting previous history record #13
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106024472100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cc5ec2:cb639830\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F106024472100\00"
    21 Title (len= 18) "Goals with Audrey\00"
    22 Notes (len=203) "\1f------------\1fI\e2\80\99m off Saturday and Sunday and during the week the mor...ina BcBride\1f\09\e2\80\9cLivin on Spaghetios\e2\80\9d\00"
    30 Due Date (len= 9) "20120109\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1381\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "000000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 7) "Family\00"
    27 Start Time (len= 7) "043800\00"
    _repBasic (len=144)
    rpt.type = Monthly (3)
    rpt.startDate = 1/8/2012 (40914)
    rpt.stopDate = Open-Ended (-1)
    freq=1, numDays=1, day=9, month=0
    dayOfWeek=0, weekOfMonth=0, days[0..6]=0000000
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=37f3c88d
    TargetID Hash: TIH=2912e48
    KeyFields Hash: KFH=f062fe00
    NonKeyFields Hash: NKH=ff0e97a6
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #13) ==> rc=0
    Digesting previous history record #14
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060E4462100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cc5ec2:cb612730\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060E4462100\00"
    21 Title (len= 26) "Monthly - First Wednesday\00"
    22 Notes (len= 44) "\1f------------\1f* Pour Root Killer down drain\00"
    30 Due Date (len= 9) "20120104\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1379\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "000000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 11) "Needs Prep\00"
    27 Start Time (len= 7) "043800\00"
    _repBasic (len=144)
    rpt.type = Monthly by position (4)
    rpt.startDate = 1/3/2012 (40909)
    rpt.stopDate = Open-Ended (-1)
    freq=1, numDays=1, day=0, month=0
    dayOfWeek=4, weekOfMonth=1, days[0..6]=0000000
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=52b17901
    TargetID Hash: TIH=2912e31
    KeyFields Hash: KFH=724611f0
    NonKeyFields Hash: NKH=b05b9cc4
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #14) ==> rc=0
    Digesting previous history record #15
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106084462100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cc5ec2:cb59fb40\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F106084462100\00"
    21 Title (len= 23) "Monthly - First Monday\00"
    22 Notes (len=147) "\1f------------\1f*\09Go thru top left work desk drawer\1f*\09Clean face brushes ...*\09Pour boiling water down kitchen sink\00"
    30 Due Date (len= 9) "20120102\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1376\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "160000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 11) "Needs Prep\00"
    26 Start Date (len= 9) "20120102\00"
    27 Start Time (len= 7) "160000\00"
    _repBasic (len=144)
    rpt.type = Monthly by position (4)
    rpt.startDate = 1/2/2012 (40908)
    rpt.stopDate = Open-Ended (-1)
    freq=1, numDays=1, day=0, month=0
    dayOfWeek=2, weekOfMonth=1, days[0..6]=0000000
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=3a1132f4
    TargetID Hash: TIH=2912e2e
    KeyFields Hash: KFH=1b1e028a
    NonKeyFields Hash: NKH=6fcb1320
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #15) ==> rc=0
    Digesting previous history record #16
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106064462100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cc6500:6eac1b00\00"
    _Delta (len= 2) "C\00"
    _FolderID (len= 12) "-2010948102\00"
    _RecordID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106064462100@a1c12ae9\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F106064462100\00"
    21 Title (len= 16) "Weekly - Monday\00"
    22 Notes (len=1103) "Tasks in Testing\e2\80\a6 do they fit in time available?\1f*\09Personal username...s for each task, then QUIT!\e2\80\9d ~ Kelly\00"
    30 Due Date (len= 9) "20120109\00"
    33 Priority (len= 2) "0\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1375\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "160000\00"
    36 Alarm Flag (len= 2) "0\00"
    26 Start Date (len= 9) "20120109\00"
    27 Start Time (len= 7) "160000\00"
    _repBasic (len=144)
    rpt.type = Weekly_Days (12)
    rpt.startDate = 1/9/2012 (40915)
    rpt.stopDate = Open-Ended (-1)
    freq=1, numDays=1, day=0, month=0
    dayOfWeek=0, weekOfMonth=0, days[0..6]=0100000
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=98bd76f2
    TargetID Hash: TIH=2912e2d
    KeyFields Hash: KFH=cab3e34e
    NonKeyFields Hash: NKH=f0a82251
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #16) ==> rc=0
    Digesting previous history record #17
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106044462100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cc6500:9c8e5240\00"
    _Delta (len= 2) "C\00"
    _FolderID (len= 12) "-2010948102\00"
    _RecordID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106044462100@a1c12ae9\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F106044462100\00"
    21 Title (len= 16) "Weekly - Sunday\00"
    22 Notes (len=2737) "Must Do\e2\80\99s\1f*\09Make sure laptop is ON for AVG\1f\09\1f\09Tasks in Testi...week (work up to daily\e2\80\a6) practice 2)\00"
    30 Due Date (len= 9) "20530903\00"
    33 Priority (len= 2) "0\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1374\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "000000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 11) "Needs Prep\00"
    26 Start Date (len= 9) "20120108\00"
    27 Start Time (len= 7) "093600\00"
    _repBasic (len=144)
    rpt.type = Weekly_Days (12)
    rpt.startDate = 1/7/2012 (40913)
    rpt.stopDate = Open-Ended (-1)
    freq=1, numDays=1, day=0, month=0
    dayOfWeek=0, weekOfMonth=0, days[0..6]=1000000
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=f769baf0
    TargetID Hash: TIH=2912e2c
    KeyFields Hash: KFH=12565a8e
    NonKeyFields Hash: NKH=6f255a3
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #17) ==> rc=0
    Digesting previous history record #18
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060E4452100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cc5ec2:cb554050\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060E4452100\00"
    21 Title (len= 22) "Monthly - Last Friday\00"
    22 Notes (len=105) "\1f------------\1fHome:\1f*\09Recycle\1f*\09Replace a/c air filters\1f*\09Clean W...ndows - back wall\1f\1fClassroom:\1f*\09Awards\00"
    30 Due Date (len= 9) "20120127\00"
    33 Priority (len= 2) "0\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1373\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "000000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 11) "Needs Prep\00"
    27 Start Time (len= 7) "122200\00"
    _repBasic (len=144)
    rpt.type = Monthly by position (4)
    rpt.startDate = 1/26/2012 (40932)
    rpt.stopDate = Open-Ended (-1)
    freq=1, numDays=1, day=0, month=0
    dayOfWeek=6, weekOfMonth=5, days[0..6]=0000000
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=70d3af62
    TargetID Hash: TIH=2912e2b
    KeyFields Hash: KFH=c0f1b4cd
    NonKeyFields Hash: NKH=4ad3a9c4
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #18) ==> rc=0
    Digesting previous history record #19
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060C4452100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cccc9b:edad0c40\00"
    _Delta (len= 2) "C\00"
    _FolderID (len= 12) "-2010948102\00"
    _RecordID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060C4452100@a1c12ae9\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060C4452100\00"
    21 Title (len= 16) "Weekly - Friday\00"
    22 Notes (len=1341) "MUST Do\e2\80\99s:\1f* PVHS Attendance Report ( )\1f*\09CC/CVE RCOE Atten...d dance! LOL! Have some fun! - FlyLady\00"
    30 Due Date (len= 9) "20120106\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1372\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "160000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 11) "Needs Prep\00"
    26 Start Date (len= 9) "20120106\00"
    27 Start Time (len= 7) "160000\00"
    _repBasic (len=144)
    rpt.type = Weekly_Days (12)
    rpt.startDate = 1/6/2012 (40912)
    rpt.stopDate = Open-Ended (-1)
    freq=1, numDays=1, day=0, month=0
    dayOfWeek=0, weekOfMonth=0, days[0..6]=0000010
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=cf7ff360
    TargetID Hash: TIH=2912e2a
    KeyFields Hash: KFH=5d4058df
    NonKeyFields Hash: NKH=92ddd664
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #19) ==> rc=0
    Digesting previous history record #20
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060A4452100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cc5ec2:cb52f660\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060A4452100\00"
    21 Title (len= 15) "Monthly Budget\00"
    22 Notes (len=2044) "June spent: $20 dining / $50 gas\1f\1fImmediate:\1f\1fGifts\1fThe Battle Belongs...\1f\1f\1fResearch withdrawing $$$ from Valic\00"
    30 Due Date (len= 9) "20120128\00"
    33 Priority (len= 2) "0\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1371\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "000000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 7) "Urgent\00"
    26 Start Date (len= 9) "20120128\00"
    27 Start Time (len= 7) "000000\00"
    _repBasic (len=144)
    rpt.type = Monthly by position (4)
    rpt.startDate = 1/27/2012 (40933)
    rpt.stopDate = Open-Ended (-1)
    freq=1, numDays=1, day=0, month=0
    dayOfWeek=7, weekOfMonth=5, days[0..6]=0000000
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=2e2c375e
    TargetID Hash: TIH=2912e29
    KeyFields Hash: KFH=fc0b5838
    NonKeyFields Hash: NKH=bf09283d
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #20) ==> rc=0
    Digesting previous history record #21
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060A4442100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cc5ec2:cb470f80\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060A4442100\00"
    21 Title (len= 99) "PVHS Course request list for electives... designated teachers (Walker, Bayles, Virginia, Teachers)\00"
    30 Due Date (len= 9) "20120220\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1370\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "000000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 9) "Business\00"
    26 Start Date (len= 9) "20120220\00"
    27 Start Time (len= 7) "030100\00"
    _repBasic (len=144)
    rpt.type = Yearly by position (6)
    rpt.startDate = 2/20/2012 (40957)
    rpt.stopDate = Open-Ended (-1)
    freq=1, numDays=1, day=0, month=2
    dayOfWeek=2, weekOfMonth=3, days[0..6]=0000000
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=4c4e6dbf
    TargetID Hash: TIH=2912e28
    KeyFields Hash: KFH=9e63046e
    NonKeyFields Hash: NKH=ccd99a48
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #21) ==> rc=0
    Digesting previous history record #22
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106004462100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cccc9b:fad39830\00"
    _Delta (len= 2) "C\00"
    _FolderID (len= 12) "-2010948102\00"
    _RecordID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106004462100@a1c12ae9\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F106004462100\00"
    21 Title (len= 18) "Weekly - Saturday\00"
    22 Notes (len=2834) "Tasks in Testing\e2\80\a6 do they fit in time available?\1f*\09Wipe clothesline\1f...ance! LOL! Have some fun!\e2\80\9d - FlyLady\00"
    30 Due Date (len= 9) "20120107\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1369\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "000000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 11) "Needs Prep\00"
    26 Start Date (len= 9) "20120107\00"
    27 Start Time (len= 7) "000000\00"
    _repBasic (len=144)
    rpt.type = Weekly_Days (12)
    rpt.startDate = 1/7/2012 (40913)
    rpt.stopDate = Open-Ended (-1)
    freq=1, numDays=1, day=0, month=0
    dayOfWeek=0, weekOfMonth=0, days[0..6]=0000001
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=b4c242ec
    TargetID Hash: TIH=2912e12
    KeyFields Hash: KFH=13e0fe45
    NonKeyFields Hash: NKH=5245209a
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #22) ==> rc=0
    Digesting previous history record #23
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106064482100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cccc51:d20d8360\00"
    _Delta (len= 2) "C\00"
    _FolderID (len= 12) "-2010948102\00"
    _RecordID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106064482100@a1c12ae9\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F106064482100\00"
    21 Title (len= 29) "FLY - 31 Beginner Baby Steps\00"
    22 Notes (len=3536) "\1f------------\1fDear Precious New Member,\1f\1fI know that you have become ove...started/31-beginner-babysteps/day-31/>\00"
    30 Due Date (len= 9) "20120106\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1367\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "044500\00"
    36 Alarm Flag (len= 2) "0\00"
    26 Start Date (len= 9) "20120106\00"
    27 Start Time (len= 7) "044500\00"
    _repBasic (len=144)
    rpt.type = Daily (1)
    rpt.startDate = 1/6/2012 (40912)
    rpt.stopDate = 1/31/2012 (40937)
    freq=1, numDays=1, day=0, month=0
    dayOfWeek=0, weekOfMonth=0, days[0..6]=0000000
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=5c790a30
    TargetID Hash: TIH=2912e10
    KeyFields Hash: KFH=a341bdc7
    NonKeyFields Hash: NKH=239ebb43
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #23) ==> rc=0
    Digesting previous history record #24
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106024462100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cc5ec2:cb57b150\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F106024462100\00"
    21 Title (len= 25) "Monthly - First Saturday\00"
    22 Notes (len= 41) "\1f------------\1fJoe\e2\80\99s haircut\1fMy haircut\00"
    30 Due Date (len= 9) "20530512\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1340\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "000000\00"
    36 Alarm Flag (len= 2) "0\00"
    26 Start Date (len= 9) "20120107\00"
    27 Start Time (len= 7) "083200\00"
    _repBasic (len=144)
    rpt.type = Monthly by position (4)
    rpt.startDate = 1/6/2012 (40912)
    rpt.stopDate = Open-Ended (-1)
    freq=1, numDays=1, day=0, month=0
    dayOfWeek=7, weekOfMonth=1, days[0..6]=0000000
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=5615feee
    TargetID Hash: TIH=2912dcb
    KeyFields Hash: KFH=f2403e81
    NonKeyFields Hash: NKH=8bc34272
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #24) ==> rc=0
    Digesting previous history record #25
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106084522100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cbd0ae:dc5f6f80\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F106084522100\00"
    21 Title (len= 29) "New Year's (Christmas) Cards\00"
    22 Notes (len=541) "While there are a few certain traditions that are very dear to my heart, it seems...rt. His mercies are new every morning!\00"
    30 Due Date (len= 9) "20120107\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1336\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "210000\00"
    36 Alarm Flag (len= 2) "0\00"
    26 Start Date (len= 9) "20120107\00"
    27 Start Time (len= 7) "210000\00"
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=c7576b9
    TargetID Hash: TIH=2912db2
    KeyFields Hash: KFH=93eabff5
    NonKeyFields Hash: NKH=61902f54
    Flags: F=82.0000
    TIFPutRecord/3 (item #25) ==> rc=0
    Digesting previous history record #26
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106044452100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cc5ec2:cb4bca70\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F106044452100\00"
    21 Title (len= 9) "Daily PM\00"
    22 Notes (len=4143) "PM \1fPROactive not reactive.\1f** Focus ~ Discipline ~ Obedience ~ TRUST ~ Peac...forget your lace-up shoes. \1f3.\09Do your\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1334\00"
    _Delta (len= 2) "A\00"
    36 Alarm Flag (len= 2) "0\00"
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=158bf151
    TargetID Hash: TIH=2912db0
    KeyFields Hash: KFH=2ff20b2c
    NonKeyFields Hash: NKH=692d86f6
    Flags: F=82.0000
    TIFPutRecord/3 (item #26) ==> rc=0
    Digesting previous history record #27
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106004442100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cccc9b:ea9ce610\00"
    _Delta (len= 2) "C\00"
    _FolderID (len= 12) "-2010948102\00"
    _RecordID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106004442100@a1c12ae9\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F106004442100\00"
    21 Title (len= 15) "Classroom TODO\00"
    22 Notes (len=3136) "* 2009 SWEP Certificates\1f*\09Senior portraits for Luisa Guillen (Maria Alvarad...Webinars\1fhttp://thinkfinity.k12hsn.org\00"
    30 Due Date (len= 9) "20120106\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1331\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "060000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 10) "Classroom\00"
    26 Start Date (len= 9) "20120106\00"
    27 Start Time (len= 7) "060000\00"
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=f106afae
    TargetID Hash: TIH=2912dad
    KeyFields Hash: KFH=6396d87d
    NonKeyFields Hash: NKH=92da16aa
    Flags: F=82.0000
    TIFPutRecord/3 (item #27) ==> rc=0
    Digesting previous history record #28
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060E4432100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cccc9b:e7611c00\00"
    _Delta (len= 2) "C\00"
    _FolderID (len= 12) "-2010948102\00"
    _RecordID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060E4432100@a1c12ae9\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060E4432100\00"
    21 Title (len= 6) "TO DO\00"
    22 Notes (len=1895) "*\09Finish laundry shelves\1f*\09GO THRU Home CDs tote just inside garage!!\1f*\09...iane Taylor\1f\1fMaui: Seven Sacred Falls\00"
    30 Due Date (len= 9) "20120106\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1330\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "160000\00"
    36 Alarm Flag (len= 2) "0\00"
    26 Start Date (len= 9) "20120106\00"
    27 Start Time (len= 7) "160000\00"
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=ad181c24
    TargetID Hash: TIH=2912dac
    KeyFields Hash: KFH=93bfe9e0
    NonKeyFields Hash: NKH=f03885db
    Flags: F=82.0000
    TIFPutRecord/3 (item #28) ==> rc=0
    Digesting previous history record #29
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060C4512100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cbfdcb:d742f8b0\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060C4512100\00"
    21 Title (len= 22) "Scriptures on FREEdom\00"
    22 Notes (len=4096) "It is for freedom that Christ has set us free. Stand firm, then and do not let y...ised eternal inheritance-- now that He\00"
    30 Due Date (len= 9) "20120106\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1328\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "050000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 9) "Personal\00"
    26 Start Date (len= 9) "20120106\00"
    27 Start Time (len= 7) "050000\00"
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=a1e43725
    TargetID Hash: TIH=2912d95
    KeyFields Hash: KFH=bf837b11
    NonKeyFields Hash: NKH=91da8e1b
    Flags: F=82.0000
    TIFPutRecord/3 (item #29) ==> rc=0
    Digesting previous history record #30
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106004512100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cbcffc:c5e7eb90\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F106004512100\00"
    21 Title (len= 29) "Bible Verses about Deserving\00"
    22 Notes (len=4096) "Genesis 9:5-6 <http://www.gnpcb.org/esv/search/?passage=Genesis+9%3A5-6> ESV / ...nations of the earth. And all these bl\00"
    30 Due Date (len= 9) "20120106\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 6) "-1303\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "214000\00"
    36 Alarm Flag (len= 2) "0\00"
    26 Start Date (len= 9) "20120106\00"
    27 Start Time (len= 7) "214000\00"
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=a548bd12
    TargetID Hash: TIH=2912d52
    KeyFields Hash: KFH=99a2c50e
    NonKeyFields Hash: NKH=bdbea979
    Flags: F=82.0000
    TIFPutRecord/3 (item #30) ==> rc=0
    Digesting previous history record #31
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106024502100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cc2fda:e4e60e80\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F106024502100\00"
    21 Title (len= 57) "Jordan Balius CIS Bus Comp 2008-2009 Certificate Request\00"
    22 Notes (len= 29) "Requested from Heidi 8/29/10\00"
    30 Due Date (len= 9) "20120306\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 5) "-298\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "150000\00"
    36 Alarm Flag (len= 2) "0\00"
    26 Start Date (len= 9) "20120306\00"
    27 Start Time (len= 7) "150000\00"
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=64beaf75
    TargetID Hash: TIH=153784
    KeyFields Hash: KFH=cc3c7f0
    NonKeyFields Hash: NKH=4f7f81a8
    Flags: F=82.0000
    TIFPutRecord/3 (item #31) ==> rc=0
    Digesting previous history record #32
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060844F2100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cbd061:9e66bf50\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060844F2100\00"
    21 Title (len= 39) "Change Name on Citi Bank Loans Account\00"
    22 Notes (len=663) "Name Change Information\09\1f\1fTo request a name change for your account, you mu...s your request within 5 business days.\00"
    30 Due Date (len= 9) "20120117\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 5) "-242\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "190000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 9) "Personal\00"
    26 Start Date (len= 9) "20120117\00"
    27 Start Time (len= 7) "190000\00"
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=57edcce4
    TargetID Hash: TIH=1536e3
    KeyFields Hash: KFH=56115f7b
    NonKeyFields Hash: NKH=5c331883
    Flags: F=82.0000
    TIFPutRecord/3 (item #32) ==> rc=0
    Digesting previous history record #33
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060C4442100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cc5ec2:cb470f80\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060C4442100\00"
    21 Title (len= 37) "Flush out a/c coils in inside closet\00"
    30 Due Date (len= 9) "20120107\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 5) "-225\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "070000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 7) "Family\00"
    26 Start Date (len= 9) "20120107\00"
    27 Start Time (len= 7) "070000\00"
    _repBasic (len=144)
    rpt.type = Monthly (3)
    rpt.startDate = 1/6/2012 (40912)
    rpt.stopDate = Open-Ended (-1)
    freq=6, numDays=1, day=7, month=0
    dayOfWeek=0, weekOfMonth=0, days[0..6]=0000000
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=eda229c1
    TargetID Hash: TIH=1536a8
    KeyFields Hash: KFH=c450d916
    NonKeyFields Hash: NKH=ccd9e142
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #33) ==> rc=0
    Digesting previous history record #34
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060E44D2100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cccc9b:f43e69f0\00"
    _Delta (len= 2) "C\00"
    _FolderID (len= 12) "-2010948102\00"
    _RecordID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060E44D2100@a1c12ae9\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060E44D2100\00"
    21 Title (len= 17) "lyrics to Moxley\00"
    30 Due Date (len= 9) "20120107\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 5) "-214\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "200000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 16) "General(Pj John\00"
    26 Start Date (len= 9) "20120107\00"
    27 Start Time (len= 7) "200000\00"
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=acd27fb3
    TargetID Hash: TIH=153688
    KeyFields Hash: KFH=3fe8150d
    NonKeyFields Hash: NKH=35d1adb6
    Flags: F=82.0000
    TIFPutRecord/3 (item #34) ==> rc=0
    Digesting previous history record #35
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060044E2100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cc5161:4180a810\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060044E2100\00"
    21 Title (len= 60) "Scholarships: James A. Johnson / Homer Lee Sain Jr. (Joker)\00"
    30 Due Date (len= 9) "20120803\00"
    33 Priority (len= 2) "0\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 5) "-142\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "070000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 4) "Joe\00"
    26 Start Date (len= 9) "20120803\00"
    27 Start Time (len= 7) "070000\00"
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=f0c1133d
    TargetID Hash: TIH=153322
    KeyFields Hash: KFH=2619da8e
    NonKeyFields Hash: NKH=a04800a4
    Flags: F=82.0000
    TIFPutRecord/3 (item #35) ==> rc=0
    Digesting previous history record #36
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060844E2100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cbcffc:7a94a020\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060844E2100\00"
    21 Title (len= 27) "Olivia Flores Presentation\00"
    30 Due Date (len= 9) "20120111\00"
    33 Priority (len= 2) "0\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 5) "-129\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "150000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 10) "Classroom\00"
    26 Start Date (len= 9) "20120111\00"
    27 Start Time (len= 7) "150000\00"
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=76100345
    TargetID Hash: TIH=1532eb
    KeyFields Hash: KFH=e2af3e6b
    NonKeyFields Hash: NKH=3a8d11f7
    Flags: F=82.0000
    TIFPutRecord/3 (item #36) ==> rc=0
    Digesting previous history record #37
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060A44D2100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cbcffc:7bfa4aa0\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060A44D2100\00"
    21 Title (len= 37) "Recruitment - last year's interested\00"
    30 Due Date (len= 9) "20121228\00"
    33 Priority (len= 2) "0\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 5) "-117\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "070000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 10) "Classroom\00"
    26 Start Date (len= 9) "20121228\00"
    27 Start Time (len= 7) "070000\00"
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=6a2b07af
    TargetID Hash: TIH=1532ca
    KeyFields Hash: KFH=ca55ddc3
    NonKeyFields Hash: NKH=15af8937
    Flags: F=82.0000
    TIFPutRecord/3 (item #37) ==> rc=0
    Digesting previous history record #38
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060844D2100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cbcffc:b6a906f0\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060844D2100\00"
    21 Title (len= 45) "Richard and Adrianna Johnson's Wedding Video\00"
    30 Due Date (len= 9) "20121216\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 5) "-113\00"
    _Delta (len= 2) "A\00"
    31 Due Time (len= 7) "070000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 18) "Important, Family\00"
    26 Start Date (len= 9) "20101216\00"
    27 Start Time (len= 7) "070000\00"
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=943239a6
    TargetID Hash: TIH=1532c6
    KeyFields Hash: KFH=63ece3e2
    NonKeyFields Hash: NKH=4b5ed5d
    Flags: F=82.0000
    TIFPutRecord/3 (item #38) ==> rc=0
    Digesting previous history record #39
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060644D2100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cccc9b:d3b42ee0\00"
    _Delta (len= 2) "C\00"
    _FolderID (len= 12) "-2010948102\00"
    _RecordID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060644D2100@a1c12ae9\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060644D2100\00"
    21 Title (len= 14) "Shopping List\00"
    22 Notes (len=1665) "\1fBbq sauce\1fHawaiian punch lemon berry squeeze\1falpine spiced apple cider\1f...ierecare.com\1fTrywen.com\1fLintlizard.com\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 4) "-99\00"
    _Delta (len= 2) "C\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 4) "$$$\00"
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=f2de7da4
    TargetID Hash: TIH=b00d
    KeyFields Hash: KFH=70c9969a
    NonKeyFields Hash: NKH=cb8f4505
    Flags: F=82.0000
    TIFPutRecord/3 (item #39) ==> rc=0
    Digesting previous history record #40
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106044432100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01ccccc5:f8039630\00"
    _Delta (len= 2) "C\00"
    _FolderID (len= 12) "-2010948102\00"
    _RecordID (len= 58) "00000000C3B28DB58F07784CB1E74729949F106044432100@a1c12ae9\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F106044432100\00"
    21 Title (len= 59) "Professional Growth 150 hours / 5 Years (Barbara Sign Off)\00"
    22 Notes (len= 61) "http://www.ctc.ca.gov/credentials/FAQ/faq-pg-designated.html\00"
    30 Due Date (len= 9) "20120114\00"
    33 Priority (len= 2) "0\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 4) "-98\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "070000\00"
    36 Alarm Flag (len= 2) "0\00"
    26 Start Date (len= 9) "20120114\00"
    27 Start Time (len= 7) "070000\00"
    _repBasic (len=144)
    rpt.type = Monthly by position (4)
    rpt.startDate = 1/13/2012 (40919)
    rpt.stopDate = Open-Ended (-1)
    freq=1, numDays=1, day=0, month=0
    dayOfWeek=7, weekOfMonth=2, days[0..6]=0000000
    months[0..11]=000000000000, weeks[0..4]=00000
    numExDates=0
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=51d05e13
    TargetID Hash: TIH=b00c
    KeyFields Hash: KFH=ad09e20f
    NonKeyFields Hash: NKH=64cfec0a
    Flags: F=40000082.0000
    TIFPutRecord/3 (item #40) ==> rc=0
    Digesting previous history record #41
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060444D2100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cccc9b:d02f74f0\00"
    _Delta (len= 2) "C\00"
    _FolderID (len= 12) "-2010948102\00"
    _RecordID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060444D2100@a1c12ae9\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060444D2100\00"
    21 Title (len= 6) "Music\00"
    22 Notes (len=4096) "\1fAfter All These Years\1f\1fRascal Flatts sequal to Broken Road\1f\1f*Bass Son...ods)\1f\1f*Song Writing\1fAdd familiar songs\00"
    33 Priority (len= 2) "1\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 4) "-95\00"
    _Delta (len= 2) "C\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 5) "Home\00"
    27 Start Time (len= 7) "103100\00"
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=518ac1a2
    TargetID Hash: TIH=b009
    KeyFields Hash: KFH=8a0bc2cb
    NonKeyFields Hash: NKH=5b2b7206
    Flags: F=82.0000
    TIFPutRecord/3 (item #41) ==> rc=0
    Digesting previous history record #42
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060244D2100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cbcffc:7a4d36e0\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060244D2100\00"
    21 Title (len= 24) "Credential follow up\e2\80\a6\00"
    22 Notes (len=145) "\1f------------\1fSubject:\09Credential follow up\e2\80\a6\1f\1fStart:\09Fri 8/15...Show Time As:\09Free\1f\1fRecurrence:\09(none)\00"
    30 Due Date (len= 9) "20120716\00"
    33 Priority (len= 2) "2\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 4) "-92\00"
    _Delta (len= 2) "A\00"
    31 Due Time (len= 7) "070000\00"
    36 Alarm Flag (len= 2) "0\00"
    26 Start Date (len= 9) "20120716\00"
    27 Start Time (len= 7) "070000\00"
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=b03705a0
    TargetID Hash: TIH=b006
    KeyFields Hash: KFH=bf722929
    NonKeyFields Hash: NKH=ac66c082
    Flags: F=82.0000
    TIFPutRecord/3 (item #42) ==> rc=0
    Digesting previous history record #43
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060044D2100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cbcffc:7c22e140\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060044D2100\00"
    21 Title (len= 21) "Update Camping Lists\00"
    22 Notes (len=180) "\1f------------\1fSubject:\09#3 - Update Camping Lists\1f\1fStart:\09Tue 8/12/200...none)\1f\1fCategories:\09General(Pj Johnson)\00"
    30 Due Date (len= 9) "20120512\00"
    33 Priority (len= 2) "2\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"
    _UniqueID (len= 4) "-90\00"
    _Delta (len= 2) "C\00"
    31 Due Time (len= 7) "070000\00"
    36 Alarm Flag (len= 2) "0\00"
    49 Categories (len= 16) "General(Pj John\00"
    26 Start Date (len= 9) "20120512\00"
    27 Start Time (len= 7) "070000\00"
    _subType (len= 2) "0\00"
    SourceID Hash: SIH=ee3499e
    TargetID Hash: TIH=b004
    KeyFields Hash: KFH=dd56f6d1
    NonKeyFields Hash: NKH=609bc296
    Flags: F=82.0000
    TIFPutRecord/3 (item #43) ==> rc=0
    Digesting previous history record #44
    _UniqueID (len= 58) "00000000C3B28DB58F07784CB1E74729949F1060E44C2100@a1c12ae9\00"
    p94_StoreIDHash (len= 9) "a1c12ae9\00"
    _FolderGroup (len= 2) "0\00"
    2068_TLM (len= 18) "01cc5161:419d30c0\00"
    _Delta (len= 2) "A\00"
    _FolderID (len= 12) "-2010948102\00"
    2069_EntryID (len= 49) "00000000C3B28DB58F07784CB1E74729949F1060E44C2100\00"
    21 Title (len= 29) "Unpack / Repack Camping Tote\00"
    22 Notes (len=223) "\1f------------\1fSubject:\09#2 - Unpack / Repack Camping Tote\1f\1fStart:\09Tue ...on)\1f\1fTongs\1fGarbage Bags\1fKitchen gloves\00"
    30 Due Date (len= 9) "20120512\00"
    33 Priority (len= 2) "2\00"
    37 Completed Flag (len= 2) "0\00"
    32 Status (len= 12) "Not Started\00"

    Hi pgov,
    Welcome to the BlackBerry Support Community.
    You should be able to see the last entry the synchronization stopped on at the bottom of your tif.log.
    This will be the entry causing the issue with the synchronization.
    You can identify if the issue with the entry is on your BlackBerry® Curve™ 9360 smartphone or in the calendar on your computer by checking the Source and Target fields in the tif.log.
    Once you locate this entry in your calendar, try copying down the information in the appointment so it can be re-added later, then delete the appointment as well as the tif.log and PTTrace.log files and try synchronizing again.
    You may have to do this more than once if more than one calendar entry is affected.
    Hope this helps.
    -FS
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click Solution? for posts that have solved your issue(s)!

  • How To Create A Website Background Video In Adobe Edge ?

    Hello,
    I have video file in my computer SSD drive and i want it to play as background on my web page (page that i am creating).I did try to follow this video:
    How To Create A Website Background Video In Adobe Edge Animate Using Edgehero - YouTube
    but i cant follow 100% what he is doing.
    Guide that i did try to follow is at this link: How To Create A Website Background Video In Adobe Edge Animate Using Edgehero - YouTube
    Steps i do in Adobe Edge Animate CC
    1.) Create New
    2.) i click + sign under section Library >> Scripts >> Add JS File from URL...
    URL that i am adding is: http://www.edgehero.com/edgehero.js/1.2/edgehero_1.2_min.js  (URL is taken from site: Edgehero.js )
    I add this link: http://www.edgehero.com/edgehero.js/1.2/edgehero_1.2_min.js to box that occures after i click on Add JS File from URL
    3.) I go to Edgehero.js and from there i scrol down to section named as Media - Html5 video / Html5 audio
    and i select from there this:
    there is a code:
      // this will set the video as background of the div/rectangle
    backgroundvideo_1 ='movie.mp4';
      // put new edgehero.js variables here
    4.) I go to Adobe Edge Animate CC 2014 and right click on project and select Open Actions for "Stage"
    and then i click on + sign and select creationComplete
    This will open Stage window
    there i will copy this code:
      // this will set the video as background of the div/rectangle
    backgroundvideo_1 ='movie.mp4';
      // put new edgehero.js variables here
    5.) Then i click on ++ sign under library >> Video
    and i add video from my computer SSD drive.
    Video is named as video3.mp4
    Now i eddit the code in Stage window (See above)
    code will look after editing like this:
    Then i change under left side px to %
    6.) Then i copy backgroundvideo_1 from Stage Code:
    Then i select Rectangle Tool and mark the area  (white box) and i click on small C icon
    And the box that occures i type there backgroundvideo_1_mp4 autoplay
    now when i use ctrl and enter i only get gray box that does not play video.
    What am i doing wrong?

    Here is the html file.
    Note video file that i try to add is random training video from youtube, And file format is saved using this site:
    How do I download and save a YouTube video to my computer?
    this is only for testing as i am not gonna put that video on background to my web page. I am only trying to understand how to add video as background.
    http://www.filedropper.com/test3_5
    http://www.filedropper.com/test3_6
    http://www.filedropper.com/test3edge
    http://www.filedropper.com/test3edgeactions
    http://www.filedropper.com/test3edgepreload
    Goal is to create background video like u can see here:
    Adobe Muse Tutorial - Responsive Design Hack! by MuseThemes.com - YouTube
    Similar possibility is available also in Edge as i understand?

  • How do i block website from my macbook pro

    how do i block website from my macbook pro?

    It's an very old and simple question! There are two ways that you can use to block websites on your Macbook Pro:
    1. Enable the Parental Control on your Macbook Pro, choose the app you don't want your kids to use.
    2. Install the Internet filter software for Mac that can help you block any unwanted websites automatically.

  • How to get a professional certificate for Adobe After Effects?

    To Whom It May Concern,
    My name is Ariff and i live in Malaysia. I would like to know how and where to get certificate for All Adobe Illustrator, Photoshop and After Effects? etc How to be an officially trainer to students
    Sincerely
    Ariff.

    Hi Ariff,
    you will find the informations there: Adobe Certified Expert Training | Adobe Training & Certification
    maybe of interest Adobe's German website with the four steps: Adobe - Support: Lassen Sie sich noch heute zertifizieren und zum ACE ausbilden and
    Adobe - Support: Adobe Certified Instructor (ACI) I didn't find the adaequate websites in English language.
    Hans-Günter

Maybe you are looking for

  • How to add a new row in Tabular Form based on a table

    Hi I have tabular form based on a table. I want the table to have an empty row when there is no data in the table so that I can enter data directly. But right now whenever the page is launched, its showing a no data found message and I have to press

  • Hazel can no longer find new purchases?

    I have been using Hazel to copy purchased music from iTunes store to a directory on my NAS. I am using Lion and itunes 10.5.2. - just updated itunes.  All had been working well until the update. It would appear that itunes is no longer placing purcha

  • Minis spin at restart or shut down

    I have 3 minis that just spin when you hit restart or shut down. You have to hard reboot... the old firmware update I found is not needed on that computer according to the computer. Running 10.4.11 on all. Any ideas?

  • Freezing and "Rainbow Ball" Issues

    Hello everyone! I would love some troubleshooting help with this. Last week I was using safari (and firefox) when safari froze up. I tried to force quit, but realized finder had frozen as well, so I had to hard re-start. Once I got my computer starte

  • Adobe Acrobat X Version 10.1.0 Edit Document Text tool not working

    Hi Adobe People I am suing Adobe Acrobat X Version 10.1.0. I have a document open and I would like to delete a sentence. So I click on tools and navigate to Edit Document Text. I highlight the sentence I would like to delete. I press delete and nothi