RBScript plugin size

A client asked today why his RAL Studio application got so big.

The reason was (this time) not my plugin, but RBScript. For Mac OS X Intel, the plugin adds 958 KB to your application. With REAL Studio 2010r3 and newer REAL Software switched to LLVM which increases the plugin size to 10.5 MB.

If you care for download size of your application and you need RBScript, you may want to keep with older version.
It's the same decision people do when they use REAL Studio versions before 2008r2 to build Windows applications to avoid the libs folder.

End of PowerPC support coming

As you can read on AppleInsider, the PPC support seems to go away from Mac OS X 10.7. I don't expect Apple to ship Xcode with PPC support for Lion.

This means that once I move to Mac OS X 10.7 for developing plugins, I will drop PowerPC support. That will likely be as soon as the GM version is available (maybe two weeks before official launch). Whether Mac OS X 10.4 support has to end the same day, depends on whether I can configure compilers to output plugin libraries which still load on Tiger.

New magazine c't special Mac & i with REAL Studio Personal license on CD

On Saturday 26th February, you can find the new magazine Mac & i on kiosks. As the magazine is in German, expect it only on places where you can buy German speaking newspapers and magazines. Included on this issue is a CD with 27 applications. And one of them is REAL Studio. You get a free personal edition license as well as a three month web edition demo license. A perfect gift for people who want to start with REAL Studio development.

I'm not affiliated with heise, but I think this is great: First to have a new Mac related magazine and second to have REAL Studio promoted.

see: c't special Mac & i ab sofort bestellbar

Hotels for REAL Studio Conference in Essen

I got a notice that there are two Holiday Inns. Well, the one I'm staying it is the Holiday Inn in Frohnhauser Straße 6. The other Holiday Inn Express is located in Thea-Leymann-Straße 11. I think the express one is cheaper, but you have 200 meter more to walk to the conference.

There a list of hotels near our conference:
  • Hotel Lindenhof, 250m
  • Holiday Inn Essen City Centre Hotel, 350m
  • Ambassador City Hotel, 400m.
  • Hotel Zum Deutschen Haus, 450m
  • Hotel Europa, 550m
  • Hotel Korn, 600m
  • Holiday Inn Express Hotel Essen, 700m

REAL Studio Event in Japan

REAL Studio event in Osaka, March 26 (Saturday) 10:00 to 16:00, and Training Center, Osaka.

Take the chance (if you live in Japan or surrounding countries) to learn more about REAL Studio, the Web Edition and connect to developers in your area.

Climate Neutral Hosting

We host our websites with domainfactory and their hosting is climate neutral :-)
That means they pay for climate certificates for projects which save the same amount of carbon dioxide as they produce for their hosting.

PS: Monkeybread Software itself runs with green power.

News on REAL Studio Conference in Essen; Germany

Location is the Unperfekthaus. The website can be switched to english, so take a look. We are in room 154 there and we may also have a dedicated extra room for extra sessions as well as reserved cafeteria area.

Next to the Unperfekthaus is the mall Limbecker Platz as well as the central shopping streets of Essen. There are a few central hotels nearby. My preference is the Holiday Inn Hotel Essen City Centre, but there are other good locations. You can easily walk from the main station to the conference location and this hotel.

We already got first registrations, so we know that people from four European countries will be there. With those visitors and three english only speakers on our list currently, we may turn to do everything in english. But we'll see.

Registration is open. Schedule should be only later this week: realsoftware.de/events/realcon2011essen

Me on TV


I hope you all watched it :-)
See the picture above from my attendance in the audience of RTL 2 Funclub aired today.

Studio Stable Database works with our SQLite Extension

The Studio Stable Database Server is a database server for REAL Studio. It's written in REAL Studio itself and uses REALSQLDatabase on the server. So basically turning a server interface over SQLite and the same as REALserver was. But the backend as well as the interface is both written in REALbasic instead of C/C++.
Today I tested it. I can install my SQLite extension by simply copying the extension file into the extensions folder. Once that is done, I can use the SQL commands and enjoy my functions.
See this example code which connects to a local server and performs the UsernameMBS function:
  Sub Open()
dim address as string = "127.0.0.1"
dim port as integer = 3100
dim applicationName as string = "TestApp"
dim password as string = "test" // this is the server password.

// connect to SSD Server
dim ssdb as new SSDatabase(address, port, applicationName, password, false)
if ssdb.Connect then

// run a function
dim r as SSRecordSet = ssdb.SQLSelect("select UserNameMBS()")

if r<>nil then
// show result of function
MsgBox r.IdxField(1).StringValue
else
MsgBox ssdb.errorMessage
end if
else
MsgBox ssdb.errorMessage
end if
End
More information here: studiostable.com/Database.
PS: There is a special offer available this week (until 27th February) for the license with source code. Maybe a good chance?
With source code you can modify the whole server to your needs.

On TV today

Two weeks ago we did take part in a TV show recording sitting in the audience. So if you see me in the second row next to my buddy Jochen.
The TV show is "Fun Club - Comedystars liveShow / Comedy", today 22:30 o'clock on RTL II here in Germany.
I'll post pictures later tonight :-)

REAL Studio Developer Magazine's President's Day One-Day Sale!

REAL Studio Developer Magazine is having a special one-day sale. On President's Day (Monday, February 21, 2011), all orders over $25 are 20% off!

We're keeping this simple, with no gimmicks or absurd limitations. The 20% discount is valid for all our products: subscriptions, back issues, printed books, CDs, even renewals! For instance, it's a great way to pick up a copy of RBD Archive 8 at a big discount. But this coupon is only good on February 21, 2011, so hurry to take advantage of our President's Day sale!

To get the discount, just use the coupon code PREZDAY when placing your order on our store:

http://www.rsdeveloper.com/orders.shtml

If you have any questions about this offer, please let me know.

Marc Zeedar
Publisher
REAL Studio Developer

Omegabundle ends today

Don't miss it. Last chance: www.omegabundle.com

Added a facebook profile

see facebook.com. Still confusing. I tried 3 times to get a business account now and on the end I made a personal one...
You are welcome to add me as friend or like me :-)
I also added events for the two REAL Studio conferences.

Atlanta REAL Studio Users Group - February 21st, 2011

Who: Everyone interested in developing in REAL Studio
What: Monthly Meeting
Where: Ippolito's Restaurant, Sandy Springs, GA
When: February 21st, 2011 - 6pm to 9pm
Why: Talk about the latest news including the release of REAL Studio Web Edition!

As always, first pizza is on me!

Click here for a map to Ippolito's
(from Kevin Cully)

MBS REALbasic Plugins, version 11.1pr4

New in this prerelease of the 11.1 plugins:
  • DynaPDF Plugin now compiled with DynaPDF 3.0. The API is nearly the same except some cleanup we made and a couple of new functions.
  • Updated DynaPDF 2 Plugin to version dynapdf 2.5.4.558. (DynaPDF 2 plugin is available as separated download.)
  • Updated DynaPDF 3 Plugin to version dynapdf 3.0.0.1.
  • Fixed RemoveWindowProxyIconMBS and WindowProxyIconFileMBS for Cocoa targets.
  • Fixed crash in PhidgetManagerMBS destructor.
  • Fixed WinLocalizationMBS properties to be now console safe.
  • Added CloseForString and CreateForString to GZipFileMBS class.
  • Added StrMBS function.
  • Added BeginTransparencyLayer, BeginTransparencyLayerWithRect and EndTransparencyLayer to CGContextMBS class.
  • Removed DynaPDFMissingFunctionExceptionMBS and DynaPDFErrorExceptionMBS classes. Please implement the error event like in our examples.
  • Renamed DynapdfPDFAnnotationExMBS to DynaPDFAnnotationExMBS.
  • Renamed DynapdfPDFChoiceValueMBS to DynaPDFChoiceValueMBS.
  • Renamed DynapdfPDFFieldExMBS to DynaPDFFieldExMBS.
  • Renamed DynapdfPDFFieldMBS to DynaPDFFieldMBS.
  • Renamed DynapdfPDFNamedDestMBS to DynaPDFNamedDestMBS.
  • Renamed DynapdfPDFStackMBS to DynaPDFStackMBS.
  • Renamed DynapdfPDFSigParmsMBS to DynaPDFSigParmsMBS.
  • Removed DynapdfPDFRectMBS. We now use only one rect class: DynaPDFRectMBS
  • Added DynaPDFStackMBS Font property to return DynaPDFFontMBS object (instead of old IFont handle property).
  • Changed SetFillColor and SetStrokeColor events in DynaPDFParseInterfaceMBS class to include the color space object.
  • Added BeginLayer and EndLayer events to DynaPDFParseInterfaceMBS class.
  • Added DynaPDFNamedDestMBS.DestFile property.
  • Added DynaPDFErrorMBS class.
  • Added DynaPDFRectMBS Constructor.
  • Fixed DynaPDFFieldExMBS.BBox to return a DynaPDFRectMBS.
  • Added Barcode and Signature properties to DynaPDFFieldExMBS class.
  • Changed/Added a few properties on DynaPDFImageMBS class.
  • Changed GetFontEx, GetField, GetFieldEx and GetColorSpaceObj to have index parameter in DynaPDFMBS class.
  • Added GetInFieldCount, GetNamedDest and GetNamedDestCount to DynaPDFMBS class.
  • Added DynaPDFBarcodeMBS class.
  • Added DynaPDFSigDictMBS class.
  • Removed IMixingHints and ProcessColorSpaceHandle from DynaPDFDeviceNAttributesMBS class.
  • Changed DynaPDFDeviceNAttributesMBS.Separations to return DynaPDFColorSpaceMBS objects.
  • Added DeviceNAttributes property to DynaPDFColorSpaceMBS class.
  • Renamed Alternate in DynaPDFColorSpaceMBS class to AlternateType.
  • Removed AlternateHandle property and added Alternate property to DynaPDFColorSpaceMBS class to get a colorspace object directly.
  • Added DynaPDFMBS.HaveOpenPage.
  • Added new constants for DynaPDFMBS: katMovieAnnot, katPrinterMark, katProjection, katRichMedia, katRichMediaExec, katScreen, katTrapNet, kcivCustom, kdfCrypt, kdiCreationDate, kdiModDate, kdiPDFX_Conf, kfaiUserDefined, kfpfImagesOnly, knaUserDef, ktoAnnots and ktoFields.
Download: macsw.de/plugin/Prerelease

DynaPDF 3.0 Beta 1 coming

We are happy to announce that the beta tests of DynaPDF 3.0 start this weekend.

The new version offers a new, very robust and fully PDF 1.7, Extension Level 5 compatible PDF parser that is also able to repair damaged PDF files. In the today's world, with the huge amount of available PDF libraries, it is more and more important to be able to read damaged PDF files. Therefore, DynaPDF 3.0 contains now very powerful repair capabilities which are applied in background. Minor issues and repairs will be reported to the new error log.

The new PDF parser does not allocate large memory blocks and only compressed objects are hold in memory. In addition, it reads only required parts of a file to enable high performance access to single pages of very large PDF files. The access time to single pages does practically no longer depend on the file size. For example, the required processing time to extract one page from a PDF file that contains about 200.000 pages is now just a few milliseconds. DynaPDF 2.5 required about two minutes on a fast system, as long as the file did not already produce an out of memory exception!

Beside the new PDF parser DynaPDF 3.0 contains many improvements in detail such as support for images with an alpha channel, layer handling when parsing PDF files, better form handling, and, and, and...

With exception of two functions DynaPDF 3.0 is fully backward compatible. Your existing applications should work without changes in the source codes.

We are now already one months behind the originally planned release date and the current beta release does not yet contain the promised rendering capabilities. About four till six weeks development time are still required before the rendering functions can be released. So, the final release is now planned for April.

Please test your applications carefully with the new version and report ALL errors that you can find.

PS: Learn more about DynaPDF 3.0 on the REAL Studio conference in Essen, Germany...

REAL Studio Conference in Essen/Germany: "realcon2011"

Can't make it to Atlanta? Maybe the REAL Studio Conference in Essen, Germany is closer to home. Starting with a casual get-together evening event on May 20th, sessions at "realcon2011" will be presented in German and English on May 21st and May 22nd

The sociable and vibrant town, European Capital of Culture in 2010, in the heart of the Ruhr region offers an ideal setting for two informative and communicative days pivoting around REAL Studio, the brand-new Web Edition and many more interesting topics. We already have participants and speakers registered from the entire German-speaking region, as well as from neighbouring European countries.

Keep an eye on the MBS Blog or mailing lists for updates on the conference.
Registration form and more information are available here:

www.realsoftware.de/events/realcon2011essen

San Diego, CA or Southern California REAL Studio User Group or casual meetup?

if you are from that area, please post to the REAL Studio Forum.

MBS Filemaker Plugin, version 2.3pr4

New in this prerelease of the 2.3 plugins:
  • Fixed linking bug with libcrypto so the plugin loads again on Mac OS X 10.4 and 10.5.
  • Added Window.ShowOverlay and Window.HideOverlay.
  • Added Window.AsPDF function.
  • Added WebView.SearchText.
Download: monkeybreadsoftware.de/filemaker/files/

Atlanta REAL Studio Summit 2011

Two good news.

First I'm happy that we can meet Marc Zeedar there. Marc runs the REAL Studio Developer Magazine for eight years now and I really like the magazine. If you come to Atlanta, you have the chance to get the yearly books there cheaper. At least without shipping cost. Just tell him what you'd like and he can take it with him to Georgia.

Second news is that I heard that the numbers are looking good and we have more people there than in Boulder, CO two years ago. :-)

You can still sign up: arbpmembers.org/real-studio-summit-2011

Omega Bundle Extended

We extended the Omega Bundle to the 20th February in hope that everyone who wants to get it, has a chance to place his order.
A few quotes form our survey:
  • “The top two items on my wish list alone would sum up higher than this bundle, so it was a no-brainer. Plus I get a lot more valuable items than I ever dreamed of. Thank you for this excellent offer!!!” (Oliver Lannert)
  • “I found out about the bundle when I was deciding to purchase realstudio. And the omegabundle 2011 just made that decision easier. I found the articles in RS developer magazine very useful to jumpstart me into this exciting world of realstudio programming. In under 2 weeks, I completed my first app which I just submitted to the Mac App Store. In this app, I used a number of components from the omegabundle like the Aspen icon set, mbs complete, elastic window and rb code report. Subsequent apps that I would work with would include a database portion which I would use Valentina adk.” (Edwin Lau)
  • “Get that kind of tools for a price like that is the best buy of the year! It also get You on the track with Real Basic Studio. What I like to see is articles where one or more tools are part of the solutions. As it is now, You may forget or even don't really understand the real power of all products.” (Dennis Wallentin)
  • “This was probably one of the best bundles I have seen in a long time for any software. This bundle hit on a lot of key items I have been looking at for awhile. Well done.” (tnofing1)
  • “I've been wanting to get the MBS Plugins and FTC for a while now. The addition of the Valentina products and the RS Developer Magazine made this purchase too easy. The other stuff looks cool to play with too.” (Tony Brongo)
  • “Great thing as the RS Developer magazine extends my subscription.” (Aernoud Boer)

REAL Software Welcomes New Engineer

Welcome Greg O'Lone!

See article on REAL Software Blog

So we have now four REAL Software engineers on the Atlanta REAL Studio Summit: Geoff Perlman, Thom McGrath, Greg O'Lone and Norman Palardy. And maybe you?

A special chart with our MBS REALbasic ChartDirector Plugin

Today a client asked for how to make a chart with some special features. It looks like this:

We have Y axis hidden, white lines, a wonderful gradient for the background and the data points hit the border of the chart. Actually we have two line layers and two scatter layers for the data points. If you want to have the points above the lines, you need to move the addScatterLayer lines above the addLineLayer lines as the chart is build from front to back. Here is the source code: (more)

New Feedback Cases for Web Apps

Did you see my quote on the last newsletter? I've been using Web Apps a lot and got quite a few things working. But I also found a lot of issues. Maybe you want to sign on, add your comment and put those in your favorites:
  • #15919: shiftkey is NULL or no object: Crashes web app on IE8 when clicking on listbox.
  • #15917: Focus not set on textfield if was just enabled: Shows Javascript error dialog on IE8. Fails silently on Safari.
  • #15918: WebListbox row height not correct. Can't get rows smaller.
  • #15776: Performance slowdown with RS 2010r5.1 on webapps (compared to RS 2010r5)
  • #15921: old push urls crash web app.

Over 10 years with iDisk

Is that already 10 years since I signed up? First it was free, later I paid for it. Now it's named MobileMe.
I'm still using the disc space (good to have 20 GB extra on another server for file downloads). Also synchronization between Macs for my calendars and contacts is a must. And of course when traveling and you have to send an email and none of my Macs (or iDevices) nearby, the me.com login is easy to remember.

Congratulations Apple!


Warning of the day: Never mess up libcrypto

Do never, never and never change libcrypto library files.
On Mac OS X if you move them out of the lib folder, overwrite with some other version or somehow else destroy them, you are lost.
Nearly no application will launch. Finder can't copy files any more as all the authorization stuff won't work.
Terminal will not be able to use sudo or su commands. VMWare will crash on startup.

Solution: Target disc mode and fix from other Mac.

so don't replace files in /usr/lib.

Update on live chat

Our live chat feature is working just fine.
Here a screenshot from a day last week with 18 people online :-)
The best way for a quick chat.

Do not hesitate to contact us if you have a question.


Update on Omega Bundle

Some people asked what they get with Omega Bundle (over $3200 worth of REAL Studio add-ons for just $399 until 14th February 2011), so we have this articles to give you an overview:Also we include now an 11th item: Everyone who bought the bundle and filled a survey, will receive the new Aspen DB Icon Set, which adds an additional 47 icons (a $99 value).

Also of interest to bundle purchasers, Paradigma Software has released iValentina for iOS (iPhone and iPad), a pair of apps for the Apple mobile devices that allow remote database users to work with Valentina Office Server, which is included with the Omegabundle 2011 for REAL Studio.

Fast trains

Recently I read this article in the daily: Bad news travels fast - Beware the high-speed rail boondoggle. It's amazing that USA doesn't really have a fast railway network.
Recently I made this picture on an ICE train:


Actually it was 243 km/h, but until I had my iPhone out to take the picture, it went down to 233 as we were approaching the next station. This train drives regularly with 280 km/h which is 170 miles per hour.
Even as you can drive that fast legally on highways in Germany, using the train can be very comfortable. You can surf the web, watch video or have your dinner in the train.
So if you plan to build high speed railroad in the US, why not connect places like Chicago and Atlanta with a train going so fast that a race between two persons going from one city to the other, the one taking the train arrives faster than the other taking the airplane? And not an 80 miles railroad described in the article above.
Just my 0.02 cents...

MBS REALbasic Plugins, version 11.1pr3

New in this prerelease of the 11.1 plugins:
  • Added NSHTTPCookieMBS and NSHTTPCookieStorageMBS classes.
  • Updated to SQLAPI++ 3.7.35.
  • Added Picture GetMaskMBS function for leak testing.
  • Added gworld state saving to NSSavePanelMBS and CustomNSViewMBS classes events for the case you use QuickDraw picture functions in order to avoid crashes.
  • Added unregisterDraggedTypes and registerForDraggedTypes to NSWindowMBS class.
  • Added unregisterDraggedTypes, registerForDraggedTypes, registeredDraggedTypes to NSViewMBS class.
  • Added NSSecureTextFieldMBS class.
  • Added NSSearchFieldMBS class.
  • Added NSControlMBS.cell
  • Added SecureDongleXMBS module.
  • Fixed memory leak in GetMBfromPictureMBS.
Download: macsw.de/plugin/Prerelease

Improved Search

Today I improved the search fields on our websites on the left. It now searches mbsplugins.de (this blog), monkeybreadsoftware.de (our main page) and monkeybreadsoftware.net (documentation).
Enjoy!

Bonus Icons for Omega Bundle

The Omage Bundle 2011 has been an overwhelming success. It's still time for you until 14th February 2011 to order your copy. And as a bonus to new and existing bundle customers, we have an extra Icon set and three articles to read:

We'd like your feedback on the products. There is a very, very short survey we would like you to complete. We estimate it will take less than 5 minutes to complete. This survey is only by invitation and only open to purchasers of this bundle.

Oh yes - we aren't holding a raffle or drawing on this one - EVERYONE who participates will get a special Aspen DB Icon Set bundle of icons, currently in production and slated to ship February 14, 2011. This extends the Aspen Icon Set you received as a part of the bundle with 47 additional icons specifically for working with data - perfect for use with Valentina or any other database! This Icon Set has a USSRP price of $99 - yours for free.

Also, don't forget to read new, informative articles on your purchase:

10 Things you Can Do with MBS Complete <<- just added!
http://www.omegabundle.com/10-things-you-can-do-with-mbs-complete

10 Hottest Features of Valentina Office Server
http://www.omegabundle.com/10-hot-features-of-valentina-office-server

iValentina for iPhone, iPad for FREE (use with Valentina Office Server)
http://www.omegabundle.com/ivalentina-for-iphone-ipad-available-now-free

REAL Software dropping FastCGI on Web Edition in favor of CGI

read the full story on the REAL Software Blog

Five Feedback reports around obfuscation

REAL Studio developers with big projects worth several $10000 of resources time spent for development ask for obfuscation. That's the reason we have the obfuscation tool included with our plugins. If you don't know it, check this video. But there are more things people like to hide. So I wrote today (after a long discussion with one of this clients) this cases:
  • #15748: Add option to build process to obfuscate plugin names
  • #15752: Optionally embed resources in executable binary
  • #15751: Add compiler option to obfuscate strings in binary.
  • #15749: Add option to build process to obfuscate framework library
  • #15750: Add function to lookup control's javascript ID
As you see I included one to deobfuscate for Web Edition. That's useful for everyday debugging and looking on the html code.

Updated Session List for Real Studio Summit 2011

See yourself:
arbpmembers.org/real-studio-summit-2011/sessionspeaker-listing

It's still possible to register for the REAL Studio Summit 2011 and meet people from all over the world.

MBS REALbasic Plugins, version 11.1pr2

New in this prerelease of the 11.1 plugins:
  • Added HIconFromFileMBS and HIconFromPicturesMBS functions.
  • Fixed crash in JSONMBS.FindFirstLabel.
  • Fixed PhidgetSpatialMBS.setCompassCorrectionParameters method.
  • Fixed PhidgetSpatialMBS.SpatialData event bug.
  • Updated DynaPDF to version 2.5.4.556.
Download: macsw.de/plugin/Prerelease

REAL Studio Developer Magazine

You want them all?

You can have them with the Omega Bundle: 50 back issues of the REAL Studio Developer Magazine and a full year subscription.



Congratulation to Marc Zeedar for 50 issues in eight years. And always more up to date than any REAL Studio related book.

Speak Script for iChat

With using olark for chat on the website, I get a lot of chats. Now I used to have text invitations spoken by my Mac. But with every chat from my websites, I get a lot of text about the person asking. For example the URL the person is visiting and I don't like this to be spoken. So this script can be used for iChat to speak only chats from AIM or Bonjour, but not over Jabber:


using terms from application "iChat"

on received text invitation theText from theBuddy for theChat

set theService to service of theChat

set theType to service type of theService

if (theType = Jabber) then

-- do nothing

else

say theText

end if

end received text invitation

end using terms from


Archives

Mar 2024
Feb 2024
Jan 2024
Dec 2023
Nov 2023
Oct 2023
Sep 2023
Aug 2023
Jul 2023
Jun 2023
May 2023
Apr 2023
Mar 2023
Feb 2023
Jan 2023
Dec 2022
Nov 2022
Oct 2022
Sep 2022
Aug 2022
Jul 2022
Jun 2022
May 2022
Apr 2022
Mar 2022
Feb 2022
Jan 2022
Dec 2021
Nov 2021
Oct 2021
Sep 2021
Aug 2021
Jul 2021
Jun 2021
May 2021
Apr 2021
Mar 2021
Feb 2021
Jan 2021
Dec 2020
Nov 2020
Oct 2020
Sep 2020
Aug 2020
Jul 2020
Jun 2020
May 2020
Apr 2020
Mar 2020
Feb 2020
Jan 2020
Dec 2019
Nov 2019
Oct 2019
Sep 2019
Aug 2019
Jul 2019
Jun 2019
May 2019
Apr 2019
Mar 2019
Feb 2019
Jan 2019
Dec 2018
Nov 2018
Oct 2018
Sep 2018
Aug 2018
Jul 2018
Jun 2018
May 2018
Apr 2018
Mar 2018
Feb 2018
Jan 2018
Dec 2017
Nov 2017
Oct 2017
Sep 2017
Aug 2017
Jul 2017
Jun 2017
May 2017
Apr 2017
Mar 2017
Feb 2017
Jan 2017
Dec 2016
Nov 2016
Oct 2016
Sep 2016
Aug 2016
Jul 2016
Jun 2016
May 2016
Apr 2016
Mar 2016
Feb 2016
Jan 2016
Dec 2015
Nov 2015
Oct 2015
Sep 2015
Aug 2015
Jul 2015
Jun 2015
May 2015
Apr 2015
Mar 2015
Feb 2015
Jan 2015
Dec 2014
Nov 2014
Oct 2014
Sep 2014
Aug 2014
Jul 2014
Jun 2014
May 2014
Apr 2014
Mar 2014
Feb 2014
Jan 2014
Dec 2013
Nov 2013
Oct 2013
Sep 2013
Aug 2013
Jul 2013
Jun 2013
May 2013
Apr 2013
Mar 2013
Feb 2013
Jan 2013
Dec 2012
Nov 2012
Oct 2012
Sep 2012
Aug 2012
Jul 2012
Jun 2012
May 2012
Apr 2012
Mar 2012
Feb 2012
Jan 2012
Dec 2011
Nov 2011
Oct 2011
Sep 2011
Aug 2011
Jul 2011
Jun 2011
May 2011
Apr 2011
Mar 2011
Feb 2011
Jan 2011
Dec 2010
Nov 2010
Oct 2010
Sep 2010
Aug 2010
Jul 2010
Jun 2010
May 2010
Apr 2010
Mar 2010
Feb 2010
Jan 2010
Dec 2009
Nov 2009
Oct 2009
Sep 2009
Aug 2009
Jul 2009
Apr 2009
Mar 2009
Feb 2009
Dec 2008
Nov 2008
Oct 2008
Aug 2008
May 2008
Apr 2008
Mar 2008
Feb 2008