diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index bb89fbf8f6..d22cfa645f 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -1,4 +1,6 @@ 7.10.24 + - fixed #12318: asset error causes asset manager to fail + - fixed #12308: error message used scalar as reference - fixed #12256: Calendar Search doesn't show admin controls - fixed #12268: Point of sale form missing from cart screen. - fixed #12201: AssetReport - no selects. @@ -7,6 +9,10 @@ - fixed Passive Analytics, UI, Progress Bar, server load. - fixed #12303: Survey custom multiple choice question types - fixed #12304: Surven packages do not include custom question types + - fixed #12309: Some child assets ignore visitor cache timeouts + - fixed possible values and default values on EMS submission. + - fixed #12312: Shop account plugin has unrendered macro + - fixed #12315: Remove yui tests from git repo. 7.10.23 - fixed #12225: Stock asset, multiple instances on a page diff --git a/docs/gotcha.txt b/docs/gotcha.txt index d3fa68268a..3a04b742c7 100644 --- a/docs/gotcha.txt +++ b/docs/gotcha.txt @@ -38,6 +38,12 @@ save you many hours of grief. * Support for server-side spell checking in the Rich Editor TinyMCE has been removed. +7.10.24 +-------------------------------------------------------------------- + * WebGUI now depends on Business::OnlinePayment::AuthorizeNet. This version + should install automatically via the testEnvironment.pl script, or the + perl-standard CPAN module. + 7.10.23 -------------------------------------------------------------------- * The default_search2 template had a bad template attachment pointing to diff --git a/docs/upgrades/packages-7.10.24/default-shopping-cart-template.wgpkg b/docs/upgrades/packages-7.10.24/default-shopping-cart-template.wgpkg new file mode 100644 index 0000000000..96233d0a49 Binary files /dev/null and b/docs/upgrades/packages-7.10.24/default-shopping-cart-template.wgpkg differ diff --git a/docs/upgrades/packages-7.10.24/root_import_calendar-templates_default-calendar-search.wgpkg b/docs/upgrades/packages-7.10.24/root_import_calendar-templates_default-calendar-search.wgpkg new file mode 100644 index 0000000000..085d16cea0 Binary files /dev/null and b/docs/upgrades/packages-7.10.24/root_import_calendar-templates_default-calendar-search.wgpkg differ diff --git a/docs/upgrades/packages-7.10.24/shopping-cart-collateral-items.wgpkg b/docs/upgrades/packages-7.10.24/shopping-cart-collateral-items.wgpkg new file mode 100644 index 0000000000..8eee31d695 Binary files /dev/null and b/docs/upgrades/packages-7.10.24/shopping-cart-collateral-items.wgpkg differ diff --git a/docs/upgrades/upgrade_7.10.23-7.10.24.pl b/docs/upgrades/upgrade_7.10.23-7.10.24.pl new file mode 100644 index 0000000000..021db97f96 --- /dev/null +++ b/docs/upgrades/upgrade_7.10.23-7.10.24.pl @@ -0,0 +1,183 @@ +#!/usr/bin/env perl + +#------------------------------------------------------------------- +# WebGUI is Copyright 2001-2009 Plain Black Corporation. +#------------------------------------------------------------------- +# Please read the legal notices (docs/legal.txt) and the license +# (docs/license.txt) that came with this distribution before using +# this software. +#------------------------------------------------------------------- +# http://www.plainblack.com info@plainblack.com +#------------------------------------------------------------------- + +our ($webguiRoot); + +BEGIN { + $webguiRoot = "../.."; + unshift (@INC, $webguiRoot."/lib"); +} + +use strict; +use Getopt::Long; +use WebGUI::Session; +use WebGUI::Storage; +use WebGUI::Asset; + + +my $toVersion = '7.10.24'; +my $quiet; # this line required + + +my $session = start(); # this line required + +# upgrade functions go here +addPALastLogTable($session); +addForkRedirect($session); +extendBucketName($session); +fixSurveyQuestionTypes($session); + +finish($session); # this line required + + +#---------------------------------------------------------------------------- +# Describe what our function does +sub addPALastLogTable { + my $session = shift; + print "\tAdd a table to keep track of additional Passive Analytics data... " unless $quiet; + # and here's our code + $session->db->write(<db->write(<db->write(<db->write(<createTemp( $session ); + $storage->addFileFromFilesystem( $file ); + + # Import the package into the import node + my $package = eval { + my $node = WebGUI::Asset->getImportNode($session); + $node->importPackage( $storage, { + overwriteLatest => 1, + clearPackageFlag => 1, + setDefaultTemplate => 1, + } ); + }; + + if ($package eq 'corrupt') { + die "Corrupt package found in $file. Stopping upgrade.\n"; + } + if ($@ || !defined $package) { + die "Error during package import on $file: $@\nStopping upgrade\n."; + } + + return; +} + +#------------------------------------------------- +sub start { + my $configFile; + $|=1; #disable output buffering + GetOptions( + 'configFile=s'=>\$configFile, + 'quiet'=>\$quiet + ); + my $session = WebGUI::Session->open($webguiRoot,$configFile); + $session->user({userId=>3}); + my $versionTag = WebGUI::VersionTag->getWorking($session); + $versionTag->set({name=>"Upgrade to ".$toVersion}); + return $session; +} + +#------------------------------------------------- +sub finish { + my $session = shift; + updateTemplates($session); + my $versionTag = WebGUI::VersionTag->getWorking($session); + $versionTag->commit; + $session->db->write("insert into webguiVersion values (".$session->db->quote($toVersion).",'upgrade',".time().")"); + $session->close(); +} + +#------------------------------------------------- +sub updateTemplates { + my $session = shift; + return undef unless (-d "packages-".$toVersion); + print "\tUpdating packages.\n" unless ($quiet); + opendir(DIR,"packages-".$toVersion); + my @files = readdir(DIR); + closedir(DIR); + my $newFolder = undef; + foreach my $file (@files) { + next unless ($file =~ /\.wgpkg$/); + # Fix the filename to include a path + $file = "packages-" . $toVersion . "/" . $file; + addPackage( $session, $file ); + } +} + +#vim:ft=perl diff --git a/lib/WebGUI/Asset/EMSSubmission.pm b/lib/WebGUI/Asset/EMSSubmission.pm index edb9a20e90..7a287b62d3 100644 --- a/lib/WebGUI/Asset/EMSSubmission.pm +++ b/lib/WebGUI/Asset/EMSSubmission.pm @@ -391,6 +391,8 @@ sub www_editSubmission { $fields->{$fieldId}{fieldType} = $metaField->{dataType}; $fields->{$fieldId}{name} = $fieldId; $fields->{$fieldId}{value} = $self->get($fieldId) if $self; + $fields->{$fieldId}{options} = $metaField->{possibleValues}; + $fields->{$fieldId}{defaultValue} = $metaField->{defaultValues}; } } diff --git a/lib/WebGUI/Asset/Template.pm b/lib/WebGUI/Asset/Template.pm index 546deff221..4943d2b2b2 100644 --- a/lib/WebGUI/Asset/Template.pm +++ b/lib/WebGUI/Asset/Template.pm @@ -731,9 +731,10 @@ sub process { my $output; eval { $output = $parser->process($template, $self->param); }; if (my $e = Exception::Class->caught) { - $session->log->error(sprintf "Error processing template: %s, %s, %s", $self->getUrl, $self->getId, $e->error); + my $message = ref $e ? $e->error : $e; + $session->log->error(sprintf "Error processing template: %s, %s, %s", $self->getUrl, $self->getId, $message); my $i18n = WebGUI::International->new($session, 'Asset_Template'); - $output = sprintf $i18n->get('template error').$e->error, $self->getUrl, $self->getId; + $output = sprintf $i18n->get('template error').$message, $self->getUrl, $self->getId; } # Process the style template diff --git a/lib/WebGUI/Asset/Wobject/Calendar.pm b/lib/WebGUI/Asset/Wobject/Calendar.pm index b91da1596f..b93270115f 100644 --- a/lib/WebGUI/Asset/Wobject/Calendar.pm +++ b/lib/WebGUI/Asset/Wobject/Calendar.pm @@ -1126,7 +1126,7 @@ sub viewList { ); ### Build the event vars - my $dtLast = $dtStart; # The DateTime of the last event + my $dtLast = WebGUI::DateTime->new(0); # The DateTime of the last event EVENT: for my $event (@events) { next EVENT unless $event && $event->canView(); my ( %eventVar, %eventDate ) @@ -1135,12 +1135,15 @@ sub viewList { # Add the change flags my $dt = $event->getDateTimeStart; if ( $dt->year > $dtLast->year ) { - $eventVar{ new_year } = 1; + $eventVar{ new_year } = 1; + $eventVar{ new_month } = 1; + $eventVar{ new_day } = 1; } - if ( $dt->month > $dtLast->month ) { + elsif ( $dt->month > $dtLast->month ) { $eventVar{ new_month } = 1; + $eventVar{ new_day } = 1; } - if ( $dt->day > $dtLast->day ) { + elsif ( $dt->day > $dtLast->day ) { $eventVar{ new_day } = 1; } diff --git a/lib/WebGUI/Asset/Wobject/Survey.pm b/lib/WebGUI/Asset/Wobject/Survey.pm index 38e7c5274a..0c4a48786d 100644 --- a/lib/WebGUI/Asset/Wobject/Survey.pm +++ b/lib/WebGUI/Asset/Wobject/Survey.pm @@ -2430,6 +2430,53 @@ sub export { #------------------------------------------------------------------- +=head2 exportAssetData () + +Extend the base method to include custom question types added to this Survey. + +=cut + +sub exportAssetData { + my $self = shift; + my $asset_data = $self->SUPER::exportAssetData(); + my $questions = $self->surveyJSON->questions(); + my $multiple_choice = $self->surveyJSON->multipleChoiceTypes(); + my %question_types = (); + my $get_question = $self->session->db->prepare('select answers from Survey_questionTypes where questionType=?'); + foreach my $question (@{ $questions }) { + my $type = $question->{questionType}; + next unless $multiple_choice->{$type}; + next if $question_types{$type}; + $get_question->execute([$type]); + my ($answers) = $get_question->array(); + $question_types{$type} = $answers; + } + #my $question_types = $self->db->buildArrayRefOfHashRefs('select * from Survey_questionTypes'); + $get_question->finish; + $asset_data->{question_types} = \%question_types; + return $asset_data; +} + +#------------------------------------------------------------------- + +=head2 importAssetCollateralData ($data) + +Extend the base method to include custom question types added to this Survey. + +=cut + +sub importAssetCollateralData { + my $self = shift; + my $data = shift; + $self->SUPER::importAssetCollateralData($data); + my $custom_types = $data->{question_types}; + while (my ($question, $answer) = each %{ $custom_types }) { + $self->session->db->write("INSERT INTO Survey_questionTypes VALUES(?,?) ON DUPLICATE KEY UPDATE answers = ?",[$question,$answer,$answer]); + } +} + +#------------------------------------------------------------------- + =head2 www_exportSimpleResults () Exports transposed results as CSV (or tabbed depending on the C form param) diff --git a/lib/WebGUI/Asset/Wobject/Survey/SurveyJSON.pm b/lib/WebGUI/Asset/Wobject/Survey/SurveyJSON.pm index b876a06cd7..20b96eed7a 100644 --- a/lib/WebGUI/Asset/Wobject/Survey/SurveyJSON.pm +++ b/lib/WebGUI/Asset/Wobject/Survey/SurveyJSON.pm @@ -169,7 +169,7 @@ sub addType { my $questionType = shift; my $address = shift; my $question = $self->question($address); - my $ansString = $question->{answers} ? to_json $question->{answers} : {}; + my $ansString = $question->{answers} ? to_json $question->{answers} : '{}'; $self->session->db->write("INSERT INTO Survey_questionTypes VALUES(?,?) ON DUPLICATE KEY UPDATE answers = ?",[$questionType,$ansString,$ansString]); $question->{questionType} = $questionType; } diff --git a/lib/WebGUI/AssetExportHtml.pm b/lib/WebGUI/AssetExportHtml.pm index f5ffa3432e..dc354e64a5 100644 --- a/lib/WebGUI/AssetExportHtml.pm +++ b/lib/WebGUI/AssetExportHtml.pm @@ -157,6 +157,10 @@ This scratch variable is used by the Widget Macro. Takes a hashref of arguments, containing the following keys: +=head3 depth + +How many levels deep to export. + =head3 quiet Boolean. To be or not to be quiet with our output. Defaults to false. diff --git a/lib/WebGUI/Auth.pm b/lib/WebGUI/Auth.pm index dee05bc4b0..bdf8bc3111 100644 --- a/lib/WebGUI/Auth.pm +++ b/lib/WebGUI/Auth.pm @@ -1169,8 +1169,10 @@ sub www_displayLogin { $vars->{title} = $i18n->get(66); my $action; if ($self->session->setting->get("encryptLogin")) { - $action = $self->session->url->page(undef,1); - $action =~ s/http:/https:/; + my $uri = URI->new($self->session->url->page(undef,1)); + $uri->scheme('https'); + $uri->host_port($uri->host); + $action = $uri->as_string; } use WebGUI::Form::Password; use WebGUI::Form::Hidden; @@ -1241,9 +1243,10 @@ sub www_login { $self->session->scratch->delete("redirectAfterLogin"); } elsif ($self->session->setting->get('encryptLogin')) { - my $currentUrl = $self->session->url->page(undef,1); - $currentUrl =~ s/^https:/http:/; - $self->session->response->setRedirect($currentUrl); + my $currentUrl = URI->new($self->session->url->page(undef,1)); + $currentUrl->scheme('http'); + $currentUrl->port($self->session->config->get('webServerPort') || 80); + $self->session->response->setRedirect($currentUrl->canonical->as_string); } # Get open version tag. This is needed if we want diff --git a/lib/WebGUI/Fork.pm b/lib/WebGUI/Fork.pm index f2a6918bfc..286ad60cd1 100644 --- a/lib/WebGUI/Fork.pm +++ b/lib/WebGUI/Fork.pm @@ -293,6 +293,7 @@ sub finish { $props{latch} = 0; } $props{endTime} = time(); + $props{redirect} = $self->{redirect}; $self->set( \%props ); } @@ -529,6 +530,20 @@ sub setGroup { #----------------------------------------------------------------- +=head2 setRedirect($url) + +Allows a redirect to be set for the process after the initial fork. This happens +in the case when a file is to be downloaded after the fork finishes. + +=cut + +sub setRedirect { + my ( $self, $url ) = @_; + $self->{redirect} = $url; +} + +#----------------------------------------------------------------- + =head2 request ($module, $subname, $data) Internal method. Generates a hashref suitable for passing to runRequest. diff --git a/lib/WebGUI/Fork/ProgressBar.pm b/lib/WebGUI/Fork/ProgressBar.pm index 70c979a3bf..0d9c0d2ba0 100644 --- a/lib/WebGUI/Fork/ProgressBar.pm +++ b/lib/WebGUI/Fork/ProgressBar.pm @@ -98,7 +98,7 @@ my $template = <<'TEMPLATE'; url : params.statusUrl, draw : function (data) { var status = YAHOO.lang.JSON.parse(data.status); - bar.update(status.finished, status.total); + bar.update(status.current, status.total); document.getElementById('message').innerHTML = status.message; document.getElementById('elapsed').innerHTML = data.elapsed; }, @@ -106,8 +106,8 @@ my $template = <<'TEMPLATE'; document.getElementById('loading').style.display = 'none'; document.getElementById('ui').style.display = 'block'; }, - finish : function() { - YAHOO.WebGUI.Fork.redirect(params); + finish : function(data) { + YAHOO.WebGUI.Fork.redirect(data.redirect || params.redirect); }, error : function (msg) { alert(msg); diff --git a/lib/WebGUI/Fork/Status.pm b/lib/WebGUI/Fork/Status.pm index e40f55e315..943bf42331 100644 --- a/lib/WebGUI/Fork/Status.pm +++ b/lib/WebGUI/Fork/Status.pm @@ -67,7 +67,7 @@ See the synopsis for what kind of response this generates. sub handler { my $process = shift; my $status = $process->getStatus; - my ( $finished, $startTime, $endTime, $error ) = $process->get( 'finished', 'startTime', 'endTime', 'error' ); + my ( $finished, $startTime, $endTime, $error, $redirect ) = $process->get( qw/finished startTime endTime error redirect/ ); $endTime = time() unless $finished; @@ -76,7 +76,8 @@ sub handler { elapsed => ( $endTime - $startTime ), finished => ( $finished ? \1 : \0 ), ); - $status{error} = $error if $finished; + $status{error} = $error if $finished; + $status{redirect} = $redirect if $finished; $process->session->response->content_type('text/plain'); JSON::encode_json( \%status ); } ## end sub handler diff --git a/lib/WebGUI/Form/AssetReportQuery.pm b/lib/WebGUI/Form/AssetReportQuery.pm index ff2b46ef80..0c36e6d603 100644 --- a/lib/WebGUI/Form/AssetReportQuery.pm +++ b/lib/WebGUI/Form/AssetReportQuery.pm @@ -265,6 +265,7 @@ sub toHtml { $style->setRawHeadTags(qq||); my $jsonData = $self->get("value") || q|{ "isNew" : "true" }|; $style->setRawHeadTags(qq||); + $self->headTags(); #Decode JSON data for filling in some of the fields my $jsonDataHash = JSON->new->decode($jsonData); diff --git a/lib/WebGUI/Help/Asset_Calendar.pm b/lib/WebGUI/Help/Asset_Calendar.pm index 8282e36fc9..f9c59faa88 100644 --- a/lib/WebGUI/Help/Asset_Calendar.pm +++ b/lib/WebGUI/Help/Asset_Calendar.pm @@ -241,15 +241,15 @@ our $HELP = { ], variables => [ { - name => 'newYear', + name => 'new_year', description => 'helpvar newYear', }, { - name => 'newMonth', + name => 'new_month', description => 'helpvar newMonth', }, { - name => 'newDay', + name => 'new_day', description => 'helpvar newDay', }, { diff --git a/lib/WebGUI/LDAPLink.pm b/lib/WebGUI/LDAPLink.pm index bbd30c144a..b40ef01c18 100644 --- a/lib/WebGUI/LDAPLink.pm +++ b/lib/WebGUI/LDAPLink.pm @@ -35,8 +35,8 @@ This package contains utility methods for WebGUI's ldap link system. %ldapLink = WebGUI::LDAPLink->new($self->session,$ldapLinkId)->get; $ldapLink = WebGUI::LDAPLink->new($self->session,$ldapLinkId); - $connection = $ldapLink->authenticate(); - $ldapLink->disconnect; + $connection = $ldapLink->connectToLDAP(); + $ldapLink->unbind; =head1 METHODS diff --git a/lib/WebGUI/Macro/L_loginBox.pm b/lib/WebGUI/Macro/L_loginBox.pm index 7e79f2d611..9bc91170d6 100644 --- a/lib/WebGUI/Macro/L_loginBox.pm +++ b/lib/WebGUI/Macro/L_loginBox.pm @@ -14,6 +14,7 @@ use strict; use WebGUI::Form; use WebGUI::International; use WebGUI::Asset::Template; +use URI; =head1 NAME @@ -97,8 +98,10 @@ sub process { my $action; if ($session->setting->get("encryptLogin")) { - $action = $session->url->page(undef,1); - $action =~ s/http:/https:/; + my $uri = URI->new($session->url->page(undef,1)); + $uri->scheme('https'); + $uri->host_port($uri->host); + $action = $uri->canonical->as_string; } use WebGUI::Form::Text; use WebGUI::Form::Password; diff --git a/lib/WebGUI/Operation/VersionTag.pm b/lib/WebGUI/Operation/VersionTag.pm index 9c79a3cb21..c33fb92359 100644 --- a/lib/WebGUI/Operation/VersionTag.pm +++ b/lib/WebGUI/Operation/VersionTag.pm @@ -154,7 +154,7 @@ sub rollbackInFork { my $session = $process->session; my $tag = WebGUI::VersionTag->new( $session, $tagId ); my %status = ( - finished => 0, + current => 0, total => $process->session->db->quickScalar( 'SELECT count(*) FROM assetData WHERE tagId = ?', [$tagId] ), message => '', ); @@ -168,7 +168,7 @@ sub rollbackInFork { my $purgeRevision = shift; my $self = shift; $self->$purgeRevision(@_); - $status{finished}++; + $status{current}++; $update->(); } ); diff --git a/lib/WebGUI/PassiveAnalytics/Flow.pm b/lib/WebGUI/PassiveAnalytics/Flow.pm index 5925a79dd4..00579b681c 100644 --- a/lib/WebGUI/PassiveAnalytics/Flow.pm +++ b/lib/WebGUI/PassiveAnalytics/Flow.pm @@ -11,6 +11,7 @@ use WebGUI::Workflow; use WebGUI::Workflow::Instance; use WebGUI::User; use WebGUI::Text; +use WebGUI::Fork; =head1 NAME @@ -57,7 +58,7 @@ sub canView { #---------------------------------------------------------------------------- -=head2 exportSomething ( session, sth, filename ) +=head2 exportSomething ( $process, $data ) Generates CSV data from the supplied statement handle and generates a temporary WebGUI::Storage object containing that data in the requested @@ -66,31 +67,53 @@ filename. This subroutine also does a setRedirect to the URL of the file in the storage object. -=head3 session +=head3 $process + +A WebGUI::Fork object, to let the user know what's going on. -Session variable, to set the http redirect correctly. +=head3 $data -=head3 sth +Hash ref of data. -Statement handle for reading data and getting column names +=head3 tableName + +The name of the table where data will be pulled and translated into CSV. =head3 filename -The name of the file to create inside the storage object. +The name of the file to generate =cut sub exportSomething { - my ($session, $sth, $filename) = @_; + my ($process, $data) = @_; + my $session = $process->session; + my $i18n = WebGUI::International->new($session, 'Asset_Thingy'); my $storage = WebGUI::Storage->createTemp($session); + open my $CSV, '>', $storage->getPath($data->{filename}); + my $sth = $session->db->read('select SQL_CALC_FOUND_ROWS * from '.$data->{tableName}); + my %status = ( + current => 0, + message => '', + total => $session->db->quickScalar('select found_rows()') + 0, + ); + my $update = sub { + $process->update( sub { JSON::to_json(\%status) } ); + }; + $update->(); my @columns = $sth->getColumnNames; - my $csvData = WebGUI::Text::joinCSV( @columns ). "\n"; + print $CSV WebGUI::Text::joinCSV( @columns ). "\n"; + my $rowCounter = 0; + $status{message} = $i18n->get('Writing data'); + $update->(); while (my $row = $sth->hashRef()) { my @row = @{ $row }{@columns}; - $csvData .= WebGUI::Text::joinCSV(@row) . "\n"; + print $CSV WebGUI::Text::joinCSV(@row) . "\n"; + ++$status{current }; + $update->(); } - $storage->addFileFromScalar($filename, $csvData); - $session->response->setRedirect($storage->getUrl($filename)); + close $CSV; + $sth->finish; } #------------------------------------------------------------------- @@ -334,8 +357,24 @@ Dump the contents of the bucket log. sub www_exportBucketData { my ($session) = @_; - my $bucket = $session->db->read('select * from bucketLog order by userId, Bucket, timeStamp'); - exportSomething($session, $bucket, 'bucketData.csv'); + + my $process = WebGUI::Fork->start( + $session, + __PACKAGE__, 'exportSomething', + { tableName => 'bucketLog', filename => 'bucketData.csv', }, + ); + my $i18n = WebGUI::International->new($session, 'PassiveAnalytics'); + $session->http->setRedirect( + $session->url->page( + $process->contentPairs( + 'ProgressBar', { + icon => 'passiveAnalytics', + title => $i18n->get('Export bucket data'), + proceed => $session->url->page('op=passiveAnalytics;func=editRuleflow'), + }, + ), + ), + ); return "redirect"; } @@ -349,8 +388,23 @@ Dump the contents of the delta log. sub www_exportDeltaData { my ($session) = @_; - my $delta = $session->db->read('select * from deltaLog order by userId, timeStamp'); - exportSomething($session, $delta, 'deltaData.csv'); + my $process = WebGUI::Fork->start( + $session, + __PACKAGE__, 'exportSomething', + { tableName => 'deltaLog', filename => 'deltaData.csv', }, + ); + my $i18n = WebGUI::International->new($session, 'PassiveAnalytics'); + $session->http->setRedirect( + $session->url->page( + $process->contentPairs( + 'ProgressBar', { + icon => 'passiveAnalytics', + title => $i18n->get('Export delta data'), + proceed => $session->url->page('op=passiveAnalytics;func=editRuleflow'), + }, + ), + ), + ); return "redirect"; } @@ -364,8 +418,23 @@ Dump the contents of the raw log. sub www_exportLogs { my ($session) = @_; - my $raw = $session->db->read('select * from passiveLog order by userId, timeStamp'); - exportSomething($session, $raw, 'passiveData.csv'); + my $process = WebGUI::Fork->start( + $session, + __PACKAGE__, 'exportSomething', + { tableName => 'passiveLog', filename => 'passiveData.csv', }, + ); + my $i18n = WebGUI::International->new($session, 'PassiveAnalytics'); + $session->http->setRedirect( + $session->url->page( + $process->contentPairs( + 'ProgressBar', { + icon => 'passiveAnalytics', + title => $i18n->get('Export raw logs'), + proceed => $session->url->page('op=passiveAnalytics;func=editRuleflow'), + }, + ), + ), + ); return "redirect"; } diff --git a/lib/WebGUI/Workflow/Activity/BucketPassiveAnalytics.pm b/lib/WebGUI/Workflow/Activity/BucketPassiveAnalytics.pm index afedb6a134..2661c6e676 100644 --- a/lib/WebGUI/Workflow/Activity/BucketPassiveAnalytics.pm +++ b/lib/WebGUI/Workflow/Activity/BucketPassiveAnalytics.pm @@ -51,6 +51,20 @@ sub definition { return $class->SUPER::definition($session,$definition); } +#------------------------------------------------------------------- + +=head2 get_statement( session, counter ) + +Return a statement handle at the desired offset. + +=cut + +sub get_statement { + my ($session, $logIndex) = @_; + my $deltaSql = q{select SQL_CALC_FOUND_ROWS userId, assetId, url, delta, from_unixtime(timeStamp) as stamp from deltaLog limit ?, 500000}; + my $sth = $session->db->read($deltaSql, [$logIndex+0]); + return $sth; +} #------------------------------------------------------------------- @@ -85,47 +99,49 @@ sub execute { my %bucketCache = (); ##Configure all the SQL - my $deltaSql = <<"EOSQL1"; -select userId, assetId, url, delta, from_unixtime(timeStamp) as stamp - from deltaLog order by timestamp limit $logIndex, 1234567890 -EOSQL1 - my $deltaSth = $session->db->read($deltaSql); - my $bucketSth = $session->db->prepare('insert into bucketLog (userId, Bucket, duration, timeStamp) VALUES (?,?,?,?)'); + my $deltaSth = get_statement($session, $logIndex); + my $total_rows = $session->db->quickScalar('select found_rows()'); + + my $bucketSth = $session->db->prepare('insert into bucketLog (userId, Bucket, duration, timeStamp) VALUES (?,?,?,?)'); ##Walk through the log file entries, one by one. Run each entry against ##all the rules until 1 matches. If it doesn't match any rule, then bin it ##into the "Other" bucket. - DELTA_ENTRY: while (my $entry = $deltaSth->hashRef()) { - ++$logIndex; - my $bucketFound = 0; - my $url = $entry->{url}; - if (exists $bucketCache{$url}) { - $bucketSth->execute([$entry->{userId}, $bucketCache{$url}, $entry->{delta}, $entry->{stamp}]); - } - else { - RULE: foreach my $rule (@rules) { - next RULE unless $url =~ $rule->[1]; - - # Into the bucket she goes.. - $bucketCache{$url} = $rule->[0]; - $bucketSth->execute([$entry->{userId}, $rule->[0], $entry->{delta}, $entry->{stamp}]); - $bucketFound = 1; - last RULE; + DELTA_CHUNK: while (1) { + DELTA_ENTRY: while (my $entry = $deltaSth->hashRef()) { + ++$logIndex; + my $bucketFound = 0; + my $url = $entry->{url}; + if (exists $bucketCache{$url}) { + $bucketSth->execute([$entry->{userId}, $bucketCache{$url}, $entry->{delta}, $entry->{stamp}]); } - if (!$bucketFound) { - $bucketCache{$url} = 'Other'; - $bucketSth->execute([$entry->{userId}, 'Other', $entry->{delta}, $entry->{stamp}]); + else { + RULE: foreach my $rule (@rules) { + next RULE unless $url =~ $rule->[1]; + + # Into the bucket she goes.. + $bucketCache{$url} = $rule->[0]; + $bucketSth->execute([$entry->{userId}, $rule->[0], $entry->{delta}, $entry->{stamp}]); + $bucketFound = 1; + last RULE; + } + if (!$bucketFound) { + $bucketCache{$url} = 'Other'; + $bucketSth->execute([$entry->{userId}, 'Other', $entry->{delta}, $entry->{stamp}]); + } + } + if (time() > $endTime) { + $expired = 1; + last DELTA_ENTRY; } } - if (time() > $endTime) { - $expired = 1; - last DELTA_ENTRY; - } - } - if ($expired) { - $instance->setScratch('logIndex', $logIndex); - return $self->WAITING(1); + if ($expired) { + $instance->setScratch('lastPassiveLogIndex', $logIndex); + return $self->WAITING(1); + } + last DELTA_CHUNK if $logIndex >= $total_rows; + $deltaSth = get_statement($session, $logIndex); } my $message = 'Passive analytics is done.'; if ($session->setting->get('passiveAnalyticsDeleteDelta')) { diff --git a/lib/WebGUI/Workflow/Activity/SummarizePassiveAnalytics.pm b/lib/WebGUI/Workflow/Activity/SummarizePassiveAnalytics.pm index fcfb181a57..7045afb883 100644 --- a/lib/WebGUI/Workflow/Activity/SummarizePassiveAnalytics.pm +++ b/lib/WebGUI/Workflow/Activity/SummarizePassiveAnalytics.pm @@ -49,6 +49,20 @@ sub definition { return $class->SUPER::definition($session,$definition); } +#------------------------------------------------------------------- + +=head2 get_statement( session, counter ) + +Return a statement handle at the desired offset. + +=cut + +sub get_statement { + my ($session, $counter) = @_; + my $passive = q{select SQL_CALC_FOUND_ROWS * from passiveLog where userId <> '1' limit ?, 500000}; + my $sth = $session->db->read($passive, [$counter+0]); + return $sth; +} #------------------------------------------------------------------- @@ -72,72 +86,61 @@ sub execute { my $endTime = time() + $self->getTTL; my $deltaInterval = $self->get('deltaInterval'); - my $passive = q{select * from passiveLog where userId <> '1' order by userId, sessionId, timeStamp}; - my $sth; my $lastUserId; my $lastSessionId; my $lastTimeStamp; my $lastAssetId; my $lastUrl; my $counter = $instance->getScratch('counter'); - if ($counter) { - $passive .= ' limit '. $counter .', 1234567890'; - $sth = $session->db->read($passive); - $lastUserId = $instance->getScratch('lastUserId'); - $lastSessionId = $instance->getScratch('lastSessionId'); - $lastTimeStamp = $instance->getScratch('lastTimeStamp'); - $lastAssetId = $instance->getScratch('lastAssetId'); - $lastUrl = $instance->getScratch('lastUrl'); - } - else { - $sth = $session->db->read($passive); - my $logLine = $sth->hashRef(); - $lastUserId = $logLine->{userId}; - $lastSessionId = $logLine->{sessionId}; - $lastTimeStamp = $logLine->{timeStamp}; - $lastAssetId = $logLine->{assetId}; - $lastUrl = $logLine->{url}; + my $sth = get_statement($session, $counter); + if (! $counter) { #Clean up from last time, just in case + $session->db->write('delete from deltaLog'); + $session->db->write('delete from PA_lastLog'); } - $session->db->write('delete from deltaLog'); ##Only if we're starting out - my $deltaLog = $session->db->prepare('insert into deltaLog (userId, assetId, delta, timeStamp, url) VALUES (?,?,?,?,?)'); + my $total_rows = $session->db->quickScalar('select found_rows()'); + + my $deltaLog = $session->db->prepare('insert into deltaLog (userId, assetId, timeStamp, url, delta) VALUES (?,?,?,?,?)'); + my $recordLast = $session->db->prepare('REPLACE INTO PA_lastLog (userId, sessionId, timeStamp, url) VALUES (?,?,?,?)'); + my $fetchLast = $session->db->prepare('select * from PA_lastLog where sessionId=? and userId=?'); my $expired = 0; - LOG_ENTRY: while (my $logLine = $sth->hashRef()) { - $counter++; - my $delta = $logLine->{timeStamp} - $lastTimeStamp; - if ( $logLine->{userId} eq $lastUserId - && $logLine->{sessionId} eq $lastSessionId - && $delta < $deltaInterval ) { - $deltaLog->execute([$lastUserId, $lastAssetId, $delta, $lastTimeStamp, $lastUrl]); + LOG_CHUNK: while (1) { + LOG_ENTRY: while (my $logLine = $sth->hashRef()) { + $counter++; + $fetchLast->execute([@{$logLine}{qw/sessionId userId/}]); + my $lastLine = $fetchLast->hashRef(); + $recordLast->execute([ (@{ $logLine }{qw/userId sessionId timeStamp url/}) ]); + if ($lastLine->{timeStamp}) { + my $delta = $logLine->{timeStamp} - $lastLine->{timeStamp}; + if ($delta <= $deltaInterval) { + $deltaLog->execute([ (@{ $lastLine }{qw/userId assetId timeStamp url/}), $delta]); + } + } + if (time() > $endTime) { + $expired = 1; + last LOG_ENTRY; + } } - $lastUserId = $logLine->{userId}; - $lastSessionId = $logLine->{sessionId}; - $lastTimeStamp = $logLine->{timeStamp}; - $lastAssetId = $logLine->{assetId}; - $lastUrl = $logLine->{url}; - if (time() > $endTime) { - $instance->setScratch('lastUserId', $lastUserId); - $instance->setScratch('lastSessionId', $lastSessionId); - $instance->setScratch('lastTimeStamp', $lastTimeStamp); - $instance->setScratch('lastAssetId', $lastAssetId); - $instance->setScratch('lastUrl', $lastUrl); - $instance->setScratch('counter', $counter); - $expired = 1; - last LOG_ENTRY; + + if ($expired) { + $deltaLog->finish; + $recordLast->finish; + $fetchLast->finish; + $sth->finish; + $instance->setScratch('counter', $counter); + return $self->WAITING(1); } - } - - if ($expired) { - return $self->WAITING(1); + last LOG_CHUNK if $counter >= $total_rows; + $sth = get_statement($session, $counter); } - $instance->deleteScratch('lastUserId'); - $instance->deleteScratch('lastSessionId'); - $instance->deleteScratch('lastTimeStamp'); - $instance->deleteScratch('lastAssetId'); - $instance->deleteScratch('lastUrl'); $instance->deleteScratch('counter'); + $deltaLog->finish; + $recordLast->finish; + $fetchLast->finish; + $sth->finish; + $session->db->write('delete from PA_lastLog'); return $self->COMPLETE; } diff --git a/lib/WebGUI/i18n/English/Form_TimeField.pm b/lib/WebGUI/i18n/English/Form_TimeField.pm new file mode 100644 index 0000000000..710e4012c9 --- /dev/null +++ b/lib/WebGUI/i18n/English/Form_TimeField.pm @@ -0,0 +1,15 @@ +package WebGUI::i18n::English::Form_TimeField; + +use strict; + +our $I18N = { + + 'invalid time' => { + message => q|Invalid time|, + lastUpdated => 0, + context => q|Flag for when a time cannot be parsed.| + }, + +}; + +1; diff --git a/lib/WebGUI/i18n/English/PassiveAnalytics.pm b/lib/WebGUI/i18n/English/PassiveAnalytics.pm index 7e2b59eed9..e5777cd0b5 100644 --- a/lib/WebGUI/i18n/English/PassiveAnalytics.pm +++ b/lib/WebGUI/i18n/English/PassiveAnalytics.pm @@ -201,6 +201,12 @@ home\?func=match
context => q|Error message|, }, + 'error creating workflow' => { + message => q|Error creating the workflow instance.|, + lastUpdated => 0, + context => q|Error message|, + }, + }; 1; diff --git a/sbin/testEnvironment.pl b/sbin/testEnvironment.pl index 5a598d5acc..7dc14950db 100755 --- a/sbin/testEnvironment.pl +++ b/sbin/testEnvironment.pl @@ -156,7 +156,7 @@ BEGIN checkModule("namespace::autoclean", "0.09" ); checkModule("Business::PayPal::API", "0.62" ); checkModule("Business::OnlinePayment", "3.01" ); -checkModule("Business::OnlinePayment::AuthorizeNet", "3.21" ); +checkModule("Business::OnlinePayment::AuthorizeNet", "3.22" ); checkModule("Locales", "0.10" ); checkModule("Test::Harness", "3.17" ); checkModule("DateTime::Event::ICal", "0.10" ); diff --git a/sbin/userImport.pl b/sbin/userImport.pl index 05d11b42cb..7c2e3cea17 100755 --- a/sbin/userImport.pl +++ b/sbin/userImport.pl @@ -284,15 +284,22 @@ =head1 DESCRIPTION =over =item B + =item B + =item B + =item B + =item B + =item B + =item B + =item B -=item Any valid User Profile field name available in WebGUI's database, - e.g. B, B, B, etc. + +=item Any valid User Profile field name available in WebGUI's database, e.g. B, B, B, etc. =back diff --git a/share/create.sql b/share/create.sql index c165398fb4..61e6b250a8 100644 --- a/share/create.sql +++ b/share/create.sql @@ -486,6 +486,7 @@ CREATE TABLE `Fork` ( `endTime` bigint(20) DEFAULT NULL, `finished` tinyint(1) DEFAULT '0', `latch` tinyint(1) DEFAULT '0', + `redirect` char(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET @saved_cs_client = @@character_set_client */; @@ -835,6 +836,15 @@ CREATE TABLE `Newsletter_subscriptions` ( KEY `lastTimeSent_assetId_userId` (`lastTimeSent`,`assetId`,`userId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET @saved_cs_client = @@character_set_client */; +CREATE TABLE `PA_lastLog` ( + `userId` char(22) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `assetId` char(22) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `sessionId` char(22) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `timeStamp` bigint(20) DEFAULT NULL, + `url` char(255) NOT NULL, + PRIMARY KEY (`userId`,`sessionId`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; +/*!40101 SET @saved_cs_client = @@character_set_client */; CREATE TABLE `PM_project` ( `projectId` char(22) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, `assetId` char(22) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, @@ -1871,7 +1881,7 @@ CREATE TABLE `authentication` ( /*!40101 SET @saved_cs_client = @@character_set_client */; CREATE TABLE `bucketLog` ( `userId` char(22) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, - `Bucket` char(22) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `Bucket` char(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, `duration` int(11) DEFAULT NULL, `timeStamp` datetime DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -2575,16 +2585,16 @@ ALTER TABLE `Collaboration` DISABLE KEYS; INSERT INTO `Collaboration` VALUES ('pbproto000000000000002','2','2',0,'PBtmpl0000000000000208','PBtmpl0000000000000209','PBtmpl0000000000000210','','','assetData.revisionDate','desc',0,0,3600,10,'javascript',1,0,0,0,0,NULL,NULL,2592000,10,30,NULL,1,0,'PBrichedit000000000002',0,0,1163019036,0,'pbworkflow000000000003','pbworkflow000000000003',100,NULL,NULL,NULL,NULL,NULL,0,'every 5 minutes','NpRVTSR-NX2sD52LUc520A',3600,1,1,0,0,0,0,'12',1,'default_post_received1','PBrichedit000000000002','javascript','default_CS_unsubscribe'); ALTER TABLE `Collaboration` ENABLE KEYS; ALTER TABLE `FileAsset` DISABLE KEYS; -INSERT INTO `FileAsset` VALUES ('7-0-style0000000000002','_Vo1Pvl3sPPANyxz-IcCtA','body_bg.jpg','PBtmpl0000000000000088',1147642492,3600),('7-0-style0000000000004','Gemp7cEVjh2_M2IicUYs-g','gui_bottom.jpg','PBtmpl0000000000000088',1147642493,3600),('7-0-style0000000000005','ry-yzLVH-vxn71H9byjGXA','header.jpg','PBtmpl0000000000000088',1147642493,3600),('7-0-style0000000000006','VEPa65fhY3dok6vj-beFCA','main_bg.gif','PBtmpl0000000000000088',1147642493,3600),('7-0-style0000000000007','Cfay1MNkC-73WKJ7fX_pVw','main_bg.jpg','PBtmpl0000000000000088',1147642493,3600),('7-0-style0000000000008','iEBE--vQb_lxuZd5AP8tuw','nav1_center_on.jpg','PBtmpl0000000000000088',1147642494,3600),('7-0-style0000000000009','XR1Yjf3MkYA53TJlcpRBsw','nav1_off.jpg','PBtmpl0000000000000088',1147642494,3600),('7-0-style0000000000010','sxvAS8na-QAdY_eycd2gKw','nav1_off_center.jpg','PBtmpl0000000000000088',1147642494,3600),('7-0-style0000000000011','2lhmrXW46ZMLvpbaaX2g7Q','nav1_off_left.jpg','PBtmpl0000000000000088',1147642495,3600),('7-0-style0000000000012','sEoRwhmonl877RBgx2nE1w','nav1_off_right.jpg','PBtmpl0000000000000088',1147642495,3600),('7-0-style0000000000013','AoSfRkPI3fl7vAooT4Fj_A','nav1_on.jpg','PBtmpl0000000000000088',1147642495,3600),('7-0-style0000000000014','MgNDJRsghd_zQZ292hqVMQ','nav1_on_left.jpg','PBtmpl0000000000000088',1147642495,3600),('7-0-style0000000000015','aUG1FZaIqHaQHlieZ4_Mkg','nav1_on_right.jpg','PBtmpl0000000000000088',1147642496,3600),('7-0-style0000000000016','HyhLnkaJMfr8eJsLIX8XeA','nav2_center_on.jpg','PBtmpl0000000000000088',1147642496,3600),('7-0-style0000000000017','aledEnWoD-JVNURWSklfdg','nav2_off_center.jpg','PBtmpl0000000000000088',1147642496,3600),('7-0-style0000000000018','Ffd33PToWon9X7mcKZqUAQ','nav2_off_left.jpg','PBtmpl0000000000000088',1147642496,3600),('7-0-style0000000000019','B3TTkcOlr-VzcxRwQXZmyg','nav2_off_right.jpg','PBtmpl0000000000000088',1147642497,3600),('7-0-style0000000000020','RxGSyn-8W4p64SQ-NYzNOg','nav2_on_left.jpg','PBtmpl0000000000000088',1147642497,3600),('7-0-style0000000000021','NciEByP8ssN6qDYyKcoGWw','nav2_on_right.jpg','PBtmpl0000000000000088',1147642497,3600),('7-0-style0000000000022','9OVg_Nxo0gha5pWZsS_dmw','nav_bg.jpg','PBtmpl0000000000000088',1147642497,3600),('7-0-style0000000000023','VKtJGCmBtsMj8ZeAJ6ePNw','nav_on.jpg','PBtmpl0000000000000088',1147642498,3600),('7-0-style0000000000024','ryQb0A4YeEwYZo9hdgrCcw','orange_left01.jpg','PBtmpl0000000000000088',1147642498,3600),('7-0-style0000000000030','coew3C1i9AORof9ezjWLDg','webgui_btn.jpg','PBtmpl0000000000000088',1147642499,3600),('7-0-style0000000000032','HEySmh0CRxpkI-tjzgkDDw','context_bg.jpg','PBtmpl0000000000000088',1147642500,3600),('7-0-style0000000000034','HPn3mVDaMkn8Iu0GAq7cAw','leftCol_header.jpg','PBtmpl0000000000000088',1147642500,3600),('7-0-style0000000000035','IqaSdxJqqN_8C-7OWeyE2g','leftCol_header02.jpg','PBtmpl0000000000000088',1147642501,3600),('7-0-style0000000000036','M0cIcS1GDFIV8lwAw3U2hA','main_bg.jpg','PBtmpl0000000000000088',1147642501,3600),('7-0-style0000000000037','77rakTqCXGBihEOXoh4ZXQ','nav_bg.jpg','PBtmpl0000000000000088',1147642501,3600),('7-0-style0000000000038','5najYvfJiZBBaiCVxaNkcQ','navbar_bg.jpg','PBtmpl0000000000000088',1147642501,3600),('7-0-style0000000000039','27XAOBKNfJ2euexImD73Aw','navbar_left.jpg','PBtmpl0000000000000088',1147642502,3600),('7-0-style0000000000040','sgd1YdmVKj-n6IyIWJicXg','navbar_right.jpg','PBtmpl0000000000000088',1147642502,3600),('7-0-style0000000000041','i1oJph6lb3hxEsTNu_3Y7g','page_title.jpg','PBtmpl0000000000000088',1147642502,3600),('7-0-style0000000000042','qMwO_tp9KOya_N-kyIHDJQ','page_title_bg.jpg','PBtmpl0000000000000088',1147642502,3600),('7-0-style0000000000043','l5hF84u5R9MoqMvS9gpp6g','pb.jpg','PBtmpl0000000000000088',1147642503,3600),('7-0-style0000000000044','Eh4IRmClOEzDAU1IVn5vHQ','pb_wg.jpg','PBtmpl0000000000000088',1147642503,3600),('7-0-style0000000000045','e8yirsGt9FZEgzfeHLgRiw','pb_wg_bg.jpg','PBtmpl0000000000000088',1147642503,3600),('7-0-style0000000000046','hDmN6gu1w_jtrcxgTRN5OQ','rightCol_bg.jpg','PBtmpl0000000000000088',1147642504,3600),('7-0-style0000000000048','_QhSdbnBeA1zio6iAuGIag','wg.jpg','PBtmpl0000000000000088',1147642504,3600),('7-0-style0000000000052','VRqMCZ_-GgaJiDeOrnwlQg','footer_bg.jpg','PBtmpl0000000000000088',1147642505,3600),('7-0-style0000000000053','baxoDEB4C8eLjZbnENMs9w','footer_right.jpg','PBtmpl0000000000000088',1147642505,3600),('7-0-style0000000000054','FlivcrAW0pKW4q_2fvlVpw','header_bg.jpg','PBtmpl0000000000000088',1147642506,3600),('7-0-style0000000000055','5hgdAMRWeSmHDrRFM_qbBw','header_left.jpg','PBtmpl0000000000000088',1147642506,3600),('7-0-style0000000000056','lV6l3Sctxx8J1JmYlXwSDA','header_right.jpg','PBtmpl0000000000000088',1147642506,3600),('7-0-style0000000000057','FKGH2yiNQoC2E_FqbMYebw','main_bg.jpg','PBtmpl0000000000000088',1147642507,3600),('7-0-style0000000000058','UGtgwjDaqCtCPnEkuLPtIw','main_bottom.jpg','PBtmpl0000000000000088',1147642507,3600),('7-0-style0000000000060','XsuCCMz5vyyfC8Xr89pb1Q','main_top_bg.jpg','PBtmpl0000000000000088',1147642508,3600),('7-0-style0000000000061','is_6p2ROuy6AhCR1eJ8SdQ','nav_bg.jpg','PBtmpl0000000000000088',1147642508,3600),('7-0-style0000000000062','3rpFbJWSV14AWeDZqqPSSw','nav_bg1.jpg','PBtmpl0000000000000088',1147642508,3600),('7-0-style0000000000063','NcTFm_t9rn63ejwtBQnDQw','nav_bg1_on.jpg','PBtmpl0000000000000088',1147642508,3600),('7-0-style0000000000064','XLKBWi6Asbz5CtZdnwzZmg','nav_bg2.jpg','PBtmpl0000000000000088',1147642509,3600),('7-0-style0000000000065','02cdKPH5-SyFEb_Zo_WL8A','nav_bg2_on.jpg','PBtmpl0000000000000088',1147642509,3600),('7-0-style0000000000066','0QQpTB8bi6JZvFrW74SOWg','nav_bg_on.jpg','PBtmpl0000000000000088',1147642509,3600),('7-0-style0000000000067','DdhQHfqGq-yC1ukTdlqoEg','pb.jpg','PBtmpl0000000000000088',1147642509,3600),('7-0-style0000000000068','Y4AWquISZVLcwVQLzd_u7w','spacer.gif','PBtmpl0000000000000088',1147642510,3600),('7-0-style0000000000071','mJOrQFemh2R3xn2HYviQlQ','wg.jpg','PBtmpl0000000000000088',1147642511,3600),('Vzv1pWpg_w6R_o-b0rM2qQ','PMKX5QYkNFvrCD15QVo8Tg','Tutorial.swf','pbtmpl0000000000000221',1147642515,3600),('_bZJ9LA_KNekZiFPaP2SeQ','RwcPC6VO-WH3HPaMNxQdxQ','shelf-titles.jpg','PBtmpl0000000000000088',1210777868,0),('hQ7z33_jOYkQ8WNX5xy9Sw','HCc0_yDJrhZIoKV__wiUDw','style-button.gif','PBtmpl0000000000000088',1209509455,0),('vWW_DcHiYSrKZOkkIfEfcQ','t_FrH8_ktSJtHQGQLDeudA','row-2.jpg','PBtmpl0000000000000088',1209509433,0),('_bPYzRA87NTAUIKlfrJMHg','EgZoQgSAhCrNP3sXjRDPkw','row-1.jpg','PBtmpl0000000000000088',1209509433,0),('nJjZHRwdDs5MAZYsAyioHw','edb4FERsJ0pU0mmnfsiCig','title-bg.jpg','PBtmpl0000000000000088',1209509433,0),('8hxfkrJPeFVRWF5piCNJ1A','hRM4w6S2cqFdDRPcUP6FIg','field-bg.jpg','PBtmpl0000000000000088',1209509433,0),('Osx7WN52iIKHZFT4vqUBHQ','Wa42mXdBWCT9B9kgqzh9CQ','search-btn.gif','PBtmpl0000000000000088',1209509433,0),('oWff8fGzRdHPyq5VNREe9Q','j-AYUZHpCRd0yYH2Youp4A','top-bg.jpg','PBtmpl0000000000000088',1209509433,0),('uqbkvb1b9443VvfkyRz95w','JXBzB0XDxTHC_KRk0jROGQ','save-button.gif','PBtmpl0000000000000088',1209509433,0),('8YiMkcz32xalkAn3WBLpag','3lttrXIB4qCFnsKxFTJoKw','go-btn.gif','PBtmpl0000000000000088',1210181860,0),('7-0-style0000000000059','QOhEl8bdecbSrml06V84iw','main_top.jpg','PBtmpl0000000000000088',1213386091,0),('o_pq_e4vRyhMOKFzs61eag','zTRhj1ZmjPc6b4ytLNIdLg','book-covers.jpg','PBtmpl0000000000000088',1215714957,0),('hBpisL-_URyZnh9clR5ohA','IYUoN4EWQWHZHQj-f5ex0g','no_photo.gif','PBtmpl0000000000000088',1227634417,0),('FOBV6KkifreXa4GmEAUU4A','69Zh__B-EI01IWjf9KBDrw','no_photo_sm.gif','PBtmpl0000000000000088',1227634447,0),('-0sK2rX1cwQt1ipUSqsiQQ','CamwRtlyRX-5BNkSNzDPIw','bg.gif','PBtmpl0000000000000088',1273032716,0),('hS_eOaVz9Qb5ixndK9EXAw','o7fDCt5nLymcuiTf2YCFSw','header.jpg','PBtmpl0000000000000088',1273032716,0),('k2p-Be8C98pf2cRq7E-JHg','67nNZ2B0A4lRzoqadwMgLQ','tab_link.gif','PBtmpl0000000000000088',1273032716,0),('aYG4fjbMPbC4LCuuMp4gGA','6spEu4jqWCkdMdyhArfS9A','tab_hover.gif','PBtmpl0000000000000088',1273032716,0),('F122Ey0NtVAw6Lfv1M6G_Q','jUsYsBXtuLJa8Onpi5HU3g','ico_archive.gif','PBtmpl0000000000000088',1273032716,0),('qmXHKrQ6EDLSOGkrEKRUDA','75kfvWZUedWHNdLfM-AtkQ','bg_page_in.jpg','PBtmpl0000000000000088',1273032716,0),('4qZgXjPPO4fwV879yu5XUg','ih2o91dTNCVJlenr9stdbw','bg_page.JPG','PBtmpl0000000000000088',1273032716,0),('mb-xeAugm5GJdvu-Wh0MtQ','8VCgTKlQwVGFKufySjaHNA','search_submit.gif','PBtmpl0000000000000088',1273032717,0),('84Y9CwgzP6eNU7wZnk019Q','QxrDfsAi4k7N-dH6_6Ha9A','ico_date.gif','PBtmpl0000000000000088',1273032717,0),('ikXTtJKZfHVxqw-47E4AQA','83muqXYuxwND5hFjjp-w6Q','ico_user.gif','PBtmpl0000000000000088',1273032717,0),('DhRWPTgzhvju_-TbMN3CwA','BxVwfcPeSjMPqBNal_E2QA','ico_comments.gif','PBtmpl0000000000000088',1273032717,0),('6njI-pZz2bwsjWh-Q1_11g','OFFn_bjzx1DJfXFo1OF1vw','ico_list.gif','PBtmpl0000000000000088',1273032717,0),('_Hz1Gnd3yEnJzVS7l7nJMQ','OYL4yTE8m7-C4dpnmcPtzw','content_all_bg.PNG','PBtmpl0000000000000088',1273032717,0),('VOOrXK5dFnkGih7aTkuDWA','Oung_80DQKn8roLpf_gczQ','search.PNG','PBtmpl0000000000000088',1273032717,0),('ruf-QejOkUHDRtfgakHlbA','k4TQ8lQX80BRB6DByAeOqw','col_title_bg_long.GIF','PBtmpl0000000000000088',1273032717,0),('FSHy5KjQjkt599PHS41seA','ttpOQyYPTtrc40m_3XD3qA','footer.jpg','PBtmpl0000000000000088',1273032717,0),('nuYYXAz4KNNxgfumfnpo_g','JQ6tIpLMOEeT-B3qgIO1tA','ico_top.gif','PBtmpl0000000000000088',1273032718,0),('Mr7ljjoy6n4fZojpQWajKQ','VtEeuhaJ9WqtHzKKiSapNQ','ico_links.gif','PBtmpl0000000000000088',1273032718,0),('ApkqpDOrJDxK3QrWBGSRIg','-pr99yzoIq1OWGE4nEc2AQ','ico_archive2.gif','PBtmpl0000000000000088',1273032718,0),('AzzTY0Lay1f_YGeQJFnQCA','YRAPgXl7Y0gbSKCiLnHetA','ico_list.gif','PBtmpl0000000000000088',1273032718,0),('bCGr7FRtZt-XYlBVUEJBjw','c6kbq-w4yTgOmp9iL5YIGw','Getting_Started_doc.pdf','PBtmpl0000000000000088',1278013724,3600),('bANo8aiAPA7aY_oQZKxIWw','JpcppU2QVhwzkRQ_3cPrig','rss.gif','PBtmpl0000000000000088',1285124155,0),('2ci_v2d4x4uvyjTRlC49OA','AKxSROUAD512YVWMVnCFKA','moveDown.gif','PBtmpl0000000000000088',1285124156,0),('O-EsSzKgAk1KolFT-x_KsA','NMkjv95L4_2hAr24Zk6t_w','moveUp.gif','PBtmpl0000000000000088',1285124156,0),('fdd8tGExyVwHyrB8RBbKXg','UeHYn4prIObzFLOEKJCdJg','next.gif','PBtmpl0000000000000088',1285124156,0),('BpisgHl4ZDcSECJp6oib1w','fAKWhpZ8JjjUx7Mp9me0cg','play.gif','PBtmpl0000000000000088',1285124156,0),('zshreRgPAXtnF0DtVbQ1Yg','nqN_FI5RfUrj1jJvaR2Ejw','previous.gif','PBtmpl0000000000000088',1285124156,0),('POVcY79vIqAHR8OfGt36aw','_WafZBaw-va8uVngB-n1Cg','pagination_button.jpg','PBtmpl0000000000000088',1285124156,0),('hIB-z34r8Xl-vYVYCkKr-w','eMdb0POFC67cjHcfC8QV6w','bar-btn-r.jpg','PBtmpl0000000000000088',1285124156,0),('-mPUoFlYcjqjPUPRLAlxNQ','2kGHNiOCXpdjkNvGm7FckQ','search-field-r.jpg','PBtmpl0000000000000088',1285124156,0),('MDpUOR-N8KMyt1J7Hh_h4w','0FU2asON4Cpz84ZqVv2j0Q','bar-btn.jpg','PBtmpl0000000000000088',1285124156,0),('YfXKByTwDZVituMc4h13Dg','yNQIBSJTOyIELRMx8e1HFA','pagination_bg.jpg','PBtmpl0000000000000088',1285124156,0),('esko_HSU0Gh-uJZ1h3xRmQ','7AYtwHJ5ID67bh9USLisRA','search-field-l.jpg','PBtmpl0000000000000088',1285124156,0),('oSqpGswzpBG_ErdfYwIO8A','PEwj2Dax-ie0pFi3umQcCg','top_bg.jpg','PBtmpl0000000000000088',1285124156,0),('MXJklShZvLLB_DSnZQmXrQ','i3MwZiI6H2s4ch3o8qGzWg','title_bg.jpg','PBtmpl0000000000000088',1285124156,0),('BthxD5oJ0idmsyI3ioA2FA','E_Tdc6--HA70UcAgFqm5aA','bar-btn-l.jpg','PBtmpl0000000000000088',1285124156,0),('aZ-1HYQamkRHYXvzAra8WQ','JnwzFJWb00KcvD_Y0c-qNQ','search-field.jpg','PBtmpl0000000000000088',1285124156,0),('eRkb94OYcS5AdcrrerOP5Q','p1phyvMUP032yG2CZTFbXw','rss.gif','PBtmpl0000000000000088',1285124157,0),('TbnkjAJQEASORXIpYqDkcA','2tbRPmG1Bb1xg31inIP2Bw','blank-image.jpg','PBtmpl0000000000000088',1285124157,0),('er-3faBjY-hhlDcc5aKqdQ','sEeSjDgTnXyGFs0l3m0Gcg','top_bg.jpg','PBtmpl0000000000000088',1285124157,0),('8bFsu2FJUqHRUiHcozcVFw','WCHvuoJ0seQRBvhSHnZNuw','sub-btn-l.jpg','PBtmpl0000000000000088',1285124157,0),('34Aayx5eA320D8VfhdfDBw','bJRXXELPgng8Hmq3DbgX_w','sub-btn-r.jpg','PBtmpl0000000000000088',1285124157,0),('TlhKOVmWblZOsAdqmhEpeg','YWxgdQSbgXlybWHVGlkY0w','sub-btn.jpg','PBtmpl0000000000000088',1285124157,0),('Nx0ypjO3cN6QdZUBUEE0lA','WbdjhOE2fivqHkg1AtB0fQ','pic-title-bg.jpg','PBtmpl0000000000000088',1285124157,0),('CmFZLN7iPS7XXvUEsxKPKA','rPjoy1rPO4wSOTpCpD6rxw','row-2.jpg','PBtmpl0000000000000088',1285124157,0),('v_XBgwwZqgW1D5s4y05qfg','rY-oHSOhzmi6ChVqdK3aFQ','addtl-info.gif','PBtmpl0000000000000088',1285124157,0),('4TdAkKoQbSCvI7QWcW889A','HvuUzQX6jFB7Id5uiQSoJA','row-1.jpg','PBtmpl0000000000000088',1285124157,0),('SAgK6eDPCG1cgkJ59WapHQ','t5wGWmFsAU-gEZ9MKQVPUw','prev-btn.gif','PBtmpl0000000000000088',1285124157,0),('XJYLuvGy9ubF7JNKyINtpA','URLC12rdK3WJvZPMwMlPJQ','play-btn.gif','PBtmpl0000000000000088',1285124157,0),('RWj7hyv2SpZuXxwj1Wocug','oXNEUhS8kPMUgn_ffaOJ9w','next-btn.gif','PBtmpl0000000000000088',1285124157,0),('aq8QElnlm3YufAoxRz9Pcg','4Ch-mtMeddIHOcWbTd5vyA','data-bg.jpg','PBtmpl0000000000000088',1285124158,0),('i6-BofrJJYozovlzFBByXg','F-oeeyCC7F512RbX3b81-g','first-photo-button.png','PBtmpl0000000000000088',1285124158,0),('fU_OZCmtdFNJ8a6bMve8ng','zp7oWiWjlqLL0uFwffWwHg','previous-photo-button.png','PBtmpl0000000000000088',1285124158,0),('YXCtusAxb4vzZ5sTnUA5DA','3uzHqzlwqXOgOZgyH38bLQ','next-photo-button.png','PBtmpl0000000000000088',1285124158,0),('k_xuE82wwp8gFVl9aaaG8g','v-M0mgXsVNT5VnmAs7OOoQ','last-photo-button.png','PBtmpl0000000000000088',1285124158,0),('NPM_WItpM5IzLWBhWjYfCA','2ZVSz3SkLls8aeF6ap5EwA','photo-navigation-spacer.png','PBtmpl0000000000000088',1285124158,0),('A_5LVQQWR73QZR8FFbny_w','I0b31o9W58wGCU2f1296iA','bg.gif','PBtmpl0000000000000088',1301973995,0),('wywIfa_VuTsq0c5Ed-W-MA','Y32QJl-cS3b-C5PZQ6EWYQ','bullet.gif','PBtmpl0000000000000088',1301973995,0),('xmykMFjri1O2NrYHbeToVQ','Rec2i4Xmhx_puKj8Jh36kg','footerbg.gif','PBtmpl0000000000000088',1301973995,0),('0IIGNBs_-INzqBC5VLeJgw','_EGFzCJ8R4d4OLfdsGBxtA','headerbg.gif','PBtmpl0000000000000088',1301973996,0),('FXmePdyS0YKuZ1VCGGpK9w','_PH0MdxjWNzDlCyETdhdrA','quote.gif','PBtmpl0000000000000088',1301973996,0),('66qCywiE_fiL9u5YIaJhgw','XQdDqDkr8ns8G0KgbzDtJQ','tableft.gif','PBtmpl0000000000000088',1301973996,0),('n5VpG4lFsOG1elaWDQbilw','q_ISnAkSYu7lIK02K7dFtg','tabright.gif','PBtmpl0000000000000088',1301973996,0),('pAXR7Kby4O-dSxOwLp1GaA','q0psk7CNosJzG63OFHPkyQ','top_mod.png','PBtmpl0000000000000088',1301973998,0),('TthzMLO4n3qxy59QZ5YBHg','swraxvcheusDs0lYjJNo6A','menu_bg_dark.png','PBtmpl0000000000000088',1301973998,0),('3n31SQjYa150TBrRBgMPhA','QO2DvWl6leXM7OyXwfVfAw','menu_bg_light.png','PBtmpl0000000000000088',1301973998,0),('R4RxDufGbbIzEmpcoEcLrw','yVXbZ-MvG1t2sKqQucXtAg','logo_full.jpg','PBtmpl0000000000000088',1301973998,0),('2q5fxatSFLgIhXaUX-oSvg','ejfTQVbo4RpXnzkmy8KrEg','bottom-left.jpg','PBtmpl0000000000000088',1313542960,0),('_d5WTkKjnwct-_Dk7gZHvQ','Vmqa0F3vxyHTacz1ojC49Q','bottom-right.jpg','PBtmpl0000000000000088',1313542960,0),('Iz2mUR3jCPKyemwAea4b2g','POHJSQqpgaGckij0e_Du2g','input_bg.jpg','PBtmpl0000000000000088',1313542960,0),('JU9bjsLRoWj7GVHs__prig','OJMZ6RslFGTcPM9VneXGkQ','top-left.jpg','PBtmpl0000000000000088',1313542960,0),('noOlnjQGexHg8c4bGVUo9g','SNlKH0bmNpdnmCvejk-xlA','top-right.jpg','PBtmpl0000000000000088',1313542960,0); +INSERT INTO `FileAsset` VALUES ('7-0-style0000000000002','_Vo1Pvl3sPPANyxz-IcCtA','body_bg.jpg','PBtmpl0000000000000088',1147642492,3600),('7-0-style0000000000004','Gemp7cEVjh2_M2IicUYs-g','gui_bottom.jpg','PBtmpl0000000000000088',1147642493,3600),('7-0-style0000000000005','ry-yzLVH-vxn71H9byjGXA','header.jpg','PBtmpl0000000000000088',1147642493,3600),('7-0-style0000000000006','VEPa65fhY3dok6vj-beFCA','main_bg.gif','PBtmpl0000000000000088',1147642493,3600),('7-0-style0000000000007','Cfay1MNkC-73WKJ7fX_pVw','main_bg.jpg','PBtmpl0000000000000088',1147642493,3600),('7-0-style0000000000008','iEBE--vQb_lxuZd5AP8tuw','nav1_center_on.jpg','PBtmpl0000000000000088',1147642494,3600),('7-0-style0000000000009','XR1Yjf3MkYA53TJlcpRBsw','nav1_off.jpg','PBtmpl0000000000000088',1147642494,3600),('7-0-style0000000000010','sxvAS8na-QAdY_eycd2gKw','nav1_off_center.jpg','PBtmpl0000000000000088',1147642494,3600),('7-0-style0000000000011','2lhmrXW46ZMLvpbaaX2g7Q','nav1_off_left.jpg','PBtmpl0000000000000088',1147642495,3600),('7-0-style0000000000012','sEoRwhmonl877RBgx2nE1w','nav1_off_right.jpg','PBtmpl0000000000000088',1147642495,3600),('7-0-style0000000000013','AoSfRkPI3fl7vAooT4Fj_A','nav1_on.jpg','PBtmpl0000000000000088',1147642495,3600),('7-0-style0000000000014','MgNDJRsghd_zQZ292hqVMQ','nav1_on_left.jpg','PBtmpl0000000000000088',1147642495,3600),('7-0-style0000000000015','aUG1FZaIqHaQHlieZ4_Mkg','nav1_on_right.jpg','PBtmpl0000000000000088',1147642496,3600),('7-0-style0000000000016','HyhLnkaJMfr8eJsLIX8XeA','nav2_center_on.jpg','PBtmpl0000000000000088',1147642496,3600),('7-0-style0000000000017','aledEnWoD-JVNURWSklfdg','nav2_off_center.jpg','PBtmpl0000000000000088',1147642496,3600),('7-0-style0000000000018','Ffd33PToWon9X7mcKZqUAQ','nav2_off_left.jpg','PBtmpl0000000000000088',1147642496,3600),('7-0-style0000000000019','B3TTkcOlr-VzcxRwQXZmyg','nav2_off_right.jpg','PBtmpl0000000000000088',1147642497,3600),('7-0-style0000000000020','RxGSyn-8W4p64SQ-NYzNOg','nav2_on_left.jpg','PBtmpl0000000000000088',1147642497,3600),('7-0-style0000000000021','NciEByP8ssN6qDYyKcoGWw','nav2_on_right.jpg','PBtmpl0000000000000088',1147642497,3600),('7-0-style0000000000022','9OVg_Nxo0gha5pWZsS_dmw','nav_bg.jpg','PBtmpl0000000000000088',1147642497,3600),('7-0-style0000000000023','VKtJGCmBtsMj8ZeAJ6ePNw','nav_on.jpg','PBtmpl0000000000000088',1147642498,3600),('7-0-style0000000000024','ryQb0A4YeEwYZo9hdgrCcw','orange_left01.jpg','PBtmpl0000000000000088',1147642498,3600),('7-0-style0000000000030','coew3C1i9AORof9ezjWLDg','webgui_btn.jpg','PBtmpl0000000000000088',1147642499,3600),('7-0-style0000000000032','HEySmh0CRxpkI-tjzgkDDw','context_bg.jpg','PBtmpl0000000000000088',1147642500,3600),('7-0-style0000000000034','HPn3mVDaMkn8Iu0GAq7cAw','leftCol_header.jpg','PBtmpl0000000000000088',1147642500,3600),('7-0-style0000000000035','IqaSdxJqqN_8C-7OWeyE2g','leftCol_header02.jpg','PBtmpl0000000000000088',1147642501,3600),('7-0-style0000000000036','M0cIcS1GDFIV8lwAw3U2hA','main_bg.jpg','PBtmpl0000000000000088',1147642501,3600),('7-0-style0000000000037','77rakTqCXGBihEOXoh4ZXQ','nav_bg.jpg','PBtmpl0000000000000088',1147642501,3600),('7-0-style0000000000038','5najYvfJiZBBaiCVxaNkcQ','navbar_bg.jpg','PBtmpl0000000000000088',1147642501,3600),('7-0-style0000000000039','27XAOBKNfJ2euexImD73Aw','navbar_left.jpg','PBtmpl0000000000000088',1147642502,3600),('7-0-style0000000000040','sgd1YdmVKj-n6IyIWJicXg','navbar_right.jpg','PBtmpl0000000000000088',1147642502,3600),('7-0-style0000000000041','i1oJph6lb3hxEsTNu_3Y7g','page_title.jpg','PBtmpl0000000000000088',1147642502,3600),('7-0-style0000000000042','qMwO_tp9KOya_N-kyIHDJQ','page_title_bg.jpg','PBtmpl0000000000000088',1147642502,3600),('7-0-style0000000000043','l5hF84u5R9MoqMvS9gpp6g','pb.jpg','PBtmpl0000000000000088',1147642503,3600),('7-0-style0000000000044','Eh4IRmClOEzDAU1IVn5vHQ','pb_wg.jpg','PBtmpl0000000000000088',1147642503,3600),('7-0-style0000000000045','e8yirsGt9FZEgzfeHLgRiw','pb_wg_bg.jpg','PBtmpl0000000000000088',1147642503,3600),('7-0-style0000000000046','hDmN6gu1w_jtrcxgTRN5OQ','rightCol_bg.jpg','PBtmpl0000000000000088',1147642504,3600),('7-0-style0000000000048','_QhSdbnBeA1zio6iAuGIag','wg.jpg','PBtmpl0000000000000088',1147642504,3600),('7-0-style0000000000052','VRqMCZ_-GgaJiDeOrnwlQg','footer_bg.jpg','PBtmpl0000000000000088',1147642505,3600),('7-0-style0000000000053','baxoDEB4C8eLjZbnENMs9w','footer_right.jpg','PBtmpl0000000000000088',1147642505,3600),('7-0-style0000000000054','FlivcrAW0pKW4q_2fvlVpw','header_bg.jpg','PBtmpl0000000000000088',1147642506,3600),('7-0-style0000000000055','5hgdAMRWeSmHDrRFM_qbBw','header_left.jpg','PBtmpl0000000000000088',1147642506,3600),('7-0-style0000000000056','lV6l3Sctxx8J1JmYlXwSDA','header_right.jpg','PBtmpl0000000000000088',1147642506,3600),('7-0-style0000000000057','FKGH2yiNQoC2E_FqbMYebw','main_bg.jpg','PBtmpl0000000000000088',1147642507,3600),('7-0-style0000000000058','UGtgwjDaqCtCPnEkuLPtIw','main_bottom.jpg','PBtmpl0000000000000088',1147642507,3600),('7-0-style0000000000060','XsuCCMz5vyyfC8Xr89pb1Q','main_top_bg.jpg','PBtmpl0000000000000088',1147642508,3600),('7-0-style0000000000061','is_6p2ROuy6AhCR1eJ8SdQ','nav_bg.jpg','PBtmpl0000000000000088',1147642508,3600),('7-0-style0000000000062','3rpFbJWSV14AWeDZqqPSSw','nav_bg1.jpg','PBtmpl0000000000000088',1147642508,3600),('7-0-style0000000000063','NcTFm_t9rn63ejwtBQnDQw','nav_bg1_on.jpg','PBtmpl0000000000000088',1147642508,3600),('7-0-style0000000000064','XLKBWi6Asbz5CtZdnwzZmg','nav_bg2.jpg','PBtmpl0000000000000088',1147642509,3600),('7-0-style0000000000065','02cdKPH5-SyFEb_Zo_WL8A','nav_bg2_on.jpg','PBtmpl0000000000000088',1147642509,3600),('7-0-style0000000000066','0QQpTB8bi6JZvFrW74SOWg','nav_bg_on.jpg','PBtmpl0000000000000088',1147642509,3600),('7-0-style0000000000067','DdhQHfqGq-yC1ukTdlqoEg','pb.jpg','PBtmpl0000000000000088',1147642509,3600),('7-0-style0000000000068','Y4AWquISZVLcwVQLzd_u7w','spacer.gif','PBtmpl0000000000000088',1147642510,3600),('7-0-style0000000000071','mJOrQFemh2R3xn2HYviQlQ','wg.jpg','PBtmpl0000000000000088',1147642511,3600),('Vzv1pWpg_w6R_o-b0rM2qQ','PMKX5QYkNFvrCD15QVo8Tg','Tutorial.swf','pbtmpl0000000000000221',1147642515,3600),('_bZJ9LA_KNekZiFPaP2SeQ','RwcPC6VO-WH3HPaMNxQdxQ','shelf-titles.jpg','PBtmpl0000000000000088',1210777868,0),('hQ7z33_jOYkQ8WNX5xy9Sw','HCc0_yDJrhZIoKV__wiUDw','style-button.gif','PBtmpl0000000000000088',1209509455,0),('vWW_DcHiYSrKZOkkIfEfcQ','t_FrH8_ktSJtHQGQLDeudA','row-2.jpg','PBtmpl0000000000000088',1209509433,0),('_bPYzRA87NTAUIKlfrJMHg','EgZoQgSAhCrNP3sXjRDPkw','row-1.jpg','PBtmpl0000000000000088',1209509433,0),('nJjZHRwdDs5MAZYsAyioHw','edb4FERsJ0pU0mmnfsiCig','title-bg.jpg','PBtmpl0000000000000088',1209509433,0),('8hxfkrJPeFVRWF5piCNJ1A','hRM4w6S2cqFdDRPcUP6FIg','field-bg.jpg','PBtmpl0000000000000088',1209509433,0),('Osx7WN52iIKHZFT4vqUBHQ','Wa42mXdBWCT9B9kgqzh9CQ','search-btn.gif','PBtmpl0000000000000088',1209509433,0),('oWff8fGzRdHPyq5VNREe9Q','j-AYUZHpCRd0yYH2Youp4A','top-bg.jpg','PBtmpl0000000000000088',1209509433,0),('uqbkvb1b9443VvfkyRz95w','JXBzB0XDxTHC_KRk0jROGQ','save-button.gif','PBtmpl0000000000000088',1209509433,0),('8YiMkcz32xalkAn3WBLpag','3lttrXIB4qCFnsKxFTJoKw','go-btn.gif','PBtmpl0000000000000088',1210181860,0),('7-0-style0000000000059','QOhEl8bdecbSrml06V84iw','main_top.jpg','PBtmpl0000000000000088',1213386091,0),('o_pq_e4vRyhMOKFzs61eag','zTRhj1ZmjPc6b4ytLNIdLg','book-covers.jpg','PBtmpl0000000000000088',1215714957,0),('hBpisL-_URyZnh9clR5ohA','IYUoN4EWQWHZHQj-f5ex0g','no_photo.gif','PBtmpl0000000000000088',1227634417,0),('FOBV6KkifreXa4GmEAUU4A','69Zh__B-EI01IWjf9KBDrw','no_photo_sm.gif','PBtmpl0000000000000088',1227634447,0),('-0sK2rX1cwQt1ipUSqsiQQ','CamwRtlyRX-5BNkSNzDPIw','bg.gif','PBtmpl0000000000000088',1273032716,0),('hS_eOaVz9Qb5ixndK9EXAw','o7fDCt5nLymcuiTf2YCFSw','header.jpg','PBtmpl0000000000000088',1273032716,0),('k2p-Be8C98pf2cRq7E-JHg','67nNZ2B0A4lRzoqadwMgLQ','tab_link.gif','PBtmpl0000000000000088',1273032716,0),('aYG4fjbMPbC4LCuuMp4gGA','6spEu4jqWCkdMdyhArfS9A','tab_hover.gif','PBtmpl0000000000000088',1273032716,0),('F122Ey0NtVAw6Lfv1M6G_Q','jUsYsBXtuLJa8Onpi5HU3g','ico_archive.gif','PBtmpl0000000000000088',1273032716,0),('qmXHKrQ6EDLSOGkrEKRUDA','75kfvWZUedWHNdLfM-AtkQ','bg_page_in.jpg','PBtmpl0000000000000088',1273032716,0),('4qZgXjPPO4fwV879yu5XUg','ih2o91dTNCVJlenr9stdbw','bg_page.JPG','PBtmpl0000000000000088',1273032716,0),('mb-xeAugm5GJdvu-Wh0MtQ','8VCgTKlQwVGFKufySjaHNA','search_submit.gif','PBtmpl0000000000000088',1273032717,0),('84Y9CwgzP6eNU7wZnk019Q','QxrDfsAi4k7N-dH6_6Ha9A','ico_date.gif','PBtmpl0000000000000088',1273032717,0),('ikXTtJKZfHVxqw-47E4AQA','83muqXYuxwND5hFjjp-w6Q','ico_user.gif','PBtmpl0000000000000088',1273032717,0),('DhRWPTgzhvju_-TbMN3CwA','BxVwfcPeSjMPqBNal_E2QA','ico_comments.gif','PBtmpl0000000000000088',1273032717,0),('6njI-pZz2bwsjWh-Q1_11g','OFFn_bjzx1DJfXFo1OF1vw','ico_list.gif','PBtmpl0000000000000088',1273032717,0),('_Hz1Gnd3yEnJzVS7l7nJMQ','OYL4yTE8m7-C4dpnmcPtzw','content_all_bg.PNG','PBtmpl0000000000000088',1273032717,0),('VOOrXK5dFnkGih7aTkuDWA','Oung_80DQKn8roLpf_gczQ','search.PNG','PBtmpl0000000000000088',1273032717,0),('ruf-QejOkUHDRtfgakHlbA','k4TQ8lQX80BRB6DByAeOqw','col_title_bg_long.GIF','PBtmpl0000000000000088',1273032717,0),('FSHy5KjQjkt599PHS41seA','ttpOQyYPTtrc40m_3XD3qA','footer.jpg','PBtmpl0000000000000088',1273032717,0),('nuYYXAz4KNNxgfumfnpo_g','JQ6tIpLMOEeT-B3qgIO1tA','ico_top.gif','PBtmpl0000000000000088',1273032718,0),('Mr7ljjoy6n4fZojpQWajKQ','VtEeuhaJ9WqtHzKKiSapNQ','ico_links.gif','PBtmpl0000000000000088',1273032718,0),('ApkqpDOrJDxK3QrWBGSRIg','-pr99yzoIq1OWGE4nEc2AQ','ico_archive2.gif','PBtmpl0000000000000088',1273032718,0),('AzzTY0Lay1f_YGeQJFnQCA','YRAPgXl7Y0gbSKCiLnHetA','ico_list.gif','PBtmpl0000000000000088',1273032718,0),('bCGr7FRtZt-XYlBVUEJBjw','c6kbq-w4yTgOmp9iL5YIGw','Getting_Started_doc.pdf','PBtmpl0000000000000088',1278013724,3600),('bANo8aiAPA7aY_oQZKxIWw','JpcppU2QVhwzkRQ_3cPrig','rss.gif','PBtmpl0000000000000088',1285124155,0),('2ci_v2d4x4uvyjTRlC49OA','AKxSROUAD512YVWMVnCFKA','moveDown.gif','PBtmpl0000000000000088',1285124156,0),('O-EsSzKgAk1KolFT-x_KsA','NMkjv95L4_2hAr24Zk6t_w','moveUp.gif','PBtmpl0000000000000088',1285124156,0),('fdd8tGExyVwHyrB8RBbKXg','UeHYn4prIObzFLOEKJCdJg','next.gif','PBtmpl0000000000000088',1285124156,0),('BpisgHl4ZDcSECJp6oib1w','fAKWhpZ8JjjUx7Mp9me0cg','play.gif','PBtmpl0000000000000088',1285124156,0),('zshreRgPAXtnF0DtVbQ1Yg','nqN_FI5RfUrj1jJvaR2Ejw','previous.gif','PBtmpl0000000000000088',1285124156,0),('POVcY79vIqAHR8OfGt36aw','_WafZBaw-va8uVngB-n1Cg','pagination_button.jpg','PBtmpl0000000000000088',1285124156,0),('hIB-z34r8Xl-vYVYCkKr-w','eMdb0POFC67cjHcfC8QV6w','bar-btn-r.jpg','PBtmpl0000000000000088',1285124156,0),('-mPUoFlYcjqjPUPRLAlxNQ','2kGHNiOCXpdjkNvGm7FckQ','search-field-r.jpg','PBtmpl0000000000000088',1285124156,0),('MDpUOR-N8KMyt1J7Hh_h4w','0FU2asON4Cpz84ZqVv2j0Q','bar-btn.jpg','PBtmpl0000000000000088',1285124156,0),('YfXKByTwDZVituMc4h13Dg','yNQIBSJTOyIELRMx8e1HFA','pagination_bg.jpg','PBtmpl0000000000000088',1285124156,0),('esko_HSU0Gh-uJZ1h3xRmQ','7AYtwHJ5ID67bh9USLisRA','search-field-l.jpg','PBtmpl0000000000000088',1285124156,0),('oSqpGswzpBG_ErdfYwIO8A','PEwj2Dax-ie0pFi3umQcCg','top_bg.jpg','PBtmpl0000000000000088',1285124156,0),('MXJklShZvLLB_DSnZQmXrQ','i3MwZiI6H2s4ch3o8qGzWg','title_bg.jpg','PBtmpl0000000000000088',1285124156,0),('BthxD5oJ0idmsyI3ioA2FA','E_Tdc6--HA70UcAgFqm5aA','bar-btn-l.jpg','PBtmpl0000000000000088',1285124156,0),('aZ-1HYQamkRHYXvzAra8WQ','JnwzFJWb00KcvD_Y0c-qNQ','search-field.jpg','PBtmpl0000000000000088',1285124156,0),('eRkb94OYcS5AdcrrerOP5Q','p1phyvMUP032yG2CZTFbXw','rss.gif','PBtmpl0000000000000088',1285124157,0),('TbnkjAJQEASORXIpYqDkcA','2tbRPmG1Bb1xg31inIP2Bw','blank-image.jpg','PBtmpl0000000000000088',1285124157,0),('er-3faBjY-hhlDcc5aKqdQ','sEeSjDgTnXyGFs0l3m0Gcg','top_bg.jpg','PBtmpl0000000000000088',1285124157,0),('8bFsu2FJUqHRUiHcozcVFw','WCHvuoJ0seQRBvhSHnZNuw','sub-btn-l.jpg','PBtmpl0000000000000088',1285124157,0),('34Aayx5eA320D8VfhdfDBw','bJRXXELPgng8Hmq3DbgX_w','sub-btn-r.jpg','PBtmpl0000000000000088',1285124157,0),('TlhKOVmWblZOsAdqmhEpeg','YWxgdQSbgXlybWHVGlkY0w','sub-btn.jpg','PBtmpl0000000000000088',1285124157,0),('Nx0ypjO3cN6QdZUBUEE0lA','WbdjhOE2fivqHkg1AtB0fQ','pic-title-bg.jpg','PBtmpl0000000000000088',1285124157,0),('CmFZLN7iPS7XXvUEsxKPKA','rPjoy1rPO4wSOTpCpD6rxw','row-2.jpg','PBtmpl0000000000000088',1285124157,0),('v_XBgwwZqgW1D5s4y05qfg','rY-oHSOhzmi6ChVqdK3aFQ','addtl-info.gif','PBtmpl0000000000000088',1285124157,0),('4TdAkKoQbSCvI7QWcW889A','HvuUzQX6jFB7Id5uiQSoJA','row-1.jpg','PBtmpl0000000000000088',1285124157,0),('SAgK6eDPCG1cgkJ59WapHQ','t5wGWmFsAU-gEZ9MKQVPUw','prev-btn.gif','PBtmpl0000000000000088',1285124157,0),('XJYLuvGy9ubF7JNKyINtpA','URLC12rdK3WJvZPMwMlPJQ','play-btn.gif','PBtmpl0000000000000088',1285124157,0),('RWj7hyv2SpZuXxwj1Wocug','oXNEUhS8kPMUgn_ffaOJ9w','next-btn.gif','PBtmpl0000000000000088',1285124157,0),('aq8QElnlm3YufAoxRz9Pcg','4Ch-mtMeddIHOcWbTd5vyA','data-bg.jpg','PBtmpl0000000000000088',1285124158,0),('i6-BofrJJYozovlzFBByXg','F-oeeyCC7F512RbX3b81-g','first-photo-button.png','PBtmpl0000000000000088',1285124158,0),('fU_OZCmtdFNJ8a6bMve8ng','zp7oWiWjlqLL0uFwffWwHg','previous-photo-button.png','PBtmpl0000000000000088',1285124158,0),('YXCtusAxb4vzZ5sTnUA5DA','3uzHqzlwqXOgOZgyH38bLQ','next-photo-button.png','PBtmpl0000000000000088',1285124158,0),('k_xuE82wwp8gFVl9aaaG8g','v-M0mgXsVNT5VnmAs7OOoQ','last-photo-button.png','PBtmpl0000000000000088',1285124158,0),('NPM_WItpM5IzLWBhWjYfCA','2ZVSz3SkLls8aeF6ap5EwA','photo-navigation-spacer.png','PBtmpl0000000000000088',1285124158,0),('A_5LVQQWR73QZR8FFbny_w','I0b31o9W58wGCU2f1296iA','bg.gif','PBtmpl0000000000000088',1301973995,0),('wywIfa_VuTsq0c5Ed-W-MA','Y32QJl-cS3b-C5PZQ6EWYQ','bullet.gif','PBtmpl0000000000000088',1301973995,0),('xmykMFjri1O2NrYHbeToVQ','Rec2i4Xmhx_puKj8Jh36kg','footerbg.gif','PBtmpl0000000000000088',1301973995,0),('0IIGNBs_-INzqBC5VLeJgw','_EGFzCJ8R4d4OLfdsGBxtA','headerbg.gif','PBtmpl0000000000000088',1301973996,0),('FXmePdyS0YKuZ1VCGGpK9w','_PH0MdxjWNzDlCyETdhdrA','quote.gif','PBtmpl0000000000000088',1301973996,0),('66qCywiE_fiL9u5YIaJhgw','XQdDqDkr8ns8G0KgbzDtJQ','tableft.gif','PBtmpl0000000000000088',1301973996,0),('n5VpG4lFsOG1elaWDQbilw','q_ISnAkSYu7lIK02K7dFtg','tabright.gif','PBtmpl0000000000000088',1301973996,0),('pAXR7Kby4O-dSxOwLp1GaA','q0psk7CNosJzG63OFHPkyQ','top_mod.png','PBtmpl0000000000000088',1301973998,0),('TthzMLO4n3qxy59QZ5YBHg','swraxvcheusDs0lYjJNo6A','menu_bg_dark.png','PBtmpl0000000000000088',1301973998,0),('3n31SQjYa150TBrRBgMPhA','QO2DvWl6leXM7OyXwfVfAw','menu_bg_light.png','PBtmpl0000000000000088',1301973998,0),('R4RxDufGbbIzEmpcoEcLrw','yVXbZ-MvG1t2sKqQucXtAg','logo_full.jpg','PBtmpl0000000000000088',1301973998,0),('2q5fxatSFLgIhXaUX-oSvg','0mh4u0WyuDY3nce_kRXciQ','bottom-left.jpg','PBtmpl0000000000000088',1326776036,0),('_d5WTkKjnwct-_Dk7gZHvQ','tz21guWJphFvVbpoC0dmwQ','bottom-right.jpg','PBtmpl0000000000000088',1326776036,0),('Iz2mUR3jCPKyemwAea4b2g','HgNuTdh1dj5nkDjFOoAqjA','input_bg.jpg','PBtmpl0000000000000088',1326776036,0),('JU9bjsLRoWj7GVHs__prig','wvHhSf4moE79Zs1_t7APXQ','top-left.jpg','PBtmpl0000000000000088',1326776036,0),('noOlnjQGexHg8c4bGVUo9g','pki4NU41Ql6Ut0-14k2q4A','top-right.jpg','PBtmpl0000000000000088',1326776036,0); ALTER TABLE `FileAsset` ENABLE KEYS; ALTER TABLE `Folder` DISABLE KEYS; -INSERT INTO `Folder` VALUES ('PBasset000000000000002','PBtmpl0000000000000078',1124395696,3600,0,'ASC'),('7-0-style0000000000001','PBtmpl0000000000000078',1147642492,3600,0,'ASC'),('7-0-style0000000000031','PBtmpl0000000000000078',1147642500,3600,0,'ASC'),('PBasset000000000000003','PBtmpl0000000000000078',1147642437,3600,0,'ASC'),('nbSrhXZQuxIjhWFaFPSuVA','PBtmpl0000000000000078',1147642465,3600,0,'ASC'),('N13SD1Fpqk00UgBt1Z8ivQ','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('-WM2dt0ZGpDasuL2wWocxg','PBtmpl0000000000000078',1222803056,3600,0,'ASC'),('3uuBf8cYuj1sew2OJXl9tg','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('2OcUWHVsu_L1sDFzIMWYqw','PBtmpl0000000000000078',1222803070,3600,0,'ASC'),('cj2y4papTVGZRFdwTI-_fw','PBtmpl0000000000000078',1147642475,3600,0,'ASC'),('bBzO4CWjqU_ile3gf5Iypw','PBtmpl0000000000000078',1147642475,3600,0,'ASC'),('Da6KWn805L4B5e4HFgQRQA','PBtmpl0000000000000078',1147642479,3600,0,'ASC'),('bbiA9Zq5Gy2oCFBlILO3QA','PBtmpl0000000000000078',1147642480,3600,0,'ASC'),('Efe2W0UgrSRDltNJ87jlfg','PBtmpl0000000000000078',1147642480,3600,0,'ASC'),('9wKWdum0_8z-OhhquWLtSQ','PBtmpl0000000000000078',1147642483,3600,0,'ASC'),('CSN-ZON7Uwv8kxf3F1fh5Q','PBtmpl0000000000000078',1147642484,3600,0,'ASC'),('TCtybxdqmdwdvRn555zpCQ','PBtmpl0000000000000078',1147642484,3600,0,'ASC'),('tempspace0000000000000','PBtmpl0000000000000078',1185754574,3600,0,'ASC'),('Tsg7xmPYv782j6IVz7yHFg','PBtmpl0000000000000078',1213244777,3600,0,'ASC'),('TYo2Bwl7aafzTtdHlS-arQ','PBtmpl0000000000000078',1211664878,3600,0,'ASC'),('6tK47xsaIH-ELw0IBo0uRQ','PBtmpl0000000000000078',1210777115,3600,0,'ASC'),('gbnRhcWNk1iQe32LFEB5eQ','PBtmpl0000000000000078',1212086102,3600,0,'ASC'),('6D4Z-oruXPS6OlH_Kx8pBg','PBtmpl0000000000000078',1209509389,3600,0,'ASC'),('C5fPz-Wg85vkYRvCdl-Xqw','PBtmpl0000000000000078',1212160830,3600,0,'ASC'),('jnYdqDkUR8x7Pv2eGR1qTA','PBtmpl0000000000000078',1216250666,3600,0,'ASC'),('zyWi26q9na-iiZqL4yedog','PBtmpl0000000000000078',1222803114,3600,0,'ASC'),('tBL7BWiQRZFed2Y-Zjo9tQ','PBtmpl0000000000000078',1222803200,3600,0,'ASC'),('GdkQpvjRtJqtzOUbwIIQRA','PBtmpl0000000000000078',1222803205,3600,0,'ASC'),('tnc5iYyynX2hfdEs9D3P8w','PBtmpl0000000000000078',1222803213,3600,0,'ASC'),('vgXdBcFTqU7h4wBG1ewdBw','PBtmpl0000000000000078',1222803217,3600,0,'ASC'),('hcFlqnXlsmC1ujN6Id0F0A','PBtmpl0000000000000078',1222803234,3600,0,'ASC'),('eRJR52fvlaxfetv3DQkQYw','PBtmpl0000000000000078',1222803238,3600,0,'ASC'),('5HIDHq5lAWHV5gpYGS0zLg','PBtmpl0000000000000078',1222803244,3600,0,'ASC'),('rYEFwXXo0tkGhQTcbDibvg','PBtmpl0000000000000078',1222803249,3600,0,'ASC'),('V3l5S5TtI7wMm1WpIMhvOA','PBtmpl0000000000000078',1222803253,3600,0,'ASC'),('nqNbSUAhk9Vd1zda2SCz9A','PBtmpl0000000000000078',1222803258,3600,0,'ASC'),('y8XkRdxIperLKkJ3bL5sSQ','PBtmpl0000000000000078',1222803264,3600,0,'ASC'),('vTymIDYL2YqEh6PV50F7ew','PBtmpl0000000000000078',1222803302,3600,0,'ASC'),('lo1ac3BsoJx3ijGQ3gR-bQ','PBtmpl0000000000000078',1222803309,3600,0,'ASC'),('huASapWvFDzqwOSbcN-JFQ','PBtmpl0000000000000078',1222803313,3600,0,'ASC'),('9A-mg2gwWmaYi9o_1C7ArQ','PBtmpl0000000000000078',1222803338,3600,0,'ASC'),('yD1SMHelczihzjEmx6eXBA','PBtmpl0000000000000078',1222803342,3600,0,'ASC'),('pV7GnZdpjR3XpZaSINIoeg','PBtmpl0000000000000078',1222803347,3600,0,'ASC'),('71e17KeduiXgODLMlUxiow','PBtmpl0000000000000078',1222803352,3600,0,'ASC'),('Ik9HHky10DIyFTKehUD1dw','PBtmpl0000000000000078',1222803478,3600,0,'ASC'),('NywJYmGWe1f6EBXJnWg9Xg','PBtmpl0000000000000078',1222803638,3600,0,'ASC'),('AgyFhx3eXlfZXNp2MkrsiQ','PBtmpl0000000000000078',1222803665,3600,0,'ASC'),('F7MAQ-cpuvQ1KuC7J4P5zQ','PBtmpl0000000000000078',1222803673,3600,0,'ASC'),('BmLaN4rmAANkCglXUViEbg','PBtmpl0000000000000078',1222803871,3600,0,'ASC'),('X7DrzUcj8pOKFa_6k9D5iw','PBtmpl0000000000000078',1222804045,3600,0,'ASC'),('UL-ItI4L1Z6-WSuhuXVvsQ','PBtmpl0000000000000078',1225139673,3600,0,'ASC'),('7-0-style0000000000049','PBtmpl0000000000000078',1224117144,3600,0,'ASC'),('QpmlAiYZz6VsKBM-_0wXaw','PBtmpl0000000000000078',1224616691,3600,0,'ASC'),('HPDOcsj4gBme8D4svHodBw','PBtmpl0000000000000078',1225404573,3600,0,'ASC'),('IZkrow_zwvbf4FCH-taVTQ','PBtmpl0000000000000078',1226011853,3600,0,'ASC'),('K0YjxqOqr7RupSo6sIdcAg','PBtmpl0000000000000078',1227074310,3600,0,'ASC'),('_ilRXNR3s8F2vGJ_k9ePcg','PBtmpl0000000000000078',1226643205,3600,0,'ASC'),('qaVcU0FFzzraMX_bzELqzw','PBtmpl0000000000000078',1227074362,3600,0,'ASC'),('QHn6T9rU7KsnS3Y70KCNTg','PBtmpl0000000000000078',1233173545,3600,0,'ASC'),('HW-sPoDDZR8wBZ0YgFgPtg','PBtmpl0000000000000078',1227634350,3600,0,'ASC'),('AOjPG2NHgfL9Cq6dDJ7mew','PBtmpl0000000000000078',1236960881,3600,0,'ASC'),('jmlI9IK-lV8n2WMYmmPhAA','PBtmpl0000000000000078',1238106173,3600,0,'ASC'),('6uvSLY-ak_w4p_wS8q33cA','PBtmpl0000000000000078',1239213092,3600,0,'ASC'),('GaBAW-2iVhLMJaZQzVLE5A','PBtmpl0000000000000078',1240103565,3600,0,'ASC'),('lo1rpxn3t8YPyKGers5eQg','PBtmpl0000000000000078',1238625621,3600,0,'ASC'),('aNNC62qLAS6TB-0_MCYjsw','PBtmpl0000000000000078',1246969327,3600,0,'ASC'),('BFfNj5wA9bDw8H3cnr8pTw','PBtmpl0000000000000078',1247046273,3600,0,'ASC'),('f_tn9FfoSfKWX43F83v_3w','PBtmpl0000000000000078',1247053009,3600,0,'ASC'),('oGfxez5sksyB_PcaAsEm_Q','PBtmpl0000000000000078',1247053097,3600,0,'ASC'),('tPagC0AQErZXjLFZQ6OI1g','PBtmpl0000000000000078',1246966459,3600,0,'ASC'),('GYaFxnMu9UsEG8oanwB6TA','PBtmpl0000000000000078',1246965871,3600,0,'ASC'),('VZK3CRgiMb8r4dBjUmCTgQ','PBtmpl0000000000000078',1247046242,3600,0,'ASC'),('tXwf1zaOXTvsqPn6yu-GSw','PBtmpl0000000000000078',1246965607,3600,0,'ASC'),('5bnNzteN7w3NnK9mF4XiCg','PBtmpl0000000000000078',1250243000,3600,0,'ASC'),('RSAMkc6WQmfRE3TOr1_3Mw','PBtmpl0000000000000078',1250243000,3600,0,'ASC'),('fowHfgOkJtAxdst7rugTog','PBtmpl0000000000000078',1252595993,3600,0,'ASC'),('TvOZs8U1kRXLtwtmyW75pg','PBtmpl0000000000000078',1256092368,3600,0,'ASC'),('4qh0kIsFUdd4Ox-Iu1JZgg','PBtmpl0000000000000078',1257311886,3600,0,'ASC'),('-K8Hj45mbelljN9-0CXZxg','PBtmpl0000000000000078',1257311887,3600,0,'ASC'),('P_4uog81vSUK4KxuW_4GUA','PBtmpl0000000000000078',1258524916,3600,0,'ASC'),('t87D1138NhPHhA23-hozBA','PBtmpl0000000000000078',1273032716,3600,0,'ASC'),('QtBumey5ffc-xffRp1-7Aw','PBtmpl0000000000000078',1273032716,3600,0,'ASC'),('Q4uX_C557arTp6D_jwB1jQ','PBtmpl0000000000000078',1273032720,3600,0,'ASC'),('GNOAsX98vCsl0JRwfwL-gg','PBtmpl0000000000000078',1277868921,3600,0,'ASC'),('LdiozcIUciWuvt3Z-na5Ww','PBtmpl0000000000000078',1281501162,3600,0,'ASC'),('AssetReportFolder00001','PBtmpl0000000000000078',1281501163,3600,0,'ASC'),('N7uMnnicbyTEulcuRi1sSg','PBtmpl0000000000000078',1283900195,3600,0,'ASC'),('gI_TxK-5S4DNuv42wpImmw','PBtmpl0000000000000078',1285124155,3600,0,'ASC'),('kaPRSaf8UKiskiGEgJgLAw','PBtmpl0000000000000078',1285124155,3600,0,'ASC'),('RrV4aAPnn4dM0ZcU3OXnlw','PBtmpl0000000000000078',1286336607,3600,0,'ASC'),('1z9J1O08n_7gVVlBwSRBJQ','PBtmpl0000000000000078',1287545014,3600,0,'ASC'),('xSmREZO3GNzK3M5PaueOOQ','PBtmpl0000000000000078',1287545014,3600,0,'ASC'),('0bx-xoL8TSXXubFuqKAoVQ','PBtmpl0000000000000078',1287545014,3600,0,'ASC'),('taX2UYkFF21ALpFZY2rhMw','PBtmpl0000000000000078',1287545014,3600,0,'ASC'),('K0q_N885Httqev1VCqUWxg','PBtmpl0000000000000078',1287545014,3600,0,'ASC'),('fq1ZkYhH24R5tb96kuT10Q','PBtmpl0000000000000078',1287545014,3600,0,'ASC'),('oHk7fAFhEEkB7dHzi0QOQA','PBtmpl0000000000000078',1287545014,3600,0,'ASC'),('9M-lrlPQWeeNWfvnDnK_Xg','PBtmpl0000000000000078',1287545014,3600,0,'ASC'),('_gBYAdTcbkiyamnqi2Xskg','PBtmpl0000000000000078',1287545014,3600,0,'ASC'),('0iMMbGN3BevuCBHjjLiQNA','PBtmpl0000000000000078',1287545015,3600,0,'ASC'),('6A4yIjWwJfIE0Ep-I0jutg','PBtmpl0000000000000078',1287545015,3600,0,'ASC'),('_cD6DLM_Fs5IlrLeWUjrjg','PBtmpl0000000000000078',1287545015,3600,0,'ASC'),('f2EktltCvwQpl_3-B1yR7g','PBtmpl0000000000000078',1288748251,3600,0,'ASC'),('S1A9iAwKcQQ6P20uTqw-Ew','PBtmpl0000000000000078',1300763664,3600,0,'ASC'),('CQp-RFA2pMh5lFSggPPPYg','PBtmpl0000000000000078',1301973995,3600,0,'ASC'),('_Mi_NTd3x8UB96LWezWHnw','PBtmpl0000000000000078',1301973995,3600,0,'ASC'),('g3JH1PRq6m6Bj_PnGpcrSQ','PBtmpl0000000000000078',1301973996,3600,0,'ASC'),('G0hl4VilbFKipToyxKqFrg','PBtmpl0000000000000078',1301973997,3600,0,'ASC'),('GWU2qZqe6yEuAKG-5HtBdg','PBtmpl0000000000000078',1301973997,3600,0,'ASC'),('AsfpsOpsGzZCb9m7MyxPuw','PBtmpl0000000000000078',1301973997,3600,0,'ASC'),('1qFjOEiILIwr1xB5_ebppQ','PBtmpl0000000000000078',1301973998,3600,0,'ASC'),('xD76UfQ_JnSgTLBNvytcpQ','PBtmpl0000000000000078',1301973998,3600,0,'ASC'),('G5DgNizuG3jXkjPp6UaGrA','PBtmpl0000000000000078',1301973999,3600,0,'ASC'),('brxm_faNdZX5tRo3p50g3g','PBtmpl0000000000000078',1304392055,3600,0,'ASC'),('aNmgn0cd6tldmC1FpW4KbA','PBtmpl0000000000000078',1313542960,3600,0,'ASC'),('jEz8iTGNWEt2I05IhVV19Q','PBtmpl0000000000000078',1313542961,3600,0,'ASC'); +INSERT INTO `Folder` VALUES ('PBasset000000000000002','PBtmpl0000000000000078',1124395696,3600,0,'ASC'),('7-0-style0000000000001','PBtmpl0000000000000078',1147642492,3600,0,'ASC'),('7-0-style0000000000031','PBtmpl0000000000000078',1147642500,3600,0,'ASC'),('PBasset000000000000003','PBtmpl0000000000000078',1147642437,3600,0,'ASC'),('nbSrhXZQuxIjhWFaFPSuVA','PBtmpl0000000000000078',1147642465,3600,0,'ASC'),('N13SD1Fpqk00UgBt1Z8ivQ','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('-WM2dt0ZGpDasuL2wWocxg','PBtmpl0000000000000078',1222803056,3600,0,'ASC'),('3uuBf8cYuj1sew2OJXl9tg','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('2OcUWHVsu_L1sDFzIMWYqw','PBtmpl0000000000000078',1222803070,3600,0,'ASC'),('cj2y4papTVGZRFdwTI-_fw','PBtmpl0000000000000078',1147642475,3600,0,'ASC'),('bBzO4CWjqU_ile3gf5Iypw','PBtmpl0000000000000078',1147642475,3600,0,'ASC'),('Da6KWn805L4B5e4HFgQRQA','PBtmpl0000000000000078',1147642479,3600,0,'ASC'),('bbiA9Zq5Gy2oCFBlILO3QA','PBtmpl0000000000000078',1147642480,3600,0,'ASC'),('Efe2W0UgrSRDltNJ87jlfg','PBtmpl0000000000000078',1147642480,3600,0,'ASC'),('9wKWdum0_8z-OhhquWLtSQ','PBtmpl0000000000000078',1147642483,3600,0,'ASC'),('CSN-ZON7Uwv8kxf3F1fh5Q','PBtmpl0000000000000078',1147642484,3600,0,'ASC'),('TCtybxdqmdwdvRn555zpCQ','PBtmpl0000000000000078',1147642484,3600,0,'ASC'),('tempspace0000000000000','PBtmpl0000000000000078',1185754574,3600,0,'ASC'),('Tsg7xmPYv782j6IVz7yHFg','PBtmpl0000000000000078',1213244777,3600,0,'ASC'),('TYo2Bwl7aafzTtdHlS-arQ','PBtmpl0000000000000078',1211664878,3600,0,'ASC'),('6tK47xsaIH-ELw0IBo0uRQ','PBtmpl0000000000000078',1210777115,3600,0,'ASC'),('gbnRhcWNk1iQe32LFEB5eQ','PBtmpl0000000000000078',1212086102,3600,0,'ASC'),('6D4Z-oruXPS6OlH_Kx8pBg','PBtmpl0000000000000078',1209509389,3600,0,'ASC'),('C5fPz-Wg85vkYRvCdl-Xqw','PBtmpl0000000000000078',1212160830,3600,0,'ASC'),('jnYdqDkUR8x7Pv2eGR1qTA','PBtmpl0000000000000078',1216250666,3600,0,'ASC'),('zyWi26q9na-iiZqL4yedog','PBtmpl0000000000000078',1222803114,3600,0,'ASC'),('tBL7BWiQRZFed2Y-Zjo9tQ','PBtmpl0000000000000078',1222803200,3600,0,'ASC'),('GdkQpvjRtJqtzOUbwIIQRA','PBtmpl0000000000000078',1222803205,3600,0,'ASC'),('tnc5iYyynX2hfdEs9D3P8w','PBtmpl0000000000000078',1222803213,3600,0,'ASC'),('vgXdBcFTqU7h4wBG1ewdBw','PBtmpl0000000000000078',1222803217,3600,0,'ASC'),('hcFlqnXlsmC1ujN6Id0F0A','PBtmpl0000000000000078',1222803234,3600,0,'ASC'),('eRJR52fvlaxfetv3DQkQYw','PBtmpl0000000000000078',1222803238,3600,0,'ASC'),('5HIDHq5lAWHV5gpYGS0zLg','PBtmpl0000000000000078',1222803244,3600,0,'ASC'),('rYEFwXXo0tkGhQTcbDibvg','PBtmpl0000000000000078',1222803249,3600,0,'ASC'),('V3l5S5TtI7wMm1WpIMhvOA','PBtmpl0000000000000078',1222803253,3600,0,'ASC'),('nqNbSUAhk9Vd1zda2SCz9A','PBtmpl0000000000000078',1222803258,3600,0,'ASC'),('y8XkRdxIperLKkJ3bL5sSQ','PBtmpl0000000000000078',1222803264,3600,0,'ASC'),('vTymIDYL2YqEh6PV50F7ew','PBtmpl0000000000000078',1222803302,3600,0,'ASC'),('lo1ac3BsoJx3ijGQ3gR-bQ','PBtmpl0000000000000078',1222803309,3600,0,'ASC'),('huASapWvFDzqwOSbcN-JFQ','PBtmpl0000000000000078',1222803313,3600,0,'ASC'),('9A-mg2gwWmaYi9o_1C7ArQ','PBtmpl0000000000000078',1222803338,3600,0,'ASC'),('yD1SMHelczihzjEmx6eXBA','PBtmpl0000000000000078',1222803342,3600,0,'ASC'),('pV7GnZdpjR3XpZaSINIoeg','PBtmpl0000000000000078',1222803347,3600,0,'ASC'),('71e17KeduiXgODLMlUxiow','PBtmpl0000000000000078',1222803352,3600,0,'ASC'),('Ik9HHky10DIyFTKehUD1dw','PBtmpl0000000000000078',1222803478,3600,0,'ASC'),('NywJYmGWe1f6EBXJnWg9Xg','PBtmpl0000000000000078',1222803638,3600,0,'ASC'),('AgyFhx3eXlfZXNp2MkrsiQ','PBtmpl0000000000000078',1222803665,3600,0,'ASC'),('F7MAQ-cpuvQ1KuC7J4P5zQ','PBtmpl0000000000000078',1222803673,3600,0,'ASC'),('BmLaN4rmAANkCglXUViEbg','PBtmpl0000000000000078',1222803871,3600,0,'ASC'),('X7DrzUcj8pOKFa_6k9D5iw','PBtmpl0000000000000078',1222804045,3600,0,'ASC'),('UL-ItI4L1Z6-WSuhuXVvsQ','PBtmpl0000000000000078',1225139673,3600,0,'ASC'),('7-0-style0000000000049','PBtmpl0000000000000078',1224117144,3600,0,'ASC'),('QpmlAiYZz6VsKBM-_0wXaw','PBtmpl0000000000000078',1224616691,3600,0,'ASC'),('HPDOcsj4gBme8D4svHodBw','PBtmpl0000000000000078',1225404573,3600,0,'ASC'),('IZkrow_zwvbf4FCH-taVTQ','PBtmpl0000000000000078',1226011853,3600,0,'ASC'),('K0YjxqOqr7RupSo6sIdcAg','PBtmpl0000000000000078',1227074310,3600,0,'ASC'),('_ilRXNR3s8F2vGJ_k9ePcg','PBtmpl0000000000000078',1226643205,3600,0,'ASC'),('qaVcU0FFzzraMX_bzELqzw','PBtmpl0000000000000078',1227074362,3600,0,'ASC'),('QHn6T9rU7KsnS3Y70KCNTg','PBtmpl0000000000000078',1233173545,3600,0,'ASC'),('HW-sPoDDZR8wBZ0YgFgPtg','PBtmpl0000000000000078',1227634350,3600,0,'ASC'),('AOjPG2NHgfL9Cq6dDJ7mew','PBtmpl0000000000000078',1236960881,3600,0,'ASC'),('jmlI9IK-lV8n2WMYmmPhAA','PBtmpl0000000000000078',1238106173,3600,0,'ASC'),('6uvSLY-ak_w4p_wS8q33cA','PBtmpl0000000000000078',1239213092,3600,0,'ASC'),('GaBAW-2iVhLMJaZQzVLE5A','PBtmpl0000000000000078',1240103565,3600,0,'ASC'),('lo1rpxn3t8YPyKGers5eQg','PBtmpl0000000000000078',1238625621,3600,0,'ASC'),('aNNC62qLAS6TB-0_MCYjsw','PBtmpl0000000000000078',1246969327,3600,0,'ASC'),('BFfNj5wA9bDw8H3cnr8pTw','PBtmpl0000000000000078',1247046273,3600,0,'ASC'),('f_tn9FfoSfKWX43F83v_3w','PBtmpl0000000000000078',1247053009,3600,0,'ASC'),('oGfxez5sksyB_PcaAsEm_Q','PBtmpl0000000000000078',1247053097,3600,0,'ASC'),('tPagC0AQErZXjLFZQ6OI1g','PBtmpl0000000000000078',1246966459,3600,0,'ASC'),('GYaFxnMu9UsEG8oanwB6TA','PBtmpl0000000000000078',1246965871,3600,0,'ASC'),('VZK3CRgiMb8r4dBjUmCTgQ','PBtmpl0000000000000078',1247046242,3600,0,'ASC'),('tXwf1zaOXTvsqPn6yu-GSw','PBtmpl0000000000000078',1246965607,3600,0,'ASC'),('5bnNzteN7w3NnK9mF4XiCg','PBtmpl0000000000000078',1250243000,3600,0,'ASC'),('RSAMkc6WQmfRE3TOr1_3Mw','PBtmpl0000000000000078',1250243000,3600,0,'ASC'),('fowHfgOkJtAxdst7rugTog','PBtmpl0000000000000078',1252595993,3600,0,'ASC'),('TvOZs8U1kRXLtwtmyW75pg','PBtmpl0000000000000078',1256092368,3600,0,'ASC'),('4qh0kIsFUdd4Ox-Iu1JZgg','PBtmpl0000000000000078',1257311886,3600,0,'ASC'),('-K8Hj45mbelljN9-0CXZxg','PBtmpl0000000000000078',1257311887,3600,0,'ASC'),('P_4uog81vSUK4KxuW_4GUA','PBtmpl0000000000000078',1258524916,3600,0,'ASC'),('t87D1138NhPHhA23-hozBA','PBtmpl0000000000000078',1273032716,3600,0,'ASC'),('QtBumey5ffc-xffRp1-7Aw','PBtmpl0000000000000078',1273032716,3600,0,'ASC'),('Q4uX_C557arTp6D_jwB1jQ','PBtmpl0000000000000078',1273032720,3600,0,'ASC'),('GNOAsX98vCsl0JRwfwL-gg','PBtmpl0000000000000078',1277868921,3600,0,'ASC'),('LdiozcIUciWuvt3Z-na5Ww','PBtmpl0000000000000078',1281501162,3600,0,'ASC'),('AssetReportFolder00001','PBtmpl0000000000000078',1281501163,3600,0,'ASC'),('N7uMnnicbyTEulcuRi1sSg','PBtmpl0000000000000078',1283900195,3600,0,'ASC'),('gI_TxK-5S4DNuv42wpImmw','PBtmpl0000000000000078',1285124155,3600,0,'ASC'),('kaPRSaf8UKiskiGEgJgLAw','PBtmpl0000000000000078',1285124155,3600,0,'ASC'),('RrV4aAPnn4dM0ZcU3OXnlw','PBtmpl0000000000000078',1286336607,3600,0,'ASC'),('1z9J1O08n_7gVVlBwSRBJQ','PBtmpl0000000000000078',1287545014,3600,0,'ASC'),('xSmREZO3GNzK3M5PaueOOQ','PBtmpl0000000000000078',1287545014,3600,0,'ASC'),('0bx-xoL8TSXXubFuqKAoVQ','PBtmpl0000000000000078',1287545014,3600,0,'ASC'),('taX2UYkFF21ALpFZY2rhMw','PBtmpl0000000000000078',1287545014,3600,0,'ASC'),('K0q_N885Httqev1VCqUWxg','PBtmpl0000000000000078',1287545014,3600,0,'ASC'),('fq1ZkYhH24R5tb96kuT10Q','PBtmpl0000000000000078',1287545014,3600,0,'ASC'),('oHk7fAFhEEkB7dHzi0QOQA','PBtmpl0000000000000078',1287545014,3600,0,'ASC'),('9M-lrlPQWeeNWfvnDnK_Xg','PBtmpl0000000000000078',1287545014,3600,0,'ASC'),('_gBYAdTcbkiyamnqi2Xskg','PBtmpl0000000000000078',1287545014,3600,0,'ASC'),('0iMMbGN3BevuCBHjjLiQNA','PBtmpl0000000000000078',1287545015,3600,0,'ASC'),('6A4yIjWwJfIE0Ep-I0jutg','PBtmpl0000000000000078',1287545015,3600,0,'ASC'),('_cD6DLM_Fs5IlrLeWUjrjg','PBtmpl0000000000000078',1287545015,3600,0,'ASC'),('f2EktltCvwQpl_3-B1yR7g','PBtmpl0000000000000078',1288748251,3600,0,'ASC'),('S1A9iAwKcQQ6P20uTqw-Ew','PBtmpl0000000000000078',1300763664,3600,0,'ASC'),('CQp-RFA2pMh5lFSggPPPYg','PBtmpl0000000000000078',1301973995,3600,0,'ASC'),('_Mi_NTd3x8UB96LWezWHnw','PBtmpl0000000000000078',1301973995,3600,0,'ASC'),('g3JH1PRq6m6Bj_PnGpcrSQ','PBtmpl0000000000000078',1301973996,3600,0,'ASC'),('G0hl4VilbFKipToyxKqFrg','PBtmpl0000000000000078',1301973997,3600,0,'ASC'),('GWU2qZqe6yEuAKG-5HtBdg','PBtmpl0000000000000078',1301973997,3600,0,'ASC'),('AsfpsOpsGzZCb9m7MyxPuw','PBtmpl0000000000000078',1301973997,3600,0,'ASC'),('1qFjOEiILIwr1xB5_ebppQ','PBtmpl0000000000000078',1301973998,3600,0,'ASC'),('xD76UfQ_JnSgTLBNvytcpQ','PBtmpl0000000000000078',1301973998,3600,0,'ASC'),('G5DgNizuG3jXkjPp6UaGrA','PBtmpl0000000000000078',1301973999,3600,0,'ASC'),('brxm_faNdZX5tRo3p50g3g','PBtmpl0000000000000078',1304392055,3600,0,'ASC'),('aNmgn0cd6tldmC1FpW4KbA','PBtmpl0000000000000078',1326776036,3600,0,'ASC'),('jEz8iTGNWEt2I05IhVV19Q','PBtmpl0000000000000078',1326776037,3600,0,'ASC'); ALTER TABLE `Folder` ENABLE KEYS; ALTER TABLE `Fork` DISABLE KEYS; -INSERT INTO `Fork` VALUES ('-mq3IgzukSrYDglDsAjBaA','3',NULL,'[{\"success\":1,\"url\":\"article-with-pagination\",\"focus\":1}]',NULL,1288747943,1288747943,1,1),('VqctmpgR4LeAEiSN99BcXw','3',NULL,'[{\"success\":1,\"url\":\"bare_image\",\"focus\":1}]',NULL,1288747987,1288747987,1,1),('rmZzfEszhChsVWzdovqeaQ','3',NULL,'[{\"success\":1,\"url\":\"root/import/ems/ems-event-submission\"},{\"success\":1,\"url\":\"root/import/ems/ems-event-submission-main\"},{\"success\":1,\"url\":\"root/import/ems/ems-event-submission-queue\",\"focus\":1}]',NULL,1288748017,1288748017,1,1),('kqZ1ddGvfvpRDk_u7GcJyw','3',NULL,'[{\"success\":1,\"url\":\"request-tracker-prototype\",\"focus\":1}]',NULL,1288748045,1288748045,1,1),('_kS_Xon4qNt2GWNbPk_DfA','3',NULL,'[{\"success\":1,\"url\":\"three-columns\",\"focus\":1}]',NULL,1288748064,1288748064,1,1),('tJlKtwEspjnDIIE1NuEXZg','3',NULL,'[{\"success\":1,\"url\":\"media/picklanguage\",\"focus\":1}]',NULL,1288748085,1288748085,1,1),('0gDP5tq9Ea2vhhHjoCKBHA','3',NULL,'[{\"success\":1,\"url\":\"shopping-cart-collateral-items/select-gateway-default\",\"focus\":1}]',NULL,1288748105,1288748106,1,1),('8XQJ0Xe64J2Ic6LysAlYtA','3',NULL,'[{\"success\":1,\"url\":\"root/import/auth/twitter/chooseusername/default-twitter-choose-username\",\"focus\":1}]',NULL,1288748133,1288748133,1,1),('eXLNOrKRmqqcn5SPgB2Tog','3',NULL,'[{\"success\":1,\"url\":\"root/import/gallery-templates/dragdropsorting.js\",\"focus\":1}]',NULL,1288748204,1288748204,1,1),('4VTB7K-CaJYUr_VTRX7XAg','3',NULL,'[{\"success\":1,\"url\":\"root/import/default-asset-subscription\",\"focus\":1}]',NULL,1288748258,1288748259,1,1),('phuKyKjKNDM3C-3P306ZQg','3',NULL,'[{\"success\":1,\"url\":\"admin_progress_bar\",\"focus\":1}]',NULL,1288748300,1288748300,1,1); +INSERT INTO `Fork` VALUES ('-mq3IgzukSrYDglDsAjBaA','3',NULL,'[{\"success\":1,\"url\":\"article-with-pagination\",\"focus\":1}]',NULL,1288747943,1288747943,1,1,NULL),('VqctmpgR4LeAEiSN99BcXw','3',NULL,'[{\"success\":1,\"url\":\"bare_image\",\"focus\":1}]',NULL,1288747987,1288747987,1,1,NULL),('rmZzfEszhChsVWzdovqeaQ','3',NULL,'[{\"success\":1,\"url\":\"root/import/ems/ems-event-submission\"},{\"success\":1,\"url\":\"root/import/ems/ems-event-submission-main\"},{\"success\":1,\"url\":\"root/import/ems/ems-event-submission-queue\",\"focus\":1}]',NULL,1288748017,1288748017,1,1,NULL),('kqZ1ddGvfvpRDk_u7GcJyw','3',NULL,'[{\"success\":1,\"url\":\"request-tracker-prototype\",\"focus\":1}]',NULL,1288748045,1288748045,1,1,NULL),('_kS_Xon4qNt2GWNbPk_DfA','3',NULL,'[{\"success\":1,\"url\":\"three-columns\",\"focus\":1}]',NULL,1288748064,1288748064,1,1,NULL),('tJlKtwEspjnDIIE1NuEXZg','3',NULL,'[{\"success\":1,\"url\":\"media/picklanguage\",\"focus\":1}]',NULL,1288748085,1288748085,1,1,NULL),('0gDP5tq9Ea2vhhHjoCKBHA','3',NULL,'[{\"success\":1,\"url\":\"shopping-cart-collateral-items/select-gateway-default\",\"focus\":1}]',NULL,1288748105,1288748106,1,1,NULL),('8XQJ0Xe64J2Ic6LysAlYtA','3',NULL,'[{\"success\":1,\"url\":\"root/import/auth/twitter/chooseusername/default-twitter-choose-username\",\"focus\":1}]',NULL,1288748133,1288748133,1,1,NULL),('eXLNOrKRmqqcn5SPgB2Tog','3',NULL,'[{\"success\":1,\"url\":\"root/import/gallery-templates/dragdropsorting.js\",\"focus\":1}]',NULL,1288748204,1288748204,1,1,NULL),('4VTB7K-CaJYUr_VTRX7XAg','3',NULL,'[{\"success\":1,\"url\":\"root/import/default-asset-subscription\",\"focus\":1}]',NULL,1288748258,1288748259,1,1,NULL),('phuKyKjKNDM3C-3P306ZQg','3',NULL,'[{\"success\":1,\"url\":\"admin_progress_bar\",\"focus\":1}]',NULL,1288748300,1288748300,1,1,NULL); ALTER TABLE `Fork` ENABLE KEYS; ALTER TABLE `ImageAsset` DISABLE KEYS; -INSERT INTO `ImageAsset` VALUES ('7-0-style0000000000002',50,NULL,1147642492,NULL),('7-0-style0000000000004',50,NULL,1147642493,NULL),('7-0-style0000000000005',50,NULL,1147642493,NULL),('7-0-style0000000000006',50,NULL,1147642493,NULL),('7-0-style0000000000007',50,NULL,1147642493,NULL),('7-0-style0000000000008',50,NULL,1147642494,NULL),('7-0-style0000000000009',50,NULL,1147642494,NULL),('7-0-style0000000000010',50,NULL,1147642494,NULL),('7-0-style0000000000011',50,NULL,1147642495,NULL),('7-0-style0000000000012',50,NULL,1147642495,NULL),('7-0-style0000000000013',50,NULL,1147642495,NULL),('7-0-style0000000000014',50,NULL,1147642495,NULL),('7-0-style0000000000015',50,NULL,1147642496,NULL),('7-0-style0000000000016',50,NULL,1147642496,NULL),('7-0-style0000000000017',50,NULL,1147642496,NULL),('7-0-style0000000000018',50,NULL,1147642496,NULL),('7-0-style0000000000019',50,NULL,1147642497,NULL),('7-0-style0000000000020',50,NULL,1147642497,NULL),('7-0-style0000000000021',50,NULL,1147642497,NULL),('7-0-style0000000000022',50,NULL,1147642497,NULL),('7-0-style0000000000023',50,NULL,1147642498,NULL),('7-0-style0000000000024',50,NULL,1147642498,NULL),('7-0-style0000000000030',50,NULL,1147642499,NULL),('7-0-style0000000000032',50,NULL,1147642500,NULL),('7-0-style0000000000034',50,NULL,1147642500,NULL),('7-0-style0000000000035',50,NULL,1147642501,NULL),('7-0-style0000000000036',50,NULL,1147642501,NULL),('7-0-style0000000000037',50,NULL,1147642501,NULL),('7-0-style0000000000038',50,NULL,1147642501,NULL),('7-0-style0000000000039',50,NULL,1147642502,NULL),('7-0-style0000000000040',50,NULL,1147642502,NULL),('7-0-style0000000000041',50,NULL,1147642502,NULL),('7-0-style0000000000042',50,NULL,1147642502,NULL),('7-0-style0000000000043',50,NULL,1147642503,NULL),('7-0-style0000000000044',50,NULL,1147642503,NULL),('7-0-style0000000000045',50,NULL,1147642503,NULL),('7-0-style0000000000046',50,NULL,1147642504,NULL),('7-0-style0000000000048',50,NULL,1147642504,NULL),('7-0-style0000000000052',50,'style=\"border-style:none;\"',1147642505,NULL),('7-0-style0000000000053',50,'style=\"border-style:none;\"',1147642505,NULL),('7-0-style0000000000054',50,'style=\"border-style:none;\"',1147642506,NULL),('7-0-style0000000000055',50,'style=\"border-style:none;\"',1147642506,NULL),('7-0-style0000000000056',50,'style=\"border-style:none;\"',1147642506,NULL),('7-0-style0000000000057',50,'style=\"border-style:none;\"',1147642507,NULL),('7-0-style0000000000058',50,'style=\"border-style:none;\"',1147642507,NULL),('7-0-style0000000000060',50,'style=\"border-style:none;\"',1147642508,NULL),('7-0-style0000000000061',50,'style=\"border-style:none;\"',1147642508,NULL),('7-0-style0000000000062',50,'style=\"border-style:none;\"',1147642508,NULL),('7-0-style0000000000063',50,'style=\"border-style:none;\"',1147642508,NULL),('7-0-style0000000000064',50,'style=\"border-style:none;\"',1147642509,NULL),('7-0-style0000000000065',50,'style=\"border-style:none;\"',1147642509,NULL),('7-0-style0000000000066',50,'style=\"border-style:none;\"',1147642509,NULL),('7-0-style0000000000067',50,'style=\"border-style:none;\"',1147642509,NULL),('7-0-style0000000000068',50,'style=\"border-style:none;\"',1147642510,NULL),('7-0-style0000000000071',50,'style=\"border-style:none;\"',1147642511,NULL),('_bZJ9LA_KNekZiFPaP2SeQ',50,'style=\"border-style:none;\" alt=\"shelf-titles.jpg\"',1210777868,NULL),('hQ7z33_jOYkQ8WNX5xy9Sw',50,'style=\"border-style:none;\" alt=\"style-button.gif\"',1209509455,NULL),('vWW_DcHiYSrKZOkkIfEfcQ',50,'style=\"border-style:none;\" alt=\"row-2.jpg\"',1209509433,NULL),('_bPYzRA87NTAUIKlfrJMHg',50,'style=\"border-style:none;\" alt=\"row-1.jpg\"',1209509433,NULL),('nJjZHRwdDs5MAZYsAyioHw',50,'style=\"border-style:none;\" alt=\"title-bg.jpg\"',1209509433,NULL),('8hxfkrJPeFVRWF5piCNJ1A',50,'style=\"border-style:none;\" alt=\"field-bg.jpg\"',1209509433,NULL),('Osx7WN52iIKHZFT4vqUBHQ',50,'style=\"border-style:none;\" alt=\"search-btn.gif\"',1209509433,NULL),('oWff8fGzRdHPyq5VNREe9Q',50,'style=\"border-style:none;\" alt=\"top-bg.jpg\"',1209509433,NULL),('uqbkvb1b9443VvfkyRz95w',50,'style=\"border-style:none;\" alt=\"save-button.gif\"',1209509433,NULL),('8YiMkcz32xalkAn3WBLpag',50,'style=\"border-style:none;\" alt=\"go-btn.gif\"',1210181860,NULL),('7-0-style0000000000059',50,'alt=\"main_top.jpg\"',1213386091,NULL),('o_pq_e4vRyhMOKFzs61eag',50,'style=\"border-style:none;\" alt=\"book-covers.jpg\"',1215714957,''),('hBpisL-_URyZnh9clR5ohA',50,'style=\"border-style:none;\" alt=\"no_photo.gif\"',1227634417,''),('FOBV6KkifreXa4GmEAUU4A',50,'style=\"border-style:none;\" alt=\"no_photo_sm.gif\"',1227634447,''),('-0sK2rX1cwQt1ipUSqsiQQ',50,'style=\"border-style:none;\" alt=\"bg.gif\"',1273032716,''),('hS_eOaVz9Qb5ixndK9EXAw',50,'style=\"border-style:none;\" alt=\"header.jpg\"',1273032716,''),('k2p-Be8C98pf2cRq7E-JHg',50,'style=\"border-style:none;\" alt=\"tab_link.gif\"',1273032716,''),('aYG4fjbMPbC4LCuuMp4gGA',50,'style=\"border-style:none;\" alt=\"tab_hover.gif\"',1273032716,''),('F122Ey0NtVAw6Lfv1M6G_Q',50,'style=\"border-style:none;\" alt=\"ico_archive.gif\"',1273032716,''),('qmXHKrQ6EDLSOGkrEKRUDA',50,'style=\"border-style:none;\" alt=\"bg_page_in.jpg\"',1273032716,''),('4qZgXjPPO4fwV879yu5XUg',50,'style=\"border-style:none;\" alt=\"bg_page.JPG\"',1273032716,''),('mb-xeAugm5GJdvu-Wh0MtQ',50,'style=\"border-style:none;\" alt=\"search_submit.gif\"',1273032717,''),('84Y9CwgzP6eNU7wZnk019Q',50,'style=\"border-style:none;\" alt=\"ico_date.gif\"',1273032717,''),('ikXTtJKZfHVxqw-47E4AQA',50,'style=\"border-style:none;\" alt=\"ico_user.gif\"',1273032717,''),('DhRWPTgzhvju_-TbMN3CwA',50,'style=\"border-style:none;\" alt=\"ico_comments.gif\"',1273032717,''),('6njI-pZz2bwsjWh-Q1_11g',50,'style=\"border-style:none;\" alt=\"ico_list.gif\"',1273032717,''),('_Hz1Gnd3yEnJzVS7l7nJMQ',50,'style=\"border-style:none;\" alt=\"content_all_bg.PNG\"',1273032717,''),('VOOrXK5dFnkGih7aTkuDWA',50,'style=\"border-style:none;\" alt=\"search.PNG\"',1273032717,''),('ruf-QejOkUHDRtfgakHlbA',50,'style=\"border-style:none;\" alt=\"col_title_bg_long.GIF\"',1273032717,''),('FSHy5KjQjkt599PHS41seA',50,'style=\"border-style:none;\" alt=\"footer.jpg\"',1273032717,''),('nuYYXAz4KNNxgfumfnpo_g',50,'style=\"border-style:none;\" alt=\"ico_top.gif\"',1273032718,''),('Mr7ljjoy6n4fZojpQWajKQ',50,'style=\"border-style:none;\" alt=\"ico_links.gif\"',1273032718,''),('ApkqpDOrJDxK3QrWBGSRIg',50,'style=\"border-style:none;\" alt=\"ico_archive2.gif\"',1273032718,''),('AzzTY0Lay1f_YGeQJFnQCA',50,'style=\"border-style:none;\" alt=\"ico_list.gif\"',1273032718,''),('bCGr7FRtZt-XYlBVUEJBjw',50,'style=\"border-style:none;\"',1278013724,''),('bANo8aiAPA7aY_oQZKxIWw',50,'style=\"border-style:none;\" alt=\"rss.gif\"',1285124155,''),('2ci_v2d4x4uvyjTRlC49OA',50,'style=\"border-style:none;\" alt=\"moveDown.gif\"',1285124156,''),('O-EsSzKgAk1KolFT-x_KsA',50,'style=\"border-style:none;\" alt=\"moveUp.gif\"',1285124156,''),('fdd8tGExyVwHyrB8RBbKXg',50,'style=\"border-style:none;\" alt=\"next.gif\"',1285124156,''),('BpisgHl4ZDcSECJp6oib1w',50,'style=\"border-style:none;\" alt=\"play.gif\"',1285124156,''),('zshreRgPAXtnF0DtVbQ1Yg',50,'style=\"border-style:none;\" alt=\"previous.gif\"',1285124156,''),('POVcY79vIqAHR8OfGt36aw',50,'style=\"border-style:none;\" alt=\"pagination_button.jpg\"',1285124156,''),('hIB-z34r8Xl-vYVYCkKr-w',50,'style=\"border-style:none;\" alt=\"bar-btn-r.jpg\"',1285124156,''),('-mPUoFlYcjqjPUPRLAlxNQ',50,'style=\"border-style:none;\" alt=\"search-field-r.jpg\"',1285124156,''),('MDpUOR-N8KMyt1J7Hh_h4w',50,'style=\"border-style:none;\" alt=\"bar-btn.jpg\"',1285124156,''),('YfXKByTwDZVituMc4h13Dg',50,'style=\"border-style:none;\" alt=\"pagination_bg.jpg\"',1285124156,''),('esko_HSU0Gh-uJZ1h3xRmQ',50,'style=\"border-style:none;\" alt=\"search-field-l.jpg\"',1285124156,''),('oSqpGswzpBG_ErdfYwIO8A',50,'style=\"border-style:none;\" alt=\"top_bg.jpg\"',1285124156,''),('MXJklShZvLLB_DSnZQmXrQ',50,'style=\"border-style:none;\" alt=\"title_bg.jpg\"',1285124156,''),('BthxD5oJ0idmsyI3ioA2FA',50,'style=\"border-style:none;\" alt=\"bar-btn-l.jpg\"',1285124156,''),('aZ-1HYQamkRHYXvzAra8WQ',50,'style=\"border-style:none;\" alt=\"search-field.jpg\"',1285124156,''),('eRkb94OYcS5AdcrrerOP5Q',50,'style=\"border-style:none;\" alt=\"rss.gif\"',1285124157,''),('TbnkjAJQEASORXIpYqDkcA',50,'style=\"border-style:none;\" alt=\"blank-image.jpg\"',1285124157,''),('er-3faBjY-hhlDcc5aKqdQ',50,'style=\"border-style:none;\" alt=\"top_bg.jpg\"',1285124157,''),('8bFsu2FJUqHRUiHcozcVFw',50,'style=\"border-style:none;\" alt=\"sub-btn-l.jpg\"',1285124157,''),('34Aayx5eA320D8VfhdfDBw',50,'style=\"border-style:none;\" alt=\"sub-btn-r.jpg\"',1285124157,''),('TlhKOVmWblZOsAdqmhEpeg',50,'style=\"border-style:none;\" alt=\"sub-btn.jpg\"',1285124157,''),('Nx0ypjO3cN6QdZUBUEE0lA',50,'style=\"border-style:none;\" alt=\"pic-title-bg.jpg\"',1285124157,''),('CmFZLN7iPS7XXvUEsxKPKA',50,'style=\"border-style:none;\" alt=\"row-2.jpg\"',1285124157,''),('v_XBgwwZqgW1D5s4y05qfg',50,'style=\"border-style:none;\" alt=\"addtl-info.gif\"',1285124157,''),('4TdAkKoQbSCvI7QWcW889A',50,'style=\"border-style:none;\" alt=\"row-1.jpg\"',1285124157,''),('SAgK6eDPCG1cgkJ59WapHQ',50,'style=\"border-style:none;\" alt=\"prev-btn.gif\"',1285124157,''),('XJYLuvGy9ubF7JNKyINtpA',50,'style=\"border-style:none;\" alt=\"play-btn.gif\"',1285124157,''),('RWj7hyv2SpZuXxwj1Wocug',50,'style=\"border-style:none;\" alt=\"next-btn.gif\"',1285124157,''),('aq8QElnlm3YufAoxRz9Pcg',50,'style=\"border-style:none;\" alt=\"data-bg.jpg\"',1285124158,''),('i6-BofrJJYozovlzFBByXg',50,'style=\"border-style:none;\"',1285124158,''),('fU_OZCmtdFNJ8a6bMve8ng',50,'style=\"border-style:none;\"',1285124158,''),('YXCtusAxb4vzZ5sTnUA5DA',50,'style=\"border-style:none;\"',1285124158,''),('k_xuE82wwp8gFVl9aaaG8g',50,'style=\"border-style:none;\"',1285124158,''),('NPM_WItpM5IzLWBhWjYfCA',50,'style=\"border-style:none;\"',1285124158,''),('A_5LVQQWR73QZR8FFbny_w',50,'style=\"border-style:none;\" alt=\"bg.gif\"',1301973995,''),('wywIfa_VuTsq0c5Ed-W-MA',50,'style=\"border-style:none;\" alt=\"bullet.gif\"',1301973995,''),('xmykMFjri1O2NrYHbeToVQ',50,'style=\"border-style:none;\" alt=\"footerbg.gif\"',1301973995,''),('0IIGNBs_-INzqBC5VLeJgw',50,'style=\"border-style:none;\" alt=\"headerbg.gif\"',1301973996,''),('FXmePdyS0YKuZ1VCGGpK9w',50,'style=\"border-style:none;\" alt=\"quote.gif\"',1301973996,''),('66qCywiE_fiL9u5YIaJhgw',50,'style=\"border-style:none;\" alt=\"tableft.gif\"',1301973996,''),('n5VpG4lFsOG1elaWDQbilw',50,'style=\"border-style:none;\" alt=\"tabright.gif\"',1301973996,''),('pAXR7Kby4O-dSxOwLp1GaA',50,'style=\"border-style:none;\" alt=\"top_mod.png\"',1301973998,''),('TthzMLO4n3qxy59QZ5YBHg',50,'style=\"border-style:none;\" alt=\"menu_bg_dark.png\"',1301973998,''),('3n31SQjYa150TBrRBgMPhA',50,'style=\"border-style:none;\" alt=\"menu_bg_light.png\"',1301973998,''),('R4RxDufGbbIzEmpcoEcLrw',50,'style=\"border-style:none;\" alt=\"logo_full.jpg\"',1301973998,''),('2q5fxatSFLgIhXaUX-oSvg',50,'style=\"border-style:none;\" alt=\"bottom-left.jpg\"',1313542960,''),('_d5WTkKjnwct-_Dk7gZHvQ',50,'style=\"border-style:none;\" alt=\"bottom-right.jpg\"',1313542960,''),('Iz2mUR3jCPKyemwAea4b2g',50,'style=\"border-style:none;\" alt=\"input_bg.jpg\"',1313542960,''),('JU9bjsLRoWj7GVHs__prig',50,'style=\"border-style:none;\" alt=\"top-left.jpg\"',1313542960,''),('noOlnjQGexHg8c4bGVUo9g',50,'style=\"border-style:none;\" alt=\"top-right.jpg\"',1313542960,''); +INSERT INTO `ImageAsset` VALUES ('7-0-style0000000000002',50,NULL,1147642492,NULL),('7-0-style0000000000004',50,NULL,1147642493,NULL),('7-0-style0000000000005',50,NULL,1147642493,NULL),('7-0-style0000000000006',50,NULL,1147642493,NULL),('7-0-style0000000000007',50,NULL,1147642493,NULL),('7-0-style0000000000008',50,NULL,1147642494,NULL),('7-0-style0000000000009',50,NULL,1147642494,NULL),('7-0-style0000000000010',50,NULL,1147642494,NULL),('7-0-style0000000000011',50,NULL,1147642495,NULL),('7-0-style0000000000012',50,NULL,1147642495,NULL),('7-0-style0000000000013',50,NULL,1147642495,NULL),('7-0-style0000000000014',50,NULL,1147642495,NULL),('7-0-style0000000000015',50,NULL,1147642496,NULL),('7-0-style0000000000016',50,NULL,1147642496,NULL),('7-0-style0000000000017',50,NULL,1147642496,NULL),('7-0-style0000000000018',50,NULL,1147642496,NULL),('7-0-style0000000000019',50,NULL,1147642497,NULL),('7-0-style0000000000020',50,NULL,1147642497,NULL),('7-0-style0000000000021',50,NULL,1147642497,NULL),('7-0-style0000000000022',50,NULL,1147642497,NULL),('7-0-style0000000000023',50,NULL,1147642498,NULL),('7-0-style0000000000024',50,NULL,1147642498,NULL),('7-0-style0000000000030',50,NULL,1147642499,NULL),('7-0-style0000000000032',50,NULL,1147642500,NULL),('7-0-style0000000000034',50,NULL,1147642500,NULL),('7-0-style0000000000035',50,NULL,1147642501,NULL),('7-0-style0000000000036',50,NULL,1147642501,NULL),('7-0-style0000000000037',50,NULL,1147642501,NULL),('7-0-style0000000000038',50,NULL,1147642501,NULL),('7-0-style0000000000039',50,NULL,1147642502,NULL),('7-0-style0000000000040',50,NULL,1147642502,NULL),('7-0-style0000000000041',50,NULL,1147642502,NULL),('7-0-style0000000000042',50,NULL,1147642502,NULL),('7-0-style0000000000043',50,NULL,1147642503,NULL),('7-0-style0000000000044',50,NULL,1147642503,NULL),('7-0-style0000000000045',50,NULL,1147642503,NULL),('7-0-style0000000000046',50,NULL,1147642504,NULL),('7-0-style0000000000048',50,NULL,1147642504,NULL),('7-0-style0000000000052',50,'style=\"border-style:none;\"',1147642505,NULL),('7-0-style0000000000053',50,'style=\"border-style:none;\"',1147642505,NULL),('7-0-style0000000000054',50,'style=\"border-style:none;\"',1147642506,NULL),('7-0-style0000000000055',50,'style=\"border-style:none;\"',1147642506,NULL),('7-0-style0000000000056',50,'style=\"border-style:none;\"',1147642506,NULL),('7-0-style0000000000057',50,'style=\"border-style:none;\"',1147642507,NULL),('7-0-style0000000000058',50,'style=\"border-style:none;\"',1147642507,NULL),('7-0-style0000000000060',50,'style=\"border-style:none;\"',1147642508,NULL),('7-0-style0000000000061',50,'style=\"border-style:none;\"',1147642508,NULL),('7-0-style0000000000062',50,'style=\"border-style:none;\"',1147642508,NULL),('7-0-style0000000000063',50,'style=\"border-style:none;\"',1147642508,NULL),('7-0-style0000000000064',50,'style=\"border-style:none;\"',1147642509,NULL),('7-0-style0000000000065',50,'style=\"border-style:none;\"',1147642509,NULL),('7-0-style0000000000066',50,'style=\"border-style:none;\"',1147642509,NULL),('7-0-style0000000000067',50,'style=\"border-style:none;\"',1147642509,NULL),('7-0-style0000000000068',50,'style=\"border-style:none;\"',1147642510,NULL),('7-0-style0000000000071',50,'style=\"border-style:none;\"',1147642511,NULL),('_bZJ9LA_KNekZiFPaP2SeQ',50,'style=\"border-style:none;\" alt=\"shelf-titles.jpg\"',1210777868,NULL),('hQ7z33_jOYkQ8WNX5xy9Sw',50,'style=\"border-style:none;\" alt=\"style-button.gif\"',1209509455,NULL),('vWW_DcHiYSrKZOkkIfEfcQ',50,'style=\"border-style:none;\" alt=\"row-2.jpg\"',1209509433,NULL),('_bPYzRA87NTAUIKlfrJMHg',50,'style=\"border-style:none;\" alt=\"row-1.jpg\"',1209509433,NULL),('nJjZHRwdDs5MAZYsAyioHw',50,'style=\"border-style:none;\" alt=\"title-bg.jpg\"',1209509433,NULL),('8hxfkrJPeFVRWF5piCNJ1A',50,'style=\"border-style:none;\" alt=\"field-bg.jpg\"',1209509433,NULL),('Osx7WN52iIKHZFT4vqUBHQ',50,'style=\"border-style:none;\" alt=\"search-btn.gif\"',1209509433,NULL),('oWff8fGzRdHPyq5VNREe9Q',50,'style=\"border-style:none;\" alt=\"top-bg.jpg\"',1209509433,NULL),('uqbkvb1b9443VvfkyRz95w',50,'style=\"border-style:none;\" alt=\"save-button.gif\"',1209509433,NULL),('8YiMkcz32xalkAn3WBLpag',50,'style=\"border-style:none;\" alt=\"go-btn.gif\"',1210181860,NULL),('7-0-style0000000000059',50,'alt=\"main_top.jpg\"',1213386091,NULL),('o_pq_e4vRyhMOKFzs61eag',50,'style=\"border-style:none;\" alt=\"book-covers.jpg\"',1215714957,''),('hBpisL-_URyZnh9clR5ohA',50,'style=\"border-style:none;\" alt=\"no_photo.gif\"',1227634417,''),('FOBV6KkifreXa4GmEAUU4A',50,'style=\"border-style:none;\" alt=\"no_photo_sm.gif\"',1227634447,''),('-0sK2rX1cwQt1ipUSqsiQQ',50,'style=\"border-style:none;\" alt=\"bg.gif\"',1273032716,''),('hS_eOaVz9Qb5ixndK9EXAw',50,'style=\"border-style:none;\" alt=\"header.jpg\"',1273032716,''),('k2p-Be8C98pf2cRq7E-JHg',50,'style=\"border-style:none;\" alt=\"tab_link.gif\"',1273032716,''),('aYG4fjbMPbC4LCuuMp4gGA',50,'style=\"border-style:none;\" alt=\"tab_hover.gif\"',1273032716,''),('F122Ey0NtVAw6Lfv1M6G_Q',50,'style=\"border-style:none;\" alt=\"ico_archive.gif\"',1273032716,''),('qmXHKrQ6EDLSOGkrEKRUDA',50,'style=\"border-style:none;\" alt=\"bg_page_in.jpg\"',1273032716,''),('4qZgXjPPO4fwV879yu5XUg',50,'style=\"border-style:none;\" alt=\"bg_page.JPG\"',1273032716,''),('mb-xeAugm5GJdvu-Wh0MtQ',50,'style=\"border-style:none;\" alt=\"search_submit.gif\"',1273032717,''),('84Y9CwgzP6eNU7wZnk019Q',50,'style=\"border-style:none;\" alt=\"ico_date.gif\"',1273032717,''),('ikXTtJKZfHVxqw-47E4AQA',50,'style=\"border-style:none;\" alt=\"ico_user.gif\"',1273032717,''),('DhRWPTgzhvju_-TbMN3CwA',50,'style=\"border-style:none;\" alt=\"ico_comments.gif\"',1273032717,''),('6njI-pZz2bwsjWh-Q1_11g',50,'style=\"border-style:none;\" alt=\"ico_list.gif\"',1273032717,''),('_Hz1Gnd3yEnJzVS7l7nJMQ',50,'style=\"border-style:none;\" alt=\"content_all_bg.PNG\"',1273032717,''),('VOOrXK5dFnkGih7aTkuDWA',50,'style=\"border-style:none;\" alt=\"search.PNG\"',1273032717,''),('ruf-QejOkUHDRtfgakHlbA',50,'style=\"border-style:none;\" alt=\"col_title_bg_long.GIF\"',1273032717,''),('FSHy5KjQjkt599PHS41seA',50,'style=\"border-style:none;\" alt=\"footer.jpg\"',1273032717,''),('nuYYXAz4KNNxgfumfnpo_g',50,'style=\"border-style:none;\" alt=\"ico_top.gif\"',1273032718,''),('Mr7ljjoy6n4fZojpQWajKQ',50,'style=\"border-style:none;\" alt=\"ico_links.gif\"',1273032718,''),('ApkqpDOrJDxK3QrWBGSRIg',50,'style=\"border-style:none;\" alt=\"ico_archive2.gif\"',1273032718,''),('AzzTY0Lay1f_YGeQJFnQCA',50,'style=\"border-style:none;\" alt=\"ico_list.gif\"',1273032718,''),('bCGr7FRtZt-XYlBVUEJBjw',50,'style=\"border-style:none;\"',1278013724,''),('bANo8aiAPA7aY_oQZKxIWw',50,'style=\"border-style:none;\" alt=\"rss.gif\"',1285124155,''),('2ci_v2d4x4uvyjTRlC49OA',50,'style=\"border-style:none;\" alt=\"moveDown.gif\"',1285124156,''),('O-EsSzKgAk1KolFT-x_KsA',50,'style=\"border-style:none;\" alt=\"moveUp.gif\"',1285124156,''),('fdd8tGExyVwHyrB8RBbKXg',50,'style=\"border-style:none;\" alt=\"next.gif\"',1285124156,''),('BpisgHl4ZDcSECJp6oib1w',50,'style=\"border-style:none;\" alt=\"play.gif\"',1285124156,''),('zshreRgPAXtnF0DtVbQ1Yg',50,'style=\"border-style:none;\" alt=\"previous.gif\"',1285124156,''),('POVcY79vIqAHR8OfGt36aw',50,'style=\"border-style:none;\" alt=\"pagination_button.jpg\"',1285124156,''),('hIB-z34r8Xl-vYVYCkKr-w',50,'style=\"border-style:none;\" alt=\"bar-btn-r.jpg\"',1285124156,''),('-mPUoFlYcjqjPUPRLAlxNQ',50,'style=\"border-style:none;\" alt=\"search-field-r.jpg\"',1285124156,''),('MDpUOR-N8KMyt1J7Hh_h4w',50,'style=\"border-style:none;\" alt=\"bar-btn.jpg\"',1285124156,''),('YfXKByTwDZVituMc4h13Dg',50,'style=\"border-style:none;\" alt=\"pagination_bg.jpg\"',1285124156,''),('esko_HSU0Gh-uJZ1h3xRmQ',50,'style=\"border-style:none;\" alt=\"search-field-l.jpg\"',1285124156,''),('oSqpGswzpBG_ErdfYwIO8A',50,'style=\"border-style:none;\" alt=\"top_bg.jpg\"',1285124156,''),('MXJklShZvLLB_DSnZQmXrQ',50,'style=\"border-style:none;\" alt=\"title_bg.jpg\"',1285124156,''),('BthxD5oJ0idmsyI3ioA2FA',50,'style=\"border-style:none;\" alt=\"bar-btn-l.jpg\"',1285124156,''),('aZ-1HYQamkRHYXvzAra8WQ',50,'style=\"border-style:none;\" alt=\"search-field.jpg\"',1285124156,''),('eRkb94OYcS5AdcrrerOP5Q',50,'style=\"border-style:none;\" alt=\"rss.gif\"',1285124157,''),('TbnkjAJQEASORXIpYqDkcA',50,'style=\"border-style:none;\" alt=\"blank-image.jpg\"',1285124157,''),('er-3faBjY-hhlDcc5aKqdQ',50,'style=\"border-style:none;\" alt=\"top_bg.jpg\"',1285124157,''),('8bFsu2FJUqHRUiHcozcVFw',50,'style=\"border-style:none;\" alt=\"sub-btn-l.jpg\"',1285124157,''),('34Aayx5eA320D8VfhdfDBw',50,'style=\"border-style:none;\" alt=\"sub-btn-r.jpg\"',1285124157,''),('TlhKOVmWblZOsAdqmhEpeg',50,'style=\"border-style:none;\" alt=\"sub-btn.jpg\"',1285124157,''),('Nx0ypjO3cN6QdZUBUEE0lA',50,'style=\"border-style:none;\" alt=\"pic-title-bg.jpg\"',1285124157,''),('CmFZLN7iPS7XXvUEsxKPKA',50,'style=\"border-style:none;\" alt=\"row-2.jpg\"',1285124157,''),('v_XBgwwZqgW1D5s4y05qfg',50,'style=\"border-style:none;\" alt=\"addtl-info.gif\"',1285124157,''),('4TdAkKoQbSCvI7QWcW889A',50,'style=\"border-style:none;\" alt=\"row-1.jpg\"',1285124157,''),('SAgK6eDPCG1cgkJ59WapHQ',50,'style=\"border-style:none;\" alt=\"prev-btn.gif\"',1285124157,''),('XJYLuvGy9ubF7JNKyINtpA',50,'style=\"border-style:none;\" alt=\"play-btn.gif\"',1285124157,''),('RWj7hyv2SpZuXxwj1Wocug',50,'style=\"border-style:none;\" alt=\"next-btn.gif\"',1285124157,''),('aq8QElnlm3YufAoxRz9Pcg',50,'style=\"border-style:none;\" alt=\"data-bg.jpg\"',1285124158,''),('i6-BofrJJYozovlzFBByXg',50,'style=\"border-style:none;\"',1285124158,''),('fU_OZCmtdFNJ8a6bMve8ng',50,'style=\"border-style:none;\"',1285124158,''),('YXCtusAxb4vzZ5sTnUA5DA',50,'style=\"border-style:none;\"',1285124158,''),('k_xuE82wwp8gFVl9aaaG8g',50,'style=\"border-style:none;\"',1285124158,''),('NPM_WItpM5IzLWBhWjYfCA',50,'style=\"border-style:none;\"',1285124158,''),('A_5LVQQWR73QZR8FFbny_w',50,'style=\"border-style:none;\" alt=\"bg.gif\"',1301973995,''),('wywIfa_VuTsq0c5Ed-W-MA',50,'style=\"border-style:none;\" alt=\"bullet.gif\"',1301973995,''),('xmykMFjri1O2NrYHbeToVQ',50,'style=\"border-style:none;\" alt=\"footerbg.gif\"',1301973995,''),('0IIGNBs_-INzqBC5VLeJgw',50,'style=\"border-style:none;\" alt=\"headerbg.gif\"',1301973996,''),('FXmePdyS0YKuZ1VCGGpK9w',50,'style=\"border-style:none;\" alt=\"quote.gif\"',1301973996,''),('66qCywiE_fiL9u5YIaJhgw',50,'style=\"border-style:none;\" alt=\"tableft.gif\"',1301973996,''),('n5VpG4lFsOG1elaWDQbilw',50,'style=\"border-style:none;\" alt=\"tabright.gif\"',1301973996,''),('pAXR7Kby4O-dSxOwLp1GaA',50,'style=\"border-style:none;\" alt=\"top_mod.png\"',1301973998,''),('TthzMLO4n3qxy59QZ5YBHg',50,'style=\"border-style:none;\" alt=\"menu_bg_dark.png\"',1301973998,''),('3n31SQjYa150TBrRBgMPhA',50,'style=\"border-style:none;\" alt=\"menu_bg_light.png\"',1301973998,''),('R4RxDufGbbIzEmpcoEcLrw',50,'style=\"border-style:none;\" alt=\"logo_full.jpg\"',1301973998,''),('2q5fxatSFLgIhXaUX-oSvg',50,'style=\"border-style:none;\" alt=\"bottom-left.jpg\"',1326776036,''),('_d5WTkKjnwct-_Dk7gZHvQ',50,'style=\"border-style:none;\" alt=\"bottom-right.jpg\"',1326776036,''),('Iz2mUR3jCPKyemwAea4b2g',50,'style=\"border-style:none;\" alt=\"input_bg.jpg\"',1326776036,''),('JU9bjsLRoWj7GVHs__prig',50,'style=\"border-style:none;\" alt=\"top-left.jpg\"',1326776036,''),('noOlnjQGexHg8c4bGVUo9g',50,'style=\"border-style:none;\" alt=\"top-right.jpg\"',1326776036,''); ALTER TABLE `ImageAsset` ENABLE KEYS; ALTER TABLE `Layout` DISABLE KEYS; INSERT INTO `Layout` VALUES ('_iHetEvMQUOoxS-T2CM0sQ','PBtmpl0000000000000054','x_WjMvFmilhX-jvZuIpinw','Vzv1pWpg_w6R_o-b0rM2qQ',1273172789,'asc','PBtmpl0000000000000054'),('8Bb8gu-me2mhL3ljFyiWLg','PBtmpl0000000000000135','4Yfz9hqBqM8OYMGuQK8oLw,iCYOjohB9SKvAPr6bXElKA,Wl8WZ43g2rK5AYr9o4zY7w.ix1p0AbwKAz8QWB-T-HHfg,LBuiKzg2mWwmOPS9AgV3bg,jTNggl7AoVSUc_ZzrvuCmw',NULL,1271359194,'asc','PBtmpl0000000000000054'),('mTOiwwk3q4k9g5-XykXhPA','PBtmpl0000000000000054','j_1qEqM6iLfQLiR6VKy0aA,diZvW4bSgZWwyyGP3qXi1g,o_pq_e4vRyhMOKFzs61eag',NULL,1271349647,'asc','PBtmpl0000000000000054'),('2TqQc4OISddWCZmRY1_m8A','PBtmpl0000000000000109','l0guT3vTR3B8cL6vtP-g3A.k2Qj03FrAOXYra8kDJYYXw.nWxS5jnA3o3DgPEwBeR7yQ.ksSfkZdsr0uC62NwIk6hFQ',NULL,1271357565,'asc','PBtmpl0000000000000054'),('x3OFY6OJh_qsXkZfPwug4A','PBtmpl0000000000000054','pJd5TLAjfWMVXD6sCRLwUg',NULL,1271348790,'asc','PBtmpl0000000000000054'),('68sKwDgf9cGH58-NZcU4lg','PBtmpl0000000000000054','TKzUMeIxRLrZ3NAEez6CXQ,sWVXMZGibxHe2Ekj1DCldA',NULL,1286336676,'asc','PBtmpl0000000000000054'); @@ -2620,13 +2630,13 @@ ALTER TABLE `assetAspectRssFeed` DISABLE KEYS; INSERT INTO `assetAspectRssFeed` VALUES ('fK-HMSboA3uu0c1KYkYspA',1124395696,25,NULL,'','',NULL,'','','rss\natom'),('pbproto000000000000002',1163019036,25,NULL,'','',NULL,'','',''); ALTER TABLE `assetAspectRssFeed` ENABLE KEYS; ALTER TABLE `assetData` DISABLE KEYS; -INSERT INTO `assetData` VALUES ('PBasset000000000000001',1124395696,'3','pbversion0000000000001','approved','Root','Root','root','3','7','3',NULL,0,1,0,0,0,158,NULL,0,1,0,1242380151,NULL,0),('PBasset000000000000002',1124395696,'3','pbversion0000000000001','approved','Import Node','Import','root/import','3','7','12',NULL,0,1,0,0,0,309,NULL,0,1,0,1242380151,NULL,0),('Vzv1pWpg_w6R_o-b0rM2qQ',1147642515,'3','pbversion0000000000001','approved','Ad','Ad','home/ad2','3','7','4',NULL,0,1,0,0,0,2155188,NULL,0,1,0,1301974027,NULL,0),('fK-HMSboA3uu0c1KYkYspA',1124395696,'3','pbversion0000000000001','approved','The Latest News','The Latest News','the_latest_news/the_latest_news','3','7','3',NULL,0,1,0,0,0,524,NULL,0,1,0,1285124313,NULL,0),('7-0-style0000000000003',1147642492,'3','pbversion0000000000001','approved','css01.css','css01.css','style1/css01.css','3','7','12',NULL,0,0,0,0,0,9086,NULL,0,1,0,1285124168,NULL,0),('PBnav00000000000000001',1124395696,'3','pbversion0000000000001','approved','crumbTrail','crumbTrail','crumbtrail','3','7','12',NULL,0,1,0,0,0,371,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000014',1124395696,'3','pbversion0000000000001','approved','FlexMenu','FlexMenu','flexmenu','3','7','12',NULL,0,1,0,0,0,353,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000015',1124395696,'3','pbversion0000000000001','approved','currentMenuVertical','currentMenuVertical','currentmenuvertical','3','7','12',NULL,0,1,0,0,0,394,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000016',1124395696,'3','pbversion0000000000001','approved','currentMenuHorizontal','currentMenuHorizontal','currentmenuhorizontal','3','7','12',NULL,0,1,0,0,0,400,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000017',1124395696,'3','pbversion0000000000001','approved','PreviousDropMenu','PreviousDropMenu','previousdropmenu','3','7','12',NULL,0,1,0,0,0,388,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000018',1124395696,'3','pbversion0000000000001','approved','previousMenuVertical','previousMenuVertical','previousmenuvertical','3','7','12',NULL,0,1,0,0,0,398,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000019',1124395696,'3','pbversion0000000000001','approved','previousMenuHorizontal','previousMenuHorizontal','previousmenuhorizontal','3','7','12',NULL,0,1,0,0,0,404,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000020',1124395696,'3','pbversion0000000000001','approved','rootmenu','rootmenu','rootmenu','3','7','12',NULL,0,1,0,0,0,355,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000021',1124395696,'3','pbversion0000000000001','approved','SpecificDropMenu','SpecificDropMenu','specificdropmenu','3','7','12',NULL,0,1,0,0,0,379,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000002',1124395696,'3','pbversion0000000000001','approved','SpecificSubMenuVertical','SpecificSubMenuVertical','specificsubmenuvertical','3','7','12',NULL,0,1,0,0,0,400,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000006',1124395696,'3','pbversion0000000000001','approved','SpecificSubMenuHorizontal','SpecificSubMenuHorizontal','specificsubmenuhorizontal','3','7','12',NULL,0,1,0,0,0,406,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000007',1124395696,'3','pbversion0000000000001','approved','TopLevelMenuVertical','TopLevelMenuVertical','toplevelmenuvertical','3','7','12',NULL,0,1,0,0,0,391,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000008',1124395696,'3','pbversion0000000000001','approved','TopLevelMenuHorizontal','TopLevelMenuHorizontal','toplevelmenuhorizontal','3','7','12',NULL,0,1,0,0,0,397,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000009',1124395696,'3','pbversion0000000000001','approved','RootTab','RootTab','roottab','3','7','12',NULL,0,1,0,0,0,352,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000010',1124395696,'3','pbversion0000000000001','approved','TopDropMenu','TopDropMenu','topdropmenu','3','7','12',NULL,0,1,0,0,0,364,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000011',1124395696,'3','pbversion0000000000001','approved','dtree','dtree','dtree','3','7','12',NULL,0,1,0,0,0,352,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000012',1124395696,'3','pbversion0000000000001','approved','coolmenu','coolmenu','coolmenu','3','7','12',NULL,0,1,0,0,0,356,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000013',1124395696,'3','pbversion0000000000001','approved','Synopsis','Synopsis','synopsis','3','7','12',NULL,0,1,0,0,0,367,NULL,0,1,0,1247779653,NULL,0),('7-0-style0000000000006',1147642493,'3','pbversion0000000000001','approved','main_bg.gif','main_bg.gif','style1/main_bg.gif','3','7','12',NULL,0,0,0,0,0,1149,NULL,0,1,0,1242380143,NULL,0),('PBrichedit000000000002',1124395696,'3','pbversion0000000000001','approved','Forum Rich Edit','Forum Rich Edit','forum_rich_edit','3','7','12',NULL,0,0,0,0,0,873,NULL,0,1,0,1242380152,NULL,0),('7-0-style0000000000068',1147642510,'3','pbversion0000000000001','approved','spacer.gif','spacer.gif','style3/spacer.gif','3','7','12',NULL,0,0,0,0,0,358,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000066',1147642509,'3','pbversion0000000000001','approved','nav_bg_on.jpg','nav_bg_on.jpg','style3/nav_bg_on.jpg','3','7','12',NULL,0,0,0,0,0,658,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000067',1147642509,'3','pbversion0000000000001','approved','pb.jpg','pb.jpg','style3/pb.jpg','3','7','12',NULL,0,0,0,0,0,24981,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000062',1147642508,'3','pbversion0000000000001','approved','nav_bg1.jpg','nav_bg1.jpg','style3/nav_bg1.jpg','3','7','12',NULL,0,0,0,0,0,672,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000063',1147642508,'3','pbversion0000000000001','approved','nav_bg1_on.jpg','nav_bg1_on.jpg','style3/nav_bg1_on.jpg','3','7','12',NULL,0,0,0,0,0,683,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000064',1147642509,'3','pbversion0000000000001','approved','nav_bg2.jpg','nav_bg2.jpg','style3/nav_bg2.jpg','3','7','12',NULL,0,0,0,0,0,675,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000065',1147642509,'3','pbversion0000000000001','approved','nav_bg2_on.jpg','nav_bg2_on.jpg','style3/nav_bg2_on.jpg','3','7','12',NULL,0,0,0,0,0,688,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000061',1147642508,'3','pbversion0000000000001','approved','nav_bg.jpg','nav_bg.jpg','style3/nav_bg.jpg','3','7','12',NULL,0,0,0,0,0,669,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000057',1147642507,'3','pbversion0000000000001','approved','main_bg.jpg','main_bg.jpg','style3/main_bg.jpg','3','7','12',NULL,0,0,0,0,0,639,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000058',1147642507,'3','pbversion0000000000001','approved','main_bottom.jpg','main_bottom.jpg','style3/main_bottom.jpg','3','7','12',NULL,0,0,0,0,0,2630,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000060',1147642508,'3','pbversion0000000000001','approved','main_top_bg.jpg','main_top_bg.jpg','style3/main_top_bg.jpg','3','7','12',NULL,0,0,0,0,0,687,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000054',1147642506,'3','pbversion0000000000001','approved','header_bg.jpg','header_bg.jpg','style3/header_bg.jpg','3','7','12',NULL,0,0,0,0,0,715,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000055',1147642506,'3','pbversion0000000000001','approved','header_left.jpg','header_left.jpg','style3/header_left.jpg','3','7','12',NULL,0,0,0,0,0,23983,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000056',1147642506,'3','pbversion0000000000001','approved','header_right.jpg','header_right.jpg','style3/header_right.jpg','3','7','12',NULL,0,0,0,0,0,24757,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000053',1147642505,'3','pbversion0000000000001','approved','footer_right.jpg','footer_right.jpg','style3/footer_right.jpg','3','7','12',NULL,0,0,0,0,0,2886,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000052',1147642505,'3','pbversion0000000000001','approved','footer_bg.jpg','footer_bg.jpg','style3/footer_bg.jpg','3','7','12',NULL,0,0,0,0,0,680,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000048',1147642504,'3','pbversion0000000000001','approved','wg.jpg','wg.jpg','style2/wg.jpg','3','7','12',NULL,0,0,0,0,0,20795,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000046',1147642504,'3','pbversion0000000000001','approved','rightCol_bg.jpg','rightCol_bg.jpg','style2/rightcol_bg.jpg','3','7','12',NULL,0,0,0,0,0,720,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000043',1147642503,'3','pbversion0000000000001','approved','pb.jpg','pb.jpg','style2/pb.jpg','3','7','12',NULL,0,0,0,0,0,22948,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000044',1147642503,'3','pbversion0000000000001','approved','pb_wg.jpg','pb_wg.jpg','style2/pb_wg.jpg','3','7','12',NULL,0,0,0,0,0,2720,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000040',1147642502,'3','pbversion0000000000001','approved','navbar_right.jpg','navbar_right.jpg','style2/navbar_right.jpg','3','7','12',NULL,0,0,0,0,0,960,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000041',1147642502,'3','pbversion0000000000001','approved','page_title.jpg','page_title.jpg','style2/page_title.jpg','3','7','12',NULL,0,0,0,0,0,24856,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000042',1147642502,'3','pbversion0000000000001','approved','page_title_bg.jpg','page_title_bg.jpg','style2/page_title_bg.jpg','3','7','12',NULL,0,0,0,0,0,720,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000038',1147642501,'3','pbversion0000000000001','approved','navbar_bg.jpg','navbar_bg.jpg','style2/navbar_bg.jpg','3','7','12',NULL,0,0,0,0,0,625,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000039',1147642502,'3','pbversion0000000000001','approved','navbar_left.jpg','navbar_left.jpg','style2/navbar_left.jpg','3','7','12',NULL,0,0,0,0,0,663,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000036',1147642501,'3','pbversion0000000000001','approved','main_bg.jpg','main_bg.jpg','style2/main_bg.jpg','3','7','12',NULL,0,0,0,0,0,764,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000037',1147642501,'3','pbversion0000000000001','approved','nav_bg.jpg','nav_bg.jpg','style2/nav_bg.jpg','3','7','12',NULL,0,0,0,0,0,602,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000033',1147642500,'3','pbversion0000000000001','approved','css02.css','css02.css','style2/css02.css','3','7','12',NULL,0,0,0,0,0,5530,NULL,0,1,0,1285124168,NULL,0),('7-0-style0000000000034',1147642500,'3','pbversion0000000000001','approved','leftCol_header.jpg','leftCol_header.jpg','style2/leftcol_header.jpg','3','7','12',NULL,0,0,0,0,0,10987,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000035',1147642501,'3','pbversion0000000000001','approved','leftCol_header02.jpg','leftCol_header02.jpg','style2/leftcol_header02.jpg','3','7','12',NULL,0,0,0,0,0,4606,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000030',1147642499,'3','pbversion0000000000001','approved','webgui_btn.jpg','webgui_btn.jpg','style1/webgui_btn.jpg','3','7','12',NULL,0,0,0,0,0,5180,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000031',1147642500,'3','pbversion0000000000001','approved','WebGUI 7 Style 2','WebGUI 7 Style 2','root/import/webgui-7-style-2','3','7','12',NULL,0,0,0,0,0,325,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000032',1147642500,'3','pbversion0000000000001','approved','context_bg.jpg','context_bg.jpg','style2/context_bg.jpg','3','7','12',NULL,0,0,0,0,0,661,NULL,0,1,0,1242380143,NULL,0),('PBnav000000style01lvl2',1147642499,'3','pbversion0000000000001','approved','Style 01 Nav lvl2','untitled','style1_nav_lvl2','3','7','12',NULL,0,0,0,0,0,1713,NULL,0,1,0,1285124161,NULL,0),('7-0-style0000000000026',1147642499,'3','pbversion0000000000001','approved','RootTab Level 1','RootTab Level 1','roottab_level1','3','7','12',NULL,0,0,0,0,0,353,NULL,0,1,0,1242380143,NULL,0),('stevenav00000000000001',1147642499,'3','pbversion0000000000001','approved','Style 01 Nav','Style 01 Nav','style1_nav','3','7','12',NULL,0,0,0,0,0,1682,NULL,0,1,0,1285124167,NULL,0),('7-0-style0000000000025',1147642498,'3','pbversion0000000000001','approved','RootTab Level 0','RootTab Level 0','roottab_level0','3','7','12',NULL,0,0,0,0,0,353,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000022',1147642497,'3','pbversion0000000000001','approved','nav_bg.jpg','nav_bg.jpg','style1/nav_bg.jpg','3','7','12',NULL,0,0,0,0,0,1109,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000023',1147642498,'3','pbversion0000000000001','approved','nav_on.jpg','nav_on.jpg','style1/nav_on.jpg','3','7','12',NULL,0,0,0,0,0,919,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000024',1147642498,'3','pbversion0000000000001','approved','orange_left01.jpg','orange_left01.jpg','style1/orange_left01.jpg','3','7','12',NULL,0,0,0,0,0,2747,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000018',1147642496,'3','pbversion0000000000001','approved','nav2_off_left.jpg','nav2_off_left.jpg','style1/nav2_off_left.jpg','3','7','12',NULL,0,0,0,0,0,752,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000019',1147642497,'3','pbversion0000000000001','approved','nav2_off_right.jpg','nav2_off_right.jpg','style1/nav2_off_right.jpg','3','7','12',NULL,0,0,0,0,0,748,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000017',1147642496,'3','pbversion0000000000001','approved','nav2_off_center.jpg','nav2_off_center.jpg','style1/nav2_off_center.jpg','3','7','12',NULL,0,0,0,0,0,837,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000015',1147642496,'3','pbversion0000000000001','approved','nav1_on_right.jpg','nav1_on_right.jpg','style1/nav1_on_right.jpg','3','7','12',NULL,0,0,0,0,0,1134,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000014',1147642495,'3','pbversion0000000000001','approved','nav1_on_left.jpg','nav1_on_left.jpg','style1/nav1_on_left.jpg','3','7','12',NULL,0,0,0,0,0,1195,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000013',1147642495,'3','pbversion0000000000001','approved','nav1_on.jpg','nav1_on.jpg','style1/nav1_on.jpg','3','7','12',NULL,0,0,0,0,0,2426,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000011',1147642495,'3','pbversion0000000000001','approved','nav1_off_left.jpg','nav1_off_left.jpg','style1/nav1_off_left.jpg','3','7','12',NULL,0,0,0,0,0,1230,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000012',1147642495,'3','pbversion0000000000001','approved','nav1_off_right.jpg','nav1_off_right.jpg','style1/nav1_off_right.jpg','3','7','12',NULL,0,0,0,0,0,1178,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000010',1147642494,'3','pbversion0000000000001','approved','nav1_off_center.jpg','nav1_off_center.jpg','style1/nav1_off_center.jpg','3','7','12',NULL,0,0,0,0,0,1468,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000009',1147642494,'3','pbversion0000000000001','approved','nav1_off.jpg','nav1_off.jpg','style1/nav1_off.jpg','3','7','12',NULL,0,0,0,0,0,2591,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000007',1147642493,'3','pbversion0000000000001','approved','main_bg.jpg','main_bg.jpg','style1/main_bg.jpg','3','7','12',NULL,0,0,0,0,0,1149,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000001',1147642492,'3','pbversion0000000000001','approved','WebGUI 7 Style 1','WebGUI 7 Style 1','root/import/webgui-7-style-1','3','7','12',NULL,0,0,0,0,0,325,NULL,0,1,0,1242380142,NULL,0),('SynConXSLT000000000001',1124395707,'3','pbversion0000000000001','approved','RSS 0.9 XSLT Stylesheet','RSS 0.9 XSLT','xslt/rss0.9.xsl','3','7','12',NULL,0,0,0,0,0,5040,NULL,0,1,0,1285124168,NULL,0),('SynConXSLT000000000002',1124395707,'3','pbversion0000000000001','approved','RSS 0.91 XSLT Stylesheet','RSS 0.91 XSLT','xslt/rss0.91.xsl','3','7','12',NULL,0,0,0,0,0,4717,NULL,0,1,0,1285124168,NULL,0),('SynConXSLT000000000003',1124395707,'3','pbversion0000000000001','approved','RSS 1.0 XSLT Stylesheet','RSS 1.0 XSLT','xslt/rss1.0.xsl','3','7','12',NULL,0,0,0,0,0,5186,NULL,0,1,0,1285124168,NULL,0),('SynConXSLT000000000004',1124395707,'3','pbversion0000000000001','approved','RSS 2.0 XSLT Stylesheet','RSS 2.0 XSLT','xslt/rss2.0.xsl','3','7','12',NULL,0,0,0,0,0,4852,NULL,0,1,0,1285124168,NULL,0),('PBtmpl0000000000000036',1129049186,'3','pbversion0000000000001','approved','Default Admin Toggle Macro','Default Admin Toggle Macro','default_admin_toggle_macro','3','7','12',NULL,0,1,0,0,0,448,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000037',1129049186,'3','pbversion0000000000001','approved','Default Account Macro','Default Account Macro','default_account_macro','3','7','12',NULL,0,1,0,0,0,479,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000038',1129049186,'3','pbversion0000000000001','approved','Default Editable Toggle Macro','Default Editable Toggle Macro','default_editable_toggle_macro','3','7','12',NULL,0,1,0,0,0,460,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000040',1129049186,'3','pbversion0000000000001','approved','Default Group Add Macro','Default Group Add Macro','default_group_add_macro','3','7','12',NULL,0,1,0,0,0,432,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000041',1129049186,'3','pbversion0000000000001','approved','Default Group Delete Macro','Default Group Delete Macro','default_group_delete_macro','3','7','12',NULL,0,1,0,0,0,444,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000042',1129049186,'3','pbversion0000000000001','approved','Default Homelink','Default Homelink','default_homelink','3','7','12',NULL,0,1,0,0,0,459,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000043',1129049186,'3','pbversion0000000000001','approved','Default LoginToggle','Default LoginToggle','default_logintoggle','3','7','12',NULL,0,1,0,0,0,475,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000045',1129049186,'3','pbversion0000000000001','approved','Default Make Printable','Default Make Printable','default_make_printable','3','7','12',NULL,0,1,0,0,0,500,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000091',1129049189,'3','pbversion0000000000001','approved','File no icon','File no icon','file_no_icon','3','7','12',NULL,0,1,0,0,0,391,NULL,0,1,0,1285124163,NULL,0),('PBtmpl0000000000000140',1129573244,'3','pbversion0000000000001','approved','Default Shortcut','Default Shortcut','pbtmpl0000000000000140','3','7','12',NULL,0,1,0,0,0,1732,NULL,0,1,0,1285124163,NULL,0),('PBtmplHelp000000000001',1147642410,'3','pbversion0000000000001','approved','Help','Help','root/import/adminconsole/help','3','7','12',NULL,0,0,0,0,0,2221,'\n\n',0,1,0,1288747840,'',0),('ProjectManagerTMPL0004',1222574693,'3','pbversion0000000000001','approved','Default Project Manager Edit Task','Default Project Manager Edit Task','default-pm-template-edit-task','3','7','12',NULL,0,0,0,0,0,8779,'\r\n',0,1,0,1285124164,'',0),('7-0-style0000000000071',1147642511,'3','pbversion0000000000001','approved','wg.jpg','wg.jpg','style3/wg.jpg','3','7','12',NULL,0,0,0,0,0,27499,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000070',1147642510,'3','pbversion0000000000001','approved','Style3 Coolmenu','Style3 Coolmenu','style3_coolmenu','3','7','12',NULL,0,0,0,0,0,377,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000004',1147642493,'3','pbversion0000000000001','approved','gui_bottom.jpg','gui_bottom.jpg','style1/gui_bottom.jpg','3','7','12',NULL,0,0,0,0,0,11011,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000002',1147642492,'3','pbversion0000000000001','approved','body_bg.jpg','body_bg.jpg','style1/body_bg.jpg','3','7','12',NULL,0,0,0,0,0,598,NULL,0,1,0,1242380142,NULL,0),('PBtmpl0000000000000047',1147642414,'3','pbversion0000000000001','approved','Default Message Board','Default Message Board','default_message_board','3','7','12',NULL,0,1,0,0,0,5637,'',0,1,0,1285124162,'',0),('TimeTrackingTMPL000002',1147642417,'3','pbversion0000000000001','approved','Default Time Tracking Manager View','Default Time Tracking Manager View','default-tt-template-manager','3','7','12',NULL,0,0,0,0,0,408,' ',0,1,0,1285124164,NULL,0),('PBtmpl0000000000000057',1147642418,'3','pbversion0000000000001','approved','Default WebGUI Yes/No Prompt','Default WebGUI Yes/No Prompt','default_webgui_yes/no_prompt','3','7','12',NULL,0,1,0,0,0,797,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000107',1147642420,'3','pbversion0000000000001','approved','File with size','File with size','file_with_size','3','7','12',NULL,0,1,0,0,0,661,NULL,0,1,0,1285124163,NULL,0),('WVtmpl0000000000000001',1147642426,'3','pbversion0000000000001','approved','Random Thread Macro Default Template','Random Thread Macro Default Template','randomthread-template','3','7','12',NULL,0,0,0,0,0,9218,NULL,0,1,0,1285124165,NULL,0),('7-0-style0000000000005',1147642493,'3','pbversion0000000000001','approved','header.jpg','header.jpg','style1/header.jpg','3','7','12',NULL,0,0,0,0,0,45014,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000008',1147642494,'3','pbversion0000000000001','approved','nav1_center_on.jpg','nav1_center_on.jpg','style1/nav1_center_on.jpg','3','7','12',NULL,0,0,0,0,0,1382,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000045',1147642503,'3','pbversion0000000000001','approved','pb_wg_bg.jpg','pb_wg_bg.jpg','style2/pb_wg_bg.jpg','3','7','12',NULL,0,0,0,0,0,21720,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000021',1147642497,'3','pbversion0000000000001','approved','nav2_on_right.jpg','nav2_on_right.jpg','style1/nav2_on_right.jpg','3','7','12',NULL,0,0,0,0,0,720,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000020',1147642497,'3','pbversion0000000000001','approved','nav2_on_left.jpg','nav2_on_left.jpg','style1/nav2_on_left.jpg','3','7','12',NULL,0,0,0,0,0,732,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000016',1147642496,'3','pbversion0000000000001','approved','nav2_center_on.jpg','nav2_center_on.jpg','style1/nav2_center_on.jpg','3','7','12',NULL,0,0,0,0,0,807,NULL,0,1,0,1242380143,NULL,0),('PBasset000000000000003',1147642437,'3','pbversion0000000000001','approved','Media','Media','media','3','7','12',NULL,0,0,0,0,0,296,NULL,0,1,0,1242380151,NULL,0),('nbSrhXZQuxIjhWFaFPSuVA',1147642465,'3','pbversion0000000000001','approved','AdminConsole','AdminConsole','root/import/adminconsole','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1242380150,NULL,0),('71e17KeduiXgODLMlUxiow',1222803352,'3','pbversion0000000000001','approved','project','project','root/import/projectmanager/project','3','7','12',NULL,0,0,0,0,0,342,NULL,0,1,0,1242380145,NULL,0),('N13SD1Fpqk00UgBt1Z8ivQ',1147642470,'3','pbversion0000000000001','approved','HttpProxy','HttpProxy','root/import/httpproxy','3','7','12',NULL,0,0,0,0,0,304,NULL,0,1,0,1242380150,NULL,0),('3uuBf8cYuj1sew2OJXl9tg',1147642470,'3','pbversion0000000000001','approved','InOutBoard','InOutBoard','root/import/inoutboard','3','7','12',NULL,0,0,0,0,0,307,NULL,0,1,0,1242380142,NULL,0),('ProjectManagerTMPL0002',1222574693,'3','pbversion0000000000001','approved','Default Project Display','Default Project Display','default-pm-template-project-display','3','7','12',NULL,0,0,0,0,0,13074,'\r\n\r\n\r\n',0,1,0,1285124164,'',0),('cj2y4papTVGZRFdwTI-_fw',1147642475,'3','pbversion0000000000001','approved','MessageBoard','MessageBoard','root/import/messageboard','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1242380147,NULL,0),('bBzO4CWjqU_ile3gf5Iypw',1147642475,'3','pbversion0000000000001','approved','MultiSearch','MultiSearch','root/import/multisearch','3','7','12',NULL,0,0,0,0,0,310,NULL,0,1,0,1242380147,NULL,0),('Da6KWn805L4B5e4HFgQRQA',1147642479,'3','pbversion0000000000001','approved','Shortcut','Shortcut','root/import/shortcut','3','7','12',NULL,0,0,0,0,0,301,NULL,0,1,0,1242380148,NULL,0),('bbiA9Zq5Gy2oCFBlILO3QA',1147642480,'3','pbversion0000000000001','approved','SQLReport','SQLReport','root/import/sqlreport','3','7','12',NULL,0,0,0,0,0,304,NULL,0,1,0,1242380147,NULL,0),('Efe2W0UgrSRDltNJ87jlfg',1147642480,'3','pbversion0000000000001','approved','StockData','StockData','root/import/stockdata','3','7','12',NULL,0,0,0,0,0,304,NULL,0,1,0,1242380148,NULL,0),('9wKWdum0_8z-OhhquWLtSQ',1147642483,'3','pbversion0000000000001','approved','WeatherData','WeatherData','root/import/weatherdata','3','7','12',NULL,0,0,0,0,0,310,NULL,0,1,0,1242380146,NULL,0),('CSN-ZON7Uwv8kxf3F1fh5Q',1147642484,'3','pbversion0000000000001','approved','ZipArchiveAsset','ZipArchiveAsset','root/import/ziparchiveasset','3','7','12',NULL,0,0,0,0,0,322,NULL,0,1,0,1242380147,NULL,0),('TCtybxdqmdwdvRn555zpCQ',1147642484,'3','pbversion0000000000001','approved','RichEdit','RichEdit','root/import/richedit','3','7','12',NULL,0,0,0,0,0,301,NULL,0,1,0,1242380163,NULL,0),('PBtmpl0000000000000044',1148579524,'3','pbversion0000000000001','approved','Default Login Box','Default Login Box','default_login_box','3','7','12',NULL,0,1,0,0,0,1884,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000092',1148579524,'3','pbversion0000000000001','approved','Horizontal Login Box','Horizontal Login Box','horizontal_login_box','3','7','12',NULL,0,1,0,0,0,2082,NULL,0,1,0,1285124163,NULL,0),('PBtmpl0000000000000039',1154535073,'3','pbversion0000000000001','approved','Default File Macro','Default File Macro','default_file_macro','3','7','12',NULL,0,1,0,0,0,630,NULL,0,1,0,1285124162,NULL,0),('ProjectManagerTMPL0006',1157679165,'3','pbversion0000000000001','approved','Default Resource List','Default Resource List','default-pm-resource-list','3','7','12',NULL,0,0,0,0,0,1802,NULL,0,1,0,1285124164,NULL,0),('ProjectManagerTMPL0003',1159989349,'3','pbversion0000000000001','approved','Default Project Manager Gantt Chart','Default Project Manager Gantt Chart','default-pm-template-gantt-chart','3','7','12',NULL,0,0,0,0,0,3787,NULL,0,1,0,1285124164,NULL,0),('pbproto000000000000002',1163019036,'3','pbversion0000000000001','approved','Request Tracker','Request Tracker','request-tracker-prototype','3','7','12',NULL,0,0,0,1,0,595,NULL,0,1,0,1263962528,NULL,0),('IOB0000000000000000002',1166019641,'3','pbversion0000000000001','approved','Default InOutBoard Report Template','Default InOutBoard Report Template','iob-report-template','3','7','12',NULL,0,0,0,0,0,2746,'',0,1,0,1285124160,'',0),('ZipArchiveTMPL00000001',1169738426,'3','pbversion0000000000001','approved','Default Zip Archive Template','Default Zip Archive Template','zip-archive-template','3','7','12',NULL,0,0,0,0,0,1056,NULL,0,1,0,1285124165,NULL,0),('IOB0000000000000000001',1169795123,'3','pbversion0000000000001','approved','Default InOutBoard Template','Default InOutBoard Template','iob-template','3','7','12',NULL,0,0,0,0,0,3850,'',0,1,0,1285124160,'',0),('SQLReportDownload00001',1171466654,'3','pbversion0000000000001','approved','SQLReport Download Default Template','untitled','SQLReportDownload0001','3','7','12',NULL,0,0,0,0,0,6386,NULL,0,1,0,1285124164,NULL,0),('newsletter000000000001',1185754569,'3','pbversion0000000000001','approved',' Summary Newsletter (default)',' Summary Newsletter','newsletterdefaulttemplate','3','7','3',NULL,0,0,0,0,0,674,NULL,0,1,0,1285124167,NULL,0),('tempspace0000000000000',1185754574,'3','pbversion0000000000001','approved','Tempspace','Tempspace','tempspace','3','7','3',NULL,0,0,0,0,0,307,NULL,0,1,0,1242380163,NULL,0),('TimeTrackingTMPL000001',1201205738,'3','pbversion0000000000001','approved','Default Time Tracking User View','Default Time Tracking User View','default-tt-template-user','3','7','12',NULL,0,0,0,0,0,18644,'\n \n',0,1,0,1285124164,'',0),('CalendarPrintMonth0001',1204890714,'3','pbversion0000000000001','approved','Default Calendar Print Month','Default Calendar Print Month','root/import/calendar-templates/default-calendar-print-month','3','7','12',NULL,0,0,0,0,0,2454,' \r\n',0,1,0,1285124160,'',0),('CalendarPrintWeek00001',1204890714,'3','pbversion0000000000001','approved','Default Calendar Print Week','Default Calendar Print Week','root/import/calendar-templates/default-calendar-print-week','3','7','12',NULL,0,0,0,0,0,2654,' \r\n',0,1,0,1285124160,'',0),('CalendarPrintDay000001',1204890714,'3','pbversion0000000000001','approved','Default Calendar Print Day','Default Calendar Print Day','root/import/calendar-templates/default-calendar-print-day','3','7','12',NULL,0,0,0,0,0,2394,' \r\n',0,1,0,1285124160,'',0),('F7MAQ-cpuvQ1KuC7J4P5zQ',1222803673,'3','pbversion0000000000001','approved','View','View','root/import/profile/view','3','7','12',NULL,0,0,0,0,0,326,NULL,0,1,0,1242380148,NULL,0),('Tsg7xmPYv782j6IVz7yHFg',1213244777,'3','pbversion0000000000001','approved','Calendar Templates','Calendar Templates','root/import/calendar-templates','3','7','12',NULL,0,1,0,0,0,353,NULL,0,1,0,1242380164,NULL,0),('NywJYmGWe1f6EBXJnWg9Xg',1222803638,'3','pbversion0000000000001','approved','Profile','Profile','root/import/profile','3','7','12',NULL,0,1,0,0,0,320,NULL,0,1,0,1242380151,NULL,0),('AgyFhx3eXlfZXNp2MkrsiQ',1222803665,'3','pbversion0000000000001','approved','Edit','Edit','root/import/profile/edit','3','7','12',NULL,0,0,0,0,0,326,NULL,0,1,0,1242380146,NULL,0),('TYo2Bwl7aafzTtdHlS-arQ',1211664878,'3','pbversion0000000000001','approved','Product','Product','root/import/product','3','7','12',NULL,0,0,0,0,0,320,NULL,0,1,0,1242380164,NULL,0),('gbnRhcWNk1iQe32LFEB5eQ',1212086102,'3','pbversion0000000000001','approved','Shelf','Shelf','root/import/shelf2','3','7','12',NULL,0,1,0,0,0,315,NULL,0,1,0,1242380149,NULL,0),('6tK47xsaIH-ELw0IBo0uRQ',1210777115,'3','pbversion0000000000001','approved','images','images','root/import/shelf2/images','3','7','12',NULL,0,1,0,0,0,330,NULL,0,1,0,1242380142,NULL,0),('_bZJ9LA_KNekZiFPaP2SeQ',1210777868,'3','pbversion0000000000001','approved','shelf-titles.jpg','shelf-titles.jpg','root/import/shelf2/images/shelf-titles.jpg','3','7','12',NULL,0,1,0,0,0,1038,NULL,0,0,0,1242380165,NULL,0),('4e-_rNs6mSWedZhQ_V5kJA',1210779672,'3','pbversion0000000000001','approved','shelf-ie.css','shelf-ie.css','root/import/shelf2/shelf-ie.css','3','7','12',NULL,0,1,0,0,0,1092,NULL,0,1,0,1285124168,NULL,0),('6D4Z-oruXPS6OlH_Kx8pBg',1209509389,'3','pbversion0000000000001','approved','images','images','root/import/thingy-templates/images','3','7','12',NULL,0,1,0,0,0,340,NULL,0,1,0,1242380142,NULL,0),('hQ7z33_jOYkQ8WNX5xy9Sw',1209509455,'3','pbversion0000000000001','approved','style-button.gif','style-button.gif','root/import/thingy-templates/images/style-button.gif','3','7','12',NULL,0,1,0,0,0,923,NULL,0,0,0,1242380149,NULL,0),('vWW_DcHiYSrKZOkkIfEfcQ',1209509433,'3','pbversion0000000000001','approved','row-2.jpg','row-2.jpg','root/import/thingy-templates/images/row-2.jpg','3','7','12',NULL,0,1,0,0,0,805,NULL,0,0,0,1242380164,NULL,0),('_bPYzRA87NTAUIKlfrJMHg',1209509433,'3','pbversion0000000000001','approved','row-1.jpg','row-1.jpg','root/import/thingy-templates/images/row-1.jpg','3','7','12',NULL,0,1,0,0,0,790,NULL,0,0,0,1242380165,NULL,0),('nJjZHRwdDs5MAZYsAyioHw',1209509433,'3','pbversion0000000000001','approved','title-bg.jpg','title-bg.jpg','root/import/thingy-templates/images/title-bg.jpg','3','7','12',NULL,0,1,0,0,0,1105,NULL,0,0,0,1242380151,NULL,0),('8hxfkrJPeFVRWF5piCNJ1A',1209509433,'3','pbversion0000000000001','approved','field-bg.jpg','field-bg.jpg','root/import/thingy-templates/images/field-bg.jpg','3','7','12',NULL,0,1,0,0,0,721,NULL,0,0,0,1242380146,NULL,0),('Osx7WN52iIKHZFT4vqUBHQ',1209509433,'3','pbversion0000000000001','approved','search-btn.gif','search-btn.gif','root/import/thingy-templates/images/search-btn.gif','3','7','12',NULL,0,1,0,0,0,1263,NULL,0,0,0,1242380151,NULL,0),('oWff8fGzRdHPyq5VNREe9Q',1209509433,'3','pbversion0000000000001','approved','top-bg.jpg','top-bg.jpg','root/import/thingy-templates/images/top-bg.jpg','3','7','12',NULL,0,1,0,0,0,691,NULL,0,0,0,1242380151,NULL,0),('uqbkvb1b9443VvfkyRz95w',1209509433,'3','pbversion0000000000001','approved','save-button.gif','save-button.gif','root/import/thingy-templates/images/save-button.gif','3','7','12',NULL,0,1,0,0,0,1271,NULL,0,0,0,1242380164,NULL,0),('8YiMkcz32xalkAn3WBLpag',1210181860,'3','pbversion0000000000001','approved','go-btn.gif','go-btn.gif','root/import/thingy-templates/images/go-btn.gif','3','7','12',NULL,0,1,0,0,0,430,NULL,0,0,0,1242380146,NULL,0),('C5fPz-Wg85vkYRvCdl-Xqw',1212160830,'3','pbversion0000000000001','approved','UserList','UserList','root/import/userlist','3','7','12',NULL,0,1,0,0,0,323,NULL,0,1,0,1242380147,NULL,0),('usuxw9V3jN4d4pujRiEYxg',1209494150,'3','pbversion0000000000001','approved','css03-ie.css','css03-ie.css','style3/css03-ie.css','3','7','12',NULL,0,0,0,0,0,347,NULL,0,1,0,1285124169,NULL,0),('WeatherDataTmpl0000001',1210711353,'3','pbversion0000000000001','approved','WeatherData Default View','WeatherData Default View','weatherdatatmpl0000001','3','7','12',NULL,0,1,0,0,0,5540,'\r\n\r\n\r\n',0,1,0,1285124165,'',0),('Ik9HHky10DIyFTKehUD1dw',1222803478,'3','pbversion0000000000001','approved','Prompt','Prompt','root/import/prompt','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1242380149,NULL,0),('BmLaN4rmAANkCglXUViEbg',1222803871,'3','pbversion0000000000001','approved','Resource','Resource','root/import/projectmanager/resource','3','12','12',NULL,0,0,0,0,0,346,NULL,0,1,0,1242380147,NULL,0),('X7DrzUcj8pOKFa_6k9D5iw',1222804045,'3','pbversion0000000000001','approved','Newsletter','Newsletter','root/import/newsletter','3','12','3',NULL,0,0,0,0,0,329,NULL,0,1,0,1242380165,NULL,0),('7-0-style0000000000059',1213386091,'3','pbversion0000000000001','approved','main_top.jpg','main_top.jpg','style3/main_top.jpg','3','7','12',NULL,0,0,0,0,0,3594,NULL,0,1,0,1242380144,NULL,0),('CalendarPrintEvent0001',1215396964,'3','pbversion0000000000001','approved','Default Calendar Print Event','Default Calendar Print Event','root/import/calendar-templates/default-calendar-print-event','3','7','12',NULL,0,0,0,0,0,4202,' \r\n',0,1,0,1285124160,'',0),('o_pq_e4vRyhMOKFzs61eag',1215714957,'3','pbversion0000000000001','approved','book-covers.jpg','book-covers.jpg','documentation/book-covers.jpg','3','7','3',NULL,0,1,0,0,0,106078,NULL,0,0,0,1301974028,NULL,0),('jnYdqDkUR8x7Pv2eGR1qTA',1216250666,'3','pbversion0000000000001','approved','Thingy Templates','Thingy Templates','root/import/thingy-templates','3','7','12',NULL,0,1,0,0,0,347,NULL,0,1,0,1242380149,NULL,0),('5m5I7__l40C4hhv4ydqAHQ',1216227786,'3','pbversion0000000000001','approved','thingy-ie.css','thingy-ie.css','root/import/thingy-templates/thingy-ie.css','3','7','12',NULL,0,1,0,0,0,1329,NULL,0,1,0,1285124168,NULL,0),('pV7GnZdpjR3XpZaSINIoeg',1222803347,'3','pbversion0000000000001','approved','gantt','gantt','root/import/projectmanager/gantt','3','7','12',NULL,0,0,0,0,0,336,NULL,0,1,0,1242380162,NULL,0),('9A-mg2gwWmaYi9o_1C7ArQ',1222803338,'3','pbversion0000000000001','approved','dashboard','dashboard','root/import/projectmanager/dashboard','3','7','12',NULL,0,0,0,0,0,348,NULL,0,1,0,1242380146,NULL,0),('yD1SMHelczihzjEmx6eXBA',1222803342,'3','pbversion0000000000001','approved','editTask','editTask','root/import/projectmanager/edittask','3','7','12',NULL,0,0,0,0,0,345,NULL,0,1,0,1242380165,NULL,0),('BFfNj5wA9bDw8H3cnr8pTw',1247046273,'3','pbversion0000000000001','approved','Navigation','Navigation','root/import/navigation','3','7','12',NULL,0,0,0,0,0,329,NULL,0,1,0,1247779656,NULL,0),('PBtmpl0000000000000094',1220655703,'3','pbversion0000000000001','approved','News','News','plainblacknews','3','7','12',NULL,0,1,0,0,0,6236,'\r\n\r\n\r\n',0,1,0,1285124163,'',0),('1XOJDcg_ITRYwVM-QnIcPw',1219175575,'3','pbversion0000000000001','approved','shelf.css','shelf.css','root/import/shelf2/shelf.css','3','7','12',NULL,0,1,0,0,0,2431,NULL,0,1,0,1285124168,NULL,0),('aNNC62qLAS6TB-0_MCYjsw',1246969327,'3','pbversion0000000000001','approved','Layout','Layout','root/import/layout','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1247779656,NULL,0),('huASapWvFDzqwOSbcN-JFQ',1222803313,'3','pbversion0000000000001','approved','user','user','root/import/timetracking/user','3','7','12',NULL,0,0,0,0,0,331,NULL,0,1,0,1242380149,NULL,0),('lo1ac3BsoJx3ijGQ3gR-bQ',1222803309,'3','pbversion0000000000001','approved','row','row','root/import/timetracking/row','3','7','12',NULL,0,0,0,0,0,328,NULL,0,1,0,1242380150,NULL,0),('zyWi26q9na-iiZqL4yedog',1222803114,'3','pbversion0000000000001','approved','Macro','Macro','root/import/macro','3','7','12',NULL,0,1,0,0,0,314,NULL,0,1,0,1242380165,NULL,0),('tBL7BWiQRZFed2Y-Zjo9tQ',1222803200,'3','pbversion0000000000001','approved','AdminToggle','AdminToggle','root/import/macro/admintoggle','3','7','12',NULL,0,0,0,0,0,345,NULL,0,1,0,1242380163,NULL,0),('GdkQpvjRtJqtzOUbwIIQRA',1222803205,'3','pbversion0000000000001','approved','a_account','a_account','root/import/macro/a_account','3','7','12',NULL,0,0,0,0,0,339,NULL,0,1,0,1242380149,NULL,0),('tnc5iYyynX2hfdEs9D3P8w',1222803213,'3','pbversion0000000000001','approved','EditableToggle','EditableToggle','root/import/macro/editabletoggle','3','7','12',NULL,0,0,0,0,0,354,NULL,0,1,0,1242380164,NULL,0),('vgXdBcFTqU7h4wBG1ewdBw',1222803217,'3','pbversion0000000000001','approved','File','File','root/import/macro/file','3','7','12',NULL,0,0,0,0,0,324,NULL,0,1,0,1242380164,NULL,0),('hcFlqnXlsmC1ujN6Id0F0A',1222803234,'3','pbversion0000000000001','approved','GroupAdd','GroupAdd','root/import/macro/groupadd','3','7','12',NULL,0,0,0,0,0,336,NULL,0,1,0,1242380149,NULL,0),('eRJR52fvlaxfetv3DQkQYw',1222803238,'3','pbversion0000000000001','approved','GroupDelete','GroupDelete','root/import/macro/groupdelete','3','7','12',NULL,0,0,0,0,0,345,NULL,0,1,0,1242380148,NULL,0),('5HIDHq5lAWHV5gpYGS0zLg',1222803244,'3','pbversion0000000000001','approved','H_homeLink','H_homeLink','root/import/macro/h_homelink','3','7','12',NULL,0,0,0,0,0,342,NULL,0,1,0,1242380142,NULL,0),('rYEFwXXo0tkGhQTcbDibvg',1222803249,'3','pbversion0000000000001','approved','LoginToggle','LoginToggle','root/import/macro/logintoggle','3','7','12',NULL,0,0,0,0,0,345,NULL,0,1,0,1242380162,NULL,0),('-WM2dt0ZGpDasuL2wWocxg',1222803056,'3','pbversion0000000000001','approved','ProjectManager','ProjectManager','root/import/projectmanager','3','7','12',NULL,0,1,0,0,0,341,NULL,0,1,0,1242380141,NULL,0),('2OcUWHVsu_L1sDFzIMWYqw',1222803070,'3','pbversion0000000000001','approved','TimeTracking','TimeTracking','root/import/timetracking','3','7','12',NULL,0,1,0,0,0,335,NULL,0,1,0,1242380141,NULL,0),('vTymIDYL2YqEh6PV50F7ew',1222803302,'3','pbversion0000000000001','approved','manager','manager','root/import/timetracking/manager','3','7','12',NULL,0,0,0,0,0,340,NULL,0,1,0,1242380164,NULL,0),('nqNbSUAhk9Vd1zda2SCz9A',1222803258,'3','pbversion0000000000001','approved','RandomThread','RandomThread','root/import/macro/randomthread','3','7','12',NULL,0,0,0,0,0,348,NULL,0,1,0,1242380151,NULL,0),('y8XkRdxIperLKkJ3bL5sSQ',1222803264,'3','pbversion0000000000001','approved','r_printable','r_printable','root/import/macro/r_printable','3','7','12',NULL,0,0,0,0,0,345,NULL,0,1,0,1242380165,NULL,0),('V3l5S5TtI7wMm1WpIMhvOA',1222803253,'3','pbversion0000000000001','approved','L_loginBox','L_loginBox','root/import/macro/l_loginbox','3','7','12',NULL,0,0,0,0,0,342,NULL,0,1,0,1242380164,NULL,0),('newslettersubscrip0001',1221692339,'3','pbversion0000000000001','approved','My Subscriptions (default)',' My Subscriptions','newslettermysubscriptionstemplate','3','7','3',NULL,0,0,0,0,0,1184,NULL,0,1,0,1285124167,NULL,0),('UL-ItI4L1Z6-WSuhuXVvsQ',1225139673,'3','pbversion0000000000001','approved','DataTable','DataTable','root/import/datatable','3','7','3',NULL,0,0,0,0,0,325,NULL,0,1,0,1242380164,NULL,0),('7-0-style0000000000049',1224117144,'3','pbversion0000000000001','approved','WebGUI 7 Style 3','WebGUI 7 Style 3','root/import/webgui-7-style-3','3','7','12',NULL,0,0,0,0,0,347,NULL,0,1,0,1242380144,NULL,0),('stevecoolmenu000000001',1224116942,'3','pbversion0000000000001','approved','Site Nav','Site Nav','webgui7/style3/hierarchical-top-nav','3','7','12',NULL,0,0,0,0,0,3754,'\r\n\r\n\r\n\r\n',0,1,0,1285124167,'',0),('7-0-style0000000000051',1224117026,'3','pbversion0000000000001','approved','css03.css','css03.css','style3/css03.css','3','7','12',NULL,0,0,0,0,0,5975,NULL,0,1,0,1285124168,NULL,0),('jVKLVakT_iA2010_oEuAwg',1224116526,'3','pbversion0000000000001','approved','Style3 Coolmenu','Style3 Coolmenu','department_nav','3','7','12',NULL,0,0,0,0,0,386,NULL,0,1,0,1242380150,NULL,0),('ThingyTmpl000000000003',1224518002,'3','pbversion0000000000001','approved','Default Thingy Edit Thing','Default Thingy Edit Thing','templates/thingy-default-edit-thing','3','7','12',NULL,0,0,0,0,0,6324,'\r\n\r\n\r\n',0,1,0,1285124164,'',0),('QpmlAiYZz6VsKBM-_0wXaw',1224616691,'3','pbversion0000000000001','approved','UsersOnline Macro','UsersOnline Macro','users-online-macro-templates','3','7','3',NULL,0,0,0,0,0,368,NULL,0,1,0,1242380162,NULL,0),('h_T2xtOxGRQ9QJOR6ebLpQ',1224616545,'3','pbversion0000000000001','approved','UsersOnline Default View','UsersOnline Default View','users-online-macro-templates/usersonline-default-view','3','7','3',NULL,0,1,0,0,0,2495,'\r\n\r\n',0,1,0,1285124166,'',0),('4Ekp0kJoJllRRRo_J1Rj6w',1224616672,'3','pbversion0000000000001','approved','UsersOnline Detailed View','UsersOnline Detailed View','users-online-macro-templates/usersonline-detailed-view','3','7','3',NULL,0,1,0,0,0,4318,'\r\n\r\n',0,1,0,1285124159,'',0),('HPDOcsj4gBme8D4svHodBw',1225404573,'3','pbversion0000000000001','approved','Profile','Profile','root/import/account/profile','3','7','12',NULL,0,1,0,0,0,334,NULL,0,1,0,1250190873,NULL,0),('IZkrow_zwvbf4FCH-taVTQ',1226011853,'3','pbversion0000000000001','approved','Inbox','Inbox','root/import/account/inbox','3','7','12',NULL,0,1,0,0,0,328,NULL,0,1,0,1250190873,NULL,0),('K0YjxqOqr7RupSo6sIdcAg',1227074310,'3','pbversion0000000000001','approved','Friends','Friends','root/import/account/friends','3','7','12',NULL,0,1,0,0,0,334,NULL,0,1,0,1250190873,NULL,0),('_ilRXNR3s8F2vGJ_k9ePcg',1226643205,'3','pbversion0000000000001','approved','User','User','root/import/account/user','3','7','12',NULL,0,1,0,0,0,325,NULL,0,1,0,1250190873,NULL,0),('qaVcU0FFzzraMX_bzELqzw',1227074362,'3','pbversion0000000000001','approved','Contributions','Contributions','root/import/account/contributions','3','7','12',NULL,0,1,0,0,0,352,NULL,0,1,0,1250190873,NULL,0),('UserListTmpl0000000001',1228125743,'3','pbversion0000000000001','approved','Default UserList','Default UserList','root/import/userlist/default-userlist','3','7','12',NULL,0,1,0,0,0,5202,NULL,0,1,0,1285124165,NULL,0),('UserListTmpl0000000003',1228125758,'3','pbversion0000000000001','approved','UserList with multiple search keywords','UserList with multiple search keywords','root/import/userlist/userlist-with-multiple-search-keywords','3','7','12',NULL,0,1,0,0,0,5489,NULL,0,1,0,1285124165,NULL,0),('UserListTmpl0000000002',1228125752,'3','pbversion0000000000001','approved','UserList with search field selection','UserList with search field selection','root/import/userlist/userlist-with-search-field-selection','3','7','12',NULL,0,1,0,0,0,5116,NULL,0,1,0,1285124165,NULL,0),('TimeTrackingTMPL000003',1229311434,'3','pbversion0000000000001','approved','Default Time Tracking Row Template','Default Time Tracking Row Template','default-tt-template-row','3','7','12',NULL,0,0,0,0,0,5721,NULL,0,1,0,1285124164,NULL,0),('uRL9qtk7Rb0YRJ41LmHOJw',1229311072,'3','pbversion0000000000001','approved','Default Calendar Print List View','Default Calendar Print List View','root/import/calendar-templates/default-calendar-print-list-view','3','7','3',NULL,0,1,0,0,0,1737,NULL,0,1,0,1285124167,NULL,0),('j_1qEqM6iLfQLiR6VKy0aA',1299872071,'1','pbversion0000000000001','approved','Free Documentation','Free Documentation','documentation/free-documentation','3','7','3',NULL,0,1,0,0,0,2117,NULL,0,1,0,1301974027,NULL,0),('ProjectManagerTMPL0005',1229579830,'3','pbversion0000000000001','approved','Default Resource Popup','Default Resource Popup','default-pm-resource-popup','3','7','12',NULL,0,0,0,0,0,3582,NULL,0,1,0,1285124164,NULL,0),('ProjectManagerTMPL0001',1229579830,'3','pbversion0000000000001','approved','Default Project Management System Dashboard','Default Project Management System Dashboard','default-pm-template-dashboard','3','7','12',NULL,0,0,0,0,0,6862,'',0,1,0,1285124164,'',0),('PBtmpl0000000000000033',1230159454,'3','pbversion0000000000001','approved','Default HTTP Proxy','Default HTTP Proxy','default_http_proxy','3','7','12',NULL,0,1,0,0,0,2214,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000059',1229907401,'3','pbversion0000000000001','approved','Default SQL Report','Default SQL Report','default_sql_report','3','7','12',NULL,0,1,0,0,0,7737,NULL,0,1,0,1285124162,NULL,0),('MultiSearchTmpl0000001',1230269962,'3','pbversion0000000000001','approved','MultiSearch Default Display','MultiSearch Default Display','multisearchtmpl0000001','3','7','12',NULL,0,1,0,0,0,3538,'',0,1,0,1285124161,'',0),('CalendarDay00000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Day','Default Calendar Day','root/import/calendar-templates/default-calendar-day','3','7','12',NULL,0,0,0,0,0,13749,' ',0,1,0,1285124160,'',0),('CalendarSearch00000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Search','Default Calendar Search','root/import/calendar-templates/default-calendar-search','3','7','12',NULL,0,0,0,0,0,14791,' ',0,1,0,1285124160,'',0),('CalendarWeek0000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Week','Default Calendar Week','root/import/calendar-templates/default-calendar-week','3','7','12',NULL,0,0,0,0,0,12761,'',0,1,0,1285124160,'',0),('StockDataTMPL000000002',1229494994,'3','pbversion0000000000001','approved','StockData Default Display','StockData Default Display','stockdatatmpl000000002','3','7','12',NULL,0,1,0,0,0,20602,NULL,0,1,0,1285124164,NULL,0),('QHn6T9rU7KsnS3Y70KCNTg',1233173545,'3','pbversion0000000000001','approved','Account','Account','root/import/account','3','7','12',NULL,0,1,0,0,0,320,NULL,0,1,0,1250190873,NULL,0),('HW-sPoDDZR8wBZ0YgFgPtg',1227634350,'3','pbversion0000000000001','approved','images','images','root/import/account/images','3','7','12',NULL,0,1,0,0,0,331,NULL,0,1,0,1250190873,NULL,0),('hBpisL-_URyZnh9clR5ohA',1227634417,'3','pbversion0000000000001','approved','no_photo.gif','no_photo.gif','root/import/account/images/no_photo.gif','3','7','12',NULL,0,1,0,0,0,2564,NULL,0,1,0,1250190873,NULL,0),('FOBV6KkifreXa4GmEAUU4A',1227634447,'3','pbversion0000000000001','approved','no_photo_sm.gif','no_photo_sm.gif','root/import/account/images/no_photo_sm.gif','3','7','12',NULL,0,1,0,0,0,1580,NULL,0,1,0,1250190873,NULL,0),('TuYPpHx7TUyk08639Pc8Bg',1233861621,'3','pbversion0000000000001','approved','Default DataTable Template (HTML)','Default DataTable Template (HTML)','root/import/datatable/default-datatable-template-html','3','7','3',NULL,0,1,0,0,0,1429,NULL,0,1,0,1285124164,NULL,0),('3rjnBVJRO6ZSkxlFkYh_ug',1233861835,'3','pbversion0000000000001','approved','Default DataTable Template (YUI)','Default DataTable Template (YUI)','root/import/datatable/default-datatable-template-yui','3','7','3',NULL,0,1,0,0,0,1089,NULL,0,1,0,1285124159,NULL,0),('AOjPG2NHgfL9Cq6dDJ7mew',1236960881,'3','pbversion0000000000001','approved','Shop','Shop','root/import/account/shop','3','7','12',NULL,0,1,0,0,0,325,NULL,0,1,0,1250190873,NULL,0),('NBVSVNLp9X_bV7WrCprtCA',1237842096,'3','pbversion0000000000001','approved','Annotate Image','Annotate Image','image3','3','7','12',NULL,0,1,0,0,0,675,NULL,0,1,0,1285124161,NULL,0),('jmlI9IK-lV8n2WMYmmPhAA',1238106173,'3','pbversion0000000000001','approved','Ad Sku','Ad Sku','root/import/ad-sku','3','7','12',NULL,0,1,0,0,0,317,NULL,0,1,0,1242380149,NULL,0),('ThingyTmpl000000000001',1237914005,'3','pbversion0000000000001','approved','Default Thingy','Default Thingy','templates/thingy-default','3','7','12',NULL,0,0,0,0,0,2554,'',0,1,0,1285124164,'',0),('6uvSLY-ak_w4p_wS8q33cA',1239213092,'3','pbversion0000000000001','approved','Carousel','Carousel','root/import/carousel','3','7','12',NULL,0,1,0,0,0,323,NULL,0,1,0,1242380142,NULL,0),('CarouselTmpl0000000002',1239475937,'3','pbversion0000000000001','approved','Carousel hidden textareas','Carousel hidden textareas','root/import/carousel/carousel-hidden-textareas','3','7','12',NULL,0,0,0,0,0,1059,NULL,0,1,0,1285124160,NULL,0),('GaBAW-2iVhLMJaZQzVLE5A',1240103565,'3','pbversion0000000000001','approved','ThingyRecord Templates','ThingyRecord Templates','root/import/thingyrecord-templates','3','7','3',NULL,0,0,0,0,0,364,NULL,0,1,0,1242380149,NULL,0),('b1316COmd9xRv4fCI3LLGA',1236956475,'3','pbversion0000000000001','approved','Inbox Notification','Inbox Notification','inbox_notification','3','7','4',NULL,0,0,0,0,0,414,NULL,0,1,0,1285124165,NULL,0),('lo1rpxn3t8YPyKGers5eQg',1238625621,'3','pbversion0000000000001','approved','Friend Manager','Friend Manager','root/import/account/friendmanager','3','7','12',NULL,0,1,0,0,0,388,NULL,0,1,0,1242380168,NULL,0),('YP9WaMPJHvCJl-YwrLVcPw',1245376837,'3','pbversion0000000000001','approved','Progress Bar','Progress Bar','admin_progress_bar','3','7','12',NULL,0,1,0,0,0,2600,'\n',0,1,0,1285124165,'',0),('FEDP3dk8J3Chw_gyr7_XEQ',1246278679,'3','pbversion0000000000001','approved','navigation.css','navigation.css','navigation.css','3','7','12',NULL,0,1,0,0,0,2437,NULL,0,1,0,1285124168,NULL,0),('f_tn9FfoSfKWX43F83v_3w',1247053009,'3','pbversion0000000000001','approved','Search','Search','root/import/search','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1247779657,NULL,0),('oGfxez5sksyB_PcaAsEm_Q',1247053097,'3','pbversion0000000000001','approved','SyndicatedContent','SyndicatedContent','root/import/syndicatedcontent','3','7','12',NULL,0,0,0,0,0,350,NULL,0,1,0,1247779657,NULL,0),('tPagC0AQErZXjLFZQ6OI1g',1246966459,'3','pbversion0000000000001','approved','ImageAsset','ImageAsset','root/import/imageasset','3','7','12',NULL,0,0,0,0,0,329,NULL,0,1,0,1247779656,NULL,0),('pbtmpl0000000000000220',1247488979,'3','pbversion0000000000001','approved','Flash Style 3 Template','Flash Style 3 Template','flash-style-3-template','3','7','12',NULL,0,0,0,0,0,1386,'\r\n\r\n',0,1,0,1285124167,'',0),('PBtmpl0000000000000001',1247535846,'3','pbversion0000000000001','approved','Admin Console','Admin Console','admin_console2','3','7','12',NULL,0,1,0,0,0,5963,'\n',0,1,0,1285124161,'',0),('GYaFxnMu9UsEG8oanwB6TA',1246965871,'3','pbversion0000000000001','approved','Folder','Folder','root/import/folder','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1247779656,NULL,0),('pbtmpl0000000000000221',1247487940,'3','pbversion0000000000001','approved','Flash Tutorial Template','Flash Tutorial Template','flash-tutorial-template','3','7','12',NULL,0,0,0,0,0,2092,'\r\n\r\n',0,1,0,1285124167,'',0),('VZK3CRgiMb8r4dBjUmCTgQ',1247046242,'3','pbversion0000000000001','approved','Poll','Poll','root/import/poll','3','7','12',NULL,0,0,0,0,0,311,NULL,0,1,0,1247779656,NULL,0),('NK8bqlwVRILJknqeCDPBHg',1285796040,'1','pbversion0000000000001','approved','Getting Started (part 2)','Getting Started (part 2)','getting_started/getting-started-part2','3','7','4',NULL,0,1,0,0,0,1510,NULL,0,1,0,1301974027,NULL,0),('i5kt5aodVs_oepNEkE7Okw',1242312883,'3','pbversion0000000000001','approved','poll.css','poll.css','poll.css','3','7','12',NULL,0,1,0,0,0,458,NULL,0,1,0,1285124169,NULL,0),('tXwf1zaOXTvsqPn6yu-GSw',1246965607,'3','pbversion0000000000001','approved','FileAsset','FileAsset','root/import/fileasset','3','7','12',NULL,0,0,0,0,0,326,NULL,0,1,0,1247779656,NULL,0),('nFen0xjkZn8WkpM93C9ceQ',1247864696,'3','pbversion0000000000001','approved','Shelf (Default)','Shelf (Default)','root/import/shelf-default','3','7','12',NULL,0,1,0,0,0,4612,'\n',0,1,0,1285124167,'',0),('2CS-BErrjMmESOtGT90qOg',1248549087,'3','pbversion0000000000001','approved','Default View Profile Template','Default View Profile Template','root/import/account/profile/default-view-profile-template','3','7','12',NULL,0,1,0,0,0,7605,NULL,0,1,0,1285124168,NULL,1),('MBmWlA_YEA2I6D29OMGtRg',1248549086,'3','pbversion0000000000001','approved','Default Profile Error Template','Default Profile Error Template','root/import/account/profile/default-profile-error-template','3','7','12',NULL,0,1,0,0,0,1223,NULL,0,1,0,1285124161,NULL,0),('gfZOwaTWYjbSoVaQtHBBEw',1249407461,'3','pbversion0000000000001','approved','Inbox Account Layout','Inbox Account Layout','root/import/account/inbox-account-layout','3','7','12',NULL,0,1,0,0,0,3260,'',0,1,0,1285124166,'',0),('0n4HtbXaWa_XJHkFjetnLQ',1248549086,'3','pbversion0000000000001','approved','Default Inbox View Message Template','Default Inbox View Message Template','root/import/account/inbox/default-inbox-view-message-template','3','7','12',NULL,0,1,0,0,0,5000,NULL,0,1,0,1285124159,NULL,0),('ErEzulFiEKDkaCDVmxUavw',1248549086,'3','pbversion0000000000001','approved','Default Inbox Error Template','Default Inbox Error Template','root/import/account/inbox/default-inbox-error-template','3','7','12',NULL,0,1,0,0,0,732,NULL,0,1,0,1285124160,NULL,0),('DUoxlTBXhVS-Zl3CFDpt9g',1248549086,'3','pbversion0000000000001','approved','Default Message Confirm Template','Default Message Confirm Template','root/import/account/inbox/default-message-confirm-template','3','7','12',NULL,0,1,0,0,0,785,NULL,0,1,0,1285124160,NULL,0),('1Q4Je3hKCJzeo0ZBB5YB8g',1248549086,'3','pbversion0000000000001','approved','Default Manage Invitations Template','Default Manage Invitations Template','root/import/account/inbox/default-manage-invitations-template','3','7','12',NULL,0,1,0,0,0,9795,'\n\n',0,1,0,1285124159,'',0),('5A8Hd9zXvByTDy4x-H28qw',1248549086,'3','pbversion0000000000001','approved','Default Invitation Confirmation Template','Default Invitation Confirmation Template','root/import/account/inbox/default-invitation-confirmation-template','3','7','12',NULL,0,1,0,0,0,1549,NULL,0,1,0,1285124159,NULL,0),('VBkY05f-E3WJS50WpdKd1Q',1248549087,'3','pbversion0000000000001','approved','Default View Invitation Template','Default View Invitation Template','root/import/account/inbox/default-view-invitation-template','3','7','12',NULL,0,1,0,0,0,3836,NULL,0,1,0,1285124165,NULL,0),('XgcsoDrbC0duVla7N7JAdw',1248549086,'3','pbversion0000000000001','approved','Default Invite User Email Template','Default Invite User Email Template','root/import/account/inbox/default-invite-user-email-template','3','7','12',NULL,0,1,0,0,0,490,NULL,0,1,0,1285124165,NULL,0),('cR0UFm7I1qUI2Wbpj--08Q',1248549086,'3','pbversion0000000000001','approved','Default Invite User Form Template','Default Invite User Form Template','root/import/account/inbox/default-invite-user-form-template','3','7','12',NULL,0,1,0,0,0,3967,NULL,0,1,0,1285124165,NULL,0),('SVIhz68689hwUGgcDM-gWw',1248549086,'3','pbversion0000000000001','approved','Default Invite User Confirm Template','Default Invite User Confirm Template','root/import/account/inbox/default-invite-user-confirm-template','3','7','12',NULL,0,1,0,0,0,819,NULL,0,1,0,1285124164,NULL,0),('zrNpGbT3odfIkg6nFSUy8Q',1249407461,'3','pbversion0000000000001','approved','Friends Layout Template','Friends Layout Template','root/import/account/friends/friends-layout-template','3','7','12',NULL,0,1,0,0,0,2662,'\n',0,1,0,1285124168,'',0),('1Yn_zE_dSiNuaBGNLPbxtw',1248549086,'3','pbversion0000000000001','approved','Default Friends View Template','Default Friends View Template','root/import/account/friends/default-friends-view-template','3','7','12',NULL,0,1,0,0,0,8064,NULL,0,1,0,1285124159,NULL,0),('AZFU33p0jpPJ-E6qLSWZng',1248549086,'3','pbversion0000000000001','approved','Default Friends Edit Template','Default Friends Edit Template','root/import/account/friends/default-friends-edit-template','3','7','12',NULL,0,1,0,0,0,9831,NULL,0,1,0,1285124159,NULL,0),('AGJBGviWGAwjnwziiPjvDg',1248549087,'3','pbversion0000000000001','approved','Default Send Request Template','Default Send Request Template','root/import/account/friends/default-send-request-template','3','7','12',NULL,0,1,0,0,0,2781,NULL,0,1,0,1285124159,NULL,0),('7Ijdd8SW32lVgg2H8R-Aqw',1248549086,'3','pbversion0000000000001','approved','Default Friends Error Template','Default Friends Error Template','root/import/account/friends/default-friends-error-template','3','7','12',NULL,0,1,0,0,0,776,NULL,0,1,0,1285124159,NULL,0),('K8F0j_cq_jgo8dvWY_26Ag',1248549086,'3','pbversion0000000000001','approved','Default Friends Confirmation Template','Default Friends Confirmation Template','root/import/account/friends/default-friends-confirmation-template','3','7','12',NULL,0,1,0,0,0,942,NULL,0,1,0,1285124160,NULL,0),('G5V6neXIDiFXN05oL-U3AQ',1248549087,'3','pbversion0000000000001','approved','Default Remove Friends Confirmation Template','Default Remove Friends Confirmation Template','root/import/account/friends/default-remove-friends-confirmation-template','3','7','12',NULL,0,1,0,0,0,1166,NULL,0,1,0,1285124160,NULL,0),('9ThW278DWLV0-Svf68ljFQ',1249407460,'3','pbversion0000000000001','approved','Account Layout','Account Layout','root/import/account/user/account-layout','3','7','12',NULL,0,1,0,0,0,1728,'\n',0,1,0,1285124159,'',0),('-zxyB-O50W8YnL39Ouoc4Q',1248563425,'3','pbversion0000000000001','approved','Default My Sales Template','Default My Sales Template','root/import/default-my-sales-template','3','7','12',NULL,0,1,0,0,0,3993,NULL,0,1,0,1285124158,NULL,0),('b4n3VyUIsAHyIvT-W-jziA',1249407461,'3','pbversion0000000000001','approved','Contributions Layout','Contributions Layout','root/import/account/contributions/contributions-layout','3','7','12',NULL,0,1,0,0,0,1753,'\n',0,1,0,1285124165,'',0),('PBtmpl0000000000000056',1248729559,'3','pbversion0000000000001','approved','Default Product','Default Product','default_product','3','7','12',NULL,0,1,0,0,0,13325,'\n\n',0,1,0,1285124162,'',0),('i9-G00ALhJOr0gMh-vHbKA',1250408924,'3','pbversion0000000000001','approved','Inbox SMS Notification','Inbox SMS Notification','root/import/inbox-sms-notification','3','7','4',NULL,0,0,0,0,0,446,NULL,0,1,0,1285124166,NULL,0),('ohjyzab5i-yW6GOWTeDUHg',1251425384,'3','pbversion0000000000001','approved','Default Manage Ad Sku Template','Default Manage Ad Sku Template','root/import/ad-sku/default-manage-ad-sku-template','3','7','12',NULL,0,0,0,0,0,2567,NULL,0,1,0,1285124167,NULL,0),('AldPGu0u-jm_5xK13atCSQ',1251419124,'3','pbversion0000000000001','approved','Default Purchase Ad Sku Template','Default Purchase Ad Sku Template','root/import/ad-sku/default-purchase-ad-sku-template','3','7','12',NULL,0,0,0,0,0,4230,NULL,0,1,0,1285124160,NULL,0),('5bnNzteN7w3NnK9mF4XiCg',1250243000,'3','pbversion0000000000001','approved','Survey','Survey','root/import/survey','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1253052788,NULL,0),('PBtmpl0000000000000063',1250243000,'3','pbversion0000000000001','approved','Default Overview Report','Default Overview Report','root/import/survey/default-overview-report','3','7','12',NULL,0,1,0,0,0,5835,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000062',1250243000,'3','pbversion0000000000001','approved','Default Gradebook Report','Default Gradebook Report','root/import/survey/default-gradebook-report','3','7','12',NULL,0,1,0,0,0,4863,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000061',1250243000,'3','pbversion0000000000001','approved','Default Survey','Default Survey','root/import/survey/default-survey','3','7','12',NULL,0,1,0,0,0,2968,NULL,0,1,0,1285124162,NULL,0),('CxMpE_UPauZA3p8jdrOABw',1250243000,'3','pbversion0000000000001','approved','Default Questions','Default Questions','root/import/survey/default-questions','3','7','12',NULL,0,1,0,0,0,17836,NULL,0,1,0,1285124160,NULL,0),('1oBRscNIcFOI-pETrCOspA',1250243000,'3','pbversion0000000000001','approved','Default Section Edit','Default Section Edit','root/import/survey/default-section-edit','3','7','12',NULL,0,1,0,0,0,14088,NULL,0,1,0,1285124159,NULL,0),('wAc4azJViVTpo-2NYOXWvg',1250243000,'3','pbversion0000000000001','approved','Default Question Edit','Default Question Edit','root/import/survey/default-question-edit','3','7','12',NULL,0,1,0,0,0,12766,NULL,0,1,0,1285124167,NULL,0),('AjhlNO3wZvN5k4i4qioWcg',1250243000,'3','pbversion0000000000001','approved','Default Answer Edit','Default Answer Edit','root/import/survey/default-answer-edit','3','7','12',NULL,0,1,0,0,0,9595,NULL,0,1,0,1285124159,NULL,0),('RSAMkc6WQmfRE3TOr1_3Mw',1250243000,'3','pbversion0000000000001','approved','ExpireIncompleteSurveyResponses','ExpireIncompleteSurveyResponses','root/import/expireincompletesurveyresponses','3','7','12',NULL,0,1,0,0,0,399,NULL,0,1,0,1253052788,NULL,0),('ExpireIncResptmpl00001',1250243000,'3','pbversion0000000000001','approved','ExpireIncompleteSurveyResponses','ExpireIncompleteSurveyResponses','root/import/expireincompletesurveyresponses/expireincompletesurveyresponses','3','7','12',NULL,0,1,0,0,0,810,NULL,0,1,0,1285124160,NULL,0),('7F-BuEHi7t9bPi008H8xZQ',1250243000,'3','pbversion0000000000001','approved','Default Survey Summary','Default Survey Summary','root/import/survey/default-survey-summary','3','7','12',NULL,0,1,0,0,0,2300,NULL,0,1,0,1285124159,NULL,0),('S3zpVitAmhy58CAioH359Q',1250243000,'3','pbversion0000000000001','approved','Default Test Results','Default Test Results','root/import/survey/default-test-results','3','7','12',NULL,0,1,0,0,0,8673,'',0,1,0,1285124164,'',0),('nWNVoMLrMo059mDRmfOp9g',1250243000,'3','pbversion0000000000001','approved','Default Feedback','Default Feedback','root/import/survey/default-feedback','3','7','12',NULL,0,1,0,0,0,1235,NULL,0,1,0,1285124167,NULL,0),('newslettercs0000000001',1252682678,'3','pbversion0000000000001','approved','Newsletter Manager (default)',' Newsletter Manager','newslettercstemplate','3','7','3',NULL,0,0,0,0,0,2824,'\n',0,1,0,1285124167,'',0),('1IzRpX0tgW7iuCfaU2Kk0A',1250243000,'3','pbversion0000000000001','approved','Default Contributions View','Default Contributions View','root/import/account/contributions/default-contributions-view','3','7','12',NULL,0,1,0,0,0,7799,'\n',0,1,0,1285124159,'',0),('0EAJ9EYb9ap2XwfrcXfdLQ',1250243000,'3','pbversion0000000000001','approved','Story Archive Asset List','Story Archive Asset List','root/import/storymanager/keywordlist','3','7','4',NULL,0,0,0,0,0,579,NULL,0,1,0,1285124158,NULL,0),('TKmhv8boP3TD2xwSwUBq0g',1250243000,'3','pbversion0000000000001','approved','Default ThingyRecord View','Default ThingyRecord View','home/thinyrecord-templates/default-thingyrecord-view','3','7','3',NULL,0,1,0,0,0,1789,NULL,0,1,0,1285124164,NULL,0),('75CmQgpcCSkdsL-oawdn3Q',1253555614,'3','pbversion0000000000001','approved','Default Edit Profile Template','Default Edit Profile Template','root/import/account/profile/default-edit-profile-template','3','7','12',NULL,0,1,0,0,0,3294,'\n\n\n\n',0,1,0,1285124159,'',0),('d8jMMMRddSQ7twP4l1ZSIw',1253555614,'3','pbversion0000000000001','approved','Default Survey Take','Default Survey Take','root/import/survey/default-survey-take','3','7','12',NULL,0,1,0,0,0,3994,'\n\n\n\n',0,1,0,1285124165,'',0),('fowHfgOkJtAxdst7rugTog',1252595993,'3','pbversion0000000000001','approved','Story Manager','Story Manager','root/import/storymanager','3','7','12',NULL,0,1,0,0,0,339,'\r\n',0,1,0,1253676393,NULL,0),('3QpYtHrq_jmAk1FNutQM5A',1253636379,'3','pbversion0000000000001','approved','Story Template','Story Template','root/import/storymanager/storytemplate','3','7','4',NULL,0,0,0,0,0,6662,'\n\n\n',0,1,0,1285124159,'',0),('yxD5ka7XHebPLD-LXBwJqw',1253635396,'3','pbversion0000000000001','approved','StoryArchive','StoryArchive','root/import/storymanager/storyarchive','3','7','4',NULL,0,0,0,0,0,3375,'',0,1,0,1285124167,'',0),('TbDcVLbbznPi0I0rxQf2CQ',1253636379,'3','pbversion0000000000001','approved','Story Template Topic','Story Template Topic','root/import/storymanager/storytemplatetopic','3','7','4',NULL,0,0,0,0,0,7134,'\n\n\n\n\n',0,1,0,1285124164,'',0),('iCM9pRY5yYyjufROgaCDlg',1253305659,'3','pbversion0000000000001','approved','storyManager.css','storyManager.css','storymanager.css','3','7','12',NULL,0,1,0,0,0,4360,NULL,0,1,0,1285124169,NULL,0),('VyCINX2KixKYr2pzQGX9Mg',1254881103,'3','pbversion0000000000001','approved','layout.css','layout.css','layout.css','3','7','12',NULL,0,1,0,0,0,1439,'\r\n',0,1,0,1285124168,NULL,0),('TvOZs8U1kRXLtwtmyW75pg',1256092368,'3','pbversion0000000000001','approved','Article','Article','root/import/article','3','7','12',NULL,0,0,0,0,0,322,'\r\n',0,1,0,1256092370,NULL,0),('zb_OPKNqcTuIjdvvbEkRjw',1256092368,'3','pbversion0000000000001','approved','article.css','article.css','article.css','3','7','12',NULL,0,1,0,0,0,723,'\r\n',0,1,0,1285124169,NULL,0),('PBrichedit000000000001',1256092369,'3','pbversion0000000000001','approved','Content Manager\'s Rich Edit','Content Manager\'s Rich Edit','content_managers_rich_edit','3','7','12',NULL,0,0,0,0,0,572,'\r\n',0,1,0,1256092370,NULL,0),('FJbUTvZ2nUTn65LpW6gjsA',1256092369,'3','pbversion0000000000001','approved','Profile Account Layout','Profile Account Layout','root/import/account/profile/profile-account-layout','3','7','12',NULL,0,1,0,0,0,4224,'',0,1,0,1285124160,'',0),('pbrobot000000000000001',1256092369,'3','pbversion0000000000001','approved','robots.txt','robots.txt','robots.txt','3','7','12',NULL,0,0,0,0,0,562,NULL,0,1,0,1285124169,NULL,0),('4qh0kIsFUdd4Ox-Iu1JZgg',1257311886,'3','pbversion0000000000001','approved','EMS','EMS','root/import/ems','3','7','12',NULL,0,1,0,0,0,310,'\r\n',0,1,0,1257311889,NULL,0),('OOyMH33plAy6oCj_QWrxtg',1257311886,'3','pbversion0000000000001','approved','Lookup Registrant (Default)','Lookup Registrant (Default)','root/import/ems/lookup-registrant-default','3','7','12',NULL,0,1,0,0,0,7007,'\n\n\n\n\n\n\n\n\n\n\n\n',0,1,0,1285124161,'',0),('PsFn7dJt4wMwBa8hiE3hOA',1257311886,'3','pbversion0000000000001','approved','Print Badge (Default)','Print Badge (Default)','root/import/ems/print-badge-default','3','7','12',NULL,0,1,0,0,0,2323,NULL,0,1,0,1285124164,NULL,0),('yBwydfooiLvhEFawJb0VTQ',1257311887,'3','pbversion0000000000001','approved','Print Ticket (Default)','Print Ticket (Default)','root/import/ems/print-ticket-default','3','7','12',NULL,0,1,0,0,0,2386,NULL,0,1,0,1285124167,NULL,0),('S2_LsvVa95OSqc66ITAoig',1257311887,'3','pbversion0000000000001','approved','EMS Schedule Listing (default)','EMS Schedule Listing (default)','root/import/ems/ems-schedule-listing-default2','3','7','12',NULL,0,1,0,0,0,14216,'\n\n\n\n\n\n\n\n\n\n\n\n \n',0,1,0,1285124164,'',0),('hreA_bgxiTX-EzWCSZCZJw',1257311887,'3','pbversion0000000000001','approved','Print Remaining Tickets Template (default)','Print Remaining Tickets Template (default)','root/import/ems/default-print-remaining-tickets-template','3','7','12',NULL,0,1,0,0,0,2345,'\r\n',0,1,0,1285124166,NULL,0),('-K8Hj45mbelljN9-0CXZxg',1257311887,'3','pbversion0000000000001','approved','DataForm','DataForm','root/import/dataform','3','7','12',NULL,0,0,0,0,0,336,NULL,0,1,0,1257311888,NULL,0),('PBtmpl0000000000000020',1257311887,'3','pbversion0000000000001','approved','Mail Form','Mail Form','mail_form','3','7','12',NULL,0,1,0,0,0,4606,'\n',0,1,0,1285124161,'',0),('PBtmpl0000000000000104',1257311888,'3','pbversion0000000000001','approved','Default Acknowledgement','Default Acknowledgement','default_acknowledgement','3','7','12',NULL,0,1,0,0,0,1750,'',0,1,0,1285124163,'',0),('_iHetEvMQUOoxS-T2CM0sQ',1273172789,'1','pbversion0000000000001','approved','Getting Started','Getting Started','getting_started','3','7','3',NULL,0,0,0,0,0,392,NULL,0,1,0,1301974027,NULL,0),('bX5rYxb6tZ9docY6sUhBlw',1278013772,'1','pbversion0000000000001','approved','Getting Started','Getting Started','getting_started/getting-started','3','7','4',NULL,0,1,0,0,0,1253,NULL,0,1,0,1301974027,NULL,0),('8Bb8gu-me2mhL3ljFyiWLg',1271359194,'1','pbversion0000000000001','approved','Talk to the Experts','Your Next Step','your_next_step','3','7','3',NULL,0,0,0,0,0,869,NULL,0,1,0,1301974027,NULL,0),('ix1p0AbwKAz8QWB-T-HHfg',1271359087,'1','pbversion0000000000001','approved','Get Support','Get Support','yns/support','3','7','4',NULL,0,1,0,0,0,739,NULL,0,1,0,1301974027,NULL,0),('iCYOjohB9SKvAPr6bXElKA',1271445525,'1','pbversion0000000000001','approved','Get Hosting','Get Hosting','yns/hosting','3','7','4',NULL,0,1,0,0,0,749,NULL,0,1,0,1301974027,NULL,0),('PBtmpl0000000000000116',1257311888,'3','pbversion0000000000001','approved','Tab Form','Tab Form','tab_form','3','7','12',NULL,0,1,0,0,0,5745,'\n',0,1,0,1285124163,'',0),('PBtmpl0000000000000141',1257311888,'3','pbversion0000000000001','approved','Default DataForm','Default DataForm','pbtmpl0000000000000141','3','7','12',NULL,0,1,0,0,0,6035,'\n',0,1,0,1285124164,'',0),('_aE16Rr1-bXBf8SIaLZjCg',1257311888,'3','pbversion0000000000001','approved','picklanguage','picklanguage','media/picklanguage','3','7','12',NULL,0,1,0,0,0,617,'\r\n',0,1,0,1285124165,NULL,0),('P_4uog81vSUK4KxuW_4GUA',1258524916,'3','pbversion0000000000001','approved','css','css','css','3','7','12',NULL,0,1,0,0,0,298,'\r\n',0,1,0,1258524918,NULL,0),('PBtmpl0000000000000060',1258524916,'3','pbversion0000000000001','approved','Fail Safe','Fail Safe','fail_safe','3','7','12',NULL,0,1,0,0,0,2413,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000137',1258524916,'3','pbversion0000000000001','approved','Admin Console Style','Admin Console','admin_console','3','7','12',NULL,0,1,0,0,0,1283,NULL,0,1,0,1285124163,NULL,0),('PBtmpl0000000000000132',1258524916,'3','pbversion0000000000001','approved','Empty','Empty','empty','3','7','12',NULL,0,1,0,0,0,296,NULL,0,1,0,1285124163,NULL,0),('PBtmplBlankStyle000001',1258524916,'3','pbversion0000000000001','approved','WebGUI 6 Blank Style','WebGUI 6 Blank Style','pbtmplblankstyle000001','3','7','12',NULL,0,1,0,0,0,1970,NULL,0,1,0,1285124164,NULL,0),('uCn31PzislTZlgt_79j7cQ',1258524916,'3','pbversion0000000000001','approved','style.css','style.css','css/style.css','3','7','12',NULL,0,1,0,0,0,1019,'\r\n',0,1,0,1285124169,NULL,0),('H_-8zjtWsO1FUpQqNtkxNQ',1258524916,'3','pbversion0000000000001','approved','wg-base.css','wg-base.css','css/wg-base.css','3','7','12',NULL,0,1,0,0,0,1138,'\r\n',0,1,0,1285124168,NULL,0),('PBtmpl0000000000000117',1259133274,'3','pbversion0000000000001','approved','DropMenu','DropMenu','dropmenu','3','7','12',NULL,0,1,0,0,0,2660,'',0,1,0,1285124163,'',0),('PBtmpl0000000000000136',1259133274,'3','pbversion0000000000001','approved','Synopsis','Synopsis','synopsis2','3','7','12',NULL,0,1,0,0,0,1734,NULL,0,1,0,1285124163,NULL,0),('PBtmpl0000000000000093',1259133274,'3','pbversion0000000000001','approved','crumbTrail','crumbTrail','crumbtrail2','3','7','12',NULL,0,1,0,0,0,1494,NULL,0,1,0,1285124163,NULL,0),('GNvjCFQWjY2AF2uf0aCM8Q',1259133274,'3','pbversion0000000000001','approved','Syndicated Articles','Syndicated Articles','syndicated_articles','3','7','12',NULL,0,1,0,0,0,2472,NULL,0,1,0,1285124160,NULL,0),('-PkdI8l1idu-8gDX3iOdcw',1259133274,'3','pbversion0000000000001','approved','One Over Two','One Over Two','one_over_two','3','7','12',NULL,0,1,0,0,0,6326,'',0,1,0,1285124158,'',0),('PBtmpl0000000000000103',1259133275,'3','pbversion0000000000001','approved','Article With Image','Article With Image','article-with-image','3','7','12',NULL,0,1,0,0,0,2130,'',0,1,0,1285124163,'',0),('PBtmpl0000000000000024',1259133275,'3','pbversion0000000000001','approved','File','File','file','3','7','12',NULL,0,1,0,0,0,940,NULL,0,1,0,1285124161,NULL,0),('XdlKhCDvArs40uqBhvzR3w',1259133275,'3','pbversion0000000000001','approved','Article With Pagination','Article With Pagination','article-with-pagination','3','7','12',NULL,0,1,0,0,0,3274,'\n',0,1,0,1285124165,NULL,0),('PBnav00000000indentnav',1259133275,'3','pbversion0000000000001','approved','Indent Nav','Indent Nav','indent_nav','3','7','12',NULL,0,0,0,0,0,1978,'',0,1,0,1285124161,'',0),('PBtmpl0000000000000124',1259133275,'3','pbversion0000000000001','approved','Tabs','Tabs','tabs','3','7','12',NULL,0,1,0,0,0,1766,'',0,1,0,1285124163,'',0),('PBtmpl0000000000000131',1259133275,'3','pbversion0000000000001','approved','Right Column','Right Column','right_column','3','7','12',NULL,0,1,0,0,0,4905,'',0,1,0,1285124163,'',0),('PBtmpl0000000000000134',1259133275,'3','pbversion0000000000001','approved','Hierarchical Top Nav','Hierarchical Top Nav','import/hierarchical-top-nav','3','7','12',NULL,0,1,0,0,0,4021,'\n\n\n\n\n\n',0,1,0,1285124163,'',0),('PBtmpl0000000000000078',1259133275,'3','pbversion0000000000001','approved','File Folder','File Folder','file_folder','3','7','12',NULL,0,1,0,0,0,3834,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000055',1259133275,'3','pbversion0000000000001','approved','Default Poll','Default Poll','default_poll','3','7','12',NULL,0,1,0,0,0,3032,'',0,1,0,1285124162,'',0),('PBtmpl0000000000000065',1259133275,'3','pbversion0000000000001','approved','Default Syndicated Content','Default Syndicated Content','default_syndicated_content','3','7','12',NULL,0,1,0,0,0,2387,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000054',1259133276,'3','pbversion0000000000001','approved','Default Page','Default Page','default_page','3','7','12',NULL,0,1,0,0,0,3083,'',0,1,0,1285124162,'',0),('PBtmpl0000000000000108',1259133276,'3','pbversion0000000000001','approved','horizontalMenu','horizontalMenu','horizontalmenu','3','7','12',NULL,0,1,0,0,0,1982,'',0,1,0,1285124163,'',0),('PBtmpl0000000000000115',1259133276,'3','pbversion0000000000001','approved','Linked Image with Caption','Linked Image with Caption','linked_image_with_caption','3','7','12',NULL,0,1,0,0,0,2393,'',0,1,0,1285124163,'',0),('PBtmpl0000000000000109',1259133276,'3','pbversion0000000000001','approved','One Over Three','One Over Three','one_over_three','3','7','12',NULL,0,1,0,0,0,7968,'',0,1,0,1285124163,'',0),('VCFhB9WOsDsH2Apj3c6DpQ',1259133276,'3','pbversion0000000000001','approved','Three Columns','Three Columns','three-columns','3','7','12',NULL,0,1,0,0,0,5947,'',0,1,0,1285124165,'',0),('PBtmpl0000000000000002',1259133276,'3','pbversion0000000000001','approved','Default Article','Default Article','default_article','3','7','12',NULL,0,1,0,0,0,2241,NULL,0,1,0,1285124161,NULL,0),('PBtmpl0000000000000123',1259133276,'3','pbversion0000000000001','approved','Item','Item','item','3','7','12',NULL,0,1,0,0,0,2232,NULL,0,1,0,1285124163,NULL,0),('PBtmpl0000000000000135',1259133276,'3','pbversion0000000000001','approved','Side By Side','Side By Side','side_by_side','3','7','12',NULL,0,1,0,0,0,4489,'\n',0,1,0,1285124163,'',0),('PBnav00000000000bullet',1259133276,'3','pbversion0000000000001','approved','Bulleted List','Bulleted List','bulleted_list','3','7','12',NULL,0,0,0,0,0,2744,'\n\n',0,1,0,1285124161,'',0),('MK4fCNoyrx5SE8eyDfOpxg',1259133276,'3','pbversion0000000000001','approved','Flash File','Flash File','flash-file','3','7','12',NULL,0,1,0,0,0,1861,NULL,0,1,0,1285124161,NULL,0),('PBtmpl0000000000000130',1259133276,'3','pbversion0000000000001','approved','Tree Navigation','Tree Navigation','root/import/navigation/tree-navigation','3','7','12',NULL,0,1,0,0,0,3529,'\n\n\n',0,1,0,1285124163,'',0),('f2EktltCvwQpl_3-B1yR7g',1288748251,'3','pbversion0000000000001','approved','Asset Templates','Asset Templates','root/import/asset_templates','3','7','12',NULL,0,1,0,0,0,344,NULL,0,1,0,1288748251,NULL,0),('BMybD3cEnmXVk2wQ_qEsRQ',1263962529,'3','pbversion0000000000001','approved','Badge Builder (Default)','Badge Builder (Default)','root/import/ems/badge-builder-default','3','7','12',NULL,0,1,0,0,0,36631,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1285124160,'',0),('mRtqRuVikSe82BQsYBlD0A',1263962529,'3','pbversion0000000000001','approved','Bare Image','Bare Image','bare_image','3','7','12',NULL,0,1,0,0,0,558,NULL,0,1,0,1285124166,NULL,0),('aUDsJ-vB9RgP-AYvPOy8FQ',1263962529,'3','pbversion0000000000001','approved','Shop Account Layout','Shop Account Layout','root/import/account/shop/shop-account-layout','3','7','12',NULL,0,1,0,0,0,3337,'\n',0,1,0,1285124165,'',0),('CalendarEventEdit00001',1269401468,'3','pbversion0000000000001','approved','Default Calendar Event Edit','Default Calendar Event Edit','root/import/calendar-templates/default-calendar-event-edit','3','7','12',NULL,0,0,0,0,0,18084,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n',0,1,0,1285124160,'',0),('GRUNFctldUgop-qRLuo_DA',1269401469,'3','pbversion0000000000001','approved','Default Survey Edit','Default Survey Edit','root/import/survey/default-survey-edit','3','7','12',NULL,0,1,0,0,0,7101,NULL,0,1,0,1285124160,NULL,0),('t87D1138NhPHhA23-hozBA',1273032716,'3','pbversion0000000000001','approved','CrystalX','CrystalX','crystalx','3','7','3',NULL,0,1,0,0,0,310,NULL,0,1,0,1273032724,NULL,0),('QtBumey5ffc-xffRp1-7Aw',1273032716,'3','pbversion0000000000001','approved','img','img','crystalx/img','3','7','3',NULL,0,1,0,0,0,310,NULL,0,1,0,1273032724,NULL,0),('-0sK2rX1cwQt1ipUSqsiQQ',1273032716,'3','pbversion0000000000001','approved','bg.gif','bg.gif','crystalx/img/bg.gif','3','7','3',NULL,0,1,0,0,0,1440,NULL,0,1,0,1273032724,NULL,0),('hS_eOaVz9Qb5ixndK9EXAw',1273032716,'3','pbversion0000000000001','approved','header.jpg','header.jpg','crystalx/img/header.jpg','3','7','3',NULL,0,1,0,0,0,8038,NULL,0,1,0,1273032724,NULL,0),('k2p-Be8C98pf2cRq7E-JHg',1273032716,'3','pbversion0000000000001','approved','tab_link.gif','tab_link.gif','crystalx/img/tab_link.gif','3','7','3',NULL,0,1,0,0,0,507,NULL,0,1,0,1273032724,NULL,0),('aYG4fjbMPbC4LCuuMp4gGA',1273032716,'3','pbversion0000000000001','approved','tab_hover.gif','tab_hover.gif','crystalx/img/tab_hover.gif','3','7','3',NULL,0,1,0,0,0,538,NULL,0,1,0,1273032724,NULL,0),('F122Ey0NtVAw6Lfv1M6G_Q',1273032716,'3','pbversion0000000000001','approved','ico_archive.gif','ico_archive.gif','crystalx/img/ico_archive.gif','3','7','3',NULL,0,1,0,0,0,427,NULL,0,1,0,1273032724,NULL,0),('qmXHKrQ6EDLSOGkrEKRUDA',1273032716,'3','pbversion0000000000001','approved','bg_page_in.jpg','bg_page_in.jpg','crystalx/img/bg_page_in.jpg','3','7','3',NULL,0,1,0,0,0,3242,NULL,0,1,0,1273032724,NULL,0),('4qZgXjPPO4fwV879yu5XUg',1273032716,'3','pbversion0000000000001','approved','bg_page.JPG','bg_page.JPG','crystalx/img/bg_page.jpg','3','7','3',NULL,0,1,0,0,0,1229,NULL,0,1,0,1273032724,NULL,0),('mb-xeAugm5GJdvu-Wh0MtQ',1273032717,'3','pbversion0000000000001','approved','search_submit.gif','search_submit.gif','crystalx/img/search_submit.gif','3','7','3',NULL,0,1,0,0,0,2108,NULL,0,1,0,1273032724,NULL,0),('84Y9CwgzP6eNU7wZnk019Q',1273032717,'3','pbversion0000000000001','approved','ico_date.gif','ico_date.gif','crystalx/img/ico_date.gif','3','7','3',NULL,0,1,0,0,0,416,NULL,0,1,0,1273032724,NULL,0),('ikXTtJKZfHVxqw-47E4AQA',1273032717,'3','pbversion0000000000001','approved','ico_user.gif','ico_user.gif','crystalx/img/ico_user.gif','3','7','3',NULL,0,1,0,0,0,407,NULL,0,1,0,1273032724,NULL,0),('DhRWPTgzhvju_-TbMN3CwA',1273032717,'3','pbversion0000000000001','approved','ico_comments.gif','ico_comments.gif','crystalx/img/ico_comments.gif','3','7','3',NULL,0,1,0,0,0,427,NULL,0,1,0,1273032724,NULL,0),('6njI-pZz2bwsjWh-Q1_11g',1273032717,'3','pbversion0000000000001','approved','ico_list.gif','ico_list.gif','crystalx/img/ico_list2.gif','3','7','3',NULL,0,1,0,0,0,412,NULL,0,1,0,1273032724,NULL,0),('_Hz1Gnd3yEnJzVS7l7nJMQ',1273032717,'3','pbversion0000000000001','approved','content_all_bg.PNG','content_all_bg.PNG','crystalx/img/content_all_bg.png','3','7','3',NULL,0,1,0,0,0,8683,NULL,0,1,0,1273032724,NULL,0),('VOOrXK5dFnkGih7aTkuDWA',1273032717,'3','pbversion0000000000001','approved','search.PNG','search.PNG','crystalx/img/search.png','3','7','3',NULL,0,1,0,0,0,2190,NULL,0,1,0,1273032724,NULL,0),('ruf-QejOkUHDRtfgakHlbA',1273032717,'3','pbversion0000000000001','approved','col_title_bg_long.GIF','col_title_bg_long.GIF','crystalx/img/col_title_bg_long.gif','3','7','3',NULL,0,1,0,0,0,1265,NULL,0,1,0,1273032724,NULL,0),('FSHy5KjQjkt599PHS41seA',1273032717,'3','pbversion0000000000001','approved','footer.jpg','footer.jpg','crystalx/img/footer.jpg','3','7','3',NULL,0,1,0,0,0,4571,NULL,0,1,0,1273032724,NULL,0),('nuYYXAz4KNNxgfumfnpo_g',1273032718,'3','pbversion0000000000001','approved','ico_top.gif','ico_top.gif','crystalx/img/ico_top.gif','3','7','3',NULL,0,1,0,0,0,834,NULL,0,1,0,1273032724,NULL,0),('Mr7ljjoy6n4fZojpQWajKQ',1273032718,'3','pbversion0000000000001','approved','ico_links.gif','ico_links.gif','crystalx/img/ico_links.gif','3','7','3',NULL,0,1,0,0,0,419,NULL,0,1,0,1273032724,NULL,0),('ApkqpDOrJDxK3QrWBGSRIg',1273032718,'3','pbversion0000000000001','approved','ico_archive2.gif','ico_archive2.gif','crystalx/img/ico_archive2.gif','3','7','3',NULL,0,1,0,0,0,432,NULL,0,1,0,1273032724,NULL,0),('AzzTY0Lay1f_YGeQJFnQCA',1273032718,'3','pbversion0000000000001','approved','ico_list.gif','ico_list.gif','crystalx/img/ico_list.gif','3','7','3',NULL,0,1,0,0,0,411,NULL,0,1,0,1273032724,NULL,0),('OiJNwP1gAlcva8_yOtL4gA',1273032718,'3','pbversion0000000000001','approved','CrystalX_style','CrystalX_style','crystalx_style','3','7','3','by Ning from Pluton -- http://pluton.nl\n\nCrystalX gives your site a crystal-ish look and a strictly formal style. Feel free to download and apply it to your own site.\n\nOriginally designed by \"Nuvio Webdesign\" and collected by Open Source Web Design, converted to WebGUI theme by Ning.',0,1,0,0,0,3470,NULL,0,1,0,1285124161,NULL,0),('JOuCU4x5BJfVHfkfMkVQdQ',1273032718,'3','pbversion0000000000001','approved','crystalx.css','crystalx.css','crystalx/crystalx.css','3','7','3',NULL,0,1,0,0,0,14430,NULL,0,1,0,1285124168,NULL,0),('gaIOm5cr2TkT9Fk6QmZWug',1273032718,'3','pbversion0000000000001','approved','crystalX_navi','crystalX_navi','crystalx/crystalx_navi','3','7','3',NULL,0,1,0,0,0,7486,'\n\n\n\n',0,1,0,1285124166,'',0),('w0QifHLhsrzeOpFKl-DX-Q',1273032718,'3','pbversion0000000000001','approved','crystalx_navi.css','crystalx_navi.css','crystalx/crystalx_navi.css','3','7','3',NULL,0,1,0,0,0,10481,NULL,0,1,0,1285124169,NULL,0),('x_hiUi1XZloBvV47Obnu8Q',1273032718,'3','pbversion0000000000001','approved','crystalX_NavigationTrail','crystalX_NavigationTrail','crystalx/crystalx_navigationtrail','3','7','12',NULL,0,1,0,0,0,422,NULL,0,1,0,1273032724,NULL,0),('hpCk0B3vQzgc-QJhSol41w',1273032718,'3','pbversion0000000000001','approved','crystalX_navitrail','crystalX_navitrail','crystalx/crystalx_navitrail','3','7','12',NULL,0,1,0,0,0,1104,NULL,0,1,0,1285124166,NULL,0),('UUwEL6hLEPdrnkZnKRzFYQ',1273032718,'3','pbversion0000000000001','approved','Site Search','Site Search','crystalx/site-search','3','7','3',NULL,0,1,0,0,0,892,NULL,0,1,0,1273032724,NULL,0),('OfKbvK7CrfMnfc8WDoF4Rg',1273032718,'3','pbversion0000000000001','approved','crystalx_search','crystalx_search','crystalx/crystalx_search','3','7','3',NULL,0,1,0,0,0,2756,NULL,0,1,0,1315877143,NULL,0),('stevestyle000000000002',1273032718,'3','pbversion0000000000001','approved','Style 02','Style 02','style_02','3','7','12','by Steve from Plain Black http://plainblack.com\r\n\r\nThe second of the WebGUI 7 styles',0,0,0,0,0,5770,NULL,0,1,0,1285124167,NULL,0),('Q4uX_C557arTp6D_jwB1jQ',1273032720,'3','pbversion0000000000001','approved','Wiki','Wiki','root/import/wiki','3','12','12',NULL,0,0,0,0,0,312,NULL,0,1,0,1273032723,NULL,0),('WikiRCTmpl000000000001',1273032720,'3','pbversion0000000000001','approved','Default Recent Changes','Default Recent Changes','default-wiki-recent-changes','3','7','12',NULL,0,0,0,0,0,1657,NULL,0,1,0,1285124165,NULL,0),('WikiFrontTmpl000000001',1273032720,'3','pbversion0000000000001','approved','Default Wiki Front Page','Default Wiki Front Page','default-wiki-front-page','3','7','12',NULL,0,0,0,0,0,4434,NULL,0,1,0,1285124165,NULL,0),('WikiSearchTmpl00000001',1273032720,'3','pbversion0000000000001','approved','Default Wiki Search','Default Wiki Search','default-wiki-search','3','7','12',NULL,0,0,0,0,0,2450,'\n\n',0,1,0,1285124165,NULL,0),('WikiPHTmpl000000000001',1273032720,'3','pbversion0000000000001','approved','Default Page History','Default Page History','default-wiki-page-history','3','7','12',NULL,0,0,0,0,0,657,NULL,0,1,0,1285124165,NULL,0),('WikiPageTmpl0000000001',1273032720,'3','pbversion0000000000001','approved','Default Wiki Page','Default Wiki Page','default-wiki-page','3','7','12',NULL,0,0,0,0,0,6422,'\n\n\n\n\n\n\n\n',0,1,0,1285124165,'',0),('WikiPageEditTmpl000001',1273032720,'3','pbversion0000000000001','approved','Default Wiki Page Edit','Default Wiki Page Edit','default-wiki-page-edit','3','7','12',NULL,0,0,0,0,0,2572,NULL,0,1,0,1285124165,NULL,0),('WikiMPTmpl000000000001',1273032720,'3','pbversion0000000000001','approved','Default Most Popular','Default Most Popular','default-wiki-most-popular','3','7','12',NULL,0,0,0,0,0,1033,NULL,0,1,0,1285124165,NULL,0),('stevestyle000000000003',1273032720,'3','pbversion0000000000001','approved','Style 03','Style 03','style_03','3','7','12','by Steve from Plain Black http://plainblack.com\r\n\r\nThe last of the WebGUI 7 style templates.',0,0,0,0,0,3907,NULL,0,1,0,1285124167,NULL,0),('stevestyle000000000001',1273032722,'3','pbversion0000000000001','approved','Style 01','Style 01','style_01','3','7','12','by Steve from Plain Black http://plainblack.com\r\n\r\nThe first of the WebGUI 7 styles',0,0,0,0,0,3790,NULL,0,1,0,1285124167,NULL,0),('c8xrwVuu5QE0XtF9DiVzLw',1273032723,'3','pbversion0000000000001','approved','Default Inbox View Template','Default Inbox View Template','root/import/account/inbox/default-inbox-view-template','3','7','12',NULL,0,1,0,0,0,11070,'\n\n',0,1,0,1285124165,'',0),('WikiKeyword00000000001',1274238756,'3','pbversion0000000000001','approved',' Wiki Pages By Keyword (default)',' Wiki Pages By Keyword','wiki-master-by-keyword-template.tmpl','3','7','3',NULL,0,0,0,0,0,2818,NULL,0,1,0,1285124165,NULL,0),('ThingyTmpl000000000004',1277868920,'3','pbversion0000000000001','approved','Default Thingy Search Thing','Default Thingy Search Thing','templates/thingy-default-search-thing','3','7','12',NULL,0,0,0,0,0,9564,'\n\n\n\n\n',0,1,0,1285124164,'',0),('GNOAsX98vCsl0JRwfwL-gg',1277868921,'3','pbversion0000000000001','approved','Collaboration','Collaboration','root/import/collaboration','3','7','12',NULL,0,0,0,0,0,338,NULL,0,1,0,1277868927,NULL,0),('PBtmpl0000000000000066',1277868921,'3','pbversion0000000000001','approved','Default USS','Default USS','default_uss','3','7','12',NULL,0,1,0,0,0,4993,'\n\n\n',0,1,0,1285124162,'',0),('PBtmpl0000000000000080',1277868921,'3','pbversion0000000000001','approved','FAQ','FAQ','faqtemplate','3','7','12',NULL,0,1,0,0,0,3968,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000097',1277868921,'3','pbversion0000000000001','approved','Traditional with Thumbnails','Traditional with Thumbnails','traditional_with_thumbnails','3','7','12',NULL,0,1,0,0,0,6674,'\n',0,1,0,1285124163,'',0),('PBtmpl0000000000000112',1277868921,'3','pbversion0000000000001','approved','Weblog','Weblog','weblog','3','7','12',NULL,0,1,0,0,0,5202,'',0,1,0,1285124163,'',0),('PBtmpl0000000000000121',1277868921,'3','pbversion0000000000001','approved','Photo Gallery','Photo Gallery','photo_gallery','3','7','12',NULL,0,1,0,0,0,3185,'\n\n',0,1,0,1285124163,'',0),('PBtmpl0000000000000067',1277868921,'3','pbversion0000000000001','approved','Default Submission','Default Submission','default_submission','3','7','12',NULL,0,1,0,0,0,22672,'\n',0,1,0,1285124162,'',0),('PBtmpl0000000000000026',1277868921,'3','pbversion0000000000001','approved','Default Forum','Default Forum','default_forum','3','7','12',NULL,0,1,0,0,0,7927,'\n\n\n',0,1,0,1285124161,'',0),('PBtmpl0000000000000128',1277868921,'3','pbversion0000000000001','approved','Classifieds','Classifieds','classifieds','3','7','12',NULL,0,1,0,0,0,3272,'\n\n',0,1,0,1285124163,'',0),('PBtmpl0000000000000079',1277868921,'3','pbversion0000000000001','approved','Topics','Topics','topics','3','7','12',NULL,0,1,0,0,0,4948,'\n',0,1,0,1285124162,'',0),('PBtmpl0000000000000083',1277868921,'3','pbversion0000000000001','approved','Link List','Link List','link_list','3','7','12',NULL,0,1,0,0,0,3716,NULL,0,1,0,1285124163,NULL,0),('PBtmpl0000000000000082',1277868921,'3','pbversion0000000000001','approved','Unordered List','Unordered List','unordered_list','3','7','12',NULL,0,1,0,0,0,4633,'\n',0,1,0,1285124162,'',0),('PBtmpl0000000000000133',1277868921,'3','pbversion0000000000001','approved','Guest Book','Guest Book','guest_book','3','7','12',NULL,0,1,0,0,0,3270,NULL,0,1,0,1285124163,NULL,0),('PBtmpl0000000000000029',1277868921,'3','pbversion0000000000001','approved','Default Post Form','Default Post Form','default_post_form','3','7','12',NULL,0,1,0,0,0,4119,'\n',0,1,0,1285124162,'',0),('PBtmpl0000000000000032',1277868921,'3','pbversion0000000000001','approved','Default Thread','Default Thread','default_thread','3','7','12',NULL,0,1,0,0,0,11649,'\n',0,1,0,1285124162,'',0),('PBtmpl0000000000000031',1277868921,'3','pbversion0000000000001','approved','Default Forum Search','Default Forum Search','default_forum_search','3','7','12',NULL,0,1,0,0,0,3848,'',0,1,0,1285124162,'',0),('PBtmpl0000000000000068',1277868921,'3','pbversion0000000000001','approved','Default Submission Form','Default Submission Form','default_submission_form','3','7','12',NULL,0,1,0,0,0,5051,'\n',0,1,0,1285124162,'',0),('PBtmpl0000000000000099',1277868921,'3','pbversion0000000000001','approved','FAQ Submission Form','FAQ Submission Form','faq_submission_form','3','7','12',NULL,0,1,0,0,0,4330,'\n',0,1,0,1285124163,'',0),('PBtmpl0000000000000114',1277868922,'3','pbversion0000000000001','approved','Link List Submission Form','Link List Submission Form','link_list_submission_form','3','7','12',NULL,0,1,0,0,0,5502,'\n',0,1,0,1285124163,'',0),('PBtmpl0000000000000098',1277868922,'3','pbversion0000000000001','approved','Job','Job','job','3','7','12',NULL,0,1,0,0,0,20225,'',0,1,0,1285124163,'',0),('PBtmpl0000000000000122',1277868922,'3','pbversion0000000000001','approved','Job Submission Form','Job Submission Form','job_submission_form','3','7','12',NULL,0,1,0,0,0,6134,'\n',0,1,0,1285124163,'',0),('PBtmpl0000000000000081',1277868922,'3','pbversion0000000000001','approved','Q and A','Q and A','q_and_a','3','7','12',NULL,0,1,0,0,0,4546,'\n',0,1,0,1285124162,'',0),('PBtmpl0000000000000101',1277868922,'3','pbversion0000000000001','approved','Ordered List','Ordered List','ordered_list','3','7','12',NULL,0,1,0,0,0,3771,NULL,0,1,0,1285124163,NULL,0),('PBtmpl0000000000000113',1277868922,'3','pbversion0000000000001','approved','Link','Link','link','3','7','12',NULL,0,1,0,0,0,19099,'',0,1,0,1285124163,'',0),('PBtmpl0000000000000208',1277868922,'3','pbversion0000000000001','approved','Request Tracker','Request Tracker','request-tracker-template','3','7','12',NULL,0,0,0,0,0,6800,'\n\n\n\n\n',0,1,0,1285124164,'',0),('PBtmpl0000000000000209',1277868922,'3','pbversion0000000000001','approved','Request Tracker Thread','Request Tracker Thread','request-tracker-post-template','3','7','12',NULL,0,0,0,0,0,22451,'\n',0,1,0,1285124164,'',0),('PBtmpl0000000000000210',1277868922,'3','pbversion0000000000001','approved','Request Tracker Post Form','Request Tracker Post Form','request-tracker-template2','3','7','12',NULL,0,0,0,0,0,5928,'\n\n\n',0,1,0,1285124164,'',0),('default_post_received1',1277868922,'3','pbversion0000000000001','approved','Default Post Received','Default Post Received','default_post_received','3','7','4',NULL,0,0,0,0,0,541,NULL,0,1,0,1285124166,NULL,0),('default_CS_unsubscribe',1277868922,'3','pbversion0000000000001','approved','Default Collaboration System Unsubscribe','Default Collaboration System Unsubscribe','collaboration_unsubscribe','3','7','4',NULL,0,0,0,0,0,1092,NULL,0,1,0,1285124166,NULL,0),('mfHGkp6t9gdclmzN33OEnw',1277868927,'3','pbversion0000000000001','approved','Default Twitter Choose Username','Default Twitter Choose Username','root/import/auth/twitter/chooseusername/default-twitter-choose-username','3','7','12',NULL,0,1,0,0,0,1074,NULL,0,1,0,1285124167,NULL,0),('CalendarMonth000000001',1279073449,'3','pbversion0000000000001','approved','Default Calendar Month','Default Calendar Month','root/import/calendar-templates/default-calendar-month','3','7','12',NULL,0,0,0,0,0,16187,'\n\n\n\n\n',0,1,0,1285124160,'',0),('8tqyQx-LwYUHIWOlKPjJrA',1279073449,'3','pbversion0000000000001','approved','EMS Event Submission Template','EMS Event Submission Template','root/import/ems/ems-event-submission','3','7','12',NULL,0,1,0,0,0,5296,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n',0,1,0,1285124159,'',0),('DoVNijm6lMDE0cYrtvEbDQ',1279073449,'3','pbversion0000000000001','approved','EMS Event Submission Main Template','EMS Event Submission Main Template','root/import/ems/ems-event-submission-main','3','7','12',NULL,0,1,0,0,0,8281,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n',0,1,0,1285124160,'',0),('6uQEULvXFgCYlRWnYzZsuA',1279073450,'3','pbversion0000000000001','approved','Default Inbox Send Message Template','Default Inbox Send Message Template','root/import/account/inbox/default-inbox-send-message-template','3','7','12',NULL,0,1,0,0,0,9065,'\n\n\n\n\n',0,1,0,1285124159,'',0),('ktSvKU8riGimhcsxXwqvPQ',1279073450,'3','pbversion0000000000001','approved','EMS Event Submission Queue','EMS Event Submission Queue','root/import/ems/ems-event-submission-queue','3','7','12',NULL,0,1,0,0,0,7457,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n',0,1,0,1285124166,'',0),('4Yfz9hqBqM8OYMGuQK8oLw',1271352537,'1','pbversion0000000000001','approved','Get Features','Get Features','yns/features','3','7','4',NULL,0,1,0,0,0,772,NULL,0,1,0,1301974027,NULL,0),('Wl8WZ43g2rK5AYr9o4zY7w',1271445539,'1','pbversion0000000000001','approved','Get Style','Get Style','yns/style','3','7','4',NULL,0,1,0,0,0,700,NULL,0,1,0,1301974027,NULL,0),('LBuiKzg2mWwmOPS9AgV3bg',1271348789,'1','pbversion0000000000001','approved','Get Translated','Get Translated','yns/translated','3','7','4',NULL,0,1,0,0,0,728,NULL,0,1,0,1301974027,NULL,0),('jTNggl7AoVSUc_ZzrvuCmw',1271348789,'1','pbversion0000000000001','approved','Get Promoted','Get Promoted','yns/promotion','3','7','4',NULL,0,1,0,0,0,721,NULL,0,1,0,1301974027,NULL,0),('mTOiwwk3q4k9g5-XykXhPA',1271349647,'1','pbversion0000000000001','approved','Documentation','Documentation','documentation','3','7','3',NULL,0,0,0,0,0,561,NULL,0,1,0,1301974027,NULL,0),('2TqQc4OISddWCZmRY1_m8A',1271357565,'1','pbversion0000000000001','approved','Join Us','Join Us','join_us','3','7','3',NULL,0,0,0,0,0,577,NULL,0,1,0,1301974028,NULL,0),('k2Qj03FrAOXYra8kDJYYXw',1271357513,'1','pbversion0000000000001','approved','IRC (Internet Relay Chat)','IRC','join_us/irc','3','7','3',NULL,0,1,0,0,0,1197,NULL,0,1,0,1301974028,NULL,0),('ksSfkZdsr0uC62NwIk6hFQ',1271356973,'1','pbversion0000000000001','approved','WebGUI Users Conference','WUC','join_us/wuc','3','7','3',NULL,0,1,0,0,0,861,NULL,0,1,0,1301974028,NULL,0),('nWxS5jnA3o3DgPEwBeR7yQ',1271357239,'1','pbversion0000000000001','approved','The Forums','forums','join_us/forums','3','7','3',NULL,0,1,0,0,0,1531,NULL,0,1,0,1301974028,NULL,0),('x3OFY6OJh_qsXkZfPwug4A',1271348790,'1','pbversion0000000000001','approved','Site Map','Site Map','site_map','3','7','3',NULL,0,0,0,0,0,349,NULL,0,1,0,1301974028,NULL,0),('pJd5TLAjfWMVXD6sCRLwUg',1271348790,'1','pbversion0000000000001','approved','Site Map','Site Map','site_map/site_map','3','7','3',NULL,0,1,0,0,0,364,NULL,0,1,0,1301974028,NULL,0),('OhdaFLE7sXOzo_SIP2ZUgA',1271445348,'1','pbversion0000000000001','approved','Welcome','Welcome','home/welcome','3','7','4',NULL,0,1,0,0,0,2190,NULL,0,1,0,1301974028,NULL,0),('IWFxZDyGhQ3-SLZhELa3qw',1277737686,'1','pbversion0000000000001','approved','Benefits','Benefits','home/key-benefits','3','7','4',NULL,0,1,0,0,0,1835,NULL,0,1,0,1301974028,NULL,0),('LdiozcIUciWuvt3Z-na5Ww',1281501162,'3','pbversion0000000000001','approved','Matrix','Matrix','root/import/matrix','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1281501164,NULL,0),('matrixtmpl000000000002',1281501162,'3','pbversion0000000000001','approved','Matrix Default Compare','Matrix Default Compare','matrix-default-compare-template','3','7','12',NULL,0,0,0,0,0,20669,'\n\n\n\n\n\n\n\n\n\n\n',0,1,0,1285124167,'',0),('matrixtmpl000000000001',1281501162,'3','pbversion0000000000001','approved','Matrix Default View','Matrix Default View','matrix-default-view-template','3','7','12',NULL,0,0,0,0,0,22048,'\n\n\n\n\n\n\n',0,1,0,1285124166,'',0),('matrixtmpl000000000003',1281501163,'3','pbversion0000000000001','approved','Matrix Default Detailed Listing','Matrix Default Detailed Listing','matrix-default-detailed-listing','3','7','12',NULL,0,0,0,0,0,15360,'\n\n\n\n\n\n\n\n\n\n\n',0,1,0,1285124167,'',0),('matrixtmpl000000000004',1281501163,'3','pbversion0000000000001','approved','Matrix Default Edit Listing','Matrix Default Edit Listing','default-matrix-edit-listing-template','3','7','12',NULL,0,0,0,0,0,525,NULL,0,1,0,1285124167,NULL,0),('matrixtmpl000000000005',1281501163,'3','pbversion0000000000001','approved','Matrix Default Search','Matrix Default Search','matrix-search-template','3','7','12',NULL,0,0,0,0,0,10307,'\n\n\n\n\n\n\n\n\n\n',0,1,0,1285124167,'',0),('hkj6WeChxFyqfP85UlRP8w',1281501163,'3','pbversion0000000000001','approved','matrix.css','matrix.css','new-matrix/matrix.css','3','7','12',NULL,0,1,0,0,0,16408,NULL,0,1,0,1285124169,NULL,0),('kJf77eCr9GAMiEzWrzsBTA',1281501163,'3','pbversion0000000000001','approved','matrix-ie.css','matrix-ie.css','new-matrix/matrix-ie.css','3','7','12',NULL,0,1,0,0,0,764,NULL,0,1,0,1285124169,NULL,0),('4LQT4-bGW4FkiEQLSY5gvQ',1281501163,'3','pbversion0000000000001','approved','show-hide.js','show-hide.js','new-matrix/show-hide.js','3','7','12',NULL,0,1,0,0,0,933,NULL,0,1,0,1285124168,NULL,0),('alraubvBu-YJJ614jAHD5w',1281501163,'3','pbversion0000000000001','approved','matrix-nav-tmpl','matrix-nav-tmpl','new-matrix/matrix-nav-tmpl','3','7','12',NULL,0,1,0,0,0,711,NULL,0,1,0,1285124165,NULL,0),('Vch1Ww7G_JpBhOhXX07RDg',1281501163,'3','pbversion0000000000001','approved','matrx-nav','matrix-nav','new-matrix/matrix-nav','3','7','12',NULL,0,1,0,0,0,375,NULL,0,1,0,1281501164,NULL,0),('wrq7hMxb1ewQqZ46xmd8Gg',1281501163,'3','pbversion0000000000001','approved','equal-cols.js','equal-cols.js','matrix/equal-cols.js','3','7','12',NULL,0,1,0,0,0,796,NULL,0,1,0,1285124169,NULL,0),('matrixtmpl000000000007',1281501163,'3','pbversion0000000000001','approved','Matrix Default Screenshots Config','Matrix Default Screenshots Config','matrix-default-screenshots-config','3','7','12',NULL,0,0,0,0,0,4099,NULL,0,1,0,1285124167,NULL,0),('matrixtmpl000000000006',1281501163,'3','pbversion0000000000001','approved','Matrix Default Screenshots','Matrix Default Screenshots','matrix-default-screenshots','3','7','12',NULL,0,0,0,0,0,2952,NULL,0,1,0,1285124167,NULL,0),('N716tpSna0iIQTKxS4gTWA',1281501163,'3','pbversion0000000000001','approved','Default Account Layout','Default Account Layout','root/import/account/default-account-layout2','3','7','12',NULL,0,1,0,0,0,1923,'\r\n',0,1,0,1285124161,'',0),('AssetReportFolder00001',1281501163,'3','pbversion0000000000001','approved','Asset Report','Asset Report','asset_report','3','3','4',NULL,0,0,0,0,0,322,NULL,0,1,0,1281501164,NULL,0),('N7uMnnicbyTEulcuRi1sSg',1283900195,'3','pbversion0000000000001','approved','PDFs','PDFs','media/pdfs','3','7','4',NULL,0,1,0,0,0,304,NULL,0,1,0,1283921709,NULL,0),('bCGr7FRtZt-XYlBVUEJBjw',1278013724,'3','pbversion0000000000001','approved','Getting_Started_doc.pdf','Getting_Started_doc.pdf','media/pdfs/getting_started_doc.pdf','3','7','4',NULL,0,1,0,0,0,1188407,NULL,0,1,0,1283921709,NULL,0),('_XfvgNH__bY1ykMiKYSobQ',1281501163,'3','pbversion0000000000001','approved','account.css','account.css','root/import/account/account.css','3','7','12',NULL,0,1,0,0,0,45634,NULL,0,1,0,1285124169,NULL,0),('limMkk80fMB3fqNZVf162w',1281501163,'3','pbversion0000000000001','approved','Default Asset Subscription','Default Asset Subscription','root/import/default-asset-subscription','3','7','3',NULL,0,1,0,0,0,550,NULL,0,1,0,1285124166,NULL,0),('l0guT3vTR3B8cL6vtP-g3A',1285124369,'1','pbversion0000000000001','approved','Contribute','contribute','contribute','3','7','3',NULL,0,1,0,0,0,3239,NULL,1,1,0,1285124369,NULL,0),('sJtcUCfn0CVbKdb4QM61Yw',1283921584,'3','pbversion0000000000001','approved','Asset Report Default Template','Asset Report Default Template','asset-report/asset-report-default-template','3','3','4',NULL,0,1,0,0,0,2218,NULL,0,1,0,1285124167,NULL,0),('A16v-YjWAShXWvSACsraeg',1285124154,'3','pbversion0000000000001','approved','StoryTopic','StoryTopic','root/import/storymanager/storytopic','3','7','4',NULL,0,0,0,0,0,2870,'',0,1,0,1285124171,'',0),('gI_TxK-5S4DNuv42wpImmw',1285124155,'3','pbversion0000000000001','approved','Gallery Templates','Gallery Templates','root/import/gallery-templates','3','7','3',NULL,0,0,0,0,0,362,NULL,0,1,0,1285124169,NULL,0),('jME5BEDYVDlBZ8jIQA9-jQ',1285124155,'3','pbversion0000000000001','approved','Default Gallery Search','Default Gallery Search','root/import/gallery-templates/default-gallery-search','3','7','3',NULL,0,1,0,0,0,11460,'\r\n \r\n',0,1,0,1285124169,'',0),('azCqD0IjdQSlM3ar29k5Sg',1285124155,'3','pbversion0000000000001','approved','Default Gallery List Albums View','Default Gallery List Albums View','root/import/gallery-templates/default-gallery-list-albums-view','3','7','3',NULL,0,1,0,0,0,5927,' \r\n \r\n ',0,1,0,1285124169,'',0),('05FpjceLYhq4csF1Kww1KQ',1285124155,'3','pbversion0000000000001','approved','Default Gallery View Album','Default Gallery View Album','root/import/gallery-templates/default-gallery-view-album','3','7','3',NULL,0,1,0,0,0,7861,' \n \n ',0,1,0,1285124169,'',0),('q5O62aH4pjUXsrQR3Pq4lw',1285124155,'3','pbversion0000000000001','approved','Default Gallery View Album Thumbnails','Default Gallery View Album Thumbnails','root/import/gallery-templates/default-gallery-view-album-thumbnails','3','7','3',NULL,0,1,0,0,0,7651,'\r\n\r\n\r\n\r\n\r\n',0,1,0,1285124169,'',0),('KAMdiUdJykjN02CPHpyZOw',1285124155,'3','pbversion0000000000001','approved','Default Gallery View Album Slideshow','Default Gallery View Album Slideshow','root/import/gallery-templates/default-gallery-view-album-slideshow','3','7','3',NULL,0,1,0,0,0,7941,'\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n',0,1,0,1285124169,'',0),('OkphOEdaSGTXnFGhK4GT5A',1285124155,'3','pbversion0000000000001','approved','Default Gallery List Files For User','Default Gallery List Files For User','root/import/gallery-templates/default-gallery-list-files-for-user','3','7','3',NULL,0,1,0,0,0,7790,'\n \n',0,1,0,1285124169,'',0),('TEId5V-jEvUULsZA0wuRuA',1285124155,'3','pbversion0000000000001','approved','Default Gallery View Photo','Default Gallery View Photo','root/import/gallery-templates/default-gallery-view-photo','3','7','3',NULL,0,1,0,0,0,15566,'\n\n\n\n',0,1,0,1285124169,'',0),('6X-7Twabn5KKO_AbgK3PEw',1285124155,'3','pbversion0000000000001','approved','Default Gallery Edit Album','Default Gallery Edit Album','root/import/gallery-templates/default-gallery-edit-album','3','7','3',NULL,0,1,0,0,0,8244,'\n\n\n\n\n\n\n\n\n',0,1,0,1285124169,'',0),('7JCTAiu1U_bT9ldr655Blw',1285124155,'3','pbversion0000000000001','approved','Default Gallery Edit Photo','Default Gallery Edit Photo','root/import/gallery-templates/default-gallery-edit-photo','3','7','3',NULL,0,1,0,0,0,7438,'\n\n\n\n',0,1,0,1285124169,'',0),('0X4Q3tBWUb_thsVbsYz9xQ',1285124155,'3','pbversion0000000000001','approved','Default Gallery Add Archive','Default Gallery Add Archive','root/import/gallery-templates/default-gallery-add-archive','3','7','3',NULL,0,1,0,0,0,3773,' \r\n\r\n ',0,1,0,1285124169,'',0),('m3IbBavqzuKDd2PGGhKPlA',1285124155,'3','pbversion0000000000001','approved','Default Gallery Make Shortcut','Default Gallery Make Shortcut','root/import/gallery-templates/default-gallery-make-shortcut','3','7','3',NULL,0,1,0,0,0,5111,'\n\n\n\n',0,1,0,1285124169,'',0),('UTNFeV7B_aSCRmmaFCq4Vw',1285124155,'3','pbversion0000000000001','approved','Default Gallery Delete Album','Default Gallery Delete Album','root/import/gallery-templates/default-gallery-delete-album','3','7','3',NULL,0,1,0,0,0,4712,'\n \n\n\n',0,1,0,1285124169,'',0),('zcX-wIUct0S_np14xxOA-A',1285124155,'3','pbversion0000000000001','approved','Default Gallery Delete File','Default Gallery Delete File','root/import/gallery-templates/default-gallery-delete-file','3','7','3',NULL,0,1,0,0,0,4728,'\n \n\n\n',0,1,0,1285124169,'',0),('MBZK_LPVzqhb4TV4mMRTJg',1285124155,'3','pbversion0000000000001','approved','admin_ie7.css','admin_ie7.css','root/import/gallery-templates/admin_ie7.css','3','7','3',NULL,0,1,0,0,0,380,NULL,0,1,0,1285124169,NULL,0),('_hELmIJfgbAyXFNqPyApxQ',1285124155,'3','pbversion0000000000001','approved','admin.css','admin.css','root/import/gallery-templates/admin.css','3','7','3',NULL,0,1,0,0,0,3957,NULL,0,1,0,1285124169,NULL,0),('kaPRSaf8UKiskiGEgJgLAw',1285124155,'3','pbversion0000000000001','approved','images','images','root/import/gallery-templates/images','3','7','3',NULL,0,0,0,0,0,340,NULL,0,1,0,1285124169,NULL,0),('bANo8aiAPA7aY_oQZKxIWw',1285124155,'3','pbversion0000000000001','approved','rss.gif','rss.gif','root/import/gallery-templates/images/rss.gif','3','7','3',NULL,0,1,0,0,0,1389,NULL,0,1,0,1285124169,NULL,0),('2ci_v2d4x4uvyjTRlC49OA',1285124156,'3','pbversion0000000000001','approved','moveDown.gif','moveDown.gif','root/import/gallery-templates/images/movedown.gif','3','7','3',NULL,0,1,0,0,0,784,NULL,0,1,0,1285124169,NULL,0),('O-EsSzKgAk1KolFT-x_KsA',1285124156,'3','pbversion0000000000001','approved','moveUp.gif','moveUp.gif','root/import/gallery-templates/images/moveup.gif','3','7','3',NULL,0,1,0,0,0,772,NULL,0,1,0,1285124170,NULL,0),('fdd8tGExyVwHyrB8RBbKXg',1285124156,'3','pbversion0000000000001','approved','next.gif','next.gif','root/import/gallery-templates/images/next.gif','3','7','3',NULL,0,1,0,0,0,1676,NULL,0,1,0,1285124170,NULL,0),('BpisgHl4ZDcSECJp6oib1w',1285124156,'3','pbversion0000000000001','approved','play.gif','play.gif','root/import/gallery-templates/images/play.gif','3','7','3',NULL,0,1,0,0,0,2113,NULL,0,1,0,1285124170,NULL,0),('zshreRgPAXtnF0DtVbQ1Yg',1285124156,'3','pbversion0000000000001','approved','previous.gif','previous.gif','root/import/gallery-templates/images/previous.gif','3','7','3',NULL,0,1,0,0,0,1682,NULL,0,1,0,1285124170,NULL,0),('POVcY79vIqAHR8OfGt36aw',1285124156,'3','pbversion0000000000001','approved','pagination_button.jpg','pagination_button.jpg','root/import/gallery-templates/images/pagination_button.jpg','3','7','12',NULL,0,1,0,0,0,1050,NULL,0,0,0,1285124170,NULL,0),('hIB-z34r8Xl-vYVYCkKr-w',1285124156,'3','pbversion0000000000001','approved','bar-btn-r.jpg','bar-btn-r.jpg','root/import/gallery-templates/images/bar-btn-r.jpg','3','7','12',NULL,0,1,0,0,0,830,NULL,0,0,0,1285124170,NULL,0),('-mPUoFlYcjqjPUPRLAlxNQ',1285124156,'3','pbversion0000000000001','approved','search-field-r.jpg','search-field-r.jpg','root/import/gallery-templates/images/search-field-r.jpg','3','7','12',NULL,0,1,0,0,0,848,NULL,0,0,0,1285124170,NULL,0),('MDpUOR-N8KMyt1J7Hh_h4w',1285124156,'3','pbversion0000000000001','approved','bar-btn.jpg','bar-btn.jpg','root/import/gallery-templates/images/bar-btn.jpg','3','7','12',NULL,0,1,0,0,0,708,NULL,0,0,0,1285124170,NULL,0),('YfXKByTwDZVituMc4h13Dg',1285124156,'3','pbversion0000000000001','approved','pagination_bg.jpg','pagination_bg.jpg','root/import/gallery-templates/images/pagination_bg.jpg','3','7','12',NULL,0,1,0,0,0,1131,NULL,0,0,0,1285124170,NULL,0),('esko_HSU0Gh-uJZ1h3xRmQ',1285124156,'3','pbversion0000000000001','approved','search-field-l.jpg','search-field-l.jpg','root/import/gallery-templates/images/search-field-l.jpg','3','7','12',NULL,0,1,0,0,0,874,NULL,0,0,0,1285124170,NULL,0),('oSqpGswzpBG_ErdfYwIO8A',1285124156,'3','pbversion0000000000001','approved','top_bg.jpg','top_bg.jpg','root/import/gallery-templates/images/top_bg.jpg','3','7','12',NULL,0,1,0,0,0,692,NULL,0,0,0,1285124170,NULL,0),('MXJklShZvLLB_DSnZQmXrQ',1285124156,'3','pbversion0000000000001','approved','title_bg.jpg','title_bg.jpg','root/import/gallery-templates/images/title_bg.jpg','3','7','12',NULL,0,1,0,0,0,1658,NULL,0,0,0,1285124170,NULL,0),('BthxD5oJ0idmsyI3ioA2FA',1285124156,'3','pbversion0000000000001','approved','bar-btn-l.jpg','bar-btn-l.jpg','root/import/gallery-templates/images/bar-btn-l.jpg','3','7','12',NULL,0,1,0,0,0,845,NULL,0,0,0,1285124170,NULL,0),('aZ-1HYQamkRHYXvzAra8WQ',1285124156,'3','pbversion0000000000001','approved','search-field.jpg','search-field.jpg','root/import/gallery-templates/images/search-field.jpg','3','7','12',NULL,0,1,0,0,0,750,NULL,0,0,0,1285124170,NULL,0),('eRkb94OYcS5AdcrrerOP5Q',1285124157,'3','pbversion0000000000001','approved','rss.gif','rss.gif','root/import/gallery-templates/images/rss2.gif','3','7','12',NULL,0,1,0,0,0,1391,NULL,0,0,0,1285124170,NULL,0),('TbnkjAJQEASORXIpYqDkcA',1285124157,'3','pbversion0000000000001','approved','blank-image.jpg','blank-image.jpg','root/import/gallery-templates/images/blank-image.jpg','3','7','12',NULL,0,1,0,0,0,3084,NULL,0,0,0,1285124170,NULL,0),('er-3faBjY-hhlDcc5aKqdQ',1285124157,'3','pbversion0000000000001','approved','top_bg.jpg','top_bg.jpg','root/import/gallery-templates/images/top_bg2.jpg','3','7','12',NULL,0,1,0,0,0,693,NULL,0,0,0,1285124170,NULL,0),('8bFsu2FJUqHRUiHcozcVFw',1285124157,'3','pbversion0000000000001','approved','sub-btn-l.jpg','sub-btn-l.jpg','root/import/gallery-templates/images/sub-btn-l.jpg','3','7','12',NULL,0,1,0,0,0,844,NULL,0,0,0,1285124170,NULL,0),('34Aayx5eA320D8VfhdfDBw',1285124157,'3','pbversion0000000000001','approved','sub-btn-r.jpg','sub-btn-r.jpg','root/import/gallery-templates/images/sub-btn-r.jpg','3','7','12',NULL,0,1,0,0,0,824,NULL,0,0,0,1285124170,NULL,0),('TlhKOVmWblZOsAdqmhEpeg',1285124157,'3','pbversion0000000000001','approved','sub-btn.jpg','sub-btn.jpg','root/import/gallery-templates/images/sub-btn.jpg','3','7','12',NULL,0,1,0,0,0,702,NULL,0,0,0,1285124170,NULL,0),('Nx0ypjO3cN6QdZUBUEE0lA',1285124157,'3','pbversion0000000000001','approved','pic-title-bg.jpg','pic-title-bg.jpg','root/import/gallery-templates/images/pic-title-bg.jpg','3','7','12',NULL,0,1,0,0,0,865,NULL,0,0,0,1285124170,NULL,0),('CmFZLN7iPS7XXvUEsxKPKA',1285124157,'3','pbversion0000000000001','approved','row-2.jpg','row-2.jpg','root/import/gallery-templates/images/row-2.jpg','3','7','12',NULL,0,1,0,0,0,806,NULL,0,0,0,1285124170,NULL,0),('v_XBgwwZqgW1D5s4y05qfg',1285124157,'3','pbversion0000000000001','approved','addtl-info.gif','addtl-info.gif','root/import/gallery-templates/images/addtl-info.gif','3','7','12',NULL,0,1,0,0,0,914,NULL,0,0,0,1285124170,NULL,0),('4TdAkKoQbSCvI7QWcW889A',1285124157,'3','pbversion0000000000001','approved','row-1.jpg','row-1.jpg','root/import/gallery-templates/images/row-1.jpg','3','7','12',NULL,0,1,0,0,0,791,NULL,0,0,0,1285124170,NULL,0),('SAgK6eDPCG1cgkJ59WapHQ',1285124157,'3','pbversion0000000000001','approved','prev-btn.gif','prev-btn.gif','root/import/gallery-templates/images/prev-btn.gif','3','7','12',NULL,0,1,0,0,0,2015,NULL,0,0,0,1285124170,NULL,0),('XJYLuvGy9ubF7JNKyINtpA',1285124157,'3','pbversion0000000000001','approved','play-btn.gif','play-btn.gif','root/import/gallery-templates/images/play-btn.gif','3','7','12',NULL,0,1,0,0,0,2543,NULL,0,0,0,1285124170,NULL,0),('RWj7hyv2SpZuXxwj1Wocug',1285124157,'3','pbversion0000000000001','approved','next-btn.gif','next-btn.gif','root/import/gallery-templates/images/next-btn.gif','3','7','12',NULL,0,1,0,0,0,2045,NULL,0,0,0,1285124170,NULL,0),('aq8QElnlm3YufAoxRz9Pcg',1285124158,'3','pbversion0000000000001','approved','data-bg.jpg','data-bg.jpg','root/import/gallery-templates/images/data-bg.jpg','3','7','12',NULL,0,1,0,0,0,821,NULL,0,0,0,1285124170,NULL,0),('i6-BofrJJYozovlzFBByXg',1285124158,'3','pbversion0000000000001','approved','first-photo-button.png','first-photo-button.png','root/import/gallery-templates/images/first-photo-button.png','3','7','3',NULL,0,1,0,0,0,1069,NULL,0,1,0,1285124170,NULL,0),('fU_OZCmtdFNJ8a6bMve8ng',1285124158,'3','pbversion0000000000001','approved','previous-photo-button.png','previous-photo-button.png','root/import/gallery-templates/images/previous-photo-button.png','3','7','3',NULL,0,1,0,0,0,943,NULL,0,1,0,1285124170,NULL,0),('YXCtusAxb4vzZ5sTnUA5DA',1285124158,'3','pbversion0000000000001','approved','next-photo-button.png','next-photo-button.png','root/import/gallery-templates/images/next-photo-button.png','3','7','3',NULL,0,1,0,0,0,955,NULL,0,1,0,1285124170,NULL,0),('k_xuE82wwp8gFVl9aaaG8g',1285124158,'3','pbversion0000000000001','approved','last-photo-button.png','last-photo-button.png','root/import/gallery-templates/images/last-photo-button.png','3','7','3',NULL,0,1,0,0,0,1072,NULL,0,1,0,1285124170,NULL,0),('NPM_WItpM5IzLWBhWjYfCA',1285124158,'3','pbversion0000000000001','approved','photo-navigation-spacer.png','photo-navigation-spacer.png','root/import/gallery-templates/images/photo-navigation-spacer.png','3','7','3',NULL,0,1,0,0,0,569,NULL,0,1,0,1285124170,NULL,0),('mM3bjP_iG9sv5nQb4S17tQ',1285124158,'3','pbversion0000000000001','approved','Default Gallery View Album RSS','Default Gallery View Album RSS','root/import/gallery-templates/default-gallery-album-rss','3','7','3',NULL,0,1,0,0,0,1259,NULL,0,1,0,1285124170,NULL,0),('ilu5BrM-VGaOsec9Lm7M6Q',1285124158,'3','pbversion0000000000001','approved','Default Gallery List Albums RSS','Default Gallery List Albums RSS','root/import/gallery-templates/default-gallery-list-albums-rss','3','7','3',NULL,0,1,0,0,0,1268,NULL,0,1,0,1285124170,NULL,0),('-ANLpoTEP-n4POAdRxCzRw',1285124158,'3','pbversion0000000000001','approved','Default Gallery List Files For User RSS','Default Gallery List Files For User RSS','root/import/gallery-templates/default-gallery-list-files-for-user-rss','3','7','3',NULL,0,1,0,0,0,1300,NULL,0,1,0,1285124170,NULL,0),('OxJWQgnGsgyGohP2L3zJPQ',1285124158,'3','pbversion0000000000001','approved','Default Gallery Edit Comment','Default Gallery Edit Comment','root/import/gallery-templates/default-gallery-edit-comment','3','7','3',NULL,0,1,0,0,0,5493,'',0,1,0,1285124170,'',0),('7fE8md51vTCcuJFOvxNaGA',1285124158,'3','pbversion0000000000001','approved','thumbnails.js','thumbnails.js','root/import/gallery-templates/thumbnails.js','3','7','3',NULL,0,1,0,0,0,5848,NULL,0,1,0,1285124170,NULL,0),('1oGhfj00KkCzP1ez01AfKA',1285124158,'3','pbversion0000000000001','approved','slideshow.js','slideshow.js','root/import/gallery-templates/slideshow.js','3','7','3',NULL,0,1,0,0,0,11975,NULL,0,1,0,1285124170,NULL,0),('3qiVYhNTXMVC5hfsumVHgg',1285124158,'3','pbversion0000000000001','approved','browserdetect.js','browserdetect.js','root/import/gallery-templates/browserdetect.js','3','7','3',NULL,0,1,0,0,0,4375,NULL,0,1,0,1285124170,NULL,0),('THQhn1C-ooj-TLlEP7aIJQ',1285124158,'3','pbversion0000000000001','approved','gallery-ie.css','gallery-ie.css','root/import/gallery-templates/gallery-ie.css','3','7','3',NULL,0,1,0,0,0,626,NULL,0,1,0,1285124170,NULL,0),('qxd0WpRGqDPWP8WBicYvEA',1285124158,'3','pbversion0000000000001','approved','dragdropsorting.js','dragdropsorting.js','root/import/gallery-templates/dragdropsorting.js','3','7','12',NULL,0,1,0,0,0,9518,NULL,0,1,0,1285124171,NULL,0),('RrV4aAPnn4dM0ZcU3OXnlw',1286336607,'3','pbversion0000000000001','approved','style','style','root/import/style','3','7','12',NULL,0,0,0,0,0,314,NULL,0,1,0,1286336607,NULL,0),('PBtmpl0000000000000111',1286336607,'3','pbversion0000000000001','approved','Make Page Printable','Make Page Printable','make_page_printable','3','7','12',NULL,0,1,0,0,0,1791,NULL,0,1,0,1286336607,NULL,0),('A3T7jpTBKLYws1h5mJ0t8A',1286336607,'3','pbversion0000000000001','approved','makepageprintable.css','makepageprintable.css','makepageprintable.css','3','7','12',NULL,0,1,0,0,0,6259,NULL,0,1,0,1286336607,NULL,0),('diZvW4bSgZWwyyGP3qXi1g',1285610019,'1','pbversion0000000000001','approved','Commercial Documentation','Commercial Documentation','documentation/commercial-documentation','3','7','3',NULL,0,1,0,0,0,1751,NULL,0,1,0,1301974028,NULL,0),('68sKwDgf9cGH58-NZcU4lg',1286336676,'3','pbversion0000000000001','approved','Welcome','Home','home','3','7','3',NULL,0,0,0,0,0,357,NULL,0,1,0,1286336676,NULL,0),('Am1J-meNBmhqFfEIWy6Gag',1287545014,'3','pbversion0000000000001','approved','crystalX_Navigation','crystalX_Navigation','crystalx/crystalx_navigation','3','7','3',NULL,0,1,0,0,0,406,NULL,0,1,0,1287545016,NULL,0),('1z9J1O08n_7gVVlBwSRBJQ',1287545014,'3','pbversion0000000000001','approved','Auth','Auth','root/import/auth','3','7','12',NULL,0,1,0,0,0,311,NULL,0,1,0,1287545015,NULL,0),('xSmREZO3GNzK3M5PaueOOQ',1287545014,'3','pbversion0000000000001','approved','LDAP/Account','LDAP/Account','root/import/auth/ldap/account','3','7','12',NULL,0,0,0,0,0,347,NULL,0,1,0,1287545015,NULL,0),('PBtmpl0000000000000004',1287545014,'3','pbversion0000000000001','approved','Default LDAP Account Display Template','Default LDAP Account Display Template','default_ldap_account_display_template','3','7','12',NULL,0,1,0,0,0,1372,NULL,0,1,0,1287545015,NULL,0),('0bx-xoL8TSXXubFuqKAoVQ',1287545014,'3','pbversion0000000000001','approved','LDAP/Create','LDAP/Create','root/import/auth/ldap/create','3','7','12',NULL,0,0,0,0,0,344,NULL,0,1,0,1287545015,NULL,0),('PBtmpl0000000000000005',1287545014,'3','pbversion0000000000001','approved','Default LDAP Anonymous Registration Template','Default LDAP Anonymous Registration Template','default_ldap_anonymous_registration_template','3','7','12',NULL,0,1,0,0,0,5903,'\n\n',0,1,0,1287545015,'',0),('taX2UYkFF21ALpFZY2rhMw',1287545014,'3','pbversion0000000000001','approved','LDAP/Login','LDAP/Login','root/import/auth/ldap/login','3','7','12',NULL,0,0,0,0,0,341,NULL,0,1,0,1287545015,NULL,0),('PBtmpl0000000000000006',1287545014,'3','pbversion0000000000001','approved','Default LDAP Login Template','Default LDAP Login Template','default_ldap_login_template','3','7','12',NULL,0,1,0,0,0,1974,NULL,0,1,0,1287545015,NULL,0),('K0q_N885Httqev1VCqUWxg',1287545014,'3','pbversion0000000000001','approved','WebGUI/Account','WebGUI/Account','root/import/auth/webgui/account','3','7','12',NULL,0,0,0,0,0,353,NULL,0,1,0,1287545015,NULL,0),('PBtmpl0000000000000010',1287545014,'3','pbversion0000000000001','approved','Default WebGUI Account Display Template','Default WebGUI Account Display Template','default_webgui_account_display_template','3','7','12',NULL,0,1,0,0,0,2780,NULL,0,1,0,1287545015,NULL,0),('fq1ZkYhH24R5tb96kuT10Q',1287545014,'3','pbversion0000000000001','approved','WebGUI/Create','WebGUI/Create','root/import/auth/webgui/create','3','7','12',NULL,0,0,0,0,0,350,NULL,0,1,0,1287545015,NULL,0),('PBtmpl0000000000000011',1287545014,'3','pbversion0000000000001','approved','Default WebGUI Anonymous Registration Template','Default WebGUI Anonymous Registration Template','default_webgui_anonymous_registration_template','3','7','12',NULL,0,1,0,0,0,6676,'\n\n',0,1,0,1287545015,'',0),('PBtmpl0000000000000015',1287545014,'3','pbversion0000000000001','approved','Default WebGUI Welcome Message Template','Default WebGUI Welcome Message Template','root/import/auth/webgui/create/default-webgui-welcome-message-template','3','7','12',NULL,0,1,0,0,0,698,NULL,0,1,0,1287545015,NULL,0),('PBtmpl0000000000000016',1287545014,'3','pbversion0000000000001','approved','Default WebGUI Account Activation Template','Default WebGUI Account Activation Template','root/import/auth/webgui/create/default-webgui-account-activation-template','3','7','3',NULL,0,1,0,0,0,602,NULL,0,1,0,1287545015,NULL,0),('oHk7fAFhEEkB7dHzi0QOQA',1287545014,'3','pbversion0000000000001','approved','WebGUI/Expired','WebGUI/Expired','root/import/auth/webgui/expired','3','7','12',NULL,0,0,0,0,0,353,NULL,0,1,0,1287545016,NULL,0),('PBtmpl0000000000000012',1287545014,'3','pbversion0000000000001','approved','Default WebGUI Password Reset Template','Default WebGUI Password Reset Template','default_webgui_password_reset_template','3','7','12',NULL,0,1,0,0,0,2095,NULL,0,1,0,1287545016,NULL,0),('9M-lrlPQWeeNWfvnDnK_Xg',1287545014,'3','pbversion0000000000001','approved','WebGUI/Login','WebGUI/Login','root/import/auth/webgui/login','3','7','12',NULL,0,0,0,0,0,347,NULL,0,1,0,1287545016,NULL,0),('PBtmpl0000000000000013',1287545014,'3','pbversion0000000000001','approved','Default WebGUI Login Template','Default WebGUI Login Template','default_webgui_login_template','3','7','12',NULL,0,1,0,0,0,2262,NULL,0,1,0,1287545016,NULL,0),('_gBYAdTcbkiyamnqi2Xskg',1287545014,'3','pbversion0000000000001','approved','WebGUI/Recovery','WebGUI/Recovery','root/import/auth/webgui/recovery','3','7','12',NULL,0,0,0,0,0,356,NULL,0,1,0,1287545016,NULL,0),('PBtmpl0000000000000014',1287545015,'3','pbversion0000000000001','approved','Default WebGUI Password Recovery Template','Default WebGUI Password Recovery Template','default_webgui_password_recovery_template','3','7','12',NULL,0,1,0,0,0,3073,NULL,0,1,0,1287545016,NULL,0),('0iMMbGN3BevuCBHjjLiQNA',1287545015,'3','pbversion0000000000001','approved','WebGUI/Deactivate','WebGUI/Deactivate','root/import/auth/webgui/deactivate','3','7','12',NULL,0,1,0,0,0,361,NULL,0,1,0,1287545016,NULL,0),('zaHUYsE_PgKk8hnVd8ffEQ',1287545015,'3','pbversion0000000000001','approved','WebGUI Deactivate Account Template','WebGUI Deactivate Account Template','default_webgui_deactivate_account_template','3','7','12',NULL,0,1,0,0,0,859,NULL,0,1,0,1287545016,NULL,0),('6A4yIjWwJfIE0Ep-I0jutg',1287545015,'3','pbversion0000000000001','approved','LDAP/Deactivate','LDAP/Deactivate','root/import/auth/ldap/deactivate','3','7','12',NULL,0,1,0,0,0,355,NULL,0,1,0,1287545016,NULL,0),('_P4PMiraGsLTfOjK4fYQPQ',1287545015,'3','pbversion0000000000001','approved','LDAP Deactivate Account Template','LDAP Deactivate Account Template','default_ldap_deactivate_account_template','3','7','12',NULL,0,1,0,0,0,851,NULL,0,1,0,1287545016,NULL,0),('sK_0zVw4kwdJ1sqREIsSzA',1287545015,'3','pbversion0000000000001','approved','WebGUI Auth Password Recovery Email Template','Password Recovery Email','root/import/auth/webgui/recoveryemail','3','7','4',NULL,0,0,0,0,0,769,NULL,0,1,0,1287545016,NULL,0),('qsG6B24a0SC5KrhQjmdZBw',1287545015,'3','pbversion0000000000001','approved','survey.css','survey.css','survey.css','3','7','12',NULL,0,1,0,0,0,5092,NULL,0,1,0,1287545016,NULL,0),('kwTL1SWCk0GlpiJ5zAAEPQ',1287545015,'3','pbversion0000000000001','approved','surveyedit.css','surveyedit.css','root/import/survey/surveyedit.css','3','7','12',NULL,0,1,0,0,0,4986,NULL,0,1,0,1287545016,NULL,0),('_cD6DLM_Fs5IlrLeWUjrjg',1287545015,'3','pbversion0000000000001','approved','Workflow Activity Templates','Workflow Activity Templates','root/import/workflow-activity-templates','3','7','12',NULL,0,1,0,0,0,434,NULL,0,1,0,1287545016,NULL,0),('lYhMheuuLROK_iNjaQuPKg',1287545015,'3','pbversion0000000000001','approved','Notify About Version Tag','Notify About Version Tag','root/import/workflow-activity-templates/notify-about-version-tag','3','7','12',NULL,0,1,0,0,0,502,NULL,0,1,0,1287545016,NULL,0),('PBtmpl0000000000000085',1288747840,'3','pbversion0000000000001','approved','Default Email','Default Email','default_email','3','7','12',NULL,0,1,0,0,0,2031,NULL,0,1,0,1288747841,NULL,0),('2rC4ErZ3c77OJzJm7O5s3w',1288747841,'3','pbversion0000000000001','approved','EMS Badge Listing (default)','EMS Badge Listing (default)','root/import/ems/ems-badge-listing-default','3','7','12',NULL,0,1,0,0,0,11613,'\n\n\n\n\n\n\n\n\n\n\n\n\n \n',0,1,0,1288747841,'',0),('lG2exkH9FeYvn4pA63idNg',1289967962,'3','pbversion0000000000001','approved','Friend Manager Edit Friends','Friend Manager Edit Friends','root/import/account/friendmanager/edit','3','7','4',NULL,0,0,0,0,0,2587,'',0,1,0,1289967964,'',0),('PBtmpl0000000000000021',1294721945,'3','pbversion0000000000001','approved','Data List','Data List','data_list','3','7','12',NULL,0,1,0,0,0,4917,'',0,1,0,1294721945,'',0),('CalendarEvent000000001',1295931508,'3','pbversion0000000000001','approved','Default Calendar Event','Default Calendar Event','root/import/calendar-templates/default-calendar-event','3','7','12',NULL,0,0,0,0,0,11625,' ',0,1,0,1295931508,'',0),('64tqS80D53Z0JoAs2cX2VQ',1295931508,'3','pbversion0000000000001','approved','FriendManager View Template','FriendManager View Template','root/import/account/friendmanager/view','3','7','4',NULL,0,0,0,0,0,4485,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n',0,1,0,1295931508,'',0),('kj3b-X3i6zRKnhLb4ZiCLw',1295931508,'3','pbversion0000000000001','approved','Default Calendar List View','Default Calendar List View','root/import/calendar-templates/default-calendar-list-view','3','7','3',NULL,0,1,0,0,0,6560,'\n',0,1,0,1295931508,'',0),('PBtmpl0000000000000077',1298351263,'3','pbversion0000000000001','approved','Job Listing','Job Listing','job_listing','3','7','12',NULL,0,1,0,0,0,4876,'\n\n\n',0,1,0,1298351263,'',0),('ThingyTmpl000000000002',1299559129,'3','pbversion0000000000001','approved','Default Thingy View Thing','Default Thingy View Thing','templates/thingy-default-view-thing','3','7','12',NULL,0,0,0,0,0,4833,'\n',0,1,0,1299559129,'',0),('PBtmpl0000000000000088',1300763663,'3','pbversion0000000000001','approved','Image','Image','image','3','7','12',NULL,0,1,0,0,0,850,NULL,0,1,0,1300763664,NULL,0),('S1A9iAwKcQQ6P20uTqw-Ew',1300763664,'3','pbversion0000000000001','approved','Dashboard','Dashboard','root/import/dashboard','3','7','12',NULL,0,0,0,0,0,326,NULL,0,1,0,1300763664,NULL,0),('DashboardViewTmpl00001',1300763664,'3','pbversion0000000000001','approved','Dashboard Default View','Dashboard Default View','dashboard-default-view-template','3','7','12',NULL,0,0,0,0,0,20462,'\n\n\n\n\n\n',0,1,0,1300763664,'',0),('CQp-RFA2pMh5lFSggPPPYg',1301973995,'3','pbversion0000000000001','approved','[Style] Underground','[Style] Underground','style-underground','3','7','3',NULL,0,0,0,0,0,452,NULL,0,1,0,1301974000,NULL,0),('_Mi_NTd3x8UB96LWezWHnw',1301973995,'3','pbversion0000000000001','approved','Images','Images','style-underground/images','3','7','3',NULL,0,0,0,0,0,328,NULL,0,1,0,1301974000,NULL,0),('A_5LVQQWR73QZR8FFbny_w',1301973995,'3','pbversion0000000000001','approved','bg.gif','bg.gif','style-underground/images/bg.gif','3','7','3',NULL,0,1,0,0,0,612,NULL,0,0,0,1301974000,NULL,0),('wywIfa_VuTsq0c5Ed-W-MA',1301973995,'3','pbversion0000000000001','approved','bullet.gif','bullet.gif','style-underground/images/bullet.gif','3','7','3',NULL,0,1,0,0,0,686,NULL,0,0,0,1301974000,NULL,0),('xmykMFjri1O2NrYHbeToVQ',1301973995,'3','pbversion0000000000001','approved','footerbg.gif','footerbg.gif','style-underground/images/footerbg.gif','3','7','3',NULL,0,1,0,0,0,460,NULL,0,0,0,1301974000,NULL,0),('0IIGNBs_-INzqBC5VLeJgw',1301973996,'3','pbversion0000000000001','approved','headerbg.gif','headerbg.gif','style-underground/images/headerbg.gif','3','7','3',NULL,0,1,0,0,0,530,NULL,0,0,0,1301974000,NULL,0),('FXmePdyS0YKuZ1VCGGpK9w',1301973996,'3','pbversion0000000000001','approved','quote.gif','quote.gif','style-underground/images/quote.gif','3','7','3',NULL,0,1,0,0,0,685,NULL,0,0,0,1301974000,NULL,0),('66qCywiE_fiL9u5YIaJhgw',1301973996,'3','pbversion0000000000001','approved','tableft.gif','tableft.gif','style-underground/images/tableft.gif','3','7','3',NULL,0,1,0,0,0,720,NULL,0,0,0,1301974000,NULL,0),('n5VpG4lFsOG1elaWDQbilw',1301973996,'3','pbversion0000000000001','approved','tabright.gif','tabright.gif','style-underground/images/tabright.gif','3','7','3',NULL,0,1,0,0,0,2135,NULL,0,0,0,1301974000,NULL,0),('g3JH1PRq6m6Bj_PnGpcrSQ',1301973996,'3','pbversion0000000000001','approved','CSS','CSS','style-underground/css','3','7','3',NULL,0,0,0,0,0,319,NULL,0,1,0,1301974000,NULL,0),('egpnaaFqWmJwYTZ5CvFH9g',1301973996,'3','pbversion0000000000001','approved','Underground.css','Underground.css','style-underground/css/underground.css','3','7','3',NULL,0,1,0,0,0,11746,NULL,0,1,0,1301974000,NULL,0),('BBpxqoSseIor5C9ei9JEFQ',1301973996,'3','pbversion0000000000001','approved','Underground WebGUI.css','Underground WebGUI.css','style-underground/css/underground-webgui.css','3','7','3',NULL,0,1,0,0,0,528,NULL,0,1,0,1301974000,NULL,0),('G0hl4VilbFKipToyxKqFrg',1301973997,'3','pbversion0000000000001','approved','Prototypes','Prototypes','style-underground/prototypes','3','7','3',NULL,0,0,0,0,0,429,NULL,0,1,0,1301974000,NULL,0),('GWU2qZqe6yEuAKG-5HtBdg',1301973997,'3','pbversion0000000000001','approved','Templates','Templates','style-underground/templates','3','7','3',NULL,0,0,0,0,0,337,NULL,0,1,0,1301974000,NULL,0),('Qk24uXao2yowR6zxbVJ0xA',1301973997,'3','pbversion0000000000001','approved','[style] Underground','[style] Underground','style-underground/style-underground','3','7','3','by Doug from Plain Black http://plainblack.com\r\n\r\nThis is the Underground style from http://www.styleshout.com/ made into a WebGUI package. A simple, functional style.',0,1,0,0,0,4727,NULL,0,1,0,1301974000,NULL,0),('39KNX53B4nYJAyIE1lu8ZQ',1301973997,'3','pbversion0000000000001','approved','[nav] Underground Top Navigation','[nav] Underground Top Navigation','style-underground/nav-underground-top-navigation','3','7','3',NULL,0,1,0,0,0,1139,NULL,0,1,0,1301974000,NULL,0),('ztfi__vHJLsQDsMenrEn-w',1301973997,'3','pbversion0000000000001','approved','[nav] Underground Side Navigation','[nav] Underground Side Navigation','style-underground/nav-underground-side-navigation','3','7','3',NULL,0,1,0,0,0,1148,NULL,0,1,0,1301974000,NULL,0),('8qyrDCNeggB4dzKiOoRuiQ',1301973997,'3','pbversion0000000000001','approved','[admintoggle] Underground Admin Toggle','[admintoggle] Underground Admin Toggle','style-underground/templates/admintoggle-underground-admin-toggle','3','7','3',NULL,0,1,0,0,0,520,NULL,0,1,0,1301974000,NULL,0),('M1NyNeS5jpdIsiIWFiJprw',1301973997,'3','pbversion0000000000001','approved','View My Account','View My Account','style-underground/templates/view-my-account','3','7','3',NULL,0,1,0,0,0,461,NULL,0,1,0,1301974000,NULL,0),('n-Vr_wgxOkwiHGt1nJto9w',1309236774,'3','pbversion0000000000001','approved','Top Navigation','Top Navigation','style-underground/top-navigation','3','7','3',NULL,0,1,0,0,0,393,NULL,0,1,0,1309236774,NULL,0),('AsfpsOpsGzZCb9m7MyxPuw',1301973997,'3','pbversion0000000000001','approved','Navigation','Navigation','style-underground/navigation','3','7','3',NULL,0,0,0,0,0,340,NULL,0,1,0,1301974001,NULL,0),('jmqLxnoWb6p92Cr12lf1hw',1301973997,'3','pbversion0000000000001','approved','Side Navigation','Side Navigation','style-underground/side-navigation','3','7','3',NULL,0,1,0,0,0,402,NULL,0,1,0,1301974001,NULL,0),('8E2UOnj_XPEghTj7nfVM0g',1301973997,'3','pbversion0000000000001','approved','Search','Search','style-underground/search','3','7','3',NULL,0,1,0,0,0,345,NULL,0,1,0,1301974001,NULL,0),('CarouselTmpl0000000001',1301973997,'3','pbversion0000000000001','approved','Default Carousel','Default Carousel','root/import/carousel/carousel-default','3','7','12',NULL,0,0,0,0,0,3709,'\r\n\r\n\r\n',0,1,0,1301974000,'',0),('1qFjOEiILIwr1xB5_ebppQ',1301973998,'3','pbversion0000000000001','approved','Greenportal','Greenportal','greenportal','3','7','3',NULL,0,1,0,0,0,319,NULL,0,1,0,1301974001,NULL,0),('xD76UfQ_JnSgTLBNvytcpQ',1301973998,'3','pbversion0000000000001','approved','greenportal_image','greenportal_image','greenportal_image','3','7','12',NULL,0,1,0,0,0,344,NULL,0,1,0,1301974001,NULL,0),('pAXR7Kby4O-dSxOwLp1GaA',1301973998,'3','pbversion0000000000001','approved','menu_top.png','menu_top.png','greenportal_image/menu_top.png','3','7','12',NULL,0,1,0,0,0,7649,NULL,0,1,0,1301974001,NULL,0),('TthzMLO4n3qxy59QZ5YBHg',1301973998,'3','pbversion0000000000001','approved','menu_dark.png','menu_dark.png','greenportal_image/menu_dark.png','3','7','12',NULL,0,1,0,0,0,2641,NULL,0,1,0,1301974001,NULL,0),('3n31SQjYa150TBrRBgMPhA',1301973998,'3','pbversion0000000000001','approved','menu_light.png','menu_light.png','greenportal_image/menu_light.png','3','7','12',NULL,0,1,0,0,0,2195,NULL,0,1,0,1301974001,NULL,0),('R4RxDufGbbIzEmpcoEcLrw',1301973998,'3','pbversion0000000000001','approved','logo.jpg','logo.jpg','greenportal_image/logo.jpg','3','7','12',NULL,0,1,0,0,0,41449,NULL,0,1,0,1301974001,NULL,0),('xyyn5mz3xGyvrcI1rY8C-w',1301973998,'3','pbversion0000000000001','approved','greenportal.css','greenportal.css','greenportal.css','3','7','12',NULL,0,1,0,0,0,6696,NULL,0,1,0,1301974001,NULL,0),('KKt0VB_eoQxw9xEsHsAhag',1301973998,'3','pbversion0000000000001','approved','Greenportal_style','Greenportal_style','greenportal_style','3','7','12','by Ning from PlutonIT http://pluton.nl\n\nA Joomla! Open Source design released under the GNU/GPL License. Enhanced and converted into WebGUI theme by Ning. The original PHP and CSS file can be downloaded following the author\'s link: http://www.studentsdesign.de/',0,1,0,0,0,2280,NULL,0,1,0,1301974001,NULL,0),('h0bOzz7WvdaVZXsjpwtkww',1301973998,'3','pbversion0000000000001','approved','greenportal_Navigation','greenportal_Navigation','greenportal_navigation','3','7','3',NULL,0,1,0,0,0,394,NULL,0,1,0,1301974001,NULL,0),('_z3ukLCqvoaUygfsbbkBzw',1301973999,'3','pbversion0000000000001','approved','Greenportal_menu','Greenportal_menu','greenportal_menu','3','7','3',NULL,0,1,0,0,0,2014,NULL,0,1,0,1301974001,NULL,0),('qFOfW1sKyOTnGNcP6BXbwg',1301973999,'3','pbversion0000000000001','approved','greenportal_NavigationTop','greenportal_NavigationTop','greenportal_navigationtop','3','7','12',NULL,0,1,0,0,0,416,NULL,0,1,0,1301974001,NULL,0),('Pt38T5_MWSue2e1N36MLdw',1301973999,'3','pbversion0000000000001','approved','Greenportal_menuTop','Greenportal_menuTop','greenportal_menutop','3','7','12',NULL,0,1,0,0,0,950,NULL,0,1,0,1301974001,NULL,0),('LDcM1Iop17nF2MoSa7zo_Q',1301973999,'3','pbversion0000000000001','approved','Greenportal_dataform','Greenportal_dataform','greenportal_dataform','3','7','3',NULL,0,1,0,0,0,5320,'\r\n\r\n',0,1,0,1301974001,'',0),('hVF1taXj4bfd7DuL4XDMYg',1301973999,'3','pbversion0000000000001','approved','Greenportal_datalist','Greenportal_datalist','greenportal_datalist','3','7','3',NULL,0,1,0,0,0,4142,'\n\n',0,1,0,1301974001,'',0),('x4-2QYRSrIB_BJfnSKKj4w',1301973999,'3','pbversion0000000000001','approved','Greenportal_acknowledgement','Greenportal_acknowledgement','greenportal_acknowledgement','3','7','3',NULL,0,1,0,0,0,1755,'',0,1,0,1301974001,'',0),('423R4Y6XIt3wUzlnLo-chg',1301973999,'3','pbversion0000000000001','approved','Greenportal_forum','Greenportal_forum','greenportal_forum','3','7','3',NULL,0,1,0,0,0,7997,'\r\n\r\n\r\n',0,1,0,1301974001,'',0),('oZ1Mk-zExYUyD-JsjTvaHg',1301973999,'3','pbversion0000000000001','approved','Greenportal_thread','Greenportal_thread','greenportal_thread','3','7','3',NULL,0,1,0,0,0,11119,'\r\n',0,1,0,1301974001,'',0),('mYwS8CZaOLMt0raaKXGZcQ',1301973999,'3','pbversion0000000000001','approved','Greenportal_postform','Greenportal_postform','greenportal_postform','3','7','3',NULL,0,1,0,0,0,4047,'\r\n',0,1,0,1301974001,'',0),('kSGR4OHsKmhLQTuLkisOww',1301973999,'3','pbversion0000000000001','approved','Greenportal_search','Greenportal_search','greenportal_search','3','7','3',NULL,0,1,0,0,0,3685,'',0,1,0,1301974001,'',0),('G5DgNizuG3jXkjPp6UaGrA',1301973999,'3','pbversion0000000000001','approved','Greenportal_Calendar','Greenportal_Calendar','greenportal_calendar','3','7','3',NULL,0,1,0,0,0,352,NULL,0,1,0,1301974001,NULL,0),('U78V5IJHVljvRTb6ydsTHg',1301973999,'3','pbversion0000000000001','approved','Greenportal_calendarMonth','Greenportal_calendarMonth','greenportal_calendar/greenportal_calendarmonth','3','7','3',NULL,0,1,0,0,0,15294,'\n\n\n\n\n\n\n',0,1,0,1301974001,'',0),('Xqc3qPUXoFE8dt9qocdWig',1301973999,'3','pbversion0000000000001','approved','Greenportal_calendarWeek','Greenportal_calendarWeek','greenportal_calendar/greenportal_calendarweek','3','7','3',NULL,0,1,0,0,0,10509,'\r\n',0,1,0,1301974001,'',0),('IBTb7wllSt7RxFmmvm9pkQ',1301973999,'3','pbversion0000000000001','approved','Greenportal_calendarDay','Greenportal_calendarDay','greenportal_calendar/greenportal_calendarday','3','7','3',NULL,0,1,0,0,0,10155,' \r\n\r\n',0,1,0,1301974001,'',0),('Z1EM7JMI_4SkyfaZffSElw',1301973999,'3','pbversion0000000000001','approved','Greenportal_calendarEvent','Greenportal_calendarEvent','greenportal_calendar/greenportal_calendarevent','3','7','3',NULL,0,1,0,0,0,8357,' \r\n\r\n',0,1,0,1301974001,'',0),('fJg7SKpGZwzSNx3_ebki1A',1301973999,'3','pbversion0000000000001','approved','Greenportal_calendarEventEdit','Greenportal_calendarEventEdit','greenportal_calendar/greenportal_calendareventedit','3','7','3',NULL,0,1,0,0,0,9181,'\n\n\n \n\n',0,1,0,1301974001,'',0),('ihf4Rx6p72xn_nVKaIeOaw',1301973999,'3','pbversion0000000000001','approved','Greenportal_calendarSearch','Greenportal_calendarSearch','greenportal_calendar/greenportal_calendarsearch','3','7','3',NULL,0,1,0,0,0,9141,' \r\n\r\n',0,1,0,1301974001,'',0),('jrWJ6nHXkqgFbml7BZ9chw',1301974000,'3','pbversion0000000000001','approved','Greenportal_submission','Greenportal_submission','greenportal_submission','3','7','3',NULL,0,1,0,0,0,21039,'\r\n',0,1,0,1301974001,'',0),('Ys6f3vpe0y1uRcaCJ2TlFw',1301974000,'3','pbversion0000000000001','approved','Greenportal_messageboard','Greenportal_messageboard','greenportal_messageboard','3','7','3',NULL,0,1,0,0,0,5587,'',0,1,0,1301974001,'',0),('PBtmpl0000000000000200',1301974000,'3','pbversion0000000000001','approved','Default Search','Default Search','default_search2','3','7','12',NULL,0,0,0,0,0,3966,NULL,0,1,0,1315877144,NULL,0),('E3tzZjzhmYoNlAyP2VW33Q',1303183716,'3','pbversion0000000000001','approved','Edit Story','Edit Story','root/import/storymanager/editstory','3','7','4',NULL,0,0,0,0,0,6440,'',0,1,0,1303183716,'',0),('brxm_faNdZX5tRo3p50g3g',1304392055,'3','pbversion0000000000001','approved','Map Templates','Map Templates','home/map/map-templates','3','7','3',NULL,0,0,0,0,0,334,NULL,0,1,0,1304392055,NULL,0),('9j0_Z1j3Jd0QBbY2akb6qw',1304392055,'3','pbversion0000000000001','approved','Default Map View','Default Map View','home/map/map-templates/default-map-view','3','7','3',NULL,0,1,0,0,0,1292,'',0,1,0,1304392055,'',0),('oHh0UqAJeY7u2n--WD-BAA',1304392055,'3','pbversion0000000000001','approved','Default Edit Map Point','Default Edit Map Point','home/map/map-templates/default-edit-map-point','3','7','3',NULL,0,1,0,0,0,3176,NULL,0,1,0,1304392055,NULL,0),('u9vfx33XDk5la1-QC5FK7g',1304392055,'3','pbversion0000000000001','approved','Default Map Point View','Default Map Point View','home/map/map-templates/default-map-point-view','3','7','3',NULL,0,1,0,0,0,2418,'',0,1,0,1304392055,'',0),('_9_eiaPgxzF_x_upt6-PNQ',1304392055,'3','pbversion0000000000001','approved','gallery.css','gallery.css','root/import/gallery-templates/gallery.css','3','7','3',NULL,0,1,0,0,0,18788,NULL,0,1,0,1304392055,NULL,0),('PBtmpl0000000000000027',1311652541,'3','pbversion0000000000001','approved','Default Forum Notification','Default Forum Notification','default_forum_notification','3','7','12',NULL,0,1,0,0,0,2815,NULL,0,1,0,1311652541,NULL,0),('3n3H85BsdeRQ0I08WmvlOg',1313542960,'3','pbversion0000000000001','approved','thingy.css','thingy.css','root/import/thingy-templates/thingy.css','3','7','12',NULL,0,1,0,0,0,4774,NULL,0,1,0,1313542962,NULL,0),('aNmgn0cd6tldmC1FpW4KbA',1313542960,'3','pbversion0000000000001','approved','Shop','Shop','shopping-cart-collateral-items','3','7','3',NULL,0,1,0,0,0,324,NULL,0,0,0,1313542962,NULL,0),('2q5fxatSFLgIhXaUX-oSvg',1313542960,'3','pbversion0000000000001','approved','bottom-left.jpg','bottom-left.jpg','shopping-cart-collateral-items/bottom-left.jpg','3','7','3',NULL,0,1,0,0,0,32254,NULL,0,0,0,1313542962,NULL,0),('_d5WTkKjnwct-_Dk7gZHvQ',1313542960,'3','pbversion0000000000001','approved','bottom-right.jpg','bottom-right.jpg','shopping-cart-collateral-items/bottom-right.jpg','3','7','3',NULL,0,1,0,0,0,32258,NULL,0,0,0,1313542962,NULL,0),('Iz2mUR3jCPKyemwAea4b2g',1313542960,'3','pbversion0000000000001','approved','input_bg.jpg','input_bg.jpg','shopping-cart-collateral-items/input_bg.jpg','3','7','3',NULL,0,1,0,0,0,30076,NULL,0,0,0,1313542962,NULL,0),('JU9bjsLRoWj7GVHs__prig',1313542960,'3','pbversion0000000000001','approved','top-left.jpg','top-left.jpg','shopping-cart-collateral-items/top-left.jpg','3','7','3',NULL,0,1,0,0,0,32207,NULL,0,0,0,1313542962,NULL,0),('noOlnjQGexHg8c4bGVUo9g',1313542960,'3','pbversion0000000000001','approved','top-right.jpg','top-right.jpg','shopping-cart-collateral-items/top-right.jpg','3','7','3',NULL,0,1,0,0,0,32245,NULL,0,0,0,1313542962,NULL,0),('aIpCmr9Hi__vgdZnDTz1jw',1313542961,'3','pbversion0000000000001','approved','Cart (Default)','Cart (Default)','default-shopping-cart-template','3','7','3',NULL,0,1,0,0,0,26304,' ',0,1,0,1313542962,'',0),('XNd7a_g_cTvJVYrVHcx2Mw',1313542961,'3','pbversion0000000000001','approved','Address (Default)','Address (Default)','shopping-cart-collateral-items/address-default','3','7','3',NULL,0,1,0,0,0,5883,'\r\n',0,1,0,1313542962,'',0),('bPz1yk6Y9uwMDMBcmMsSCg',1313542961,'3','pbversion0000000000001','approved','Email Receipt (Default)','Email Receipt (Default)','shopping-cart-collateral-items/email-receipt-default','3','7','3',NULL,0,1,0,0,0,4751,NULL,0,1,0,1313542962,NULL,0),('vrKXEtluIhbmAS9xmPukDA',1313542961,'3','pbversion0000000000001','approved','Donation (Default)','Donation (Default)','root/import/default-donation-template','3','7','12',NULL,0,1,0,0,0,2504,'\r\n',0,0,0,1313542962,'',0),('63ix2-hU0FchXGIWkG3tow',1313542961,'3','pbversion0000000000001','approved','Flat Discount (Default)','Flat Discount (Default)','root/import/flat-discount-default','3','7','12',NULL,0,1,0,0,0,1278,NULL,0,1,0,1313542962,NULL,0),('eqb9sWjFEVq0yHunGV8IGw',1313542961,'3','pbversion0000000000001','approved','Subscription (Default)','Subscription (Default)','root/import/subscription-default','3','7','12',NULL,0,1,0,0,0,2872,'\n',0,1,0,1313542962,'',0),('3womoo7Teyy2YKFa25-MZg',1313542961,'3','pbversion0000000000001','approved','Address Book (Default)','Address Book (Default)','shopping-cart-collateral-items/address-book-default','3','7','3',NULL,0,1,0,0,0,3132,'\n',0,1,0,1313542962,'',0),('EBlxJpZQ9o-8VBOaGQbChA',1313542961,'3','pbversion0000000000001','approved','MiniCart','MiniCart','shopping-cart-collateral-items/minicart','3','7','3',NULL,0,1,0,0,0,2622,'',0,1,0,1313542962,'',0),('g8W53Pd71uHB9pxaXhWf_A',1313542961,'3','pbversion0000000000001','approved','My Purchases Detail (Default)','My Purchases Detail (Default)','shopping-cart-collateral-items/my-purchases-detail-default','3','7','3',NULL,0,1,0,0,0,8422,'\n',0,1,0,1313542962,'',0),('jEz8iTGNWEt2I05IhVV19Q',1313542961,'3','pbversion0000000000001','approved','Operation/RedeemSubscription','Operation/RedeemSubscription','root/import/operation/redeemsubscription','3','7','12',NULL,0,0,0,0,0,390,NULL,0,1,0,1313542962,NULL,0),('PBtmpl0000000000000053',1313542961,'3','pbversion0000000000001','approved','Subscription code redemption','Subscription code redemption','subscription_code_redemption','3','7','12',NULL,0,1,0,0,0,579,NULL,0,1,0,1313542962,NULL,0),('itransact_credentials1',1313542961,'3','pbversion0000000000001','approved','ITransact Credentials (Default)','ITransact Credentials (Default)','shopping-cart-collateral-items/itransact-credentials','3','7','4',NULL,0,0,0,0,0,11072,' \n\n\n',0,1,0,1313542962,'',0),('D6cJpRcey35aSkh9Q_FPUQ',1313542961,'3','pbversion0000000000001','approved','Default EU User Screen','Default EU User Screen','root/import/default-eu-user-screen','3','7','12',NULL,0,1,0,0,0,1830,NULL,0,1,0,1313542962,NULL,0),('30h5rHxzE_Q0CyI3Gg7EJw',1313542961,'3','pbversion0000000000001','approved','Cash Summary Screen (Default)','Cash Summary Screen (Default)','shopping-cart-collateral-items/cash-summary','3','7','4',NULL,0,0,0,0,0,8671,' \n',0,1,0,1313542962,'',0),('jysVZeUR0Bx2NfrKs5sulg',1313542961,'3','pbversion0000000000001','approved','Ogone Summary Screen (Default)','Ogone Summary Screen (Default)','shopping-cart-collateral-items/ogone-summary','3','7','4',NULL,0,0,0,0,0,8672,' \n',0,1,0,1313542962,'',0),('300AozDaeveAjB_KN0ljlQ',1313542962,'3','pbversion0000000000001','approved','PayPal Standard Summary Screen (Default)','PayPal Standard Summary Screen (Default)','shopping-cart-collateral-items/paypal-std-summary','3','7','4',NULL,0,0,0,0,0,8697,' \n',0,1,0,1313542962,'',0),('GqnZPB0gLoZmqQzYFaq7bg',1313542962,'3','pbversion0000000000001','approved','PayPal Express Checkout Summary Screen (Default)','PayPal Express Checkout Summary Screen (Default)','shopping-cart-collateral-items/paypal-express-summary','3','7','4',NULL,0,0,0,0,0,8716,' \n',0,1,0,1313542962,'',0),('2GxjjkRuRkdUg_PccRPjpA',1313542962,'3','pbversion0000000000001','approved','Select Gateway (Default)','Select Gateway (Default)','shopping-cart-collateral-items/select-gateway-default','3','7','3',NULL,0,1,0,0,0,626,'\r\n',0,1,0,1313542962,NULL,0),('Rqwgh50A3gGcOKIrdi_kxw',1313542962,'3','pbversion0000000000001','approved','Authorize.net Credentials (Default)','Authorize.net Credentials (Default)','shopping-cart-collateral-items/authorizenet-credentials','3','7','4',NULL,0,0,0,0,0,11400,' \n\n\n',0,1,0,1313542962,'',0),('PBEmsBadgeTemplate0000',1313542962,'3','pbversion0000000000001','approved','Default EMS Badge Template','Default EMS Badge Template','default_emsbadge','3','7','4',NULL,0,0,0,0,0,5853,'',0,1,0,1313542962,'',0),('StockDataTMPL000000001',1315877144,'3','pbversion0000000000001','approved','StockData Default View','StockData Default View','stockdatatmpl000000001','3','7','12',NULL,0,1,0,0,0,9004,'\n',0,1,0,1315877144,'',0),('2gtFt7c0qAFNU3BG_uvNvg',1315877144,'3','pbversion0000000000001','approved','My Purchases (Default)','My Purchases (Default)','shopping-cart-collateral-items/my-purchases-default','3','7','3',NULL,0,1,0,0,0,3236,'\n',0,1,0,1315877144,'',0); +INSERT INTO `assetData` VALUES ('PBasset000000000000001',1124395696,'3','pbversion0000000000001','approved','Root','Root','root','3','7','3',NULL,0,1,0,0,0,158,NULL,0,1,0,1242380151,NULL,0),('PBasset000000000000002',1124395696,'3','pbversion0000000000001','approved','Import Node','Import','root/import','3','7','12',NULL,0,1,0,0,0,309,NULL,0,1,0,1242380151,NULL,0),('Vzv1pWpg_w6R_o-b0rM2qQ',1147642515,'3','pbversion0000000000001','approved','Ad','Ad','home/ad2','3','7','4',NULL,0,1,0,0,0,2155188,NULL,0,1,0,1301974027,NULL,0),('fK-HMSboA3uu0c1KYkYspA',1124395696,'3','pbversion0000000000001','approved','The Latest News','The Latest News','the_latest_news/the_latest_news','3','7','3',NULL,0,1,0,0,0,524,NULL,0,1,0,1285124313,NULL,0),('7-0-style0000000000003',1147642492,'3','pbversion0000000000001','approved','css01.css','css01.css','style1/css01.css','3','7','12',NULL,0,0,0,0,0,9086,NULL,0,1,0,1285124168,NULL,0),('PBnav00000000000000001',1124395696,'3','pbversion0000000000001','approved','crumbTrail','crumbTrail','crumbtrail','3','7','12',NULL,0,1,0,0,0,371,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000014',1124395696,'3','pbversion0000000000001','approved','FlexMenu','FlexMenu','flexmenu','3','7','12',NULL,0,1,0,0,0,353,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000015',1124395696,'3','pbversion0000000000001','approved','currentMenuVertical','currentMenuVertical','currentmenuvertical','3','7','12',NULL,0,1,0,0,0,394,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000016',1124395696,'3','pbversion0000000000001','approved','currentMenuHorizontal','currentMenuHorizontal','currentmenuhorizontal','3','7','12',NULL,0,1,0,0,0,400,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000017',1124395696,'3','pbversion0000000000001','approved','PreviousDropMenu','PreviousDropMenu','previousdropmenu','3','7','12',NULL,0,1,0,0,0,388,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000018',1124395696,'3','pbversion0000000000001','approved','previousMenuVertical','previousMenuVertical','previousmenuvertical','3','7','12',NULL,0,1,0,0,0,398,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000019',1124395696,'3','pbversion0000000000001','approved','previousMenuHorizontal','previousMenuHorizontal','previousmenuhorizontal','3','7','12',NULL,0,1,0,0,0,404,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000020',1124395696,'3','pbversion0000000000001','approved','rootmenu','rootmenu','rootmenu','3','7','12',NULL,0,1,0,0,0,355,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000021',1124395696,'3','pbversion0000000000001','approved','SpecificDropMenu','SpecificDropMenu','specificdropmenu','3','7','12',NULL,0,1,0,0,0,379,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000002',1124395696,'3','pbversion0000000000001','approved','SpecificSubMenuVertical','SpecificSubMenuVertical','specificsubmenuvertical','3','7','12',NULL,0,1,0,0,0,400,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000006',1124395696,'3','pbversion0000000000001','approved','SpecificSubMenuHorizontal','SpecificSubMenuHorizontal','specificsubmenuhorizontal','3','7','12',NULL,0,1,0,0,0,406,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000007',1124395696,'3','pbversion0000000000001','approved','TopLevelMenuVertical','TopLevelMenuVertical','toplevelmenuvertical','3','7','12',NULL,0,1,0,0,0,391,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000008',1124395696,'3','pbversion0000000000001','approved','TopLevelMenuHorizontal','TopLevelMenuHorizontal','toplevelmenuhorizontal','3','7','12',NULL,0,1,0,0,0,397,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000009',1124395696,'3','pbversion0000000000001','approved','RootTab','RootTab','roottab','3','7','12',NULL,0,1,0,0,0,352,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000010',1124395696,'3','pbversion0000000000001','approved','TopDropMenu','TopDropMenu','topdropmenu','3','7','12',NULL,0,1,0,0,0,364,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000011',1124395696,'3','pbversion0000000000001','approved','dtree','dtree','dtree','3','7','12',NULL,0,1,0,0,0,352,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000012',1124395696,'3','pbversion0000000000001','approved','coolmenu','coolmenu','coolmenu','3','7','12',NULL,0,1,0,0,0,356,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000013',1124395696,'3','pbversion0000000000001','approved','Synopsis','Synopsis','synopsis','3','7','12',NULL,0,1,0,0,0,367,NULL,0,1,0,1247779653,NULL,0),('7-0-style0000000000006',1147642493,'3','pbversion0000000000001','approved','main_bg.gif','main_bg.gif','style1/main_bg.gif','3','7','12',NULL,0,0,0,0,0,1149,NULL,0,1,0,1242380143,NULL,0),('PBrichedit000000000002',1124395696,'3','pbversion0000000000001','approved','Forum Rich Edit','Forum Rich Edit','forum_rich_edit','3','7','12',NULL,0,0,0,0,0,873,NULL,0,1,0,1242380152,NULL,0),('7-0-style0000000000068',1147642510,'3','pbversion0000000000001','approved','spacer.gif','spacer.gif','style3/spacer.gif','3','7','12',NULL,0,0,0,0,0,358,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000066',1147642509,'3','pbversion0000000000001','approved','nav_bg_on.jpg','nav_bg_on.jpg','style3/nav_bg_on.jpg','3','7','12',NULL,0,0,0,0,0,658,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000067',1147642509,'3','pbversion0000000000001','approved','pb.jpg','pb.jpg','style3/pb.jpg','3','7','12',NULL,0,0,0,0,0,24981,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000062',1147642508,'3','pbversion0000000000001','approved','nav_bg1.jpg','nav_bg1.jpg','style3/nav_bg1.jpg','3','7','12',NULL,0,0,0,0,0,672,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000063',1147642508,'3','pbversion0000000000001','approved','nav_bg1_on.jpg','nav_bg1_on.jpg','style3/nav_bg1_on.jpg','3','7','12',NULL,0,0,0,0,0,683,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000064',1147642509,'3','pbversion0000000000001','approved','nav_bg2.jpg','nav_bg2.jpg','style3/nav_bg2.jpg','3','7','12',NULL,0,0,0,0,0,675,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000065',1147642509,'3','pbversion0000000000001','approved','nav_bg2_on.jpg','nav_bg2_on.jpg','style3/nav_bg2_on.jpg','3','7','12',NULL,0,0,0,0,0,688,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000061',1147642508,'3','pbversion0000000000001','approved','nav_bg.jpg','nav_bg.jpg','style3/nav_bg.jpg','3','7','12',NULL,0,0,0,0,0,669,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000057',1147642507,'3','pbversion0000000000001','approved','main_bg.jpg','main_bg.jpg','style3/main_bg.jpg','3','7','12',NULL,0,0,0,0,0,639,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000058',1147642507,'3','pbversion0000000000001','approved','main_bottom.jpg','main_bottom.jpg','style3/main_bottom.jpg','3','7','12',NULL,0,0,0,0,0,2630,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000060',1147642508,'3','pbversion0000000000001','approved','main_top_bg.jpg','main_top_bg.jpg','style3/main_top_bg.jpg','3','7','12',NULL,0,0,0,0,0,687,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000054',1147642506,'3','pbversion0000000000001','approved','header_bg.jpg','header_bg.jpg','style3/header_bg.jpg','3','7','12',NULL,0,0,0,0,0,715,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000055',1147642506,'3','pbversion0000000000001','approved','header_left.jpg','header_left.jpg','style3/header_left.jpg','3','7','12',NULL,0,0,0,0,0,23983,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000056',1147642506,'3','pbversion0000000000001','approved','header_right.jpg','header_right.jpg','style3/header_right.jpg','3','7','12',NULL,0,0,0,0,0,24757,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000053',1147642505,'3','pbversion0000000000001','approved','footer_right.jpg','footer_right.jpg','style3/footer_right.jpg','3','7','12',NULL,0,0,0,0,0,2886,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000052',1147642505,'3','pbversion0000000000001','approved','footer_bg.jpg','footer_bg.jpg','style3/footer_bg.jpg','3','7','12',NULL,0,0,0,0,0,680,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000048',1147642504,'3','pbversion0000000000001','approved','wg.jpg','wg.jpg','style2/wg.jpg','3','7','12',NULL,0,0,0,0,0,20795,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000046',1147642504,'3','pbversion0000000000001','approved','rightCol_bg.jpg','rightCol_bg.jpg','style2/rightcol_bg.jpg','3','7','12',NULL,0,0,0,0,0,720,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000043',1147642503,'3','pbversion0000000000001','approved','pb.jpg','pb.jpg','style2/pb.jpg','3','7','12',NULL,0,0,0,0,0,22948,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000044',1147642503,'3','pbversion0000000000001','approved','pb_wg.jpg','pb_wg.jpg','style2/pb_wg.jpg','3','7','12',NULL,0,0,0,0,0,2720,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000040',1147642502,'3','pbversion0000000000001','approved','navbar_right.jpg','navbar_right.jpg','style2/navbar_right.jpg','3','7','12',NULL,0,0,0,0,0,960,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000041',1147642502,'3','pbversion0000000000001','approved','page_title.jpg','page_title.jpg','style2/page_title.jpg','3','7','12',NULL,0,0,0,0,0,24856,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000042',1147642502,'3','pbversion0000000000001','approved','page_title_bg.jpg','page_title_bg.jpg','style2/page_title_bg.jpg','3','7','12',NULL,0,0,0,0,0,720,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000038',1147642501,'3','pbversion0000000000001','approved','navbar_bg.jpg','navbar_bg.jpg','style2/navbar_bg.jpg','3','7','12',NULL,0,0,0,0,0,625,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000039',1147642502,'3','pbversion0000000000001','approved','navbar_left.jpg','navbar_left.jpg','style2/navbar_left.jpg','3','7','12',NULL,0,0,0,0,0,663,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000036',1147642501,'3','pbversion0000000000001','approved','main_bg.jpg','main_bg.jpg','style2/main_bg.jpg','3','7','12',NULL,0,0,0,0,0,764,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000037',1147642501,'3','pbversion0000000000001','approved','nav_bg.jpg','nav_bg.jpg','style2/nav_bg.jpg','3','7','12',NULL,0,0,0,0,0,602,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000033',1147642500,'3','pbversion0000000000001','approved','css02.css','css02.css','style2/css02.css','3','7','12',NULL,0,0,0,0,0,5530,NULL,0,1,0,1285124168,NULL,0),('7-0-style0000000000034',1147642500,'3','pbversion0000000000001','approved','leftCol_header.jpg','leftCol_header.jpg','style2/leftcol_header.jpg','3','7','12',NULL,0,0,0,0,0,10987,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000035',1147642501,'3','pbversion0000000000001','approved','leftCol_header02.jpg','leftCol_header02.jpg','style2/leftcol_header02.jpg','3','7','12',NULL,0,0,0,0,0,4606,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000030',1147642499,'3','pbversion0000000000001','approved','webgui_btn.jpg','webgui_btn.jpg','style1/webgui_btn.jpg','3','7','12',NULL,0,0,0,0,0,5180,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000031',1147642500,'3','pbversion0000000000001','approved','WebGUI 7 Style 2','WebGUI 7 Style 2','root/import/webgui-7-style-2','3','7','12',NULL,0,0,0,0,0,325,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000032',1147642500,'3','pbversion0000000000001','approved','context_bg.jpg','context_bg.jpg','style2/context_bg.jpg','3','7','12',NULL,0,0,0,0,0,661,NULL,0,1,0,1242380143,NULL,0),('PBnav000000style01lvl2',1147642499,'3','pbversion0000000000001','approved','Style 01 Nav lvl2','untitled','style1_nav_lvl2','3','7','12',NULL,0,0,0,0,0,1713,NULL,0,1,0,1285124161,NULL,0),('7-0-style0000000000026',1147642499,'3','pbversion0000000000001','approved','RootTab Level 1','RootTab Level 1','roottab_level1','3','7','12',NULL,0,0,0,0,0,353,NULL,0,1,0,1242380143,NULL,0),('stevenav00000000000001',1147642499,'3','pbversion0000000000001','approved','Style 01 Nav','Style 01 Nav','style1_nav','3','7','12',NULL,0,0,0,0,0,1682,NULL,0,1,0,1285124167,NULL,0),('7-0-style0000000000025',1147642498,'3','pbversion0000000000001','approved','RootTab Level 0','RootTab Level 0','roottab_level0','3','7','12',NULL,0,0,0,0,0,353,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000022',1147642497,'3','pbversion0000000000001','approved','nav_bg.jpg','nav_bg.jpg','style1/nav_bg.jpg','3','7','12',NULL,0,0,0,0,0,1109,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000023',1147642498,'3','pbversion0000000000001','approved','nav_on.jpg','nav_on.jpg','style1/nav_on.jpg','3','7','12',NULL,0,0,0,0,0,919,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000024',1147642498,'3','pbversion0000000000001','approved','orange_left01.jpg','orange_left01.jpg','style1/orange_left01.jpg','3','7','12',NULL,0,0,0,0,0,2747,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000018',1147642496,'3','pbversion0000000000001','approved','nav2_off_left.jpg','nav2_off_left.jpg','style1/nav2_off_left.jpg','3','7','12',NULL,0,0,0,0,0,752,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000019',1147642497,'3','pbversion0000000000001','approved','nav2_off_right.jpg','nav2_off_right.jpg','style1/nav2_off_right.jpg','3','7','12',NULL,0,0,0,0,0,748,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000017',1147642496,'3','pbversion0000000000001','approved','nav2_off_center.jpg','nav2_off_center.jpg','style1/nav2_off_center.jpg','3','7','12',NULL,0,0,0,0,0,837,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000015',1147642496,'3','pbversion0000000000001','approved','nav1_on_right.jpg','nav1_on_right.jpg','style1/nav1_on_right.jpg','3','7','12',NULL,0,0,0,0,0,1134,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000014',1147642495,'3','pbversion0000000000001','approved','nav1_on_left.jpg','nav1_on_left.jpg','style1/nav1_on_left.jpg','3','7','12',NULL,0,0,0,0,0,1195,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000013',1147642495,'3','pbversion0000000000001','approved','nav1_on.jpg','nav1_on.jpg','style1/nav1_on.jpg','3','7','12',NULL,0,0,0,0,0,2426,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000011',1147642495,'3','pbversion0000000000001','approved','nav1_off_left.jpg','nav1_off_left.jpg','style1/nav1_off_left.jpg','3','7','12',NULL,0,0,0,0,0,1230,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000012',1147642495,'3','pbversion0000000000001','approved','nav1_off_right.jpg','nav1_off_right.jpg','style1/nav1_off_right.jpg','3','7','12',NULL,0,0,0,0,0,1178,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000010',1147642494,'3','pbversion0000000000001','approved','nav1_off_center.jpg','nav1_off_center.jpg','style1/nav1_off_center.jpg','3','7','12',NULL,0,0,0,0,0,1468,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000009',1147642494,'3','pbversion0000000000001','approved','nav1_off.jpg','nav1_off.jpg','style1/nav1_off.jpg','3','7','12',NULL,0,0,0,0,0,2591,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000007',1147642493,'3','pbversion0000000000001','approved','main_bg.jpg','main_bg.jpg','style1/main_bg.jpg','3','7','12',NULL,0,0,0,0,0,1149,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000001',1147642492,'3','pbversion0000000000001','approved','WebGUI 7 Style 1','WebGUI 7 Style 1','root/import/webgui-7-style-1','3','7','12',NULL,0,0,0,0,0,325,NULL,0,1,0,1242380142,NULL,0),('SynConXSLT000000000001',1124395707,'3','pbversion0000000000001','approved','RSS 0.9 XSLT Stylesheet','RSS 0.9 XSLT','xslt/rss0.9.xsl','3','7','12',NULL,0,0,0,0,0,5040,NULL,0,1,0,1285124168,NULL,0),('SynConXSLT000000000002',1124395707,'3','pbversion0000000000001','approved','RSS 0.91 XSLT Stylesheet','RSS 0.91 XSLT','xslt/rss0.91.xsl','3','7','12',NULL,0,0,0,0,0,4717,NULL,0,1,0,1285124168,NULL,0),('SynConXSLT000000000003',1124395707,'3','pbversion0000000000001','approved','RSS 1.0 XSLT Stylesheet','RSS 1.0 XSLT','xslt/rss1.0.xsl','3','7','12',NULL,0,0,0,0,0,5186,NULL,0,1,0,1285124168,NULL,0),('SynConXSLT000000000004',1124395707,'3','pbversion0000000000001','approved','RSS 2.0 XSLT Stylesheet','RSS 2.0 XSLT','xslt/rss2.0.xsl','3','7','12',NULL,0,0,0,0,0,4852,NULL,0,1,0,1285124168,NULL,0),('PBtmpl0000000000000036',1129049186,'3','pbversion0000000000001','approved','Default Admin Toggle Macro','Default Admin Toggle Macro','default_admin_toggle_macro','3','7','12',NULL,0,1,0,0,0,448,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000037',1129049186,'3','pbversion0000000000001','approved','Default Account Macro','Default Account Macro','default_account_macro','3','7','12',NULL,0,1,0,0,0,479,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000038',1129049186,'3','pbversion0000000000001','approved','Default Editable Toggle Macro','Default Editable Toggle Macro','default_editable_toggle_macro','3','7','12',NULL,0,1,0,0,0,460,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000040',1129049186,'3','pbversion0000000000001','approved','Default Group Add Macro','Default Group Add Macro','default_group_add_macro','3','7','12',NULL,0,1,0,0,0,432,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000041',1129049186,'3','pbversion0000000000001','approved','Default Group Delete Macro','Default Group Delete Macro','default_group_delete_macro','3','7','12',NULL,0,1,0,0,0,444,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000042',1129049186,'3','pbversion0000000000001','approved','Default Homelink','Default Homelink','default_homelink','3','7','12',NULL,0,1,0,0,0,459,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000043',1129049186,'3','pbversion0000000000001','approved','Default LoginToggle','Default LoginToggle','default_logintoggle','3','7','12',NULL,0,1,0,0,0,475,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000045',1129049186,'3','pbversion0000000000001','approved','Default Make Printable','Default Make Printable','default_make_printable','3','7','12',NULL,0,1,0,0,0,500,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000091',1129049189,'3','pbversion0000000000001','approved','File no icon','File no icon','file_no_icon','3','7','12',NULL,0,1,0,0,0,391,NULL,0,1,0,1285124163,NULL,0),('PBtmpl0000000000000140',1129573244,'3','pbversion0000000000001','approved','Default Shortcut','Default Shortcut','pbtmpl0000000000000140','3','7','12',NULL,0,1,0,0,0,1732,NULL,0,1,0,1285124163,NULL,0),('PBtmplHelp000000000001',1147642410,'3','pbversion0000000000001','approved','Help','Help','root/import/adminconsole/help','3','7','12',NULL,0,0,0,0,0,2221,'\n\n',0,1,0,1288747840,'',0),('ProjectManagerTMPL0004',1222574693,'3','pbversion0000000000001','approved','Default Project Manager Edit Task','Default Project Manager Edit Task','default-pm-template-edit-task','3','7','12',NULL,0,0,0,0,0,8779,'\r\n',0,1,0,1285124164,'',0),('7-0-style0000000000071',1147642511,'3','pbversion0000000000001','approved','wg.jpg','wg.jpg','style3/wg.jpg','3','7','12',NULL,0,0,0,0,0,27499,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000070',1147642510,'3','pbversion0000000000001','approved','Style3 Coolmenu','Style3 Coolmenu','style3_coolmenu','3','7','12',NULL,0,0,0,0,0,377,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000004',1147642493,'3','pbversion0000000000001','approved','gui_bottom.jpg','gui_bottom.jpg','style1/gui_bottom.jpg','3','7','12',NULL,0,0,0,0,0,11011,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000002',1147642492,'3','pbversion0000000000001','approved','body_bg.jpg','body_bg.jpg','style1/body_bg.jpg','3','7','12',NULL,0,0,0,0,0,598,NULL,0,1,0,1242380142,NULL,0),('PBtmpl0000000000000047',1147642414,'3','pbversion0000000000001','approved','Default Message Board','Default Message Board','default_message_board','3','7','12',NULL,0,1,0,0,0,5637,'',0,1,0,1285124162,'',0),('TimeTrackingTMPL000002',1147642417,'3','pbversion0000000000001','approved','Default Time Tracking Manager View','Default Time Tracking Manager View','default-tt-template-manager','3','7','12',NULL,0,0,0,0,0,408,' ',0,1,0,1285124164,NULL,0),('PBtmpl0000000000000057',1147642418,'3','pbversion0000000000001','approved','Default WebGUI Yes/No Prompt','Default WebGUI Yes/No Prompt','default_webgui_yes/no_prompt','3','7','12',NULL,0,1,0,0,0,797,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000107',1147642420,'3','pbversion0000000000001','approved','File with size','File with size','file_with_size','3','7','12',NULL,0,1,0,0,0,661,NULL,0,1,0,1285124163,NULL,0),('WVtmpl0000000000000001',1147642426,'3','pbversion0000000000001','approved','Random Thread Macro Default Template','Random Thread Macro Default Template','randomthread-template','3','7','12',NULL,0,0,0,0,0,9218,NULL,0,1,0,1285124165,NULL,0),('7-0-style0000000000005',1147642493,'3','pbversion0000000000001','approved','header.jpg','header.jpg','style1/header.jpg','3','7','12',NULL,0,0,0,0,0,45014,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000008',1147642494,'3','pbversion0000000000001','approved','nav1_center_on.jpg','nav1_center_on.jpg','style1/nav1_center_on.jpg','3','7','12',NULL,0,0,0,0,0,1382,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000045',1147642503,'3','pbversion0000000000001','approved','pb_wg_bg.jpg','pb_wg_bg.jpg','style2/pb_wg_bg.jpg','3','7','12',NULL,0,0,0,0,0,21720,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000021',1147642497,'3','pbversion0000000000001','approved','nav2_on_right.jpg','nav2_on_right.jpg','style1/nav2_on_right.jpg','3','7','12',NULL,0,0,0,0,0,720,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000020',1147642497,'3','pbversion0000000000001','approved','nav2_on_left.jpg','nav2_on_left.jpg','style1/nav2_on_left.jpg','3','7','12',NULL,0,0,0,0,0,732,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000016',1147642496,'3','pbversion0000000000001','approved','nav2_center_on.jpg','nav2_center_on.jpg','style1/nav2_center_on.jpg','3','7','12',NULL,0,0,0,0,0,807,NULL,0,1,0,1242380143,NULL,0),('PBasset000000000000003',1147642437,'3','pbversion0000000000001','approved','Media','Media','media','3','7','12',NULL,0,0,0,0,0,296,NULL,0,1,0,1242380151,NULL,0),('nbSrhXZQuxIjhWFaFPSuVA',1147642465,'3','pbversion0000000000001','approved','AdminConsole','AdminConsole','root/import/adminconsole','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1242380150,NULL,0),('71e17KeduiXgODLMlUxiow',1222803352,'3','pbversion0000000000001','approved','project','project','root/import/projectmanager/project','3','7','12',NULL,0,0,0,0,0,342,NULL,0,1,0,1242380145,NULL,0),('N13SD1Fpqk00UgBt1Z8ivQ',1147642470,'3','pbversion0000000000001','approved','HttpProxy','HttpProxy','root/import/httpproxy','3','7','12',NULL,0,0,0,0,0,304,NULL,0,1,0,1242380150,NULL,0),('3uuBf8cYuj1sew2OJXl9tg',1147642470,'3','pbversion0000000000001','approved','InOutBoard','InOutBoard','root/import/inoutboard','3','7','12',NULL,0,0,0,0,0,307,NULL,0,1,0,1242380142,NULL,0),('ProjectManagerTMPL0002',1222574693,'3','pbversion0000000000001','approved','Default Project Display','Default Project Display','default-pm-template-project-display','3','7','12',NULL,0,0,0,0,0,13074,'\r\n\r\n\r\n',0,1,0,1285124164,'',0),('cj2y4papTVGZRFdwTI-_fw',1147642475,'3','pbversion0000000000001','approved','MessageBoard','MessageBoard','root/import/messageboard','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1242380147,NULL,0),('bBzO4CWjqU_ile3gf5Iypw',1147642475,'3','pbversion0000000000001','approved','MultiSearch','MultiSearch','root/import/multisearch','3','7','12',NULL,0,0,0,0,0,310,NULL,0,1,0,1242380147,NULL,0),('Da6KWn805L4B5e4HFgQRQA',1147642479,'3','pbversion0000000000001','approved','Shortcut','Shortcut','root/import/shortcut','3','7','12',NULL,0,0,0,0,0,301,NULL,0,1,0,1242380148,NULL,0),('bbiA9Zq5Gy2oCFBlILO3QA',1147642480,'3','pbversion0000000000001','approved','SQLReport','SQLReport','root/import/sqlreport','3','7','12',NULL,0,0,0,0,0,304,NULL,0,1,0,1242380147,NULL,0),('Efe2W0UgrSRDltNJ87jlfg',1147642480,'3','pbversion0000000000001','approved','StockData','StockData','root/import/stockdata','3','7','12',NULL,0,0,0,0,0,304,NULL,0,1,0,1242380148,NULL,0),('9wKWdum0_8z-OhhquWLtSQ',1147642483,'3','pbversion0000000000001','approved','WeatherData','WeatherData','root/import/weatherdata','3','7','12',NULL,0,0,0,0,0,310,NULL,0,1,0,1242380146,NULL,0),('CSN-ZON7Uwv8kxf3F1fh5Q',1147642484,'3','pbversion0000000000001','approved','ZipArchiveAsset','ZipArchiveAsset','root/import/ziparchiveasset','3','7','12',NULL,0,0,0,0,0,322,NULL,0,1,0,1242380147,NULL,0),('TCtybxdqmdwdvRn555zpCQ',1147642484,'3','pbversion0000000000001','approved','RichEdit','RichEdit','root/import/richedit','3','7','12',NULL,0,0,0,0,0,301,NULL,0,1,0,1242380163,NULL,0),('PBtmpl0000000000000044',1148579524,'3','pbversion0000000000001','approved','Default Login Box','Default Login Box','default_login_box','3','7','12',NULL,0,1,0,0,0,1884,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000092',1148579524,'3','pbversion0000000000001','approved','Horizontal Login Box','Horizontal Login Box','horizontal_login_box','3','7','12',NULL,0,1,0,0,0,2082,NULL,0,1,0,1285124163,NULL,0),('PBtmpl0000000000000039',1154535073,'3','pbversion0000000000001','approved','Default File Macro','Default File Macro','default_file_macro','3','7','12',NULL,0,1,0,0,0,630,NULL,0,1,0,1285124162,NULL,0),('ProjectManagerTMPL0006',1157679165,'3','pbversion0000000000001','approved','Default Resource List','Default Resource List','default-pm-resource-list','3','7','12',NULL,0,0,0,0,0,1802,NULL,0,1,0,1285124164,NULL,0),('ProjectManagerTMPL0003',1159989349,'3','pbversion0000000000001','approved','Default Project Manager Gantt Chart','Default Project Manager Gantt Chart','default-pm-template-gantt-chart','3','7','12',NULL,0,0,0,0,0,3787,NULL,0,1,0,1285124164,NULL,0),('pbproto000000000000002',1163019036,'3','pbversion0000000000001','approved','Request Tracker','Request Tracker','request-tracker-prototype','3','7','12',NULL,0,0,0,1,0,595,NULL,0,1,0,1263962528,NULL,0),('IOB0000000000000000002',1166019641,'3','pbversion0000000000001','approved','Default InOutBoard Report Template','Default InOutBoard Report Template','iob-report-template','3','7','12',NULL,0,0,0,0,0,2746,'',0,1,0,1285124160,'',0),('ZipArchiveTMPL00000001',1169738426,'3','pbversion0000000000001','approved','Default Zip Archive Template','Default Zip Archive Template','zip-archive-template','3','7','12',NULL,0,0,0,0,0,1056,NULL,0,1,0,1285124165,NULL,0),('IOB0000000000000000001',1169795123,'3','pbversion0000000000001','approved','Default InOutBoard Template','Default InOutBoard Template','iob-template','3','7','12',NULL,0,0,0,0,0,3850,'',0,1,0,1285124160,'',0),('SQLReportDownload00001',1171466654,'3','pbversion0000000000001','approved','SQLReport Download Default Template','untitled','SQLReportDownload0001','3','7','12',NULL,0,0,0,0,0,6386,NULL,0,1,0,1285124164,NULL,0),('newsletter000000000001',1185754569,'3','pbversion0000000000001','approved',' Summary Newsletter (default)',' Summary Newsletter','newsletterdefaulttemplate','3','7','3',NULL,0,0,0,0,0,674,NULL,0,1,0,1285124167,NULL,0),('tempspace0000000000000',1185754574,'3','pbversion0000000000001','approved','Tempspace','Tempspace','tempspace','3','7','3',NULL,0,0,0,0,0,307,NULL,0,1,0,1242380163,NULL,0),('TimeTrackingTMPL000001',1201205738,'3','pbversion0000000000001','approved','Default Time Tracking User View','Default Time Tracking User View','default-tt-template-user','3','7','12',NULL,0,0,0,0,0,18644,'\n \n',0,1,0,1285124164,'',0),('CalendarPrintMonth0001',1204890714,'3','pbversion0000000000001','approved','Default Calendar Print Month','Default Calendar Print Month','root/import/calendar-templates/default-calendar-print-month','3','7','12',NULL,0,0,0,0,0,2454,' \r\n',0,1,0,1285124160,'',0),('CalendarPrintWeek00001',1204890714,'3','pbversion0000000000001','approved','Default Calendar Print Week','Default Calendar Print Week','root/import/calendar-templates/default-calendar-print-week','3','7','12',NULL,0,0,0,0,0,2654,' \r\n',0,1,0,1285124160,'',0),('CalendarPrintDay000001',1204890714,'3','pbversion0000000000001','approved','Default Calendar Print Day','Default Calendar Print Day','root/import/calendar-templates/default-calendar-print-day','3','7','12',NULL,0,0,0,0,0,2394,' \r\n',0,1,0,1285124160,'',0),('F7MAQ-cpuvQ1KuC7J4P5zQ',1222803673,'3','pbversion0000000000001','approved','View','View','root/import/profile/view','3','7','12',NULL,0,0,0,0,0,326,NULL,0,1,0,1242380148,NULL,0),('Tsg7xmPYv782j6IVz7yHFg',1213244777,'3','pbversion0000000000001','approved','Calendar Templates','Calendar Templates','root/import/calendar-templates','3','7','12',NULL,0,1,0,0,0,353,NULL,0,1,0,1242380164,NULL,0),('NywJYmGWe1f6EBXJnWg9Xg',1222803638,'3','pbversion0000000000001','approved','Profile','Profile','root/import/profile','3','7','12',NULL,0,1,0,0,0,320,NULL,0,1,0,1242380151,NULL,0),('AgyFhx3eXlfZXNp2MkrsiQ',1222803665,'3','pbversion0000000000001','approved','Edit','Edit','root/import/profile/edit','3','7','12',NULL,0,0,0,0,0,326,NULL,0,1,0,1242380146,NULL,0),('TYo2Bwl7aafzTtdHlS-arQ',1211664878,'3','pbversion0000000000001','approved','Product','Product','root/import/product','3','7','12',NULL,0,0,0,0,0,320,NULL,0,1,0,1242380164,NULL,0),('gbnRhcWNk1iQe32LFEB5eQ',1212086102,'3','pbversion0000000000001','approved','Shelf','Shelf','root/import/shelf2','3','7','12',NULL,0,1,0,0,0,315,NULL,0,1,0,1242380149,NULL,0),('6tK47xsaIH-ELw0IBo0uRQ',1210777115,'3','pbversion0000000000001','approved','images','images','root/import/shelf2/images','3','7','12',NULL,0,1,0,0,0,330,NULL,0,1,0,1242380142,NULL,0),('_bZJ9LA_KNekZiFPaP2SeQ',1210777868,'3','pbversion0000000000001','approved','shelf-titles.jpg','shelf-titles.jpg','root/import/shelf2/images/shelf-titles.jpg','3','7','12',NULL,0,1,0,0,0,1038,NULL,0,0,0,1242380165,NULL,0),('4e-_rNs6mSWedZhQ_V5kJA',1210779672,'3','pbversion0000000000001','approved','shelf-ie.css','shelf-ie.css','root/import/shelf2/shelf-ie.css','3','7','12',NULL,0,1,0,0,0,1092,NULL,0,1,0,1285124168,NULL,0),('6D4Z-oruXPS6OlH_Kx8pBg',1209509389,'3','pbversion0000000000001','approved','images','images','root/import/thingy-templates/images','3','7','12',NULL,0,1,0,0,0,340,NULL,0,1,0,1242380142,NULL,0),('hQ7z33_jOYkQ8WNX5xy9Sw',1209509455,'3','pbversion0000000000001','approved','style-button.gif','style-button.gif','root/import/thingy-templates/images/style-button.gif','3','7','12',NULL,0,1,0,0,0,923,NULL,0,0,0,1242380149,NULL,0),('vWW_DcHiYSrKZOkkIfEfcQ',1209509433,'3','pbversion0000000000001','approved','row-2.jpg','row-2.jpg','root/import/thingy-templates/images/row-2.jpg','3','7','12',NULL,0,1,0,0,0,805,NULL,0,0,0,1242380164,NULL,0),('_bPYzRA87NTAUIKlfrJMHg',1209509433,'3','pbversion0000000000001','approved','row-1.jpg','row-1.jpg','root/import/thingy-templates/images/row-1.jpg','3','7','12',NULL,0,1,0,0,0,790,NULL,0,0,0,1242380165,NULL,0),('nJjZHRwdDs5MAZYsAyioHw',1209509433,'3','pbversion0000000000001','approved','title-bg.jpg','title-bg.jpg','root/import/thingy-templates/images/title-bg.jpg','3','7','12',NULL,0,1,0,0,0,1105,NULL,0,0,0,1242380151,NULL,0),('8hxfkrJPeFVRWF5piCNJ1A',1209509433,'3','pbversion0000000000001','approved','field-bg.jpg','field-bg.jpg','root/import/thingy-templates/images/field-bg.jpg','3','7','12',NULL,0,1,0,0,0,721,NULL,0,0,0,1242380146,NULL,0),('Osx7WN52iIKHZFT4vqUBHQ',1209509433,'3','pbversion0000000000001','approved','search-btn.gif','search-btn.gif','root/import/thingy-templates/images/search-btn.gif','3','7','12',NULL,0,1,0,0,0,1263,NULL,0,0,0,1242380151,NULL,0),('oWff8fGzRdHPyq5VNREe9Q',1209509433,'3','pbversion0000000000001','approved','top-bg.jpg','top-bg.jpg','root/import/thingy-templates/images/top-bg.jpg','3','7','12',NULL,0,1,0,0,0,691,NULL,0,0,0,1242380151,NULL,0),('uqbkvb1b9443VvfkyRz95w',1209509433,'3','pbversion0000000000001','approved','save-button.gif','save-button.gif','root/import/thingy-templates/images/save-button.gif','3','7','12',NULL,0,1,0,0,0,1271,NULL,0,0,0,1242380164,NULL,0),('8YiMkcz32xalkAn3WBLpag',1210181860,'3','pbversion0000000000001','approved','go-btn.gif','go-btn.gif','root/import/thingy-templates/images/go-btn.gif','3','7','12',NULL,0,1,0,0,0,430,NULL,0,0,0,1242380146,NULL,0),('C5fPz-Wg85vkYRvCdl-Xqw',1212160830,'3','pbversion0000000000001','approved','UserList','UserList','root/import/userlist','3','7','12',NULL,0,1,0,0,0,323,NULL,0,1,0,1242380147,NULL,0),('usuxw9V3jN4d4pujRiEYxg',1209494150,'3','pbversion0000000000001','approved','css03-ie.css','css03-ie.css','style3/css03-ie.css','3','7','12',NULL,0,0,0,0,0,347,NULL,0,1,0,1285124169,NULL,0),('WeatherDataTmpl0000001',1210711353,'3','pbversion0000000000001','approved','WeatherData Default View','WeatherData Default View','weatherdatatmpl0000001','3','7','12',NULL,0,1,0,0,0,5540,'\r\n\r\n\r\n',0,1,0,1285124165,'',0),('Ik9HHky10DIyFTKehUD1dw',1222803478,'3','pbversion0000000000001','approved','Prompt','Prompt','root/import/prompt','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1242380149,NULL,0),('BmLaN4rmAANkCglXUViEbg',1222803871,'3','pbversion0000000000001','approved','Resource','Resource','root/import/projectmanager/resource','3','12','12',NULL,0,0,0,0,0,346,NULL,0,1,0,1242380147,NULL,0),('X7DrzUcj8pOKFa_6k9D5iw',1222804045,'3','pbversion0000000000001','approved','Newsletter','Newsletter','root/import/newsletter','3','12','3',NULL,0,0,0,0,0,329,NULL,0,1,0,1242380165,NULL,0),('7-0-style0000000000059',1213386091,'3','pbversion0000000000001','approved','main_top.jpg','main_top.jpg','style3/main_top.jpg','3','7','12',NULL,0,0,0,0,0,3594,NULL,0,1,0,1242380144,NULL,0),('CalendarPrintEvent0001',1215396964,'3','pbversion0000000000001','approved','Default Calendar Print Event','Default Calendar Print Event','root/import/calendar-templates/default-calendar-print-event','3','7','12',NULL,0,0,0,0,0,4202,' \r\n',0,1,0,1285124160,'',0),('o_pq_e4vRyhMOKFzs61eag',1215714957,'3','pbversion0000000000001','approved','book-covers.jpg','book-covers.jpg','documentation/book-covers.jpg','3','7','3',NULL,0,1,0,0,0,106078,NULL,0,0,0,1301974028,NULL,0),('jnYdqDkUR8x7Pv2eGR1qTA',1216250666,'3','pbversion0000000000001','approved','Thingy Templates','Thingy Templates','root/import/thingy-templates','3','7','12',NULL,0,1,0,0,0,347,NULL,0,1,0,1242380149,NULL,0),('5m5I7__l40C4hhv4ydqAHQ',1216227786,'3','pbversion0000000000001','approved','thingy-ie.css','thingy-ie.css','root/import/thingy-templates/thingy-ie.css','3','7','12',NULL,0,1,0,0,0,1329,NULL,0,1,0,1285124168,NULL,0),('pV7GnZdpjR3XpZaSINIoeg',1222803347,'3','pbversion0000000000001','approved','gantt','gantt','root/import/projectmanager/gantt','3','7','12',NULL,0,0,0,0,0,336,NULL,0,1,0,1242380162,NULL,0),('9A-mg2gwWmaYi9o_1C7ArQ',1222803338,'3','pbversion0000000000001','approved','dashboard','dashboard','root/import/projectmanager/dashboard','3','7','12',NULL,0,0,0,0,0,348,NULL,0,1,0,1242380146,NULL,0),('yD1SMHelczihzjEmx6eXBA',1222803342,'3','pbversion0000000000001','approved','editTask','editTask','root/import/projectmanager/edittask','3','7','12',NULL,0,0,0,0,0,345,NULL,0,1,0,1242380165,NULL,0),('BFfNj5wA9bDw8H3cnr8pTw',1247046273,'3','pbversion0000000000001','approved','Navigation','Navigation','root/import/navigation','3','7','12',NULL,0,0,0,0,0,329,NULL,0,1,0,1247779656,NULL,0),('PBtmpl0000000000000094',1220655703,'3','pbversion0000000000001','approved','News','News','plainblacknews','3','7','12',NULL,0,1,0,0,0,6236,'\r\n\r\n\r\n',0,1,0,1285124163,'',0),('1XOJDcg_ITRYwVM-QnIcPw',1219175575,'3','pbversion0000000000001','approved','shelf.css','shelf.css','root/import/shelf2/shelf.css','3','7','12',NULL,0,1,0,0,0,2431,NULL,0,1,0,1285124168,NULL,0),('aNNC62qLAS6TB-0_MCYjsw',1246969327,'3','pbversion0000000000001','approved','Layout','Layout','root/import/layout','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1247779656,NULL,0),('huASapWvFDzqwOSbcN-JFQ',1222803313,'3','pbversion0000000000001','approved','user','user','root/import/timetracking/user','3','7','12',NULL,0,0,0,0,0,331,NULL,0,1,0,1242380149,NULL,0),('lo1ac3BsoJx3ijGQ3gR-bQ',1222803309,'3','pbversion0000000000001','approved','row','row','root/import/timetracking/row','3','7','12',NULL,0,0,0,0,0,328,NULL,0,1,0,1242380150,NULL,0),('zyWi26q9na-iiZqL4yedog',1222803114,'3','pbversion0000000000001','approved','Macro','Macro','root/import/macro','3','7','12',NULL,0,1,0,0,0,314,NULL,0,1,0,1242380165,NULL,0),('tBL7BWiQRZFed2Y-Zjo9tQ',1222803200,'3','pbversion0000000000001','approved','AdminToggle','AdminToggle','root/import/macro/admintoggle','3','7','12',NULL,0,0,0,0,0,345,NULL,0,1,0,1242380163,NULL,0),('GdkQpvjRtJqtzOUbwIIQRA',1222803205,'3','pbversion0000000000001','approved','a_account','a_account','root/import/macro/a_account','3','7','12',NULL,0,0,0,0,0,339,NULL,0,1,0,1242380149,NULL,0),('tnc5iYyynX2hfdEs9D3P8w',1222803213,'3','pbversion0000000000001','approved','EditableToggle','EditableToggle','root/import/macro/editabletoggle','3','7','12',NULL,0,0,0,0,0,354,NULL,0,1,0,1242380164,NULL,0),('vgXdBcFTqU7h4wBG1ewdBw',1222803217,'3','pbversion0000000000001','approved','File','File','root/import/macro/file','3','7','12',NULL,0,0,0,0,0,324,NULL,0,1,0,1242380164,NULL,0),('hcFlqnXlsmC1ujN6Id0F0A',1222803234,'3','pbversion0000000000001','approved','GroupAdd','GroupAdd','root/import/macro/groupadd','3','7','12',NULL,0,0,0,0,0,336,NULL,0,1,0,1242380149,NULL,0),('eRJR52fvlaxfetv3DQkQYw',1222803238,'3','pbversion0000000000001','approved','GroupDelete','GroupDelete','root/import/macro/groupdelete','3','7','12',NULL,0,0,0,0,0,345,NULL,0,1,0,1242380148,NULL,0),('5HIDHq5lAWHV5gpYGS0zLg',1222803244,'3','pbversion0000000000001','approved','H_homeLink','H_homeLink','root/import/macro/h_homelink','3','7','12',NULL,0,0,0,0,0,342,NULL,0,1,0,1242380142,NULL,0),('rYEFwXXo0tkGhQTcbDibvg',1222803249,'3','pbversion0000000000001','approved','LoginToggle','LoginToggle','root/import/macro/logintoggle','3','7','12',NULL,0,0,0,0,0,345,NULL,0,1,0,1242380162,NULL,0),('-WM2dt0ZGpDasuL2wWocxg',1222803056,'3','pbversion0000000000001','approved','ProjectManager','ProjectManager','root/import/projectmanager','3','7','12',NULL,0,1,0,0,0,341,NULL,0,1,0,1242380141,NULL,0),('2OcUWHVsu_L1sDFzIMWYqw',1222803070,'3','pbversion0000000000001','approved','TimeTracking','TimeTracking','root/import/timetracking','3','7','12',NULL,0,1,0,0,0,335,NULL,0,1,0,1242380141,NULL,0),('vTymIDYL2YqEh6PV50F7ew',1222803302,'3','pbversion0000000000001','approved','manager','manager','root/import/timetracking/manager','3','7','12',NULL,0,0,0,0,0,340,NULL,0,1,0,1242380164,NULL,0),('nqNbSUAhk9Vd1zda2SCz9A',1222803258,'3','pbversion0000000000001','approved','RandomThread','RandomThread','root/import/macro/randomthread','3','7','12',NULL,0,0,0,0,0,348,NULL,0,1,0,1242380151,NULL,0),('y8XkRdxIperLKkJ3bL5sSQ',1222803264,'3','pbversion0000000000001','approved','r_printable','r_printable','root/import/macro/r_printable','3','7','12',NULL,0,0,0,0,0,345,NULL,0,1,0,1242380165,NULL,0),('V3l5S5TtI7wMm1WpIMhvOA',1222803253,'3','pbversion0000000000001','approved','L_loginBox','L_loginBox','root/import/macro/l_loginbox','3','7','12',NULL,0,0,0,0,0,342,NULL,0,1,0,1242380164,NULL,0),('newslettersubscrip0001',1221692339,'3','pbversion0000000000001','approved','My Subscriptions (default)',' My Subscriptions','newslettermysubscriptionstemplate','3','7','3',NULL,0,0,0,0,0,1184,NULL,0,1,0,1285124167,NULL,0),('UL-ItI4L1Z6-WSuhuXVvsQ',1225139673,'3','pbversion0000000000001','approved','DataTable','DataTable','root/import/datatable','3','7','3',NULL,0,0,0,0,0,325,NULL,0,1,0,1242380164,NULL,0),('7-0-style0000000000049',1224117144,'3','pbversion0000000000001','approved','WebGUI 7 Style 3','WebGUI 7 Style 3','root/import/webgui-7-style-3','3','7','12',NULL,0,0,0,0,0,347,NULL,0,1,0,1242380144,NULL,0),('stevecoolmenu000000001',1224116942,'3','pbversion0000000000001','approved','Site Nav','Site Nav','webgui7/style3/hierarchical-top-nav','3','7','12',NULL,0,0,0,0,0,3754,'\r\n\r\n\r\n\r\n',0,1,0,1285124167,'',0),('7-0-style0000000000051',1224117026,'3','pbversion0000000000001','approved','css03.css','css03.css','style3/css03.css','3','7','12',NULL,0,0,0,0,0,5975,NULL,0,1,0,1285124168,NULL,0),('jVKLVakT_iA2010_oEuAwg',1224116526,'3','pbversion0000000000001','approved','Style3 Coolmenu','Style3 Coolmenu','department_nav','3','7','12',NULL,0,0,0,0,0,386,NULL,0,1,0,1242380150,NULL,0),('ThingyTmpl000000000003',1224518002,'3','pbversion0000000000001','approved','Default Thingy Edit Thing','Default Thingy Edit Thing','templates/thingy-default-edit-thing','3','7','12',NULL,0,0,0,0,0,6324,'\r\n\r\n\r\n',0,1,0,1285124164,'',0),('QpmlAiYZz6VsKBM-_0wXaw',1224616691,'3','pbversion0000000000001','approved','UsersOnline Macro','UsersOnline Macro','users-online-macro-templates','3','7','3',NULL,0,0,0,0,0,368,NULL,0,1,0,1242380162,NULL,0),('h_T2xtOxGRQ9QJOR6ebLpQ',1224616545,'3','pbversion0000000000001','approved','UsersOnline Default View','UsersOnline Default View','users-online-macro-templates/usersonline-default-view','3','7','3',NULL,0,1,0,0,0,2495,'\r\n\r\n',0,1,0,1285124166,'',0),('4Ekp0kJoJllRRRo_J1Rj6w',1224616672,'3','pbversion0000000000001','approved','UsersOnline Detailed View','UsersOnline Detailed View','users-online-macro-templates/usersonline-detailed-view','3','7','3',NULL,0,1,0,0,0,4318,'\r\n\r\n',0,1,0,1285124159,'',0),('HPDOcsj4gBme8D4svHodBw',1225404573,'3','pbversion0000000000001','approved','Profile','Profile','root/import/account/profile','3','7','12',NULL,0,1,0,0,0,334,NULL,0,1,0,1250190873,NULL,0),('IZkrow_zwvbf4FCH-taVTQ',1226011853,'3','pbversion0000000000001','approved','Inbox','Inbox','root/import/account/inbox','3','7','12',NULL,0,1,0,0,0,328,NULL,0,1,0,1250190873,NULL,0),('K0YjxqOqr7RupSo6sIdcAg',1227074310,'3','pbversion0000000000001','approved','Friends','Friends','root/import/account/friends','3','7','12',NULL,0,1,0,0,0,334,NULL,0,1,0,1250190873,NULL,0),('_ilRXNR3s8F2vGJ_k9ePcg',1226643205,'3','pbversion0000000000001','approved','User','User','root/import/account/user','3','7','12',NULL,0,1,0,0,0,325,NULL,0,1,0,1250190873,NULL,0),('qaVcU0FFzzraMX_bzELqzw',1227074362,'3','pbversion0000000000001','approved','Contributions','Contributions','root/import/account/contributions','3','7','12',NULL,0,1,0,0,0,352,NULL,0,1,0,1250190873,NULL,0),('UserListTmpl0000000001',1228125743,'3','pbversion0000000000001','approved','Default UserList','Default UserList','root/import/userlist/default-userlist','3','7','12',NULL,0,1,0,0,0,5202,NULL,0,1,0,1285124165,NULL,0),('UserListTmpl0000000003',1228125758,'3','pbversion0000000000001','approved','UserList with multiple search keywords','UserList with multiple search keywords','root/import/userlist/userlist-with-multiple-search-keywords','3','7','12',NULL,0,1,0,0,0,5489,NULL,0,1,0,1285124165,NULL,0),('UserListTmpl0000000002',1228125752,'3','pbversion0000000000001','approved','UserList with search field selection','UserList with search field selection','root/import/userlist/userlist-with-search-field-selection','3','7','12',NULL,0,1,0,0,0,5116,NULL,0,1,0,1285124165,NULL,0),('TimeTrackingTMPL000003',1229311434,'3','pbversion0000000000001','approved','Default Time Tracking Row Template','Default Time Tracking Row Template','default-tt-template-row','3','7','12',NULL,0,0,0,0,0,5721,NULL,0,1,0,1285124164,NULL,0),('uRL9qtk7Rb0YRJ41LmHOJw',1229311072,'3','pbversion0000000000001','approved','Default Calendar Print List View','Default Calendar Print List View','root/import/calendar-templates/default-calendar-print-list-view','3','7','3',NULL,0,1,0,0,0,1737,NULL,0,1,0,1285124167,NULL,0),('j_1qEqM6iLfQLiR6VKy0aA',1299872071,'1','pbversion0000000000001','approved','Free Documentation','Free Documentation','documentation/free-documentation','3','7','3',NULL,0,1,0,0,0,2117,NULL,0,1,0,1301974027,NULL,0),('ProjectManagerTMPL0005',1229579830,'3','pbversion0000000000001','approved','Default Resource Popup','Default Resource Popup','default-pm-resource-popup','3','7','12',NULL,0,0,0,0,0,3582,NULL,0,1,0,1285124164,NULL,0),('ProjectManagerTMPL0001',1229579830,'3','pbversion0000000000001','approved','Default Project Management System Dashboard','Default Project Management System Dashboard','default-pm-template-dashboard','3','7','12',NULL,0,0,0,0,0,6862,'',0,1,0,1285124164,'',0),('PBtmpl0000000000000033',1230159454,'3','pbversion0000000000001','approved','Default HTTP Proxy','Default HTTP Proxy','default_http_proxy','3','7','12',NULL,0,1,0,0,0,2214,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000059',1229907401,'3','pbversion0000000000001','approved','Default SQL Report','Default SQL Report','default_sql_report','3','7','12',NULL,0,1,0,0,0,7737,NULL,0,1,0,1285124162,NULL,0),('MultiSearchTmpl0000001',1230269962,'3','pbversion0000000000001','approved','MultiSearch Default Display','MultiSearch Default Display','multisearchtmpl0000001','3','7','12',NULL,0,1,0,0,0,3538,'',0,1,0,1285124161,'',0),('CalendarDay00000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Day','Default Calendar Day','root/import/calendar-templates/default-calendar-day','3','7','12',NULL,0,0,0,0,0,13749,' ',0,1,0,1285124160,'',0),('CalendarWeek0000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Week','Default Calendar Week','root/import/calendar-templates/default-calendar-week','3','7','12',NULL,0,0,0,0,0,12761,'',0,1,0,1285124160,'',0),('StockDataTMPL000000002',1229494994,'3','pbversion0000000000001','approved','StockData Default Display','StockData Default Display','stockdatatmpl000000002','3','7','12',NULL,0,1,0,0,0,20602,NULL,0,1,0,1285124164,NULL,0),('QHn6T9rU7KsnS3Y70KCNTg',1233173545,'3','pbversion0000000000001','approved','Account','Account','root/import/account','3','7','12',NULL,0,1,0,0,0,320,NULL,0,1,0,1250190873,NULL,0),('HW-sPoDDZR8wBZ0YgFgPtg',1227634350,'3','pbversion0000000000001','approved','images','images','root/import/account/images','3','7','12',NULL,0,1,0,0,0,331,NULL,0,1,0,1250190873,NULL,0),('hBpisL-_URyZnh9clR5ohA',1227634417,'3','pbversion0000000000001','approved','no_photo.gif','no_photo.gif','root/import/account/images/no_photo.gif','3','7','12',NULL,0,1,0,0,0,2564,NULL,0,1,0,1250190873,NULL,0),('FOBV6KkifreXa4GmEAUU4A',1227634447,'3','pbversion0000000000001','approved','no_photo_sm.gif','no_photo_sm.gif','root/import/account/images/no_photo_sm.gif','3','7','12',NULL,0,1,0,0,0,1580,NULL,0,1,0,1250190873,NULL,0),('TuYPpHx7TUyk08639Pc8Bg',1233861621,'3','pbversion0000000000001','approved','Default DataTable Template (HTML)','Default DataTable Template (HTML)','root/import/datatable/default-datatable-template-html','3','7','3',NULL,0,1,0,0,0,1429,NULL,0,1,0,1285124164,NULL,0),('3rjnBVJRO6ZSkxlFkYh_ug',1233861835,'3','pbversion0000000000001','approved','Default DataTable Template (YUI)','Default DataTable Template (YUI)','root/import/datatable/default-datatable-template-yui','3','7','3',NULL,0,1,0,0,0,1089,NULL,0,1,0,1285124159,NULL,0),('AOjPG2NHgfL9Cq6dDJ7mew',1236960881,'3','pbversion0000000000001','approved','Shop','Shop','root/import/account/shop','3','7','12',NULL,0,1,0,0,0,325,NULL,0,1,0,1250190873,NULL,0),('NBVSVNLp9X_bV7WrCprtCA',1237842096,'3','pbversion0000000000001','approved','Annotate Image','Annotate Image','image3','3','7','12',NULL,0,1,0,0,0,675,NULL,0,1,0,1285124161,NULL,0),('jmlI9IK-lV8n2WMYmmPhAA',1238106173,'3','pbversion0000000000001','approved','Ad Sku','Ad Sku','root/import/ad-sku','3','7','12',NULL,0,1,0,0,0,317,NULL,0,1,0,1242380149,NULL,0),('ThingyTmpl000000000001',1237914005,'3','pbversion0000000000001','approved','Default Thingy','Default Thingy','templates/thingy-default','3','7','12',NULL,0,0,0,0,0,2554,'',0,1,0,1285124164,'',0),('6uvSLY-ak_w4p_wS8q33cA',1239213092,'3','pbversion0000000000001','approved','Carousel','Carousel','root/import/carousel','3','7','12',NULL,0,1,0,0,0,323,NULL,0,1,0,1242380142,NULL,0),('CarouselTmpl0000000002',1239475937,'3','pbversion0000000000001','approved','Carousel hidden textareas','Carousel hidden textareas','root/import/carousel/carousel-hidden-textareas','3','7','12',NULL,0,0,0,0,0,1059,NULL,0,1,0,1285124160,NULL,0),('GaBAW-2iVhLMJaZQzVLE5A',1240103565,'3','pbversion0000000000001','approved','ThingyRecord Templates','ThingyRecord Templates','root/import/thingyrecord-templates','3','7','3',NULL,0,0,0,0,0,364,NULL,0,1,0,1242380149,NULL,0),('b1316COmd9xRv4fCI3LLGA',1236956475,'3','pbversion0000000000001','approved','Inbox Notification','Inbox Notification','inbox_notification','3','7','4',NULL,0,0,0,0,0,414,NULL,0,1,0,1285124165,NULL,0),('lo1rpxn3t8YPyKGers5eQg',1238625621,'3','pbversion0000000000001','approved','Friend Manager','Friend Manager','root/import/account/friendmanager','3','7','12',NULL,0,1,0,0,0,388,NULL,0,1,0,1242380168,NULL,0),('YP9WaMPJHvCJl-YwrLVcPw',1245376837,'3','pbversion0000000000001','approved','Progress Bar','Progress Bar','admin_progress_bar','3','7','12',NULL,0,1,0,0,0,2600,'\n',0,1,0,1285124165,'',0),('FEDP3dk8J3Chw_gyr7_XEQ',1246278679,'3','pbversion0000000000001','approved','navigation.css','navigation.css','navigation.css','3','7','12',NULL,0,1,0,0,0,2437,NULL,0,1,0,1285124168,NULL,0),('f_tn9FfoSfKWX43F83v_3w',1247053009,'3','pbversion0000000000001','approved','Search','Search','root/import/search','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1247779657,NULL,0),('oGfxez5sksyB_PcaAsEm_Q',1247053097,'3','pbversion0000000000001','approved','SyndicatedContent','SyndicatedContent','root/import/syndicatedcontent','3','7','12',NULL,0,0,0,0,0,350,NULL,0,1,0,1247779657,NULL,0),('tPagC0AQErZXjLFZQ6OI1g',1246966459,'3','pbversion0000000000001','approved','ImageAsset','ImageAsset','root/import/imageasset','3','7','12',NULL,0,0,0,0,0,329,NULL,0,1,0,1247779656,NULL,0),('pbtmpl0000000000000220',1247488979,'3','pbversion0000000000001','approved','Flash Style 3 Template','Flash Style 3 Template','flash-style-3-template','3','7','12',NULL,0,0,0,0,0,1386,'\r\n\r\n',0,1,0,1285124167,'',0),('PBtmpl0000000000000001',1247535846,'3','pbversion0000000000001','approved','Admin Console','Admin Console','admin_console2','3','7','12',NULL,0,1,0,0,0,5963,'\n',0,1,0,1285124161,'',0),('GYaFxnMu9UsEG8oanwB6TA',1246965871,'3','pbversion0000000000001','approved','Folder','Folder','root/import/folder','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1247779656,NULL,0),('pbtmpl0000000000000221',1247487940,'3','pbversion0000000000001','approved','Flash Tutorial Template','Flash Tutorial Template','flash-tutorial-template','3','7','12',NULL,0,0,0,0,0,2092,'\r\n\r\n',0,1,0,1285124167,'',0),('VZK3CRgiMb8r4dBjUmCTgQ',1247046242,'3','pbversion0000000000001','approved','Poll','Poll','root/import/poll','3','7','12',NULL,0,0,0,0,0,311,NULL,0,1,0,1247779656,NULL,0),('NK8bqlwVRILJknqeCDPBHg',1285796040,'1','pbversion0000000000001','approved','Getting Started (part 2)','Getting Started (part 2)','getting_started/getting-started-part2','3','7','4',NULL,0,1,0,0,0,1510,NULL,0,1,0,1301974027,NULL,0),('i5kt5aodVs_oepNEkE7Okw',1242312883,'3','pbversion0000000000001','approved','poll.css','poll.css','poll.css','3','7','12',NULL,0,1,0,0,0,458,NULL,0,1,0,1285124169,NULL,0),('tXwf1zaOXTvsqPn6yu-GSw',1246965607,'3','pbversion0000000000001','approved','FileAsset','FileAsset','root/import/fileasset','3','7','12',NULL,0,0,0,0,0,326,NULL,0,1,0,1247779656,NULL,0),('nFen0xjkZn8WkpM93C9ceQ',1247864696,'3','pbversion0000000000001','approved','Shelf (Default)','Shelf (Default)','root/import/shelf-default','3','7','12',NULL,0,1,0,0,0,4612,'\n',0,1,0,1285124167,'',0),('2CS-BErrjMmESOtGT90qOg',1248549087,'3','pbversion0000000000001','approved','Default View Profile Template','Default View Profile Template','root/import/account/profile/default-view-profile-template','3','7','12',NULL,0,1,0,0,0,7605,NULL,0,1,0,1285124168,NULL,1),('MBmWlA_YEA2I6D29OMGtRg',1248549086,'3','pbversion0000000000001','approved','Default Profile Error Template','Default Profile Error Template','root/import/account/profile/default-profile-error-template','3','7','12',NULL,0,1,0,0,0,1223,NULL,0,1,0,1285124161,NULL,0),('gfZOwaTWYjbSoVaQtHBBEw',1249407461,'3','pbversion0000000000001','approved','Inbox Account Layout','Inbox Account Layout','root/import/account/inbox-account-layout','3','7','12',NULL,0,1,0,0,0,3260,'',0,1,0,1285124166,'',0),('0n4HtbXaWa_XJHkFjetnLQ',1248549086,'3','pbversion0000000000001','approved','Default Inbox View Message Template','Default Inbox View Message Template','root/import/account/inbox/default-inbox-view-message-template','3','7','12',NULL,0,1,0,0,0,5000,NULL,0,1,0,1285124159,NULL,0),('ErEzulFiEKDkaCDVmxUavw',1248549086,'3','pbversion0000000000001','approved','Default Inbox Error Template','Default Inbox Error Template','root/import/account/inbox/default-inbox-error-template','3','7','12',NULL,0,1,0,0,0,732,NULL,0,1,0,1285124160,NULL,0),('DUoxlTBXhVS-Zl3CFDpt9g',1248549086,'3','pbversion0000000000001','approved','Default Message Confirm Template','Default Message Confirm Template','root/import/account/inbox/default-message-confirm-template','3','7','12',NULL,0,1,0,0,0,785,NULL,0,1,0,1285124160,NULL,0),('1Q4Je3hKCJzeo0ZBB5YB8g',1248549086,'3','pbversion0000000000001','approved','Default Manage Invitations Template','Default Manage Invitations Template','root/import/account/inbox/default-manage-invitations-template','3','7','12',NULL,0,1,0,0,0,9795,'\n\n',0,1,0,1285124159,'',0),('5A8Hd9zXvByTDy4x-H28qw',1248549086,'3','pbversion0000000000001','approved','Default Invitation Confirmation Template','Default Invitation Confirmation Template','root/import/account/inbox/default-invitation-confirmation-template','3','7','12',NULL,0,1,0,0,0,1549,NULL,0,1,0,1285124159,NULL,0),('VBkY05f-E3WJS50WpdKd1Q',1248549087,'3','pbversion0000000000001','approved','Default View Invitation Template','Default View Invitation Template','root/import/account/inbox/default-view-invitation-template','3','7','12',NULL,0,1,0,0,0,3836,NULL,0,1,0,1285124165,NULL,0),('XgcsoDrbC0duVla7N7JAdw',1248549086,'3','pbversion0000000000001','approved','Default Invite User Email Template','Default Invite User Email Template','root/import/account/inbox/default-invite-user-email-template','3','7','12',NULL,0,1,0,0,0,490,NULL,0,1,0,1285124165,NULL,0),('cR0UFm7I1qUI2Wbpj--08Q',1248549086,'3','pbversion0000000000001','approved','Default Invite User Form Template','Default Invite User Form Template','root/import/account/inbox/default-invite-user-form-template','3','7','12',NULL,0,1,0,0,0,3967,NULL,0,1,0,1285124165,NULL,0),('SVIhz68689hwUGgcDM-gWw',1248549086,'3','pbversion0000000000001','approved','Default Invite User Confirm Template','Default Invite User Confirm Template','root/import/account/inbox/default-invite-user-confirm-template','3','7','12',NULL,0,1,0,0,0,819,NULL,0,1,0,1285124164,NULL,0),('zrNpGbT3odfIkg6nFSUy8Q',1249407461,'3','pbversion0000000000001','approved','Friends Layout Template','Friends Layout Template','root/import/account/friends/friends-layout-template','3','7','12',NULL,0,1,0,0,0,2662,'\n',0,1,0,1285124168,'',0),('1Yn_zE_dSiNuaBGNLPbxtw',1248549086,'3','pbversion0000000000001','approved','Default Friends View Template','Default Friends View Template','root/import/account/friends/default-friends-view-template','3','7','12',NULL,0,1,0,0,0,8064,NULL,0,1,0,1285124159,NULL,0),('AZFU33p0jpPJ-E6qLSWZng',1248549086,'3','pbversion0000000000001','approved','Default Friends Edit Template','Default Friends Edit Template','root/import/account/friends/default-friends-edit-template','3','7','12',NULL,0,1,0,0,0,9831,NULL,0,1,0,1285124159,NULL,0),('AGJBGviWGAwjnwziiPjvDg',1248549087,'3','pbversion0000000000001','approved','Default Send Request Template','Default Send Request Template','root/import/account/friends/default-send-request-template','3','7','12',NULL,0,1,0,0,0,2781,NULL,0,1,0,1285124159,NULL,0),('7Ijdd8SW32lVgg2H8R-Aqw',1248549086,'3','pbversion0000000000001','approved','Default Friends Error Template','Default Friends Error Template','root/import/account/friends/default-friends-error-template','3','7','12',NULL,0,1,0,0,0,776,NULL,0,1,0,1285124159,NULL,0),('K8F0j_cq_jgo8dvWY_26Ag',1248549086,'3','pbversion0000000000001','approved','Default Friends Confirmation Template','Default Friends Confirmation Template','root/import/account/friends/default-friends-confirmation-template','3','7','12',NULL,0,1,0,0,0,942,NULL,0,1,0,1285124160,NULL,0),('G5V6neXIDiFXN05oL-U3AQ',1248549087,'3','pbversion0000000000001','approved','Default Remove Friends Confirmation Template','Default Remove Friends Confirmation Template','root/import/account/friends/default-remove-friends-confirmation-template','3','7','12',NULL,0,1,0,0,0,1166,NULL,0,1,0,1285124160,NULL,0),('9ThW278DWLV0-Svf68ljFQ',1249407460,'3','pbversion0000000000001','approved','Account Layout','Account Layout','root/import/account/user/account-layout','3','7','12',NULL,0,1,0,0,0,1728,'\n',0,1,0,1285124159,'',0),('-zxyB-O50W8YnL39Ouoc4Q',1248563425,'3','pbversion0000000000001','approved','Default My Sales Template','Default My Sales Template','root/import/default-my-sales-template','3','7','12',NULL,0,1,0,0,0,3993,NULL,0,1,0,1285124158,NULL,0),('b4n3VyUIsAHyIvT-W-jziA',1249407461,'3','pbversion0000000000001','approved','Contributions Layout','Contributions Layout','root/import/account/contributions/contributions-layout','3','7','12',NULL,0,1,0,0,0,1753,'\n',0,1,0,1285124165,'',0),('PBtmpl0000000000000056',1248729559,'3','pbversion0000000000001','approved','Default Product','Default Product','default_product','3','7','12',NULL,0,1,0,0,0,13325,'\n\n',0,1,0,1285124162,'',0),('i9-G00ALhJOr0gMh-vHbKA',1250408924,'3','pbversion0000000000001','approved','Inbox SMS Notification','Inbox SMS Notification','root/import/inbox-sms-notification','3','7','4',NULL,0,0,0,0,0,446,NULL,0,1,0,1285124166,NULL,0),('ohjyzab5i-yW6GOWTeDUHg',1251425384,'3','pbversion0000000000001','approved','Default Manage Ad Sku Template','Default Manage Ad Sku Template','root/import/ad-sku/default-manage-ad-sku-template','3','7','12',NULL,0,0,0,0,0,2567,NULL,0,1,0,1285124167,NULL,0),('AldPGu0u-jm_5xK13atCSQ',1251419124,'3','pbversion0000000000001','approved','Default Purchase Ad Sku Template','Default Purchase Ad Sku Template','root/import/ad-sku/default-purchase-ad-sku-template','3','7','12',NULL,0,0,0,0,0,4230,NULL,0,1,0,1285124160,NULL,0),('5bnNzteN7w3NnK9mF4XiCg',1250243000,'3','pbversion0000000000001','approved','Survey','Survey','root/import/survey','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1253052788,NULL,0),('PBtmpl0000000000000063',1250243000,'3','pbversion0000000000001','approved','Default Overview Report','Default Overview Report','root/import/survey/default-overview-report','3','7','12',NULL,0,1,0,0,0,5835,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000062',1250243000,'3','pbversion0000000000001','approved','Default Gradebook Report','Default Gradebook Report','root/import/survey/default-gradebook-report','3','7','12',NULL,0,1,0,0,0,4863,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000061',1250243000,'3','pbversion0000000000001','approved','Default Survey','Default Survey','root/import/survey/default-survey','3','7','12',NULL,0,1,0,0,0,2968,NULL,0,1,0,1285124162,NULL,0),('CxMpE_UPauZA3p8jdrOABw',1250243000,'3','pbversion0000000000001','approved','Default Questions','Default Questions','root/import/survey/default-questions','3','7','12',NULL,0,1,0,0,0,17836,NULL,0,1,0,1285124160,NULL,0),('1oBRscNIcFOI-pETrCOspA',1250243000,'3','pbversion0000000000001','approved','Default Section Edit','Default Section Edit','root/import/survey/default-section-edit','3','7','12',NULL,0,1,0,0,0,14088,NULL,0,1,0,1285124159,NULL,0),('wAc4azJViVTpo-2NYOXWvg',1250243000,'3','pbversion0000000000001','approved','Default Question Edit','Default Question Edit','root/import/survey/default-question-edit','3','7','12',NULL,0,1,0,0,0,12766,NULL,0,1,0,1285124167,NULL,0),('AjhlNO3wZvN5k4i4qioWcg',1250243000,'3','pbversion0000000000001','approved','Default Answer Edit','Default Answer Edit','root/import/survey/default-answer-edit','3','7','12',NULL,0,1,0,0,0,9595,NULL,0,1,0,1285124159,NULL,0),('RSAMkc6WQmfRE3TOr1_3Mw',1250243000,'3','pbversion0000000000001','approved','ExpireIncompleteSurveyResponses','ExpireIncompleteSurveyResponses','root/import/expireincompletesurveyresponses','3','7','12',NULL,0,1,0,0,0,399,NULL,0,1,0,1253052788,NULL,0),('ExpireIncResptmpl00001',1250243000,'3','pbversion0000000000001','approved','ExpireIncompleteSurveyResponses','ExpireIncompleteSurveyResponses','root/import/expireincompletesurveyresponses/expireincompletesurveyresponses','3','7','12',NULL,0,1,0,0,0,810,NULL,0,1,0,1285124160,NULL,0),('7F-BuEHi7t9bPi008H8xZQ',1250243000,'3','pbversion0000000000001','approved','Default Survey Summary','Default Survey Summary','root/import/survey/default-survey-summary','3','7','12',NULL,0,1,0,0,0,2300,NULL,0,1,0,1285124159,NULL,0),('S3zpVitAmhy58CAioH359Q',1250243000,'3','pbversion0000000000001','approved','Default Test Results','Default Test Results','root/import/survey/default-test-results','3','7','12',NULL,0,1,0,0,0,8673,'',0,1,0,1285124164,'',0),('nWNVoMLrMo059mDRmfOp9g',1250243000,'3','pbversion0000000000001','approved','Default Feedback','Default Feedback','root/import/survey/default-feedback','3','7','12',NULL,0,1,0,0,0,1235,NULL,0,1,0,1285124167,NULL,0),('newslettercs0000000001',1252682678,'3','pbversion0000000000001','approved','Newsletter Manager (default)',' Newsletter Manager','newslettercstemplate','3','7','3',NULL,0,0,0,0,0,2824,'\n',0,1,0,1285124167,'',0),('1IzRpX0tgW7iuCfaU2Kk0A',1250243000,'3','pbversion0000000000001','approved','Default Contributions View','Default Contributions View','root/import/account/contributions/default-contributions-view','3','7','12',NULL,0,1,0,0,0,7799,'\n',0,1,0,1285124159,'',0),('0EAJ9EYb9ap2XwfrcXfdLQ',1250243000,'3','pbversion0000000000001','approved','Story Archive Asset List','Story Archive Asset List','root/import/storymanager/keywordlist','3','7','4',NULL,0,0,0,0,0,579,NULL,0,1,0,1285124158,NULL,0),('TKmhv8boP3TD2xwSwUBq0g',1250243000,'3','pbversion0000000000001','approved','Default ThingyRecord View','Default ThingyRecord View','home/thinyrecord-templates/default-thingyrecord-view','3','7','3',NULL,0,1,0,0,0,1789,NULL,0,1,0,1285124164,NULL,0),('75CmQgpcCSkdsL-oawdn3Q',1253555614,'3','pbversion0000000000001','approved','Default Edit Profile Template','Default Edit Profile Template','root/import/account/profile/default-edit-profile-template','3','7','12',NULL,0,1,0,0,0,3294,'\n\n\n\n',0,1,0,1285124159,'',0),('d8jMMMRddSQ7twP4l1ZSIw',1253555614,'3','pbversion0000000000001','approved','Default Survey Take','Default Survey Take','root/import/survey/default-survey-take','3','7','12',NULL,0,1,0,0,0,3994,'\n\n\n\n',0,1,0,1285124165,'',0),('fowHfgOkJtAxdst7rugTog',1252595993,'3','pbversion0000000000001','approved','Story Manager','Story Manager','root/import/storymanager','3','7','12',NULL,0,1,0,0,0,339,'\r\n',0,1,0,1253676393,NULL,0),('3QpYtHrq_jmAk1FNutQM5A',1253636379,'3','pbversion0000000000001','approved','Story Template','Story Template','root/import/storymanager/storytemplate','3','7','4',NULL,0,0,0,0,0,6662,'\n\n\n',0,1,0,1285124159,'',0),('yxD5ka7XHebPLD-LXBwJqw',1253635396,'3','pbversion0000000000001','approved','StoryArchive','StoryArchive','root/import/storymanager/storyarchive','3','7','4',NULL,0,0,0,0,0,3375,'',0,1,0,1285124167,'',0),('TbDcVLbbznPi0I0rxQf2CQ',1253636379,'3','pbversion0000000000001','approved','Story Template Topic','Story Template Topic','root/import/storymanager/storytemplatetopic','3','7','4',NULL,0,0,0,0,0,7134,'\n\n\n\n\n',0,1,0,1285124164,'',0),('iCM9pRY5yYyjufROgaCDlg',1253305659,'3','pbversion0000000000001','approved','storyManager.css','storyManager.css','storymanager.css','3','7','12',NULL,0,1,0,0,0,4360,NULL,0,1,0,1285124169,NULL,0),('VyCINX2KixKYr2pzQGX9Mg',1254881103,'3','pbversion0000000000001','approved','layout.css','layout.css','layout.css','3','7','12',NULL,0,1,0,0,0,1439,'\r\n',0,1,0,1285124168,NULL,0),('TvOZs8U1kRXLtwtmyW75pg',1256092368,'3','pbversion0000000000001','approved','Article','Article','root/import/article','3','7','12',NULL,0,0,0,0,0,322,'\r\n',0,1,0,1256092370,NULL,0),('zb_OPKNqcTuIjdvvbEkRjw',1256092368,'3','pbversion0000000000001','approved','article.css','article.css','article.css','3','7','12',NULL,0,1,0,0,0,723,'\r\n',0,1,0,1285124169,NULL,0),('PBrichedit000000000001',1256092369,'3','pbversion0000000000001','approved','Content Manager\'s Rich Edit','Content Manager\'s Rich Edit','content_managers_rich_edit','3','7','12',NULL,0,0,0,0,0,572,'\r\n',0,1,0,1256092370,NULL,0),('FJbUTvZ2nUTn65LpW6gjsA',1256092369,'3','pbversion0000000000001','approved','Profile Account Layout','Profile Account Layout','root/import/account/profile/profile-account-layout','3','7','12',NULL,0,1,0,0,0,4224,'',0,1,0,1285124160,'',0),('pbrobot000000000000001',1256092369,'3','pbversion0000000000001','approved','robots.txt','robots.txt','robots.txt','3','7','12',NULL,0,0,0,0,0,562,NULL,0,1,0,1285124169,NULL,0),('4qh0kIsFUdd4Ox-Iu1JZgg',1257311886,'3','pbversion0000000000001','approved','EMS','EMS','root/import/ems','3','7','12',NULL,0,1,0,0,0,310,'\r\n',0,1,0,1257311889,NULL,0),('OOyMH33plAy6oCj_QWrxtg',1257311886,'3','pbversion0000000000001','approved','Lookup Registrant (Default)','Lookup Registrant (Default)','root/import/ems/lookup-registrant-default','3','7','12',NULL,0,1,0,0,0,7007,'\n\n\n\n\n\n\n\n\n\n\n\n',0,1,0,1285124161,'',0),('PsFn7dJt4wMwBa8hiE3hOA',1257311886,'3','pbversion0000000000001','approved','Print Badge (Default)','Print Badge (Default)','root/import/ems/print-badge-default','3','7','12',NULL,0,1,0,0,0,2323,NULL,0,1,0,1285124164,NULL,0),('yBwydfooiLvhEFawJb0VTQ',1257311887,'3','pbversion0000000000001','approved','Print Ticket (Default)','Print Ticket (Default)','root/import/ems/print-ticket-default','3','7','12',NULL,0,1,0,0,0,2386,NULL,0,1,0,1285124167,NULL,0),('S2_LsvVa95OSqc66ITAoig',1257311887,'3','pbversion0000000000001','approved','EMS Schedule Listing (default)','EMS Schedule Listing (default)','root/import/ems/ems-schedule-listing-default2','3','7','12',NULL,0,1,0,0,0,14216,'\n\n\n\n\n\n\n\n\n\n\n\n \n',0,1,0,1285124164,'',0),('hreA_bgxiTX-EzWCSZCZJw',1257311887,'3','pbversion0000000000001','approved','Print Remaining Tickets Template (default)','Print Remaining Tickets Template (default)','root/import/ems/default-print-remaining-tickets-template','3','7','12',NULL,0,1,0,0,0,2345,'\r\n',0,1,0,1285124166,NULL,0),('-K8Hj45mbelljN9-0CXZxg',1257311887,'3','pbversion0000000000001','approved','DataForm','DataForm','root/import/dataform','3','7','12',NULL,0,0,0,0,0,336,NULL,0,1,0,1257311888,NULL,0),('PBtmpl0000000000000020',1257311887,'3','pbversion0000000000001','approved','Mail Form','Mail Form','mail_form','3','7','12',NULL,0,1,0,0,0,4606,'\n',0,1,0,1285124161,'',0),('PBtmpl0000000000000104',1257311888,'3','pbversion0000000000001','approved','Default Acknowledgement','Default Acknowledgement','default_acknowledgement','3','7','12',NULL,0,1,0,0,0,1750,'',0,1,0,1285124163,'',0),('_iHetEvMQUOoxS-T2CM0sQ',1273172789,'1','pbversion0000000000001','approved','Getting Started','Getting Started','getting_started','3','7','3',NULL,0,0,0,0,0,392,NULL,0,1,0,1301974027,NULL,0),('bX5rYxb6tZ9docY6sUhBlw',1278013772,'1','pbversion0000000000001','approved','Getting Started','Getting Started','getting_started/getting-started','3','7','4',NULL,0,1,0,0,0,1253,NULL,0,1,0,1301974027,NULL,0),('8Bb8gu-me2mhL3ljFyiWLg',1271359194,'1','pbversion0000000000001','approved','Talk to the Experts','Your Next Step','your_next_step','3','7','3',NULL,0,0,0,0,0,869,NULL,0,1,0,1301974027,NULL,0),('ix1p0AbwKAz8QWB-T-HHfg',1271359087,'1','pbversion0000000000001','approved','Get Support','Get Support','yns/support','3','7','4',NULL,0,1,0,0,0,739,NULL,0,1,0,1301974027,NULL,0),('iCYOjohB9SKvAPr6bXElKA',1271445525,'1','pbversion0000000000001','approved','Get Hosting','Get Hosting','yns/hosting','3','7','4',NULL,0,1,0,0,0,749,NULL,0,1,0,1301974027,NULL,0),('PBtmpl0000000000000116',1257311888,'3','pbversion0000000000001','approved','Tab Form','Tab Form','tab_form','3','7','12',NULL,0,1,0,0,0,5745,'\n',0,1,0,1285124163,'',0),('PBtmpl0000000000000141',1257311888,'3','pbversion0000000000001','approved','Default DataForm','Default DataForm','pbtmpl0000000000000141','3','7','12',NULL,0,1,0,0,0,6035,'\n',0,1,0,1285124164,'',0),('_aE16Rr1-bXBf8SIaLZjCg',1257311888,'3','pbversion0000000000001','approved','picklanguage','picklanguage','media/picklanguage','3','7','12',NULL,0,1,0,0,0,617,'\r\n',0,1,0,1285124165,NULL,0),('P_4uog81vSUK4KxuW_4GUA',1258524916,'3','pbversion0000000000001','approved','css','css','css','3','7','12',NULL,0,1,0,0,0,298,'\r\n',0,1,0,1258524918,NULL,0),('PBtmpl0000000000000060',1258524916,'3','pbversion0000000000001','approved','Fail Safe','Fail Safe','fail_safe','3','7','12',NULL,0,1,0,0,0,2413,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000137',1258524916,'3','pbversion0000000000001','approved','Admin Console Style','Admin Console','admin_console','3','7','12',NULL,0,1,0,0,0,1283,NULL,0,1,0,1285124163,NULL,0),('PBtmpl0000000000000132',1258524916,'3','pbversion0000000000001','approved','Empty','Empty','empty','3','7','12',NULL,0,1,0,0,0,296,NULL,0,1,0,1285124163,NULL,0),('PBtmplBlankStyle000001',1258524916,'3','pbversion0000000000001','approved','WebGUI 6 Blank Style','WebGUI 6 Blank Style','pbtmplblankstyle000001','3','7','12',NULL,0,1,0,0,0,1970,NULL,0,1,0,1285124164,NULL,0),('uCn31PzislTZlgt_79j7cQ',1258524916,'3','pbversion0000000000001','approved','style.css','style.css','css/style.css','3','7','12',NULL,0,1,0,0,0,1019,'\r\n',0,1,0,1285124169,NULL,0),('H_-8zjtWsO1FUpQqNtkxNQ',1258524916,'3','pbversion0000000000001','approved','wg-base.css','wg-base.css','css/wg-base.css','3','7','12',NULL,0,1,0,0,0,1138,'\r\n',0,1,0,1285124168,NULL,0),('PBtmpl0000000000000117',1259133274,'3','pbversion0000000000001','approved','DropMenu','DropMenu','dropmenu','3','7','12',NULL,0,1,0,0,0,2660,'',0,1,0,1285124163,'',0),('PBtmpl0000000000000136',1259133274,'3','pbversion0000000000001','approved','Synopsis','Synopsis','synopsis2','3','7','12',NULL,0,1,0,0,0,1734,NULL,0,1,0,1285124163,NULL,0),('PBtmpl0000000000000093',1259133274,'3','pbversion0000000000001','approved','crumbTrail','crumbTrail','crumbtrail2','3','7','12',NULL,0,1,0,0,0,1494,NULL,0,1,0,1285124163,NULL,0),('GNvjCFQWjY2AF2uf0aCM8Q',1259133274,'3','pbversion0000000000001','approved','Syndicated Articles','Syndicated Articles','syndicated_articles','3','7','12',NULL,0,1,0,0,0,2472,NULL,0,1,0,1285124160,NULL,0),('-PkdI8l1idu-8gDX3iOdcw',1259133274,'3','pbversion0000000000001','approved','One Over Two','One Over Two','one_over_two','3','7','12',NULL,0,1,0,0,0,6326,'',0,1,0,1285124158,'',0),('PBtmpl0000000000000103',1259133275,'3','pbversion0000000000001','approved','Article With Image','Article With Image','article-with-image','3','7','12',NULL,0,1,0,0,0,2130,'',0,1,0,1285124163,'',0),('PBtmpl0000000000000024',1259133275,'3','pbversion0000000000001','approved','File','File','file','3','7','12',NULL,0,1,0,0,0,940,NULL,0,1,0,1285124161,NULL,0),('XdlKhCDvArs40uqBhvzR3w',1259133275,'3','pbversion0000000000001','approved','Article With Pagination','Article With Pagination','article-with-pagination','3','7','12',NULL,0,1,0,0,0,3274,'\n',0,1,0,1285124165,NULL,0),('PBnav00000000indentnav',1259133275,'3','pbversion0000000000001','approved','Indent Nav','Indent Nav','indent_nav','3','7','12',NULL,0,0,0,0,0,1978,'',0,1,0,1285124161,'',0),('PBtmpl0000000000000124',1259133275,'3','pbversion0000000000001','approved','Tabs','Tabs','tabs','3','7','12',NULL,0,1,0,0,0,1766,'',0,1,0,1285124163,'',0),('PBtmpl0000000000000131',1259133275,'3','pbversion0000000000001','approved','Right Column','Right Column','right_column','3','7','12',NULL,0,1,0,0,0,4905,'',0,1,0,1285124163,'',0),('PBtmpl0000000000000134',1259133275,'3','pbversion0000000000001','approved','Hierarchical Top Nav','Hierarchical Top Nav','import/hierarchical-top-nav','3','7','12',NULL,0,1,0,0,0,4021,'\n\n\n\n\n\n',0,1,0,1285124163,'',0),('PBtmpl0000000000000078',1259133275,'3','pbversion0000000000001','approved','File Folder','File Folder','file_folder','3','7','12',NULL,0,1,0,0,0,3834,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000055',1259133275,'3','pbversion0000000000001','approved','Default Poll','Default Poll','default_poll','3','7','12',NULL,0,1,0,0,0,3032,'',0,1,0,1285124162,'',0),('PBtmpl0000000000000065',1259133275,'3','pbversion0000000000001','approved','Default Syndicated Content','Default Syndicated Content','default_syndicated_content','3','7','12',NULL,0,1,0,0,0,2387,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000054',1259133276,'3','pbversion0000000000001','approved','Default Page','Default Page','default_page','3','7','12',NULL,0,1,0,0,0,3083,'',0,1,0,1285124162,'',0),('PBtmpl0000000000000108',1259133276,'3','pbversion0000000000001','approved','horizontalMenu','horizontalMenu','horizontalmenu','3','7','12',NULL,0,1,0,0,0,1982,'',0,1,0,1285124163,'',0),('PBtmpl0000000000000115',1259133276,'3','pbversion0000000000001','approved','Linked Image with Caption','Linked Image with Caption','linked_image_with_caption','3','7','12',NULL,0,1,0,0,0,2393,'',0,1,0,1285124163,'',0),('PBtmpl0000000000000109',1259133276,'3','pbversion0000000000001','approved','One Over Three','One Over Three','one_over_three','3','7','12',NULL,0,1,0,0,0,7968,'',0,1,0,1285124163,'',0),('VCFhB9WOsDsH2Apj3c6DpQ',1259133276,'3','pbversion0000000000001','approved','Three Columns','Three Columns','three-columns','3','7','12',NULL,0,1,0,0,0,5947,'',0,1,0,1285124165,'',0),('PBtmpl0000000000000002',1259133276,'3','pbversion0000000000001','approved','Default Article','Default Article','default_article','3','7','12',NULL,0,1,0,0,0,2241,NULL,0,1,0,1285124161,NULL,0),('PBtmpl0000000000000123',1259133276,'3','pbversion0000000000001','approved','Item','Item','item','3','7','12',NULL,0,1,0,0,0,2232,NULL,0,1,0,1285124163,NULL,0),('PBtmpl0000000000000135',1259133276,'3','pbversion0000000000001','approved','Side By Side','Side By Side','side_by_side','3','7','12',NULL,0,1,0,0,0,4489,'\n',0,1,0,1285124163,'',0),('PBnav00000000000bullet',1259133276,'3','pbversion0000000000001','approved','Bulleted List','Bulleted List','bulleted_list','3','7','12',NULL,0,0,0,0,0,2744,'\n\n',0,1,0,1285124161,'',0),('MK4fCNoyrx5SE8eyDfOpxg',1259133276,'3','pbversion0000000000001','approved','Flash File','Flash File','flash-file','3','7','12',NULL,0,1,0,0,0,1861,NULL,0,1,0,1285124161,NULL,0),('PBtmpl0000000000000130',1259133276,'3','pbversion0000000000001','approved','Tree Navigation','Tree Navigation','root/import/navigation/tree-navigation','3','7','12',NULL,0,1,0,0,0,3529,'\n\n\n',0,1,0,1285124163,'',0),('f2EktltCvwQpl_3-B1yR7g',1288748251,'3','pbversion0000000000001','approved','Asset Templates','Asset Templates','root/import/asset_templates','3','7','12',NULL,0,1,0,0,0,344,NULL,0,1,0,1288748251,NULL,0),('BMybD3cEnmXVk2wQ_qEsRQ',1263962529,'3','pbversion0000000000001','approved','Badge Builder (Default)','Badge Builder (Default)','root/import/ems/badge-builder-default','3','7','12',NULL,0,1,0,0,0,36631,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1285124160,'',0),('mRtqRuVikSe82BQsYBlD0A',1263962529,'3','pbversion0000000000001','approved','Bare Image','Bare Image','bare_image','3','7','12',NULL,0,1,0,0,0,558,NULL,0,1,0,1285124166,NULL,0),('aUDsJ-vB9RgP-AYvPOy8FQ',1263962529,'3','pbversion0000000000001','approved','Shop Account Layout','Shop Account Layout','root/import/account/shop/shop-account-layout','3','7','12',NULL,0,1,0,0,0,3337,'\n',0,1,0,1285124165,'',0),('CalendarEventEdit00001',1269401468,'3','pbversion0000000000001','approved','Default Calendar Event Edit','Default Calendar Event Edit','root/import/calendar-templates/default-calendar-event-edit','3','7','12',NULL,0,0,0,0,0,18084,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n',0,1,0,1285124160,'',0),('GRUNFctldUgop-qRLuo_DA',1269401469,'3','pbversion0000000000001','approved','Default Survey Edit','Default Survey Edit','root/import/survey/default-survey-edit','3','7','12',NULL,0,1,0,0,0,7101,NULL,0,1,0,1285124160,NULL,0),('t87D1138NhPHhA23-hozBA',1273032716,'3','pbversion0000000000001','approved','CrystalX','CrystalX','crystalx','3','7','3',NULL,0,1,0,0,0,310,NULL,0,1,0,1273032724,NULL,0),('QtBumey5ffc-xffRp1-7Aw',1273032716,'3','pbversion0000000000001','approved','img','img','crystalx/img','3','7','3',NULL,0,1,0,0,0,310,NULL,0,1,0,1273032724,NULL,0),('-0sK2rX1cwQt1ipUSqsiQQ',1273032716,'3','pbversion0000000000001','approved','bg.gif','bg.gif','crystalx/img/bg.gif','3','7','3',NULL,0,1,0,0,0,1440,NULL,0,1,0,1273032724,NULL,0),('hS_eOaVz9Qb5ixndK9EXAw',1273032716,'3','pbversion0000000000001','approved','header.jpg','header.jpg','crystalx/img/header.jpg','3','7','3',NULL,0,1,0,0,0,8038,NULL,0,1,0,1273032724,NULL,0),('k2p-Be8C98pf2cRq7E-JHg',1273032716,'3','pbversion0000000000001','approved','tab_link.gif','tab_link.gif','crystalx/img/tab_link.gif','3','7','3',NULL,0,1,0,0,0,507,NULL,0,1,0,1273032724,NULL,0),('aYG4fjbMPbC4LCuuMp4gGA',1273032716,'3','pbversion0000000000001','approved','tab_hover.gif','tab_hover.gif','crystalx/img/tab_hover.gif','3','7','3',NULL,0,1,0,0,0,538,NULL,0,1,0,1273032724,NULL,0),('F122Ey0NtVAw6Lfv1M6G_Q',1273032716,'3','pbversion0000000000001','approved','ico_archive.gif','ico_archive.gif','crystalx/img/ico_archive.gif','3','7','3',NULL,0,1,0,0,0,427,NULL,0,1,0,1273032724,NULL,0),('qmXHKrQ6EDLSOGkrEKRUDA',1273032716,'3','pbversion0000000000001','approved','bg_page_in.jpg','bg_page_in.jpg','crystalx/img/bg_page_in.jpg','3','7','3',NULL,0,1,0,0,0,3242,NULL,0,1,0,1273032724,NULL,0),('4qZgXjPPO4fwV879yu5XUg',1273032716,'3','pbversion0000000000001','approved','bg_page.JPG','bg_page.JPG','crystalx/img/bg_page.jpg','3','7','3',NULL,0,1,0,0,0,1229,NULL,0,1,0,1273032724,NULL,0),('mb-xeAugm5GJdvu-Wh0MtQ',1273032717,'3','pbversion0000000000001','approved','search_submit.gif','search_submit.gif','crystalx/img/search_submit.gif','3','7','3',NULL,0,1,0,0,0,2108,NULL,0,1,0,1273032724,NULL,0),('84Y9CwgzP6eNU7wZnk019Q',1273032717,'3','pbversion0000000000001','approved','ico_date.gif','ico_date.gif','crystalx/img/ico_date.gif','3','7','3',NULL,0,1,0,0,0,416,NULL,0,1,0,1273032724,NULL,0),('ikXTtJKZfHVxqw-47E4AQA',1273032717,'3','pbversion0000000000001','approved','ico_user.gif','ico_user.gif','crystalx/img/ico_user.gif','3','7','3',NULL,0,1,0,0,0,407,NULL,0,1,0,1273032724,NULL,0),('DhRWPTgzhvju_-TbMN3CwA',1273032717,'3','pbversion0000000000001','approved','ico_comments.gif','ico_comments.gif','crystalx/img/ico_comments.gif','3','7','3',NULL,0,1,0,0,0,427,NULL,0,1,0,1273032724,NULL,0),('6njI-pZz2bwsjWh-Q1_11g',1273032717,'3','pbversion0000000000001','approved','ico_list.gif','ico_list.gif','crystalx/img/ico_list2.gif','3','7','3',NULL,0,1,0,0,0,412,NULL,0,1,0,1273032724,NULL,0),('_Hz1Gnd3yEnJzVS7l7nJMQ',1273032717,'3','pbversion0000000000001','approved','content_all_bg.PNG','content_all_bg.PNG','crystalx/img/content_all_bg.png','3','7','3',NULL,0,1,0,0,0,8683,NULL,0,1,0,1273032724,NULL,0),('VOOrXK5dFnkGih7aTkuDWA',1273032717,'3','pbversion0000000000001','approved','search.PNG','search.PNG','crystalx/img/search.png','3','7','3',NULL,0,1,0,0,0,2190,NULL,0,1,0,1273032724,NULL,0),('ruf-QejOkUHDRtfgakHlbA',1273032717,'3','pbversion0000000000001','approved','col_title_bg_long.GIF','col_title_bg_long.GIF','crystalx/img/col_title_bg_long.gif','3','7','3',NULL,0,1,0,0,0,1265,NULL,0,1,0,1273032724,NULL,0),('FSHy5KjQjkt599PHS41seA',1273032717,'3','pbversion0000000000001','approved','footer.jpg','footer.jpg','crystalx/img/footer.jpg','3','7','3',NULL,0,1,0,0,0,4571,NULL,0,1,0,1273032724,NULL,0),('nuYYXAz4KNNxgfumfnpo_g',1273032718,'3','pbversion0000000000001','approved','ico_top.gif','ico_top.gif','crystalx/img/ico_top.gif','3','7','3',NULL,0,1,0,0,0,834,NULL,0,1,0,1273032724,NULL,0),('Mr7ljjoy6n4fZojpQWajKQ',1273032718,'3','pbversion0000000000001','approved','ico_links.gif','ico_links.gif','crystalx/img/ico_links.gif','3','7','3',NULL,0,1,0,0,0,419,NULL,0,1,0,1273032724,NULL,0),('ApkqpDOrJDxK3QrWBGSRIg',1273032718,'3','pbversion0000000000001','approved','ico_archive2.gif','ico_archive2.gif','crystalx/img/ico_archive2.gif','3','7','3',NULL,0,1,0,0,0,432,NULL,0,1,0,1273032724,NULL,0),('AzzTY0Lay1f_YGeQJFnQCA',1273032718,'3','pbversion0000000000001','approved','ico_list.gif','ico_list.gif','crystalx/img/ico_list.gif','3','7','3',NULL,0,1,0,0,0,411,NULL,0,1,0,1273032724,NULL,0),('OiJNwP1gAlcva8_yOtL4gA',1273032718,'3','pbversion0000000000001','approved','CrystalX_style','CrystalX_style','crystalx_style','3','7','3','by Ning from Pluton -- http://pluton.nl\n\nCrystalX gives your site a crystal-ish look and a strictly formal style. Feel free to download and apply it to your own site.\n\nOriginally designed by \"Nuvio Webdesign\" and collected by Open Source Web Design, converted to WebGUI theme by Ning.',0,1,0,0,0,3470,NULL,0,1,0,1285124161,NULL,0),('JOuCU4x5BJfVHfkfMkVQdQ',1273032718,'3','pbversion0000000000001','approved','crystalx.css','crystalx.css','crystalx/crystalx.css','3','7','3',NULL,0,1,0,0,0,14430,NULL,0,1,0,1285124168,NULL,0),('gaIOm5cr2TkT9Fk6QmZWug',1273032718,'3','pbversion0000000000001','approved','crystalX_navi','crystalX_navi','crystalx/crystalx_navi','3','7','3',NULL,0,1,0,0,0,7486,'\n\n\n\n',0,1,0,1285124166,'',0),('w0QifHLhsrzeOpFKl-DX-Q',1273032718,'3','pbversion0000000000001','approved','crystalx_navi.css','crystalx_navi.css','crystalx/crystalx_navi.css','3','7','3',NULL,0,1,0,0,0,10481,NULL,0,1,0,1285124169,NULL,0),('x_hiUi1XZloBvV47Obnu8Q',1273032718,'3','pbversion0000000000001','approved','crystalX_NavigationTrail','crystalX_NavigationTrail','crystalx/crystalx_navigationtrail','3','7','12',NULL,0,1,0,0,0,422,NULL,0,1,0,1273032724,NULL,0),('hpCk0B3vQzgc-QJhSol41w',1273032718,'3','pbversion0000000000001','approved','crystalX_navitrail','crystalX_navitrail','crystalx/crystalx_navitrail','3','7','12',NULL,0,1,0,0,0,1104,NULL,0,1,0,1285124166,NULL,0),('UUwEL6hLEPdrnkZnKRzFYQ',1273032718,'3','pbversion0000000000001','approved','Site Search','Site Search','crystalx/site-search','3','7','3',NULL,0,1,0,0,0,892,NULL,0,1,0,1273032724,NULL,0),('OfKbvK7CrfMnfc8WDoF4Rg',1273032718,'3','pbversion0000000000001','approved','crystalx_search','crystalx_search','crystalx/crystalx_search','3','7','3',NULL,0,1,0,0,0,2756,NULL,0,1,0,1315877143,NULL,0),('stevestyle000000000002',1273032718,'3','pbversion0000000000001','approved','Style 02','Style 02','style_02','3','7','12','by Steve from Plain Black http://plainblack.com\r\n\r\nThe second of the WebGUI 7 styles',0,0,0,0,0,5770,NULL,0,1,0,1285124167,NULL,0),('Q4uX_C557arTp6D_jwB1jQ',1273032720,'3','pbversion0000000000001','approved','Wiki','Wiki','root/import/wiki','3','12','12',NULL,0,0,0,0,0,312,NULL,0,1,0,1273032723,NULL,0),('WikiRCTmpl000000000001',1273032720,'3','pbversion0000000000001','approved','Default Recent Changes','Default Recent Changes','default-wiki-recent-changes','3','7','12',NULL,0,0,0,0,0,1657,NULL,0,1,0,1285124165,NULL,0),('WikiFrontTmpl000000001',1273032720,'3','pbversion0000000000001','approved','Default Wiki Front Page','Default Wiki Front Page','default-wiki-front-page','3','7','12',NULL,0,0,0,0,0,4434,NULL,0,1,0,1285124165,NULL,0),('WikiSearchTmpl00000001',1273032720,'3','pbversion0000000000001','approved','Default Wiki Search','Default Wiki Search','default-wiki-search','3','7','12',NULL,0,0,0,0,0,2450,'\n\n',0,1,0,1285124165,NULL,0),('WikiPHTmpl000000000001',1273032720,'3','pbversion0000000000001','approved','Default Page History','Default Page History','default-wiki-page-history','3','7','12',NULL,0,0,0,0,0,657,NULL,0,1,0,1285124165,NULL,0),('WikiPageTmpl0000000001',1273032720,'3','pbversion0000000000001','approved','Default Wiki Page','Default Wiki Page','default-wiki-page','3','7','12',NULL,0,0,0,0,0,6422,'\n\n\n\n\n\n\n\n',0,1,0,1285124165,'',0),('WikiPageEditTmpl000001',1273032720,'3','pbversion0000000000001','approved','Default Wiki Page Edit','Default Wiki Page Edit','default-wiki-page-edit','3','7','12',NULL,0,0,0,0,0,2572,NULL,0,1,0,1285124165,NULL,0),('WikiMPTmpl000000000001',1273032720,'3','pbversion0000000000001','approved','Default Most Popular','Default Most Popular','default-wiki-most-popular','3','7','12',NULL,0,0,0,0,0,1033,NULL,0,1,0,1285124165,NULL,0),('stevestyle000000000003',1273032720,'3','pbversion0000000000001','approved','Style 03','Style 03','style_03','3','7','12','by Steve from Plain Black http://plainblack.com\r\n\r\nThe last of the WebGUI 7 style templates.',0,0,0,0,0,3907,NULL,0,1,0,1285124167,NULL,0),('stevestyle000000000001',1273032722,'3','pbversion0000000000001','approved','Style 01','Style 01','style_01','3','7','12','by Steve from Plain Black http://plainblack.com\r\n\r\nThe first of the WebGUI 7 styles',0,0,0,0,0,3790,NULL,0,1,0,1285124167,NULL,0),('c8xrwVuu5QE0XtF9DiVzLw',1273032723,'3','pbversion0000000000001','approved','Default Inbox View Template','Default Inbox View Template','root/import/account/inbox/default-inbox-view-template','3','7','12',NULL,0,1,0,0,0,11070,'\n\n',0,1,0,1285124165,'',0),('WikiKeyword00000000001',1274238756,'3','pbversion0000000000001','approved',' Wiki Pages By Keyword (default)',' Wiki Pages By Keyword','wiki-master-by-keyword-template.tmpl','3','7','3',NULL,0,0,0,0,0,2818,NULL,0,1,0,1285124165,NULL,0),('ThingyTmpl000000000004',1277868920,'3','pbversion0000000000001','approved','Default Thingy Search Thing','Default Thingy Search Thing','templates/thingy-default-search-thing','3','7','12',NULL,0,0,0,0,0,9564,'\n\n\n\n\n',0,1,0,1285124164,'',0),('GNOAsX98vCsl0JRwfwL-gg',1277868921,'3','pbversion0000000000001','approved','Collaboration','Collaboration','root/import/collaboration','3','7','12',NULL,0,0,0,0,0,338,NULL,0,1,0,1277868927,NULL,0),('PBtmpl0000000000000066',1277868921,'3','pbversion0000000000001','approved','Default USS','Default USS','default_uss','3','7','12',NULL,0,1,0,0,0,4993,'\n\n\n',0,1,0,1285124162,'',0),('PBtmpl0000000000000080',1277868921,'3','pbversion0000000000001','approved','FAQ','FAQ','faqtemplate','3','7','12',NULL,0,1,0,0,0,3968,NULL,0,1,0,1285124162,NULL,0),('PBtmpl0000000000000097',1277868921,'3','pbversion0000000000001','approved','Traditional with Thumbnails','Traditional with Thumbnails','traditional_with_thumbnails','3','7','12',NULL,0,1,0,0,0,6674,'\n',0,1,0,1285124163,'',0),('PBtmpl0000000000000112',1277868921,'3','pbversion0000000000001','approved','Weblog','Weblog','weblog','3','7','12',NULL,0,1,0,0,0,5202,'',0,1,0,1285124163,'',0),('PBtmpl0000000000000121',1277868921,'3','pbversion0000000000001','approved','Photo Gallery','Photo Gallery','photo_gallery','3','7','12',NULL,0,1,0,0,0,3185,'\n\n',0,1,0,1285124163,'',0),('PBtmpl0000000000000067',1277868921,'3','pbversion0000000000001','approved','Default Submission','Default Submission','default_submission','3','7','12',NULL,0,1,0,0,0,22672,'\n',0,1,0,1285124162,'',0),('PBtmpl0000000000000026',1277868921,'3','pbversion0000000000001','approved','Default Forum','Default Forum','default_forum','3','7','12',NULL,0,1,0,0,0,7927,'\n\n\n',0,1,0,1285124161,'',0),('PBtmpl0000000000000128',1277868921,'3','pbversion0000000000001','approved','Classifieds','Classifieds','classifieds','3','7','12',NULL,0,1,0,0,0,3272,'\n\n',0,1,0,1285124163,'',0),('PBtmpl0000000000000079',1277868921,'3','pbversion0000000000001','approved','Topics','Topics','topics','3','7','12',NULL,0,1,0,0,0,4948,'\n',0,1,0,1285124162,'',0),('PBtmpl0000000000000083',1277868921,'3','pbversion0000000000001','approved','Link List','Link List','link_list','3','7','12',NULL,0,1,0,0,0,3716,NULL,0,1,0,1285124163,NULL,0),('PBtmpl0000000000000082',1277868921,'3','pbversion0000000000001','approved','Unordered List','Unordered List','unordered_list','3','7','12',NULL,0,1,0,0,0,4633,'\n',0,1,0,1285124162,'',0),('PBtmpl0000000000000133',1277868921,'3','pbversion0000000000001','approved','Guest Book','Guest Book','guest_book','3','7','12',NULL,0,1,0,0,0,3270,NULL,0,1,0,1285124163,NULL,0),('PBtmpl0000000000000029',1277868921,'3','pbversion0000000000001','approved','Default Post Form','Default Post Form','default_post_form','3','7','12',NULL,0,1,0,0,0,4119,'\n',0,1,0,1285124162,'',0),('PBtmpl0000000000000032',1277868921,'3','pbversion0000000000001','approved','Default Thread','Default Thread','default_thread','3','7','12',NULL,0,1,0,0,0,11649,'\n',0,1,0,1285124162,'',0),('PBtmpl0000000000000031',1277868921,'3','pbversion0000000000001','approved','Default Forum Search','Default Forum Search','default_forum_search','3','7','12',NULL,0,1,0,0,0,3848,'',0,1,0,1285124162,'',0),('PBtmpl0000000000000068',1277868921,'3','pbversion0000000000001','approved','Default Submission Form','Default Submission Form','default_submission_form','3','7','12',NULL,0,1,0,0,0,5051,'\n',0,1,0,1285124162,'',0),('PBtmpl0000000000000099',1277868921,'3','pbversion0000000000001','approved','FAQ Submission Form','FAQ Submission Form','faq_submission_form','3','7','12',NULL,0,1,0,0,0,4330,'\n',0,1,0,1285124163,'',0),('PBtmpl0000000000000114',1277868922,'3','pbversion0000000000001','approved','Link List Submission Form','Link List Submission Form','link_list_submission_form','3','7','12',NULL,0,1,0,0,0,5502,'\n',0,1,0,1285124163,'',0),('PBtmpl0000000000000098',1277868922,'3','pbversion0000000000001','approved','Job','Job','job','3','7','12',NULL,0,1,0,0,0,20225,'',0,1,0,1285124163,'',0),('PBtmpl0000000000000122',1277868922,'3','pbversion0000000000001','approved','Job Submission Form','Job Submission Form','job_submission_form','3','7','12',NULL,0,1,0,0,0,6134,'\n',0,1,0,1285124163,'',0),('PBtmpl0000000000000081',1277868922,'3','pbversion0000000000001','approved','Q and A','Q and A','q_and_a','3','7','12',NULL,0,1,0,0,0,4546,'\n',0,1,0,1285124162,'',0),('PBtmpl0000000000000101',1277868922,'3','pbversion0000000000001','approved','Ordered List','Ordered List','ordered_list','3','7','12',NULL,0,1,0,0,0,3771,NULL,0,1,0,1285124163,NULL,0),('PBtmpl0000000000000113',1277868922,'3','pbversion0000000000001','approved','Link','Link','link','3','7','12',NULL,0,1,0,0,0,19099,'',0,1,0,1285124163,'',0),('PBtmpl0000000000000208',1277868922,'3','pbversion0000000000001','approved','Request Tracker','Request Tracker','request-tracker-template','3','7','12',NULL,0,0,0,0,0,6800,'\n\n\n\n\n',0,1,0,1285124164,'',0),('PBtmpl0000000000000209',1277868922,'3','pbversion0000000000001','approved','Request Tracker Thread','Request Tracker Thread','request-tracker-post-template','3','7','12',NULL,0,0,0,0,0,22451,'\n',0,1,0,1285124164,'',0),('PBtmpl0000000000000210',1277868922,'3','pbversion0000000000001','approved','Request Tracker Post Form','Request Tracker Post Form','request-tracker-template2','3','7','12',NULL,0,0,0,0,0,5928,'\n\n\n',0,1,0,1285124164,'',0),('default_post_received1',1277868922,'3','pbversion0000000000001','approved','Default Post Received','Default Post Received','default_post_received','3','7','4',NULL,0,0,0,0,0,541,NULL,0,1,0,1285124166,NULL,0),('default_CS_unsubscribe',1277868922,'3','pbversion0000000000001','approved','Default Collaboration System Unsubscribe','Default Collaboration System Unsubscribe','collaboration_unsubscribe','3','7','4',NULL,0,0,0,0,0,1092,NULL,0,1,0,1285124166,NULL,0),('mfHGkp6t9gdclmzN33OEnw',1277868927,'3','pbversion0000000000001','approved','Default Twitter Choose Username','Default Twitter Choose Username','root/import/auth/twitter/chooseusername/default-twitter-choose-username','3','7','12',NULL,0,1,0,0,0,1074,NULL,0,1,0,1285124167,NULL,0),('CalendarMonth000000001',1279073449,'3','pbversion0000000000001','approved','Default Calendar Month','Default Calendar Month','root/import/calendar-templates/default-calendar-month','3','7','12',NULL,0,0,0,0,0,16187,'\n\n\n\n\n',0,1,0,1285124160,'',0),('8tqyQx-LwYUHIWOlKPjJrA',1279073449,'3','pbversion0000000000001','approved','EMS Event Submission Template','EMS Event Submission Template','root/import/ems/ems-event-submission','3','7','12',NULL,0,1,0,0,0,5296,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n',0,1,0,1285124159,'',0),('DoVNijm6lMDE0cYrtvEbDQ',1279073449,'3','pbversion0000000000001','approved','EMS Event Submission Main Template','EMS Event Submission Main Template','root/import/ems/ems-event-submission-main','3','7','12',NULL,0,1,0,0,0,8281,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n',0,1,0,1285124160,'',0),('6uQEULvXFgCYlRWnYzZsuA',1279073450,'3','pbversion0000000000001','approved','Default Inbox Send Message Template','Default Inbox Send Message Template','root/import/account/inbox/default-inbox-send-message-template','3','7','12',NULL,0,1,0,0,0,9065,'\n\n\n\n\n',0,1,0,1285124159,'',0),('ktSvKU8riGimhcsxXwqvPQ',1279073450,'3','pbversion0000000000001','approved','EMS Event Submission Queue','EMS Event Submission Queue','root/import/ems/ems-event-submission-queue','3','7','12',NULL,0,1,0,0,0,7457,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n',0,1,0,1285124166,'',0),('4Yfz9hqBqM8OYMGuQK8oLw',1271352537,'1','pbversion0000000000001','approved','Get Features','Get Features','yns/features','3','7','4',NULL,0,1,0,0,0,772,NULL,0,1,0,1301974027,NULL,0),('Wl8WZ43g2rK5AYr9o4zY7w',1271445539,'1','pbversion0000000000001','approved','Get Style','Get Style','yns/style','3','7','4',NULL,0,1,0,0,0,700,NULL,0,1,0,1301974027,NULL,0),('LBuiKzg2mWwmOPS9AgV3bg',1271348789,'1','pbversion0000000000001','approved','Get Translated','Get Translated','yns/translated','3','7','4',NULL,0,1,0,0,0,728,NULL,0,1,0,1301974027,NULL,0),('jTNggl7AoVSUc_ZzrvuCmw',1271348789,'1','pbversion0000000000001','approved','Get Promoted','Get Promoted','yns/promotion','3','7','4',NULL,0,1,0,0,0,721,NULL,0,1,0,1301974027,NULL,0),('mTOiwwk3q4k9g5-XykXhPA',1271349647,'1','pbversion0000000000001','approved','Documentation','Documentation','documentation','3','7','3',NULL,0,0,0,0,0,561,NULL,0,1,0,1301974027,NULL,0),('2TqQc4OISddWCZmRY1_m8A',1271357565,'1','pbversion0000000000001','approved','Join Us','Join Us','join_us','3','7','3',NULL,0,0,0,0,0,577,NULL,0,1,0,1301974028,NULL,0),('k2Qj03FrAOXYra8kDJYYXw',1271357513,'1','pbversion0000000000001','approved','IRC (Internet Relay Chat)','IRC','join_us/irc','3','7','3',NULL,0,1,0,0,0,1197,NULL,0,1,0,1301974028,NULL,0),('ksSfkZdsr0uC62NwIk6hFQ',1271356973,'1','pbversion0000000000001','approved','WebGUI Users Conference','WUC','join_us/wuc','3','7','3',NULL,0,1,0,0,0,861,NULL,0,1,0,1301974028,NULL,0),('nWxS5jnA3o3DgPEwBeR7yQ',1271357239,'1','pbversion0000000000001','approved','The Forums','forums','join_us/forums','3','7','3',NULL,0,1,0,0,0,1531,NULL,0,1,0,1301974028,NULL,0),('x3OFY6OJh_qsXkZfPwug4A',1271348790,'1','pbversion0000000000001','approved','Site Map','Site Map','site_map','3','7','3',NULL,0,0,0,0,0,349,NULL,0,1,0,1301974028,NULL,0),('pJd5TLAjfWMVXD6sCRLwUg',1271348790,'1','pbversion0000000000001','approved','Site Map','Site Map','site_map/site_map','3','7','3',NULL,0,1,0,0,0,364,NULL,0,1,0,1301974028,NULL,0),('OhdaFLE7sXOzo_SIP2ZUgA',1271445348,'1','pbversion0000000000001','approved','Welcome','Welcome','home/welcome','3','7','4',NULL,0,1,0,0,0,2190,NULL,0,1,0,1301974028,NULL,0),('IWFxZDyGhQ3-SLZhELa3qw',1277737686,'1','pbversion0000000000001','approved','Benefits','Benefits','home/key-benefits','3','7','4',NULL,0,1,0,0,0,1835,NULL,0,1,0,1301974028,NULL,0),('LdiozcIUciWuvt3Z-na5Ww',1281501162,'3','pbversion0000000000001','approved','Matrix','Matrix','root/import/matrix','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1281501164,NULL,0),('matrixtmpl000000000002',1281501162,'3','pbversion0000000000001','approved','Matrix Default Compare','Matrix Default Compare','matrix-default-compare-template','3','7','12',NULL,0,0,0,0,0,20669,'\n\n\n\n\n\n\n\n\n\n\n',0,1,0,1285124167,'',0),('matrixtmpl000000000001',1281501162,'3','pbversion0000000000001','approved','Matrix Default View','Matrix Default View','matrix-default-view-template','3','7','12',NULL,0,0,0,0,0,22048,'\n\n\n\n\n\n\n',0,1,0,1285124166,'',0),('matrixtmpl000000000003',1281501163,'3','pbversion0000000000001','approved','Matrix Default Detailed Listing','Matrix Default Detailed Listing','matrix-default-detailed-listing','3','7','12',NULL,0,0,0,0,0,15360,'\n\n\n\n\n\n\n\n\n\n\n',0,1,0,1285124167,'',0),('matrixtmpl000000000004',1281501163,'3','pbversion0000000000001','approved','Matrix Default Edit Listing','Matrix Default Edit Listing','default-matrix-edit-listing-template','3','7','12',NULL,0,0,0,0,0,525,NULL,0,1,0,1285124167,NULL,0),('matrixtmpl000000000005',1281501163,'3','pbversion0000000000001','approved','Matrix Default Search','Matrix Default Search','matrix-search-template','3','7','12',NULL,0,0,0,0,0,10307,'\n\n\n\n\n\n\n\n\n\n',0,1,0,1285124167,'',0),('hkj6WeChxFyqfP85UlRP8w',1281501163,'3','pbversion0000000000001','approved','matrix.css','matrix.css','new-matrix/matrix.css','3','7','12',NULL,0,1,0,0,0,16408,NULL,0,1,0,1285124169,NULL,0),('kJf77eCr9GAMiEzWrzsBTA',1281501163,'3','pbversion0000000000001','approved','matrix-ie.css','matrix-ie.css','new-matrix/matrix-ie.css','3','7','12',NULL,0,1,0,0,0,764,NULL,0,1,0,1285124169,NULL,0),('4LQT4-bGW4FkiEQLSY5gvQ',1281501163,'3','pbversion0000000000001','approved','show-hide.js','show-hide.js','new-matrix/show-hide.js','3','7','12',NULL,0,1,0,0,0,933,NULL,0,1,0,1285124168,NULL,0),('alraubvBu-YJJ614jAHD5w',1281501163,'3','pbversion0000000000001','approved','matrix-nav-tmpl','matrix-nav-tmpl','new-matrix/matrix-nav-tmpl','3','7','12',NULL,0,1,0,0,0,711,NULL,0,1,0,1285124165,NULL,0),('Vch1Ww7G_JpBhOhXX07RDg',1281501163,'3','pbversion0000000000001','approved','matrx-nav','matrix-nav','new-matrix/matrix-nav','3','7','12',NULL,0,1,0,0,0,375,NULL,0,1,0,1281501164,NULL,0),('wrq7hMxb1ewQqZ46xmd8Gg',1281501163,'3','pbversion0000000000001','approved','equal-cols.js','equal-cols.js','matrix/equal-cols.js','3','7','12',NULL,0,1,0,0,0,796,NULL,0,1,0,1285124169,NULL,0),('matrixtmpl000000000007',1281501163,'3','pbversion0000000000001','approved','Matrix Default Screenshots Config','Matrix Default Screenshots Config','matrix-default-screenshots-config','3','7','12',NULL,0,0,0,0,0,4099,NULL,0,1,0,1285124167,NULL,0),('matrixtmpl000000000006',1281501163,'3','pbversion0000000000001','approved','Matrix Default Screenshots','Matrix Default Screenshots','matrix-default-screenshots','3','7','12',NULL,0,0,0,0,0,2952,NULL,0,1,0,1285124167,NULL,0),('N716tpSna0iIQTKxS4gTWA',1281501163,'3','pbversion0000000000001','approved','Default Account Layout','Default Account Layout','root/import/account/default-account-layout2','3','7','12',NULL,0,1,0,0,0,1923,'\r\n',0,1,0,1285124161,'',0),('AssetReportFolder00001',1281501163,'3','pbversion0000000000001','approved','Asset Report','Asset Report','asset_report','3','3','4',NULL,0,0,0,0,0,322,NULL,0,1,0,1281501164,NULL,0),('N7uMnnicbyTEulcuRi1sSg',1283900195,'3','pbversion0000000000001','approved','PDFs','PDFs','media/pdfs','3','7','4',NULL,0,1,0,0,0,304,NULL,0,1,0,1283921709,NULL,0),('bCGr7FRtZt-XYlBVUEJBjw',1278013724,'3','pbversion0000000000001','approved','Getting_Started_doc.pdf','Getting_Started_doc.pdf','media/pdfs/getting_started_doc.pdf','3','7','4',NULL,0,1,0,0,0,1188407,NULL,0,1,0,1283921709,NULL,0),('_XfvgNH__bY1ykMiKYSobQ',1281501163,'3','pbversion0000000000001','approved','account.css','account.css','root/import/account/account.css','3','7','12',NULL,0,1,0,0,0,45634,NULL,0,1,0,1285124169,NULL,0),('limMkk80fMB3fqNZVf162w',1281501163,'3','pbversion0000000000001','approved','Default Asset Subscription','Default Asset Subscription','root/import/default-asset-subscription','3','7','3',NULL,0,1,0,0,0,550,NULL,0,1,0,1285124166,NULL,0),('l0guT3vTR3B8cL6vtP-g3A',1285124369,'1','pbversion0000000000001','approved','Contribute','contribute','contribute','3','7','3',NULL,0,1,0,0,0,3239,NULL,1,1,0,1285124369,NULL,0),('sJtcUCfn0CVbKdb4QM61Yw',1283921584,'3','pbversion0000000000001','approved','Asset Report Default Template','Asset Report Default Template','asset-report/asset-report-default-template','3','3','4',NULL,0,1,0,0,0,2218,NULL,0,1,0,1285124167,NULL,0),('A16v-YjWAShXWvSACsraeg',1285124154,'3','pbversion0000000000001','approved','StoryTopic','StoryTopic','root/import/storymanager/storytopic','3','7','4',NULL,0,0,0,0,0,2870,'',0,1,0,1285124171,'',0),('gI_TxK-5S4DNuv42wpImmw',1285124155,'3','pbversion0000000000001','approved','Gallery Templates','Gallery Templates','root/import/gallery-templates','3','7','3',NULL,0,0,0,0,0,362,NULL,0,1,0,1285124169,NULL,0),('jME5BEDYVDlBZ8jIQA9-jQ',1285124155,'3','pbversion0000000000001','approved','Default Gallery Search','Default Gallery Search','root/import/gallery-templates/default-gallery-search','3','7','3',NULL,0,1,0,0,0,11460,'\r\n \r\n',0,1,0,1285124169,'',0),('azCqD0IjdQSlM3ar29k5Sg',1285124155,'3','pbversion0000000000001','approved','Default Gallery List Albums View','Default Gallery List Albums View','root/import/gallery-templates/default-gallery-list-albums-view','3','7','3',NULL,0,1,0,0,0,5927,' \r\n \r\n ',0,1,0,1285124169,'',0),('05FpjceLYhq4csF1Kww1KQ',1285124155,'3','pbversion0000000000001','approved','Default Gallery View Album','Default Gallery View Album','root/import/gallery-templates/default-gallery-view-album','3','7','3',NULL,0,1,0,0,0,7861,' \n \n ',0,1,0,1285124169,'',0),('q5O62aH4pjUXsrQR3Pq4lw',1285124155,'3','pbversion0000000000001','approved','Default Gallery View Album Thumbnails','Default Gallery View Album Thumbnails','root/import/gallery-templates/default-gallery-view-album-thumbnails','3','7','3',NULL,0,1,0,0,0,7651,'\r\n\r\n\r\n\r\n\r\n',0,1,0,1285124169,'',0),('KAMdiUdJykjN02CPHpyZOw',1285124155,'3','pbversion0000000000001','approved','Default Gallery View Album Slideshow','Default Gallery View Album Slideshow','root/import/gallery-templates/default-gallery-view-album-slideshow','3','7','3',NULL,0,1,0,0,0,7941,'\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n',0,1,0,1285124169,'',0),('OkphOEdaSGTXnFGhK4GT5A',1285124155,'3','pbversion0000000000001','approved','Default Gallery List Files For User','Default Gallery List Files For User','root/import/gallery-templates/default-gallery-list-files-for-user','3','7','3',NULL,0,1,0,0,0,7790,'\n \n',0,1,0,1285124169,'',0),('TEId5V-jEvUULsZA0wuRuA',1285124155,'3','pbversion0000000000001','approved','Default Gallery View Photo','Default Gallery View Photo','root/import/gallery-templates/default-gallery-view-photo','3','7','3',NULL,0,1,0,0,0,15566,'\n\n\n\n',0,1,0,1285124169,'',0),('6X-7Twabn5KKO_AbgK3PEw',1285124155,'3','pbversion0000000000001','approved','Default Gallery Edit Album','Default Gallery Edit Album','root/import/gallery-templates/default-gallery-edit-album','3','7','3',NULL,0,1,0,0,0,8244,'\n\n\n\n\n\n\n\n\n',0,1,0,1285124169,'',0),('7JCTAiu1U_bT9ldr655Blw',1285124155,'3','pbversion0000000000001','approved','Default Gallery Edit Photo','Default Gallery Edit Photo','root/import/gallery-templates/default-gallery-edit-photo','3','7','3',NULL,0,1,0,0,0,7438,'\n\n\n\n',0,1,0,1285124169,'',0),('0X4Q3tBWUb_thsVbsYz9xQ',1285124155,'3','pbversion0000000000001','approved','Default Gallery Add Archive','Default Gallery Add Archive','root/import/gallery-templates/default-gallery-add-archive','3','7','3',NULL,0,1,0,0,0,3773,' \r\n\r\n ',0,1,0,1285124169,'',0),('m3IbBavqzuKDd2PGGhKPlA',1285124155,'3','pbversion0000000000001','approved','Default Gallery Make Shortcut','Default Gallery Make Shortcut','root/import/gallery-templates/default-gallery-make-shortcut','3','7','3',NULL,0,1,0,0,0,5111,'\n\n\n\n',0,1,0,1285124169,'',0),('UTNFeV7B_aSCRmmaFCq4Vw',1285124155,'3','pbversion0000000000001','approved','Default Gallery Delete Album','Default Gallery Delete Album','root/import/gallery-templates/default-gallery-delete-album','3','7','3',NULL,0,1,0,0,0,4712,'\n \n\n\n',0,1,0,1285124169,'',0),('zcX-wIUct0S_np14xxOA-A',1285124155,'3','pbversion0000000000001','approved','Default Gallery Delete File','Default Gallery Delete File','root/import/gallery-templates/default-gallery-delete-file','3','7','3',NULL,0,1,0,0,0,4728,'\n \n\n\n',0,1,0,1285124169,'',0),('MBZK_LPVzqhb4TV4mMRTJg',1285124155,'3','pbversion0000000000001','approved','admin_ie7.css','admin_ie7.css','root/import/gallery-templates/admin_ie7.css','3','7','3',NULL,0,1,0,0,0,380,NULL,0,1,0,1285124169,NULL,0),('_hELmIJfgbAyXFNqPyApxQ',1285124155,'3','pbversion0000000000001','approved','admin.css','admin.css','root/import/gallery-templates/admin.css','3','7','3',NULL,0,1,0,0,0,3957,NULL,0,1,0,1285124169,NULL,0),('kaPRSaf8UKiskiGEgJgLAw',1285124155,'3','pbversion0000000000001','approved','images','images','root/import/gallery-templates/images','3','7','3',NULL,0,0,0,0,0,340,NULL,0,1,0,1285124169,NULL,0),('bANo8aiAPA7aY_oQZKxIWw',1285124155,'3','pbversion0000000000001','approved','rss.gif','rss.gif','root/import/gallery-templates/images/rss.gif','3','7','3',NULL,0,1,0,0,0,1389,NULL,0,1,0,1285124169,NULL,0),('2ci_v2d4x4uvyjTRlC49OA',1285124156,'3','pbversion0000000000001','approved','moveDown.gif','moveDown.gif','root/import/gallery-templates/images/movedown.gif','3','7','3',NULL,0,1,0,0,0,784,NULL,0,1,0,1285124169,NULL,0),('O-EsSzKgAk1KolFT-x_KsA',1285124156,'3','pbversion0000000000001','approved','moveUp.gif','moveUp.gif','root/import/gallery-templates/images/moveup.gif','3','7','3',NULL,0,1,0,0,0,772,NULL,0,1,0,1285124170,NULL,0),('fdd8tGExyVwHyrB8RBbKXg',1285124156,'3','pbversion0000000000001','approved','next.gif','next.gif','root/import/gallery-templates/images/next.gif','3','7','3',NULL,0,1,0,0,0,1676,NULL,0,1,0,1285124170,NULL,0),('BpisgHl4ZDcSECJp6oib1w',1285124156,'3','pbversion0000000000001','approved','play.gif','play.gif','root/import/gallery-templates/images/play.gif','3','7','3',NULL,0,1,0,0,0,2113,NULL,0,1,0,1285124170,NULL,0),('zshreRgPAXtnF0DtVbQ1Yg',1285124156,'3','pbversion0000000000001','approved','previous.gif','previous.gif','root/import/gallery-templates/images/previous.gif','3','7','3',NULL,0,1,0,0,0,1682,NULL,0,1,0,1285124170,NULL,0),('POVcY79vIqAHR8OfGt36aw',1285124156,'3','pbversion0000000000001','approved','pagination_button.jpg','pagination_button.jpg','root/import/gallery-templates/images/pagination_button.jpg','3','7','12',NULL,0,1,0,0,0,1050,NULL,0,0,0,1285124170,NULL,0),('hIB-z34r8Xl-vYVYCkKr-w',1285124156,'3','pbversion0000000000001','approved','bar-btn-r.jpg','bar-btn-r.jpg','root/import/gallery-templates/images/bar-btn-r.jpg','3','7','12',NULL,0,1,0,0,0,830,NULL,0,0,0,1285124170,NULL,0),('-mPUoFlYcjqjPUPRLAlxNQ',1285124156,'3','pbversion0000000000001','approved','search-field-r.jpg','search-field-r.jpg','root/import/gallery-templates/images/search-field-r.jpg','3','7','12',NULL,0,1,0,0,0,848,NULL,0,0,0,1285124170,NULL,0),('MDpUOR-N8KMyt1J7Hh_h4w',1285124156,'3','pbversion0000000000001','approved','bar-btn.jpg','bar-btn.jpg','root/import/gallery-templates/images/bar-btn.jpg','3','7','12',NULL,0,1,0,0,0,708,NULL,0,0,0,1285124170,NULL,0),('YfXKByTwDZVituMc4h13Dg',1285124156,'3','pbversion0000000000001','approved','pagination_bg.jpg','pagination_bg.jpg','root/import/gallery-templates/images/pagination_bg.jpg','3','7','12',NULL,0,1,0,0,0,1131,NULL,0,0,0,1285124170,NULL,0),('esko_HSU0Gh-uJZ1h3xRmQ',1285124156,'3','pbversion0000000000001','approved','search-field-l.jpg','search-field-l.jpg','root/import/gallery-templates/images/search-field-l.jpg','3','7','12',NULL,0,1,0,0,0,874,NULL,0,0,0,1285124170,NULL,0),('oSqpGswzpBG_ErdfYwIO8A',1285124156,'3','pbversion0000000000001','approved','top_bg.jpg','top_bg.jpg','root/import/gallery-templates/images/top_bg.jpg','3','7','12',NULL,0,1,0,0,0,692,NULL,0,0,0,1285124170,NULL,0),('MXJklShZvLLB_DSnZQmXrQ',1285124156,'3','pbversion0000000000001','approved','title_bg.jpg','title_bg.jpg','root/import/gallery-templates/images/title_bg.jpg','3','7','12',NULL,0,1,0,0,0,1658,NULL,0,0,0,1285124170,NULL,0),('BthxD5oJ0idmsyI3ioA2FA',1285124156,'3','pbversion0000000000001','approved','bar-btn-l.jpg','bar-btn-l.jpg','root/import/gallery-templates/images/bar-btn-l.jpg','3','7','12',NULL,0,1,0,0,0,845,NULL,0,0,0,1285124170,NULL,0),('aZ-1HYQamkRHYXvzAra8WQ',1285124156,'3','pbversion0000000000001','approved','search-field.jpg','search-field.jpg','root/import/gallery-templates/images/search-field.jpg','3','7','12',NULL,0,1,0,0,0,750,NULL,0,0,0,1285124170,NULL,0),('eRkb94OYcS5AdcrrerOP5Q',1285124157,'3','pbversion0000000000001','approved','rss.gif','rss.gif','root/import/gallery-templates/images/rss2.gif','3','7','12',NULL,0,1,0,0,0,1391,NULL,0,0,0,1285124170,NULL,0),('TbnkjAJQEASORXIpYqDkcA',1285124157,'3','pbversion0000000000001','approved','blank-image.jpg','blank-image.jpg','root/import/gallery-templates/images/blank-image.jpg','3','7','12',NULL,0,1,0,0,0,3084,NULL,0,0,0,1285124170,NULL,0),('er-3faBjY-hhlDcc5aKqdQ',1285124157,'3','pbversion0000000000001','approved','top_bg.jpg','top_bg.jpg','root/import/gallery-templates/images/top_bg2.jpg','3','7','12',NULL,0,1,0,0,0,693,NULL,0,0,0,1285124170,NULL,0),('8bFsu2FJUqHRUiHcozcVFw',1285124157,'3','pbversion0000000000001','approved','sub-btn-l.jpg','sub-btn-l.jpg','root/import/gallery-templates/images/sub-btn-l.jpg','3','7','12',NULL,0,1,0,0,0,844,NULL,0,0,0,1285124170,NULL,0),('34Aayx5eA320D8VfhdfDBw',1285124157,'3','pbversion0000000000001','approved','sub-btn-r.jpg','sub-btn-r.jpg','root/import/gallery-templates/images/sub-btn-r.jpg','3','7','12',NULL,0,1,0,0,0,824,NULL,0,0,0,1285124170,NULL,0),('TlhKOVmWblZOsAdqmhEpeg',1285124157,'3','pbversion0000000000001','approved','sub-btn.jpg','sub-btn.jpg','root/import/gallery-templates/images/sub-btn.jpg','3','7','12',NULL,0,1,0,0,0,702,NULL,0,0,0,1285124170,NULL,0),('Nx0ypjO3cN6QdZUBUEE0lA',1285124157,'3','pbversion0000000000001','approved','pic-title-bg.jpg','pic-title-bg.jpg','root/import/gallery-templates/images/pic-title-bg.jpg','3','7','12',NULL,0,1,0,0,0,865,NULL,0,0,0,1285124170,NULL,0),('CmFZLN7iPS7XXvUEsxKPKA',1285124157,'3','pbversion0000000000001','approved','row-2.jpg','row-2.jpg','root/import/gallery-templates/images/row-2.jpg','3','7','12',NULL,0,1,0,0,0,806,NULL,0,0,0,1285124170,NULL,0),('v_XBgwwZqgW1D5s4y05qfg',1285124157,'3','pbversion0000000000001','approved','addtl-info.gif','addtl-info.gif','root/import/gallery-templates/images/addtl-info.gif','3','7','12',NULL,0,1,0,0,0,914,NULL,0,0,0,1285124170,NULL,0),('4TdAkKoQbSCvI7QWcW889A',1285124157,'3','pbversion0000000000001','approved','row-1.jpg','row-1.jpg','root/import/gallery-templates/images/row-1.jpg','3','7','12',NULL,0,1,0,0,0,791,NULL,0,0,0,1285124170,NULL,0),('SAgK6eDPCG1cgkJ59WapHQ',1285124157,'3','pbversion0000000000001','approved','prev-btn.gif','prev-btn.gif','root/import/gallery-templates/images/prev-btn.gif','3','7','12',NULL,0,1,0,0,0,2015,NULL,0,0,0,1285124170,NULL,0),('XJYLuvGy9ubF7JNKyINtpA',1285124157,'3','pbversion0000000000001','approved','play-btn.gif','play-btn.gif','root/import/gallery-templates/images/play-btn.gif','3','7','12',NULL,0,1,0,0,0,2543,NULL,0,0,0,1285124170,NULL,0),('RWj7hyv2SpZuXxwj1Wocug',1285124157,'3','pbversion0000000000001','approved','next-btn.gif','next-btn.gif','root/import/gallery-templates/images/next-btn.gif','3','7','12',NULL,0,1,0,0,0,2045,NULL,0,0,0,1285124170,NULL,0),('aq8QElnlm3YufAoxRz9Pcg',1285124158,'3','pbversion0000000000001','approved','data-bg.jpg','data-bg.jpg','root/import/gallery-templates/images/data-bg.jpg','3','7','12',NULL,0,1,0,0,0,821,NULL,0,0,0,1285124170,NULL,0),('i6-BofrJJYozovlzFBByXg',1285124158,'3','pbversion0000000000001','approved','first-photo-button.png','first-photo-button.png','root/import/gallery-templates/images/first-photo-button.png','3','7','3',NULL,0,1,0,0,0,1069,NULL,0,1,0,1285124170,NULL,0),('fU_OZCmtdFNJ8a6bMve8ng',1285124158,'3','pbversion0000000000001','approved','previous-photo-button.png','previous-photo-button.png','root/import/gallery-templates/images/previous-photo-button.png','3','7','3',NULL,0,1,0,0,0,943,NULL,0,1,0,1285124170,NULL,0),('YXCtusAxb4vzZ5sTnUA5DA',1285124158,'3','pbversion0000000000001','approved','next-photo-button.png','next-photo-button.png','root/import/gallery-templates/images/next-photo-button.png','3','7','3',NULL,0,1,0,0,0,955,NULL,0,1,0,1285124170,NULL,0),('k_xuE82wwp8gFVl9aaaG8g',1285124158,'3','pbversion0000000000001','approved','last-photo-button.png','last-photo-button.png','root/import/gallery-templates/images/last-photo-button.png','3','7','3',NULL,0,1,0,0,0,1072,NULL,0,1,0,1285124170,NULL,0),('NPM_WItpM5IzLWBhWjYfCA',1285124158,'3','pbversion0000000000001','approved','photo-navigation-spacer.png','photo-navigation-spacer.png','root/import/gallery-templates/images/photo-navigation-spacer.png','3','7','3',NULL,0,1,0,0,0,569,NULL,0,1,0,1285124170,NULL,0),('mM3bjP_iG9sv5nQb4S17tQ',1285124158,'3','pbversion0000000000001','approved','Default Gallery View Album RSS','Default Gallery View Album RSS','root/import/gallery-templates/default-gallery-album-rss','3','7','3',NULL,0,1,0,0,0,1259,NULL,0,1,0,1285124170,NULL,0),('ilu5BrM-VGaOsec9Lm7M6Q',1285124158,'3','pbversion0000000000001','approved','Default Gallery List Albums RSS','Default Gallery List Albums RSS','root/import/gallery-templates/default-gallery-list-albums-rss','3','7','3',NULL,0,1,0,0,0,1268,NULL,0,1,0,1285124170,NULL,0),('-ANLpoTEP-n4POAdRxCzRw',1285124158,'3','pbversion0000000000001','approved','Default Gallery List Files For User RSS','Default Gallery List Files For User RSS','root/import/gallery-templates/default-gallery-list-files-for-user-rss','3','7','3',NULL,0,1,0,0,0,1300,NULL,0,1,0,1285124170,NULL,0),('OxJWQgnGsgyGohP2L3zJPQ',1285124158,'3','pbversion0000000000001','approved','Default Gallery Edit Comment','Default Gallery Edit Comment','root/import/gallery-templates/default-gallery-edit-comment','3','7','3',NULL,0,1,0,0,0,5493,'',0,1,0,1285124170,'',0),('7fE8md51vTCcuJFOvxNaGA',1285124158,'3','pbversion0000000000001','approved','thumbnails.js','thumbnails.js','root/import/gallery-templates/thumbnails.js','3','7','3',NULL,0,1,0,0,0,5848,NULL,0,1,0,1285124170,NULL,0),('1oGhfj00KkCzP1ez01AfKA',1285124158,'3','pbversion0000000000001','approved','slideshow.js','slideshow.js','root/import/gallery-templates/slideshow.js','3','7','3',NULL,0,1,0,0,0,11975,NULL,0,1,0,1285124170,NULL,0),('3qiVYhNTXMVC5hfsumVHgg',1285124158,'3','pbversion0000000000001','approved','browserdetect.js','browserdetect.js','root/import/gallery-templates/browserdetect.js','3','7','3',NULL,0,1,0,0,0,4375,NULL,0,1,0,1285124170,NULL,0),('THQhn1C-ooj-TLlEP7aIJQ',1285124158,'3','pbversion0000000000001','approved','gallery-ie.css','gallery-ie.css','root/import/gallery-templates/gallery-ie.css','3','7','3',NULL,0,1,0,0,0,626,NULL,0,1,0,1285124170,NULL,0),('qxd0WpRGqDPWP8WBicYvEA',1285124158,'3','pbversion0000000000001','approved','dragdropsorting.js','dragdropsorting.js','root/import/gallery-templates/dragdropsorting.js','3','7','12',NULL,0,1,0,0,0,9518,NULL,0,1,0,1285124171,NULL,0),('RrV4aAPnn4dM0ZcU3OXnlw',1286336607,'3','pbversion0000000000001','approved','style','style','root/import/style','3','7','12',NULL,0,0,0,0,0,314,NULL,0,1,0,1286336607,NULL,0),('PBtmpl0000000000000111',1286336607,'3','pbversion0000000000001','approved','Make Page Printable','Make Page Printable','make_page_printable','3','7','12',NULL,0,1,0,0,0,1791,NULL,0,1,0,1286336607,NULL,0),('A3T7jpTBKLYws1h5mJ0t8A',1286336607,'3','pbversion0000000000001','approved','makepageprintable.css','makepageprintable.css','makepageprintable.css','3','7','12',NULL,0,1,0,0,0,6259,NULL,0,1,0,1286336607,NULL,0),('diZvW4bSgZWwyyGP3qXi1g',1285610019,'1','pbversion0000000000001','approved','Commercial Documentation','Commercial Documentation','documentation/commercial-documentation','3','7','3',NULL,0,1,0,0,0,1751,NULL,0,1,0,1301974028,NULL,0),('68sKwDgf9cGH58-NZcU4lg',1286336676,'3','pbversion0000000000001','approved','Welcome','Home','home','3','7','3',NULL,0,0,0,0,0,357,NULL,0,1,0,1286336676,NULL,0),('Am1J-meNBmhqFfEIWy6Gag',1287545014,'3','pbversion0000000000001','approved','crystalX_Navigation','crystalX_Navigation','crystalx/crystalx_navigation','3','7','3',NULL,0,1,0,0,0,406,NULL,0,1,0,1287545016,NULL,0),('1z9J1O08n_7gVVlBwSRBJQ',1287545014,'3','pbversion0000000000001','approved','Auth','Auth','root/import/auth','3','7','12',NULL,0,1,0,0,0,311,NULL,0,1,0,1287545015,NULL,0),('xSmREZO3GNzK3M5PaueOOQ',1287545014,'3','pbversion0000000000001','approved','LDAP/Account','LDAP/Account','root/import/auth/ldap/account','3','7','12',NULL,0,0,0,0,0,347,NULL,0,1,0,1287545015,NULL,0),('PBtmpl0000000000000004',1287545014,'3','pbversion0000000000001','approved','Default LDAP Account Display Template','Default LDAP Account Display Template','default_ldap_account_display_template','3','7','12',NULL,0,1,0,0,0,1372,NULL,0,1,0,1287545015,NULL,0),('0bx-xoL8TSXXubFuqKAoVQ',1287545014,'3','pbversion0000000000001','approved','LDAP/Create','LDAP/Create','root/import/auth/ldap/create','3','7','12',NULL,0,0,0,0,0,344,NULL,0,1,0,1287545015,NULL,0),('PBtmpl0000000000000005',1287545014,'3','pbversion0000000000001','approved','Default LDAP Anonymous Registration Template','Default LDAP Anonymous Registration Template','default_ldap_anonymous_registration_template','3','7','12',NULL,0,1,0,0,0,5903,'\n\n',0,1,0,1287545015,'',0),('taX2UYkFF21ALpFZY2rhMw',1287545014,'3','pbversion0000000000001','approved','LDAP/Login','LDAP/Login','root/import/auth/ldap/login','3','7','12',NULL,0,0,0,0,0,341,NULL,0,1,0,1287545015,NULL,0),('PBtmpl0000000000000006',1287545014,'3','pbversion0000000000001','approved','Default LDAP Login Template','Default LDAP Login Template','default_ldap_login_template','3','7','12',NULL,0,1,0,0,0,1974,NULL,0,1,0,1287545015,NULL,0),('K0q_N885Httqev1VCqUWxg',1287545014,'3','pbversion0000000000001','approved','WebGUI/Account','WebGUI/Account','root/import/auth/webgui/account','3','7','12',NULL,0,0,0,0,0,353,NULL,0,1,0,1287545015,NULL,0),('PBtmpl0000000000000010',1287545014,'3','pbversion0000000000001','approved','Default WebGUI Account Display Template','Default WebGUI Account Display Template','default_webgui_account_display_template','3','7','12',NULL,0,1,0,0,0,2780,NULL,0,1,0,1287545015,NULL,0),('fq1ZkYhH24R5tb96kuT10Q',1287545014,'3','pbversion0000000000001','approved','WebGUI/Create','WebGUI/Create','root/import/auth/webgui/create','3','7','12',NULL,0,0,0,0,0,350,NULL,0,1,0,1287545015,NULL,0),('PBtmpl0000000000000011',1287545014,'3','pbversion0000000000001','approved','Default WebGUI Anonymous Registration Template','Default WebGUI Anonymous Registration Template','default_webgui_anonymous_registration_template','3','7','12',NULL,0,1,0,0,0,6676,'\n\n',0,1,0,1287545015,'',0),('PBtmpl0000000000000015',1287545014,'3','pbversion0000000000001','approved','Default WebGUI Welcome Message Template','Default WebGUI Welcome Message Template','root/import/auth/webgui/create/default-webgui-welcome-message-template','3','7','12',NULL,0,1,0,0,0,698,NULL,0,1,0,1287545015,NULL,0),('PBtmpl0000000000000016',1287545014,'3','pbversion0000000000001','approved','Default WebGUI Account Activation Template','Default WebGUI Account Activation Template','root/import/auth/webgui/create/default-webgui-account-activation-template','3','7','3',NULL,0,1,0,0,0,602,NULL,0,1,0,1287545015,NULL,0),('oHk7fAFhEEkB7dHzi0QOQA',1287545014,'3','pbversion0000000000001','approved','WebGUI/Expired','WebGUI/Expired','root/import/auth/webgui/expired','3','7','12',NULL,0,0,0,0,0,353,NULL,0,1,0,1287545016,NULL,0),('PBtmpl0000000000000012',1287545014,'3','pbversion0000000000001','approved','Default WebGUI Password Reset Template','Default WebGUI Password Reset Template','default_webgui_password_reset_template','3','7','12',NULL,0,1,0,0,0,2095,NULL,0,1,0,1287545016,NULL,0),('9M-lrlPQWeeNWfvnDnK_Xg',1287545014,'3','pbversion0000000000001','approved','WebGUI/Login','WebGUI/Login','root/import/auth/webgui/login','3','7','12',NULL,0,0,0,0,0,347,NULL,0,1,0,1287545016,NULL,0),('PBtmpl0000000000000013',1287545014,'3','pbversion0000000000001','approved','Default WebGUI Login Template','Default WebGUI Login Template','default_webgui_login_template','3','7','12',NULL,0,1,0,0,0,2262,NULL,0,1,0,1287545016,NULL,0),('_gBYAdTcbkiyamnqi2Xskg',1287545014,'3','pbversion0000000000001','approved','WebGUI/Recovery','WebGUI/Recovery','root/import/auth/webgui/recovery','3','7','12',NULL,0,0,0,0,0,356,NULL,0,1,0,1287545016,NULL,0),('PBtmpl0000000000000014',1287545015,'3','pbversion0000000000001','approved','Default WebGUI Password Recovery Template','Default WebGUI Password Recovery Template','default_webgui_password_recovery_template','3','7','12',NULL,0,1,0,0,0,3073,NULL,0,1,0,1287545016,NULL,0),('0iMMbGN3BevuCBHjjLiQNA',1287545015,'3','pbversion0000000000001','approved','WebGUI/Deactivate','WebGUI/Deactivate','root/import/auth/webgui/deactivate','3','7','12',NULL,0,1,0,0,0,361,NULL,0,1,0,1287545016,NULL,0),('zaHUYsE_PgKk8hnVd8ffEQ',1287545015,'3','pbversion0000000000001','approved','WebGUI Deactivate Account Template','WebGUI Deactivate Account Template','default_webgui_deactivate_account_template','3','7','12',NULL,0,1,0,0,0,859,NULL,0,1,0,1287545016,NULL,0),('6A4yIjWwJfIE0Ep-I0jutg',1287545015,'3','pbversion0000000000001','approved','LDAP/Deactivate','LDAP/Deactivate','root/import/auth/ldap/deactivate','3','7','12',NULL,0,1,0,0,0,355,NULL,0,1,0,1287545016,NULL,0),('_P4PMiraGsLTfOjK4fYQPQ',1287545015,'3','pbversion0000000000001','approved','LDAP Deactivate Account Template','LDAP Deactivate Account Template','default_ldap_deactivate_account_template','3','7','12',NULL,0,1,0,0,0,851,NULL,0,1,0,1287545016,NULL,0),('sK_0zVw4kwdJ1sqREIsSzA',1287545015,'3','pbversion0000000000001','approved','WebGUI Auth Password Recovery Email Template','Password Recovery Email','root/import/auth/webgui/recoveryemail','3','7','4',NULL,0,0,0,0,0,769,NULL,0,1,0,1287545016,NULL,0),('qsG6B24a0SC5KrhQjmdZBw',1287545015,'3','pbversion0000000000001','approved','survey.css','survey.css','survey.css','3','7','12',NULL,0,1,0,0,0,5092,NULL,0,1,0,1287545016,NULL,0),('kwTL1SWCk0GlpiJ5zAAEPQ',1287545015,'3','pbversion0000000000001','approved','surveyedit.css','surveyedit.css','root/import/survey/surveyedit.css','3','7','12',NULL,0,1,0,0,0,4986,NULL,0,1,0,1287545016,NULL,0),('_cD6DLM_Fs5IlrLeWUjrjg',1287545015,'3','pbversion0000000000001','approved','Workflow Activity Templates','Workflow Activity Templates','root/import/workflow-activity-templates','3','7','12',NULL,0,1,0,0,0,434,NULL,0,1,0,1287545016,NULL,0),('lYhMheuuLROK_iNjaQuPKg',1287545015,'3','pbversion0000000000001','approved','Notify About Version Tag','Notify About Version Tag','root/import/workflow-activity-templates/notify-about-version-tag','3','7','12',NULL,0,1,0,0,0,502,NULL,0,1,0,1287545016,NULL,0),('PBtmpl0000000000000085',1288747840,'3','pbversion0000000000001','approved','Default Email','Default Email','default_email','3','7','12',NULL,0,1,0,0,0,2031,NULL,0,1,0,1288747841,NULL,0),('2rC4ErZ3c77OJzJm7O5s3w',1288747841,'3','pbversion0000000000001','approved','EMS Badge Listing (default)','EMS Badge Listing (default)','root/import/ems/ems-badge-listing-default','3','7','12',NULL,0,1,0,0,0,11613,'\n\n\n\n\n\n\n\n\n\n\n\n\n \n',0,1,0,1288747841,'',0),('lG2exkH9FeYvn4pA63idNg',1289967962,'3','pbversion0000000000001','approved','Friend Manager Edit Friends','Friend Manager Edit Friends','root/import/account/friendmanager/edit','3','7','4',NULL,0,0,0,0,0,2587,'',0,1,0,1289967964,'',0),('PBtmpl0000000000000021',1294721945,'3','pbversion0000000000001','approved','Data List','Data List','data_list','3','7','12',NULL,0,1,0,0,0,4917,'',0,1,0,1294721945,'',0),('CalendarEvent000000001',1295931508,'3','pbversion0000000000001','approved','Default Calendar Event','Default Calendar Event','root/import/calendar-templates/default-calendar-event','3','7','12',NULL,0,0,0,0,0,11625,' ',0,1,0,1295931508,'',0),('64tqS80D53Z0JoAs2cX2VQ',1295931508,'3','pbversion0000000000001','approved','FriendManager View Template','FriendManager View Template','root/import/account/friendmanager/view','3','7','4',NULL,0,0,0,0,0,4485,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n',0,1,0,1295931508,'',0),('kj3b-X3i6zRKnhLb4ZiCLw',1295931508,'3','pbversion0000000000001','approved','Default Calendar List View','Default Calendar List View','root/import/calendar-templates/default-calendar-list-view','3','7','3',NULL,0,1,0,0,0,6560,'\n',0,1,0,1295931508,'',0),('PBtmpl0000000000000077',1298351263,'3','pbversion0000000000001','approved','Job Listing','Job Listing','job_listing','3','7','12',NULL,0,1,0,0,0,4876,'\n\n\n',0,1,0,1298351263,'',0),('ThingyTmpl000000000002',1299559129,'3','pbversion0000000000001','approved','Default Thingy View Thing','Default Thingy View Thing','templates/thingy-default-view-thing','3','7','12',NULL,0,0,0,0,0,4833,'\n',0,1,0,1299559129,'',0),('PBtmpl0000000000000088',1300763663,'3','pbversion0000000000001','approved','Image','Image','image','3','7','12',NULL,0,1,0,0,0,850,NULL,0,1,0,1300763664,NULL,0),('S1A9iAwKcQQ6P20uTqw-Ew',1300763664,'3','pbversion0000000000001','approved','Dashboard','Dashboard','root/import/dashboard','3','7','12',NULL,0,0,0,0,0,326,NULL,0,1,0,1300763664,NULL,0),('DashboardViewTmpl00001',1300763664,'3','pbversion0000000000001','approved','Dashboard Default View','Dashboard Default View','dashboard-default-view-template','3','7','12',NULL,0,0,0,0,0,20462,'\n\n\n\n\n\n',0,1,0,1300763664,'',0),('CQp-RFA2pMh5lFSggPPPYg',1301973995,'3','pbversion0000000000001','approved','[Style] Underground','[Style] Underground','style-underground','3','7','3',NULL,0,0,0,0,0,452,NULL,0,1,0,1301974000,NULL,0),('_Mi_NTd3x8UB96LWezWHnw',1301973995,'3','pbversion0000000000001','approved','Images','Images','style-underground/images','3','7','3',NULL,0,0,0,0,0,328,NULL,0,1,0,1301974000,NULL,0),('A_5LVQQWR73QZR8FFbny_w',1301973995,'3','pbversion0000000000001','approved','bg.gif','bg.gif','style-underground/images/bg.gif','3','7','3',NULL,0,1,0,0,0,612,NULL,0,0,0,1301974000,NULL,0),('wywIfa_VuTsq0c5Ed-W-MA',1301973995,'3','pbversion0000000000001','approved','bullet.gif','bullet.gif','style-underground/images/bullet.gif','3','7','3',NULL,0,1,0,0,0,686,NULL,0,0,0,1301974000,NULL,0),('xmykMFjri1O2NrYHbeToVQ',1301973995,'3','pbversion0000000000001','approved','footerbg.gif','footerbg.gif','style-underground/images/footerbg.gif','3','7','3',NULL,0,1,0,0,0,460,NULL,0,0,0,1301974000,NULL,0),('0IIGNBs_-INzqBC5VLeJgw',1301973996,'3','pbversion0000000000001','approved','headerbg.gif','headerbg.gif','style-underground/images/headerbg.gif','3','7','3',NULL,0,1,0,0,0,530,NULL,0,0,0,1301974000,NULL,0),('FXmePdyS0YKuZ1VCGGpK9w',1301973996,'3','pbversion0000000000001','approved','quote.gif','quote.gif','style-underground/images/quote.gif','3','7','3',NULL,0,1,0,0,0,685,NULL,0,0,0,1301974000,NULL,0),('66qCywiE_fiL9u5YIaJhgw',1301973996,'3','pbversion0000000000001','approved','tableft.gif','tableft.gif','style-underground/images/tableft.gif','3','7','3',NULL,0,1,0,0,0,720,NULL,0,0,0,1301974000,NULL,0),('n5VpG4lFsOG1elaWDQbilw',1301973996,'3','pbversion0000000000001','approved','tabright.gif','tabright.gif','style-underground/images/tabright.gif','3','7','3',NULL,0,1,0,0,0,2135,NULL,0,0,0,1301974000,NULL,0),('g3JH1PRq6m6Bj_PnGpcrSQ',1301973996,'3','pbversion0000000000001','approved','CSS','CSS','style-underground/css','3','7','3',NULL,0,0,0,0,0,319,NULL,0,1,0,1301974000,NULL,0),('egpnaaFqWmJwYTZ5CvFH9g',1301973996,'3','pbversion0000000000001','approved','Underground.css','Underground.css','style-underground/css/underground.css','3','7','3',NULL,0,1,0,0,0,11746,NULL,0,1,0,1301974000,NULL,0),('BBpxqoSseIor5C9ei9JEFQ',1301973996,'3','pbversion0000000000001','approved','Underground WebGUI.css','Underground WebGUI.css','style-underground/css/underground-webgui.css','3','7','3',NULL,0,1,0,0,0,528,NULL,0,1,0,1301974000,NULL,0),('G0hl4VilbFKipToyxKqFrg',1301973997,'3','pbversion0000000000001','approved','Prototypes','Prototypes','style-underground/prototypes','3','7','3',NULL,0,0,0,0,0,429,NULL,0,1,0,1301974000,NULL,0),('GWU2qZqe6yEuAKG-5HtBdg',1301973997,'3','pbversion0000000000001','approved','Templates','Templates','style-underground/templates','3','7','3',NULL,0,0,0,0,0,337,NULL,0,1,0,1301974000,NULL,0),('Qk24uXao2yowR6zxbVJ0xA',1301973997,'3','pbversion0000000000001','approved','[style] Underground','[style] Underground','style-underground/style-underground','3','7','3','by Doug from Plain Black http://plainblack.com\r\n\r\nThis is the Underground style from http://www.styleshout.com/ made into a WebGUI package. A simple, functional style.',0,1,0,0,0,4727,NULL,0,1,0,1301974000,NULL,0),('39KNX53B4nYJAyIE1lu8ZQ',1301973997,'3','pbversion0000000000001','approved','[nav] Underground Top Navigation','[nav] Underground Top Navigation','style-underground/nav-underground-top-navigation','3','7','3',NULL,0,1,0,0,0,1139,NULL,0,1,0,1301974000,NULL,0),('ztfi__vHJLsQDsMenrEn-w',1301973997,'3','pbversion0000000000001','approved','[nav] Underground Side Navigation','[nav] Underground Side Navigation','style-underground/nav-underground-side-navigation','3','7','3',NULL,0,1,0,0,0,1148,NULL,0,1,0,1301974000,NULL,0),('8qyrDCNeggB4dzKiOoRuiQ',1301973997,'3','pbversion0000000000001','approved','[admintoggle] Underground Admin Toggle','[admintoggle] Underground Admin Toggle','style-underground/templates/admintoggle-underground-admin-toggle','3','7','3',NULL,0,1,0,0,0,520,NULL,0,1,0,1301974000,NULL,0),('M1NyNeS5jpdIsiIWFiJprw',1301973997,'3','pbversion0000000000001','approved','View My Account','View My Account','style-underground/templates/view-my-account','3','7','3',NULL,0,1,0,0,0,461,NULL,0,1,0,1301974000,NULL,0),('n-Vr_wgxOkwiHGt1nJto9w',1309236774,'3','pbversion0000000000001','approved','Top Navigation','Top Navigation','style-underground/top-navigation','3','7','3',NULL,0,1,0,0,0,393,NULL,0,1,0,1309236774,NULL,0),('AsfpsOpsGzZCb9m7MyxPuw',1301973997,'3','pbversion0000000000001','approved','Navigation','Navigation','style-underground/navigation','3','7','3',NULL,0,0,0,0,0,340,NULL,0,1,0,1301974001,NULL,0),('jmqLxnoWb6p92Cr12lf1hw',1301973997,'3','pbversion0000000000001','approved','Side Navigation','Side Navigation','style-underground/side-navigation','3','7','3',NULL,0,1,0,0,0,402,NULL,0,1,0,1301974001,NULL,0),('8E2UOnj_XPEghTj7nfVM0g',1301973997,'3','pbversion0000000000001','approved','Search','Search','style-underground/search','3','7','3',NULL,0,1,0,0,0,345,NULL,0,1,0,1301974001,NULL,0),('CarouselTmpl0000000001',1301973997,'3','pbversion0000000000001','approved','Default Carousel','Default Carousel','root/import/carousel/carousel-default','3','7','12',NULL,0,0,0,0,0,3709,'\r\n\r\n\r\n',0,1,0,1301974000,'',0),('1qFjOEiILIwr1xB5_ebppQ',1301973998,'3','pbversion0000000000001','approved','Greenportal','Greenportal','greenportal','3','7','3',NULL,0,1,0,0,0,319,NULL,0,1,0,1301974001,NULL,0),('xD76UfQ_JnSgTLBNvytcpQ',1301973998,'3','pbversion0000000000001','approved','greenportal_image','greenportal_image','greenportal_image','3','7','12',NULL,0,1,0,0,0,344,NULL,0,1,0,1301974001,NULL,0),('pAXR7Kby4O-dSxOwLp1GaA',1301973998,'3','pbversion0000000000001','approved','menu_top.png','menu_top.png','greenportal_image/menu_top.png','3','7','12',NULL,0,1,0,0,0,7649,NULL,0,1,0,1301974001,NULL,0),('TthzMLO4n3qxy59QZ5YBHg',1301973998,'3','pbversion0000000000001','approved','menu_dark.png','menu_dark.png','greenportal_image/menu_dark.png','3','7','12',NULL,0,1,0,0,0,2641,NULL,0,1,0,1301974001,NULL,0),('3n31SQjYa150TBrRBgMPhA',1301973998,'3','pbversion0000000000001','approved','menu_light.png','menu_light.png','greenportal_image/menu_light.png','3','7','12',NULL,0,1,0,0,0,2195,NULL,0,1,0,1301974001,NULL,0),('R4RxDufGbbIzEmpcoEcLrw',1301973998,'3','pbversion0000000000001','approved','logo.jpg','logo.jpg','greenportal_image/logo.jpg','3','7','12',NULL,0,1,0,0,0,41449,NULL,0,1,0,1301974001,NULL,0),('xyyn5mz3xGyvrcI1rY8C-w',1301973998,'3','pbversion0000000000001','approved','greenportal.css','greenportal.css','greenportal.css','3','7','12',NULL,0,1,0,0,0,6696,NULL,0,1,0,1301974001,NULL,0),('KKt0VB_eoQxw9xEsHsAhag',1301973998,'3','pbversion0000000000001','approved','Greenportal_style','Greenportal_style','greenportal_style','3','7','12','by Ning from PlutonIT http://pluton.nl\n\nA Joomla! Open Source design released under the GNU/GPL License. Enhanced and converted into WebGUI theme by Ning. The original PHP and CSS file can be downloaded following the author\'s link: http://www.studentsdesign.de/',0,1,0,0,0,2280,NULL,0,1,0,1301974001,NULL,0),('h0bOzz7WvdaVZXsjpwtkww',1301973998,'3','pbversion0000000000001','approved','greenportal_Navigation','greenportal_Navigation','greenportal_navigation','3','7','3',NULL,0,1,0,0,0,394,NULL,0,1,0,1301974001,NULL,0),('_z3ukLCqvoaUygfsbbkBzw',1301973999,'3','pbversion0000000000001','approved','Greenportal_menu','Greenportal_menu','greenportal_menu','3','7','3',NULL,0,1,0,0,0,2014,NULL,0,1,0,1301974001,NULL,0),('qFOfW1sKyOTnGNcP6BXbwg',1301973999,'3','pbversion0000000000001','approved','greenportal_NavigationTop','greenportal_NavigationTop','greenportal_navigationtop','3','7','12',NULL,0,1,0,0,0,416,NULL,0,1,0,1301974001,NULL,0),('Pt38T5_MWSue2e1N36MLdw',1301973999,'3','pbversion0000000000001','approved','Greenportal_menuTop','Greenportal_menuTop','greenportal_menutop','3','7','12',NULL,0,1,0,0,0,950,NULL,0,1,0,1301974001,NULL,0),('LDcM1Iop17nF2MoSa7zo_Q',1301973999,'3','pbversion0000000000001','approved','Greenportal_dataform','Greenportal_dataform','greenportal_dataform','3','7','3',NULL,0,1,0,0,0,5320,'\r\n\r\n',0,1,0,1301974001,'',0),('hVF1taXj4bfd7DuL4XDMYg',1301973999,'3','pbversion0000000000001','approved','Greenportal_datalist','Greenportal_datalist','greenportal_datalist','3','7','3',NULL,0,1,0,0,0,4142,'\n\n',0,1,0,1301974001,'',0),('x4-2QYRSrIB_BJfnSKKj4w',1301973999,'3','pbversion0000000000001','approved','Greenportal_acknowledgement','Greenportal_acknowledgement','greenportal_acknowledgement','3','7','3',NULL,0,1,0,0,0,1755,'',0,1,0,1301974001,'',0),('423R4Y6XIt3wUzlnLo-chg',1301973999,'3','pbversion0000000000001','approved','Greenportal_forum','Greenportal_forum','greenportal_forum','3','7','3',NULL,0,1,0,0,0,7997,'\r\n\r\n\r\n',0,1,0,1301974001,'',0),('oZ1Mk-zExYUyD-JsjTvaHg',1301973999,'3','pbversion0000000000001','approved','Greenportal_thread','Greenportal_thread','greenportal_thread','3','7','3',NULL,0,1,0,0,0,11119,'\r\n',0,1,0,1301974001,'',0),('mYwS8CZaOLMt0raaKXGZcQ',1301973999,'3','pbversion0000000000001','approved','Greenportal_postform','Greenportal_postform','greenportal_postform','3','7','3',NULL,0,1,0,0,0,4047,'\r\n',0,1,0,1301974001,'',0),('kSGR4OHsKmhLQTuLkisOww',1301973999,'3','pbversion0000000000001','approved','Greenportal_search','Greenportal_search','greenportal_search','3','7','3',NULL,0,1,0,0,0,3685,'',0,1,0,1301974001,'',0),('G5DgNizuG3jXkjPp6UaGrA',1301973999,'3','pbversion0000000000001','approved','Greenportal_Calendar','Greenportal_Calendar','greenportal_calendar','3','7','3',NULL,0,1,0,0,0,352,NULL,0,1,0,1301974001,NULL,0),('U78V5IJHVljvRTb6ydsTHg',1301973999,'3','pbversion0000000000001','approved','Greenportal_calendarMonth','Greenportal_calendarMonth','greenportal_calendar/greenportal_calendarmonth','3','7','3',NULL,0,1,0,0,0,15294,'\n\n\n\n\n\n\n',0,1,0,1301974001,'',0),('Xqc3qPUXoFE8dt9qocdWig',1301973999,'3','pbversion0000000000001','approved','Greenportal_calendarWeek','Greenportal_calendarWeek','greenportal_calendar/greenportal_calendarweek','3','7','3',NULL,0,1,0,0,0,10509,'\r\n',0,1,0,1301974001,'',0),('IBTb7wllSt7RxFmmvm9pkQ',1301973999,'3','pbversion0000000000001','approved','Greenportal_calendarDay','Greenportal_calendarDay','greenportal_calendar/greenportal_calendarday','3','7','3',NULL,0,1,0,0,0,10155,' \r\n\r\n',0,1,0,1301974001,'',0),('Z1EM7JMI_4SkyfaZffSElw',1301973999,'3','pbversion0000000000001','approved','Greenportal_calendarEvent','Greenportal_calendarEvent','greenportal_calendar/greenportal_calendarevent','3','7','3',NULL,0,1,0,0,0,8357,' \r\n\r\n',0,1,0,1301974001,'',0),('fJg7SKpGZwzSNx3_ebki1A',1301973999,'3','pbversion0000000000001','approved','Greenportal_calendarEventEdit','Greenportal_calendarEventEdit','greenportal_calendar/greenportal_calendareventedit','3','7','3',NULL,0,1,0,0,0,9181,'\n\n\n \n\n',0,1,0,1301974001,'',0),('ihf4Rx6p72xn_nVKaIeOaw',1301973999,'3','pbversion0000000000001','approved','Greenportal_calendarSearch','Greenportal_calendarSearch','greenportal_calendar/greenportal_calendarsearch','3','7','3',NULL,0,1,0,0,0,9141,' \r\n\r\n',0,1,0,1301974001,'',0),('jrWJ6nHXkqgFbml7BZ9chw',1301974000,'3','pbversion0000000000001','approved','Greenportal_submission','Greenportal_submission','greenportal_submission','3','7','3',NULL,0,1,0,0,0,21039,'\r\n',0,1,0,1301974001,'',0),('Ys6f3vpe0y1uRcaCJ2TlFw',1301974000,'3','pbversion0000000000001','approved','Greenportal_messageboard','Greenportal_messageboard','greenportal_messageboard','3','7','3',NULL,0,1,0,0,0,5587,'',0,1,0,1301974001,'',0),('PBtmpl0000000000000200',1301974000,'3','pbversion0000000000001','approved','Default Search','Default Search','default_search2','3','7','12',NULL,0,0,0,0,0,3966,NULL,0,1,0,1315877144,NULL,0),('E3tzZjzhmYoNlAyP2VW33Q',1303183716,'3','pbversion0000000000001','approved','Edit Story','Edit Story','root/import/storymanager/editstory','3','7','4',NULL,0,0,0,0,0,6440,'',0,1,0,1303183716,'',0),('brxm_faNdZX5tRo3p50g3g',1304392055,'3','pbversion0000000000001','approved','Map Templates','Map Templates','home/map/map-templates','3','7','3',NULL,0,0,0,0,0,334,NULL,0,1,0,1304392055,NULL,0),('9j0_Z1j3Jd0QBbY2akb6qw',1304392055,'3','pbversion0000000000001','approved','Default Map View','Default Map View','home/map/map-templates/default-map-view','3','7','3',NULL,0,1,0,0,0,1292,'',0,1,0,1304392055,'',0),('oHh0UqAJeY7u2n--WD-BAA',1304392055,'3','pbversion0000000000001','approved','Default Edit Map Point','Default Edit Map Point','home/map/map-templates/default-edit-map-point','3','7','3',NULL,0,1,0,0,0,3176,NULL,0,1,0,1304392055,NULL,0),('u9vfx33XDk5la1-QC5FK7g',1304392055,'3','pbversion0000000000001','approved','Default Map Point View','Default Map Point View','home/map/map-templates/default-map-point-view','3','7','3',NULL,0,1,0,0,0,2418,'',0,1,0,1304392055,'',0),('_9_eiaPgxzF_x_upt6-PNQ',1304392055,'3','pbversion0000000000001','approved','gallery.css','gallery.css','root/import/gallery-templates/gallery.css','3','7','3',NULL,0,1,0,0,0,18788,NULL,0,1,0,1304392055,NULL,0),('PBtmpl0000000000000027',1311652541,'3','pbversion0000000000001','approved','Default Forum Notification','Default Forum Notification','default_forum_notification','3','7','12',NULL,0,1,0,0,0,2815,NULL,0,1,0,1311652541,NULL,0),('3n3H85BsdeRQ0I08WmvlOg',1313542960,'3','pbversion0000000000001','approved','thingy.css','thingy.css','root/import/thingy-templates/thingy.css','3','7','12',NULL,0,1,0,0,0,4774,NULL,0,1,0,1313542962,NULL,0),('PBEmsBadgeTemplate0000',1313542962,'3','pbversion0000000000001','approved','Default EMS Badge Template','Default EMS Badge Template','default_emsbadge','3','7','4',NULL,0,0,0,0,0,5853,'',0,1,0,1313542962,'',0),('StockDataTMPL000000001',1315877144,'3','pbversion0000000000001','approved','StockData Default View','StockData Default View','stockdatatmpl000000001','3','7','12',NULL,0,1,0,0,0,9004,'\n',0,1,0,1315877144,'',0),('aNmgn0cd6tldmC1FpW4KbA',1326776036,'3','pbversion0000000000001','approved','Shop','Shop','shopping-cart-collateral-items','3','7','3',NULL,0,1,0,0,0,324,NULL,0,0,0,1326776038,NULL,0),('2q5fxatSFLgIhXaUX-oSvg',1326776036,'3','pbversion0000000000001','approved','bottom-left.jpg','bottom-left.jpg','shopping-cart-collateral-items/bottom-left.jpg','3','7','3',NULL,0,1,0,0,0,32254,NULL,0,0,0,1326776038,NULL,0),('_d5WTkKjnwct-_Dk7gZHvQ',1326776036,'3','pbversion0000000000001','approved','bottom-right.jpg','bottom-right.jpg','shopping-cart-collateral-items/bottom-right.jpg','3','7','3',NULL,0,1,0,0,0,32258,NULL,0,0,0,1326776038,NULL,0),('Iz2mUR3jCPKyemwAea4b2g',1326776036,'3','pbversion0000000000001','approved','input_bg.jpg','input_bg.jpg','shopping-cart-collateral-items/input_bg.jpg','3','7','3',NULL,0,1,0,0,0,30076,NULL,0,0,0,1326776038,NULL,0),('JU9bjsLRoWj7GVHs__prig',1326776036,'3','pbversion0000000000001','approved','top-left.jpg','top-left.jpg','shopping-cart-collateral-items/top-left.jpg','3','7','3',NULL,0,1,0,0,0,32207,NULL,0,0,0,1326776038,NULL,0),('noOlnjQGexHg8c4bGVUo9g',1326776036,'3','pbversion0000000000001','approved','top-right.jpg','top-right.jpg','shopping-cart-collateral-items/top-right.jpg','3','7','3',NULL,0,1,0,0,0,32245,NULL,0,0,0,1326776038,NULL,0),('aIpCmr9Hi__vgdZnDTz1jw',1326776036,'3','pbversion0000000000001','approved','Cart (Default)','Cart (Default)','default-shopping-cart-template','3','7','3',NULL,0,1,0,0,0,25953,' ',0,1,0,1326776038,'',0),('XNd7a_g_cTvJVYrVHcx2Mw',1326776037,'3','pbversion0000000000001','approved','Address (Default)','Address (Default)','shopping-cart-collateral-items/address-default','3','7','3',NULL,0,1,0,0,0,5883,'\r\n',0,1,0,1326776038,'',0),('2gtFt7c0qAFNU3BG_uvNvg',1326776037,'3','pbversion0000000000001','approved','My Purchases (Default)','My Purchases (Default)','shopping-cart-collateral-items/my-purchases-default','3','7','3',NULL,0,1,0,0,0,3259,'\n',0,1,0,1326776038,'',0),('bPz1yk6Y9uwMDMBcmMsSCg',1326776037,'3','pbversion0000000000001','approved','Email Receipt (Default)','Email Receipt (Default)','shopping-cart-collateral-items/email-receipt-default','3','7','3',NULL,0,1,0,0,0,4751,NULL,0,1,0,1326776038,NULL,0),('vrKXEtluIhbmAS9xmPukDA',1326776037,'3','pbversion0000000000001','approved','Donation (Default)','Donation (Default)','root/import/default-donation-template','3','7','12',NULL,0,1,0,0,0,2504,'\r\n',0,0,0,1326776038,'',0),('63ix2-hU0FchXGIWkG3tow',1326776037,'3','pbversion0000000000001','approved','Flat Discount (Default)','Flat Discount (Default)','root/import/flat-discount-default','3','7','12',NULL,0,1,0,0,0,1278,NULL,0,1,0,1326776038,NULL,0),('eqb9sWjFEVq0yHunGV8IGw',1326776037,'3','pbversion0000000000001','approved','Subscription (Default)','Subscription (Default)','root/import/subscription-default','3','7','12',NULL,0,1,0,0,0,2872,'\n',0,1,0,1326776038,'',0),('3womoo7Teyy2YKFa25-MZg',1326776037,'3','pbversion0000000000001','approved','Address Book (Default)','Address Book (Default)','shopping-cart-collateral-items/address-book-default','3','7','3',NULL,0,1,0,0,0,3132,'\n',0,1,0,1326776038,'',0),('EBlxJpZQ9o-8VBOaGQbChA',1326776037,'3','pbversion0000000000001','approved','MiniCart','MiniCart','shopping-cart-collateral-items/minicart','3','7','3',NULL,0,1,0,0,0,2622,'',0,1,0,1326776038,'',0),('g8W53Pd71uHB9pxaXhWf_A',1326776037,'3','pbversion0000000000001','approved','My Purchases Detail (Default)','My Purchases Detail (Default)','shopping-cart-collateral-items/my-purchases-detail-default','3','7','3',NULL,0,1,0,0,0,8422,'\n',0,1,0,1326776038,'',0),('jEz8iTGNWEt2I05IhVV19Q',1326776037,'3','pbversion0000000000001','approved','Operation/RedeemSubscription','Operation/RedeemSubscription','root/import/operation/redeemsubscription','3','7','12',NULL,0,0,0,0,0,390,NULL,0,1,0,1326776038,NULL,0),('PBtmpl0000000000000053',1326776037,'3','pbversion0000000000001','approved','Subscription code redemption','Subscription code redemption','subscription_code_redemption','3','7','12',NULL,0,1,0,0,0,579,NULL,0,1,0,1326776038,NULL,0),('itransact_credentials1',1326776037,'3','pbversion0000000000001','approved','ITransact Credentials (Default)','ITransact Credentials (Default)','shopping-cart-collateral-items/itransact-credentials','3','7','4',NULL,0,0,0,0,0,11072,' \n\n\n',0,1,0,1326776038,'',0),('D6cJpRcey35aSkh9Q_FPUQ',1326776037,'3','pbversion0000000000001','approved','Default EU User Screen','Default EU User Screen','root/import/default-eu-user-screen','3','7','12',NULL,0,1,0,0,0,1830,NULL,0,1,0,1326776038,NULL,0),('30h5rHxzE_Q0CyI3Gg7EJw',1326776037,'3','pbversion0000000000001','approved','Cash Summary Screen (Default)','Cash Summary Screen (Default)','shopping-cart-collateral-items/cash-summary','3','7','4',NULL,0,0,0,0,0,8671,' \n',0,1,0,1326776038,'',0),('jysVZeUR0Bx2NfrKs5sulg',1326776037,'3','pbversion0000000000001','approved','Ogone Summary Screen (Default)','Ogone Summary Screen (Default)','shopping-cart-collateral-items/ogone-summary','3','7','4',NULL,0,0,0,0,0,8672,' \n',0,1,0,1326776038,'',0),('300AozDaeveAjB_KN0ljlQ',1326776037,'3','pbversion0000000000001','approved','PayPal Standard Summary Screen (Default)','PayPal Standard Summary Screen (Default)','shopping-cart-collateral-items/paypal-std-summary','3','7','4',NULL,0,0,0,0,0,8697,' \n',0,1,0,1326776038,'',0),('GqnZPB0gLoZmqQzYFaq7bg',1326776037,'3','pbversion0000000000001','approved','PayPal Express Checkout Summary Screen (Default)','PayPal Express Checkout Summary Screen (Default)','shopping-cart-collateral-items/paypal-express-summary','3','7','4',NULL,0,0,0,0,0,8716,' \n',0,1,0,1326776038,'',0),('2GxjjkRuRkdUg_PccRPjpA',1326776038,'3','pbversion0000000000001','approved','Select Gateway (Default)','Select Gateway (Default)','shopping-cart-collateral-items/select-gateway-default','3','7','3',NULL,0,1,0,0,0,626,'\r\n',0,1,0,1326776038,NULL,0),('Rqwgh50A3gGcOKIrdi_kxw',1326776038,'3','pbversion0000000000001','approved','Authorize.net Credentials (Default)','Authorize.net Credentials (Default)','shopping-cart-collateral-items/authorizenet-credentials','3','7','4',NULL,0,0,0,0,0,11400,' \n\n\n',0,1,0,1326776038,'',0),('CalendarSearch00000001',1326776038,'3','pbversion0000000000001','approved','Default Calendar Search','Default Calendar Search','root/import/calendar-templates/default-calendar-search','3','7','12',NULL,0,0,0,0,0,14402,' ',0,1,0,1326776038,'',0); ALTER TABLE `assetData` ENABLE KEYS; ALTER TABLE `assetIndex` DISABLE KEYS; -INSERT INTO `assetIndex` VALUES ('PBasset000000000000003','Media','','media',1147642437,1147642437,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Media Media media','000001000003',NULL),('PBtmpl0000000000000112','Weblog','','weblog',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Weblog Weblog weblog Collaboration','000001000001000008000004',NULL),('PBtmplBlankStyle000001','WebGUI 6 Blank Style','','pbtmplblankstyle000001',1133743239,1258524916,'3','7','12','WebGUI::Asset::Template',0,'WebGUI 6 Blank Style WebGUI 6 Blank Style pbtmplblankstyle000001 style','000001000001000041000005',NULL),('PBtmpl0000000000000079','Topics','','topics',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Topics Topics topics Collaboration','000001000001000008000009',NULL),('PBtmpl0000000000000097','Traditional with Thumbnails','','traditional_with_thumbnails',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Traditional with Thumbnails Traditional with Thumbnails traditional with thumbnails Collaboration','000001000001000008000003',NULL),('PBtmpl0000000000000082','Unordered List','','unordered_list',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Unordered List Unordered List unordered list Collaboration','000001000001000008000011',NULL),('PBtmpl0000000000000124','Tabs','','tabs',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Tabs Tabs tabs Navigation','000001000001000025000004',NULL),('GNvjCFQWjY2AF2uf0aCM8Q','Syndicated Articles','','syndicated_articles',1124395696,1259133274,'3','7','12','WebGUI::Asset::Template',0,'Syndicated Articles Syndicated Articles syndicated articles SyndicatedContent','000001000001000043000002',NULL),('PBtmpl0000000000000136','Synopsis','','synopsis2',1124395696,1259133274,'3','7','12','WebGUI::Asset::Template',0,'Synopsis Synopsis synopsis2 Navigation','000001000001000025000007',NULL),('PBtmpl0000000000000116','Tab Form','','tab_form',1124395696,1257311888,'3','7','12','WebGUI::Asset::Template',0,'Tab Form Tab Form tab form DataForm','000001000001000010000005',NULL),('GRUNFctldUgop-qRLuo_DA','Default Survey Edit','','root/import/survey/default-survey-edit',1227254010,1269401469,'3','7','12','WebGUI::Asset::Template',0,'Default Survey Edit Default Survey Edit root import survey default survey edit Survey/Edit','000001000001000042000004',NULL),('ProjectManagerTMPL0004','Default Project Manager Edit Task','','default-pm-template-edit-task',1147642415,1222574693,'3','7','12','WebGUI::Asset::Template',0,'Default Project Manager Edit Task Default Project Manager Edit Task default pm template edit task ProjectManager_editTask','000001000001000030000002000001',NULL),('ProjectManagerTMPL0002','Default Project Display','','default-pm-template-project-display',1147642415,1222574693,'3','7','12','WebGUI::Asset::Template',0,'Default Project Display Default Project Display default pm template project display ProjectManager_project','000001000001000030000004000001',NULL),('PBtmpl0000000000000137','Admin Console Style','','admin_console',1124395696,1258524916,'3','7','12','WebGUI::Asset::Template',0,'Admin Console Style Admin Console admin console style','000001000001000041000003',NULL),('StockDataTMPL000000001','StockData Default View','','stockdatatmpl000000001',1133743239,1315877144,'3','7','12','WebGUI::Asset::Template',0,'StockData Default View StockData Default View stockdatatmpl000000001 StockData','000001000001000039000002',NULL),('PBtmpl0000000000000135','Side By Side','','side_by_side',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Side By Side Side By Side side by side Layout','000001000001000019000001',NULL),('PBtmpl0000000000000200','Default Search','','default_search2',1147642427,1301974000,'3','7','12','WebGUI::Asset::Template',0,'Default Search Default Search default search2 Search','000001000001000034000001',NULL),('PBtmpl0000000000000101','Ordered List','','ordered_list',1124395696,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Ordered List Ordered List ordered list Collaboration','000001000001000008000024',NULL),('PBtmpl0000000000000121','Photo Gallery','','photo_gallery',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Photo Gallery Photo Gallery photo gallery Collaboration','000001000001000008000005',NULL),('PBtmpl0000000000000081','Q and A','','q_and_a',1124395696,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Q and A Q and A q and a Collaboration','000001000001000008000023',NULL),('WVtmpl0000000000000001','Random Thread Macro Default Template','','randomthread-template',1133743240,1147642426,'3','7','12','WebGUI::Asset::Template',0,'Random Thread Macro Default Template Random Thread Macro Default Template randomthread template Macro/RandomThread','000001000001000021000010000001',NULL),('PBtmpl0000000000000131','Right Column','','right_column',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Right Column Right Column right column Layout','000001000001000019000002',NULL),('PBtmpl0000000000000094','News','','plainblacknews',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',0,'News News plainblacknews Layout','000001000001000019000005',NULL),('matrixtmpl000000000005','Matrix Default Search','','matrix-search-template',1133743239,1281501163,'3','7','12','WebGUI::Asset::Template',0,'Matrix Default Search Matrix Default Search matrix search template Matrix/Search','000001000001000022000005',NULL),('MultiSearchTmpl0000001','MultiSearch Default Display','','multisearchtmpl0000001',1133743239,1230269962,'3','7','12','WebGUI::Asset::Template',0,'MultiSearch Default Display MultiSearch Default Display multisearchtmpl0000001 MultiSearch','000001000001000024000001',NULL),('matrixtmpl000000000002','Matrix Default Compare','','matrix-default-compare-template',1133743238,1281501162,'3','7','12','WebGUI::Asset::Template',0,'Matrix Default Compare Matrix Default Compare matrix default compare template Matrix/Compare','000001000001000022000001',NULL),('PBtmpl0000000000000111','Make Page Printable','','make_page_printable',1124395696,1286336607,'3','7','12','WebGUI::Asset::Template',0,'Make Page Printable Make Page Printable make page printable style','000001000001000041000002',NULL),('PBtmpl0000000000000020','Mail Form','','mail_form',1124395696,1257311887,'3','7','12','WebGUI::Asset::Template',0,'Mail Form Mail Form mail form DataForm','000001000001000010000001',NULL),('PBtmpl0000000000000113','Link','','link',1124395696,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Link Link link Collaboration/Thread','000001000001000008000025',NULL),('PBtmpl0000000000000083','Link List','','link_list',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Link List Link List link list Collaboration','000001000001000008000010',NULL),('PBtmpl0000000000000114','Link List Submission Form','','link_list_submission_form',1124395696,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Link List Submission Form Link List Submission Form link list submission form Collaboration/PostForm','000001000001000008000019',NULL),('PBtmpl0000000000000115','Linked Image with Caption','','linked_image_with_caption',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Linked Image with Caption Linked Image with Caption linked image with caption Article','000001000001000004000003',NULL),('PBtmpl0000000000000098','Job','','job',1124395696,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Job Job job Collaboration/Thread','000001000001000008000021',NULL),('PBtmpl0000000000000077','Job Listing','','job_listing',1124395696,1298351263,'3','7','12','WebGUI::Asset::Template',0,'Job Listing Job Listing job listing Collaboration','000001000001000008000020',NULL),('PBtmpl0000000000000122','Job Submission Form','','job_submission_form',1124395696,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Job Submission Form Job Submission Form job submission form Collaboration/PostForm','000001000001000008000022',NULL),('PBtmpl0000000000000103','Article With Image','','article-with-image',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Article With Image Article With Image article with image Article','000001000001000004000001',NULL),('PBtmpl0000000000000092','Horizontal Login Box','','horizontal_login_box',1124395696,1148579524,'3','7','12','WebGUI::Asset::Template',0,'Horizontal Login Box Horizontal Login Box horizontal login box Macro/L_loginBox','000001000001000021000009000001',NULL),('PBtmpl0000000000000108','horizontalMenu','','horizontalmenu',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'horizontalMenu horizontalMenu horizontalmenu Navigation','000001000001000025000002',NULL),('PBtmpl0000000000000088','Image','','image',1124395696,1300763663,'3','7','12','WebGUI::Asset::Template',0,'Image Image image ImageAsset','000001000001000017000001',NULL),('IOB0000000000000000002','Default InOutBoard Report Template','','iob-report-template',1133743239,1166019641,'3','7','12','WebGUI::Asset::Template',0,'Default InOutBoard Report Template Default InOutBoard Report Template iob report template InOutBoard/Report','000001000001000018000001',NULL),('IOB0000000000000000001','Default InOutBoard Template','','iob-template',1133743239,1169795123,'3','7','12','WebGUI::Asset::Template',0,'Default InOutBoard Template Default InOutBoard Template iob template InOutBoard','000001000001000018000002',NULL),('PBtmpl0000000000000123','Item','','item',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Item Item item Article','000001000001000004000004',NULL),('PBtmpl0000000000000024','File','','file',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'File File file FileAsset','000001000001000013000001',NULL),('PBtmpl0000000000000078','File Folder','','file_folder',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'File Folder File Folder file folder Folder','000001000001000014000001',NULL),('PBtmpl0000000000000107','File with size','','file_with_size',1124395696,1147642420,'3','7','12','WebGUI::Asset::Template',0,'File with size File with size file with size Macro/File','000001000001000021000004000003',NULL),('PBtmpl0000000000000133','Guest Book','','guest_book',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Guest Book Guest Book guest book Collaboration','000001000001000008000012',NULL),('PBtmpl0000000000000117','DropMenu','','dropmenu',1124395696,1259133274,'3','7','12','WebGUI::Asset::Template',0,'DropMenu DropMenu dropmenu Navigation','000001000001000025000003',NULL),('PBtmpl0000000000000130','Tree Navigation','','root/import/navigation/tree-navigation',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Tree Navigation Tree Navigation root import navigation tree navigation Navigation','000001000001000025000005',NULL),('PBtmpl0000000000000060','Fail Safe','','fail_safe',1124395696,1258524916,'3','7','12','WebGUI::Asset::Template',0,'Fail Safe Fail Safe fail safe style','000001000001000041000001',NULL),('PBtmpl0000000000000080','FAQ','','faqtemplate',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'FAQ FAQ faqtemplate Collaboration','000001000001000008000002',NULL),('PBtmpl0000000000000099','FAQ Submission Form','','faq_submission_form',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'FAQ Submission Form FAQ Submission Form faq submission form Collaboration/PostForm','000001000001000008000018',NULL),('PBtmpl0000000000000010','Default WebGUI Account Display Template','','default_webgui_account_display_template',1124395696,1287545014,'3','7','12','WebGUI::Asset::Template',0,'Default WebGUI Account Display Template Default WebGUI Account Display Template default webgui account display template Auth/WebGUI/Account','000001000001000005000004000001',NULL),('PBtmpl0000000000000013','Default WebGUI Login Template','','default_webgui_login_template',1124395696,1287545014,'3','7','12','WebGUI::Asset::Template',0,'Default WebGUI Login Template Default WebGUI Login Template default webgui login template Auth/WebGUI/Login','000001000001000005000007000001',NULL),('PBtmpl0000000000000012','Default WebGUI Password Reset Template','','default_webgui_password_reset_template',1124395696,1287545014,'3','7','12','WebGUI::Asset::Template',0,'Default WebGUI Password Reset Template Default WebGUI Password Reset Template default webgui password reset template Auth/WebGUI/Expired','000001000001000005000006000001',NULL),('PBtmpl0000000000000057','Default WebGUI Yes/No Prompt','','default_webgui_yes/no_prompt',1124395696,1147642418,'3','7','12','WebGUI::Asset::Template',0,'Default WebGUI Yes/No Prompt Default WebGUI Yes/No Prompt default webgui yes no prompt prompt','000001000001000031000001',NULL),('PBtmpl0000000000000066','Default USS','','default_uss',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default USS Default USS default uss Collaboration','000001000001000008000001',NULL),('TimeTrackingTMPL000001','Default Time Tracking User View','','default-tt-template-user',1147642417,1201205738,'3','7','12','WebGUI::Asset::Template',0,'Default Time Tracking User View Default Time Tracking User View default tt template user TimeTracking_user','000001000001000046000003000001',NULL),('TimeTrackingTMPL000003','Default Time Tracking Row Template','','default-tt-template-row',1147642417,1229311434,'3','7','12','WebGUI::Asset::Template',0,'Default Time Tracking Row Template Default Time Tracking Row Template default tt template row TimeTracking_row','000001000001000046000002000001',NULL),('TimeTrackingTMPL000002','Default Time Tracking Manager View','','default-tt-template-manager',1147642417,1147642417,'3','7','12','WebGUI::Asset::Template',0,'Default Time Tracking Manager View Default Time Tracking Manager View default tt template manager TimeTracking_manager','000001000001000046000001000001',NULL),('X7DrzUcj8pOKFa_6k9D5iw','Newsletter','','root/import/newsletter',1185754569,1222804045,'3','12','3','WebGUI::Asset::Wobject::Folder',1,'Newsletter Newsletter root import newsletter','000001000001000026',NULL),('PBtmpl0000000000000065','Default Syndicated Content','','default_syndicated_content',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Default Syndicated Content Default Syndicated Content default syndicated content SyndicatedContent','000001000001000043000001',NULL),('CxMpE_UPauZA3p8jdrOABw','Default Questions','','root/import/survey/default-questions',1227556536,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Questions Default Questions root import survey default questions Survey/Take','000001000001000042000006',NULL),('PBtmpl0000000000000059','Default SQL Report','','default_sql_report',1124395696,1229907401,'3','7','12','WebGUI::Asset::Template',0,'Default SQL Report Default SQL Report default sql report SQLReport','000001000001000038000001',NULL),('PBtmpl0000000000000067','Default Submission','','default_submission',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default Submission Default Submission default submission Collaboration/Thread','000001000001000008000006',NULL),('PBtmpl0000000000000068','Default Submission Form','','default_submission_form',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default Submission Form Default Submission Form default submission form Collaboration/PostForm','000001000001000008000017',NULL),('ProjectManagerTMPL0003','Default Project Manager Gantt Chart','','default-pm-template-gantt-chart',1147642415,1159989349,'3','7','12','WebGUI::Asset::Template',0,'Default Project Manager Gantt Chart Default Project Manager Gantt Chart default pm template gantt chart ProjectManager_gantt','000001000001000030000003000001',NULL),('ProjectManagerTMPL0001','Default Project Management System Dashboard','','default-pm-template-dashboard',1147642415,1229579830,'3','7','12','WebGUI::Asset::Template',0,'Default Project Management System Dashboard Default Project Management System Dashboard default pm template dashboard ProjectManager_dashboard','000001000001000030000001000001',NULL),('PBtmpl0000000000000055','Default Poll','','default_poll',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Default Poll Default Poll default poll Poll','000001000001000027000001',NULL),('PBtmpl0000000000000029','Default Post Form','','default_post_form',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default Post Form Default Post Form default post form Collaboration/PostForm','000001000001000008000013',NULL),('PBtmpl0000000000000056','Default Product','','default_product',1124395696,1248729559,'3','7','12','WebGUI::Asset::Template',0,'Default Product Default Product default product Product','000001000001000028000001',NULL),('PBtmpl0000000000000033','Default HTTP Proxy','','default_http_proxy',1124395696,1230159454,'3','7','12','WebGUI::Asset::Template',0,'Default HTTP Proxy Default HTTP Proxy default http proxy HttpProxy','000001000001000016000001',NULL),('PBtmpl0000000000000004','Default LDAP Account Display Template','','default_ldap_account_display_template',1124395696,1287545014,'3','7','12','WebGUI::Asset::Template',0,'Default LDAP Account Display Template Default LDAP Account Display Template default ldap account display template Auth/LDAP/Account','000001000001000005000001000001',NULL),('PBtmpl0000000000000006','Default LDAP Login Template','','default_ldap_login_template',1124395696,1287545014,'3','7','12','WebGUI::Asset::Template',0,'Default LDAP Login Template Default LDAP Login Template default ldap login template Auth/LDAP/Login','000001000001000005000003000001',NULL),('PBtmpl0000000000000044','Default Login Box','','default_login_box',1124395696,1148579524,'3','7','12','WebGUI::Asset::Template',0,'Default Login Box Default Login Box default login box Macro/L_loginBox','000001000001000021000009000002',NULL),('PBtmpl0000000000000047','Default Message Board','','default_message_board',1124395696,1147642414,'3','7','12','WebGUI::Asset::Template',0,'Default Message Board Default Message Board default message board MessageBoard','000001000001000023000001',NULL),('PBtmpl0000000000000054','Default Page','','default_page',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Default Page Default Page default page Layout','000001000001000019000003',NULL),('Q4uX_C557arTp6D_jwB1jQ','Wiki','','root/import/wiki',1165460175,1273032720,'3','12','12','WebGUI::Asset::Wobject::Folder',1,'Wiki Wiki root import wiki','000001000001000052',NULL),('BmLaN4rmAANkCglXUViEbg','Resource','','root/import/projectmanager/resource',1157679165,1222803871,'3','12','12','WebGUI::Asset::Wobject::Folder',1,'Resource Resource root import projectmanager resource','000001000001000030000005',NULL),('PBtmpl0000000000000039','Default File Macro','','default_file_macro',1124395696,1154535073,'3','7','12','WebGUI::Asset::Template',0,'Default File Macro Default File Macro default file macro Macro/File','000001000001000021000004000001',NULL),('PBtmpl0000000000000026','Default Forum','','default_forum',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default Forum Default Forum default forum Collaboration','000001000001000008000007',NULL),('PBtmpl0000000000000031','Default Forum Search','','default_forum_search',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default Forum Search Default Forum Search default forum search Collaboration/Search','000001000001000008000016',NULL),('PBtmpl0000000000000093','crumbTrail','','crumbtrail2',1124395696,1259133274,'3','7','12','WebGUI::Asset::Template',0,'crumbTrail crumbTrail crumbtrail2 Navigation','000001000001000025000001',NULL),('DashboardViewTmpl00001','Dashboard Default View','','dashboard-default-view-template',1133743239,1300763664,'3','7','12','WebGUI::Asset::Template',0,'Dashboard Default View Dashboard Default View dashboard default view template Dashboard','000001000001000009000001',NULL),('PBtmpl0000000000000021','Data List','','data_list',1124395696,1294721945,'3','7','12','WebGUI::Asset::Template',0,'Data List Data List data list DataForm/List','000001000001000010000004',NULL),('PBtmpl0000000000000104','Default Acknowledgement','','default_acknowledgement',1124395696,1257311888,'3','7','12','WebGUI::Asset::Template',0,'Default Acknowledgement Default Acknowledgement default acknowledgement DataForm','000001000001000010000003',NULL),('PBtmpl0000000000000002','Default Article','','default_article',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Default Article Default Article default article Article','000001000001000004000002',NULL),('PBtmpl0000000000000141','Default DataForm','','pbtmpl0000000000000141',1124395696,1257311888,'3','7','12','WebGUI::Asset::Template',0,'Default DataForm Default DataForm pbtmpl0000000000000141 DataForm','000001000001000010000006',NULL),('WikiRCTmpl000000000001','Default Recent Changes','','default-wiki-recent-changes',1165460175,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Default Recent Changes Default Recent Changes default wiki recent changes WikiMaster_recentChanges','000001000001000052000001',NULL),('PBtmpl0000000000000128','Classifieds','','classifieds',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Classifieds Classifieds classifieds Collaboration','000001000001000008000008',NULL),('PBtmpl0000000000000134','Hierarchical Top Nav','','import/hierarchical-top-nav',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Hierarchical Top Nav Hierarchical Top Nav import hierarchical top nav Navigation','000001000001000025000006',NULL),('PBtmpl0000000000000208','Request Tracker','','request-tracker-template',1147642410,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Request Tracker Request Tracker request tracker template Collaboration','000001000001000008000026',NULL),('wAc4azJViVTpo-2NYOXWvg','Default Question Edit','','root/import/survey/default-question-edit',1226009650,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Question Edit Default Question Edit root import survey default question edit Survey/Edit','000001000001000042000008',NULL),('1z9J1O08n_7gVVlBwSRBJQ','Auth','','root/import/auth',1222803099,1287545014,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Auth Auth root import auth','000001000001000005',NULL),('zyWi26q9na-iiZqL4yedog','Macro','','root/import/macro',1222803114,1222803114,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Macro Macro root import macro','000001000001000021',NULL),('PBtmpl0000000000000209','Request Tracker Thread','','request-tracker-post-template',1147642410,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Request Tracker Thread Request Tracker Thread request tracker post template Collaboration/Thread','000001000001000008000027',NULL),('PBtmpl0000000000000109','One Over Three','','one_over_three',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'One Over Three One Over Three one over three Layout','000001000001000019000004',NULL),('PBtmpl0000000000000001','Admin Console','','admin_console2',1124395696,1247535846,'3','7','12','WebGUI::Asset::Template',0,'Admin Console Admin Console admin console2 AdminConsole','000001000001000003000001',NULL),('LBuiKzg2mWwmOPS9AgV3bg','Get Translated','Let our team of professional translators bring your site to new customers by translating your content into additional languages. Our translation services are never machine automated. They\'re always done by professional translators that have years of exper','yns/translated',1147642517,1271348789,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get Translated Get Translated yns translated Let our team of professional translators bring your site to new customers by translating your content into additional languages Our translation services are never machine automated They\'re always done by professional translators that have years of experience reading writing and speaking many languages ','000001000002000002000005',NULL),('jTNggl7AoVSUc_ZzrvuCmw','Get Promoted','Now that you have a brilliant WebGUI site, you need to get people to visit it. We can help there too. Our marketing specialists can work with you to develop and execute the right combination of search engine placement, advertising buys, and affilliate pro','yns/promotion',1147642517,1271348789,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get Promoted Get Promoted yns promotion Now that you have a brilliant WebGUI site you need to get people to visit it We can help there too Our marketing specialists can work with you to develop and execute the right combination of search engine placement advertising buys and affilliate programs to ensure your site gets the traffic it needs ','000001000002000002000006',NULL),('Vzv1pWpg_w6R_o-b0rM2qQ','Ad','','home/ad2',1147642515,1147642515,'3','7','4','WebGUI::Asset::File',1,'Ad Ad home ad2','000001000002000001000002',NULL),('NK8bqlwVRILJknqeCDPBHg','Getting Started (part 2)','\nTo begin managing content, you should log in and click the Turn Admin On! link. The default username is \"admin\" and the default password is \"123qwe\", but you probably customized both of those when you visited this site for the very first time.\n \n\nNow tha','getting_started/getting-started-part2',1147642515,1285796040,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Getting Started part 2 Getting Started part 2 getting started getting started part2 To begin managing content you should log in and click the Turn Admin On link The default username is admin and the default password is 123qwe but you probably customized both of those when you visited this site for the very first time Now that you\'re logged in we recommend that you add a new user for yourself with admin privileges just in case you forget the login information for your primary admin account Don\'t worry if you lock yourself out you can always contact Plain Black® support to get instructions to get back in NOTE If you appear to get logged out while moving between pages this is most likely your browser displaying a cached version of the page Click on your browser\'s refresh button to correct the problem For more information about services related to WebGUI click here Enjoy your new WebGUI site ','000001000002000001000003',NULL),('IWFxZDyGhQ3-SLZhELa3qw','Benefits','\n\n\n\nRich User Interface\n \n\nPowerful API\n \n\n\n\nWebGUI has a rich user experience that allows users to place their \ncontent\nthrough a drag-n-drop interface; helps users pick dates, colors, and\nmore; and has a highly customizable rich editor to allow users to','home/key-benefits',1147642514,1277737686,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Benefits Benefits home key benefits Rich User Interface Powerful API WebGUI has a rich user experience that allows users to place their content through a drag-n-drop interface helps users pick dates colors and more and has a highly customizable rich editor to allow users to quickly and easily format content WebGUI allows developers to quickly plug-in new functionality to get the most from a site In addition WebGUI\'s standardized plug-in points maintain the upgrade path even with customizations Short Friendly URLs Internationalization Never worry about ugly numeric ID\'s or other things in URL\'s that make it hard for search engines and people to use a site Users can work in an interface in their native language and content can be published in as many languages as necessary Personalization Easy To Install Users see their own view of the site through dynamically generated navigation and content In addition content can be displayed based upon users viewing habits With the use of the WebGUI Runtime Environment Unix Mac OS X Linux BSD and VMWare Appliance Windows setup takes minutes rather than hours ','000001000002000007',NULL),('OhdaFLE7sXOzo_SIP2ZUgA','Welcome','The WebGUI Content Engine® is a powerful, easy to use web application framework and content management system. WebGUI contains dozens of built-in features, and allows for full customization through its rich API. It\'s easy enough for the average busine','home/welcome',1147642513,1271445348,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Welcome Welcome home welcome The WebGUI Content Engine® is a powerful easy to use web application framework and content management system WebGUI contains dozens of built-in features and allows for full customization through its rich API It\'s easy enough for the average business user to use but powerful enough for any large enterprise WebGUI serves thousands of small and large businesses schools universities governments associations churches projects and communities throughout the world For examples of who is using WebGUI visit the WebGUI Sightings page Shouldn\'t your site be on this list If you\'re new to WebGUI visit the Getting Started section Once you feel comfortable explore some of the professional services available for your new WebGUI site No matter what level you\'re at tell your friends about WebGUI ','000001000002000006',NULL),('7-0-style0000000000071','wg.jpg','','style3/wg.jpg',1147642511,1147642511,'3','7','12','WebGUI::Asset::File::Image',1,'wg.jpg wg.jpg style3 wg.jpg','000001000001000051000022',NULL),('7-0-style0000000000068','spacer.gif','','style3/spacer.gif',1147642510,1147642510,'3','7','12','WebGUI::Asset::File::Image',1,'spacer.gif spacer.gif style3 spacer.gif','000001000001000051000019',NULL),('7-0-style0000000000070','Style3 Coolmenu','','style3_coolmenu',1147642510,1147642510,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'Style3 Coolmenu Style3 Coolmenu style3 coolmenu','000001000001000051000021',NULL),('7-0-style0000000000066','nav_bg_on.jpg','','style3/nav_bg_on.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg_on.jpg nav_bg_on.jpg style3 nav bg on.jpg','000001000001000051000017',NULL),('7-0-style0000000000064','nav_bg2.jpg','','style3/nav_bg2.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg2.jpg nav_bg2.jpg style3 nav bg2.jpg','000001000001000051000015',NULL),('7-0-style0000000000065','nav_bg2_on.jpg','','style3/nav_bg2_on.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg2_on.jpg nav_bg2_on.jpg style3 nav bg2 on.jpg','000001000001000051000016',NULL),('7-0-style0000000000067','pb.jpg','','style3/pb.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'pb.jpg pb.jpg style3 pb.jpg','000001000001000051000018',NULL),('7-0-style0000000000063','nav_bg1_on.jpg','','style3/nav_bg1_on.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg1_on.jpg nav_bg1_on.jpg style3 nav bg1 on.jpg','000001000001000051000014',NULL),('7-0-style0000000000060','main_top_bg.jpg','','style3/main_top_bg.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'main_top_bg.jpg main_top_bg.jpg style3 main top bg.jpg','000001000001000051000011',NULL),('7-0-style0000000000062','nav_bg1.jpg','','style3/nav_bg1.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg1.jpg nav_bg1.jpg style3 nav bg1.jpg','000001000001000051000013',NULL),('7-0-style0000000000061','nav_bg.jpg','','style3/nav_bg.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg.jpg nav_bg.jpg style3 nav bg.jpg','000001000001000051000012',NULL),('7-0-style0000000000059','main_top.jpg','','style3/main_top.jpg',1147642507,1213386091,'3','7','12','WebGUI::Asset::File::Image',1,'main_top.jpg main_top.jpg style3 main top.jpg','000001000001000051000010',NULL),('7-0-style0000000000057','main_bg.jpg','','style3/main_bg.jpg',1147642507,1147642507,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg.jpg main_bg.jpg style3 main bg.jpg','000001000001000051000008',NULL),('7-0-style0000000000058','main_bottom.jpg','','style3/main_bottom.jpg',1147642507,1147642507,'3','7','12','WebGUI::Asset::File::Image',1,'main_bottom.jpg main_bottom.jpg style3 main bottom.jpg','000001000001000051000009',NULL),('7-0-style0000000000055','header_left.jpg','','style3/header_left.jpg',1147642506,1147642506,'3','7','12','WebGUI::Asset::File::Image',1,'header_left.jpg header_left.jpg style3 header left.jpg','000001000001000051000006',NULL),('7-0-style0000000000056','header_right.jpg','','style3/header_right.jpg',1147642506,1147642506,'3','7','12','WebGUI::Asset::File::Image',1,'header_right.jpg header_right.jpg style3 header right.jpg','000001000001000051000007',NULL),('7-0-style0000000000054','header_bg.jpg','','style3/header_bg.jpg',1147642506,1147642506,'3','7','12','WebGUI::Asset::File::Image',1,'header_bg.jpg header_bg.jpg style3 header bg.jpg','000001000001000051000005',NULL),('7-0-style0000000000052','footer_bg.jpg','','style3/footer_bg.jpg',1147642505,1147642505,'3','7','12','WebGUI::Asset::File::Image',1,'footer_bg.jpg footer_bg.jpg style3 footer bg.jpg','000001000001000051000003',NULL),('7-0-style0000000000053','footer_right.jpg','','style3/footer_right.jpg',1147642505,1147642505,'3','7','12','WebGUI::Asset::File::Image',1,'footer_right.jpg footer_right.jpg style3 footer right.jpg','000001000001000051000004',NULL),('7-0-style0000000000046','rightCol_bg.jpg','','style2/rightcol_bg.jpg',1147642504,1147642504,'3','7','12','WebGUI::Asset::File::Image',1,'rightCol_bg.jpg rightCol_bg.jpg style2 rightcol bg.jpg','000001000001000050000015',NULL),('7-0-style0000000000049','WebGUI 7 Style 3','','root/import/webgui-7-style-3',1147642504,1224117144,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI 7 Style 3 WebGUI 7 Style 3 root import webgui 7 style 3','000001000001000051',NULL),('7-0-style0000000000048','wg.jpg','','style2/wg.jpg',1147642504,1147642504,'3','7','12','WebGUI::Asset::File::Image',1,'wg.jpg wg.jpg style2 wg.jpg','000001000001000050000017',NULL),('7-0-style0000000000045','pb_wg_bg.jpg','','style2/pb_wg_bg.jpg',1147642503,1147642503,'3','7','12','WebGUI::Asset::File::Image',1,'pb_wg_bg.jpg pb_wg_bg.jpg style2 pb wg bg.jpg','000001000001000050000014',NULL),('7-0-style0000000000044','pb_wg.jpg','','style2/pb_wg.jpg',1147642503,1147642503,'3','7','12','WebGUI::Asset::File::Image',1,'pb_wg.jpg pb_wg.jpg style2 pb wg.jpg','000001000001000050000013',NULL),('7-0-style0000000000043','pb.jpg','','style2/pb.jpg',1147642503,1147642503,'3','7','12','WebGUI::Asset::File::Image',1,'pb.jpg pb.jpg style2 pb.jpg','000001000001000050000012',NULL),('7-0-style0000000000042','page_title_bg.jpg','','style2/page_title_bg.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'page_title_bg.jpg page_title_bg.jpg style2 page title bg.jpg','000001000001000050000011',NULL),('7-0-style0000000000041','page_title.jpg','','style2/page_title.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'page_title.jpg page_title.jpg style2 page title.jpg','000001000001000050000010',NULL),('7-0-style0000000000040','navbar_right.jpg','','style2/navbar_right.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'navbar_right.jpg navbar_right.jpg style2 navbar right.jpg','000001000001000050000009',NULL),('7-0-style0000000000039','navbar_left.jpg','','style2/navbar_left.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'navbar_left.jpg navbar_left.jpg style2 navbar left.jpg','000001000001000050000008',NULL),('7-0-style0000000000036','main_bg.jpg','','style2/main_bg.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg.jpg main_bg.jpg style2 main bg.jpg','000001000001000050000005',NULL),('7-0-style0000000000038','navbar_bg.jpg','','style2/navbar_bg.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'navbar_bg.jpg navbar_bg.jpg style2 navbar bg.jpg','000001000001000050000007',NULL),('7-0-style0000000000035','leftCol_header02.jpg','','style2/leftcol_header02.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'leftCol_header02.jpg leftCol_header02.jpg style2 leftcol header02.jpg','000001000001000050000004',NULL),('7-0-style0000000000037','nav_bg.jpg','','style2/nav_bg.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg.jpg nav_bg.jpg style2 nav bg.jpg','000001000001000050000006',NULL),('7-0-style0000000000032','context_bg.jpg','','style2/context_bg.jpg',1147642500,1147642500,'3','7','12','WebGUI::Asset::File::Image',1,'context_bg.jpg context_bg.jpg style2 context bg.jpg','000001000001000050000001',NULL),('7-0-style0000000000031','WebGUI 7 Style 2','','root/import/webgui-7-style-2',1147642500,1147642500,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI 7 Style 2 WebGUI 7 Style 2 root import webgui 7 style 2','000001000001000050',NULL),('7-0-style0000000000033','css02.css','','style2/css02.css',1147642500,1147642500,'3','7','12','WebGUI::Asset::Snippet',0,'css02.css css02.css style2 css02.css body html height:100 body background:#7c9ab0 url(\'^FileUrl(style2/main_bg.jpg repeat-y right margin:0px rightColumn width:20 height:100 background eeeeee url(\'^FileUrl(style2/rightCol_bg.jpg repeat-y right text-align:center rightColumn pb_wg_bg background url(\'^FileUrl(style2/pb_wg_bg.jpg repeat-x width:100 text-align:left rightColumn pb_wg background url(\'^FileUrl(style2/pb_wg.jpg left no-repeat height:53px leftColumn width:80 background white url(\'^FileUrl(style2/context_bg.jpg repeat-y right leftColumn header width:100 background:#7c9ab0 url(\'^FileUrl(style2/leftCol_header.jpg right no-repeat height:86px position:relative leftColumn header title leftColumn header title_bg color:white font-size:36pt font-weight:bold font-family:arial font-variant:small-caps letter-spacing:12px top:15px left:5px position:absolute z-index:10 leftColumn header title a color:white text-decoration:none leftColumn header title_bg color:black z-index:5 top:17px left:7px leftColumn context background fff url(\'^FileUrl(style2/context_bg.jpg repeat-y right width:95 font-family:verdana font-size:9pt color:#242424 moz-box-sizing:border-box position:relative padding-left:1 padding-right:1 padding-bottom:15px leftColumn context a color:#7C9AB0 font-weight:bold leftColumn context a:hover text-decoration:none leftColumn pageTitleBG background url(\'^FileUrl(style2/page_title_bg.jpg repeat-x width:100 leftColumn pageTitleBG pageTitle background url(\'^FileUrl(style2/page_title.jpg right no-repeat width:100 height:50px leftColumn pageTitleBG pageTitle h2 font-size:14pt color:#696969 font-family:arial font-weight:normal margin:0px padding-top:2px padding-left:25px letter-spacing:3px rightColumn nav width:85 background b5b5b5 url(\'^FileUrl(style2/nav_bg.jpg repeat-x top border-right:solid 848484 1px margin-left:auto margin-right:auto text-align:left padding-left:3px padding-top:7px padding-bottom:7px rightColumn nav a color:white font-size:8pt font-weight:bold text-decoration:none font-family:arial line-height:8pt rightColumn nav selectedMenuItem color:yellow loginStyles font-size:8pt font-family:arial padding-bottom:25px loginStyles a color:#89ACCF font-weight:bold border-bottom:solid transparent 2px text-decoration:none loginStyles a:hover border-bottom:dotted B2C9D9 2px copyright border-top:solid silver 3px background-color:gray font-family:arial font-size:9pt color:silver text-align:center ','000001000001000050000002',NULL),('7-0-style0000000000034','leftCol_header.jpg','','style2/leftcol_header.jpg',1147642500,1147642500,'3','7','12','WebGUI::Asset::File::Image',1,'leftCol_header.jpg leftCol_header.jpg style2 leftcol header.jpg','000001000001000050000003',NULL),('stevenav00000000000001','Style 01 Nav','','style1_nav',1147642499,1147642499,'3','7','12','WebGUI::Asset::Template',0,'Style 01 Nav Style 01 Nav style1 nav Navigation','000001000001000049000027',NULL),('PBnav000000style01lvl2','Style 01 Nav lvl2','','style1_nav_lvl2',1147642499,1147642499,'3','7','12','WebGUI::Asset::Template',0,'Style 01 Nav lvl2 untitled style1 nav lvl2 Navigation','000001000001000049000028',NULL),('7-0-style0000000000030','webgui_btn.jpg','','style1/webgui_btn.jpg',1147642499,1147642499,'3','7','12','WebGUI::Asset::File::Image',1,'webgui_btn.jpg webgui_btn.jpg style1 webgui btn.jpg','000001000001000049000029',NULL),('7-0-style0000000000026','RootTab Level 1','','roottab_level1',1147642499,1147642499,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'RootTab Level 1 RootTab Level 1 roottab level1','000001000001000049000025',NULL),('7-0-style0000000000024','orange_left01.jpg','','style1/orange_left01.jpg',1147642498,1147642498,'3','7','12','WebGUI::Asset::File::Image',1,'orange_left01.jpg orange_left01.jpg style1 orange left01.jpg','000001000001000049000023',NULL),('7-0-style0000000000023','nav_on.jpg','','style1/nav_on.jpg',1147642498,1147642498,'3','7','12','WebGUI::Asset::File::Image',1,'nav_on.jpg nav_on.jpg style1 nav on.jpg','000001000001000049000022',NULL),('7-0-style0000000000025','RootTab Level 0','','roottab_level0',1147642498,1147642498,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'RootTab Level 0 RootTab Level 0 roottab level0','000001000001000049000024',NULL),('7-0-style0000000000019','nav2_off_right.jpg','','style1/nav2_off_right.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_off_right.jpg nav2_off_right.jpg style1 nav2 off right.jpg','000001000001000049000018',NULL),('7-0-style0000000000020','nav2_on_left.jpg','','style1/nav2_on_left.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_on_left.jpg nav2_on_left.jpg style1 nav2 on left.jpg','000001000001000049000019',NULL),('7-0-style0000000000022','nav_bg.jpg','','style1/nav_bg.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg.jpg nav_bg.jpg style1 nav bg.jpg','000001000001000049000021',NULL),('7-0-style0000000000021','nav2_on_right.jpg','','style1/nav2_on_right.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_on_right.jpg nav2_on_right.jpg style1 nav2 on right.jpg','000001000001000049000020',NULL),('7-0-style0000000000017','nav2_off_center.jpg','','style1/nav2_off_center.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_off_center.jpg nav2_off_center.jpg style1 nav2 off center.jpg','000001000001000049000016',NULL),('7-0-style0000000000016','nav2_center_on.jpg','','style1/nav2_center_on.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_center_on.jpg nav2_center_on.jpg style1 nav2 center on.jpg','000001000001000049000015',NULL),('7-0-style0000000000018','nav2_off_left.jpg','','style1/nav2_off_left.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_off_left.jpg nav2_off_left.jpg style1 nav2 off left.jpg','000001000001000049000017',NULL),('7-0-style0000000000015','nav1_on_right.jpg','','style1/nav1_on_right.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_on_right.jpg nav1_on_right.jpg style1 nav1 on right.jpg','000001000001000049000014',NULL),('7-0-style0000000000014','nav1_on_left.jpg','','style1/nav1_on_left.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_on_left.jpg nav1_on_left.jpg style1 nav1 on left.jpg','000001000001000049000013',NULL),('7-0-style0000000000013','nav1_on.jpg','','style1/nav1_on.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_on.jpg nav1_on.jpg style1 nav1 on.jpg','000001000001000049000012',NULL),('7-0-style0000000000011','nav1_off_left.jpg','','style1/nav1_off_left.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off_left.jpg nav1_off_left.jpg style1 nav1 off left.jpg','000001000001000049000010',NULL),('7-0-style0000000000012','nav1_off_right.jpg','','style1/nav1_off_right.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off_right.jpg nav1_off_right.jpg style1 nav1 off right.jpg','000001000001000049000011',NULL),('7-0-style0000000000009','nav1_off.jpg','','style1/nav1_off.jpg',1147642494,1147642494,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off.jpg nav1_off.jpg style1 nav1 off.jpg','000001000001000049000008',NULL),('7-0-style0000000000010','nav1_off_center.jpg','','style1/nav1_off_center.jpg',1147642494,1147642494,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off_center.jpg nav1_off_center.jpg style1 nav1 off center.jpg','000001000001000049000009',NULL),('7-0-style0000000000008','nav1_center_on.jpg','','style1/nav1_center_on.jpg',1147642494,1147642494,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_center_on.jpg nav1_center_on.jpg style1 nav1 center on.jpg','000001000001000049000007',NULL),('7-0-style0000000000006','main_bg.gif','','style1/main_bg.gif',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg.gif main_bg.gif style1 main bg.gif','000001000001000049000005',NULL),('7-0-style0000000000007','main_bg.jpg','','style1/main_bg.jpg',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg.jpg main_bg.jpg style1 main bg.jpg','000001000001000049000006',NULL),('7-0-style0000000000004','gui_bottom.jpg','','style1/gui_bottom.jpg',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'gui_bottom.jpg gui_bottom.jpg style1 gui bottom.jpg','000001000001000049000003',NULL),('7-0-style0000000000005','header.jpg','','style1/header.jpg',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'header.jpg header.jpg style1 header.jpg','000001000001000049000004',NULL),('7-0-style0000000000001','WebGUI 7 Style 1','','root/import/webgui-7-style-1',1147642492,1147642492,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI 7 Style 1 WebGUI 7 Style 1 root import webgui 7 style 1','000001000001000049',NULL),('7-0-style0000000000002','body_bg.jpg','','style1/body_bg.jpg',1147642492,1147642492,'3','7','12','WebGUI::Asset::File::Image',1,'body_bg.jpg body_bg.jpg style1 body bg.jpg','000001000001000049000001',NULL),('7-0-style0000000000003','css01.css','','style1/css01.css',1147642492,1147642492,'3','7','12','WebGUI::Asset::Snippet',0,'css01.css css01.css style1 css01.css body html text-align:center margin:0px height:100 background-color:#494949 main width:800px background url(\'^FileUrl(style1/main_bg.jpg repeat-y height:100 margin-left:auto margin-right:auto margin-top:0px margin-bottom:0px position:relative body > main height:auto min-height:100 main mainHeader width:800px height:133px background url(\'^FileUrl(style1/header.jpg top left no-repeat margin-bottom:0px position:relative main mainHeader title position:absolute top:23px left:145px font-size:32pt font-family:arial color:white font-weight:bold main mainHeader title a color:white text-decoration:none main mainContent background url(\'^FileUrl(style1/orange_left01.jpg left top no-repeat width:100 height:100 margin-top:0px text-align:left border:solid red 0px main > mainContent margin-top:0px min-height:500px main > mainContent > p margin-top:0px main mainContent mainText a:link color:#FF7F23 main mainContent mainText a:visited color:#D25900 LEVEL 1 AND 2 NAVIGATION main mainNav_1 main mainNav_2 border-bottom:dashed DADADA 1px width:621px height:25px text-align:left position:relative margin-left:137px clear:both main mainNav_1 a:link main mainNav_1 a:visited main mainNav_2 a:link main mainNav_2 a:visited color:white text-decoration:none top:5px position:relative moz-box-sizing:border-box main mainNav_1 a:hover,#main mainNav_2 a:hover color:black main mainNav_1 div left main mainNav_2 div left width:12px height:25px display:block float:left background url(\'^FileUrl(style1/nav1_off_left.jpg no-repeat top left main mainNav_2 div left background url(\'^FileUrl(style1/nav2_off_left.jpg no-repeat top left main mainNav_1 div center main mainNav_2 div center height:25px display:block float:left background url(\'^FileUrl(style1/nav1_off_center.jpg repeat-x top left color:white font-family:arial verdana font-size:8pt main mainNav_2 div center background url(\'^FileUrl(style1/nav2_off_center.jpg repeat-x top left main mainNav_1 div right main mainNav_2 div right width:10px height:25px display:block float:left background url(\'^FileUrl(style1/nav1_off_right.jpg no-repeat top left main mainNav_2 div right background url(\'^FileUrl(style1/nav2_off_right.jpg no-repeat top left main mainNav_1 div.navOn left background url(\'^FileUrl(style1/nav1_on_left.jpg no-repeat top left main mainNav_1 div.navOn center background url(\'^FileUrl(style1/nav1_center_on.jpg repeat-x top left main mainNav_1 div.navOn right background url(\'^FileUrl(style1/nav1_on_right.jpg no-repeat top left main mainNav_2 div.navOn left background url(\'^FileUrl(style1/nav2_on_left.jpg no-repeat top left main mainNav_2 div.navOn center background url(\'^FileUrl(style1/nav2_center_on.jpg repeat-x top left main mainNav_2 div.navOn right background url(\'^FileUrl(style1/nav2_on_right.jpg no-repeat top left main mainNav_1 div.navOn a:link main mainNav_1 div.navOn a:visited main mainNav_2 div.navOn a:link main mainNav_2 div.navOn a:visited color:black ENDOF LEVEL 1 AND 2 NAVIGATION main crumbTrail margin-left:177px margin-bottom:0px color:gray font-size:8pt font-weight:bold main crumbTrail a.crumbTrail:visited main crumbTrail a.crumbTrail:link color:silver font-size:8pt font-family:arial text-decoration:none font-weight:normal main crumbTrail a.crumbTrail:hover color:gray main mainText padding-left:150px font-family:verdana font-size:9pt width:600px margin-top:0px main gui bottom:0px left:0px position:absolute width:135px font-size:8pt color:black font-family:arial text-align:right main gui loginBox padding-right:12px moz-box-sizing:border-box width:100px float:right margin-bottom:10px main gui loginBox loginBoxField width:75px main gui loginBox loginBoxButton background-color:#D65501 color:white border:solid white 2px margin-top:4px font-variant:small-caps main gui a color:white copyright color:#fff position:absolute top:110px right:40px font-family:verdana font-size:8pt font-weight:bold background-color:#2D2D2D opacity:0.4 moz-opacity:0.4 khtml-opacity:0.4 padding:2px html copyright background transparent ','000001000001000049000002',NULL),('7F-BuEHi7t9bPi008H8xZQ','Default Survey Summary','','root/import/survey/default-survey-summary',1239248021,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Survey Summary Default Survey Summary root import survey default survey summary Survey/Summary','000001000001000042000012',NULL),('CSN-ZON7Uwv8kxf3F1fh5Q','ZipArchiveAsset','','root/import/ziparchiveasset',1147642484,1147642484,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ZipArchiveAsset ZipArchiveAsset root import ziparchiveasset','000001000001000053',NULL),('TCtybxdqmdwdvRn555zpCQ','RichEdit','','root/import/richedit',1147642484,1147642484,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'RichEdit RichEdit root import richedit','000001000001000032',NULL),('NywJYmGWe1f6EBXJnWg9Xg','Profile','','root/import/profile',1222803606,1222803638,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Profile Profile root import profile','000001000001000029',NULL),('9wKWdum0_8z-OhhquWLtSQ','WeatherData','','root/import/weatherdata',1147642483,1147642483,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WeatherData WeatherData root import weatherdata','000001000001000048',NULL),('AgyFhx3eXlfZXNp2MkrsiQ','Edit','','root/import/profile/edit',1147642477,1222803665,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Edit Edit root import profile edit','000001000001000029000001',NULL),('F7MAQ-cpuvQ1KuC7J4P5zQ','View','','root/import/profile/view',1147642477,1222803673,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'View View root import profile view','000001000001000029000002',NULL),('oGfxez5sksyB_PcaAsEm_Q','SyndicatedContent','','root/import/syndicatedcontent',1147642482,1247053097,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'SyndicatedContent SyndicatedContent root import syndicatedcontent','000001000001000043',NULL),('5bnNzteN7w3NnK9mF4XiCg','Survey','','root/import/survey',1147642481,1250243000,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Survey Survey root import survey','000001000001000042',NULL),('Efe2W0UgrSRDltNJ87jlfg','StockData','','root/import/stockdata',1147642480,1147642480,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'StockData StockData root import stockdata','000001000001000039',NULL),('bbiA9Zq5Gy2oCFBlILO3QA','SQLReport','','root/import/sqlreport',1147642480,1147642480,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'SQLReport SQLReport root import sqlreport','000001000001000038',NULL),('RrV4aAPnn4dM0ZcU3OXnlw','style','','root/import/style',1147642480,1286336607,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'style style root import style','000001000001000041',NULL),('Ik9HHky10DIyFTKehUD1dw','Prompt','','root/import/prompt',1147642479,1222803478,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Prompt Prompt root import prompt','000001000001000031',NULL),('f_tn9FfoSfKWX43F83v_3w','Search','','root/import/search',1147642479,1247053009,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Search Search root import search','000001000001000034',NULL),('Da6KWn805L4B5e4HFgQRQA','Shortcut','','root/import/shortcut',1147642479,1147642479,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Shortcut Shortcut root import shortcut','000001000001000037',NULL),('TYo2Bwl7aafzTtdHlS-arQ','Product','','root/import/product',1147642478,1211664878,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Product Product root import product','000001000001000028',NULL),('VZK3CRgiMb8r4dBjUmCTgQ','Poll','','root/import/poll',1147642477,1247046242,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Poll Poll root import poll','000001000001000027',NULL),('jEz8iTGNWEt2I05IhVV19Q','Operation/RedeemSubscription','','root/import/operation/redeemsubscription',1147642477,1313542961,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Operation/RedeemSubscription Operation/RedeemSubscription root import operation redeemsubscription','000001000001000036000016',NULL),('BFfNj5wA9bDw8H3cnr8pTw','Navigation','','root/import/navigation',1147642475,1247046273,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Navigation Navigation root import navigation','000001000001000025',NULL),('bBzO4CWjqU_ile3gf5Iypw','MultiSearch','','root/import/multisearch',1147642475,1147642475,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'MultiSearch MultiSearch root import multisearch','000001000001000024',NULL),('cj2y4papTVGZRFdwTI-_fw','MessageBoard','','root/import/messageboard',1147642475,1147642475,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'MessageBoard MessageBoard root import messageboard','000001000001000023',NULL),('3womoo7Teyy2YKFa25-MZg','Address Book (Default)','','shopping-cart-collateral-items/address-book-default',1212098997,1313542961,'3','7','3','WebGUI::Asset::Template',0,'Address Book Default Address Book Default shopping cart collateral items address book default Shop/AddressBook','000001000001000036000013',NULL),('g8W53Pd71uHB9pxaXhWf_A','My Purchases Detail (Default)','','shopping-cart-collateral-items/my-purchases-detail-default',1213184121,1313542961,'3','7','3','WebGUI::Asset::Template',0,'My Purchases Detail Default My Purchases Detail Default shopping cart collateral items my purchases detail default Shop/MyPurchasesDetail','000001000001000036000015',NULL),('-WM2dt0ZGpDasuL2wWocxg','ProjectManager','','root/import/projectmanager',1222803056,1222803056,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ProjectManager ProjectManager root import projectmanager','000001000001000030',NULL),('LdiozcIUciWuvt3Z-na5Ww','Matrix','','root/import/matrix',1147642474,1281501162,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Matrix Matrix root import matrix','000001000001000022',NULL),('default_post_received1','Default Post Received','','default_post_received',1222708029,1277868922,'3','7','4','WebGUI::Asset::Template',0,'Default Post Received Default Post Received default post received Collaboration/PostReceived','000001000001000008000029',NULL),('aNNC62qLAS6TB-0_MCYjsw','Layout','','root/import/layout',1147642471,1246969327,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Layout Layout root import layout','000001000001000019',NULL),('GYaFxnMu9UsEG8oanwB6TA','Folder','','root/import/folder',1147642470,1246965871,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Folder Folder root import folder','000001000001000014',NULL),('N13SD1Fpqk00UgBt1Z8ivQ','HttpProxy','','root/import/httpproxy',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'HttpProxy HttpProxy root import httpproxy','000001000001000016',NULL),('tPagC0AQErZXjLFZQ6OI1g','ImageAsset','','root/import/imageasset',1147642470,1246966459,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ImageAsset ImageAsset root import imageasset','000001000001000017',NULL),('3uuBf8cYuj1sew2OJXl9tg','InOutBoard','','root/import/inoutboard',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'InOutBoard InOutBoard root import inoutboard','000001000001000018',NULL),('PBtmpl0000000000000005','Default LDAP Anonymous Registration Template','','default_ldap_anonymous_registration_template',1124395696,1287545014,'3','7','12','WebGUI::Asset::Template',0,'Default LDAP Anonymous Registration Template Default LDAP Anonymous Registration Template default ldap anonymous registration template Auth/LDAP/Create','000001000001000005000002000001',NULL),('PBtmpl0000000000000011','Default WebGUI Anonymous Registration Template','','default_webgui_anonymous_registration_template',1124395696,1287545014,'3','7','12','WebGUI::Asset::Template',0,'Default WebGUI Anonymous Registration Template Default WebGUI Anonymous Registration Template default webgui anonymous registration template Auth/WebGUI/Create','000001000001000005000005000001',NULL),('tXwf1zaOXTvsqPn6yu-GSw','FileAsset','','root/import/fileasset',1147642469,1246965607,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'FileAsset FileAsset root import fileasset','000001000001000013',NULL),('S1A9iAwKcQQ6P20uTqw-Ew','Dashboard','','root/import/dashboard',1147642468,1300763664,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Dashboard Dashboard root import dashboard','000001000001000009',NULL),('-K8Hj45mbelljN9-0CXZxg','DataForm',' ','root/import/dataform',1147642468,1257311887,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'DataForm DataForm root import dataform','000001000001000010',NULL),('GNOAsX98vCsl0JRwfwL-gg','Collaboration','','root/import/collaboration',1147642466,1277868921,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Collaboration Collaboration root import collaboration','000001000001000008',NULL),('pbtmpl0000000000000220','Flash Style 3 Template','','flash-style-3-template',1147642465,1247488979,'3','7','12','WebGUI::Asset::Template',0,'Flash Style 3 Template Flash Style 3 Template flash style 3 template FileAsset','000001000001000013000002',NULL),('pbtmpl0000000000000221','Flash Tutorial Template','','flash-tutorial-template',1147642465,1247487940,'3','7','12','WebGUI::Asset::Template',0,'Flash Tutorial Template Flash Tutorial Template flash tutorial template FileAsset','000001000001000013000003',NULL),('nbSrhXZQuxIjhWFaFPSuVA','AdminConsole','','root/import/adminconsole',1147642465,1147642465,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'AdminConsole AdminConsole root import adminconsole','000001000001000003',NULL),('TvOZs8U1kRXLtwtmyW75pg','Article','','root/import/article',1147642465,1256092368,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Article Article root import article','000001000001000004',NULL),('PBtmpl0000000000000027','Default Forum Notification','','default_forum_notification',1124395696,1311652541,'3','7','12','WebGUI::Asset::Template',0,'Default Forum Notification Default Forum Notification default forum notification Collaboration/Notification','000001000001000008000015',NULL),('-PkdI8l1idu-8gDX3iOdcw','One Over Two','','one_over_two',1247482172,1259133274,'3','7','12','WebGUI::Asset::Template',0,'One Over Two One Over Two one over two Layout','000001000001000019000007',NULL),('FEDP3dk8J3Chw_gyr7_XEQ','navigation.css','','navigation.css',1246278679,1246278679,'3','7','12','WebGUI::Asset::Snippet',0,'navigation.css navigation.css navigation.css Horizontal Menu styles horizontalMenu ul.menu padding 0 margin 0 0 1em list-style none width 100 clear floated li elements overflow auto clear floated li elements horizontalMenu ul.menu li float left horizontalMenu ul.menu li a float left padding 4px 8px margin-right 1px background ddd color 000 text-decoration none horizontalMenu ul.menu li.current a background:#eee horizontalMenu ul.menu li a:hover background:#fff Tabs tabbed navigation styles tabsMenu ul.menu margin 0 0 1em tabsMenu ul.menu li display inline tabsMenu ul.menu li a border 1px solid 999 border-bottom 0 padding 5px 10px 2px color 777 text-decoration:none tabsMenu ul.menu li.current a tabsMenu ul.menu li a:hover border 1px solid 000 border-bottom 0 color 000 Indent Nav styles indentMenu a.level0 margin-left:0px display:block indentMenu a.level1 margin-left:15px display:block indentMenu a.level2 margin-left:30px display:block indentMenu a.level3 margin-left:45px display:block indentMenu a.level4 margin-left:60px display:block ','000001000001000025000028',NULL),('PBnav00000000indentnav','Indent Nav','','indent_nav',1148579525,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Indent Nav Indent Nav indent nav Navigation','000001000001000025000027',NULL),('PBtmpl0000000000000085','Default Email','','default_email',1124395696,1288747840,'3','7','12','WebGUI::Asset::Template',0,'Default Email Default Email default email DataForm','000001000001000010000002',NULL),('PBnav00000000000bullet','Bulleted List','','bulleted_list',1148579524,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Bulleted List Bulleted List bulleted list Navigation','000001000001000025000026',NULL),('StockDataTMPL000000002','StockData Default Display','','stockdatatmpl000000002',1133743239,1229494994,'3','7','12','WebGUI::Asset::Template',0,'StockData Default Display StockData Default Display stockdatatmpl000000002 StockData/Display','000001000001000039000001',NULL),('2OcUWHVsu_L1sDFzIMWYqw','TimeTracking','','root/import/timetracking',1222803070,1222803070,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'TimeTracking TimeTracking root import timetracking','000001000001000046',NULL),('PBtmpl0000000000000014','Default WebGUI Password Recovery Template','','default_webgui_password_recovery_template',1124395696,1287545015,'3','7','12','WebGUI::Asset::Template',0,'Default WebGUI Password Recovery Template Default WebGUI Password Recovery Template default webgui password recovery template Auth/WebGUI/Recovery2','000001000001000005000008000001',NULL),('ProjectManagerTMPL0006','Default Resource List','','default-pm-resource-list',1157679165,1157679165,'3','7','12','WebGUI::Asset::Template',0,'Default Resource List Default Resource List default pm resource list ProjectManager_resourceList','000001000001000030000005000001',NULL),('ProjectManagerTMPL0005','Default Resource Popup','','default-pm-resource-popup',1157679165,1229579830,'3','7','12','WebGUI::Asset::Template',0,'Default Resource Popup Default Resource Popup default pm resource popup ProjectManager_resourcePopup','000001000001000030000005000002',NULL),('PBtmpl0000000000000032','Default Thread','','default_thread',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default Thread Default Thread default thread Collaboration/Thread','000001000001000008000014',NULL),('WeatherDataTmpl0000001','WeatherData Default View','','weatherdatatmpl0000001',1133743239,1210711353,'3','7','12','WebGUI::Asset::Template',0,'WeatherData Default View WeatherData Default View weatherdatatmpl0000001 WeatherData','000001000001000048000001',NULL),('PBasset000000000000001','Root','','root',1124395696,1124395696,'3','7','3','WebGUI::Asset',0,'Root Root root','000001',NULL),('PBrichedit000000000001','Content Manager\'s Rich Edit','','content_managers_rich_edit',1124395696,1256092369,'3','7','12','WebGUI::Asset::RichEdit',0,'Content Manager\'s Rich Edit Content Manager\'s Rich Edit content managers rich edit','000001000001000032000001',NULL),('PBrichedit000000000002','Forum Rich Edit','','forum_rich_edit',1124395696,1124395696,'3','7','12','WebGUI::Asset::RichEdit',0,'Forum Rich Edit Forum Rich Edit forum rich edit','000001000001000032000002',NULL),('SynConXSLT000000000001','RSS 0.9 XSLT Stylesheet','','xslt/rss0.9.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',0,'RSS 0.9 XSLT Stylesheet RSS 0.9 XSLT xslt rss0.9.xsl You\'re viewing an RSS version 0.9 feed Please use an RSS feed reader to view this content as intended','000001000001000043000003',NULL),('SynConXSLT000000000002','RSS 0.91 XSLT Stylesheet','','xslt/rss0.91.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',0,'RSS 0.91 XSLT Stylesheet RSS 0.91 XSLT xslt rss0.91.xsl You\'re viewing an RSS version 0.91 feed Please use an RSS feed reader to view this content as intended','000001000001000043000004',NULL),('SynConXSLT000000000003','RSS 1.0 XSLT Stylesheet','','xslt/rss1.0.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',0,'RSS 1.0 XSLT Stylesheet RSS 1.0 XSLT xslt rss1.0.xsl You\'re viewing an RSS version 1.0 feed Please use an RSS feed reader to view this content as intended ','000001000001000043000005',NULL),('SynConXSLT000000000004','RSS 2.0 XSLT Stylesheet','','xslt/rss2.0.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',0,'RSS 2.0 XSLT Stylesheet RSS 2.0 XSLT xslt rss2.0.xsl You\'re viewing an RSS version 2.0 feed Please use an RSS feed reader to view this content as intended ','000001000001000043000006',NULL),('vrKXEtluIhbmAS9xmPukDA','Donation (Default)','','root/import/default-donation-template',1212092352,1313542961,'3','7','12','WebGUI::Asset::Template',0,'Donation Default Donation Default root import default donation template Donation','000001000001000036000010',NULL),('eqb9sWjFEVq0yHunGV8IGw','Subscription (Default)','','root/import/subscription-default',1213182595,1313542961,'3','7','12','WebGUI::Asset::Template',0,'Subscription Default Subscription Default root import subscription default Subscription','000001000001000036000012',NULL),('PBtmpl0000000000000036','Default Admin Toggle Macro','','default_admin_toggle_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default Admin Toggle Macro Default Admin Toggle Macro default admin toggle macro Macro/AdminToggle','000001000001000021000001000001',NULL),('PBtmpl0000000000000037','Default Account Macro','','default_account_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default Account Macro Default Account Macro default account macro Macro/a_account','000001000001000021000002000001',NULL),('PBtmpl0000000000000038','Default Editable Toggle Macro','','default_editable_toggle_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default Editable Toggle Macro Default Editable Toggle Macro default editable toggle macro Macro/EditableToggle','000001000001000021000003000001',NULL),('PBtmpl0000000000000040','Default Group Add Macro','','default_group_add_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default Group Add Macro Default Group Add Macro default group add macro Macro/GroupAdd','000001000001000021000005000001',NULL),('PBtmpl0000000000000041','Default Group Delete Macro','','default_group_delete_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default Group Delete Macro Default Group Delete Macro default group delete macro Macro/GroupDelete','000001000001000021000006000001',NULL),('PBtmpl0000000000000042','Default Homelink','','default_homelink',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default Homelink Default Homelink default homelink Macro/H_homeLink','000001000001000021000007000001',NULL),('PBtmpl0000000000000043','Default LoginToggle','','default_logintoggle',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default LoginToggle Default LoginToggle default logintoggle Macro/LoginToggle','000001000001000021000008000001',NULL),('PBtmpl0000000000000045','Default Make Printable','','default_make_printable',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default Make Printable Default Make Printable default make printable Macro/r_printable','000001000001000021000011000001',NULL),('PBtmpl0000000000000091','File no icon','','file_no_icon',1124395696,1129049189,'3','7','12','WebGUI::Asset::Template',0,'File no icon File no icon file no icon Macro/File','000001000001000021000004000002',NULL),('MK4fCNoyrx5SE8eyDfOpxg','Flash File','','flash-file',1247489252,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Flash File Flash File flash file FileAsset','000001000001000013000004',NULL),('PBtmpl0000000000000132','Empty','','empty',1124395696,1258524916,'3','7','12','WebGUI::Asset::Template',0,'Empty Empty empty style','000001000001000041000004',NULL),('PBtmpl0000000000000140','Default Shortcut','','pbtmpl0000000000000140',1124395696,1129573244,'3','7','12','WebGUI::Asset::Template',0,'Default Shortcut Default Shortcut pbtmpl0000000000000140 Shortcut','000001000001000037000001',NULL),('hkj6WeChxFyqfP85UlRP8w','matrix.css','','new-matrix/matrix.css',1232664229,1281501163,'3','7','12','WebGUI::Asset::Snippet',0,'matrix.css matrix.css new matrix matrix.css wg-clear display inline clear both font-size:0px line-height:0px COLUMN STYLES matrixLeft float:left width:65 padding:1 min-height:1 background-color:#d2d2d2 moz-border-radius:4px webkit-border-radius 4px matrixRight float:left width:25 padding:0px min-height:1 moz-border-radius:4px webkit-border-radius 4px border solid silver 1px background-color:white margin-left:5px DROPSHADOW BUTTONS matrixLeft buttons span background-color:#888 position:relative padding:5px 0px 0px 0px moz-border-radius:4px webkit-border-radius 4px matrixLeft buttons button matrixLeft buttons a#return border:solid 2f495e 2px position:relative background-color:#e1e1e1 padding:auto 3px margin:0px font-size:11px line-height:13px position:relative top:-6px left:-2px height:22px cursor:pointer moz-border-radius:4px webkit-border-radius 4px font-weight:bold text-decoration:none color:#333 matrixLeft buttons a#return font-size:10px padding:3px 10px 2px 10px matrixLeft buttons button:hover matrixLeft buttons a#return:hover border-color:black color:white background-color:#444 WHITE AREA FOR THE LISTING OF OBJECTS TO COMPARE matrixLeft matrixListing background-color:white height:300px min-height:300px moz-border-radius:4px webkit-border-radius 4px margin:10px 2px 20px 2px padding:auto 10px matrixLeft matrixListing table border-collapse:collapse margin:0px padding:0px display:block matrixLeft matrixListing table a:link font-size:12px color:#111 matrixLeft matrixListing table a:visited color:#333 font-size:12px text-decoration:none matrixLeft matrixListing table a:hover text-decoration:none GRAY BAR THAT HOLDS THE SORT BUTTONS matrixLeft matrixListing sortButtons background-color:#f1f1f1 border:solid silver 1px moz-border-radius-topLeft:4px moz-border-radius-topRight:4px webkit-border-radius-topLeft 4px webkit-border-radius-topRight 4px border-bottom:solid D2D2D2 2px display:block STYLES TO OVERRIDE THE SORT BUTTON CSS BUILT INTO THE PERL CODE sortByViews-button sortByCompares-button sortByUpdated-button sortByClicks-button sortByName-button background none white-space:nowrap border-style:none cursor:pointer padding-bottom:4px border-style:none background-color:transparent border-right:solid silver 1px color:#555 sortByViews-button:hover sortByCompares-button:hover sortByUpdated-button:hover sortByClicks-button:hover sortByName-button:hover color:black MATRIX STATISTICS matrixRight mainTitle font-size:20px padding:5px 10px border-bottom solid gray 1px background-color:#d2d2d2 matrixRight textBox border-top:solid silver 1px padding:10px 5px matrixStatistics padding:10px matrixStatistics title font-weight:bold background-color:#f1f1f1 padding:2px 5px font-size:11px moz-border-radius:4px border:solid d2d2d2 1px matrixStatistics statistics margin-bottom:15px matrixStatistics label text-align:right width:100px font-size:10px matrixStatistics data font-size:10px matrixStatistics data a color:#111 matrixStatistics data a:hover text-decoration:none LINKS TO CONTROL ADMIN FUNCTIONS adminLinks background-color:#f1f1f1 adminLinks a:link adminLinks a:visited display:block text-align:center text-decoration:none color:#555 font-weight:normal font-size:10px padding:2px 5px border-top:solid silver 1px adminLinks a:hover color:black adminLinks a.newLink:link adminLinks a.newLink:visited background-color:#3498d1 color:white display:block adminLinks a.newLink:hover background-color:#39a6e5 STYLE FOR THE DETAILED LISTING matrixDetail min-width:1000px matrixDetail editBtns font-size:9px line-height:11px vertical-align:middle font-weight:normal margin-left:10px matrixDetail editBtns a color:black text-decoration:underline matrixDetail editBtns a:hover text-decoration:none matrixDetail stats screenshot float:left margin-right:20px matrixDetail commentsMail strong.title margin-bottom:0px margin-top:20px display:block background-color:#d2d2d2 padding:2px 10px border:solid 1px gray border-bottom-color:silver moz-border-radius-topLeft:4px moz-border-radius-topRight:4px matrixDetail assetAspectComments margin:0px 0px 20px 0px border:solid gray 1px background-color:#f1f1f1 moz-border-radius-bottomLeft:4px moz-border-radius-bottomRight:4px matrixDetail assetAspectComments assetAspectComment border-top:solid silver 1px border-bottom:solid gray 1px padding:3px background-color:#f5f5f5 matrixDetail assetAspectComments assetAspectCommentForm border-top:solid d2d2d2 5px padding:20px matrixDetail stats ul matrixDetail stats ul li list-style-type:none margin:0px padding:0px matrixDetail stats ul li display:block line-height:20px margin:4px 0px matrixDetail stats ul li strong display:block float:left width:130px text-align:right background-color:#f1f1f1 padding-right:5px margin-right:5px moz-border-radius:4px webkit-border-radius:3px font-size:11px border:solid d2d2d2 1px showLink background-color:#e1e1e1 border:2px solid 2F495E moz-border-radius:4px webkit-border-radius:4px padding:3px 10px text-decoration:none color:black showLink:hover hideLink:hover background-color:#555 color:white hideLink background-color:#f1f1f1 border:2px solid 2F495E border-bottom-style:none moz-border-radius-topLeft:4px moz-border-radius-topRight:4px webkit-border-radius-topLeft:4px webkit-border-radius-topRight:4px padding:3px 10px text-decoration:none color:black matrixMail background-color:#f1f1f1 padding:15px border:2px solid 2F495E moz-border-radius:4px moz-border-radius-topLeft:0px webkit-border-radius:4px webkit-border-radius-topLeft:0px margin-top:1px matrixMail tableData padding:5px margin:0px matrixMail input padding:0px margin:0px matrixMail formDescription text-align:right vertical-align:middle padding-right:10px font-weight:bold matrixMail form img margin-top:-18px matrixMail verify_formId height:45px line-height:45px font-size:35px padding:0px margin:0px margin-right:20px matrixRatings width:264px position:relative left:-2px top:12px matrixRatings table margin-left:0px matrixRatings td overflow:hidden matrixRatings formDescription text-align:right background-color:#97BCD1 border:solid 4D606B 1px padding:2px 5px font-weight:bold font-size:10x moz-border-radius:4px webkit-border-radius:4px color:#333 matrixRatings formDescription a:before text-decoration:none matrixRatings formDescription a display:block color:red text-decoration:none matrixRatings formDescription a:hover text-decoration:underline matrixAttributes float:left width:40 min-width:20 max-width:45 margin-right:20px rightDetails float:left width:20 min-width:20 max-width:45 attributes border:solid d2d2d2 1px background-color:#f1f1f1 margin-top:10px moz-border-radius:4px webkit-border-radius:4px padding:10px attributes table border-collapse:collapse padding:0px margin:0px attributes table td padding:2px margin:0px yui-dt0-col-value font-weight:bold font-size:14px padding:3px white-space:no-wrap COMPARISON STYLES compareList table border-collapse:collapse border:solid silver 1px margin-top:5px compareList table th a color:black padding:1px 5px compareList table td background-color:#f1f1f1 border-top:solid gray 1px border-bottom:solid silver 1px compareList yui-dt-liner color:#39A6E5 compareList yui-dt-col-name yui-dt-liner font-style:italic font-size:10px color:#555 compareList yui-dt-col-name yui-dt-liner b font-size:15px font-style:normal padding-right:25px color:black ','000001000001000022000006',NULL),('ZipArchiveTMPL00000001','Default Zip Archive Template','','zip-archive-template',1133743240,1169738426,'3','7','12','WebGUI::Asset::Template',0,'Default Zip Archive Template Default Zip Archive Template zip archive template ZipArchiveAsset','000001000001000053000001',NULL),('PBasset000000000000002','Import Node','','root/import',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Import Node Import root import','000001000001',NULL),('_iHetEvMQUOoxS-T2CM0sQ','Getting Started','','getting_started',1124395696,1273172789,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Getting Started Getting Started getting started','000001000002000001',NULL),('x3OFY6OJh_qsXkZfPwug4A','Site Map','','site_map',1124395696,1271348790,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Site Map Site Map site map','000001000002000005',NULL),('PBnav00000000000000001','crumbTrail','','crumbtrail',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'crumbTrail crumbTrail crumbtrail','000001000001000025000008',NULL),('PBnav00000000000000002','SpecificSubMenuVertical','','specificsubmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'SpecificSubMenuVertical SpecificSubMenuVertical specificsubmenuvertical','000001000001000025000017',NULL),('PBnav00000000000000006','SpecificSubMenuHorizontal','','specificsubmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'SpecificSubMenuHorizontal SpecificSubMenuHorizontal specificsubmenuhorizontal','000001000001000025000018',NULL),('PBnav00000000000000007','TopLevelMenuVertical','','toplevelmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'TopLevelMenuVertical TopLevelMenuVertical toplevelmenuvertical','000001000001000025000019',NULL),('PBnav00000000000000008','TopLevelMenuHorizontal','','toplevelmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'TopLevelMenuHorizontal TopLevelMenuHorizontal toplevelmenuhorizontal','000001000001000025000020',NULL),('PBnav00000000000000009','RootTab','','roottab',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'RootTab RootTab roottab','000001000001000025000021',NULL),('PBnav00000000000000010','TopDropMenu','','topdropmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'TopDropMenu TopDropMenu topdropmenu','000001000001000025000022',NULL),('PBnav00000000000000011','dtree','','dtree',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'dtree dtree dtree','000001000001000025000023',NULL),('PBnav00000000000000012','coolmenu','','coolmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'coolmenu coolmenu coolmenu','000001000001000025000024',NULL),('PBnav00000000000000013','Synopsis','','synopsis',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'Synopsis Synopsis synopsis','000001000001000025000025',NULL),('PBnav00000000000000014','FlexMenu','','flexmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'FlexMenu FlexMenu flexmenu','000001000001000025000009',NULL),('PBnav00000000000000015','currentMenuVertical','','currentmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'currentMenuVertical currentMenuVertical currentmenuvertical','000001000001000025000010',NULL),('PBnav00000000000000016','currentMenuHorizontal','','currentmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'currentMenuHorizontal currentMenuHorizontal currentmenuhorizontal','000001000001000025000011',NULL),('PBnav00000000000000017','PreviousDropMenu','','previousdropmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'PreviousDropMenu PreviousDropMenu previousdropmenu','000001000001000025000012',NULL),('PBnav00000000000000018','previousMenuVertical','','previousmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'previousMenuVertical previousMenuVertical previousmenuvertical','000001000001000025000013',NULL),('PBnav00000000000000019','previousMenuHorizontal','','previousmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'previousMenuHorizontal previousMenuHorizontal previousmenuhorizontal','000001000001000025000014',NULL),('PBnav00000000000000020','rootmenu','','rootmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'rootmenu rootmenu rootmenu','000001000001000025000015',NULL),('PBnav00000000000000021','SpecificDropMenu','','specificdropmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'SpecificDropMenu SpecificDropMenu specificdropmenu','000001000001000025000016',NULL),('pJd5TLAjfWMVXD6sCRLwUg','Site Map','','site_map/site_map',1124395696,1271348790,'3','7','3','WebGUI::Asset::Wobject::Navigation',1,'Site Map Site Map site map site map','000001000002000005000001',NULL),('fK-HMSboA3uu0c1KYkYspA','The Latest News','This is the latest news from Plain Black and WebGUI pulled directly from the site every hour.','the_latest_news/the_latest_news',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::SyndicatedContent',1,'The Latest News The Latest News the latest news the latest news This is the latest news from Plain Black and WebGUI pulled directly from the site every hour','000001000002000004000001',NULL),('WikiFrontTmpl000000001','Default Wiki Front Page','','default-wiki-front-page',1165460175,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Default Wiki Front Page Default Wiki Front Page default wiki front page WikiMaster_front','000001000001000052000002',NULL),('WikiSearchTmpl00000001','Default Wiki Search','','default-wiki-search',1165460175,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Default Wiki Search Default Wiki Search default wiki search WikiMaster_search','000001000001000052000003',NULL),('WikiPHTmpl000000000001','Default Page History','','default-wiki-page-history',1165460175,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Default Page History Default Page History default wiki page history WikiPage_pageHistory','000001000001000052000004',NULL),('WikiPageTmpl0000000001','Default Wiki Page','','default-wiki-page',1165460175,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Default Wiki Page Default Wiki Page default wiki page WikiPage','000001000001000052000005',NULL),('WikiPageEditTmpl000001','Default Wiki Page Edit','','default-wiki-page-edit',1165460175,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Default Wiki Page Edit Default Wiki Page Edit default wiki page edit WikiPage_edit','000001000001000052000006',NULL),('WikiMPTmpl000000000001','Default Most Popular','','default-wiki-most-popular',1165460175,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Default Most Popular Default Most Popular default wiki most popular WikiMaster_mostPopular','000001000001000052000007',NULL),('SQLReportDownload00001','SQLReport Download Default Template','','SQLReportDownload0001',1171466654,1171466654,'3','7','12','WebGUI::Asset::Template',0,'SQLReport Download Default Template untitled SQLReportDownload0001 SQLReport/Download','000001000001000038000002',NULL),('newsletter000000000001',' Summary Newsletter (default)','','newsletterdefaulttemplate',1185754569,1185754569,'3','7','3','WebGUI::Asset::Template',0,'Summary Newsletter default Summary Newsletter newsletterdefaulttemplate newsletter','000001000001000026000001',NULL),('newslettersubscrip0001','My Subscriptions (default)','','newslettermysubscriptionstemplate',1185754569,1221692339,'3','7','3','WebGUI::Asset::Template',0,'My Subscriptions default My Subscriptions newslettermysubscriptionstemplate newsletter/mysubscriptions','000001000001000026000003',NULL),('AjhlNO3wZvN5k4i4qioWcg','Default Answer Edit','','root/import/survey/default-answer-edit',1226009658,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Answer Edit Default Answer Edit root import survey default answer edit Survey/Edit','000001000001000042000009',NULL),('QHn6T9rU7KsnS3Y70KCNTg','Account','','root/import/account',1227080251,1233173545,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Account Account root import account','000001000001000002',NULL),('HPDOcsj4gBme8D4svHodBw','Profile','','root/import/account/profile',1225404573,1225404573,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Profile Profile root import account profile','000001000001000002000001',NULL),('WikiKeyword00000000001',' Wiki Pages By Keyword (default)','','wiki-master-by-keyword-template.tmpl',1185754571,1274238756,'3','7','3','WebGUI::Asset::Template',0,'Wiki Pages By Keyword default Wiki Pages By Keyword wiki master by keyword template.tmpl WikiMaster_byKeyword','000001000001000052000008',NULL),('tempspace0000000000000','Tempspace','','tempspace',1185754574,1185754574,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Tempspace Tempspace tempspace','000001000004',NULL),('QpmlAiYZz6VsKBM-_0wXaw','UsersOnline Macro',' ','users-online-macro-templates',1224616691,1224616691,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'UsersOnline Macro UsersOnline Macro users online macro templates','000001000001000021000012',NULL),('h_T2xtOxGRQ9QJOR6ebLpQ','UsersOnline Default View','','users-online-macro-templates/usersonline-default-view',1224616545,1224616545,'3','7','3','WebGUI::Asset::Template',0,'UsersOnline Default View UsersOnline Default View users online macro templates usersonline default view Macro/UsersOnline','000001000001000021000012000001',NULL),('4Ekp0kJoJllRRRo_J1Rj6w','UsersOnline Detailed View','','users-online-macro-templates/usersonline-detailed-view',1224616672,1224616672,'3','7','3','WebGUI::Asset::Template',0,'UsersOnline Detailed View UsersOnline Detailed View users online macro templates usersonline detailed view Macro/UsersOnline','000001000001000021000012000002',NULL),('THQhn1C-ooj-TLlEP7aIJQ','gallery-ie.css','','root/import/gallery-templates/gallery-ie.css',1225313951,1285124158,'3','7','3','WebGUI::Asset::Snippet',0,'gallery-ie.css gallery-ie.css root import gallery templates gallery ie.css wgPicture float:left wgAlbum float:left wgGallery pagination li wgGallery pagination a float:left wgGallery container display:inline-block ','000001000001000015000025',NULL),('itransact_credentials1','ITransact Credentials (Default)','','shopping-cart-collateral-items/itransact-credentials',1228953856,1313542961,'3','7','4','WebGUI::Asset::Template',0,'ITransact Credentials Default ITransact Credentials Default shopping cart collateral items itransact credentials Shop/Credentials','000001000001000036000018',NULL),('1oBRscNIcFOI-pETrCOspA','Default Section Edit','','root/import/survey/default-section-edit',1226009642,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Section Edit Default Section Edit root import survey default section edit Survey/Edit','000001000001000042000007',NULL),('gI_TxK-5S4DNuv42wpImmw','Gallery Templates',' ','root/import/gallery-templates',1197330678,1285124155,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Gallery Templates Gallery Templates root import gallery templates','000001000001000015',NULL),('jME5BEDYVDlBZ8jIQA9-jQ','Default Gallery Search','','root/import/gallery-templates/default-gallery-search',1197927169,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Search Default Gallery Search root import gallery templates default gallery search Gallery/Search','000001000001000015000001',NULL),('azCqD0IjdQSlM3ar29k5Sg','Default Gallery List Albums View','','root/import/gallery-templates/default-gallery-list-albums-view',1197881748,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery List Albums View Default Gallery List Albums View root import gallery templates default gallery list albums view Gallery/ListAlbums','000001000001000015000002',NULL),('05FpjceLYhq4csF1Kww1KQ','Default Gallery View Album','','root/import/gallery-templates/default-gallery-view-album',1197879361,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery View Album Default Gallery View Album root import gallery templates default gallery view album GalleryAlbum/View','000001000001000015000003',NULL),('KAMdiUdJykjN02CPHpyZOw','Default Gallery View Album Slideshow','','root/import/gallery-templates/default-gallery-view-album-slideshow',1197825787,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery View Album Slideshow Default Gallery View Album Slideshow root import gallery templates default gallery view album slideshow GalleryAlbum/ViewSlideshow','000001000001000015000005',NULL),('OkphOEdaSGTXnFGhK4GT5A','Default Gallery List Files For User','','root/import/gallery-templates/default-gallery-list-files-for-user',1197825794,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery List Files For User Default Gallery List Files For User root import gallery templates default gallery list files for user Gallery/ListFilesForUser','000001000001000015000006',NULL),('TEId5V-jEvUULsZA0wuRuA','Default Gallery View Photo','','root/import/gallery-templates/default-gallery-view-photo',1197989443,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery View Photo Default Gallery View Photo root import gallery templates default gallery view photo GalleryFile/View','000001000001000015000007',NULL),('6X-7Twabn5KKO_AbgK3PEw','Default Gallery Edit Album','','root/import/gallery-templates/default-gallery-edit-album',1197987780,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Edit Album Default Gallery Edit Album root import gallery templates default gallery edit album GalleryAlbum/Edit','000001000001000015000008',NULL),('7JCTAiu1U_bT9ldr655Blw','Default Gallery Edit Photo','','root/import/gallery-templates/default-gallery-edit-photo',1197825824,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Edit Photo Default Gallery Edit Photo root import gallery templates default gallery edit photo GalleryFile/Edit','000001000001000015000009',NULL),('0X4Q3tBWUb_thsVbsYz9xQ','Default Gallery Add Archive','','root/import/gallery-templates/default-gallery-add-archive',1197987372,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Add Archive Default Gallery Add Archive root import gallery templates default gallery add archive GalleryAlbum/AddArchive','000001000001000015000010',NULL),('m3IbBavqzuKDd2PGGhKPlA','Default Gallery Make Shortcut','','root/import/gallery-templates/default-gallery-make-shortcut',1197825845,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Make Shortcut Default Gallery Make Shortcut root import gallery templates default gallery make shortcut GalleryFile/MakeShortcut','000001000001000015000011',NULL),('UTNFeV7B_aSCRmmaFCq4Vw','Default Gallery Delete Album','','root/import/gallery-templates/default-gallery-delete-album',1197825856,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Delete Album Default Gallery Delete Album root import gallery templates default gallery delete album GalleryAlbum/Delete','000001000001000015000012',NULL),('zcX-wIUct0S_np14xxOA-A','Default Gallery Delete File','','root/import/gallery-templates/default-gallery-delete-file',1197825866,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Delete File Default Gallery Delete File root import gallery templates default gallery delete file GalleryFile/Delete','000001000001000015000013',NULL),('MBZK_LPVzqhb4TV4mMRTJg','admin_ie7.css','','root/import/gallery-templates/admin_ie7.css',1197330678,1285124155,'3','7','3','WebGUI::Asset::Snippet',0,'admin_ie7.css admin_ie7.css root import gallery templates admin ie7.css input.captionEnter margin-left 5px width 92px ','000001000001000015000014',NULL),('bANo8aiAPA7aY_oQZKxIWw','rss.gif','','root/import/gallery-templates/images/rss.gif',1197330678,1285124155,'3','7','3','WebGUI::Asset::File::Image',1,'rss.gif rss.gif root import gallery templates images rss.gif','000001000001000015000017000001',NULL),('2ci_v2d4x4uvyjTRlC49OA','moveDown.gif','','root/import/gallery-templates/images/movedown.gif',1197330678,1285124156,'3','7','3','WebGUI::Asset::File::Image',1,'moveDown.gif moveDown.gif root import gallery templates images movedown.gif','000001000001000015000017000002',NULL),('O-EsSzKgAk1KolFT-x_KsA','moveUp.gif','','root/import/gallery-templates/images/moveup.gif',1197330678,1285124156,'3','7','3','WebGUI::Asset::File::Image',1,'moveUp.gif moveUp.gif root import gallery templates images moveup.gif','000001000001000015000017000003',NULL),('fdd8tGExyVwHyrB8RBbKXg','next.gif','','root/import/gallery-templates/images/next.gif',1197330839,1285124156,'3','7','3','WebGUI::Asset::File::Image',1,'next.gif next.gif root import gallery templates images next.gif','000001000001000015000017000004',NULL),('BpisgHl4ZDcSECJp6oib1w','play.gif','','root/import/gallery-templates/images/play.gif',1197330840,1285124156,'3','7','3','WebGUI::Asset::File::Image',1,'play.gif play.gif root import gallery templates images play.gif','000001000001000015000017000005',NULL),('zshreRgPAXtnF0DtVbQ1Yg','previous.gif','','root/import/gallery-templates/images/previous.gif',1197330840,1285124156,'3','7','3','WebGUI::Asset::File::Image',1,'previous.gif previous.gif root import gallery templates images previous.gif','000001000001000015000017000006',NULL),('mM3bjP_iG9sv5nQb4S17tQ','Default Gallery View Album RSS','','root/import/gallery-templates/default-gallery-album-rss',1197879662,1285124158,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery View Album RSS Default Gallery View Album RSS root import gallery templates default gallery album rss GalleryAlbum/ViewRss','000001000001000015000018',NULL),('ilu5BrM-VGaOsec9Lm7M6Q','Default Gallery List Albums RSS','','root/import/gallery-templates/default-gallery-list-albums-rss',1197878780,1285124158,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery List Albums RSS Default Gallery List Albums RSS root import gallery templates default gallery list albums rss Gallery/ListAlbumsRss','000001000001000015000019',NULL),('-ANLpoTEP-n4POAdRxCzRw','Default Gallery List Files For User RSS','','root/import/gallery-templates/default-gallery-list-files-for-user-rss',1197880641,1285124158,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery List Files For User RSS Default Gallery List Files For User RSS root import gallery templates default gallery list files for user rss Gallery/ListFilesForUserRss','000001000001000015000020',NULL),('OxJWQgnGsgyGohP2L3zJPQ','Default Gallery Edit Comment','','root/import/gallery-templates/default-gallery-edit-comment',1204663962,1285124158,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Edit Comment Default Gallery Edit Comment root import gallery templates default gallery edit comment GalleryFile/EditComment','000001000001000015000021',NULL),('Tsg7xmPYv782j6IVz7yHFg','Calendar Templates','','root/import/calendar-templates',1204890713,1213244777,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Calendar Templates Calendar Templates root import calendar templates','000001000001000006',NULL),('kj3b-X3i6zRKnhLb4ZiCLw','Default Calendar List View','','root/import/calendar-templates/default-calendar-list-view',1204890713,1295931508,'3','7','3','WebGUI::Asset::Template',0,'Default Calendar List View Default Calendar List View root import calendar templates default calendar list view Calendar/List','000001000001000006000001',NULL),('uRL9qtk7Rb0YRJ41LmHOJw','Default Calendar Print List View','','root/import/calendar-templates/default-calendar-print-list-view',1204890713,1229311072,'3','7','3','WebGUI::Asset::Template',0,'Default Calendar Print List View Default Calendar Print List View root import calendar templates default calendar print list view Calendar/Print/List','000001000001000006000002',NULL),('CalendarWeek0000000001','Default Calendar Week','','root/import/calendar-templates/default-calendar-week',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Week Default Calendar Week root import calendar templates default calendar week Calendar/Week','000001000001000006000003',NULL),('CalendarDay00000000001','Default Calendar Day','','root/import/calendar-templates/default-calendar-day',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Day Default Calendar Day root import calendar templates default calendar day Calendar/Day','000001000001000006000004',NULL),('CalendarEvent000000001','Default Calendar Event','','root/import/calendar-templates/default-calendar-event',1204890713,1295931508,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Event Default Calendar Event root import calendar templates default calendar event Calendar/Event','000001000001000006000005',NULL),('CalendarEventEdit00001','Default Calendar Event Edit','','root/import/calendar-templates/default-calendar-event-edit',1205160982,1269401468,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Event Edit Default Calendar Event Edit root import calendar templates default calendar event edit Calendar/EventEdit','000001000001000006000006',NULL),('CalendarSearch00000001','Default Calendar Search','','root/import/calendar-templates/default-calendar-search',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Search Default Calendar Search root import calendar templates default calendar search Calendar/Search','000001000001000006000008',NULL),('CalendarPrintEvent0001','Default Calendar Print Event','','root/import/calendar-templates/default-calendar-print-event',1204890714,1215396964,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Print Event Default Calendar Print Event root import calendar templates default calendar print event Calendar/Print/Event','000001000001000006000009',NULL),('CalendarPrintMonth0001','Default Calendar Print Month','','root/import/calendar-templates/default-calendar-print-month',1204890714,1204890714,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Print Month Default Calendar Print Month root import calendar templates default calendar print month Calendar/Print/Month','000001000001000006000010',NULL),('CalendarPrintWeek00001','Default Calendar Print Week','','root/import/calendar-templates/default-calendar-print-week',1204890714,1204890714,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Print Week Default Calendar Print Week root import calendar templates default calendar print week Calendar/Print/Week','000001000001000006000011',NULL),('CalendarPrintDay000001','Default Calendar Print Day','','root/import/calendar-templates/default-calendar-print-day',1204890714,1204890714,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Print Day Default Calendar Print Day root import calendar templates default calendar print day Calendar/Print/Day','000001000001000006000012',NULL),('jnYdqDkUR8x7Pv2eGR1qTA','Thingy Templates','','root/import/thingy-templates',1205431513,1216250666,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Thingy Templates Thingy Templates root import thingy templates','000001000001000044',NULL),('ThingyTmpl000000000001','Default Thingy','','templates/thingy-default',1205003608,1237914005,'3','7','12','WebGUI::Asset::Template',0,'Default Thingy Default Thingy templates thingy default Thingy','000001000001000044000001',NULL),('ThingyTmpl000000000002','Default Thingy View Thing','','templates/thingy-default-view-thing',1205003676,1299559129,'3','7','12','WebGUI::Asset::Template',0,'Default Thingy View Thing Default Thingy View Thing templates thingy default view thing Thingy/ViewThing','000001000001000044000002',NULL),('ThingyTmpl000000000003','Default Thingy Edit Thing','','templates/thingy-default-edit-thing',1205003711,1224518002,'3','7','12','WebGUI::Asset::Template',0,'Default Thingy Edit Thing Default Thingy Edit Thing templates thingy default edit thing Thingy/EditThing','000001000001000044000003',NULL),('ThingyTmpl000000000004','Default Thingy Search Thing','','templates/thingy-default-search-thing',1205158717,1277868920,'3','7','12','WebGUI::Asset::Template',0,'Default Thingy Search Thing Default Thingy Search Thing templates thingy default search thing Thingy/SearchThing','000001000001000044000004',NULL),('7fE8md51vTCcuJFOvxNaGA','thumbnails.js','','root/import/gallery-templates/thumbnails.js',1205443600,1285124158,'3','7','3','WebGUI::Asset::Snippet',0,'thumbnails.js thumbnails.js root import gallery templates thumbnails.js Depends on BrowserDetect.js Make the thumbnails a little bigger while the mouse is over them function scaleThumbUp e anchor IE6 doesn\'t like to do the right thing with the CSS stuff below exclude it if BrowserDetect if BrowserDetect.browser == Explorer BrowserDetect.version < 7 return Make a new image with the same image src as the anchor var oldImage = anchor.getElementsByTagName(\"img\")[0 var newContainer = document.createElement(\"div newContainer.className = thumb-popup newContainer.style.position = absolute newContainer.style.zIndex = 1 var newWidth = oldImage.offsetWidth 3 var newHeight = oldImage.offsetHeight 3 var newLeft = anchor.offsetLeft + anchor.offsetWidth 2 newWidth 2 var newTop = anchor.offsetTop + anchor.offsetHeight 2 newHeight 2 newContainer.style.left = newLeft + px newContainer.style.top = newTop + px newContainer.style.width = newWidth + px newContainer.style.height = newHeight + px var newImage = document.createElement(\"img newImage.src = oldImage.src newImage.style.width = 100 newImage.style.height = 100 newContainer.appendChild newImage Make some text for the caption var caption = document.createElement(\"div caption.appendChild document.createTextNode anchor.title caption.className = caption newContainer.appendChild caption var newBox = document.createElement(\"a newBox.href = anchor.href newBox.style.display = block newBox.style.position = absolute newBox.style.zIndex = 10 newBox.style.left = anchor.offsetLeft + px newBox.style.top = anchor.offsetTop + px newBox.style.height = anchor.offsetHeight + px newBox.style.width = anchor.offsetWidth + px newBox.style.border = 1px solid transparent anchor.parentNode.appendChild newContainer anchor.parentNode.appendChild newBox YAHOO.util.Event.addListener newBox click function window.location.href = anchor.href YAHOO.util.Event.addListener newContainer mouseout scaleThumbDown newBox newContainer caption YAHOO.util.Event.addListener newBox mouseout scaleThumbDown newBox newContainer caption function scaleThumbDown e elements for var i = 0 i < elements.length i++ elements[i].parentNode.removeChild elements[i var anchorTimeout function enterAnchor e anchor if typeof anchorTimeout = undefined clearTimeout anchorTimeout anchorTimeout = setTimeout function scaleThumbUp e anchor 150 function leaveAnchor e anchor if typeof anchorTimeout = undefined clearTimeout anchorTimeout function initThumb var anchors = YAHOO.util.Dom.getElementsByClassName thumb for var i = 0 i < anchors.length i++ YAHOO.util.Event.addListener anchors[i mouseover enterAnchor anchors[i YAHOO.util.Event.addListener anchors[i mouseout leaveAnchor anchors[i YAHOO.util.Event.onDOMReady initThumb ','000001000001000015000022',NULL),('1oGhfj00KkCzP1ez01AfKA','slideshow.js','','root/import/gallery-templates/slideshow.js',1205635970,1285124158,'3','7','3','WebGUI::Asset::Snippet',0,'slideshow.js slideshow.js root import gallery templates slideshow.js if typeof WebGUI == undefined WebGUI = WebGUI.Slideshow config Configure and return a new Slideshow object config is an object with the following properties containerId The ID of the element that contains the Slideshow items Defaults to slideshow-container currentIndex The index of the first item in the Slideshow Defaults to 0 isPlaying If true the slideshow will begin immediately itemClassName The class name of the slideshow items Defaults to slideshow-item nextButtonId The id of the button to go to the next item pauseImageSrc The URL to the pause button image playDelay The delay in milliseconds between slides Defaults to 5000 playImageSrc The URL to the play button image playPauseButtonId The id of the button to toggle between play and pause previousButtonId The id of the button to go to the previous item wrap If true the slideshow will wrap around Control the slideshow To control the slideshow you can use the following methods next Pause the slideshow and go to the next slide previous Pause the slideshow and go to the previous slide play Play the slideshow pause Pause the slideshow togglePlay If it\'s playing pause it If it\'s paused play it WebGUI.Slideshow = function config this.containerId = config config.containerId config.containerId slideshow-container this.currentIndex = config config.currentIndex config.currentIndex 0 this.isPlaying = config config.isPlaying config.isPlaying false this.itemClassName = config config.itemClassName config.itemClassName slideshow-item this.nextButtonId = config config.nextButtonId undefined this.pauseImageSrc = config config.pauseImageSrc undefined this.playDelay = config config.playDelay config.playDelay 5000 this.playImageSrc = config config.playImageSrc undefined this.playPauseButtonId = config config.playPauseButtonId undefined this.previousButtonId = config config.previousButtonId undefined this.wrap = config config.wrap config.wrap false YAHOO.util.Event.onDOMReady this.init this true clearPlayTimeout Clears the timeout to move to the next slide WebGUI.Slideshow.prototype.clearPlayTimeout = function clearTimeout this.playTimeout this.playTimeout = undefined doPlayTick self Performs the action to move to the next slide and start a new timeout self is a new reference to the object to get around the scoping issues with setTimeout WebGUI.Slideshow.prototype.doPlayTick = function self self.showNext self.setPlayTimeout getSlideshowContainer Returns the HTMLElement for the Slideshow container WebGUI.Slideshow.prototype.getSlideshowContainer = function return document.getElementById this.containerId getSlideshowItems Returns an array of HTMLElements for the Slideshow\'s items WebGUI.Slideshow.prototype.getSlideshowItems = function var items = YAHOO.util.Dom.getElementsByClassName this.itemClassName undefined this.getSlideshowContainer return items init Initialize the slideshow Performed after the DOM is ready WebGUI.Slideshow.prototype.init = function Add handlers to buttons if this.playPauseButtonId YAHOO.util.Event.addListener this.playPauseButtonId click this.togglePlay this true if this.nextButtonId YAHOO.util.Event.addListener this.nextButtonId click this.next this true if this.previousButtonId YAHOO.util.Event.addListener this.previousButtonId click this.previous this true Hide all but the currentIndex var items = this.getSlideshowItems for var i = 0 i < items.length i++ if i = this.currentIndex items i style.display = none else items i style.display = block Start it off if necessary if this.isPlaying this.setPlayTimeout this.updatePlayPauseButton next Pause the slideshow and go to the next slide WebGUI.Slideshow.prototype.next = function this.pause this.showNext play Start the slideshow WebGUI.Slideshow.prototype.play = function if this.isPlaying this.isPlaying = true this.setPlayTimeout this.updatePlayPauseButton previous Pause the slideshow and show the previous slide WebGUI.Slideshow.prototype.previous = function this.pause this.showPrevious pause Pause the slideshow WebGUI.Slideshow.prototype.pause = function if this.isPlaying this.isPlaying = false this.clearPlayTimeout this.updatePlayPauseButton setPlayTimeout Sets the timeout to move to the next slide WebGUI.Slideshow.prototype.setPlayTimeout = function var self = this this.playTimeout = setTimeout function self.doPlayTick(self this.playDelay showNext Show the next slide WebGUI.Slideshow.prototype.showNext = function var items = this.getSlideshowItems var hideIndex = this.currentIndex var showIndex = this.currentIndex + 1 Wrap around if this.wrap showIndex >= items.length showIndex = 0 Don\'t allow going past the last item else if showIndex >= items.length return Do the switch if items hideIndex items hideIndex style.display = none if items showIndex items showIndex style.display = block this.currentIndex = showIndex showPrevious Show the previous slide WebGUI.Slideshow.prototype.showPrevious = function var items = this.getSlideshowItems var hideIndex = this.currentIndex var showIndex = this.currentIndex 1 Wrap around if this.wrap showIndex < 0 showIndex = items.length 1 Don\'t allow going past the last item else if showIndex < 0 return Do the switch items hideIndex style.display = none items showIndex style.display = block this.currentIndex = showIndex togglePlay If it\'s paused play it If it\'s playing pause it Return true if the slideshow is now playing WebGUI.Slideshow.prototype.togglePlay = function if this.isPlaying == false this.play return true else this.pause updatePlayPauseButton Update the Play/Pause button to have the correct image WebGUI.Slideshow.prototype.updatePlayPauseButton = function if this.playPauseButtonId if this.isPlaying this.playImageSrc document.getElementById this.playPauseButtonId src = this.pauseImageSrc else if this.pauseImageSrc document.getElementById this.playPauseButtonId src = this.playImageSrc ','000001000001000015000023',NULL),('3qiVYhNTXMVC5hfsumVHgg','browserdetect.js','','root/import/gallery-templates/browserdetect.js',1206743306,1285124158,'3','7','3','WebGUI::Asset::Snippet',0,'browserdetect.js browserdetect.js root import gallery templates browserdetect.js var BrowserDetect = init function this.browser = this.searchString(this.dataBrowser || An unknown browser this.version = this.searchVersion(navigator.userAgent || this.searchVersion(navigator.appVersion || an unknown version this.OS = this.searchString(this.dataOS || an unknown OS searchString function data for var i=0;i','000001000001000015000024',NULL),('usuxw9V3jN4d4pujRiEYxg','css03-ie.css','','style3/css03-ie.css',1209494150,1209494150,'3','7','12','WebGUI::Asset::Snippet',0,'css03-ie.css css03-ie.css style3 css03 ie.css contentArea height:500px padding-bottom:300px ','000001000001000051000023',NULL),('POVcY79vIqAHR8OfGt36aw','pagination_button.jpg','','root/import/gallery-templates/images/pagination_button.jpg',1209499189,1285124156,'3','7','12','WebGUI::Asset::File::Image',1,'pagination_button.jpg pagination_button.jpg root import gallery templates images pagination button.jpg','000001000001000015000017000007',NULL),('hIB-z34r8Xl-vYVYCkKr-w','bar-btn-r.jpg','','root/import/gallery-templates/images/bar-btn-r.jpg',1209499189,1285124156,'3','7','12','WebGUI::Asset::File::Image',1,'bar-btn-r.jpg bar-btn-r.jpg root import gallery templates images bar btn r.jpg','000001000001000015000017000008',NULL),('-mPUoFlYcjqjPUPRLAlxNQ','search-field-r.jpg','','root/import/gallery-templates/images/search-field-r.jpg',1209499189,1285124156,'3','7','12','WebGUI::Asset::File::Image',1,'search-field-r.jpg search-field-r.jpg root import gallery templates images search field r.jpg','000001000001000015000017000009',NULL),('MDpUOR-N8KMyt1J7Hh_h4w','bar-btn.jpg','','root/import/gallery-templates/images/bar-btn.jpg',1209499189,1285124156,'3','7','12','WebGUI::Asset::File::Image',1,'bar-btn.jpg bar-btn.jpg root import gallery templates images bar btn.jpg','000001000001000015000017000010',NULL),('YfXKByTwDZVituMc4h13Dg','pagination_bg.jpg','','root/import/gallery-templates/images/pagination_bg.jpg',1209499189,1285124156,'3','7','12','WebGUI::Asset::File::Image',1,'pagination_bg.jpg pagination_bg.jpg root import gallery templates images pagination bg.jpg','000001000001000015000017000011',NULL),('esko_HSU0Gh-uJZ1h3xRmQ','search-field-l.jpg','','root/import/gallery-templates/images/search-field-l.jpg',1209499189,1285124156,'3','7','12','WebGUI::Asset::File::Image',1,'search-field-l.jpg search-field-l.jpg root import gallery templates images search field l.jpg','000001000001000015000017000012',NULL),('oSqpGswzpBG_ErdfYwIO8A','top_bg.jpg','','root/import/gallery-templates/images/top_bg.jpg',1209499189,1285124156,'3','7','12','WebGUI::Asset::File::Image',1,'top_bg.jpg top_bg.jpg root import gallery templates images top bg.jpg','000001000001000015000017000013',NULL),('MXJklShZvLLB_DSnZQmXrQ','title_bg.jpg','','root/import/gallery-templates/images/title_bg.jpg',1209499189,1285124156,'3','7','12','WebGUI::Asset::File::Image',1,'title_bg.jpg title_bg.jpg root import gallery templates images title bg.jpg','000001000001000015000017000014',NULL),('BthxD5oJ0idmsyI3ioA2FA','bar-btn-l.jpg','','root/import/gallery-templates/images/bar-btn-l.jpg',1209499189,1285124156,'3','7','12','WebGUI::Asset::File::Image',1,'bar-btn-l.jpg bar-btn-l.jpg root import gallery templates images bar btn l.jpg','000001000001000015000017000015',NULL),('aZ-1HYQamkRHYXvzAra8WQ','search-field.jpg','','root/import/gallery-templates/images/search-field.jpg',1209499189,1285124156,'3','7','12','WebGUI::Asset::File::Image',1,'search-field.jpg search-field.jpg root import gallery templates images search field.jpg','000001000001000015000017000016',NULL),('eRkb94OYcS5AdcrrerOP5Q','rss.gif','','root/import/gallery-templates/images/rss2.gif',1209499189,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'rss.gif rss.gif root import gallery templates images rss2.gif','000001000001000015000017000017',NULL),('TbnkjAJQEASORXIpYqDkcA','blank-image.jpg','','root/import/gallery-templates/images/blank-image.jpg',1209499189,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'blank-image.jpg blank-image.jpg root import gallery templates images blank image.jpg','000001000001000015000017000018',NULL),('er-3faBjY-hhlDcc5aKqdQ','top_bg.jpg','','root/import/gallery-templates/images/top_bg2.jpg',1209499189,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'top_bg.jpg top_bg.jpg root import gallery templates images top bg2.jpg','000001000001000015000017000019',NULL),('8bFsu2FJUqHRUiHcozcVFw','sub-btn-l.jpg','','root/import/gallery-templates/images/sub-btn-l.jpg',1209499189,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'sub-btn-l.jpg sub-btn-l.jpg root import gallery templates images sub btn l.jpg','000001000001000015000017000020',NULL),('34Aayx5eA320D8VfhdfDBw','sub-btn-r.jpg','','root/import/gallery-templates/images/sub-btn-r.jpg',1209499189,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'sub-btn-r.jpg sub-btn-r.jpg root import gallery templates images sub btn r.jpg','000001000001000015000017000021',NULL),('TlhKOVmWblZOsAdqmhEpeg','sub-btn.jpg','','root/import/gallery-templates/images/sub-btn.jpg',1209499189,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'sub-btn.jpg sub-btn.jpg root import gallery templates images sub btn.jpg','000001000001000015000017000022',NULL),('Nx0ypjO3cN6QdZUBUEE0lA','pic-title-bg.jpg','','root/import/gallery-templates/images/pic-title-bg.jpg',1209499189,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'pic-title-bg.jpg pic-title-bg.jpg root import gallery templates images pic title bg.jpg','000001000001000015000017000023',NULL),('CmFZLN7iPS7XXvUEsxKPKA','row-2.jpg','','root/import/gallery-templates/images/row-2.jpg',1209499190,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'row-2.jpg row-2.jpg root import gallery templates images row 2.jpg','000001000001000015000017000024',NULL),('v_XBgwwZqgW1D5s4y05qfg','addtl-info.gif','','root/import/gallery-templates/images/addtl-info.gif',1209499190,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'addtl-info.gif addtl-info.gif root import gallery templates images addtl info.gif','000001000001000015000017000025',NULL),('4TdAkKoQbSCvI7QWcW889A','row-1.jpg','','root/import/gallery-templates/images/row-1.jpg',1209499190,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'row-1.jpg row-1.jpg root import gallery templates images row 1.jpg','000001000001000015000017000026',NULL),('SAgK6eDPCG1cgkJ59WapHQ','prev-btn.gif','','root/import/gallery-templates/images/prev-btn.gif',1209499190,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'prev-btn.gif prev-btn.gif root import gallery templates images prev btn.gif','000001000001000015000017000027',NULL),('XJYLuvGy9ubF7JNKyINtpA','play-btn.gif','','root/import/gallery-templates/images/play-btn.gif',1209499190,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'play-btn.gif play-btn.gif root import gallery templates images play btn.gif','000001000001000015000017000028',NULL),('RWj7hyv2SpZuXxwj1Wocug','next-btn.gif','','root/import/gallery-templates/images/next-btn.gif',1209499190,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'next-btn.gif next-btn.gif root import gallery templates images next btn.gif','000001000001000015000017000029',NULL),('aq8QElnlm3YufAoxRz9Pcg','data-bg.jpg','','root/import/gallery-templates/images/data-bg.jpg',1209499190,1285124158,'3','7','12','WebGUI::Asset::File::Image',1,'data-bg.jpg data-bg.jpg root import gallery templates images data bg.jpg','000001000001000015000017000030',NULL),('6D4Z-oruXPS6OlH_Kx8pBg','images','','root/import/thingy-templates/images',1209509389,1209509389,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'images images root import thingy templates images','000001000001000044000005',NULL),('hQ7z33_jOYkQ8WNX5xy9Sw','style-button.gif','','root/import/thingy-templates/images/style-button.gif',1209509455,1209509455,'3','7','12','WebGUI::Asset::File::Image',1,'style-button.gif style-button.gif root import thingy templates images style button.gif','000001000001000044000005000001',NULL),('vWW_DcHiYSrKZOkkIfEfcQ','row-2.jpg','','root/import/thingy-templates/images/row-2.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'row-2.jpg row-2.jpg root import thingy templates images row 2.jpg','000001000001000044000005000002',NULL),('_bPYzRA87NTAUIKlfrJMHg','row-1.jpg','','root/import/thingy-templates/images/row-1.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'row-1.jpg row-1.jpg root import thingy templates images row 1.jpg','000001000001000044000005000003',NULL),('nJjZHRwdDs5MAZYsAyioHw','title-bg.jpg','','root/import/thingy-templates/images/title-bg.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'title-bg.jpg title-bg.jpg root import thingy templates images title bg.jpg','000001000001000044000005000004',NULL),('8hxfkrJPeFVRWF5piCNJ1A','field-bg.jpg','','root/import/thingy-templates/images/field-bg.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'field-bg.jpg field-bg.jpg root import thingy templates images field bg.jpg','000001000001000044000005000005',NULL),('Osx7WN52iIKHZFT4vqUBHQ','search-btn.gif','','root/import/thingy-templates/images/search-btn.gif',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'search-btn.gif search-btn.gif root import thingy templates images search btn.gif','000001000001000044000005000006',NULL),('oWff8fGzRdHPyq5VNREe9Q','top-bg.jpg','','root/import/thingy-templates/images/top-bg.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'top-bg.jpg top-bg.jpg root import thingy templates images top bg.jpg','000001000001000044000005000007',NULL),('uqbkvb1b9443VvfkyRz95w','save-button.gif','','root/import/thingy-templates/images/save-button.gif',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'save-button.gif save-button.gif root import thingy templates images save button.gif','000001000001000044000005000008',NULL),('8YiMkcz32xalkAn3WBLpag','go-btn.gif','','root/import/thingy-templates/images/go-btn.gif',1210181860,1210181860,'3','7','12','WebGUI::Asset::File::Image',1,'go-btn.gif go-btn.gif root import thingy templates images go btn.gif','000001000001000044000005000009',NULL),('5m5I7__l40C4hhv4ydqAHQ','thingy-ie.css','','root/import/thingy-templates/thingy-ie.css',1210181698,1216227786,'3','7','12','WebGUI::Asset::Snippet',0,'thingy-ie.css thingy-ie.css root import thingy templates thingy ie.css thingyList things padding:0px margin:0px width:200px z-index:5000 position:absolute top:27px left:20px border:solid a2a2a2 1px border-top-style:none thingyList things a:link thingyList things a:visited display:block background-color:#f1f1f1 border-top:solid a2a2a2 1px border-bottom:solid 727272 1px line-height:12px font-size:10px height:12px padding:2px 5px text-decoration:none font-weight:bold color:#a2a2a2 width:190px thingyList things a:hover background-color:white ','000001000001000044000007',NULL),('2rC4ErZ3c77OJzJm7O5s3w','EMS Badge Listing (default)','','root/import/ems/ems-badge-listing-default',1208721232,1288747841,'3','7','12','WebGUI::Asset::Template',0,'EMS Badge Listing default EMS Badge Listing default root import ems ems badge listing default EMS','000001000001000012000003',NULL),('PsFn7dJt4wMwBa8hiE3hOA','Print Badge (Default)','','root/import/ems/print-badge-default',1208558071,1257311886,'3','7','12','WebGUI::Asset::Template',0,'Print Badge Default Print Badge Default root import ems print badge default EMS/PrintBadge','000001000001000012000004',NULL),('yBwydfooiLvhEFawJb0VTQ','Print Ticket (Default)','','root/import/ems/print-ticket-default',1208629936,1257311887,'3','7','12','WebGUI::Asset::Template',0,'Print Ticket Default Print Ticket Default root import ems print ticket default EMS/PrintTicket','000001000001000012000005',NULL),('63ix2-hU0FchXGIWkG3tow','Flat Discount (Default)','','root/import/flat-discount-default',1209588387,1313542961,'3','7','12','WebGUI::Asset::Template',0,'Flat Discount Default Flat Discount Default root import flat discount default FlatDiscount','000001000001000036000011',NULL),('gbnRhcWNk1iQe32LFEB5eQ','Shelf','','root/import/shelf2',1210779723,1212086102,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Shelf Shelf root import shelf2','000001000001000035',NULL),('1XOJDcg_ITRYwVM-QnIcPw','shelf.css','','root/import/shelf2/shelf.css',1210779441,1219175575,'3','7','12','WebGUI::Asset::Snippet',0,'shelf.css shelf.css root import shelf2 shelf.css wgShelf font-size:12px font-family:arial verdana margin:15px 0px wgShelf h2 background black padding:5px padding-left:15px line-height:32px color:white margin:0px height:32px wgShelf wgShelves background F1F1F1 height:29px padding:3px line-height:29px padding-left:30px wgShelf product margin:15px margin-left:0px text-align:left background-color:#f1f1f1 border:solid e1e1e1 1px width 200px display moz-inline-box Moz display inline-block Op Saf IE vertical-align top IE Mac non capisce e a volte crea extra v space wgShelf product thumbnail display:block text-align:left margin:3px float:left wgShelf product link background e1e1e1 height:30px padding:3px line-height:24px margin-bottom:5px text-align:left display:block wgShelf product link a:link wgShelf product link a:visited color:#000 display:block wgShelf product link a:hover text-decoration:underline wgShelf product price display:block text-align:right font-size:18px font-weight:bold ','000001000001000035000003',NULL),('C5fPz-Wg85vkYRvCdl-Xqw','UserList','','root/import/userlist',1212160830,1212160830,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'UserList UserList root import userlist','000001000001000047',NULL),('aNmgn0cd6tldmC1FpW4KbA','Shop','','shopping-cart-collateral-items',1213122695,1313542960,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Shop Shop shopping cart collateral items','000001000001000036',NULL),('2q5fxatSFLgIhXaUX-oSvg','bottom-left.jpg','','shopping-cart-collateral-items/bottom-left.jpg',1204149033,1313542960,'3','7','3','WebGUI::Asset::File::Image',1,'bottom-left.jpg bottom-left.jpg shopping cart collateral items bottom left.jpg','000001000001000036000001',NULL),('_d5WTkKjnwct-_Dk7gZHvQ','bottom-right.jpg','','shopping-cart-collateral-items/bottom-right.jpg',1204149033,1313542960,'3','7','3','WebGUI::Asset::File::Image',1,'bottom-right.jpg bottom-right.jpg shopping cart collateral items bottom right.jpg','000001000001000036000002',NULL),('Iz2mUR3jCPKyemwAea4b2g','input_bg.jpg','','shopping-cart-collateral-items/input_bg.jpg',1204149033,1313542960,'3','7','3','WebGUI::Asset::File::Image',1,'input_bg.jpg input_bg.jpg shopping cart collateral items input bg.jpg','000001000001000036000003',NULL),('JU9bjsLRoWj7GVHs__prig','top-left.jpg','','shopping-cart-collateral-items/top-left.jpg',1204149033,1313542960,'3','7','3','WebGUI::Asset::File::Image',1,'top-left.jpg top-left.jpg shopping cart collateral items top left.jpg','000001000001000036000004',NULL),('noOlnjQGexHg8c4bGVUo9g','top-right.jpg','','shopping-cart-collateral-items/top-right.jpg',1204149033,1313542960,'3','7','3','WebGUI::Asset::File::Image',1,'top-right.jpg top-right.jpg shopping cart collateral items top right.jpg','000001000001000036000005',NULL),('aIpCmr9Hi__vgdZnDTz1jw','Cart (Default)','','default-shopping-cart-template',1209921197,1313542961,'3','7','3','WebGUI::Asset::Template',0,'Cart Default Cart Default default shopping cart template Shop/Cart','000001000001000036000006',NULL),('4e-_rNs6mSWedZhQ_V5kJA','shelf-ie.css','','root/import/shelf2/shelf-ie.css',1210779672,1210779672,'3','7','12','WebGUI::Asset::Snippet',0,'shelf-ie.css shelf-ie.css root import shelf2 shelf ie.css wgShelf product margin:15px margin-left:0px float:left text-align:left background-color:#f1f1f1 border:solid e1e1e1 1px min-height:100px min-width:200px width:200px height:100px wgShelf product link background url(^FileUrl(root/import/shelf2/images/shelf-titles.jpg no-repeat top right height:30px padding:3px line-height:24px margin-bottom:5px text-align:left display:block ','000001000001000035000004',NULL),('2gtFt7c0qAFNU3BG_uvNvg','My Purchases (Default)','','shopping-cart-collateral-items/my-purchases-default',1211824430,1315877144,'3','7','3','WebGUI::Asset::Template',0,'My Purchases Default My Purchases Default shopping cart collateral items my purchases default Shop/MyPurchases','000001000001000036000008',NULL),('bPz1yk6Y9uwMDMBcmMsSCg','Email Receipt (Default)','','shopping-cart-collateral-items/email-receipt-default',1211829604,1313542961,'3','7','3','WebGUI::Asset::Template',0,'Email Receipt Default Email Receipt Default shopping cart collateral items email receipt default Shop/EmailReceipt','000001000001000036000009',NULL),('EBlxJpZQ9o-8VBOaGQbChA','MiniCart','','shopping-cart-collateral-items/minicart',1212093746,1313542961,'3','7','3','WebGUI::Asset::Template',0,'MiniCart MiniCart shopping cart collateral items minicart Shop/MiniCart','000001000001000036000014',NULL),('PBtmpl0000000000000053','Subscription code redemption','','subscription_code_redemption',1124395696,1313542961,'3','7','12','WebGUI::Asset::Template',0,'Subscription code redemption Subscription code redemption subscription code redemption Operation/RedeemSubscription','000001000001000036000017',NULL),('6tK47xsaIH-ELw0IBo0uRQ','images','','root/import/shelf2/images',1210777115,1210777115,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'images images root import shelf2 images','000001000001000035000001',NULL),('XNd7a_g_cTvJVYrVHcx2Mw','Address (Default)','','shopping-cart-collateral-items/address-default',1212099009,1313542961,'3','7','3','WebGUI::Asset::Template',0,'Address Default Address Default shopping cart collateral items address default Shop/Address','000001000001000036000007',NULL),('_bZJ9LA_KNekZiFPaP2SeQ','shelf-titles.jpg','','root/import/shelf2/images/shelf-titles.jpg',1210777868,1210777868,'3','7','12','WebGUI::Asset::File::Image',1,'shelf-titles.jpg shelf-titles.jpg root import shelf2 images shelf titles.jpg','000001000001000035000001000001',NULL),('nFen0xjkZn8WkpM93C9ceQ','Shelf (Default)','','root/import/shelf-default',1210779326,1247864696,'3','7','12','WebGUI::Asset::Template',0,'Shelf Default Shelf Default root import shelf default Shelf','000001000001000035000002',NULL),('mTOiwwk3q4k9g5-XykXhPA','Documentation','With any large system, having the right documentation to get you started is mandatory. The good news is that WebGUI has abundant documentation. ','documentation',1215717999,1271349647,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Documentation Documentation documentation With any large system having the right documentation to get you started is mandatory The good news is that WebGUI has abundant documentation','000001000002000003',NULL),('o_pq_e4vRyhMOKFzs61eag','book-covers.jpg','','documentation/book-covers.jpg',1215714957,1215714957,'3','7','3','WebGUI::Asset::File::Image',1,'book-covers.jpg book-covers.jpg documentation book covers.jpg','000001000002000003000002',NULL),('PBEmsBadgeTemplate0000','Default EMS Badge Template','','default_emsbadge',1221077977,1313542962,'3','7','4','WebGUI::Asset::Template',0,'Default EMS Badge Template Default EMS Badge Template default emsbadge EMSBadge','000001000001000012000006',NULL),('9A-mg2gwWmaYi9o_1C7ArQ','dashboard','','root/import/projectmanager/dashboard',1147642478,1222803338,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'dashboard dashboard root import projectmanager dashboard','000001000001000030000001',NULL),('yD1SMHelczihzjEmx6eXBA','editTask','','root/import/projectmanager/edittask',1147642478,1222803342,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'editTask editTask root import projectmanager edittask','000001000001000030000002',NULL),('pV7GnZdpjR3XpZaSINIoeg','gantt','','root/import/projectmanager/gantt',1147642478,1222803347,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'gantt gantt root import projectmanager gantt','000001000001000030000003',NULL),('71e17KeduiXgODLMlUxiow','project','','root/import/projectmanager/project',1147642479,1222803352,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'project project root import projectmanager project','000001000001000030000004',NULL),('vTymIDYL2YqEh6PV50F7ew','manager','','root/import/timetracking/manager',1147642482,1222803302,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'manager manager root import timetracking manager','000001000001000046000001',NULL),('lo1ac3BsoJx3ijGQ3gR-bQ','row','','root/import/timetracking/row',1147642482,1222803309,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'row row root import timetracking row','000001000001000046000002',NULL),('huASapWvFDzqwOSbcN-JFQ','user','','root/import/timetracking/user',1147642483,1222803313,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'user user root import timetracking user','000001000001000046000003',NULL),('xSmREZO3GNzK3M5PaueOOQ','LDAP/Account','','root/import/auth/ldap/account',1147642466,1287545014,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP/Account LDAP/Account root import auth ldap account','000001000001000005000001',NULL),('0bx-xoL8TSXXubFuqKAoVQ','LDAP/Create','','root/import/auth/ldap/create',1147642466,1287545014,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP/Create LDAP/Create root import auth ldap create','000001000001000005000002',NULL),('taX2UYkFF21ALpFZY2rhMw','LDAP/Login','','root/import/auth/ldap/login',1147642466,1287545014,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP/Login LDAP/Login root import auth ldap login','000001000001000005000003',NULL),('K0q_N885Httqev1VCqUWxg','WebGUI/Account','','root/import/auth/webgui/account',1147642466,1287545014,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI/Account WebGUI/Account root import auth webgui account','000001000001000005000004',NULL),('fq1ZkYhH24R5tb96kuT10Q','WebGUI/Create','','root/import/auth/webgui/create',1147642466,1287545014,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI/Create WebGUI/Create root import auth webgui create','000001000001000005000005',NULL),('oHk7fAFhEEkB7dHzi0QOQA','WebGUI/Expired','','root/import/auth/webgui/expired',1147642466,1287545014,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI/Expired WebGUI/Expired root import auth webgui expired','000001000001000005000006',NULL),('9M-lrlPQWeeNWfvnDnK_Xg','WebGUI/Login','','root/import/auth/webgui/login',1147642466,1287545014,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI/Login WebGUI/Login root import auth webgui login','000001000001000005000007',NULL),('_gBYAdTcbkiyamnqi2Xskg','WebGUI/Recovery','','root/import/auth/webgui/recovery',1147642466,1287545014,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI/Recovery WebGUI/Recovery root import auth webgui recovery','000001000001000005000008',NULL),('tBL7BWiQRZFed2Y-Zjo9tQ','AdminToggle','','root/import/macro/admintoggle',1147642471,1222803200,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'AdminToggle AdminToggle root import macro admintoggle','000001000001000021000001',NULL),('GdkQpvjRtJqtzOUbwIIQRA','a_account','','root/import/macro/a_account',1147642471,1222803205,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'a_account a_account root import macro a account','000001000001000021000002',NULL),('tnc5iYyynX2hfdEs9D3P8w','EditableToggle','','root/import/macro/editabletoggle',1147642472,1222803213,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'EditableToggle EditableToggle root import macro editabletoggle','000001000001000021000003',NULL),('vgXdBcFTqU7h4wBG1ewdBw','File','','root/import/macro/file',1147642472,1222803217,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'File File root import macro file','000001000001000021000004',NULL),('hcFlqnXlsmC1ujN6Id0F0A','GroupAdd','','root/import/macro/groupadd',1147642473,1222803234,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'GroupAdd GroupAdd root import macro groupadd','000001000001000021000005',NULL),('eRJR52fvlaxfetv3DQkQYw','GroupDelete','','root/import/macro/groupdelete',1147642473,1222803238,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'GroupDelete GroupDelete root import macro groupdelete','000001000001000021000006',NULL),('5HIDHq5lAWHV5gpYGS0zLg','H_homeLink','','root/import/macro/h_homelink',1147642473,1222803244,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'H_homeLink H_homeLink root import macro h homelink','000001000001000021000007',NULL),('rYEFwXXo0tkGhQTcbDibvg','LoginToggle','','root/import/macro/logintoggle',1147642473,1222803249,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LoginToggle LoginToggle root import macro logintoggle','000001000001000021000008',NULL),('V3l5S5TtI7wMm1WpIMhvOA','L_loginBox','','root/import/macro/l_loginbox',1147642473,1222803253,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'L_loginBox L_loginBox root import macro l loginbox','000001000001000021000009',NULL),('nqNbSUAhk9Vd1zda2SCz9A','RandomThread','','root/import/macro/randomthread',1147642474,1222803258,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'RandomThread RandomThread root import macro randomthread','000001000001000021000010',NULL),('y8XkRdxIperLKkJ3bL5sSQ','r_printable','','root/import/macro/r_printable',1147642474,1222803264,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'r_printable r_printable root import macro r printable','000001000001000021000011',NULL),('UserListTmpl0000000002','UserList with search field selection','','root/import/userlist/userlist-with-search-field-selection',1212000800,1228125752,'3','7','12','WebGUI::Asset::Template',0,'UserList with search field selection UserList with search field selection root import userlist userlist with search field selection UserList','000001000001000047000002',NULL),('UserListTmpl0000000003','UserList with multiple search keywords','','root/import/userlist/userlist-with-multiple-search-keywords',1212001437,1228125758,'3','7','12','WebGUI::Asset::Template',0,'UserList with multiple search keywords UserList with multiple search keywords root import userlist userlist with multiple search keywords UserList','000001000001000047000003',NULL),('UserListTmpl0000000001','Default UserList','','root/import/userlist/default-userlist',1212159641,1228125743,'3','7','12','WebGUI::Asset::Template',0,'Default UserList Default UserList root import userlist default userlist UserList','000001000001000047000001',NULL),('BMybD3cEnmXVk2wQ_qEsRQ','Badge Builder (Default)','','root/import/ems/badge-builder-default',1208530113,1263962529,'3','7','12','WebGUI::Asset::Template',0,'Badge Builder Default Badge Builder Default root import ems badge builder default EMS/BadgeBuilder','000001000001000012000001',NULL),('OOyMH33plAy6oCj_QWrxtg','Lookup Registrant (Default)','','root/import/ems/lookup-registrant-default',1207951375,1257311886,'3','7','12','WebGUI::Asset::Template',0,'Lookup Registrant Default Lookup Registrant Default root import ems lookup registrant default EMS/LookupRegistrant','000001000001000012000002',NULL),('stevecoolmenu000000001','Site Nav','','webgui7/style3/hierarchical-top-nav',1147642505,1224116942,'3','7','12','WebGUI::Asset::Template',0,'Site Nav Site Nav webgui7 style3 hierarchical top nav Navigation','000001000001000051000001',NULL),('7-0-style0000000000051','css03.css','','style3/css03.css',1147642505,1224117026,'3','7','12','WebGUI::Asset::Snippet',0,'css03.css css03.css style3 css03.css body html margin:0px background-color:#b53018 padding:0px body a color:#EE963E;font-weight:bold letter-spacing:1px font-size:8pt main width:98 min-width:790px margin:0px padding:0px padding-top:20px padding-bottom:20px position:relative header background url(\'^FileUrl(style3/header_bg.jpg repeat-x width:100 margin:0px height:115px headerTitle background url(\'^FileUrl(style3/header_left.jpg no-repeat left top height:100 width:100 headerRight background url(\'^FileUrl(style3/header_right.jpg no-repeat right top width:100 height:100 text-align:right position:relative headerRight title position:absolute top:25px left:20px font-family:arial text-align:left title h1 text-transform:uppercase margin-bottom:0px font-weight:normal font-size:26pt margin-top:0px color:white title h1 a color:white text-decoration:none font-size 26pt font-weight normal title h2 margin:0px font-size:12pt color:#bebebe padding-left:20px title img z-index:5 login position:absolute font-size:8pt top:45 right:150px color:white z-index:6 font-family:arial login a color:white font-weight normal letter-spacing 0px loginBox font-size:8pt margin:0px display:inline loginBox input font-size:8pt mainBody width:100 margin:0px height:500px background fff position:relative z-index:0 main > mainBody height:auto min-height:500px contentArea z-index:2 position:relative padding-top:10px padding-left:10px padding-right:20px padding-bottom:20px moz-box-sizing:border-box font-family:verdana font-size:9pt min-height:500px html main mainBody contentArea height:1 topCorner width:100 height:214px position:absolute top:0px left:0px background url(^FileUrl(/style3/main_top.jpg no-repeat z-index:1 bottomCorner width:100 height:211px position:absolute bottom:59px right:0px background url(\'^FileUrl(style3/main_bottom.jpg no-repeat right z-index:1 html bottomCorner bottom:58px footer width:100 margin:0px background:#000 url(\'^FileUrl(style3/footer_right.jpg no-repeat right top height:57px border-top:solid B53018 2px text-align:right position:relative z-index:0 footer copyright color:#3b3b3b font-family:arial position:absolute top:20px left:30px font-size:8pt main yui-skin-sam font-family:verdana font-size:9pt font-weight:normal ','000001000001000051000002',NULL),('jVKLVakT_iA2010_oEuAwg','Style3 Coolmenu','','department_nav',1224116526,1224116526,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'Style3 Coolmenu Style3 Coolmenu department nav','000001000001000051000024',NULL),('UL-ItI4L1Z6-WSuhuXVvsQ','DataTable','','root/import/datatable',1225139673,1225139673,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'DataTable DataTable root import datatable','000001000001000011',NULL),('3rjnBVJRO6ZSkxlFkYh_ug','Default DataTable Template (YUI)','','root/import/datatable/default-datatable-template-yui',1225139643,1233861835,'3','7','3','WebGUI::Asset::Template',0,'Default DataTable Template YUI Default DataTable Template YUI root import datatable default datatable template yui DataTable','000001000001000011000001',NULL),('TuYPpHx7TUyk08639Pc8Bg','Default DataTable Template (HTML)','','root/import/datatable/default-datatable-template-html',1225139643,1233861621,'3','7','3','WebGUI::Asset::Template',0,'Default DataTable Template HTML Default DataTable Template HTML root import datatable default datatable template html DataTable','000001000001000011000002',NULL),('IZkrow_zwvbf4FCH-taVTQ','Inbox','','root/import/account/inbox',1226011853,1226011853,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Inbox Inbox root import account inbox','000001000001000002000002',NULL),('K0YjxqOqr7RupSo6sIdcAg','Friends','','root/import/account/friends',1227074310,1227074310,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Friends Friends root import account friends','000001000001000002000003',NULL),('_ilRXNR3s8F2vGJ_k9ePcg','User','','root/import/account/user',1226643205,1226643205,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'User User root import account user','000001000001000002000004',NULL),('AOjPG2NHgfL9Cq6dDJ7mew','Shop','','root/import/account/shop',1226659753,1236960881,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Shop Shop root import account shop','000001000001000002000005',NULL),('qaVcU0FFzzraMX_bzELqzw','Contributions','','root/import/account/contributions',1227074362,1227074362,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Contributions Contributions root import account contributions','000001000001000002000006',NULL),('matrixtmpl000000000004','Matrix Default Edit Listing','','default-matrix-edit-listing-template',1133743239,1281501163,'3','7','12','WebGUI::Asset::Template',0,'Matrix Default Edit Listing Matrix Default Edit Listing default matrix edit listing template Matrix/EditListing','000001000001000022000004',NULL),('kJf77eCr9GAMiEzWrzsBTA','matrix-ie.css','','new-matrix/matrix-ie.css',1229639255,1281501163,'3','7','12','WebGUI::Asset::Snippet',0,'matrix-ie.css matrix-ie.css new matrix matrix ie.css matrixLeft buttons span matrixRight buttons span padding:0px 0px 0px 0px matrixLeft buttons button matrixRight buttons a top:-3px left:-2px height:22px matrixRight buttons a color:black text-decoration:none padding:1px 3px ','000001000001000022000007',NULL),('4LQT4-bGW4FkiEQLSY5gvQ','show-hide.js','','new-matrix/show-hide.js',1232400287,1281501163,'3','7','12','WebGUI::Asset::Snippet',0,'show-hide.js show-hide.js new matrix show hide.js function showHide(theLink,theId var theId = document.getElementById(theId var theLink = document.getElementById(theLink if(theId.style.display == block theId.style.display = none theLink.innerHTML = Send Creator a Message theLink.className = showLink else theId.style.display = block theLink.innerHTML = Hide theLink.className = hideLink ','000001000001000022000008',NULL),('Vch1Ww7G_JpBhOhXX07RDg','matrx-nav','','new-matrix/matrix-nav',1232664082,1281501163,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'matrx-nav matrix-nav new matrix matrix nav','000001000001000022000010',NULL),('PBtmpl0000000000000063','Default Overview Report','','root/import/survey/default-overview-report',1124395696,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Overview Report Default Overview Report root import survey default overview report Survey/Overview','000001000001000042000001',NULL),('HW-sPoDDZR8wBZ0YgFgPtg','images','','root/import/account/images',1227634350,1227634350,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'images images root import account images','000001000001000002000009',NULL),('hBpisL-_URyZnh9clR5ohA','no_photo.gif','','root/import/account/images/no_photo.gif',1227634417,1227634417,'3','7','12','WebGUI::Asset::File::Image',1,'no_photo.gif no_photo.gif root import account images no photo.gif','000001000001000002000009000001',NULL),('FOBV6KkifreXa4GmEAUU4A','no_photo_sm.gif','','root/import/account/images/no_photo_sm.gif',1227634447,1227634447,'3','7','12','WebGUI::Asset::File::Image',1,'no_photo_sm.gif no_photo_sm.gif root import account images no photo sm.gif','000001000001000002000009000002',NULL),('PBtmpl0000000000000061','Default Survey','','root/import/survey/default-survey',1124395696,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Survey Default Survey root import survey default survey Survey','000001000001000042000003',NULL),('S2_LsvVa95OSqc66ITAoig','EMS Schedule Listing (default)','','root/import/ems/ems-schedule-listing-default2',1242730712,1257311887,'3','7','12','WebGUI::Asset::Template',0,'EMS Schedule Listing default EMS Schedule Listing default root import ems ems schedule listing default2 EMS/Schedule','000001000001000012000007',NULL),('VyCINX2KixKYr2pzQGX9Mg','layout.css','','layout.css',1246968584,1254881103,'3','7','12','WebGUI::Asset::Snippet',0,'layout.css layout.css layout.css styles for the layout asset wg-left float left wg-right float right wg-clear clear both sidebyside wg-content-position oneovertwo wg-content-position width 49 oneovertwo wg-top width 100 oneoverthree wg-first-column oneoverthree wg-second-column oneoverthree wg-third-column threeColumns wg-first-column threeColumns wg-second-column threeColumns wg-third-column width 32 oneoverthree wg-first-column threeColumns wg-first-column margin-right:2 rightcolumn wg-first-column width 65 rightcolumn wg-second-column width 33 ','000001000001000019000006',NULL),('jmlI9IK-lV8n2WMYmmPhAA','Ad Sku','','root/import/ad-sku',1238106173,1238106173,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Ad Sku Ad Sku root import ad sku','000001000001000001',NULL),('AldPGu0u-jm_5xK13atCSQ','Default Purchase Ad Sku Template','','root/import/ad-sku/default-purchase-ad-sku-template',1238106805,1251419124,'3','7','12','WebGUI::Asset::Template',0,'Default Purchase Ad Sku Template Default Purchase Ad Sku Template root import ad sku default purchase ad sku template AdSku/Purchase','000001000001000001000001',NULL),('ohjyzab5i-yW6GOWTeDUHg','Default Manage Ad Sku Template','','root/import/ad-sku/default-manage-ad-sku-template',1238106805,1251425384,'3','7','12','WebGUI::Asset::Template',0,'Default Manage Ad Sku Template Default Manage Ad Sku Template root import ad sku default manage ad sku template AdSku/Manage','000001000001000001000002',NULL),('PBtmpl0000000000000015','Default WebGUI Welcome Message Template','','root/import/auth/webgui/create/default-webgui-welcome-message-template',1237647040,1287545014,'3','7','12','WebGUI::Asset::Template',0,'Default WebGUI Welcome Message Template Default WebGUI Welcome Message Template root import auth webgui create default webgui welcome message template Auth/WebGUI/Welcome','000001000001000005000005000002',NULL),('PBtmpl0000000000000016','Default WebGUI Account Activation Template','','root/import/auth/webgui/create/default-webgui-account-activation-template',1237407798,1287545014,'3','7','3','WebGUI::Asset::Template',0,'Default WebGUI Account Activation Template Default WebGUI Account Activation Template root import auth webgui create default webgui account activation template Auth/WebGUI/Activation','000001000001000005000005000003',NULL),('wrq7hMxb1ewQqZ46xmd8Gg','equal-cols.js','','matrix/equal-cols.js',1235706620,1281501163,'3','7','12','WebGUI::Asset::Snippet',0,'equal-cols.js equal-cols.js matrix equal cols.js function equalCol var colOne = document.getElementById(\'compareForm var colTwo = document.getElementById(\'matrixRight var colOneH = colOne.offsetHeight var colTwoH = colTwo.offsetHeight alert(colOneH + + colTwoH colOne.style.overflow = scroll colOne.style.height = colTwoH 150 + px ','000001000001000022000011',NULL),('matrixtmpl000000000007','Matrix Default Screenshots Config','','matrix-default-screenshots-config',1236594030,1281501163,'3','7','12','WebGUI::Asset::Template',0,'Matrix Default Screenshots Config Matrix Default Screenshots Config matrix default screenshots config Matrix/ScreenshotsConfig','000001000001000022000012',NULL),('matrixtmpl000000000006','Matrix Default Screenshots','','matrix-default-screenshots',1236889702,1281501163,'3','7','12','WebGUI::Asset::Template',0,'Matrix Default Screenshots Matrix Default Screenshots matrix default screenshots Matrix/Screenshots','000001000001000022000013',NULL),('RSAMkc6WQmfRE3TOr1_3Mw','ExpireIncompleteSurveyResponses','','root/import/expireincompletesurveyresponses',1234828062,1250243000,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ExpireIncompleteSurveyResponses ExpireIncompleteSurveyResponses root import expireincompletesurveyresponses','000001000001000042000011',NULL),('ExpireIncResptmpl00001','ExpireIncompleteSurveyResponses','','root/import/expireincompletesurveyresponses/expireincompletesurveyresponses',1236752721,1250243000,'3','7','12','WebGUI::Asset::Template',0,'ExpireIncompleteSurveyResponses ExpireIncompleteSurveyResponses root import expireincompletesurveyresponses expireincompletesurveyresponses ExpireIncompleteSurveyResponses','000001000001000042000011000001',NULL),('NBVSVNLp9X_bV7WrCprtCA','Annotate Image','','image3',1237842096,1237842096,'3','7','12','WebGUI::Asset::Template',0,'Annotate Image Annotate Image image3 ImageAsset','000001000001000017000002',NULL),('qsG6B24a0SC5KrhQjmdZBw','survey.css','','survey.css',1233860274,1287545015,'3','7','12','WebGUI::Asset::Snippet',0,'survey.css survey.css survey.css body margin 0 background-repeat repeat-y background-position 0px 0px survey-header width 80 height 20px margin-left 80px survey margin-left 80px width 85 div.dateanswer overflow auto div.slider-bg position relative background:url(/extras/wobject/Survey/bg-fader-500.gif 5px 0 no-repeat height:68px width:529px div.slider-thumb cursor:default position absolute top 30px left 4px div.slider-min-thumb cursor:default position absolute top 4px div.slider-max-thumb cursor:default position absolute top 4px headertitle display none headertext display none questions display none input.mcbutton font-size 10px font-weight bold text-decoration none background-color CCCCCC background-repeat repeat-x text-align center display block margin 0.5em padding 8em min-width 60px font-family Verdana Arial Helvetica sans-serif color 000000 background-image url(/extras/wobject/Survey/gradient-glossy.png input.mcbutton:hover background-color B6D2F1 font-family Verdana Arial Helvetica sans-serif font-size 10px color 000000 input.mcbutton-selected background-color 172D9D background-repeat repeat-x color FFFFFF font-family Verdana Arial Helvetica sans-serif font-size 10px margin 0.5em padding 8em width 60px text-align center display block font-weight bold background-image url(/extras/wobject/Survey/gradient-glossy.png background-position 0px 0px By default the marker for invalid required fields is a red survey-invalid-marker color FF0000 survey font-family Verdana Arial Helvetica sans-serif font-size 10px border 3px solid 1e1e1e survey survey-header background-color cfcfcf padding-top 1px survey headertitle padding-left 5px survey progress position relative top 26px right 5px text-align right font-style italic survey progress:before content Progress survey headertext border-bottom 2px solid 1e1e1e padding 5px survey questions survey question background-color dfdfdf padding 10px 5px 10px 5px survey question p:before content Q survey scale:before content A survey submitbutton margin-left 5px restartMessage color FF0000 chart float left width 200px height 113px ','000001000001000042000010',NULL),('6uvSLY-ak_w4p_wS8q33cA','Carousel','','root/import/carousel',1239213092,1239213092,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Carousel Carousel root import carousel','000001000001000007',NULL),('CarouselTmpl0000000001','Default Carousel','','root/import/carousel/carousel-default',1239290719,1301973997,'3','7','12','WebGUI::Asset::Template',0,'Default Carousel Default Carousel root import carousel carousel default Carousel','000001000001000007000001',NULL),('CarouselTmpl0000000002','Carousel hidden textareas','','root/import/carousel/carousel-hidden-textareas',1238878995,1239475937,'3','7','12','WebGUI::Asset::Template',0,'Carousel hidden textareas Carousel hidden textareas root import carousel carousel hidden textareas Carousel','000001000001000007000002',NULL),('GaBAW-2iVhLMJaZQzVLE5A','ThingyRecord Templates','','root/import/thingyrecord-templates',1240103565,1240103565,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'ThingyRecord Templates ThingyRecord Templates root import thingyrecord templates','000001000001000045',NULL),('TKmhv8boP3TD2xwSwUBq0g','Default ThingyRecord View','','home/thinyrecord-templates/default-thingyrecord-view',1240103436,1250243000,'3','7','3','WebGUI::Asset::Template',0,'Default ThingyRecord View Default ThingyRecord View home thinyrecord templates default thingyrecord view ThingyRecord/View','000001000001000045000001',NULL),('fowHfgOkJtAxdst7rugTog','Story Manager','','root/import/storymanager',1236184911,1252595993,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Story Manager Story Manager root import storymanager','000001000001000040',NULL),('3QpYtHrq_jmAk1FNutQM5A','Story Template','','root/import/storymanager/storytemplate',1239237827,1253636379,'3','7','4','WebGUI::Asset::Template',0,'Story Template Story Template root import storymanager storytemplate Story','000001000001000040000001',NULL),('yxD5ka7XHebPLD-LXBwJqw','StoryArchive','','root/import/storymanager/storyarchive',1239918573,1253635396,'3','7','4','WebGUI::Asset::Template',0,'StoryArchive StoryArchive root import storymanager storyarchive StoryArchive','000001000001000040000002',NULL),('A16v-YjWAShXWvSACsraeg','StoryTopic','','root/import/storymanager/storytopic',1239918710,1285124154,'3','7','4','WebGUI::Asset::Template',0,'StoryTopic StoryTopic root import storymanager storytopic StoryTopic','000001000001000040000005',NULL),('0EAJ9EYb9ap2XwfrcXfdLQ','Story Archive Asset List','','root/import/storymanager/keywordlist',1240262820,1250243000,'3','7','4','WebGUI::Asset::Template',0,'Story Archive Asset List Story Archive Asset List root import storymanager keywordlist StoryArchive/KeywordList','000001000001000040000006',NULL),('9j0_Z1j3Jd0QBbY2akb6qw','Default Map View','','home/map/map-templates/default-map-view',1238053232,1304392055,'3','7','3','WebGUI::Asset::Template',0,'Default Map View Default Map View home map map templates default map view Map/View','000001000001000020000001',NULL),('oHh0UqAJeY7u2n--WD-BAA','Default Edit Map Point','','home/map/map-templates/default-edit-map-point',1238040667,1304392055,'3','7','3','WebGUI::Asset::Template',0,'Default Edit Map Point Default Edit Map Point home map map templates default edit map point MapPoint/Edit','000001000001000020000002',NULL),('u9vfx33XDk5la1-QC5FK7g','Default Map Point View','','home/map/map-templates/default-map-point-view',1238048383,1304392055,'3','7','3','WebGUI::Asset::Template',0,'Default Map Point View Default Map Point View home map map templates default map point view MapPoint/View','000001000001000020000003',NULL),('kwTL1SWCk0GlpiJ5zAAEPQ','surveyedit.css','','root/import/survey/surveyedit.css',1244488512,1287545015,'3','7','12','WebGUI::Asset::Snippet',0,'surveyedit.css surveyedit.css root import survey surveyedit.css editor_container visibility hidden z-index 100 loading-mask position absolute left 0 top 0 width 100 height 100 z-index 20000 background-color white opacity:0.6 filter:alpha(opacity=60 loading position absolute left 50 top 50 padding 2px z-index 20001 height auto margin 35px 0 0 30px loading loading-indicator background url(^Extras(\"wobject/Survey/rel_interstitial_loading.gif no-repeat color 555 font bold 13px tahoma,arial,helvetica padding 18px 80px margin 0 text-align center height auto z-index 20002 div.testarea width 200px height 100px z-index 999 border 1px solid gray background f7f7f7 position absolute top 5 left:5 div.trashcan border 1px solid gray width 175px height 50px div.editarea margin-top:40px padding:10px float:left border 1px solid gray div.editquestion padding:10px float:left div.editanswer padding:10px float:left submitbutton padding:20px div.entry padding-bottom:10px padding-left:10px ul.draglist list-style none margin:0 padding:0 ul.draglist li margin 1px ul.questionList position relative background f7f7f7 border 1px solid gray list-style none margin:0 padding:0 min-height 40px li.section background-color CCCCFF border:1px solid 7EA6B2 cursor move min-height 10px li.question background-color D1E6EC border:1px solid 7EA6B2 cursor move padding-left:10px min-height 10px li.answer background-color F1FFB8 border:1px solid 7EA6B2 cursor move padding-left:15px min-height 10px sections-panel li.selected background-image url(^Extras(\"toolbar/bullet/moveRight.gif background-position:99 center background-repeat no-repeat font-weight:bold goto-yui-ac width:15em margin-top:0.5em wGwarning background-color:#FF6666 border:1px solid red margin:5px padding:10px warning padding 5px sections-panel bd overflow auto background-color:#fff padding:10px buttons height 30px sections-panel_c yui-resize yui-resize-handle-r right 6px make room for the scroll-bars sections-panel div.ft font-size 100 ','000001000001000042000014',NULL),('i5kt5aodVs_oepNEkE7Okw','poll.css','','poll.css',1242312883,1242312883,'3','7','12','WebGUI::Asset::Snippet',0,'poll.css poll.css poll.css styles for the poll asset pollColor background-color:#808080 pollOptions pollSubmit border:0 margin:0 padding:0 ','000001000001000027000002',NULL),('uCn31PzislTZlgt_79j7cQ','style.css','','css/style.css',1258524916,1258524916,'3','7','12','WebGUI::Asset::Snippet',0,'style.css style.css css style.css fail safe topWrapper font:82.5%/1.3 helvetica,arial,sans-serif width:98 overflow:hidden margin:0 auto 2em nav float:left width:20 margin:1em 0 2em nav menu list-style:none margin:0 padding:0 contentArea float:right width:77 margin:1em 0 2em padding:5px 1 border:1px solid ccc adminControls margin:1em 0 padding:1em 0 0 border-top:1px dotted ccc ','000001000001000041000006',NULL),('FJbUTvZ2nUTn65LpW6gjsA','Profile Account Layout','','root/import/account/profile/profile-account-layout',1227070381,1256092369,'3','7','12','WebGUI::Asset::Template',0,'Profile Account Layout Profile Account Layout root import account profile profile account layout Account/Layout','000001000001000002000001000001',NULL),('75CmQgpcCSkdsL-oawdn3Q','Default Edit Profile Template','','root/import/account/profile/default-edit-profile-template',1227052575,1253555614,'3','7','12','WebGUI::Asset::Template',0,'Default Edit Profile Template Default Edit Profile Template root import account profile default edit profile template Account/Profile/Edit','000001000001000002000001000002',NULL),('2CS-BErrjMmESOtGT90qOg','Default View Profile Template','','root/import/account/profile/default-view-profile-template',1227070888,1248549087,'3','7','12','WebGUI::Asset::Template',0,'Default View Profile Template Default View Profile Template root import account profile default view profile template Account/Profile/View','000001000001000002000001000003',NULL),('MBmWlA_YEA2I6D29OMGtRg','Default Profile Error Template','','root/import/account/profile/default-profile-error-template',1226542675,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Profile Error Template Default Profile Error Template root import account profile default profile error template Account/Profile/Error','000001000001000002000001000004',NULL),('gfZOwaTWYjbSoVaQtHBBEw','Inbox Account Layout','','root/import/account/inbox-account-layout',1226974679,1249407461,'3','7','12','WebGUI::Asset::Template',0,'Inbox Account Layout Inbox Account Layout root import account inbox account layout Account/Layout','000001000001000002000002000001',NULL),('c8xrwVuu5QE0XtF9DiVzLw','Default Inbox View Template','','root/import/account/inbox/default-inbox-view-template',1226894351,1273032723,'3','7','12','WebGUI::Asset::Template',0,'Default Inbox View Template Default Inbox View Template root import account inbox default inbox view template Account/Inbox/View','000001000001000002000002000002',NULL),('0n4HtbXaWa_XJHkFjetnLQ','Default Inbox View Message Template','','root/import/account/inbox/default-inbox-view-message-template',1226894994,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Inbox View Message Template Default Inbox View Message Template root import account inbox default inbox view message template Account/Inbox/ViewMessage','000001000001000002000002000003',NULL),('ErEzulFiEKDkaCDVmxUavw','Default Inbox Error Template','','root/import/account/inbox/default-inbox-error-template',1226895484,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Inbox Error Template Default Inbox Error Template root import account inbox default inbox error template Account/Inbox/Error','000001000001000002000002000004',NULL),('6uQEULvXFgCYlRWnYzZsuA','Default Inbox Send Message Template','','root/import/account/inbox/default-inbox-send-message-template',1226896682,1279073450,'3','7','12','WebGUI::Asset::Template',0,'Default Inbox Send Message Template Default Inbox Send Message Template root import account inbox default inbox send message template Account/Inbox/SendMessage','000001000001000002000002000005',NULL),('DUoxlTBXhVS-Zl3CFDpt9g','Default Message Confirm Template','','root/import/account/inbox/default-message-confirm-template',1226896802,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Message Confirm Template Default Message Confirm Template root import account inbox default message confirm template Account/Inbox/Confirm','000001000001000002000002000006',NULL),('1Q4Je3hKCJzeo0ZBB5YB8g','Default Manage Invitations Template','','root/import/account/inbox/default-manage-invitations-template',1226898445,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Manage Invitations Template Default Manage Invitations Template root import account inbox default manage invitations template Account/Inbox/ManageInvitations','000001000001000002000002000007',NULL),('5A8Hd9zXvByTDy4x-H28qw','Default Invitation Confirmation Template','','root/import/account/inbox/default-invitation-confirmation-template',1226899462,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Invitation Confirmation Template Default Invitation Confirmation Template root import account inbox default invitation confirmation template Account/Inbox/Confirm','000001000001000002000002000008',NULL),('VBkY05f-E3WJS50WpdKd1Q','Default View Invitation Template','','root/import/account/inbox/default-view-invitation-template',1226899241,1248549087,'3','7','12','WebGUI::Asset::Template',0,'Default View Invitation Template Default View Invitation Template root import account inbox default view invitation template Account/Inbox/ViewInvitation','000001000001000002000002000009',NULL),('XgcsoDrbC0duVla7N7JAdw','Default Invite User Email Template','','root/import/account/inbox/default-invite-user-email-template',1226973330,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Invite User Email Template Default Invite User Email Template root import account inbox default invite user email template Account/Inbox/InviteUserMessage','000001000001000002000002000010',NULL),('cR0UFm7I1qUI2Wbpj--08Q','Default Invite User Form Template','','root/import/account/inbox/default-invite-user-form-template',1226964738,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Invite User Form Template Default Invite User Form Template root import account inbox default invite user form template Account/Inbox/InviteUser','000001000001000002000002000011',NULL),('SVIhz68689hwUGgcDM-gWw','Default Invite User Confirm Template','','root/import/account/inbox/default-invite-user-confirm-template',1226973314,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Invite User Confirm Template Default Invite User Confirm Template root import account inbox default invite user confirm template Account/Inbox/InviteUserConfirm','000001000001000002000002000012',NULL),('zrNpGbT3odfIkg6nFSUy8Q','Friends Layout Template','','root/import/account/friends/friends-layout-template',1226994016,1249407461,'3','7','12','WebGUI::Asset::Template',0,'Friends Layout Template Friends Layout Template root import account friends friends layout template Account/Layout','000001000001000002000003000001',NULL),('1Yn_zE_dSiNuaBGNLPbxtw','Default Friends View Template','','root/import/account/friends/default-friends-view-template',1226994422,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Friends View Template Default Friends View Template root import account friends default friends view template Account/Friends/View','000001000001000002000003000002',NULL),('AZFU33p0jpPJ-E6qLSWZng','Default Friends Edit Template','','root/import/account/friends/default-friends-edit-template',1226994865,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Friends Edit Template Default Friends Edit Template root import account friends default friends edit template Account/Friends/Edit','000001000001000002000003000003',NULL),('AGJBGviWGAwjnwziiPjvDg','Default Send Request Template','','root/import/account/friends/default-send-request-template',1226995497,1248549087,'3','7','12','WebGUI::Asset::Template',0,'Default Send Request Template Default Send Request Template root import account friends default send request template Account/Friends/SendRequest','000001000001000002000003000004',NULL),('7Ijdd8SW32lVgg2H8R-Aqw','Default Friends Error Template','','root/import/account/friends/default-friends-error-template',1226995714,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Friends Error Template Default Friends Error Template root import account friends default friends error template Account/Friends/Error','000001000001000002000003000005',NULL),('K8F0j_cq_jgo8dvWY_26Ag','Default Friends Confirmation Template','','root/import/account/friends/default-friends-confirmation-template',1226995643,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Friends Confirmation Template Default Friends Confirmation Template root import account friends default friends confirmation template Account/Friends/Confirm','000001000001000002000003000006',NULL),('G5V6neXIDiFXN05oL-U3AQ','Default Remove Friends Confirmation Template','','root/import/account/friends/default-remove-friends-confirmation-template',1226995768,1248549087,'3','7','12','WebGUI::Asset::Template',0,'Default Remove Friends Confirmation Template Default Remove Friends Confirmation Template root import account friends default remove friends confirmation template Account/Friends/Confirm','000001000001000002000003000007',NULL),('9ThW278DWLV0-Svf68ljFQ','Account Layout','','root/import/account/user/account-layout',1226647187,1249407460,'3','7','12','WebGUI::Asset::Template',0,'Account Layout Account Layout root import account user account layout Account/Layout','000001000001000002000004000001',NULL),('aUDsJ-vB9RgP-AYvPOy8FQ','Shop Account Layout','','root/import/account/shop/shop-account-layout',1226660439,1263962529,'3','7','12','WebGUI::Asset::Template',0,'Shop Account Layout Shop Account Layout root import account shop shop account layout Account/Layout','000001000001000002000005000001',NULL),('-zxyB-O50W8YnL39Ouoc4Q','Default My Sales Template','','root/import/default-my-sales-template',1236959717,1248563425,'3','7','12','WebGUI::Asset::Template',0,'Default My Sales Template Default My Sales Template root import default my sales template Shop/MySales','000001000001000002000005000002',NULL),('b4n3VyUIsAHyIvT-W-jziA','Contributions Layout','','root/import/account/contributions/contributions-layout',1227074747,1249407461,'3','7','12','WebGUI::Asset::Template',0,'Contributions Layout Contributions Layout root import account contributions contributions layout Account/Layout','000001000001000002000006000001',NULL),('1IzRpX0tgW7iuCfaU2Kk0A','Default Contributions View','','root/import/account/contributions/default-contributions-view',1227079721,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Contributions View Default Contributions View root import account contributions default contributions view Account/Contrib/View','000001000001000002000006000002',NULL),('N716tpSna0iIQTKxS4gTWA','Default Account Layout','','root/import/account/default-account-layout2',1226604666,1281501163,'3','7','12','WebGUI::Asset::Template',0,'Default Account Layout Default Account Layout root import account default account layout2 Account/Layout','000001000001000002000007',NULL),('CalendarMonth000000001','Default Calendar Month','','root/import/calendar-templates/default-calendar-month',1204890713,1279073449,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Month Default Calendar Month root import calendar templates default calendar month Calendar/Month','000001000001000006000007',NULL),('q5O62aH4pjUXsrQR3Pq4lw','Default Gallery View Album Thumbnails','','root/import/gallery-templates/default-gallery-view-album-thumbnails',1197825772,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery View Album Thumbnails Default Gallery View Album Thumbnails root import gallery templates default gallery view album thumbnails GalleryAlbum/ViewThumbnails','000001000001000015000004',NULL),('kaPRSaf8UKiskiGEgJgLAw','images','','root/import/gallery-templates/images',1197330678,1285124155,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'images images root import gallery templates images','000001000001000015000017',NULL),('matrixtmpl000000000001','Matrix Default View','','matrix-default-view-template',1133743238,1281501162,'3','7','12','WebGUI::Asset::Template',0,'Matrix Default View Matrix Default View matrix default view template Matrix','000001000001000022000002',NULL),('matrixtmpl000000000003','Matrix Default Detailed Listing','','matrix-default-detailed-listing',1133743238,1281501163,'3','7','12','WebGUI::Asset::Template',0,'Matrix Default Detailed Listing Matrix Default Detailed Listing matrix default detailed listing Matrix/Detail','000001000001000022000003',NULL),('alraubvBu-YJJ614jAHD5w','matrix-nav-tmpl','','new-matrix/matrix-nav-tmpl',1232664015,1281501163,'3','7','12','WebGUI::Asset::Template',0,'matrix-nav-tmpl matrix-nav-tmpl new matrix matrix nav tmpl Navigation','000001000001000022000009',NULL),('PBtmpl0000000000000062','Default Gradebook Report','','root/import/survey/default-gradebook-report',1124395696,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Gradebook Report Default Gradebook Report root import survey default gradebook report Survey/Gradebook','000001000001000042000002',NULL),('d8jMMMRddSQ7twP4l1ZSIw','Default Survey Take','','root/import/survey/default-survey-take',1227248175,1253555614,'3','7','12','WebGUI::Asset::Template',0,'Default Survey Take Default Survey Take root import survey default survey take Survey/Take','000001000001000042000005',NULL),('E3tzZjzhmYoNlAyP2VW33Q','Edit Story','','root/import/storymanager/editstory',1239236292,1303183716,'3','7','4','WebGUI::Asset::Template',0,'Edit Story Edit Story root import storymanager editstory Story/Edit','000001000001000040000003',NULL),('TbDcVLbbznPi0I0rxQf2CQ','Story Template Topic','','root/import/storymanager/storytemplatetopic',1237524306,1253636379,'3','7','4','WebGUI::Asset::Template',0,'Story Template Topic Story Template Topic root import storymanager storytemplatetopic Story','000001000001000040000004',NULL),('brxm_faNdZX5tRo3p50g3g','Map Templates','','home/map/map-templates',1238054297,1304392055,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Map Templates Map Templates home map map templates','000001000001000020',NULL),('i9-G00ALhJOr0gMh-vHbKA','Inbox SMS Notification','','root/import/inbox-sms-notification',1250408924,1250408924,'3','7','4','WebGUI::Asset::Template',0,'Inbox SMS Notification Inbox SMS Notification root import inbox sms notification Account/Inbox/Notification','000001000001000002000002000014',NULL),('S3zpVitAmhy58CAioH359Q','Default Test Results','','root/import/survey/default-test-results',1242893798,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Test Results Default Test Results root import survey default test results Survey/TestResults','000001000001000042000013',NULL),('b1316COmd9xRv4fCI3LLGA','Inbox Notification','','inbox_notification',1236956475,1236956475,'3','7','4','WebGUI::Asset::Template',0,'Inbox Notification Inbox Notification inbox notification Account/Inbox/Notification','000001000001000002000002000013',NULL),('nWNVoMLrMo059mDRmfOp9g','Default Feedback','','root/import/survey/default-feedback',1242259265,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Feedback Default Feedback root import survey default feedback Survey/Feedback','000001000001000042000015',NULL),('l0guT3vTR3B8cL6vtP-g3A','Contribute','You don\'t have to be a developer to become a project contributor. Examples of how you can contribute include:\n \n\nTranslators - Visit i18n.webgui.org\n and either help translate a few items in an existing language, or \ncreate a new translation. \nGraphic Des','contribute',1271445611,1285124369,'3','7','3','WebGUI::Asset::Wobject::Article',1,'Contribute contribute contribute You don\'t have to be a developer to become a project contributor Examples of how you can contribute include Translators Visit i18n.webgui.org and either help translate a few items in an existing language or create a new translation Graphic Designers Create WebGUI style themes icons or fix UI bugs You can contribute your items to WebGUI\'s Addons and Plugins area for others to download and use Usability Experts Help make WebGUI more accessable and easier to use by submitting RFEs Even better submit an RFE that\'s ready to implement by including the code Doc Writers Write documents in WebGUI\'s wiki help out on the boards improve WebGUI\'s built in documentation Testers Validate WebGUI\'s features against its documentation search for errors and report bugs Test writers If you have some Perl abilities you can help develop unit tests to make sure the WebGUI API is behaving as documented Developers Write a new feature for WebGUI like a macro asset wobject auth module or workflow activity and contribute it to the Addons and Plugins If you\'re interested in developing for WebGUI be sure to check out the Development Best Practices wiki article Bug Fixers Cruise the bug list and submit patches to correct the problem Core Developers Becoming a core developer is a privilege To earn it you have to demonstrate through bug fixes and/or contributions that you can make sound programming decisions without the need for someone to scrutinize everything you check in WebGUI is a very large and complex application so getting to this level can take some time Core developers are developers with commit privileges to the subversion repository Advocate Spread the word about WebGUI tell people about how you use it and how it\'s helped you.Encourage people to try it out Marketing and Promotion If you have a talent for marketing advertising or promotion you can be a super advocate Have a marketing idea Contact tavis AT plainblack DOT com Make a WebGUI banner or print ad and contribute it Maybe you have a design for a cool wallpaper or t-shirt anything to get the word out ','000001000002000004000002',NULL),('D6cJpRcey35aSkh9Q_FPUQ','Default EU User Screen','','root/import/default-eu-user-screen',1242407725,1313542961,'3','7','12','WebGUI::Asset::Template',0,'Default EU User Screen Default EU User Screen root import default eu user screen TaxDriver/EU/User','000001000001000036000019',NULL),('lo1rpxn3t8YPyKGers5eQg','Friend Manager','Templates for the Friend Manager ','root/import/account/friendmanager',1238625621,1238625621,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Friend Manager Friend Manager root import account friendmanager Templates for the Friend Manager','000001000001000002000010',NULL),('64tqS80D53Z0JoAs2cX2VQ','FriendManager View Template','','root/import/account/friendmanager/view',1239400975,1295931508,'3','7','4','WebGUI::Asset::Template',0,'FriendManager View Template FriendManager View Template root import account friendmanager view Account/FriendManager/View','000001000001000002000010000001',NULL),('lG2exkH9FeYvn4pA63idNg','Friend Manager Edit Friends','','root/import/account/friendmanager/edit',1239383808,1289967962,'3','7','4','WebGUI::Asset::Template',0,'Friend Manager Edit Friends Friend Manager Edit Friends root import account friendmanager edit Account/FriendManager/Edit','000001000001000002000010000002',NULL),('newslettercs0000000001','Newsletter Manager (default)','','newslettercstemplate',1185754569,1252682678,'3','7','3','WebGUI::Asset::Template',0,'Newsletter Manager default Newsletter Manager newslettercstemplate Collaboration','000001000001000026000002',NULL),('iCM9pRY5yYyjufROgaCDlg','storyManager.css','','storymanager.css',1253305659,1253305659,'3','7','12','WebGUI::Asset::Snippet',0,'storyManager.css storyManager.css storymanager.css editStory width 100 editStory legend font-size 1.8em border-bottom 2px solid editStory tbody width 943px editStory td padding 5px editStory story float:left editStory story label editStory photo label display block width 100 text-align right editStory photoContainer border 1px solid float:left margin 10px 0 0 20px editStory photoContainer photoHeader font-size 1.2em font-weight bold editStory buttons clear both text-align right padding 10px 0 editStory story_formId_tbl width 100 important editStory fieldset border none storyArchive width 100 storyArchive h3 border-bottom 2px solid margin-bottom 10px storyArchive storyList list-style-type none padding-left 0 storyArchive storyList li padding-left 10px margin-bottom 10px storyArchive pagination float left list-style-type none storyArchive keywords width 100 clear both storyArchive img border none storyArchive controls a margin-right 10px viewStory storyTitle viewStory storyUpdated viewStoryTopic storyTitle viewStoryTopic storyUpdated float left viewStory storyTitle viewStoryTopic storyTitle font-size 1.5em width 100 viewStory storyHighlights viewStoryTopic storyHighlights float:right margin-top 1.5em viewStory storyPhoto viewStoryTopic storyPhoto float left margin 0 10px 10px 0 viewStory photoCaption viewStoryTopic photoCaption width 496px padding 5px display:block viewStory clear viewStoryTopic clear clear both storyTopic width 100 storyTopic h3 border-bottom 2px solid storyTopic topStory width 340px float left storyTopic storyList width 250px float left storyTopic storyListBig width 100 float left htmltagcloud wg-clear clear:both ','000001000001000040000007',NULL),('zb_OPKNqcTuIjdvvbEkRjw','article.css','','article.css',1247484073,1256092368,'3','7','12','WebGUI::Asset::Snippet',0,'article.css article.css article.css styles for the article asset withImage articleContent linkedImage articleContent width:100 overflow:hidden withImage articleImage linkedImage articleImage float:right margin:0 0 10px 10px linkedImage caption display:block ','000001000001000004000005',NULL),('PBtmpl0000000000000210','Request Tracker Post Form','','request-tracker-template2',1147642410,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Request Tracker Post Form Request Tracker Post Form request tracker template2 Collaboration/PostForm','000001000001000008000028',NULL),('pbrobot000000000000001','robots.txt','','robots.txt',1147642511,1256092369,'3','7','12','WebGUI::Asset::Snippet',0,'robots.txt robots.txt robots.txt User-agent Disallow op=auth Disallow op=account Disallow op=ajaxGetI18N Disallow op=makePrintable Disallow op=viewHelp Disallow op=viewHelpIndex','000001000001000033',NULL),('4qh0kIsFUdd4Ox-Iu1JZgg','EMS','','root/import/ems',1208725439,1257311886,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'EMS EMS root import ems','000001000001000012',NULL),('hreA_bgxiTX-EzWCSZCZJw','Print Remaining Tickets Template (default)','','root/import/ems/default-print-remaining-tickets-template',1257311887,1257311887,'3','7','12','WebGUI::Asset::Template',0,'Print Remaining Tickets Template default Print Remaining Tickets Template default root import ems default print remaining tickets template EMS/PrintRemainingTickets','000001000001000012000008',NULL),('P_4uog81vSUK4KxuW_4GUA','css','','css',1258524916,1258524916,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'css css css','000001000001000054',NULL),('H_-8zjtWsO1FUpQqNtkxNQ','wg-base.css','','css/wg-base.css',1258524916,1258524916,'3','7','12','WebGUI::Asset::Snippet',0,'wg-base.css wg-base.css css wg base.css In this stylesheet you can find the styles that are used in more than one template For example file/attachment icons pagination etc Elements that are styled with this stylesheet have a classname that starts with wg general wg-icon border:0px none vertical-align middle wg-clear clear:both inline list pagination wg-inline margin:0 0 1em padding:0 wg-inline li display:inline margin:0 padding:0 wg-inline li.active font-weight:bold forms wg-captchaImage border:0 none vertical-align:middle margin-left:5px ','000001000001000054000001',NULL),('0iMMbGN3BevuCBHjjLiQNA','WebGUI/Deactivate','','root/import/auth/webgui/deactivate',1269401469,1287545015,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI/Deactivate WebGUI/Deactivate root import auth webgui deactivate','000001000001000005000009',NULL),('zaHUYsE_PgKk8hnVd8ffEQ','WebGUI Deactivate Account Template','','default_webgui_deactivate_account_template',1269401469,1287545015,'3','7','12','WebGUI::Asset::Template',0,'WebGUI Deactivate Account Template WebGUI Deactivate Account Template default webgui deactivate account template Auth/WebGUI/Deactivate','000001000001000005000009000001',NULL),('6A4yIjWwJfIE0Ep-I0jutg','LDAP/Deactivate','','root/import/auth/ldap/deactivate',1269401469,1287545015,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP/Deactivate LDAP/Deactivate root import auth ldap deactivate','000001000001000005000010',NULL),('_P4PMiraGsLTfOjK4fYQPQ','LDAP Deactivate Account Template','','default_ldap_deactivate_account_template',1269401469,1287545015,'3','7','12','WebGUI::Asset::Template',0,'LDAP Deactivate Account Template LDAP Deactivate Account Template default ldap deactivate account template Auth/LDAP/Deactivate','000001000001000005000010000001',NULL),('_XfvgNH__bY1ykMiKYSobQ','account.css','','root/import/account/account.css',1233168041,1281501163,'3','7','12','WebGUI::Asset::Snippet',0,'account.css account.css root import account account.css general WGsubContent WGsubContent a WGsubContent a:link color:#000000 important WGbutton float:right padding-right:10px centered text-align center WGaccount_message background-color white border solid BECEF8 1px height 300px margin-bottom 10px margin-left 60px margin-top 20px overflow:-moz-scrollbars-vertical overflow-x:hidden overflow-y:scroll padding:10px text-align left vertical-align:top width 90 WGprofileMember font-size:9px margin-right:20px text-align:right WGmember color:#3e4f77 font 9px Verdana Arial Helvetica sans-serif text-align:center WGphotostyle border:solid 3e4f77 2px margin-bottom:5px margin-top:5px rightalign float right WGsend float:right padding-right 75px bio addtonetwork network WGbordered border-bottom dashed BECEF8 2px padding-bottom 10px WGfriendpic border solid BECEF8 1px WGinvitemsg width 600px height 150px ol.WGProfile_interests color:#0B2259 font-size:15px font-weight:bold list-style-type:none margin:0px padding:0px padding:5px 5px ol.WGProfile_interests li margin-bottom:15px ol.WGProfile_interests span font-size:12px font-weight:normal color:black WGpBio border-bottom:solid DDE6FB 1px margin:0px margin-bottom:5px padding-bottom:5px WGpBio div background-color:#DDE6FB padding:2px 5px margin-bottom:2px WGprogram font-size 9px contributions WGContribCount font-size:12px text-align:left padding:3px WGContribTitle background-color:#f2f5fa border solid d8dee8 1px color:#0B2259 font-size:12px font-weight:bold min-height:25px padding:3px text-align:center text-decoration underline WGContribTitleLeft background-color:#f2f5fa border solid d8dee8 1px color:#0B2259 font-size:12px font-weight:bold min-height:25px padding:3px text-align:center text-decoration underline WGContribEntry text-align:center padding:3px WGContribEntryLeft text-align:left padding:3px edit box WGeditBox background:white url(images/edit_box_bg.jpg no-repeat bottom left border:solid 8DABF1 2px display:block font-family:verdana font-size:9px font-weight:bold left:100px moz-box-sizing:border-box padding:5px position:absolute top:100px width:590px z-index:100 WGeditBox input WGeditBox select font-size:9px friends WGfriends_name font-weight:bold width:90 WGfriends_photo font-weight:bold width:10 WGfriends_photo img height 50px width 50px WGfriends_private float:right padding-bottom 5px width 50 WGfriends_ninety vertical-align:top width 90 WGfriends_seventy vertical-align:top width 70 WGfriends_ten width 10 WGfriends_ten img height 50px width 50px WGfriends_twenty width 20 WGaccepts padding-bottom 5px inbox WGProfile_msgcontainer padding:2px WGinbox_count font-size:12px font-weight:bold padding:3px text-align:left WGinbox_errors font-weight:bold color:red text-align:center WG_inbox_InviteLabel width:50px text-align:right WG_inbox_InviteLabelView font-weight:bold width:120px WGmsgcontainer padding:6px display:block margin-bottom:6px inbox contacts WGdatacells border-bottom dashed BECEF8 1px WGinbox_contactsTbl background-color:#EEF2FD font-family:arial font-size:9pt width:100 contacts height 275px overflow auto inbox forms WGbuttons_left float left WGbuttons_right float right WGinbox_from color black font-weight normal text-decoration none WGinbox_subject width 530px WGinbox_messageTo background-color white border solid BECEF8 1px height 50px overflow:-moz-scrollbars-vertical overflow-x:hidden overflow-y:scroll width 530px inbox pagination WGinbox_buttons display:inline float:left font-size:10px text-align:left width:70 WGinbox_pagination display:inline text-align:right width:20 WGinbox_messagerpp font-size:10px display:inline text-align:right width:20 WGmessage display:inline float:left font-size:10px text-align:left width:70 WGmessagerpp font-size:10px display:inline text-align:right float right WG-previous-next float right inbox threads WGevenThread background-color e1e8fb border-bottom 1px solid bfcef9 padding 8px text-align:center WGoddThread background-color eef2fd border-bottom 1px solid bfcef9 padding 8px text-align center pagination WGProfile_pagination font-size:10px text-align:right width:20 WGProfile_messagerpp font-size:10px display:inline text-align:right width:20 WGProfile_paginationLeft font-size:10px text-align:left width:20 WGProfile_paginationCenter font-size:10px text-align:center width:20 WGProfile_pagination a background-color:#f2f5fa border:solid bfc8dc 1px font-size:10px font-weight:bold padding:1px 5px text-decoration:none WGProfile_pagination a:hover background-color:#d8dee8 color:white WGProfile_pagination prevNext background-color transparent border none color black WGProfile_pagination prevNext:hover background-color transparent border none color black WGProfile_pagination active background-color:#d8dee8 border:solid bfc8dc 1px color:white font-size:10px font-weight:bold padding:1px 5px text-decoration:none WGProfile_pagination img vertical-align:middle margin-top:2px border:none profile WGProfile_registration background:none border:none font-size:9pt font-family:arial margin:0 padding:0 width:100 WGProfile_registration header background-color:#818997 color:#3e4f77 font-size:10px font-weight:bold text-align:left WGProfile_registration header a color:white text-decoration:none WGProfile_registration help a font-weight:bold text-decoration:none WGProfile_registration inputText font-size:10px margin-right:1px WGProfile_registration label font-size:9pt font-weight:bold text-align:right white-space:nowrap width:1 WGProfile_registration labelLeft font-size:9pt font-weight:bold white-space:nowrap width:1 text-align left vertical-align top WGProfile_registration smallLabel font-size:8px text-align:center WGProfile_registration smallText font-size:9px WGinboxTbl display:block margin 4px padding 2px WGProfile_registration bar WGProfile_registration barRight background-color:#f2f5fa border solid d8dee8 1px color:#3e4f77 font-size:14px font-weight:bold margin:10px 0px 10px 0px min-height:25px padding:4px 4px 0px 4px vertical-align:middle WGProfile_registration bar text-align center WGProfile_registration barRight text-align right WGProfile_registration bar a color:#0B2259 font-size:10px font-weight:bold WGProfile_registration barFive background-color:#f2f5fa border solid d8dee8 1px color:#3e4f77 font-size:14px font-weight:bold text-align:center margin-right:3px min-height:25px padding:2px width:4.3 WGProfile_registration barTen background-color:#f2f5fa border solid d8dee8 1px color:#3e4f77 font-size:14px font-weight:bold min-height:25px padding:2px text-align:center width:7.2 WGProfile_registration barFifteen background-color:#f2f5fa border solid d8dee8 1px color:#3e4f77 font-size:14px font-weight:bold margin-right:3px min-height:25px padding:2px text-align:center width:15 WGProfile_registration barFifty background-color:#f2f5fa border solid d8dee8 1px color:#3e4f77 font-size:14px font-weight:bold margin-right:3px min-height:25px padding:2px text-align:center width:50 WGbarContainer display:block margin:10px 0px 10px 0px width:100 profile edit WGfields padding 2px WGfields_left padding:2px vertical-align:top width 15 WGfields_right display:inline float:right padding:2px text-align:right width:80 vertical-align top WGProfile display:table margin 0 padding 0 width:100 WGProfileFields border:0 padding 0 margin:0 width 100 WGProfileFields ol display inline list-style-type none WGProfileFields ul list-style-type none display inline WGProfileFields ul li display inline-block display inline zoom 1 profile view WGProfile_accepts text-align:right background-color:gray padding:4px width:100 WGviewContainer margin:0 padding:0 width:90 WGinternational background-color:red color:white display:inline font-weight:bold padding:4px text-align:center WGcategoryLabel vertical-align:top width:90 WGprivateMessage background-color:gray padding:4px text-align:right WGprofileAlert background-color:red color:white font-weight:bold padding:4px text-align:center width:100 WGprofilePhoto vertical-align:top profile errors WGprofileErrors background-color ff0000 color ffffff font-weight bold text-align center WGprofilefield_required_off WGprofilefield_required background-color ffd6bb WGprofilefield_error background-color FF9494 WGerrorMsg font-weight:bold color:red text-align:center user WGuserInvite_subject background-color white border solid BECEF8 1px height 25px text-align left width 500px margin-left 50px margin-bottom 20px overflow:-moz-scrollbars-vertical overflow-x:hidden overflow-y:scroll view profile WGprofile_canEdit text-align:center background-color:red padding:4px color:white font-weight:bold WGprofile_fieldLabel background DDE6FB padding:2px width:200px WGprofile_fieldData margin-left 5px WGprofile_fieldStatus padding:4px color:white font-weight:bold TABS TABS outer WGbottombutton float:right padding-right:2px padding-top 2px position relative WGcontent padding:10px WGcleartab clear both height:0 WGsubContent color setting for border under outer tabs that surrounds inner tabs border solid d8dee8 6px WGtopbutton float:right clear:both padding-right:2px padding-top 2px position relative ul.WGtopTabs ul.WGtopTabs li list-style-type:none margin:10px 0px 0px 0px padding:0px position:relative width:auto Xposition:relative zoom:1 ul.WGtopTabs li display:block float:left margin-right 3px ul.WGtopTabs li b background-color eef2fd border-top:solid d8dee8 1px display:block padding:4px 8px position:relative top:-1px ul.WGtopTabs a non-selected tabs color settings display:block color:#9ea0bb important font-size:12px font-family Arial Helvetica sans-serif text-decoration:none background-color:#f2f5fa border-left solid d8dee8 1px border-right solid d8dee8 1px ul.WGtopTabs a:hover ul.WGtopTabs a:hover b ul.WGtopTabs a.selected ul.WGtopTabs a.selected b selected tab color settings background-color:#d8dee8 color:#3e4f77 text-align right TABS YUI WGcleardiv clear both margin 0px 0px 0px 0px padding 0px WGviewProfile wgView border none font bold 10px Verdana color 3e4f77 text-decoration:none WGview position absolute right 4px top:4px WGprofile_displayView x-system-font:none border:medium none color:#0B2258 display:inline float:right font-family:Verdana font-size:10px font-size-adjust:none font-stretch:normal font-style:normal font-variant:normal font-weight:bold line-height:normal padding-right:8px padding-top:3px text-decoration none WGprofile_displaySubContent border around friends tab content border solid d8dee8 6px border-top solid d8dee8 18px Copyright c 2008 Yahoo Inc All rights reserved Code licensed under the BSD License http://developer.yahoo.net/yui/license.txt version 2.6.0 yui tabs color settings below yui-navset defaults to yui-navset-top WGsubContent yui-skin-sam yui-navset yui-nav WGsubContent yui-skin-sam yui-navset yui-navset-top yui-nav protect nested tabviews from other orientations border:solid eef2fd color between tab list and content border-width:0 0 5px Xposition:relative zoom:1 WGsubContent yui-skin-sam yui-navset yui-nav a WGsubContent yui-skin-sam yui-navset yui-navset-top yui-nav a background:#ffffff tab background border:solid ffffff border-width:0 1px color:#bfccdd position:relative text-decoration:none font-size:12px font-family Arial Helvetica sans-serif font-weight bold WGsubContent yui-skin-sam yui-navset yui-nav a em WGsubContent yui-skin-sam yui-navset yui-navset-top yui-nav a em border:solid eef2fd border-width:1px 0 0 cursor:hand padding:0.25em 75em left:0 right 0 bottom 0 protect from other orientations top:-1px for 1px rounded corners position:relative WGsubContent yui-skin-sam yui-navset yui-nav selected a WGsubContent yui-skin-sam yui-navset yui-nav selected a:focus no focus effect for selected WGsubContent yui-skin-sam yui-navset yui-nav selected a:hover no hover effect for selected background eef2fd selected tab background color 3e4f77 font-size:12px font-family Arial Helvetica sans-serif text-decoration:none font-weight bold WGsubContent yui-skin-sam yui-navset yui-nav selected a WGsubContent yui-skin-sam yui-navset yui-nav selected a em border-color:#eef2fd selected tab border color WGsubContent yui-skin-sam yui-navset yui-nav a:hover WGsubContent yui-skin-sam yui-navset yui-nav a:focus background eef2fd hover tab background color 3e4f77 outline:0 font-size:12px font-family Arial Helvetica sans-serif text-decoration:none font-weight bold WGsubContent yui-skin-sam yui-navset yui-content background eef2fd content background color WGsubContent yui-skin-sam yui-navset yui-content WGsubContent yui-skin-sam yui-navset yui-navset-top yui-content border:5px solid eef2fd content border padding:0.75em 1em content padding left and right orientations WGsubContent yui-skin-sam yui-navset-left yui-nav WGsubContent yui-skin-sam yui-navset yui-navset-left yui-nav WGsubContent yui-skin-sam yui-navset yui-navset-right yui-nav WGsubContent yui-skin-sam yui-navset-right yui-nav border-width:0 5px 0 0 Xposition:absolute from tabview-core have to reiterate for skin-sam due to pos:rel on skin-sam yui-nav top:0 bottom:0 stretch to fill content height WGsubContent yui-skin-sam yui-navset yui-navset-right yui-nav WGsubContent yui-skin-sam yui-navset-right yui-nav border-width:0 0 0 5px WGsubContent yui-skin-sam yui-navset-left yui-nav li WGsubContent yui-skin-sam yui-navset yui-navset-left yui-nav li WGsubContent yui-skin-sam yui-navset-right yui-nav li margin:0 0 0.3em space between tabs padding:0 0 0 1px gecko make room for overflow WGsubContent yui-skin-sam yui-navset-right yui-nav li padding:0 1px 0 0 gecko make room for overflow WGsubContent yui-skin-sam yui-navset-left yui-nav selected WGsubContent yui-skin-sam yui-navset yui-navset-left yui-nav selected margin:0 1px 0.16em 0 WGsubContent yui-skin-sam yui-navset-right yui-nav selected margin:0 0 0.16em 1px WGsubContent yui-skin-sam yui-navset-left yui-nav a WGsubContent yui-skin-sam yui-navset-right yui-nav a border-width:1px 0 WGsubContent yui-skin-sam yui-navset-left yui-nav a em WGsubContent yui-skin-sam yui-navset yui-navset-left yui-nav a em WGsubContent yui-skin-sam yui-navset-right yui-nav a em border-width:0 0 0 1px padding:0.2em 75em top:auto left:-1px for 1px rounded corners WGsubContent yui-skin-sam yui-navset-right yui-nav a em border-width:0 1px 0 0 left:auto right:-1px for 1px rounded corners WGsubContent yui-skin-sam yui-navset-left yui-nav a WGsubContent yui-skin-sam yui-navset-left yui-nav selected a WGsubContent yui-skin-sam yui-navset-left yui-nav a:hover WGsubContent yui-skin-sam yui-navset-right yui-nav a WGsubContent yui-skin-sam yui-navset-right yui-nav selected a WGsubContent yui-skin-sam yui-navset-right yui-nav a:hover WGsubContent yui-skin-sam yui-navset-bottom yui-nav a WGsubContent yui-skin-sam yui-navset-bottom yui-nav selected a WGsubContent yui-skin-sam yui-navset-bottom yui-nav a:hover background-image:none no left-right or bottom-top gradient WGsubContent yui-skin-sam yui-navset-left yui-content border:1px solid d8dee8 content border bottom orientation WGsubContent yui-skin-sam yui-navset-bottom yui-nav WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-nav border-width:5px 0 0 color between tab list and content WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-nav selected WGsubContent yui-skin-sam yui-navset-bottom yui-nav selected margin:-1px 0.3em 0 0 for overlap WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-nav li WGsubContent yui-skin-sam yui-navset-bottom yui-nav li padding:0 0 1px 0 gecko make room for overflow vertical-align:top WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-nav li a WGsubContent yui-skin-sam yui-navset-bottom yui-nav li a WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-nav a em WGsubContent yui-skin-sam yui-navset-bottom yui-nav a em border-width:0 0 1px top:auto bottom:-1px for 1px rounded corners WGsubContent yui-skin-sam yui-navset-bottom yui-content WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-content border:1px solid f2f5fa content border WGsubContent yui-skin-sam background-color d8dee8 padding 10px 5 5 5px display:block yui tab placement settings below WGsubContent yui-skin-sam yui-navset yui-nav li WGsubContent yui-skin-sam yui-navset yui-navset-top yui-nav li margin:0 0.3em 0 0 space between tabs padding:5px 0 0 gecko make room for overflow zoom:1 WGsubContent yui-skin-sam yui-navset yui-nav selected WGsubContent yui-skin-sam yui-navset yui-navset-top yui-nav selected margin:0 0.3em 1px 0 for overlap WGsubContent yui-navset yui-nav li,.yui-navset yui-navset-top yui-nav li WGsubContent yui-navset yui-navset-bottom yui-nav li margin:0 0.5em 0 0 WGsubContent yui-navset-left yui-nav li,.yui-navset-right yui-nav li margin:0 0 0.5em WGsubContent yui-navset yui-content yui-hidden display:none WGsubContent yui-navset yui-navset-left yui-nav,.yui-navset yui-navset-right yui-nav WGsubContent yui-navset-left yui-nav,.yui-navset-right yui-nav width:6em WGsubContent yui-navset-top yui-nav,.yui-navset-bottom yui-nav width:auto WGsubContent yui-navset yui-navset-left,.yui-navset-left padding:0 0 0 6em WGsubContent yui-navset-right padding:0 6em 0 0 WGsubContent yui-navset-top,.yui-navset-bottom padding:auto WGsubContent yui-nav,.yui-nav li list-style:none margin:0 padding:0 WGsubContent yui-navset li em font-style:normal WGsubContent yui-navset position:relative zoom:1 WGsubContent yui-navset yui-content zoom:1 WGsubContent yui-navset yui-nav li,.yui-navset yui-navset-top yui-nav li WGsubContent yui-navset yui-navset-bottom yui-nav li display:inline-block display:-moz-inline-stack display:inline vertical-align:bottom cursor:pointer zoom:1 WGsubContent yui-navset-left yui-nav li,.yui-navset-right yui-nav li display:block WGsubContent yui-navset yui-nav a position:relative WGsubContent yui-navset yui-nav li a,.yui-navset-top yui-nav li a WGsubContent yui-navset-bottom yui-nav li a display:block display:inline-block vertical-align:bottom zoom:1 WGsubContent yui-navset-left yui-nav li a,.yui-navset-right yui-nav li a display:block WGsubContent yui-navset-bottom yui-nav li a vertical-align:text-top WGsubContent yui-navset yui-nav li a em,.yui-navset-top yui-nav li a em WGsubContent yui-navset-bottom yui-nav li a em display:block WGsubContent yui-navset yui-navset-left yui-nav,.yui-navset yui-navset-right yui-nav WGsubContent yui-navset-left yui-nav,.yui-navset-right yui-nav position:absolute z-index:1 WGsubContent yui-navset-top yui-nav,.yui-navset-bottom yui-nav position:static WGsubContent yui-navset yui-navset-left yui-nav,.yui-navset-left yui-nav left:0 right:auto WGsubContent yui-navset yui-navset-right yui-nav,.yui-navset-right yui-nav left:auto right:0 WGsubContent yui-skin-sam yui-navset yui-nav selected a em padding:0.35em 0.75em WGsubContent yui-skin-sam yui-navset-left yui-nav,.yui-skin-sam yui-navset yui-navset-left yui-nav WGsubContent yui-skin-sam yui-navset yui-navset-right yui-nav,.yui-skin-sam yui-navset-right yui-nav border-width:0 5px 0 0 bottom:0 top:0 Xposition:absolute WGsubContent yui-skin-sam yui-navset yui-navset-right yui-nav,.yui-skin-sam yui-navset-right yui-nav border-width:0 0 0 5px WGsubContent yui-skin-sam yui-navset-left yui-nav li,.yui-skin-sam yui-navset yui-navset-left yui-nav li WGsubContent yui-skin-sam yui-navset-right yui-nav li margin:0 0 0.16em padding:0 0 0 1px WGsubContent yui-skin-sam yui-navset-right yui-nav li padding:0 1px 0 0 WGsubContent yui-skin-sam yui-navset-left yui-nav a,.yui-skin-sam yui-navset-right yui-nav a border-width:1px 0 WGsubContent yui-skin-sam yui-navset-left yui-nav a em,.yui-skin-sam yui-navset yui-navset-left yui-nav a em,.yui-skin-sam yui-navset-right yui-nav a em border-width:0 0 0 1px left:-1px padding:0.2em 75em top:auto WGsubContent yui-skin-sam yui-navset-right yui-nav a em border-width:0 1px 0 0 left:auto right:-1px WGsubContent yui-skin-sam yui-navset-left yui-nav a,.yui-skin-sam yui-navset-left yui-nav selected a,.yui-skin-sam yui-navset-left yui-nav a:hover WGsubContent yui-skin-sam yui-navset-right yui-nav a,.yui-skin-sam yui-navset-right yui-nav selected a,.yui-skin-sam yui-navset-right yui-nav a:hover WGsubContent yui-skin-sam yui-navset-bottom yui-nav a,.yui-skin-sam yui-navset-bottom yui-nav selected a WGsubContent yui-skin-sam yui-navset-bottom yui-nav a:hover background-image:none WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-nav selected WGsubContent yui-skin-sam yui-navset-bottom yui-nav selected margin:-1px 0.16em 0 0 WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-nav li WGsubContent yui-skin-sam yui-navset-bottom yui-nav li padding:0 0 1px 0 vertical-align:top ','000001000001000002000008',NULL),('_9_eiaPgxzF_x_upt6-PNQ','gallery.css','','root/import/gallery-templates/gallery.css',1197988920,1304392055,'3','7','3','WebGUI::Asset::Snippet',0,'gallery.css gallery.css root import gallery templates gallery.css FIXES FLOAT ISSUES WITHOUT THIS FLOATS GET ALL NUTSY ESPECIALLY IN OPERA AND SAFARI clearfix:after content display block height 0 clear both visibility hidden clearfix display inline-block END FLOAT FIX wgGallery font-family:verdana arial text-align:left firstBar background black color:white font-size:18px font-weight:bold firstBar title margin-left:20px line-height:42px firstBar title a font-size:18px font-weight:bold color:white firstBar buttons float:right firstBar buttons a display:block float:left height:42px line-height:42px font-size:10px color:white font-weight:bold text-align:center padding:0px 5px firstBar buttons rss display:block height:29px position:relative background:transparent padding-top:13px secondBar background F1F1F1 text-align:left border-top:solid 8B8B8B 5px color black overflow hidden secondBar author font-size:10px secondBar desc p margin-left 20px margin-top 0 color black pictures searchArea float:right searchArea float:left searchArea input.searchText border:solid black 1px width:100px margin:0px padding:2px margin-top:5px font-size:10px height:15px margin-right:10px searchArea input.searchBtn border:solid black 1px margin:0px padding:3px margin-top:5px font-size:10px vertical-align:middle cursor:pointer height:21px searchArea a:link searchArea a:visited secondBar author a:link secondBar author a:visited font-size:11px color:black searchArea current font-weight:bold text-transform:uppercase text-decoration:none font-size:10px wgAlbum display moz-inline-box Although this works in later versions of FireFox it does not work in 2.x display:block display inline-block Op Saf IE vertical-align top IE Mac non capisce e a volte crea extra v space width:250px margin:10px wgAlbum albumTitle background black color:white font-size:12px font-weight:bold padding:10px padding-right:50px border:solid 475f6f 1px border-bottom:solid 8B8B8B 5px text-align:left display:block wgAlbum albumImage background F1F1F1 border-left solid black 1px border-right solid black 1px padding-top:15px height:135px wgAlbum albumImage a height:135px width:200px overflow:hidden display:block margin:0px 23px wgAlbum albumImage img border-style:none display:block width:200px height:auto border:solid black 1px wgAlbum albumDesc background F1F1F1 border-left solid black 1px border-right solid black 1px border-bottom solid black 1px text-align:center padding 5px 23px wgAlbum description font-size:10px height:40px overflow:auto text-align:left border:solid silver 1px padding:5px background-color fff color:#222 albumDesc description margin:2px 0px PAGINATION STYLES wgGallery paginationContainer text-align:center background black height:42px wgGallery container clear:both text-align:center wgGallery pagination margin:0px auto 20px auto display:table list-style-type:none white-space:nowrap padding:0px height:42px wgGallery pagination li display:table-cell wgGallery pagination a display:block width:50px line-height:42px color:white font-size:10px text-align:center wgPicture a:link wgPicture a:visited color:black wgPicture width:250px margin:10px display moz-inline-box This does not work in earlier versions of Firefox display:block float:left display inline-block Op Saf IE vertical-align top IE Mac non capisce e a volte crea extra v space wgPicture title background:#e0e0e0 display:block font-size:12px text-align:center padding:2px 5px border:solid black 1px border-bottom:solid 8B8B8B 4px wgPicture title a font-size:12px wgPicture thumbnail text-align:center background F1F1F1 padding:15px 23px 15px 23px margin:0px border-left:solid black 1px border-right:solid black 1px wgPicture thumbnail a display:block width:200px height:120px overflow:hidden border:solid black 1px wgPicture thumbnail img border-style:none width:200px height:auto wgPicture pictureDesc padding:0px border-top:solid e1e1e1 1px border-bottom:solid gray 1px border-left:solid black 1px border-right:solid black 1px background:#F1F1F1 margin:0px wgPicture pictureDesc description margin:0px padding:5px font-size:10px wgPicture details background:#e0e0e0 border:solid 999 1px border-top:solid aaa 1px font-size:9px padding:1px 3px wgPicture details date float:right wgPicture details comments float:left wgPicture details a font-size:9px BEGIN STYLES FOR PHOTO VIEW The Photo view uses some/all of the above classes plus those in this section wgSnapshot float:left margin:10px max-width:250px width:25 wgSnapshot fieldset background-color:#fefefe border:solid 555 2px padding:10px background-color:#f9f9f9 text-align:center navigation width 100 text-align center font-weight bold color navy wgSnapshot p max-width:230px wgSnapshot navigation width:100 margin:5px 0 0 text-align:center wgSnapshot navigation img border none wgSnapshot legend color:#333 font-size:15px font-weight:bold max-width:250px wgSnapshot a.thumbnail img width:200px height:auto border:solid 555 2px wgSnapshot description font-size:9px border:solid 555555 2px padding:5px width:190px margin:0px auto background-color:#fff height:50px overflow:auto text-align:left overflow:auto wgSnapshot a.fullSize margin:0px auto wgPictureDetails float:left width:70 margin:10px overflow hidden wgPictureDetails a:link wgPictureDetails a:visited color:black wgPictureDetails fieldset background-color:#fefefe border:solid 555 2px padding:10px background-color:#f9f9f9 margin-bottom:10px wgPictureDetails legend color:#333 font-size:15px font-weight:bold rowOne rowTwo margin:1px color:black padding:3px rowOne background EFEFEF border:solid CDCDCD 1px rowTwo background DCDCDC border:solid DDDDDD 1px rowOne label rowTwo label margin-left:15px text-align:left font-weight:bold font-size:11px rowOne data rowTwo data font-size:10px margin-left:5px a.fullSize:link a.fullSize:visited color:black display:block text-align:center font-weight:bold font-size:10px wgComments font-size:9px margin:10px width:90 wgComments title font-size:14px font-weight:bold color:#333 border-bottom:solid 555555 2px padding-bottom:2px wgComments title a color:navy text-decoration:none wgComments comment wgComments commentAlt position:relative padding:5px wgComments comment background-color:#e1e1e1 border-top:solid F7F7F7 1px border-bottom:solid C9C9C9 1px wgComments commentAlt background-color:#f0f0f0 border-bottom:solid CDCDCD 1px border-top:solid FBFBFB 1px wgComments number float:left font-size:30px color:silver margin:5px 10px 5px 5px wgComments posted font-style:italic padding-top:3px font-size:9px color:gray wgComments posted a color:navy text-decoration:underline BEGIN STYLES FOR THUMBNAIL VIEW The Thumbnail view uses some/all of the above classes plus those in this section thumbView width:400px height:auto thumbView thumbnail a display:block width:350px height:auto border:solid black 1px thumbView thumbnail img border-style:none width:350px height:auto thumb width:100px height:65px overflow:hidden display:block float:left border:solid black 2px margin:10px z-index 0 position relative thumb:hover background-color transparent z-index 50 overflow visible thumb img width:100px height:auto border-style:none thumb:hover img bottom 65px left 75px position absolute width 250px BEGIN STYLES FOR SLIDESHOW VIEW The Slideshow view uses some/all of the above classes plus those in this section wgSlideshow controls background url(^FileUrl(root/import/gallery-templates/images/pagination_bg.jpg repeat-x width:500px height:42px margin:0px auto border:solid black 2px wgSlideshow text-align:center slideshow-container width:500px height:auto margin:0px auto text-align:center border:solid black 2px position:relative z-index:0 slideshow-container slideshow-item img width:100 height:auto border-style:none display:block slideshow-container slideshow-item title background-color:black padding:3px color:white border-top:solid white 1px border-bottom:solid white 1px slideshow-container slideshow-item title a color:white font-size:11px font-weight:bold slideshow-container slideshow-item counter background-color:black padding:3px color:white font-size:11px font-weight:bold slideshow-container slideshow-item synopsis width:494px background-color:white padding:3px color:black font-size:11px font-weight:bold border-top:solid black 1px text-align:left BEGIN STYLES FOR SEARCH VIEW The Search view uses some/all of the above classes plus those in this section adminWrapper margin-top:20px adminWrapper label background:black font-weight:bold font-size:10px color:white adminWrapper td.data input background f1f1f1 vertical-align:middle adminWrapper td.radio input border-style:none background:none adminWrapper forwardButton cursor:pointer float:rigbt adminWrapper forwardButton:hover color:gold ','000001000001000015000016',NULL),('i6-BofrJJYozovlzFBByXg','first-photo-button.png','','root/import/gallery-templates/images/first-photo-button.png',1270612331,1285124158,'3','7','3','WebGUI::Asset::File::Image',1,'first-photo-button.png first-photo-button.png root import gallery templates images first photo button.png','000001000001000015000017000031',NULL),('fU_OZCmtdFNJ8a6bMve8ng','previous-photo-button.png','','root/import/gallery-templates/images/previous-photo-button.png',1270612331,1285124158,'3','7','3','WebGUI::Asset::File::Image',1,'previous-photo-button.png previous-photo-button.png root import gallery templates images previous photo button.png','000001000001000015000017000032',NULL),('YXCtusAxb4vzZ5sTnUA5DA','next-photo-button.png','','root/import/gallery-templates/images/next-photo-button.png',1270612331,1285124158,'3','7','3','WebGUI::Asset::File::Image',1,'next-photo-button.png next-photo-button.png root import gallery templates images next photo button.png','000001000001000015000017000033',NULL),('k_xuE82wwp8gFVl9aaaG8g','last-photo-button.png','','root/import/gallery-templates/images/last-photo-button.png',1270612331,1285124158,'3','7','3','WebGUI::Asset::File::Image',1,'last-photo-button.png last-photo-button.png root import gallery templates images last photo button.png','000001000001000015000017000034',NULL),('NPM_WItpM5IzLWBhWjYfCA','photo-navigation-spacer.png','','root/import/gallery-templates/images/photo-navigation-spacer.png',1270612331,1285124158,'3','7','3','WebGUI::Asset::File::Image',1,'photo-navigation-spacer.png photo-navigation-spacer.png root import gallery templates images photo navigation spacer.png','000001000001000015000017000035',NULL),('30h5rHxzE_Q0CyI3Gg7EJw','Cash Summary Screen (Default)','','shopping-cart-collateral-items/cash-summary',1273032715,1313542961,'3','7','4','WebGUI::Asset::Template',0,'Cash Summary Screen Default Cash Summary Screen Default shopping cart collateral items cash summary Shop/Credentials','000001000001000036000020',NULL),('jysVZeUR0Bx2NfrKs5sulg','Ogone Summary Screen (Default)','','shopping-cart-collateral-items/ogone-summary',1273032715,1313542961,'3','7','4','WebGUI::Asset::Template',0,'Ogone Summary Screen Default Ogone Summary Screen Default shopping cart collateral items ogone summary Shop/Credentials','000001000001000036000021',NULL),('300AozDaeveAjB_KN0ljlQ','PayPal Standard Summary Screen (Default)','','shopping-cart-collateral-items/paypal-std-summary',1273032715,1313542962,'3','7','4','WebGUI::Asset::Template',0,'PayPal Standard Summary Screen Default PayPal Standard Summary Screen Default shopping cart collateral items paypal std summary Shop/Credentials','000001000001000036000022',NULL),('GqnZPB0gLoZmqQzYFaq7bg','PayPal Express Checkout Summary Screen (Default)','','shopping-cart-collateral-items/paypal-express-summary',1273032716,1313542962,'3','7','4','WebGUI::Asset::Template',0,'PayPal Express Checkout Summary Screen Default PayPal Express Checkout Summary Screen Default shopping cart collateral items paypal express summary Shop/Credentials','000001000001000036000023',NULL),('stevestyle000000000001','Style 01','by Steve from Plain Black http://plainblack.com\r\n\r\nThe first of the WebGUI 7 styles','style_01',1147642499,1273032722,'3','7','12','WebGUI::Asset::Template',0,'Style 01 Style 01 by Steve from Plain Black http://plainblack.com The first of the WebGUI 7 styles style 01 style','000001000001000049000026',NULL),('stevestyle000000000002','Style 02','by Steve from Plain Black http://plainblack.com\r\n\r\nThe second of the WebGUI 7 styles','style_02',1147642504,1273032718,'3','7','12','WebGUI::Asset::Template',0,'Style 02 Style 02 by Steve from Plain Black http://plainblack.com The second of the WebGUI 7 styles style 02 style','000001000001000050000016',NULL),('stevestyle000000000003','Style 03','by Steve from Plain Black http://plainblack.com\r\n\r\nThe last of the WebGUI 7 style templates.','style_03',1147642510,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Style 03 Style 03 by Steve from Plain Black http://plainblack.com The last of the WebGUI 7 style templates style 03 style','000001000001000051000020',NULL),('t87D1138NhPHhA23-hozBA','CrystalX','','crystalx',1273032716,1273032716,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'CrystalX CrystalX crystalx','000001000001000055',NULL),('QtBumey5ffc-xffRp1-7Aw','img','','crystalx/img',1273032716,1273032716,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'img img crystalx img','000001000001000055000001',NULL),('-0sK2rX1cwQt1ipUSqsiQQ','bg.gif','','crystalx/img/bg.gif',1273032716,1273032716,'3','7','3','WebGUI::Asset::File::Image',1,'bg.gif bg.gif crystalx img bg.gif','000001000001000055000001000001',NULL),('hS_eOaVz9Qb5ixndK9EXAw','header.jpg','','crystalx/img/header.jpg',1273032716,1273032716,'3','7','3','WebGUI::Asset::File::Image',1,'header.jpg header.jpg crystalx img header.jpg','000001000001000055000001000002',NULL),('k2p-Be8C98pf2cRq7E-JHg','tab_link.gif','','crystalx/img/tab_link.gif',1273032716,1273032716,'3','7','3','WebGUI::Asset::File::Image',1,'tab_link.gif tab_link.gif crystalx img tab link.gif','000001000001000055000001000003',NULL),('aYG4fjbMPbC4LCuuMp4gGA','tab_hover.gif','','crystalx/img/tab_hover.gif',1273032716,1273032716,'3','7','3','WebGUI::Asset::File::Image',1,'tab_hover.gif tab_hover.gif crystalx img tab hover.gif','000001000001000055000001000004',NULL),('F122Ey0NtVAw6Lfv1M6G_Q','ico_archive.gif','','crystalx/img/ico_archive.gif',1273032716,1273032716,'3','7','3','WebGUI::Asset::File::Image',1,'ico_archive.gif ico_archive.gif crystalx img ico archive.gif','000001000001000055000001000005',NULL),('qmXHKrQ6EDLSOGkrEKRUDA','bg_page_in.jpg','','crystalx/img/bg_page_in.jpg',1273032716,1273032716,'3','7','3','WebGUI::Asset::File::Image',1,'bg_page_in.jpg bg_page_in.jpg crystalx img bg page in.jpg','000001000001000055000001000006',NULL),('4qZgXjPPO4fwV879yu5XUg','bg_page.JPG','','crystalx/img/bg_page.jpg',1273032716,1273032716,'3','7','3','WebGUI::Asset::File::Image',1,'bg_page.JPG bg_page.JPG crystalx img bg page.jpg','000001000001000055000001000007',NULL),('mb-xeAugm5GJdvu-Wh0MtQ','search_submit.gif','','crystalx/img/search_submit.gif',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'search_submit.gif search_submit.gif crystalx img search submit.gif','000001000001000055000001000008',NULL),('84Y9CwgzP6eNU7wZnk019Q','ico_date.gif','','crystalx/img/ico_date.gif',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'ico_date.gif ico_date.gif crystalx img ico date.gif','000001000001000055000001000009',NULL),('ikXTtJKZfHVxqw-47E4AQA','ico_user.gif','','crystalx/img/ico_user.gif',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'ico_user.gif ico_user.gif crystalx img ico user.gif','000001000001000055000001000010',NULL),('DhRWPTgzhvju_-TbMN3CwA','ico_comments.gif','','crystalx/img/ico_comments.gif',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'ico_comments.gif ico_comments.gif crystalx img ico comments.gif','000001000001000055000001000011',NULL),('6njI-pZz2bwsjWh-Q1_11g','ico_list.gif','','crystalx/img/ico_list2.gif',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'ico_list.gif ico_list.gif crystalx img ico list2.gif','000001000001000055000001000012',NULL),('_Hz1Gnd3yEnJzVS7l7nJMQ','content_all_bg.PNG','','crystalx/img/content_all_bg.png',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'content_all_bg.PNG content_all_bg.PNG crystalx img content all bg.png','000001000001000055000001000013',NULL),('VOOrXK5dFnkGih7aTkuDWA','search.PNG','','crystalx/img/search.png',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'search.PNG search.PNG crystalx img search.png','000001000001000055000001000014',NULL),('ruf-QejOkUHDRtfgakHlbA','col_title_bg_long.GIF','','crystalx/img/col_title_bg_long.gif',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'col_title_bg_long.GIF col_title_bg_long.GIF crystalx img col title bg long.gif','000001000001000055000001000015',NULL),('FSHy5KjQjkt599PHS41seA','footer.jpg','','crystalx/img/footer.jpg',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'footer.jpg footer.jpg crystalx img footer.jpg','000001000001000055000001000016',NULL),('nuYYXAz4KNNxgfumfnpo_g','ico_top.gif','','crystalx/img/ico_top.gif',1273032718,1273032718,'3','7','3','WebGUI::Asset::File::Image',1,'ico_top.gif ico_top.gif crystalx img ico top.gif','000001000001000055000001000017',NULL),('Mr7ljjoy6n4fZojpQWajKQ','ico_links.gif','','crystalx/img/ico_links.gif',1273032718,1273032718,'3','7','3','WebGUI::Asset::File::Image',1,'ico_links.gif ico_links.gif crystalx img ico links.gif','000001000001000055000001000018',NULL),('ApkqpDOrJDxK3QrWBGSRIg','ico_archive2.gif','','crystalx/img/ico_archive2.gif',1273032718,1273032718,'3','7','3','WebGUI::Asset::File::Image',1,'ico_archive2.gif ico_archive2.gif crystalx img ico archive2.gif','000001000001000055000001000019',NULL),('AzzTY0Lay1f_YGeQJFnQCA','ico_list.gif','','crystalx/img/ico_list.gif',1273032718,1273032718,'3','7','3','WebGUI::Asset::File::Image',1,'ico_list.gif ico_list.gif crystalx img ico list.gif','000001000001000055000001000020',NULL),('OiJNwP1gAlcva8_yOtL4gA','CrystalX_style','by Ning from Pluton -- http://pluton.nl\n\nCrystalX gives your site a crystal-ish look and a strictly formal style. Feel free to download and apply it to your own site.\n\nOriginally designed by \"Nuvio Webdesign\" and collected by Open Source Web Design, converted to WebGUI theme by Ning.','crystalx_style',1273032718,1273032718,'3','7','3','WebGUI::Asset::Template',0,'CrystalX_style CrystalX_style by Ning from Pluton http://pluton.nl CrystalX gives your site a crystal-ish look and a strictly formal style Feel free to download and apply it to your own site Originally designed by Nuvio Webdesign and collected by Open Source Web Design converted to WebGUI theme by Ning crystalx style style','000001000001000055000002',NULL),('JOuCU4x5BJfVHfkfMkVQdQ','crystalx.css','','crystalx/crystalx.css',1273032718,1273032718,'3','7','3','WebGUI::Asset::Snippet',0,'crystalx.css crystalx.css crystalx crystalx.css Project CrystalX URL http://www.nuvio.cz Output device screen projection Author Vit Dlouhy vit.dlouhy@nuvio.cz Nuvio www.nuvio.cz Last revision 2006-12-05 12:00 GMT+1 Structure display | position | float | overflow | width | height | border | margin | padding | background | align | font min-height:1px body border:0 margin:0 padding:0 background:#F2F5FE url(\'^FileUrl(/crystalx/img/bg.gif 0 0 repeat-x font:70%/160 verdana\",sans-serif color:#192666 text-align:center a color:#192666 a:hover color:#4F6AD7 p border:0 margin:15px 0 padding:0 div display:block border:0 margin:0 padding:0 overflow:hidden h1 h2 h3 h4 h5 border:0 margin:15px 0 10px 0 padding:0 font-weight:bold h1 font-size:260 line-height:100 font-family:\"georgia\",serif font-weight:normal h2 font-size:180 line-height:100 font-family:\"georgia\",serif font-weight:normal h3 font-size:120 line-height:100 font-weight:bold h4 font-size:120 h5 font-size:100 table display:table border-collapse:collapse margin:15px 1px padding:0 border:1px solid B7CAF6 font-size:100 tr display:table-row th td display table-cell border:1px solid B7CAF6 margin:0 padding:5px vertical-align:top text-align:left th background:#E7ECFD text-align:center color:#192666 font-weight:bold ul ol display:block border:0 margin:15px 0 15px 40px padding:0 ol list-style-type:decimal li display:list-item border:0 margin:0 padding:0 min-height:1px ul ul ul ol ol ol ol ul margin 0 0 0 20px dl border-bottom:1px solid E0E8FA margin:0 padding:5px 10px background:#CEDBF9 dt border:0 margin:0 padding:0 font-weight:bold dd border:0 margin:0 0 0 30px padding:0 form border:0 margin:0 padding:0 fieldset border:1px solid ccc margin:15px 0 padding:10px legend margin-left:10px font-size:100 font-weight:bold color:#008 hr height:1px width:724px margin 5px 23px padding 0 background:#CCC border:0 solid CCC color:#CCC a img span border:0 margin:0 padding:0 overflow:hidden abbr acronym border-bottom:1px dotted CCC cursor:help del through text-decoration:line-through strong strong font-weight:bold cite em q var font-style:italic code kbd samp font-family:monospace font-size:110 box min-height:1px box:after content display:block line-height:0px font-size:0px visibility:hidden clear:both nom margin:0 noscreen display:none main width:770px margin:0 auto text-align:left Top empty space for the background img to fit main topspace position:relative top:0 left:0 height:50px margin:0 padding:0 Header header position:relative width:770px height:100px margin:0 padding:0 background:#233C9B url(\'^FileUrl(/crystalx/img/header.jpg 0 0 no-repeat color:#FFFFFF Header logo header logo position:absolute top:35px left:35px margin:0 header logo a font-size:260 line-height:100 font-family:\"georgia\",serif font-weight:bold color:#FFF header logo a:hover color:#B5C4E3 text-decoration:none Header Search header search form position:absolute top:35px right:20px height:30px header search formContents position:absolute top:0 right:0px width:200px height:28px margin:0 padding:0 border:0 background:url(\'^FileUrl(/crystalx/img/search.png 0 0 no-repeat font:bold 90%/100 verdana\",sans-serif color:#192666 header search input#keywords_formId width:140px margin:5px 8px padding:3px 0 border:0 background:#FFF font:bold 100%/100 verdana\",sans-serif color:#192666 header search search_form position:absolute top:0 right:0px width:41px height:28px cursor:point margin:0 padding:0 Search Result header search search_result position:absolute top:220px header search home_link header search no_result header search pagination visibility:hidden page page-in pagination color:#6182D1 font-weight:bold padding:5px text-align:right page page-in pagination a color:#6182D1 page page-in pagination a:hover color:#192666 page page-in home_link padding:5px 5px 15px color:#6182D1 font-weight:bold text-align:right page page-in home_link a color:#6182D1 page page-in home_link a:hover color:#192666 search_result margin:10px 0 dl#odd background:#A0B9F3 page page-in no_result margin:0 10px color:#192666 font-weight:bold Main menu tabs menu background:#192666 margin:0 5px padding:10px 10px 0 height:32px overflow:hidden menu a cursor:pointer font-size:11px Page dynamic page width:770px background:#FFFFFF url(\'^FileUrl(/crystalx/img/bg_page.jpg 0 0 repeat-y page-in min-height:400px background:url(\'^FileUrl(/crystalx/img/bg_page_in.jpg 0 0 no-repeat padding:10px 0 0 Strip strip position:relative clear:both padding:3px 20px 10px 20px color:#6182D1 Strip Location strip location float left background:url(\'^FileUrl(/crystalx/img/ico_comments.gif 0 50 no-repeat padding 0 15px strip location a color:#6182D1 strip location a:hover color:#192666 strip location a#currentpage font-weight:bold text-decoration:none Strip DateTime strip datetime float:right background:url(\'^FileUrl(/crystalx/img/ico_date.gif 0 50 no-repeat padding 0 10px 0 15px Content Container contentContainer margin:0 padding:0 20px width:730px overflow:hidden Contents contentContainer content clear:both margin:10px 10px 0 0 padding:20px max-width:710px background:url(\'^FileUrl(/crystalx/img/content_all_bg.png 0 0 no-repeat overflow:hidden contentContainer content h2 margin:0 10px padding:10px 25px color:#192666 background:url(\'^FileUrl(/crystalx/img/ico_list.gif 0 50 no-repeat contentContainer content p text-align:justify Utility utility background FFFFFF url(\'^FileUrl(/crystalx/img/bg_page.jpg 0 0 repeat-y padding 10px 0 15px Utility Toggles toggles font-size:10px font-weight:bold text-align:left margin-left:42px toggles a margin:0 10px padding:2px 0 text-decoration:none border-bottom:1px dashed color:#6182D1 toggles a:hover border-bottom:1px solid color:#4F6AD7 toggles span.userAcc background:url(\'^FileUrl(/crystalx/img/ico_user.gif 0 50 no-repeat margin 0 0 0 8px Footer footer position:relative clear:both width:770px height:80px margin-bottom:30px background:url(\'^FileUrl(/crystalx/img/footer.jpg 0 0 no-repeat color:#6685CC footer a color:#6685CC footer a:hover color:#192666 Footer back on top top position:absolute top:55px left:550px top p position:relative width:30px height:25px margin:0 overflow:hidden top p a display:block position:absolute left:0 top:0 z-index:1 width:30px height:25px background:url(\'^FileUrl(/crystalx/img/ico_top.gif 0 0 no-repeat cursor:pointer top a:hover background:url(\'^FileUrl(/crystalx/img/ico_top.gif 30px 0 no-repeat Footer copyright footer p#copyright position:absolute top:10px left:40px margin:0 Footer created by createdby position:absolute top:10px left:562px margin:0 color:#8CA3D8 createdby a color:#8CA3D8','000001000001000055000003',NULL),('Am1J-meNBmhqFfEIWy6Gag','crystalX_Navigation','','crystalx/crystalx_navigation',1273032718,1287545014,'3','7','3','WebGUI::Asset::Wobject::Navigation',1,'crystalX_Navigation crystalX_Navigation crystalx crystalx navigation','000001000001000055000004',NULL),('gaIOm5cr2TkT9Fk6QmZWug','crystalX_navi','','crystalx/crystalx_navi',1273032718,1273032718,'3','7','3','WebGUI::Asset::Template',0,'crystalX_navi crystalX_navi crystalx crystalx navi Navigation','000001000001000055000005',NULL),('w0QifHLhsrzeOpFKl-DX-Q','crystalx_navi.css','','crystalx/crystalx_navi.css',1273032718,1273032718,'3','7','3','WebGUI::Asset::Snippet',0,'crystalx_navi.css crystalx_navi.css crystalx crystalx navi.css ','000001000001000055000006',NULL),('x_hiUi1XZloBvV47Obnu8Q','crystalX_NavigationTrail','','crystalx/crystalx_navigationtrail',1273032718,1273032718,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'crystalX_NavigationTrail crystalX_NavigationTrail crystalx crystalx navigationtrail','000001000001000055000007',NULL),('hpCk0B3vQzgc-QJhSol41w','crystalX_navitrail','','crystalx/crystalx_navitrail',1273032718,1273032718,'3','7','12','WebGUI::Asset::Template',0,'crystalX_navitrail crystalX_navitrail crystalx crystalx navitrail Navigation','000001000001000055000008',NULL),('UUwEL6hLEPdrnkZnKRzFYQ','Site Search','','crystalx/site-search',1273032718,1273032718,'3','7','3','WebGUI::Asset::Wobject::Search',1,'Site Search Site Search crystalx site search','000001000001000055000009',NULL),('OfKbvK7CrfMnfc8WDoF4Rg','crystalx_search','','crystalx/crystalx_search',1273032718,1273032718,'3','7','3','WebGUI::Asset::Template',0,'crystalx_search crystalx_search crystalx crystalx search Search','000001000001000055000010',NULL),('CQp-RFA2pMh5lFSggPPPYg','[Style] Underground','Templates and images for the \"Underground\" style from StyleShout.com ','style-underground',1273032719,1301973995,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Style Underground Style Underground style underground Templates and images for the Underground style from StyleShout.com','000001000001000056',NULL),('_Mi_NTd3x8UB96LWezWHnw','Images','','style-underground/images',1273032719,1301973995,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Images Images style underground images','000001000001000056000001',NULL),('A_5LVQQWR73QZR8FFbny_w','bg.gif','','style-underground/images/bg.gif',1273032719,1301973995,'3','7','3','WebGUI::Asset::File::Image',1,'bg.gif bg.gif style underground images bg.gif','000001000001000056000001000001',NULL),('wywIfa_VuTsq0c5Ed-W-MA','bullet.gif','','style-underground/images/bullet.gif',1273032719,1301973995,'3','7','3','WebGUI::Asset::File::Image',1,'bullet.gif bullet.gif style underground images bullet.gif','000001000001000056000001000002',NULL),('xmykMFjri1O2NrYHbeToVQ','footerbg.gif','','style-underground/images/footerbg.gif',1273032719,1301973995,'3','7','3','WebGUI::Asset::File::Image',1,'footerbg.gif footerbg.gif style underground images footerbg.gif','000001000001000056000001000003',NULL),('0IIGNBs_-INzqBC5VLeJgw','headerbg.gif','','style-underground/images/headerbg.gif',1273032719,1301973996,'3','7','3','WebGUI::Asset::File::Image',1,'headerbg.gif headerbg.gif style underground images headerbg.gif','000001000001000056000001000004',NULL),('FXmePdyS0YKuZ1VCGGpK9w','quote.gif','','style-underground/images/quote.gif',1273032719,1301973996,'3','7','3','WebGUI::Asset::File::Image',1,'quote.gif quote.gif style underground images quote.gif','000001000001000056000001000005',NULL),('66qCywiE_fiL9u5YIaJhgw','tableft.gif','','style-underground/images/tableft.gif',1273032719,1301973996,'3','7','3','WebGUI::Asset::File::Image',1,'tableft.gif tableft.gif style underground images tableft.gif','000001000001000056000001000006',NULL),('n5VpG4lFsOG1elaWDQbilw','tabright.gif','','style-underground/images/tabright.gif',1273032719,1301973996,'3','7','3','WebGUI::Asset::File::Image',1,'tabright.gif tabright.gif style underground images tabright.gif','000001000001000056000001000007',NULL),('g3JH1PRq6m6Bj_PnGpcrSQ','CSS','','style-underground/css',1273032719,1301973996,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'CSS CSS style underground css','000001000001000056000002',NULL),('egpnaaFqWmJwYTZ5CvFH9g','Underground.css','','style-underground/css/underground.css',1273032719,1301973996,'3','7','3','WebGUI::Asset::Snippet',0,'Underground.css Underground.css style underground css underground.css AUTHOR Erwin Aligam WEBSITE http://www.styleshout.com TEMPLATE NAME Underground TEMPLATE CODE S-0006 VERSION 1.1 Changes for WebGUI by Doug Bell Preaction doug@plainblack.com HTML ELEMENTS top elements margin 0 padding 0 body margin 0 padding 0 font 70%/1.5 Verdana Tahoma Arial Helvetica sans-serif color 333 background FFF url(^FileUrl(style-underground/images/bg.gif repeat-x links a color 003366 background-color inherit text-decoration none a:hover color CC0001 background-color inherit headers h1 h2 h3 font-family Arial Trebuchet MS Sans-Serif font-weight bold color 333 h1 font-size 120 letter-spacing 5px h2 font-size 115 text-transform uppercase h3 font-size 115 color 003366 images img border 2px solid CCC img.float-right margin 5px 0px 10px 10px img.float-left margin 5px 10px 10px 0px h1 h2 h3 p padding 0 margin 10px ul ol margin 10px 20px padding 0 20px code margin 10px 0 padding 10px text-align left display block overflow auto font 500 1em/1.5em Lucida Console courier new monospace white-space pre background FAFAFA border 1px solid f2f2f2 border-left 4px solid CC0000 acronym cursor help border-bottom 1px solid 777 blockquote margin 10px padding 0 0 0 32px background FAFAFA url(^FileUrl(style-underground/images/quote.gif no-repeat 5px 10px important background-position 8px 10px border 1px solid f2f2f2 border-left 4px solid CC0000 font-weight bold form elements form margin:10px padding 0 5px border 1px solid f2f2f2 background-color FAFAFA label display:block font-weight:bold margin:5px 0 input padding 2px border:1px solid eee font normal 1em Verdana sans-serif color:#777 textarea width:400px padding:2px font normal 1em Verdana sans-serif border:1px solid eee height:100px display:block color:#777 input.button margin 0 font bolder 12px Arial Sans-serif border 1px solid CCC padding 1px background FFF color CC0000 search form form.search position absolute top 5px right 5px padding 0 margin 0 border none background-color transparent form.search input.textbox margin 0 width 120px border 1px solid CCC background FFF color 333 form.search input.searchbutton margin 0 font-size 100 font-family Arial Sans-serif border 1px solid CCC background FFFFFF url(^FileUrl(style-underground/images/headerbg.gif repeat-x bottom left padding 1px font-weight bold height 23px color 333 width 60px LAYOUT wrap margin 0 auto width 90 header header position relative margin 0 padding 0 height 60px header span#slogan z-index 3 position absolute left 3px bottom 7px font bold 1.2em Verdana Arial Tahoma Sans-serif color FFF header-logo position relative clear both height 50px margin 0 padding 0 header-logo logo position absolute top 3px left 5px font bold 30px trebuchet MS Arial Tahoma Sans-Serif margin 0 padding 0 letter-spacing 1px color 000 navigation tabs header ul position absolute margin:0 list-style:none right:-18px bottom 3px font bold 13px Trebuchet MS Arial Sans-serif header li display:inline margin:0 padding:0 header a float:left background url(^FileUrl(style-underground/images/tableft.gif no-repeat left top margin:0 padding:0 0 0 4px text-decoration:none header a span float:left display:block background url(^FileUrl(style-underground/images/tabright.gif no-repeat right top padding:5px 15px 4px 6px color:#FFF Commented Backslash Hack hides rule from IE5-Mac header a span float:none End IE5-Mac hack header a:hover span color:#FFF header a:hover background-position:0 42px header a:hover span background-position:100 42px header current a background-position:0 42px header current a span background-position:100 42px main column main float right margin 0 padding 0 width 78 main h1 margin 10px 0 padding 4px 0 4px 8px font-size 105 color FFF text-transform uppercase background-color CC0000 letter-spacing 5px sidebar sidebar float left width 20 margin 0 padding 0 background-color FFFFFF sidebar h1 margin 10px 0 0 0 padding 4px 0 4px 8px font bold 105 Arial Sans-Serif color FFF text-transform uppercase background 333 letter-spacing 1px sidebar left-box border 1px solid EBEBEB margin 0 0 5px 0 background FFF sidebar ul.sidemenu list-style none text-align left margin 3px 0px 8px 0 padding 0 text-decoration none sidebar ul.sidemenu li border-bottom 1px solid f2f2f2 background url(^FileUrl(style-underground/images/bullet.gif no-repeat 3px 2px padding 3px 5px 3px 25px margin 0 sidebar ul.sidemenu a font-weight bolder padding 3px 0px background none footer footer clear both border-top 1px solid f2f2f2 background FFF url(^FileUrl(style-underground/images/footerbg.gif repeat-x padding 2px 0 10px 0 text-align center line-height 1.5em font-size 95 footer a text-decoration none font-weight bold alignment classes float-left float left float-right float right align-left text-align left align-right text-align right display and additional classes clear clear both red color CC0000 comments margin 20px 10px 5px 10px padding 3px 0 border-bottom 1px dashed EFF0F1 border-top 1px dashed EFF0F1 ','000001000001000056000002000001',NULL),('G0hl4VilbFKipToyxKqFrg','Prototypes','This folder holds prototype WebGUI assets with the correct templates pre-selected. ','style-underground/prototypes',1273032719,1301973997,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Prototypes Prototypes style underground prototypes This folder holds prototype WebGUI assets with the correct templates pre-selected','000001000001000056000003',NULL),('GWU2qZqe6yEuAKG-5HtBdg','Templates','','style-underground/templates',1273032719,1301973997,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Templates Templates style underground templates','000001000001000056000004',NULL),('Qk24uXao2yowR6zxbVJ0xA','[style] Underground','by Doug from Plain Black http://plainblack.com\r\n\r\nThis is the Underground style from http://www.styleshout.com/ made into a WebGUI package. A simple, functional style.','style-underground/style-underground',1273032719,1301973997,'3','7','3','WebGUI::Asset::Template',0,'style Underground style Underground by Doug from Plain Black http://plainblack.com This is the Underground style from http://www.styleshout.com made into a WebGUI package A simple functional style style underground style underground style','000001000001000056000004000001',NULL),('39KNX53B4nYJAyIE1lu8ZQ','[nav] Underground Top Navigation','','style-underground/nav-underground-top-navigation',1273032720,1301973997,'3','7','3','WebGUI::Asset::Template',0,'nav Underground Top Navigation nav Underground Top Navigation style underground nav underground top navigation Navigation','000001000001000056000004000002',NULL),('ztfi__vHJLsQDsMenrEn-w','[nav] Underground Side Navigation','','style-underground/nav-underground-side-navigation',1273032720,1301973997,'3','7','3','WebGUI::Asset::Template',0,'nav Underground Side Navigation nav Underground Side Navigation style underground nav underground side navigation Navigation','000001000001000056000004000003',NULL),('8qyrDCNeggB4dzKiOoRuiQ','[admintoggle] Underground Admin Toggle','','style-underground/templates/admintoggle-underground-admin-toggle',1273032720,1301973997,'3','7','3','WebGUI::Asset::Template',0,'admintoggle Underground Admin Toggle admintoggle Underground Admin Toggle style underground templates admintoggle underground admin toggle AdminToggle','000001000001000056000004000004',NULL),('M1NyNeS5jpdIsiIWFiJprw','View My Account','','style-underground/templates/view-my-account',1273032720,1301973997,'3','7','3','WebGUI::Asset::Template',0,'View My Account View My Account style underground templates view my account Macro/a_account','000001000001000056000004000005',NULL),('AsfpsOpsGzZCb9m7MyxPuw','Navigation','','style-underground/navigation',1273032720,1301973997,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Navigation Navigation style underground navigation','000001000001000056000005',NULL),('n-Vr_wgxOkwiHGt1nJto9w','Top Navigation','','style-underground/top-navigation',1273032720,1309236774,'3','7','3','WebGUI::Asset::Wobject::Navigation',1,'Top Navigation Top Navigation style underground top navigation','000001000001000056000005000001',NULL),('jmqLxnoWb6p92Cr12lf1hw','Side Navigation','','style-underground/side-navigation',1273032720,1301973997,'3','7','3','WebGUI::Asset::Wobject::Navigation',1,'Side Navigation Side Navigation style underground side navigation','000001000001000056000005000002',NULL),('8E2UOnj_XPEghTj7nfVM0g','Search','','style-underground/search',1273032720,1301973997,'3','7','3','WebGUI::Asset::Wobject::Search',1,'Search Search style underground search','000001000001000056000006',NULL),('1qFjOEiILIwr1xB5_ebppQ','Greenportal','','greenportal',1273032721,1301973998,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Greenportal Greenportal greenportal','000001000001000057',NULL),('xD76UfQ_JnSgTLBNvytcpQ','greenportal_image','','greenportal_image',1273032721,1301973998,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'greenportal_image greenportal_image greenportal image','000001000001000057000001',NULL),('pAXR7Kby4O-dSxOwLp1GaA','menu_top.png','','greenportal_image/menu_top.png',1273032721,1301973998,'3','7','12','WebGUI::Asset::File::Image',1,'menu_top.png menu_top.png greenportal image menu top.png','000001000001000057000001000001',NULL),('TthzMLO4n3qxy59QZ5YBHg','menu_dark.png','','greenportal_image/menu_dark.png',1273032721,1301973998,'3','7','12','WebGUI::Asset::File::Image',1,'menu_dark.png menu_dark.png greenportal image menu dark.png','000001000001000057000001000002',NULL),('3n31SQjYa150TBrRBgMPhA','menu_light.png','','greenportal_image/menu_light.png',1273032721,1301973998,'3','7','12','WebGUI::Asset::File::Image',1,'menu_light.png menu_light.png greenportal image menu light.png','000001000001000057000001000003',NULL),('R4RxDufGbbIzEmpcoEcLrw','logo.jpg','','greenportal_image/logo.jpg',1273032721,1301973998,'3','7','12','WebGUI::Asset::File::Image',1,'logo.jpg logo.jpg greenportal image logo.jpg','000001000001000057000001000004',NULL),('KKt0VB_eoQxw9xEsHsAhag','Greenportal_style','by Ning from PlutonIT http://pluton.nl\n\nA Joomla! Open Source design released under the GNU/GPL License. Enhanced and converted into WebGUI theme by Ning. The original PHP and CSS file can be downloaded following the author\'s link: http://www.studentsdesign.de/','greenportal_style',1273032721,1301973998,'3','7','12','WebGUI::Asset::Template',0,'Greenportal_style Greenportal_style by Ning from PlutonIT http://pluton.nl A Joomla Open Source design released under the GNU/GPL License Enhanced and converted into WebGUI theme by Ning The original PHP and CSS file can be downloaded following the author\'s link http://www.studentsdesign.de greenportal style style','000001000001000057000003',NULL),('h0bOzz7WvdaVZXsjpwtkww','greenportal_Navigation','','greenportal_navigation',1273032721,1301973998,'3','7','3','WebGUI::Asset::Wobject::Navigation',1,'greenportal_Navigation greenportal_Navigation greenportal navigation','000001000001000057000004',NULL),('_z3ukLCqvoaUygfsbbkBzw','Greenportal_menu','','greenportal_menu',1273032721,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_menu Greenportal_menu greenportal menu Navigation','000001000001000057000005',NULL),('qFOfW1sKyOTnGNcP6BXbwg','greenportal_NavigationTop','','greenportal_navigationtop',1273032721,1301973999,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'greenportal_NavigationTop greenportal_NavigationTop greenportal navigationtop','000001000001000057000006',NULL),('Pt38T5_MWSue2e1N36MLdw','Greenportal_menuTop','','greenportal_menutop',1273032721,1301973999,'3','7','12','WebGUI::Asset::Template',0,'Greenportal_menuTop Greenportal_menuTop greenportal menutop Navigation','000001000001000057000007',NULL),('LDcM1Iop17nF2MoSa7zo_Q','Greenportal_dataform','','greenportal_dataform',1273032721,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_dataform Greenportal_dataform greenportal dataform DataForm','000001000001000057000008',NULL),('hVF1taXj4bfd7DuL4XDMYg','Greenportal_datalist','','greenportal_datalist',1273032721,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_datalist Greenportal_datalist greenportal datalist DataForm/List','000001000001000057000009',NULL),('x4-2QYRSrIB_BJfnSKKj4w','Greenportal_acknowledgement','','greenportal_acknowledgement',1273032721,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_acknowledgement Greenportal_acknowledgement greenportal acknowledgement DataForm','000001000001000057000010',NULL),('423R4Y6XIt3wUzlnLo-chg','Greenportal_forum','','greenportal_forum',1273032721,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_forum Greenportal_forum greenportal forum Collaboration','000001000001000057000011',NULL),('oZ1Mk-zExYUyD-JsjTvaHg','Greenportal_thread','','greenportal_thread',1273032722,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_thread Greenportal_thread greenportal thread Collaboration/Thread','000001000001000057000012',NULL),('mYwS8CZaOLMt0raaKXGZcQ','Greenportal_postform','','greenportal_postform',1273032722,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_postform Greenportal_postform greenportal postform Collaboration/PostForm','000001000001000057000013',NULL),('kSGR4OHsKmhLQTuLkisOww','Greenportal_search','','greenportal_search',1273032722,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_search Greenportal_search greenportal search Collaboration/Search','000001000001000057000014',NULL),('G5DgNizuG3jXkjPp6UaGrA','Greenportal_Calendar','','greenportal_calendar',1273032722,1301973999,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Greenportal_Calendar Greenportal_Calendar greenportal calendar','000001000001000057000015',NULL),('U78V5IJHVljvRTb6ydsTHg','Greenportal_calendarMonth','','greenportal_calendar/greenportal_calendarmonth',1273032722,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_calendarMonth Greenportal_calendarMonth greenportal calendar greenportal calendarmonth Calendar/Month','000001000001000057000015000001',NULL),('Xqc3qPUXoFE8dt9qocdWig','Greenportal_calendarWeek','','greenportal_calendar/greenportal_calendarweek',1273032722,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_calendarWeek Greenportal_calendarWeek greenportal calendar greenportal calendarweek Calendar/Week','000001000001000057000015000002',NULL),('IBTb7wllSt7RxFmmvm9pkQ','Greenportal_calendarDay','','greenportal_calendar/greenportal_calendarday',1273032722,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_calendarDay Greenportal_calendarDay greenportal calendar greenportal calendarday Calendar/Day','000001000001000057000015000003',NULL),('Z1EM7JMI_4SkyfaZffSElw','Greenportal_calendarEvent','','greenportal_calendar/greenportal_calendarevent',1273032722,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_calendarEvent Greenportal_calendarEvent greenportal calendar greenportal calendarevent Calendar/Event','000001000001000057000015000004',NULL),('fJg7SKpGZwzSNx3_ebki1A','Greenportal_calendarEventEdit','','greenportal_calendar/greenportal_calendareventedit',1273032722,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_calendarEventEdit Greenportal_calendarEventEdit greenportal calendar greenportal calendareventedit Calendar/EventEdit','000001000001000057000015000005',NULL),('ihf4Rx6p72xn_nVKaIeOaw','Greenportal_calendarSearch','','greenportal_calendar/greenportal_calendarsearch',1273032722,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_calendarSearch Greenportal_calendarSearch greenportal calendar greenportal calendarsearch Calendar/Search','000001000001000057000015000006',NULL),('jrWJ6nHXkqgFbml7BZ9chw','Greenportal_submission','','greenportal_submission',1273032722,1301974000,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_submission Greenportal_submission greenportal submission Collaboration/Thread','000001000001000057000016',NULL),('Ys6f3vpe0y1uRcaCJ2TlFw','Greenportal_messageboard','','greenportal_messageboard',1273032722,1301974000,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_messageboard Greenportal_messageboard greenportal messageboard MessageBoard','000001000001000057000017',NULL),('default_CS_unsubscribe','Default Collaboration System Unsubscribe','','collaboration_unsubscribe',1274238758,1277868922,'3','7','4','WebGUI::Asset::Template',0,'Default Collaboration System Unsubscribe Default Collaboration System Unsubscribe collaboration unsubscribe Collaboration/Unsubscribe','000001000001000008000030',NULL),('_hELmIJfgbAyXFNqPyApxQ','admin.css','','root/import/gallery-templates/admin.css',1197330678,1285124155,'3','7','3','WebGUI::Asset::Snippet',0,'admin.css admin.css root import gallery templates admin.css adminWrapper text-align:left font-family:arial font-size:11px position relative z-index 2 h2 font-size:15px messageStyle font-weight:bold font-family:arial font-size:10px margin-bottom:8px adminButton border:solid silver 1px background-color:#e0e0e0 font-weight:bold font-size:10px color:#333 cursor:pointer padding 0.5em 1em adminTable border:solid silver 1px background-color:#F0F0F0 color black width:320px padding:5px adminTable select adminTable input adminTable textarea border:solid gray 1px font-size:10px padding-left:5px label white-space:nowrap text-align:right padding-right:10px font-weight:bold width:1px vertical-align:top galleryOrg list-style-type:none display:block width:95 margin-top:3px padding-top:10px margin-left:5px border:gray solid 1px text-align:center font-family:verdana,arial font-size:9pt background-color:#dedede galleryOrgList margin 0px padding 0px galleryOrg left float left width 36 galleryOrg right width 63 galleryOrg img display:block height:150px margin:0px auto border none galleryOrg select galleryOrg input galleryOrg textarea border:solid gray 1px font-size:10px padding-left:5px promote margin-left:3px promote img height:14px width:16px demote margin-right:3px demote img height:14px width:16px delete img height 14px numbering position:absolute top:0px left:0px padding:1px background-color:black color:white moz-border-radius-bottomRight:5px input.captionEnter width:93px clear:both margin-bottom:3px galleryOrg button border-style:none background:none galleryOrg button img width:16px height:auto galleryOrg synopsis input width:80px ','000001000001000015000015',NULL),('68sKwDgf9cGH58-NZcU4lg','Welcome','','home',1124395696,1286336676,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Welcome Home home','000001000002',NULL),('bX5rYxb6tZ9docY6sUhBlw','Getting Started','\nCongratulations on successfully installing the WebGUI Content Engine®. If you used the Site Starter to select a set of default pages, you will see those pages in the site navigation. You will also notice that a number of additional pages appear, such','getting_started/getting-started',1147642514,1278013772,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Getting Started Getting Started getting started getting started Congratulations on successfully installing the WebGUI Content Engine® If you used the Site Starter to select a set of default pages you will see those pages in the site navigation You will also notice that a number of additional pages appear such as this page These are default pages added for your convenience to help you get started with WebGUI and find the resources you need Feel free to remove these extra pages whenever you are ready To get started managing content download the PDF document below This document provides a basic introduction to the WebGUI user interface WebGUI Basics PDF Once you have read this document you may want to head over to the Documentation section where you can find more WebGUI resources ','000001000002000001000001',NULL),('8Bb8gu-me2mhL3ljFyiWLg','Talk to the Experts','Plain Black® created the WebGUI Content Engine® and is here to answer \nyour questions and provide you with services to make sure your WebGUI \nimplementation is entirely successful. We bend over backwards to make \nsure you\'re a success. Contact us ','your_next_step',1124395696,1271359194,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Talk to the Experts Your Next Step your next step Plain Black® created the WebGUI Content Engine® and is here to answer your questions and provide you with services to make sure your WebGUI implementation is entirely successful We bend over backwards to make sure you\'re a success Contact us today to see how we can help you','000001000002000002',NULL),('ix1p0AbwKAz8QWB-T-HHfg','Get Support','Plain Black provides support packages to fit any budget or need. Start out with online support which costs only $500 per year, or work with Plain Black to build a custom support package tailored to your specific needs. No matter what level of support you ','yns/support',1147642516,1271359087,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get Support Get Support yns support Plain Black provides support packages to fit any budget or need Start out with online support which costs only $500 per year or work with Plain Black to build a custom support package tailored to your specific needs No matter what level of support you purchase you will get personalized and friendly service in a timely manner ','000001000002000002000001',NULL),('iCYOjohB9SKvAPr6bXElKA','Get Hosting','Plain Black\'s professionally trained WebGUI experts can handle the task\nof hosting your web site, intranet, or extranet. Let us deal with upgrades, security, and server management so you focus on building your WebGUI site, which is where your time and exp','yns/hosting',1147642516,1271445525,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get Hosting Get Hosting yns hosting Plain Black\'s professionally trained WebGUI experts can handle the task of hosting your web site intranet or extranet Let us deal with upgrades security and server management so you focus on building your WebGUI site which is where your time and expertise should be spent And when you sign up with hosting online support is included ','000001000002000002000002',NULL),('4Yfz9hqBqM8OYMGuQK8oLw','Get Features','WebGUI\'s robust API allows for easy customization. Plain Black\'s team of developers can create any features you need for your site. We\'ve built hundreds of custom applications for people. From simple macros, to custom single sign on systems, to applicatio','yns/features',1147642516,1271352537,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get Features Get Features yns features WebGUI\'s robust API allows for easy customization Plain Black\'s team of developers can create any features you need for your site We\'ve built hundreds of custom applications for people From simple macros to custom single sign on systems to applications that will manage your entire company our team will leverage the power of WebGUI to your advantage ','000001000002000002000003',NULL),('Wl8WZ43g2rK5AYr9o4zY7w','Get Style','Branding and visual appeal are powerful marketing tools. Don\'t let your site become a wallflower. Plain Black\'s professional design team can create a custom design to make your site stand out. Our team is fast, easy to work with, and can even migrate your','yns/style',1147642516,1271445539,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get Style Get Style yns style Branding and visual appeal are powerful marketing tools Don\'t let your site become a wallflower Plain Black\'s professional design team can create a custom design to make your site stand out Our team is fast easy to work with and can even migrate your existing content into your new WebGUI site ','000001000002000002000004',NULL),('2TqQc4OISddWCZmRY1_m8A','Join Us','The WebGUI project community is a diverse and talented group. If you \nwould like to contribute back to the project there are many ways to \nbecome involved. ','join_us',1124395696,1271357565,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Join Us Join Us join us The WebGUI project community is a diverse and talented group If you would like to contribute back to the project there are many ways to become involved','000001000002000004',NULL),('k2Qj03FrAOXYra8kDJYYXw','IRC (Internet Relay Chat)','You can find members of the community on the #webgui chat channel on the Freenode IRC network. If you\'re not \nfamiliar with IRC, it\'s essentially like a chat room. A few things you\'ll need to know: \n\n\n\nYou need an IRC client program. There are many availa','join_us/irc',1271357513,1271357513,'3','7','3','WebGUI::Asset::Wobject::Article',1,'IRC Internet Relay Chat IRC join us irc You can find members of the community on the webgui chat channel on the Freenode IRC network If you\'re not familiar with IRC it\'s essentially like a chat room A few things you\'ll need to know You need an IRC client program There are many available that can be downloaded free of charge The IRC network we use is Freenode Our channel is webgui Channel operators have an next to their name All channel operators in webgui are Plain Black employees Someone with a + next to their name is a recognized contributor in the WebGUI community People who have been recognized as one of the People Behind WebGUI are often given this designation If you\'re looking for a mentor recognized contributors are a good place to start ','000001000002000004000003',NULL),('ksSfkZdsr0uC62NwIk6hFQ','WebGUI Users Conference','An annual event, this is the one time a year when WebGUI users and Plain\n Black\'s staff come together to do all things WebGUI. This is by far \nthe best way to get involved with the community as nothing can replace \nface to face interaction and mentoring.','join_us/wuc',1271356973,1271356973,'3','7','3','WebGUI::Asset::Wobject::Article',1,'WebGUI Users Conference WUC join us wuc An annual event this is the one time a year when WebGUI users and Plain Black\'s staff come together to do all things WebGUI This is by far the best way to get involved with the community as nothing can replace face to face interaction and mentoring The conference is usually held in the fall of each year and more information on attending can be found on the WebGUI Users Conference website as details become available ','000001000002000004000004',NULL),('nWxS5jnA3o3DgPEwBeR7yQ','The Forums','WebGUI \nForums are available for WebGUI related\n discussion and community support. Bounce around ideas, discuss \nimportant issues, and ask community members for help and advice. WebGUI \nForums are broken up into: \n\nEt Cetera: general WebGUI discussion \nWe','join_us/forums',1271357239,1271357239,'3','7','3','WebGUI::Asset::Wobject::Article',1,'The Forums forums join us forums WebGUI Forums are available for WebGUI related discussion and community support Bounce around ideas discuss important issues and ask community members for help and advice WebGUI Forums are broken up into Et Cetera general WebGUI discussion Web Design Templates and Themes discuss making your site look pretty Admin Forum get your questions answered about everything from security to configuration Install/Upgrade Help get answers to your installation and upgrade questions WebGUI Dev a place to discuss WebGUI and WRE core development as well as writing your own custom modules ','000001000002000004000005',NULL),('AssetReportFolder00001','Asset Report','','asset_report',1281501163,1281501163,'3','3','4','WebGUI::Asset::Wobject::Folder',1,'Asset Report Asset Report asset report','000001000001000058',NULL),('sJtcUCfn0CVbKdb4QM61Yw','Asset Report Default Template','','asset-report/asset-report-default-template',1281501163,1283921584,'3','3','4','WebGUI::Asset::Template',0,'Asset Report Default Template Asset Report Default Template asset report asset report default template AssetReport','000001000001000058000001',NULL),('N7uMnnicbyTEulcuRi1sSg','PDFs','','media/pdfs',1283900195,1283900195,'3','7','4','WebGUI::Asset::Wobject::Folder',1,'PDFs PDFs media pdfs','000001000003000001',NULL),('bCGr7FRtZt-XYlBVUEJBjw','Getting_Started_doc.pdf','','media/pdfs/getting_started_doc.pdf',1278013724,1278013724,'3','7','4','WebGUI::Asset::File::Image',1,'Getting_Started_doc.pdf Getting_Started_doc.pdf media pdfs getting started doc.pdf','000001000003000001000001',NULL),('A3T7jpTBKLYws1h5mJ0t8A','makepageprintable.css','','makepageprintable.css',1286336607,1286336607,'3','7','12','WebGUI::Asset::Snippet',0,'makepageprintable.css makepageprintable.css makepageprintable.css This is the stylesheet for the Make Page Printable Style template reset html body div span applet object iframe h1 h2 h3 h4 h5 h6 p blockquote pre a abbr acronym address big cite code del dfn em font img ins kbd q s samp small strike strong sub sup tt var b u i center dl dt dd ol ul li fieldset form label legend table caption tbody tfoot thead tr th td margin:0 padding:0 border:0 outline:0 font-size:100 vertical-align:baseline background:transparent text-decoration:none font-weight:normal font-style:normal basic formatting body font:12px/18px Georgia,\"Bitstream Charter\",\"Liberation Serif\",\"Times New Roman\",Times,serif color:#000 h1 h2 h3 h4 h5 h6 font:12px/18px Helvetica,Arial,\"Liberation Sans\",sans-serif code font:11px/18px Lucida Console\",\"Courier New\",\"Liberation Mono\",monospace h1 h2 font-size:18px line-height:24px margin:24px 0 12px h3 font-size:14px margin:0 0 12px h4 margin:0 0 6px font-weight:bold h5 margin:0 0 6px h6 font-style:italic margin:0 0 6px p ul ol dl blockquote table form fieldset margin:0 0 18px a:link a:visited text-decoration:underline color:#000 a:hover a:active text-decoration:none color:#000 ol ul blockquote padding:0 0 0 27px ol ol ol ul ul ul ul ol margin:0 dd margin:0 0 3px blockquote font-style:italic font-size:15px quotes:none blockquote p font-style:italic margin:0 0 9px q quotes:none font-style:italic blockquote:before blockquote:after q:before q:after content content:none b strong dt font-weight:bold cite dfn i em ins font-style:italic abbr acronym text-transform:lowercase font-variant:small-caps del text-decoration:line-through sub vertical-align:sub font-size:8px sup vertical-align:super font-size:8px hr border-color:#aaa border-style:dotted border-width:1px 0 0 color:#fff background:#fff margin:18px 0 padding:0 width:100 legend font-weight:bold label display:block table border-collapse:collapse border-spacing:0 caption font-style:italic margin:0 0 6px tr border-bottom:1px dotted ccc thead tr border-top:1px solid ccc border-bottom:1px solid ccc th td padding:5px 9px 4px th font-variant:small-caps very basic positioning design header border-top:1px dotted aaa border-bottom:1px dotted aaa padding:17px 6px color:#666 header h1 font-weight:bold margin:0 text-transform:uppercase header a text-decoration:none font-style:italic color:#666 font-size:11px content padding:0 6px margin:18px 0 36px content a font-weight:bold content img margin:0 0 18px footer border-top:1px dotted aaa border-bottom:1px dotted aaa padding:17px 6px color:#666 ','000001000001000041000007',NULL),('j_1qEqM6iLfQLiR6VKy0aA','Free Documentation','There are hundreds of pages of free documentation available for WebGUI, provided by both Plain Black and the community at large. The following list is by no means comprehensive, but it should get you started in the right direction. \n \n\nPrimer - A downloa','documentation/free-documentation',1215718151,1299872071,'3','7','3','WebGUI::Asset::Wobject::Article',1,'Free Documentation Free Documentation documentation free documentation There are hundreds of pages of free documentation available for WebGUI provided by both Plain Black and the community at large The following list is by no means comprehensive but it should get you started in the right direction Primer A downloadable PDF that shows you the basics of publishing content in WebGUI WebGUI User Guides all commercial user guides previously published by Plain Black are in the process of being converted into wikis You can find these wikis on the WebGUI User Guides page of www.webgui.org This is an ongoing process until all books have been converted remaining books are being made available as free PDF downloads Wiki Hundreds of pages of WebGUI community contributed content featuring a variety of tutorials Worldwide A collection of WebGUI related web sites from all over the world that have documentation and other resources for WebGUI API Docs The documentation of all of the WebGUI source code Template Help The documentation of all of WebGUI\'s template variables ','000001000002000003000001',NULL),('diZvW4bSgZWwyyGP3qXi1g','Commercial Documentation','Plain Black has created a line of commercial books which total over 1500 pages of detailed documentation about WebGUI. Both black and white and full color editions of these books are available. Visit the book store today to stock your WebGUI library. Othe','documentation/commercial-documentation',1215717972,1285610019,'3','7','3','WebGUI::Asset::Wobject::Article',1,'Commercial Documentation Commercial Documentation documentation commercial documentation Plain Black has created a line of commercial books which total over 1500 pages of detailed documentation about WebGUI Both black and white and full color editions of these books are available Visit the book store today to stock your WebGUI library Other than hands on training there is no better way to hone your WebGUI skills No matter what your need Plain Black has created a book that\'s right for you and is creating new books each year In the fall of 2010 Plain Black announced that these books will be converted into free wikis You can now access all WebGUI user guides for free on the WebGUI User Guides page on www.webgui.org These books are available for WebGUI version 7.7 and earlier For later documentation see the free resources available on the WebGUI project website ','000001000002000003000003',NULL),('sK_0zVw4kwdJ1sqREIsSzA','WebGUI Auth Password Recovery Email Template','','root/import/auth/webgui/recoveryemail',1287545015,1287545015,'3','7','4','WebGUI::Asset::Template',0,'WebGUI Auth Password Recovery Email Template Password Recovery Email root import auth webgui recoveryemail Auth/WebGUI/RecoveryEmail','000001000001000005000011',NULL),('_cD6DLM_Fs5IlrLeWUjrjg','Workflow Activity Templates','Folder for holding Workflow Activity templates. ','root/import/workflow-activity-templates',1287545015,1287545015,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Workflow Activity Templates Workflow Activity Templates root import workflow activity templates Folder for holding Workflow Activity templates','000001000001000059',NULL),('lYhMheuuLROK_iNjaQuPKg','Notify About Version Tag','','root/import/workflow-activity-templates/notify-about-version-tag',1287545015,1287545015,'3','7','12','WebGUI::Asset::Template',0,'Notify About Version Tag Notify About Version Tag root import workflow activity templates notify about version tag NotifyAboutVersionTag','000001000001000059000001',NULL),('PBtmplHelp000000000001','Help','','root/import/adminconsole/help',1124395706,1147642410,'3','7','12','WebGUI::Asset::Template',0,'Help Help root import adminconsole help AdminConsole','000001000001000003000002',NULL),('2GxjjkRuRkdUg_PccRPjpA','Select Gateway (Default)','','shopping-cart-collateral-items/select-gateway-default',1257311888,1313542962,'3','7','3','WebGUI::Asset::Template',0,'Select Gateway Default Select Gateway Default shopping cart collateral items select gateway default Shop/selectGateway','000001000001000036000024',NULL),('qxd0WpRGqDPWP8WBicYvEA','dragdropsorting.js','','root/import/gallery-templates/dragdropsorting.js',1271820952,1285124158,'3','7','12','WebGUI::Asset::Snippet',0,'dragdropsorting.js dragdropsorting.js root import gallery templates dragdropsorting.js Create our own namespace For the moment we leave this here since there are no other JS modules for the gallery if typeof Gallery == undefined Gallery = Gallery.DDSorting = Configure the drag\'n\'drop sorting app Gallery.DDSorting.parentId = photos Element Id of the container element Gallery.DDSorting.draggableNodeTags = li Type of tag used for draggable items Gallery.DDSorting.idPrefix = photoId Prefix used in Ids of draggable items Create some shortcuts var Dom = YAHOO.util.Dom var Event = YAHOO.util.Event var DDM = YAHOO.util.DragDropMgr Drag\'n\'drop sorting app for the gallery Gallery.DDSorting.init = function Make list element containing photos a drop target new YAHOO.util.DDTarget(this.parentId Get all items within list of photos var items = document.getElementById(this.parentId).getElementsByTagName(this.draggableNodeTags Initialize DDList object for all list items for i=0 i < items.length i=i+1 new Gallery.DDList(this items[i].id gallery Custom drag and drop implementation Gallery.DDList = function(app id sGroup config Gallery.DDList.superclass.constructor.call(this id sGroup config var el = this.getDragEl Dom.setStyle(el opacity 0.67 The proxy is slightly transparent Assign reference to application object this.app = app Init variables for direction and replacement tracking this.goingUp = false this.goingLeft = false this.lastY = 0 this.lastX = 0 this.before = false this.lastReplaced = null YAHOO.extend(Gallery.DDList YAHOO.util.DDProxy startDrag function(x y Make the proxy look like the source element var dragEl = this.getDragEl var clickEl = this.getEl Dom.setStyle(clickEl visibility hidden Copy source element to proxy and set class dragEl.className = clickEl.className dragEl.innerHTML = clickEl.innerHTML endDrag function(e var srcEl = this.getEl var proxy = this.getDragEl Show the proxy element and animate it to the src element\'s location Dom.setStyle(proxy visibility var a = new YAHOO.util.Motion proxy points to Dom.getXY(srcEl 0.2 YAHOO.util.Easing.easeOut var proxyid = proxy.id var thisid = this.id Hide the proxy and show the source element when finished with the animation a.onComplete.subscribe(function Dom.setStyle(proxyid visibility hidden Dom.setStyle(thisid visibility a.animate Do nothing more if no element has been replaced if this.lastReplaced == null return Get assed ids of the target to move and the last photo replaced var target = srcEl.id.replace(this.app.idPrefix var dest = this.lastReplaced.id.replace(this.app.idPrefix Prepare call to ajax service of the gallery asset We need to set the action argument to moveFile provide the asset id of the target photo in target and the asset id of the photo replaced in before or after depending on order var args = args.action = moveFile args.target = target if this.before args.before = dest else args.after = dest Callback function for asynchronous request This is required for error handling var callback = success function o Parse answer from ajax service result = YAHOO.lang.JSON.parse(o.responseText Check for errors if result.err Display error message alert(\'Failed to move photo + result.errMessage Request a reload of the page so we are back in sync location.reload failure function o Display generic error message alert(\'AJAX service for moving photos is currently not available Failed to move photo Request a reload of the page so we are back in sync location.reload Convert args object to JSON string var postData = func=ajax;args= + encodeURI(YAHOO.lang.JSON.stringify(args Make asynchronous call to gallery asset YAHOO.util.Connect.asyncRequest(\"POST this.app.url callback postData onDrag function(e Keep track of the direction of the drag for use during onDragOver var y = Event.getPageY(e var x = Event.getPageX(e Check in vertical direction if y < this.lastY this.goingUp = true else if y > this.lastY this.goingUp = false Check in horizontal direction if x < this.lastX this.goingLeft = true else if x > this.lastX this.goingLeft = false this.lastY = y this.lastX = x onDragOver function(e id var srcEl = this.getEl var destEl = Dom.get(id We are only concerned with list items we ignore the dragover notifications for the list if destEl.nodeName.toLowerCase == this.app.draggableNodeTags var orig_p = srcEl.parentNode var p = destEl.parentNode if this.goingUp || this.goingLeft Insert above/before p.insertBefore(srcEl destEl Keep track of where we moved this.lastReplaced = destEl this.before = true else Insert below/after p.insertBefore(srcEl destEl.nextSibling Keep track of where we moved this.lastReplaced = destEl this.before = false DDM.refreshCache Start application after DOM is ready Event.onDOMReady(Gallery.DDSorting.init Gallery.DDSorting true','000001000001000015000026',NULL),('f2EktltCvwQpl_3-B1yR7g','Asset Templates','','root/import/asset_templates',1288748251,1288748251,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Asset Templates Asset Templates root import asset templates','000001000001000060',NULL),('BBpxqoSseIor5C9ei9JEFQ','Underground WebGUI.css','','style-underground/css/underground-webgui.css',1273032719,1301973996,'3','7','3','WebGUI::Asset::Snippet',0,'Underground WebGUI.css Underground WebGUI.css style underground css underground webgui.css wg-toolbar p margin 0px img.wg-toolbar-icon border 0px none toolbarIcon margin 0px label display inline ','000001000001000056000002000002',NULL),('xyyn5mz3xGyvrcI1rY8C-w','greenportal.css','','greenportal.css',1273032721,1301973998,'3','7','12','WebGUI::Asset::Snippet',0,'greenportal.css greenportal.css greenportal.css CSS Document body,html text-align:center height 100 margin 3px 3px 3px 3px font-family Verdana Sans-Serif line-height 125 color:#CCCCCC background 222625 h1,h2,h3,h4,h5,h6{font-weight:bold h1{font-size:18px h2{font-size:16px h3{font-size:14px h4{font-size:12px h5{font-size:11px h6{font-size:10px main width:80 height:100 margin-left:auto margin-right:auto position:relative body > main height:auto min-height:100 font-size:10px main mainHeader width:100 height:125px background url(\'^FileUrl(/greenportal_image/logo.jpg top center no-repeat margin-bottom:5px position:relative main mainHeader title position:absolute top:55px left:180px font-size:36pt font-family Edwardian Script ITC Arial Sans-Serif font-variant small-caps font-style italic color:#CCCCCC font-weight bold overflow visible padding 20px main mainHeader title a color:#CCCCCC text-decoration:none main mainHeader title a:hover color:#FFFFFF text-decoration:none font-size:37pt main mainMenu width:186px position:absolute top:125px left:0px main mainMenu li list-style none font-size 9pt text-align:left main mainMenu menuTop color:#99CC33 background url(\'^FileUrl(/greenportal_image/menu_top.png no-repeat margin-left:-3px padding:2px 0px 3px 26px width:162px 186px-24px font-size:10pt font-weight bold main mainMenu indent1 margin-left:0px width:186px main mainMenu indent2 margin-left:17px width:168px 186-17px main mainMenu a display:block height:24px font-weight:bold text-decoration:none color:#CCCCCC background url(\'^FileUrl(/greenportal_image/menu_dark.png no-repeat padding:2px 0px 0px 24px main mainMenu a:hover,active display:block height:24px font-weight:bold text-decoration:none color:#FFFFFF background url(\'^FileUrl(/greenportal_image/menu_light.png no-repeat padding:2px 0px 0px 24px main mainContent width:75 height:100 margin-top:5px margin-left:215px text-align:left border 1px solid CCCCCC main > mainContent margin-top:0px min-height:500px main > mainContent > p margin-top:0px main mainContent topMenu margin-right 10px text-align right font-size 8pt font-weight bold main mainContent topMenu a color 99CC33 text-decoration none main mainContent topMenu a:hover text-decoration:underline main mainContent mainText margin 10px 5px 5px 10px font-size:8pt padding 5px min-height 423px text-align left main mainContent mainText a color:#FFFFFF text-decoration none font-weight bold main mainContent mainText a:hover color:#FFFF00 text-decoration none font-weight bold main mainContent mainText yui-skin-sam a color 222625 text-decoration none font-weight bold main mainFooter text-align:left padding:10px margin:5px 0px 5px 200px width:75 font-size:9px background:url(^FileUrl(/greenportal_image/logo.jpg no-repeat main mainFooter a color:#CCCCCC font-weight:bold text-decoration:none main mainFooter a:hover color:#FFFFFF font-weight:bold text-decoration:none ','000001000001000057000002',NULL),('XdlKhCDvArs40uqBhvzR3w','Article With Pagination','','article-with-pagination',1254881103,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Article With Pagination Article With Pagination article with pagination Article','000001000001000004000006',NULL),('mRtqRuVikSe82BQsYBlD0A','Bare Image','','bare_image',1263962529,1263962529,'3','7','12','WebGUI::Asset::Template',0,'Bare Image Bare Image bare image ImageAsset','000001000001000017000003',NULL),('8tqyQx-LwYUHIWOlKPjJrA','EMS Event Submission Template','','root/import/ems/ems-event-submission',1258524917,1279073449,'3','7','12','WebGUI::Asset::Template',0,'EMS Event Submission Template EMS Event Submission Template root import ems ems event submission EMS/Submission','000001000001000012000009',NULL),('DoVNijm6lMDE0cYrtvEbDQ','EMS Event Submission Main Template','','root/import/ems/ems-event-submission-main',1258524917,1279073449,'3','7','12','WebGUI::Asset::Template',0,'EMS Event Submission Main Template EMS Event Submission Main Template root import ems ems event submission main EMS/SubmissionMain','000001000001000012000010',NULL),('ktSvKU8riGimhcsxXwqvPQ','EMS Event Submission Queue','','root/import/ems/ems-event-submission-queue',1258524917,1279073450,'3','7','12','WebGUI::Asset::Template',0,'EMS Event Submission Queue EMS Event Submission Queue root import ems ems event submission queue EMS/SubmissionQueue','000001000001000012000011',NULL),('pbproto000000000000002','Request Tracker','','request-tracker-prototype',1147642465,1163019036,'3','7','12','WebGUI::Asset::Wobject::Collaboration',1,'Request Tracker Request Tracker request tracker prototype','000001000001000008000031',NULL),('VCFhB9WOsDsH2Apj3c6DpQ','Three Columns','','three-columns',1254881103,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Three Columns Three Columns three columns Layout','000001000001000019000008',NULL),('_aE16Rr1-bXBf8SIaLZjCg','picklanguage','','media/picklanguage',1257311888,1257311888,'3','7','12','WebGUI::Asset::Template',0,'picklanguage picklanguage media picklanguage Macro/PickLanguage','000001000001000021000013',NULL),('mfHGkp6t9gdclmzN33OEnw','Default Twitter Choose Username','','root/import/auth/twitter/chooseusername/default-twitter-choose-username',1277868927,1277868927,'3','7','12','WebGUI::Asset::Template',0,'Default Twitter Choose Username Default Twitter Choose Username root import auth twitter chooseusername default twitter choose username Auth/Twitter/ChooseUsername','000001000001000005000012',NULL),('limMkk80fMB3fqNZVf162w','Default Asset Subscription','','root/import/default-asset-subscription',1253507213,1281501163,'3','7','3','WebGUI::Asset::Template',0,'Default Asset Subscription Default Asset Subscription root import default asset subscription AssetAspect/Subscribable','000001000001000060000001',NULL),('YP9WaMPJHvCJl-YwrLVcPw','Progress Bar','','admin_progress_bar',1245376837,1245376837,'3','7','12','WebGUI::Asset::Template',0,'Progress Bar Progress Bar admin progress bar AdminConsole/ProgressBar','000001000001000060000002',NULL),('Rqwgh50A3gGcOKIrdi_kxw','Authorize.net Credentials (Default)','','shopping-cart-collateral-items/authorizenet-credentials',1313542962,1313542962,'3','7','4','WebGUI::Asset::Template',0,'Authorize.net Credentials Default Authorize.net Credentials Default shopping cart collateral items authorizenet credentials Shop/Credentials','000001000001000036000025',NULL),('3n3H85BsdeRQ0I08WmvlOg','thingy.css','','root/import/thingy-templates/thingy.css',1212091492,1313542960,'3','7','12','WebGUI::Asset::Snippet',0,'thingy.css thingy.css root import thingy templates thingy.css wgThingy margin:5px wgThingy styleButton color:black margin:0px 5px display:block float:left wgThingy spacerOne padding-left:15px wgThingy rowOne wgThingy tr.rowOne td background EEEEEE margin:1px border:solid CDCDCD 1px color:#000 padding:2px wgThingy rowTwo wgThingy tr.rowTwo td background DBDBDB margin:1px border:solid DDDDDD 1px color:#000 padding:2px wgThingsWrapper img display:block vertical-align:middle float:left wgThingsWrapper label font-weight:bold padding-left:15px wgThingy h2.title background 000 height:42px color:white font-size:18px font-weight:bold letter-spacing:1px line-height:42px padding-left:15px margin-bottom:0px wgThingy span.smaller font-size:13px color:white wgThingy controls line-height:35px height:35px background f1f1f1 margin-top:0px margin-bottom:20px padding:0px overflow:visible wgThingy label background:black color:white padding:2px 5px font-family:arial font-size:11px font-weight:bold vertical-align:middle wgThingy label a color:white searchTable input editThing input background white border:solid 555 1px editThing margin-top:15px thingyList thingyList margin:0px padding:0px thingyList position:relative float:left overflow:visible thingyList goButton:link thingyList goButton:visited padding:2px 25px 2px 2px background F1F1F1 url(^FileUrl(root/import/thingy-templates/images/go-btn.gif no-repeat right line-height:20px border:solid a2a2a2 1px color:#a2a2a2 text-decoration:none font-family:verdana arial font-size:10px font-weight:bold margin-left:20px letter-spacing:0px thingyList goButton:hover background-color:white thingyList things padding:0px margin:0px width:300px z-index:5000 position:absolute top:27px left:20px border:solid a2a2a2 1px border-top-style:none thingyList things a:link thingyList things a:visited display:block background-color:#f1f1f1 border-top:solid a2a2a2 1px border-bottom:solid 727272 1px line-height:12px font-size:10px height:12px padding:2px 5px text-decoration:none font-weight:bold color:#a2a2a2 thingyList things a:hover background-color:white ','000001000001000044000006',NULL); +INSERT INTO `assetIndex` VALUES ('PBasset000000000000003','Media','','media',1147642437,1147642437,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Media Media media','000001000003',NULL),('PBtmpl0000000000000112','Weblog','','weblog',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Weblog Weblog weblog Collaboration','000001000001000008000004',NULL),('PBtmplBlankStyle000001','WebGUI 6 Blank Style','','pbtmplblankstyle000001',1133743239,1258524916,'3','7','12','WebGUI::Asset::Template',0,'WebGUI 6 Blank Style WebGUI 6 Blank Style pbtmplblankstyle000001 style','000001000001000041000005',NULL),('PBtmpl0000000000000079','Topics','','topics',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Topics Topics topics Collaboration','000001000001000008000009',NULL),('PBtmpl0000000000000097','Traditional with Thumbnails','','traditional_with_thumbnails',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Traditional with Thumbnails Traditional with Thumbnails traditional with thumbnails Collaboration','000001000001000008000003',NULL),('PBtmpl0000000000000082','Unordered List','','unordered_list',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Unordered List Unordered List unordered list Collaboration','000001000001000008000011',NULL),('PBtmpl0000000000000124','Tabs','','tabs',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Tabs Tabs tabs Navigation','000001000001000025000004',NULL),('GNvjCFQWjY2AF2uf0aCM8Q','Syndicated Articles','','syndicated_articles',1124395696,1259133274,'3','7','12','WebGUI::Asset::Template',0,'Syndicated Articles Syndicated Articles syndicated articles SyndicatedContent','000001000001000043000002',NULL),('PBtmpl0000000000000136','Synopsis','','synopsis2',1124395696,1259133274,'3','7','12','WebGUI::Asset::Template',0,'Synopsis Synopsis synopsis2 Navigation','000001000001000025000007',NULL),('PBtmpl0000000000000116','Tab Form','','tab_form',1124395696,1257311888,'3','7','12','WebGUI::Asset::Template',0,'Tab Form Tab Form tab form DataForm','000001000001000010000005',NULL),('GRUNFctldUgop-qRLuo_DA','Default Survey Edit','','root/import/survey/default-survey-edit',1227254010,1269401469,'3','7','12','WebGUI::Asset::Template',0,'Default Survey Edit Default Survey Edit root import survey default survey edit Survey/Edit','000001000001000042000004',NULL),('ProjectManagerTMPL0004','Default Project Manager Edit Task','','default-pm-template-edit-task',1147642415,1222574693,'3','7','12','WebGUI::Asset::Template',0,'Default Project Manager Edit Task Default Project Manager Edit Task default pm template edit task ProjectManager_editTask','000001000001000030000002000001',NULL),('ProjectManagerTMPL0002','Default Project Display','','default-pm-template-project-display',1147642415,1222574693,'3','7','12','WebGUI::Asset::Template',0,'Default Project Display Default Project Display default pm template project display ProjectManager_project','000001000001000030000004000001',NULL),('PBtmpl0000000000000137','Admin Console Style','','admin_console',1124395696,1258524916,'3','7','12','WebGUI::Asset::Template',0,'Admin Console Style Admin Console admin console style','000001000001000041000003',NULL),('StockDataTMPL000000001','StockData Default View','','stockdatatmpl000000001',1133743239,1315877144,'3','7','12','WebGUI::Asset::Template',0,'StockData Default View StockData Default View stockdatatmpl000000001 StockData','000001000001000039000002',NULL),('PBtmpl0000000000000135','Side By Side','','side_by_side',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Side By Side Side By Side side by side Layout','000001000001000019000001',NULL),('PBtmpl0000000000000200','Default Search','','default_search2',1147642427,1301974000,'3','7','12','WebGUI::Asset::Template',0,'Default Search Default Search default search2 Search','000001000001000034000001',NULL),('PBtmpl0000000000000101','Ordered List','','ordered_list',1124395696,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Ordered List Ordered List ordered list Collaboration','000001000001000008000024',NULL),('PBtmpl0000000000000121','Photo Gallery','','photo_gallery',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Photo Gallery Photo Gallery photo gallery Collaboration','000001000001000008000005',NULL),('PBtmpl0000000000000081','Q and A','','q_and_a',1124395696,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Q and A Q and A q and a Collaboration','000001000001000008000023',NULL),('WVtmpl0000000000000001','Random Thread Macro Default Template','','randomthread-template',1133743240,1147642426,'3','7','12','WebGUI::Asset::Template',0,'Random Thread Macro Default Template Random Thread Macro Default Template randomthread template Macro/RandomThread','000001000001000021000010000001',NULL),('PBtmpl0000000000000131','Right Column','','right_column',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Right Column Right Column right column Layout','000001000001000019000002',NULL),('PBtmpl0000000000000094','News','','plainblacknews',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',0,'News News plainblacknews Layout','000001000001000019000005',NULL),('matrixtmpl000000000005','Matrix Default Search','','matrix-search-template',1133743239,1281501163,'3','7','12','WebGUI::Asset::Template',0,'Matrix Default Search Matrix Default Search matrix search template Matrix/Search','000001000001000022000005',NULL),('MultiSearchTmpl0000001','MultiSearch Default Display','','multisearchtmpl0000001',1133743239,1230269962,'3','7','12','WebGUI::Asset::Template',0,'MultiSearch Default Display MultiSearch Default Display multisearchtmpl0000001 MultiSearch','000001000001000024000001',NULL),('matrixtmpl000000000002','Matrix Default Compare','','matrix-default-compare-template',1133743238,1281501162,'3','7','12','WebGUI::Asset::Template',0,'Matrix Default Compare Matrix Default Compare matrix default compare template Matrix/Compare','000001000001000022000001',NULL),('PBtmpl0000000000000111','Make Page Printable','','make_page_printable',1124395696,1286336607,'3','7','12','WebGUI::Asset::Template',0,'Make Page Printable Make Page Printable make page printable style','000001000001000041000002',NULL),('PBtmpl0000000000000020','Mail Form','','mail_form',1124395696,1257311887,'3','7','12','WebGUI::Asset::Template',0,'Mail Form Mail Form mail form DataForm','000001000001000010000001',NULL),('PBtmpl0000000000000113','Link','','link',1124395696,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Link Link link Collaboration/Thread','000001000001000008000025',NULL),('PBtmpl0000000000000083','Link List','','link_list',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Link List Link List link list Collaboration','000001000001000008000010',NULL),('PBtmpl0000000000000114','Link List Submission Form','','link_list_submission_form',1124395696,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Link List Submission Form Link List Submission Form link list submission form Collaboration/PostForm','000001000001000008000019',NULL),('PBtmpl0000000000000115','Linked Image with Caption','','linked_image_with_caption',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Linked Image with Caption Linked Image with Caption linked image with caption Article','000001000001000004000003',NULL),('PBtmpl0000000000000098','Job','','job',1124395696,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Job Job job Collaboration/Thread','000001000001000008000021',NULL),('PBtmpl0000000000000077','Job Listing','','job_listing',1124395696,1298351263,'3','7','12','WebGUI::Asset::Template',0,'Job Listing Job Listing job listing Collaboration','000001000001000008000020',NULL),('PBtmpl0000000000000122','Job Submission Form','','job_submission_form',1124395696,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Job Submission Form Job Submission Form job submission form Collaboration/PostForm','000001000001000008000022',NULL),('PBtmpl0000000000000103','Article With Image','','article-with-image',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Article With Image Article With Image article with image Article','000001000001000004000001',NULL),('PBtmpl0000000000000092','Horizontal Login Box','','horizontal_login_box',1124395696,1148579524,'3','7','12','WebGUI::Asset::Template',0,'Horizontal Login Box Horizontal Login Box horizontal login box Macro/L_loginBox','000001000001000021000009000001',NULL),('PBtmpl0000000000000108','horizontalMenu','','horizontalmenu',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'horizontalMenu horizontalMenu horizontalmenu Navigation','000001000001000025000002',NULL),('PBtmpl0000000000000088','Image','','image',1124395696,1300763663,'3','7','12','WebGUI::Asset::Template',0,'Image Image image ImageAsset','000001000001000017000001',NULL),('IOB0000000000000000002','Default InOutBoard Report Template','','iob-report-template',1133743239,1166019641,'3','7','12','WebGUI::Asset::Template',0,'Default InOutBoard Report Template Default InOutBoard Report Template iob report template InOutBoard/Report','000001000001000018000001',NULL),('IOB0000000000000000001','Default InOutBoard Template','','iob-template',1133743239,1169795123,'3','7','12','WebGUI::Asset::Template',0,'Default InOutBoard Template Default InOutBoard Template iob template InOutBoard','000001000001000018000002',NULL),('PBtmpl0000000000000123','Item','','item',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Item Item item Article','000001000001000004000004',NULL),('PBtmpl0000000000000024','File','','file',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'File File file FileAsset','000001000001000013000001',NULL),('PBtmpl0000000000000078','File Folder','','file_folder',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'File Folder File Folder file folder Folder','000001000001000014000001',NULL),('PBtmpl0000000000000107','File with size','','file_with_size',1124395696,1147642420,'3','7','12','WebGUI::Asset::Template',0,'File with size File with size file with size Macro/File','000001000001000021000004000003',NULL),('PBtmpl0000000000000133','Guest Book','','guest_book',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Guest Book Guest Book guest book Collaboration','000001000001000008000012',NULL),('PBtmpl0000000000000117','DropMenu','','dropmenu',1124395696,1259133274,'3','7','12','WebGUI::Asset::Template',0,'DropMenu DropMenu dropmenu Navigation','000001000001000025000003',NULL),('PBtmpl0000000000000130','Tree Navigation','','root/import/navigation/tree-navigation',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Tree Navigation Tree Navigation root import navigation tree navigation Navigation','000001000001000025000005',NULL),('PBtmpl0000000000000060','Fail Safe','','fail_safe',1124395696,1258524916,'3','7','12','WebGUI::Asset::Template',0,'Fail Safe Fail Safe fail safe style','000001000001000041000001',NULL),('PBtmpl0000000000000080','FAQ','','faqtemplate',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'FAQ FAQ faqtemplate Collaboration','000001000001000008000002',NULL),('PBtmpl0000000000000099','FAQ Submission Form','','faq_submission_form',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'FAQ Submission Form FAQ Submission Form faq submission form Collaboration/PostForm','000001000001000008000018',NULL),('PBtmpl0000000000000010','Default WebGUI Account Display Template','','default_webgui_account_display_template',1124395696,1287545014,'3','7','12','WebGUI::Asset::Template',0,'Default WebGUI Account Display Template Default WebGUI Account Display Template default webgui account display template Auth/WebGUI/Account','000001000001000005000004000001',NULL),('PBtmpl0000000000000013','Default WebGUI Login Template','','default_webgui_login_template',1124395696,1287545014,'3','7','12','WebGUI::Asset::Template',0,'Default WebGUI Login Template Default WebGUI Login Template default webgui login template Auth/WebGUI/Login','000001000001000005000007000001',NULL),('PBtmpl0000000000000012','Default WebGUI Password Reset Template','','default_webgui_password_reset_template',1124395696,1287545014,'3','7','12','WebGUI::Asset::Template',0,'Default WebGUI Password Reset Template Default WebGUI Password Reset Template default webgui password reset template Auth/WebGUI/Expired','000001000001000005000006000001',NULL),('PBtmpl0000000000000057','Default WebGUI Yes/No Prompt','','default_webgui_yes/no_prompt',1124395696,1147642418,'3','7','12','WebGUI::Asset::Template',0,'Default WebGUI Yes/No Prompt Default WebGUI Yes/No Prompt default webgui yes no prompt prompt','000001000001000031000001',NULL),('PBtmpl0000000000000066','Default USS','','default_uss',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default USS Default USS default uss Collaboration','000001000001000008000001',NULL),('TimeTrackingTMPL000001','Default Time Tracking User View','','default-tt-template-user',1147642417,1201205738,'3','7','12','WebGUI::Asset::Template',0,'Default Time Tracking User View Default Time Tracking User View default tt template user TimeTracking_user','000001000001000046000003000001',NULL),('TimeTrackingTMPL000003','Default Time Tracking Row Template','','default-tt-template-row',1147642417,1229311434,'3','7','12','WebGUI::Asset::Template',0,'Default Time Tracking Row Template Default Time Tracking Row Template default tt template row TimeTracking_row','000001000001000046000002000001',NULL),('TimeTrackingTMPL000002','Default Time Tracking Manager View','','default-tt-template-manager',1147642417,1147642417,'3','7','12','WebGUI::Asset::Template',0,'Default Time Tracking Manager View Default Time Tracking Manager View default tt template manager TimeTracking_manager','000001000001000046000001000001',NULL),('X7DrzUcj8pOKFa_6k9D5iw','Newsletter','','root/import/newsletter',1185754569,1222804045,'3','12','3','WebGUI::Asset::Wobject::Folder',1,'Newsletter Newsletter root import newsletter','000001000001000026',NULL),('PBtmpl0000000000000065','Default Syndicated Content','','default_syndicated_content',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Default Syndicated Content Default Syndicated Content default syndicated content SyndicatedContent','000001000001000043000001',NULL),('CxMpE_UPauZA3p8jdrOABw','Default Questions','','root/import/survey/default-questions',1227556536,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Questions Default Questions root import survey default questions Survey/Take','000001000001000042000006',NULL),('PBtmpl0000000000000059','Default SQL Report','','default_sql_report',1124395696,1229907401,'3','7','12','WebGUI::Asset::Template',0,'Default SQL Report Default SQL Report default sql report SQLReport','000001000001000038000001',NULL),('PBtmpl0000000000000067','Default Submission','','default_submission',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default Submission Default Submission default submission Collaboration/Thread','000001000001000008000006',NULL),('PBtmpl0000000000000068','Default Submission Form','','default_submission_form',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default Submission Form Default Submission Form default submission form Collaboration/PostForm','000001000001000008000017',NULL),('ProjectManagerTMPL0003','Default Project Manager Gantt Chart','','default-pm-template-gantt-chart',1147642415,1159989349,'3','7','12','WebGUI::Asset::Template',0,'Default Project Manager Gantt Chart Default Project Manager Gantt Chart default pm template gantt chart ProjectManager_gantt','000001000001000030000003000001',NULL),('ProjectManagerTMPL0001','Default Project Management System Dashboard','','default-pm-template-dashboard',1147642415,1229579830,'3','7','12','WebGUI::Asset::Template',0,'Default Project Management System Dashboard Default Project Management System Dashboard default pm template dashboard ProjectManager_dashboard','000001000001000030000001000001',NULL),('PBtmpl0000000000000055','Default Poll','','default_poll',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Default Poll Default Poll default poll Poll','000001000001000027000001',NULL),('PBtmpl0000000000000029','Default Post Form','','default_post_form',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default Post Form Default Post Form default post form Collaboration/PostForm','000001000001000008000013',NULL),('PBtmpl0000000000000056','Default Product','','default_product',1124395696,1248729559,'3','7','12','WebGUI::Asset::Template',0,'Default Product Default Product default product Product','000001000001000028000001',NULL),('PBtmpl0000000000000033','Default HTTP Proxy','','default_http_proxy',1124395696,1230159454,'3','7','12','WebGUI::Asset::Template',0,'Default HTTP Proxy Default HTTP Proxy default http proxy HttpProxy','000001000001000016000001',NULL),('PBtmpl0000000000000004','Default LDAP Account Display Template','','default_ldap_account_display_template',1124395696,1287545014,'3','7','12','WebGUI::Asset::Template',0,'Default LDAP Account Display Template Default LDAP Account Display Template default ldap account display template Auth/LDAP/Account','000001000001000005000001000001',NULL),('PBtmpl0000000000000006','Default LDAP Login Template','','default_ldap_login_template',1124395696,1287545014,'3','7','12','WebGUI::Asset::Template',0,'Default LDAP Login Template Default LDAP Login Template default ldap login template Auth/LDAP/Login','000001000001000005000003000001',NULL),('PBtmpl0000000000000044','Default Login Box','','default_login_box',1124395696,1148579524,'3','7','12','WebGUI::Asset::Template',0,'Default Login Box Default Login Box default login box Macro/L_loginBox','000001000001000021000009000002',NULL),('PBtmpl0000000000000047','Default Message Board','','default_message_board',1124395696,1147642414,'3','7','12','WebGUI::Asset::Template',0,'Default Message Board Default Message Board default message board MessageBoard','000001000001000023000001',NULL),('PBtmpl0000000000000054','Default Page','','default_page',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Default Page Default Page default page Layout','000001000001000019000003',NULL),('Q4uX_C557arTp6D_jwB1jQ','Wiki','','root/import/wiki',1165460175,1273032720,'3','12','12','WebGUI::Asset::Wobject::Folder',1,'Wiki Wiki root import wiki','000001000001000052',NULL),('BmLaN4rmAANkCglXUViEbg','Resource','','root/import/projectmanager/resource',1157679165,1222803871,'3','12','12','WebGUI::Asset::Wobject::Folder',1,'Resource Resource root import projectmanager resource','000001000001000030000005',NULL),('PBtmpl0000000000000039','Default File Macro','','default_file_macro',1124395696,1154535073,'3','7','12','WebGUI::Asset::Template',0,'Default File Macro Default File Macro default file macro Macro/File','000001000001000021000004000001',NULL),('PBtmpl0000000000000026','Default Forum','','default_forum',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default Forum Default Forum default forum Collaboration','000001000001000008000007',NULL),('PBtmpl0000000000000031','Default Forum Search','','default_forum_search',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default Forum Search Default Forum Search default forum search Collaboration/Search','000001000001000008000016',NULL),('PBtmpl0000000000000093','crumbTrail','','crumbtrail2',1124395696,1259133274,'3','7','12','WebGUI::Asset::Template',0,'crumbTrail crumbTrail crumbtrail2 Navigation','000001000001000025000001',NULL),('DashboardViewTmpl00001','Dashboard Default View','','dashboard-default-view-template',1133743239,1300763664,'3','7','12','WebGUI::Asset::Template',0,'Dashboard Default View Dashboard Default View dashboard default view template Dashboard','000001000001000009000001',NULL),('PBtmpl0000000000000021','Data List','','data_list',1124395696,1294721945,'3','7','12','WebGUI::Asset::Template',0,'Data List Data List data list DataForm/List','000001000001000010000004',NULL),('PBtmpl0000000000000104','Default Acknowledgement','','default_acknowledgement',1124395696,1257311888,'3','7','12','WebGUI::Asset::Template',0,'Default Acknowledgement Default Acknowledgement default acknowledgement DataForm','000001000001000010000003',NULL),('PBtmpl0000000000000002','Default Article','','default_article',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Default Article Default Article default article Article','000001000001000004000002',NULL),('PBtmpl0000000000000141','Default DataForm','','pbtmpl0000000000000141',1124395696,1257311888,'3','7','12','WebGUI::Asset::Template',0,'Default DataForm Default DataForm pbtmpl0000000000000141 DataForm','000001000001000010000006',NULL),('WikiRCTmpl000000000001','Default Recent Changes','','default-wiki-recent-changes',1165460175,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Default Recent Changes Default Recent Changes default wiki recent changes WikiMaster_recentChanges','000001000001000052000001',NULL),('PBtmpl0000000000000128','Classifieds','','classifieds',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Classifieds Classifieds classifieds Collaboration','000001000001000008000008',NULL),('PBtmpl0000000000000134','Hierarchical Top Nav','','import/hierarchical-top-nav',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Hierarchical Top Nav Hierarchical Top Nav import hierarchical top nav Navigation','000001000001000025000006',NULL),('PBtmpl0000000000000208','Request Tracker','','request-tracker-template',1147642410,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Request Tracker Request Tracker request tracker template Collaboration','000001000001000008000026',NULL),('wAc4azJViVTpo-2NYOXWvg','Default Question Edit','','root/import/survey/default-question-edit',1226009650,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Question Edit Default Question Edit root import survey default question edit Survey/Edit','000001000001000042000008',NULL),('1z9J1O08n_7gVVlBwSRBJQ','Auth','','root/import/auth',1222803099,1287545014,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Auth Auth root import auth','000001000001000005',NULL),('zyWi26q9na-iiZqL4yedog','Macro','','root/import/macro',1222803114,1222803114,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Macro Macro root import macro','000001000001000021',NULL),('PBtmpl0000000000000209','Request Tracker Thread','','request-tracker-post-template',1147642410,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Request Tracker Thread Request Tracker Thread request tracker post template Collaboration/Thread','000001000001000008000027',NULL),('PBtmpl0000000000000109','One Over Three','','one_over_three',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'One Over Three One Over Three one over three Layout','000001000001000019000004',NULL),('PBtmpl0000000000000001','Admin Console','','admin_console2',1124395696,1247535846,'3','7','12','WebGUI::Asset::Template',0,'Admin Console Admin Console admin console2 AdminConsole','000001000001000003000001',NULL),('LBuiKzg2mWwmOPS9AgV3bg','Get Translated','Let our team of professional translators bring your site to new customers by translating your content into additional languages. Our translation services are never machine automated. They\'re always done by professional translators that have years of exper','yns/translated',1147642517,1271348789,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get Translated Get Translated yns translated Let our team of professional translators bring your site to new customers by translating your content into additional languages Our translation services are never machine automated They\'re always done by professional translators that have years of experience reading writing and speaking many languages ','000001000002000002000005',NULL),('jTNggl7AoVSUc_ZzrvuCmw','Get Promoted','Now that you have a brilliant WebGUI site, you need to get people to visit it. We can help there too. Our marketing specialists can work with you to develop and execute the right combination of search engine placement, advertising buys, and affilliate pro','yns/promotion',1147642517,1271348789,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get Promoted Get Promoted yns promotion Now that you have a brilliant WebGUI site you need to get people to visit it We can help there too Our marketing specialists can work with you to develop and execute the right combination of search engine placement advertising buys and affilliate programs to ensure your site gets the traffic it needs ','000001000002000002000006',NULL),('Vzv1pWpg_w6R_o-b0rM2qQ','Ad','','home/ad2',1147642515,1147642515,'3','7','4','WebGUI::Asset::File',1,'Ad Ad home ad2','000001000002000001000002',NULL),('NK8bqlwVRILJknqeCDPBHg','Getting Started (part 2)','\nTo begin managing content, you should log in and click the Turn Admin On! link. The default username is \"admin\" and the default password is \"123qwe\", but you probably customized both of those when you visited this site for the very first time.\n \n\nNow tha','getting_started/getting-started-part2',1147642515,1285796040,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Getting Started part 2 Getting Started part 2 getting started getting started part2 To begin managing content you should log in and click the Turn Admin On link The default username is admin and the default password is 123qwe but you probably customized both of those when you visited this site for the very first time Now that you\'re logged in we recommend that you add a new user for yourself with admin privileges just in case you forget the login information for your primary admin account Don\'t worry if you lock yourself out you can always contact Plain Black® support to get instructions to get back in NOTE If you appear to get logged out while moving between pages this is most likely your browser displaying a cached version of the page Click on your browser\'s refresh button to correct the problem For more information about services related to WebGUI click here Enjoy your new WebGUI site ','000001000002000001000003',NULL),('IWFxZDyGhQ3-SLZhELa3qw','Benefits','\n\n\n\nRich User Interface\n \n\nPowerful API\n \n\n\n\nWebGUI has a rich user experience that allows users to place their \ncontent\nthrough a drag-n-drop interface; helps users pick dates, colors, and\nmore; and has a highly customizable rich editor to allow users to','home/key-benefits',1147642514,1277737686,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Benefits Benefits home key benefits Rich User Interface Powerful API WebGUI has a rich user experience that allows users to place their content through a drag-n-drop interface helps users pick dates colors and more and has a highly customizable rich editor to allow users to quickly and easily format content WebGUI allows developers to quickly plug-in new functionality to get the most from a site In addition WebGUI\'s standardized plug-in points maintain the upgrade path even with customizations Short Friendly URLs Internationalization Never worry about ugly numeric ID\'s or other things in URL\'s that make it hard for search engines and people to use a site Users can work in an interface in their native language and content can be published in as many languages as necessary Personalization Easy To Install Users see their own view of the site through dynamically generated navigation and content In addition content can be displayed based upon users viewing habits With the use of the WebGUI Runtime Environment Unix Mac OS X Linux BSD and VMWare Appliance Windows setup takes minutes rather than hours ','000001000002000007',NULL),('OhdaFLE7sXOzo_SIP2ZUgA','Welcome','The WebGUI Content Engine® is a powerful, easy to use web application framework and content management system. WebGUI contains dozens of built-in features, and allows for full customization through its rich API. It\'s easy enough for the average busine','home/welcome',1147642513,1271445348,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Welcome Welcome home welcome The WebGUI Content Engine® is a powerful easy to use web application framework and content management system WebGUI contains dozens of built-in features and allows for full customization through its rich API It\'s easy enough for the average business user to use but powerful enough for any large enterprise WebGUI serves thousands of small and large businesses schools universities governments associations churches projects and communities throughout the world For examples of who is using WebGUI visit the WebGUI Sightings page Shouldn\'t your site be on this list If you\'re new to WebGUI visit the Getting Started section Once you feel comfortable explore some of the professional services available for your new WebGUI site No matter what level you\'re at tell your friends about WebGUI ','000001000002000006',NULL),('7-0-style0000000000071','wg.jpg','','style3/wg.jpg',1147642511,1147642511,'3','7','12','WebGUI::Asset::File::Image',1,'wg.jpg wg.jpg style3 wg.jpg','000001000001000051000022',NULL),('7-0-style0000000000068','spacer.gif','','style3/spacer.gif',1147642510,1147642510,'3','7','12','WebGUI::Asset::File::Image',1,'spacer.gif spacer.gif style3 spacer.gif','000001000001000051000019',NULL),('7-0-style0000000000070','Style3 Coolmenu','','style3_coolmenu',1147642510,1147642510,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'Style3 Coolmenu Style3 Coolmenu style3 coolmenu','000001000001000051000021',NULL),('7-0-style0000000000066','nav_bg_on.jpg','','style3/nav_bg_on.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg_on.jpg nav_bg_on.jpg style3 nav bg on.jpg','000001000001000051000017',NULL),('7-0-style0000000000064','nav_bg2.jpg','','style3/nav_bg2.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg2.jpg nav_bg2.jpg style3 nav bg2.jpg','000001000001000051000015',NULL),('7-0-style0000000000065','nav_bg2_on.jpg','','style3/nav_bg2_on.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg2_on.jpg nav_bg2_on.jpg style3 nav bg2 on.jpg','000001000001000051000016',NULL),('7-0-style0000000000067','pb.jpg','','style3/pb.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'pb.jpg pb.jpg style3 pb.jpg','000001000001000051000018',NULL),('7-0-style0000000000063','nav_bg1_on.jpg','','style3/nav_bg1_on.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg1_on.jpg nav_bg1_on.jpg style3 nav bg1 on.jpg','000001000001000051000014',NULL),('7-0-style0000000000060','main_top_bg.jpg','','style3/main_top_bg.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'main_top_bg.jpg main_top_bg.jpg style3 main top bg.jpg','000001000001000051000011',NULL),('7-0-style0000000000062','nav_bg1.jpg','','style3/nav_bg1.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg1.jpg nav_bg1.jpg style3 nav bg1.jpg','000001000001000051000013',NULL),('7-0-style0000000000061','nav_bg.jpg','','style3/nav_bg.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg.jpg nav_bg.jpg style3 nav bg.jpg','000001000001000051000012',NULL),('7-0-style0000000000059','main_top.jpg','','style3/main_top.jpg',1147642507,1213386091,'3','7','12','WebGUI::Asset::File::Image',1,'main_top.jpg main_top.jpg style3 main top.jpg','000001000001000051000010',NULL),('7-0-style0000000000057','main_bg.jpg','','style3/main_bg.jpg',1147642507,1147642507,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg.jpg main_bg.jpg style3 main bg.jpg','000001000001000051000008',NULL),('7-0-style0000000000058','main_bottom.jpg','','style3/main_bottom.jpg',1147642507,1147642507,'3','7','12','WebGUI::Asset::File::Image',1,'main_bottom.jpg main_bottom.jpg style3 main bottom.jpg','000001000001000051000009',NULL),('7-0-style0000000000055','header_left.jpg','','style3/header_left.jpg',1147642506,1147642506,'3','7','12','WebGUI::Asset::File::Image',1,'header_left.jpg header_left.jpg style3 header left.jpg','000001000001000051000006',NULL),('7-0-style0000000000056','header_right.jpg','','style3/header_right.jpg',1147642506,1147642506,'3','7','12','WebGUI::Asset::File::Image',1,'header_right.jpg header_right.jpg style3 header right.jpg','000001000001000051000007',NULL),('7-0-style0000000000054','header_bg.jpg','','style3/header_bg.jpg',1147642506,1147642506,'3','7','12','WebGUI::Asset::File::Image',1,'header_bg.jpg header_bg.jpg style3 header bg.jpg','000001000001000051000005',NULL),('7-0-style0000000000052','footer_bg.jpg','','style3/footer_bg.jpg',1147642505,1147642505,'3','7','12','WebGUI::Asset::File::Image',1,'footer_bg.jpg footer_bg.jpg style3 footer bg.jpg','000001000001000051000003',NULL),('7-0-style0000000000053','footer_right.jpg','','style3/footer_right.jpg',1147642505,1147642505,'3','7','12','WebGUI::Asset::File::Image',1,'footer_right.jpg footer_right.jpg style3 footer right.jpg','000001000001000051000004',NULL),('7-0-style0000000000046','rightCol_bg.jpg','','style2/rightcol_bg.jpg',1147642504,1147642504,'3','7','12','WebGUI::Asset::File::Image',1,'rightCol_bg.jpg rightCol_bg.jpg style2 rightcol bg.jpg','000001000001000050000015',NULL),('7-0-style0000000000049','WebGUI 7 Style 3','','root/import/webgui-7-style-3',1147642504,1224117144,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI 7 Style 3 WebGUI 7 Style 3 root import webgui 7 style 3','000001000001000051',NULL),('7-0-style0000000000048','wg.jpg','','style2/wg.jpg',1147642504,1147642504,'3','7','12','WebGUI::Asset::File::Image',1,'wg.jpg wg.jpg style2 wg.jpg','000001000001000050000017',NULL),('7-0-style0000000000045','pb_wg_bg.jpg','','style2/pb_wg_bg.jpg',1147642503,1147642503,'3','7','12','WebGUI::Asset::File::Image',1,'pb_wg_bg.jpg pb_wg_bg.jpg style2 pb wg bg.jpg','000001000001000050000014',NULL),('7-0-style0000000000044','pb_wg.jpg','','style2/pb_wg.jpg',1147642503,1147642503,'3','7','12','WebGUI::Asset::File::Image',1,'pb_wg.jpg pb_wg.jpg style2 pb wg.jpg','000001000001000050000013',NULL),('7-0-style0000000000043','pb.jpg','','style2/pb.jpg',1147642503,1147642503,'3','7','12','WebGUI::Asset::File::Image',1,'pb.jpg pb.jpg style2 pb.jpg','000001000001000050000012',NULL),('7-0-style0000000000042','page_title_bg.jpg','','style2/page_title_bg.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'page_title_bg.jpg page_title_bg.jpg style2 page title bg.jpg','000001000001000050000011',NULL),('7-0-style0000000000041','page_title.jpg','','style2/page_title.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'page_title.jpg page_title.jpg style2 page title.jpg','000001000001000050000010',NULL),('7-0-style0000000000040','navbar_right.jpg','','style2/navbar_right.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'navbar_right.jpg navbar_right.jpg style2 navbar right.jpg','000001000001000050000009',NULL),('7-0-style0000000000039','navbar_left.jpg','','style2/navbar_left.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'navbar_left.jpg navbar_left.jpg style2 navbar left.jpg','000001000001000050000008',NULL),('7-0-style0000000000036','main_bg.jpg','','style2/main_bg.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg.jpg main_bg.jpg style2 main bg.jpg','000001000001000050000005',NULL),('7-0-style0000000000038','navbar_bg.jpg','','style2/navbar_bg.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'navbar_bg.jpg navbar_bg.jpg style2 navbar bg.jpg','000001000001000050000007',NULL),('7-0-style0000000000035','leftCol_header02.jpg','','style2/leftcol_header02.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'leftCol_header02.jpg leftCol_header02.jpg style2 leftcol header02.jpg','000001000001000050000004',NULL),('7-0-style0000000000037','nav_bg.jpg','','style2/nav_bg.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg.jpg nav_bg.jpg style2 nav bg.jpg','000001000001000050000006',NULL),('7-0-style0000000000032','context_bg.jpg','','style2/context_bg.jpg',1147642500,1147642500,'3','7','12','WebGUI::Asset::File::Image',1,'context_bg.jpg context_bg.jpg style2 context bg.jpg','000001000001000050000001',NULL),('7-0-style0000000000031','WebGUI 7 Style 2','','root/import/webgui-7-style-2',1147642500,1147642500,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI 7 Style 2 WebGUI 7 Style 2 root import webgui 7 style 2','000001000001000050',NULL),('7-0-style0000000000033','css02.css','','style2/css02.css',1147642500,1147642500,'3','7','12','WebGUI::Asset::Snippet',0,'css02.css css02.css style2 css02.css body html height:100 body background:#7c9ab0 url(\'^FileUrl(style2/main_bg.jpg repeat-y right margin:0px rightColumn width:20 height:100 background eeeeee url(\'^FileUrl(style2/rightCol_bg.jpg repeat-y right text-align:center rightColumn pb_wg_bg background url(\'^FileUrl(style2/pb_wg_bg.jpg repeat-x width:100 text-align:left rightColumn pb_wg background url(\'^FileUrl(style2/pb_wg.jpg left no-repeat height:53px leftColumn width:80 background white url(\'^FileUrl(style2/context_bg.jpg repeat-y right leftColumn header width:100 background:#7c9ab0 url(\'^FileUrl(style2/leftCol_header.jpg right no-repeat height:86px position:relative leftColumn header title leftColumn header title_bg color:white font-size:36pt font-weight:bold font-family:arial font-variant:small-caps letter-spacing:12px top:15px left:5px position:absolute z-index:10 leftColumn header title a color:white text-decoration:none leftColumn header title_bg color:black z-index:5 top:17px left:7px leftColumn context background fff url(\'^FileUrl(style2/context_bg.jpg repeat-y right width:95 font-family:verdana font-size:9pt color:#242424 moz-box-sizing:border-box position:relative padding-left:1 padding-right:1 padding-bottom:15px leftColumn context a color:#7C9AB0 font-weight:bold leftColumn context a:hover text-decoration:none leftColumn pageTitleBG background url(\'^FileUrl(style2/page_title_bg.jpg repeat-x width:100 leftColumn pageTitleBG pageTitle background url(\'^FileUrl(style2/page_title.jpg right no-repeat width:100 height:50px leftColumn pageTitleBG pageTitle h2 font-size:14pt color:#696969 font-family:arial font-weight:normal margin:0px padding-top:2px padding-left:25px letter-spacing:3px rightColumn nav width:85 background b5b5b5 url(\'^FileUrl(style2/nav_bg.jpg repeat-x top border-right:solid 848484 1px margin-left:auto margin-right:auto text-align:left padding-left:3px padding-top:7px padding-bottom:7px rightColumn nav a color:white font-size:8pt font-weight:bold text-decoration:none font-family:arial line-height:8pt rightColumn nav selectedMenuItem color:yellow loginStyles font-size:8pt font-family:arial padding-bottom:25px loginStyles a color:#89ACCF font-weight:bold border-bottom:solid transparent 2px text-decoration:none loginStyles a:hover border-bottom:dotted B2C9D9 2px copyright border-top:solid silver 3px background-color:gray font-family:arial font-size:9pt color:silver text-align:center ','000001000001000050000002',NULL),('7-0-style0000000000034','leftCol_header.jpg','','style2/leftcol_header.jpg',1147642500,1147642500,'3','7','12','WebGUI::Asset::File::Image',1,'leftCol_header.jpg leftCol_header.jpg style2 leftcol header.jpg','000001000001000050000003',NULL),('stevenav00000000000001','Style 01 Nav','','style1_nav',1147642499,1147642499,'3','7','12','WebGUI::Asset::Template',0,'Style 01 Nav Style 01 Nav style1 nav Navigation','000001000001000049000027',NULL),('PBnav000000style01lvl2','Style 01 Nav lvl2','','style1_nav_lvl2',1147642499,1147642499,'3','7','12','WebGUI::Asset::Template',0,'Style 01 Nav lvl2 untitled style1 nav lvl2 Navigation','000001000001000049000028',NULL),('7-0-style0000000000030','webgui_btn.jpg','','style1/webgui_btn.jpg',1147642499,1147642499,'3','7','12','WebGUI::Asset::File::Image',1,'webgui_btn.jpg webgui_btn.jpg style1 webgui btn.jpg','000001000001000049000029',NULL),('7-0-style0000000000026','RootTab Level 1','','roottab_level1',1147642499,1147642499,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'RootTab Level 1 RootTab Level 1 roottab level1','000001000001000049000025',NULL),('7-0-style0000000000024','orange_left01.jpg','','style1/orange_left01.jpg',1147642498,1147642498,'3','7','12','WebGUI::Asset::File::Image',1,'orange_left01.jpg orange_left01.jpg style1 orange left01.jpg','000001000001000049000023',NULL),('7-0-style0000000000023','nav_on.jpg','','style1/nav_on.jpg',1147642498,1147642498,'3','7','12','WebGUI::Asset::File::Image',1,'nav_on.jpg nav_on.jpg style1 nav on.jpg','000001000001000049000022',NULL),('7-0-style0000000000025','RootTab Level 0','','roottab_level0',1147642498,1147642498,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'RootTab Level 0 RootTab Level 0 roottab level0','000001000001000049000024',NULL),('7-0-style0000000000019','nav2_off_right.jpg','','style1/nav2_off_right.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_off_right.jpg nav2_off_right.jpg style1 nav2 off right.jpg','000001000001000049000018',NULL),('7-0-style0000000000020','nav2_on_left.jpg','','style1/nav2_on_left.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_on_left.jpg nav2_on_left.jpg style1 nav2 on left.jpg','000001000001000049000019',NULL),('7-0-style0000000000022','nav_bg.jpg','','style1/nav_bg.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg.jpg nav_bg.jpg style1 nav bg.jpg','000001000001000049000021',NULL),('7-0-style0000000000021','nav2_on_right.jpg','','style1/nav2_on_right.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_on_right.jpg nav2_on_right.jpg style1 nav2 on right.jpg','000001000001000049000020',NULL),('7-0-style0000000000017','nav2_off_center.jpg','','style1/nav2_off_center.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_off_center.jpg nav2_off_center.jpg style1 nav2 off center.jpg','000001000001000049000016',NULL),('7-0-style0000000000016','nav2_center_on.jpg','','style1/nav2_center_on.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_center_on.jpg nav2_center_on.jpg style1 nav2 center on.jpg','000001000001000049000015',NULL),('7-0-style0000000000018','nav2_off_left.jpg','','style1/nav2_off_left.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_off_left.jpg nav2_off_left.jpg style1 nav2 off left.jpg','000001000001000049000017',NULL),('7-0-style0000000000015','nav1_on_right.jpg','','style1/nav1_on_right.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_on_right.jpg nav1_on_right.jpg style1 nav1 on right.jpg','000001000001000049000014',NULL),('7-0-style0000000000014','nav1_on_left.jpg','','style1/nav1_on_left.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_on_left.jpg nav1_on_left.jpg style1 nav1 on left.jpg','000001000001000049000013',NULL),('7-0-style0000000000013','nav1_on.jpg','','style1/nav1_on.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_on.jpg nav1_on.jpg style1 nav1 on.jpg','000001000001000049000012',NULL),('7-0-style0000000000011','nav1_off_left.jpg','','style1/nav1_off_left.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off_left.jpg nav1_off_left.jpg style1 nav1 off left.jpg','000001000001000049000010',NULL),('7-0-style0000000000012','nav1_off_right.jpg','','style1/nav1_off_right.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off_right.jpg nav1_off_right.jpg style1 nav1 off right.jpg','000001000001000049000011',NULL),('7-0-style0000000000009','nav1_off.jpg','','style1/nav1_off.jpg',1147642494,1147642494,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off.jpg nav1_off.jpg style1 nav1 off.jpg','000001000001000049000008',NULL),('7-0-style0000000000010','nav1_off_center.jpg','','style1/nav1_off_center.jpg',1147642494,1147642494,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off_center.jpg nav1_off_center.jpg style1 nav1 off center.jpg','000001000001000049000009',NULL),('7-0-style0000000000008','nav1_center_on.jpg','','style1/nav1_center_on.jpg',1147642494,1147642494,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_center_on.jpg nav1_center_on.jpg style1 nav1 center on.jpg','000001000001000049000007',NULL),('7-0-style0000000000006','main_bg.gif','','style1/main_bg.gif',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg.gif main_bg.gif style1 main bg.gif','000001000001000049000005',NULL),('7-0-style0000000000007','main_bg.jpg','','style1/main_bg.jpg',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg.jpg main_bg.jpg style1 main bg.jpg','000001000001000049000006',NULL),('7-0-style0000000000004','gui_bottom.jpg','','style1/gui_bottom.jpg',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'gui_bottom.jpg gui_bottom.jpg style1 gui bottom.jpg','000001000001000049000003',NULL),('7-0-style0000000000005','header.jpg','','style1/header.jpg',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'header.jpg header.jpg style1 header.jpg','000001000001000049000004',NULL),('7-0-style0000000000001','WebGUI 7 Style 1','','root/import/webgui-7-style-1',1147642492,1147642492,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI 7 Style 1 WebGUI 7 Style 1 root import webgui 7 style 1','000001000001000049',NULL),('7-0-style0000000000002','body_bg.jpg','','style1/body_bg.jpg',1147642492,1147642492,'3','7','12','WebGUI::Asset::File::Image',1,'body_bg.jpg body_bg.jpg style1 body bg.jpg','000001000001000049000001',NULL),('7-0-style0000000000003','css01.css','','style1/css01.css',1147642492,1147642492,'3','7','12','WebGUI::Asset::Snippet',0,'css01.css css01.css style1 css01.css body html text-align:center margin:0px height:100 background-color:#494949 main width:800px background url(\'^FileUrl(style1/main_bg.jpg repeat-y height:100 margin-left:auto margin-right:auto margin-top:0px margin-bottom:0px position:relative body > main height:auto min-height:100 main mainHeader width:800px height:133px background url(\'^FileUrl(style1/header.jpg top left no-repeat margin-bottom:0px position:relative main mainHeader title position:absolute top:23px left:145px font-size:32pt font-family:arial color:white font-weight:bold main mainHeader title a color:white text-decoration:none main mainContent background url(\'^FileUrl(style1/orange_left01.jpg left top no-repeat width:100 height:100 margin-top:0px text-align:left border:solid red 0px main > mainContent margin-top:0px min-height:500px main > mainContent > p margin-top:0px main mainContent mainText a:link color:#FF7F23 main mainContent mainText a:visited color:#D25900 LEVEL 1 AND 2 NAVIGATION main mainNav_1 main mainNav_2 border-bottom:dashed DADADA 1px width:621px height:25px text-align:left position:relative margin-left:137px clear:both main mainNav_1 a:link main mainNav_1 a:visited main mainNav_2 a:link main mainNav_2 a:visited color:white text-decoration:none top:5px position:relative moz-box-sizing:border-box main mainNav_1 a:hover,#main mainNav_2 a:hover color:black main mainNav_1 div left main mainNav_2 div left width:12px height:25px display:block float:left background url(\'^FileUrl(style1/nav1_off_left.jpg no-repeat top left main mainNav_2 div left background url(\'^FileUrl(style1/nav2_off_left.jpg no-repeat top left main mainNav_1 div center main mainNav_2 div center height:25px display:block float:left background url(\'^FileUrl(style1/nav1_off_center.jpg repeat-x top left color:white font-family:arial verdana font-size:8pt main mainNav_2 div center background url(\'^FileUrl(style1/nav2_off_center.jpg repeat-x top left main mainNav_1 div right main mainNav_2 div right width:10px height:25px display:block float:left background url(\'^FileUrl(style1/nav1_off_right.jpg no-repeat top left main mainNav_2 div right background url(\'^FileUrl(style1/nav2_off_right.jpg no-repeat top left main mainNav_1 div.navOn left background url(\'^FileUrl(style1/nav1_on_left.jpg no-repeat top left main mainNav_1 div.navOn center background url(\'^FileUrl(style1/nav1_center_on.jpg repeat-x top left main mainNav_1 div.navOn right background url(\'^FileUrl(style1/nav1_on_right.jpg no-repeat top left main mainNav_2 div.navOn left background url(\'^FileUrl(style1/nav2_on_left.jpg no-repeat top left main mainNav_2 div.navOn center background url(\'^FileUrl(style1/nav2_center_on.jpg repeat-x top left main mainNav_2 div.navOn right background url(\'^FileUrl(style1/nav2_on_right.jpg no-repeat top left main mainNav_1 div.navOn a:link main mainNav_1 div.navOn a:visited main mainNav_2 div.navOn a:link main mainNav_2 div.navOn a:visited color:black ENDOF LEVEL 1 AND 2 NAVIGATION main crumbTrail margin-left:177px margin-bottom:0px color:gray font-size:8pt font-weight:bold main crumbTrail a.crumbTrail:visited main crumbTrail a.crumbTrail:link color:silver font-size:8pt font-family:arial text-decoration:none font-weight:normal main crumbTrail a.crumbTrail:hover color:gray main mainText padding-left:150px font-family:verdana font-size:9pt width:600px margin-top:0px main gui bottom:0px left:0px position:absolute width:135px font-size:8pt color:black font-family:arial text-align:right main gui loginBox padding-right:12px moz-box-sizing:border-box width:100px float:right margin-bottom:10px main gui loginBox loginBoxField width:75px main gui loginBox loginBoxButton background-color:#D65501 color:white border:solid white 2px margin-top:4px font-variant:small-caps main gui a color:white copyright color:#fff position:absolute top:110px right:40px font-family:verdana font-size:8pt font-weight:bold background-color:#2D2D2D opacity:0.4 moz-opacity:0.4 khtml-opacity:0.4 padding:2px html copyright background transparent ','000001000001000049000002',NULL),('7F-BuEHi7t9bPi008H8xZQ','Default Survey Summary','','root/import/survey/default-survey-summary',1239248021,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Survey Summary Default Survey Summary root import survey default survey summary Survey/Summary','000001000001000042000012',NULL),('CSN-ZON7Uwv8kxf3F1fh5Q','ZipArchiveAsset','','root/import/ziparchiveasset',1147642484,1147642484,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ZipArchiveAsset ZipArchiveAsset root import ziparchiveasset','000001000001000053',NULL),('TCtybxdqmdwdvRn555zpCQ','RichEdit','','root/import/richedit',1147642484,1147642484,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'RichEdit RichEdit root import richedit','000001000001000032',NULL),('NywJYmGWe1f6EBXJnWg9Xg','Profile','','root/import/profile',1222803606,1222803638,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Profile Profile root import profile','000001000001000029',NULL),('9wKWdum0_8z-OhhquWLtSQ','WeatherData','','root/import/weatherdata',1147642483,1147642483,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WeatherData WeatherData root import weatherdata','000001000001000048',NULL),('AgyFhx3eXlfZXNp2MkrsiQ','Edit','','root/import/profile/edit',1147642477,1222803665,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Edit Edit root import profile edit','000001000001000029000001',NULL),('F7MAQ-cpuvQ1KuC7J4P5zQ','View','','root/import/profile/view',1147642477,1222803673,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'View View root import profile view','000001000001000029000002',NULL),('oGfxez5sksyB_PcaAsEm_Q','SyndicatedContent','','root/import/syndicatedcontent',1147642482,1247053097,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'SyndicatedContent SyndicatedContent root import syndicatedcontent','000001000001000043',NULL),('5bnNzteN7w3NnK9mF4XiCg','Survey','','root/import/survey',1147642481,1250243000,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Survey Survey root import survey','000001000001000042',NULL),('Efe2W0UgrSRDltNJ87jlfg','StockData','','root/import/stockdata',1147642480,1147642480,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'StockData StockData root import stockdata','000001000001000039',NULL),('bbiA9Zq5Gy2oCFBlILO3QA','SQLReport','','root/import/sqlreport',1147642480,1147642480,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'SQLReport SQLReport root import sqlreport','000001000001000038',NULL),('RrV4aAPnn4dM0ZcU3OXnlw','style','','root/import/style',1147642480,1286336607,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'style style root import style','000001000001000041',NULL),('Ik9HHky10DIyFTKehUD1dw','Prompt','','root/import/prompt',1147642479,1222803478,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Prompt Prompt root import prompt','000001000001000031',NULL),('f_tn9FfoSfKWX43F83v_3w','Search','','root/import/search',1147642479,1247053009,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Search Search root import search','000001000001000034',NULL),('Da6KWn805L4B5e4HFgQRQA','Shortcut','','root/import/shortcut',1147642479,1147642479,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Shortcut Shortcut root import shortcut','000001000001000037',NULL),('TYo2Bwl7aafzTtdHlS-arQ','Product','','root/import/product',1147642478,1211664878,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Product Product root import product','000001000001000028',NULL),('VZK3CRgiMb8r4dBjUmCTgQ','Poll','','root/import/poll',1147642477,1247046242,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Poll Poll root import poll','000001000001000027',NULL),('jEz8iTGNWEt2I05IhVV19Q','Operation/RedeemSubscription','','root/import/operation/redeemsubscription',1147642477,1326776037,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Operation/RedeemSubscription Operation/RedeemSubscription root import operation redeemsubscription','000001000001000036000016',NULL),('BFfNj5wA9bDw8H3cnr8pTw','Navigation','','root/import/navigation',1147642475,1247046273,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Navigation Navigation root import navigation','000001000001000025',NULL),('bBzO4CWjqU_ile3gf5Iypw','MultiSearch','','root/import/multisearch',1147642475,1147642475,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'MultiSearch MultiSearch root import multisearch','000001000001000024',NULL),('cj2y4papTVGZRFdwTI-_fw','MessageBoard','','root/import/messageboard',1147642475,1147642475,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'MessageBoard MessageBoard root import messageboard','000001000001000023',NULL),('3womoo7Teyy2YKFa25-MZg','Address Book (Default)','','shopping-cart-collateral-items/address-book-default',1212098997,1326776037,'3','7','3','WebGUI::Asset::Template',0,'Address Book Default Address Book Default shopping cart collateral items address book default Shop/AddressBook','000001000001000036000013',NULL),('g8W53Pd71uHB9pxaXhWf_A','My Purchases Detail (Default)','','shopping-cart-collateral-items/my-purchases-detail-default',1213184121,1326776037,'3','7','3','WebGUI::Asset::Template',0,'My Purchases Detail Default My Purchases Detail Default shopping cart collateral items my purchases detail default Shop/MyPurchasesDetail','000001000001000036000015',NULL),('-WM2dt0ZGpDasuL2wWocxg','ProjectManager','','root/import/projectmanager',1222803056,1222803056,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ProjectManager ProjectManager root import projectmanager','000001000001000030',NULL),('LdiozcIUciWuvt3Z-na5Ww','Matrix','','root/import/matrix',1147642474,1281501162,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Matrix Matrix root import matrix','000001000001000022',NULL),('default_post_received1','Default Post Received','','default_post_received',1222708029,1277868922,'3','7','4','WebGUI::Asset::Template',0,'Default Post Received Default Post Received default post received Collaboration/PostReceived','000001000001000008000029',NULL),('aNNC62qLAS6TB-0_MCYjsw','Layout','','root/import/layout',1147642471,1246969327,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Layout Layout root import layout','000001000001000019',NULL),('GYaFxnMu9UsEG8oanwB6TA','Folder','','root/import/folder',1147642470,1246965871,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Folder Folder root import folder','000001000001000014',NULL),('N13SD1Fpqk00UgBt1Z8ivQ','HttpProxy','','root/import/httpproxy',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'HttpProxy HttpProxy root import httpproxy','000001000001000016',NULL),('tPagC0AQErZXjLFZQ6OI1g','ImageAsset','','root/import/imageasset',1147642470,1246966459,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ImageAsset ImageAsset root import imageasset','000001000001000017',NULL),('3uuBf8cYuj1sew2OJXl9tg','InOutBoard','','root/import/inoutboard',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'InOutBoard InOutBoard root import inoutboard','000001000001000018',NULL),('PBtmpl0000000000000005','Default LDAP Anonymous Registration Template','','default_ldap_anonymous_registration_template',1124395696,1287545014,'3','7','12','WebGUI::Asset::Template',0,'Default LDAP Anonymous Registration Template Default LDAP Anonymous Registration Template default ldap anonymous registration template Auth/LDAP/Create','000001000001000005000002000001',NULL),('PBtmpl0000000000000011','Default WebGUI Anonymous Registration Template','','default_webgui_anonymous_registration_template',1124395696,1287545014,'3','7','12','WebGUI::Asset::Template',0,'Default WebGUI Anonymous Registration Template Default WebGUI Anonymous Registration Template default webgui anonymous registration template Auth/WebGUI/Create','000001000001000005000005000001',NULL),('tXwf1zaOXTvsqPn6yu-GSw','FileAsset','','root/import/fileasset',1147642469,1246965607,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'FileAsset FileAsset root import fileasset','000001000001000013',NULL),('S1A9iAwKcQQ6P20uTqw-Ew','Dashboard','','root/import/dashboard',1147642468,1300763664,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Dashboard Dashboard root import dashboard','000001000001000009',NULL),('-K8Hj45mbelljN9-0CXZxg','DataForm',' ','root/import/dataform',1147642468,1257311887,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'DataForm DataForm root import dataform','000001000001000010',NULL),('GNOAsX98vCsl0JRwfwL-gg','Collaboration','','root/import/collaboration',1147642466,1277868921,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Collaboration Collaboration root import collaboration','000001000001000008',NULL),('pbtmpl0000000000000220','Flash Style 3 Template','','flash-style-3-template',1147642465,1247488979,'3','7','12','WebGUI::Asset::Template',0,'Flash Style 3 Template Flash Style 3 Template flash style 3 template FileAsset','000001000001000013000002',NULL),('pbtmpl0000000000000221','Flash Tutorial Template','','flash-tutorial-template',1147642465,1247487940,'3','7','12','WebGUI::Asset::Template',0,'Flash Tutorial Template Flash Tutorial Template flash tutorial template FileAsset','000001000001000013000003',NULL),('nbSrhXZQuxIjhWFaFPSuVA','AdminConsole','','root/import/adminconsole',1147642465,1147642465,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'AdminConsole AdminConsole root import adminconsole','000001000001000003',NULL),('TvOZs8U1kRXLtwtmyW75pg','Article','','root/import/article',1147642465,1256092368,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Article Article root import article','000001000001000004',NULL),('PBtmpl0000000000000027','Default Forum Notification','','default_forum_notification',1124395696,1311652541,'3','7','12','WebGUI::Asset::Template',0,'Default Forum Notification Default Forum Notification default forum notification Collaboration/Notification','000001000001000008000015',NULL),('-PkdI8l1idu-8gDX3iOdcw','One Over Two','','one_over_two',1247482172,1259133274,'3','7','12','WebGUI::Asset::Template',0,'One Over Two One Over Two one over two Layout','000001000001000019000007',NULL),('FEDP3dk8J3Chw_gyr7_XEQ','navigation.css','','navigation.css',1246278679,1246278679,'3','7','12','WebGUI::Asset::Snippet',0,'navigation.css navigation.css navigation.css Horizontal Menu styles horizontalMenu ul.menu padding 0 margin 0 0 1em list-style none width 100 clear floated li elements overflow auto clear floated li elements horizontalMenu ul.menu li float left horizontalMenu ul.menu li a float left padding 4px 8px margin-right 1px background ddd color 000 text-decoration none horizontalMenu ul.menu li.current a background:#eee horizontalMenu ul.menu li a:hover background:#fff Tabs tabbed navigation styles tabsMenu ul.menu margin 0 0 1em tabsMenu ul.menu li display inline tabsMenu ul.menu li a border 1px solid 999 border-bottom 0 padding 5px 10px 2px color 777 text-decoration:none tabsMenu ul.menu li.current a tabsMenu ul.menu li a:hover border 1px solid 000 border-bottom 0 color 000 Indent Nav styles indentMenu a.level0 margin-left:0px display:block indentMenu a.level1 margin-left:15px display:block indentMenu a.level2 margin-left:30px display:block indentMenu a.level3 margin-left:45px display:block indentMenu a.level4 margin-left:60px display:block ','000001000001000025000028',NULL),('PBnav00000000indentnav','Indent Nav','','indent_nav',1148579525,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Indent Nav Indent Nav indent nav Navigation','000001000001000025000027',NULL),('PBtmpl0000000000000085','Default Email','','default_email',1124395696,1288747840,'3','7','12','WebGUI::Asset::Template',0,'Default Email Default Email default email DataForm','000001000001000010000002',NULL),('PBnav00000000000bullet','Bulleted List','','bulleted_list',1148579524,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Bulleted List Bulleted List bulleted list Navigation','000001000001000025000026',NULL),('StockDataTMPL000000002','StockData Default Display','','stockdatatmpl000000002',1133743239,1229494994,'3','7','12','WebGUI::Asset::Template',0,'StockData Default Display StockData Default Display stockdatatmpl000000002 StockData/Display','000001000001000039000001',NULL),('2OcUWHVsu_L1sDFzIMWYqw','TimeTracking','','root/import/timetracking',1222803070,1222803070,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'TimeTracking TimeTracking root import timetracking','000001000001000046',NULL),('PBtmpl0000000000000014','Default WebGUI Password Recovery Template','','default_webgui_password_recovery_template',1124395696,1287545015,'3','7','12','WebGUI::Asset::Template',0,'Default WebGUI Password Recovery Template Default WebGUI Password Recovery Template default webgui password recovery template Auth/WebGUI/Recovery2','000001000001000005000008000001',NULL),('ProjectManagerTMPL0006','Default Resource List','','default-pm-resource-list',1157679165,1157679165,'3','7','12','WebGUI::Asset::Template',0,'Default Resource List Default Resource List default pm resource list ProjectManager_resourceList','000001000001000030000005000001',NULL),('ProjectManagerTMPL0005','Default Resource Popup','','default-pm-resource-popup',1157679165,1229579830,'3','7','12','WebGUI::Asset::Template',0,'Default Resource Popup Default Resource Popup default pm resource popup ProjectManager_resourcePopup','000001000001000030000005000002',NULL),('PBtmpl0000000000000032','Default Thread','','default_thread',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default Thread Default Thread default thread Collaboration/Thread','000001000001000008000014',NULL),('WeatherDataTmpl0000001','WeatherData Default View','','weatherdatatmpl0000001',1133743239,1210711353,'3','7','12','WebGUI::Asset::Template',0,'WeatherData Default View WeatherData Default View weatherdatatmpl0000001 WeatherData','000001000001000048000001',NULL),('PBasset000000000000001','Root','','root',1124395696,1124395696,'3','7','3','WebGUI::Asset',0,'Root Root root','000001',NULL),('PBrichedit000000000001','Content Manager\'s Rich Edit','','content_managers_rich_edit',1124395696,1256092369,'3','7','12','WebGUI::Asset::RichEdit',0,'Content Manager\'s Rich Edit Content Manager\'s Rich Edit content managers rich edit','000001000001000032000001',NULL),('PBrichedit000000000002','Forum Rich Edit','','forum_rich_edit',1124395696,1124395696,'3','7','12','WebGUI::Asset::RichEdit',0,'Forum Rich Edit Forum Rich Edit forum rich edit','000001000001000032000002',NULL),('SynConXSLT000000000001','RSS 0.9 XSLT Stylesheet','','xslt/rss0.9.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',0,'RSS 0.9 XSLT Stylesheet RSS 0.9 XSLT xslt rss0.9.xsl You\'re viewing an RSS version 0.9 feed Please use an RSS feed reader to view this content as intended','000001000001000043000003',NULL),('SynConXSLT000000000002','RSS 0.91 XSLT Stylesheet','','xslt/rss0.91.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',0,'RSS 0.91 XSLT Stylesheet RSS 0.91 XSLT xslt rss0.91.xsl You\'re viewing an RSS version 0.91 feed Please use an RSS feed reader to view this content as intended','000001000001000043000004',NULL),('SynConXSLT000000000003','RSS 1.0 XSLT Stylesheet','','xslt/rss1.0.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',0,'RSS 1.0 XSLT Stylesheet RSS 1.0 XSLT xslt rss1.0.xsl You\'re viewing an RSS version 1.0 feed Please use an RSS feed reader to view this content as intended ','000001000001000043000005',NULL),('SynConXSLT000000000004','RSS 2.0 XSLT Stylesheet','','xslt/rss2.0.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',0,'RSS 2.0 XSLT Stylesheet RSS 2.0 XSLT xslt rss2.0.xsl You\'re viewing an RSS version 2.0 feed Please use an RSS feed reader to view this content as intended ','000001000001000043000006',NULL),('vrKXEtluIhbmAS9xmPukDA','Donation (Default)','','root/import/default-donation-template',1212092352,1326776037,'3','7','12','WebGUI::Asset::Template',0,'Donation Default Donation Default root import default donation template Donation','000001000001000036000010',NULL),('eqb9sWjFEVq0yHunGV8IGw','Subscription (Default)','','root/import/subscription-default',1213182595,1326776037,'3','7','12','WebGUI::Asset::Template',0,'Subscription Default Subscription Default root import subscription default Subscription','000001000001000036000012',NULL),('PBtmpl0000000000000036','Default Admin Toggle Macro','','default_admin_toggle_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default Admin Toggle Macro Default Admin Toggle Macro default admin toggle macro Macro/AdminToggle','000001000001000021000001000001',NULL),('PBtmpl0000000000000037','Default Account Macro','','default_account_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default Account Macro Default Account Macro default account macro Macro/a_account','000001000001000021000002000001',NULL),('PBtmpl0000000000000038','Default Editable Toggle Macro','','default_editable_toggle_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default Editable Toggle Macro Default Editable Toggle Macro default editable toggle macro Macro/EditableToggle','000001000001000021000003000001',NULL),('PBtmpl0000000000000040','Default Group Add Macro','','default_group_add_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default Group Add Macro Default Group Add Macro default group add macro Macro/GroupAdd','000001000001000021000005000001',NULL),('PBtmpl0000000000000041','Default Group Delete Macro','','default_group_delete_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default Group Delete Macro Default Group Delete Macro default group delete macro Macro/GroupDelete','000001000001000021000006000001',NULL),('PBtmpl0000000000000042','Default Homelink','','default_homelink',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default Homelink Default Homelink default homelink Macro/H_homeLink','000001000001000021000007000001',NULL),('PBtmpl0000000000000043','Default LoginToggle','','default_logintoggle',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default LoginToggle Default LoginToggle default logintoggle Macro/LoginToggle','000001000001000021000008000001',NULL),('PBtmpl0000000000000045','Default Make Printable','','default_make_printable',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default Make Printable Default Make Printable default make printable Macro/r_printable','000001000001000021000011000001',NULL),('PBtmpl0000000000000091','File no icon','','file_no_icon',1124395696,1129049189,'3','7','12','WebGUI::Asset::Template',0,'File no icon File no icon file no icon Macro/File','000001000001000021000004000002',NULL),('MK4fCNoyrx5SE8eyDfOpxg','Flash File','','flash-file',1247489252,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Flash File Flash File flash file FileAsset','000001000001000013000004',NULL),('PBtmpl0000000000000132','Empty','','empty',1124395696,1258524916,'3','7','12','WebGUI::Asset::Template',0,'Empty Empty empty style','000001000001000041000004',NULL),('PBtmpl0000000000000140','Default Shortcut','','pbtmpl0000000000000140',1124395696,1129573244,'3','7','12','WebGUI::Asset::Template',0,'Default Shortcut Default Shortcut pbtmpl0000000000000140 Shortcut','000001000001000037000001',NULL),('hkj6WeChxFyqfP85UlRP8w','matrix.css','','new-matrix/matrix.css',1232664229,1281501163,'3','7','12','WebGUI::Asset::Snippet',0,'matrix.css matrix.css new matrix matrix.css wg-clear display inline clear both font-size:0px line-height:0px COLUMN STYLES matrixLeft float:left width:65 padding:1 min-height:1 background-color:#d2d2d2 moz-border-radius:4px webkit-border-radius 4px matrixRight float:left width:25 padding:0px min-height:1 moz-border-radius:4px webkit-border-radius 4px border solid silver 1px background-color:white margin-left:5px DROPSHADOW BUTTONS matrixLeft buttons span background-color:#888 position:relative padding:5px 0px 0px 0px moz-border-radius:4px webkit-border-radius 4px matrixLeft buttons button matrixLeft buttons a#return border:solid 2f495e 2px position:relative background-color:#e1e1e1 padding:auto 3px margin:0px font-size:11px line-height:13px position:relative top:-6px left:-2px height:22px cursor:pointer moz-border-radius:4px webkit-border-radius 4px font-weight:bold text-decoration:none color:#333 matrixLeft buttons a#return font-size:10px padding:3px 10px 2px 10px matrixLeft buttons button:hover matrixLeft buttons a#return:hover border-color:black color:white background-color:#444 WHITE AREA FOR THE LISTING OF OBJECTS TO COMPARE matrixLeft matrixListing background-color:white height:300px min-height:300px moz-border-radius:4px webkit-border-radius 4px margin:10px 2px 20px 2px padding:auto 10px matrixLeft matrixListing table border-collapse:collapse margin:0px padding:0px display:block matrixLeft matrixListing table a:link font-size:12px color:#111 matrixLeft matrixListing table a:visited color:#333 font-size:12px text-decoration:none matrixLeft matrixListing table a:hover text-decoration:none GRAY BAR THAT HOLDS THE SORT BUTTONS matrixLeft matrixListing sortButtons background-color:#f1f1f1 border:solid silver 1px moz-border-radius-topLeft:4px moz-border-radius-topRight:4px webkit-border-radius-topLeft 4px webkit-border-radius-topRight 4px border-bottom:solid D2D2D2 2px display:block STYLES TO OVERRIDE THE SORT BUTTON CSS BUILT INTO THE PERL CODE sortByViews-button sortByCompares-button sortByUpdated-button sortByClicks-button sortByName-button background none white-space:nowrap border-style:none cursor:pointer padding-bottom:4px border-style:none background-color:transparent border-right:solid silver 1px color:#555 sortByViews-button:hover sortByCompares-button:hover sortByUpdated-button:hover sortByClicks-button:hover sortByName-button:hover color:black MATRIX STATISTICS matrixRight mainTitle font-size:20px padding:5px 10px border-bottom solid gray 1px background-color:#d2d2d2 matrixRight textBox border-top:solid silver 1px padding:10px 5px matrixStatistics padding:10px matrixStatistics title font-weight:bold background-color:#f1f1f1 padding:2px 5px font-size:11px moz-border-radius:4px border:solid d2d2d2 1px matrixStatistics statistics margin-bottom:15px matrixStatistics label text-align:right width:100px font-size:10px matrixStatistics data font-size:10px matrixStatistics data a color:#111 matrixStatistics data a:hover text-decoration:none LINKS TO CONTROL ADMIN FUNCTIONS adminLinks background-color:#f1f1f1 adminLinks a:link adminLinks a:visited display:block text-align:center text-decoration:none color:#555 font-weight:normal font-size:10px padding:2px 5px border-top:solid silver 1px adminLinks a:hover color:black adminLinks a.newLink:link adminLinks a.newLink:visited background-color:#3498d1 color:white display:block adminLinks a.newLink:hover background-color:#39a6e5 STYLE FOR THE DETAILED LISTING matrixDetail min-width:1000px matrixDetail editBtns font-size:9px line-height:11px vertical-align:middle font-weight:normal margin-left:10px matrixDetail editBtns a color:black text-decoration:underline matrixDetail editBtns a:hover text-decoration:none matrixDetail stats screenshot float:left margin-right:20px matrixDetail commentsMail strong.title margin-bottom:0px margin-top:20px display:block background-color:#d2d2d2 padding:2px 10px border:solid 1px gray border-bottom-color:silver moz-border-radius-topLeft:4px moz-border-radius-topRight:4px matrixDetail assetAspectComments margin:0px 0px 20px 0px border:solid gray 1px background-color:#f1f1f1 moz-border-radius-bottomLeft:4px moz-border-radius-bottomRight:4px matrixDetail assetAspectComments assetAspectComment border-top:solid silver 1px border-bottom:solid gray 1px padding:3px background-color:#f5f5f5 matrixDetail assetAspectComments assetAspectCommentForm border-top:solid d2d2d2 5px padding:20px matrixDetail stats ul matrixDetail stats ul li list-style-type:none margin:0px padding:0px matrixDetail stats ul li display:block line-height:20px margin:4px 0px matrixDetail stats ul li strong display:block float:left width:130px text-align:right background-color:#f1f1f1 padding-right:5px margin-right:5px moz-border-radius:4px webkit-border-radius:3px font-size:11px border:solid d2d2d2 1px showLink background-color:#e1e1e1 border:2px solid 2F495E moz-border-radius:4px webkit-border-radius:4px padding:3px 10px text-decoration:none color:black showLink:hover hideLink:hover background-color:#555 color:white hideLink background-color:#f1f1f1 border:2px solid 2F495E border-bottom-style:none moz-border-radius-topLeft:4px moz-border-radius-topRight:4px webkit-border-radius-topLeft:4px webkit-border-radius-topRight:4px padding:3px 10px text-decoration:none color:black matrixMail background-color:#f1f1f1 padding:15px border:2px solid 2F495E moz-border-radius:4px moz-border-radius-topLeft:0px webkit-border-radius:4px webkit-border-radius-topLeft:0px margin-top:1px matrixMail tableData padding:5px margin:0px matrixMail input padding:0px margin:0px matrixMail formDescription text-align:right vertical-align:middle padding-right:10px font-weight:bold matrixMail form img margin-top:-18px matrixMail verify_formId height:45px line-height:45px font-size:35px padding:0px margin:0px margin-right:20px matrixRatings width:264px position:relative left:-2px top:12px matrixRatings table margin-left:0px matrixRatings td overflow:hidden matrixRatings formDescription text-align:right background-color:#97BCD1 border:solid 4D606B 1px padding:2px 5px font-weight:bold font-size:10x moz-border-radius:4px webkit-border-radius:4px color:#333 matrixRatings formDescription a:before text-decoration:none matrixRatings formDescription a display:block color:red text-decoration:none matrixRatings formDescription a:hover text-decoration:underline matrixAttributes float:left width:40 min-width:20 max-width:45 margin-right:20px rightDetails float:left width:20 min-width:20 max-width:45 attributes border:solid d2d2d2 1px background-color:#f1f1f1 margin-top:10px moz-border-radius:4px webkit-border-radius:4px padding:10px attributes table border-collapse:collapse padding:0px margin:0px attributes table td padding:2px margin:0px yui-dt0-col-value font-weight:bold font-size:14px padding:3px white-space:no-wrap COMPARISON STYLES compareList table border-collapse:collapse border:solid silver 1px margin-top:5px compareList table th a color:black padding:1px 5px compareList table td background-color:#f1f1f1 border-top:solid gray 1px border-bottom:solid silver 1px compareList yui-dt-liner color:#39A6E5 compareList yui-dt-col-name yui-dt-liner font-style:italic font-size:10px color:#555 compareList yui-dt-col-name yui-dt-liner b font-size:15px font-style:normal padding-right:25px color:black ','000001000001000022000006',NULL),('ZipArchiveTMPL00000001','Default Zip Archive Template','','zip-archive-template',1133743240,1169738426,'3','7','12','WebGUI::Asset::Template',0,'Default Zip Archive Template Default Zip Archive Template zip archive template ZipArchiveAsset','000001000001000053000001',NULL),('PBasset000000000000002','Import Node','','root/import',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Import Node Import root import','000001000001',NULL),('_iHetEvMQUOoxS-T2CM0sQ','Getting Started','','getting_started',1124395696,1273172789,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Getting Started Getting Started getting started','000001000002000001',NULL),('x3OFY6OJh_qsXkZfPwug4A','Site Map','','site_map',1124395696,1271348790,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Site Map Site Map site map','000001000002000005',NULL),('PBnav00000000000000001','crumbTrail','','crumbtrail',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'crumbTrail crumbTrail crumbtrail','000001000001000025000008',NULL),('PBnav00000000000000002','SpecificSubMenuVertical','','specificsubmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'SpecificSubMenuVertical SpecificSubMenuVertical specificsubmenuvertical','000001000001000025000017',NULL),('PBnav00000000000000006','SpecificSubMenuHorizontal','','specificsubmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'SpecificSubMenuHorizontal SpecificSubMenuHorizontal specificsubmenuhorizontal','000001000001000025000018',NULL),('PBnav00000000000000007','TopLevelMenuVertical','','toplevelmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'TopLevelMenuVertical TopLevelMenuVertical toplevelmenuvertical','000001000001000025000019',NULL),('PBnav00000000000000008','TopLevelMenuHorizontal','','toplevelmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'TopLevelMenuHorizontal TopLevelMenuHorizontal toplevelmenuhorizontal','000001000001000025000020',NULL),('PBnav00000000000000009','RootTab','','roottab',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'RootTab RootTab roottab','000001000001000025000021',NULL),('PBnav00000000000000010','TopDropMenu','','topdropmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'TopDropMenu TopDropMenu topdropmenu','000001000001000025000022',NULL),('PBnav00000000000000011','dtree','','dtree',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'dtree dtree dtree','000001000001000025000023',NULL),('PBnav00000000000000012','coolmenu','','coolmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'coolmenu coolmenu coolmenu','000001000001000025000024',NULL),('PBnav00000000000000013','Synopsis','','synopsis',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'Synopsis Synopsis synopsis','000001000001000025000025',NULL),('PBnav00000000000000014','FlexMenu','','flexmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'FlexMenu FlexMenu flexmenu','000001000001000025000009',NULL),('PBnav00000000000000015','currentMenuVertical','','currentmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'currentMenuVertical currentMenuVertical currentmenuvertical','000001000001000025000010',NULL),('PBnav00000000000000016','currentMenuHorizontal','','currentmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'currentMenuHorizontal currentMenuHorizontal currentmenuhorizontal','000001000001000025000011',NULL),('PBnav00000000000000017','PreviousDropMenu','','previousdropmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'PreviousDropMenu PreviousDropMenu previousdropmenu','000001000001000025000012',NULL),('PBnav00000000000000018','previousMenuVertical','','previousmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'previousMenuVertical previousMenuVertical previousmenuvertical','000001000001000025000013',NULL),('PBnav00000000000000019','previousMenuHorizontal','','previousmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'previousMenuHorizontal previousMenuHorizontal previousmenuhorizontal','000001000001000025000014',NULL),('PBnav00000000000000020','rootmenu','','rootmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'rootmenu rootmenu rootmenu','000001000001000025000015',NULL),('PBnav00000000000000021','SpecificDropMenu','','specificdropmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'SpecificDropMenu SpecificDropMenu specificdropmenu','000001000001000025000016',NULL),('pJd5TLAjfWMVXD6sCRLwUg','Site Map','','site_map/site_map',1124395696,1271348790,'3','7','3','WebGUI::Asset::Wobject::Navigation',1,'Site Map Site Map site map site map','000001000002000005000001',NULL),('fK-HMSboA3uu0c1KYkYspA','The Latest News','This is the latest news from Plain Black and WebGUI pulled directly from the site every hour.','the_latest_news/the_latest_news',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::SyndicatedContent',1,'The Latest News The Latest News the latest news the latest news This is the latest news from Plain Black and WebGUI pulled directly from the site every hour','000001000002000004000001',NULL),('WikiFrontTmpl000000001','Default Wiki Front Page','','default-wiki-front-page',1165460175,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Default Wiki Front Page Default Wiki Front Page default wiki front page WikiMaster_front','000001000001000052000002',NULL),('WikiSearchTmpl00000001','Default Wiki Search','','default-wiki-search',1165460175,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Default Wiki Search Default Wiki Search default wiki search WikiMaster_search','000001000001000052000003',NULL),('WikiPHTmpl000000000001','Default Page History','','default-wiki-page-history',1165460175,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Default Page History Default Page History default wiki page history WikiPage_pageHistory','000001000001000052000004',NULL),('WikiPageTmpl0000000001','Default Wiki Page','','default-wiki-page',1165460175,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Default Wiki Page Default Wiki Page default wiki page WikiPage','000001000001000052000005',NULL),('WikiPageEditTmpl000001','Default Wiki Page Edit','','default-wiki-page-edit',1165460175,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Default Wiki Page Edit Default Wiki Page Edit default wiki page edit WikiPage_edit','000001000001000052000006',NULL),('WikiMPTmpl000000000001','Default Most Popular','','default-wiki-most-popular',1165460175,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Default Most Popular Default Most Popular default wiki most popular WikiMaster_mostPopular','000001000001000052000007',NULL),('SQLReportDownload00001','SQLReport Download Default Template','','SQLReportDownload0001',1171466654,1171466654,'3','7','12','WebGUI::Asset::Template',0,'SQLReport Download Default Template untitled SQLReportDownload0001 SQLReport/Download','000001000001000038000002',NULL),('newsletter000000000001',' Summary Newsletter (default)','','newsletterdefaulttemplate',1185754569,1185754569,'3','7','3','WebGUI::Asset::Template',0,'Summary Newsletter default Summary Newsletter newsletterdefaulttemplate newsletter','000001000001000026000001',NULL),('newslettersubscrip0001','My Subscriptions (default)','','newslettermysubscriptionstemplate',1185754569,1221692339,'3','7','3','WebGUI::Asset::Template',0,'My Subscriptions default My Subscriptions newslettermysubscriptionstemplate newsletter/mysubscriptions','000001000001000026000003',NULL),('AjhlNO3wZvN5k4i4qioWcg','Default Answer Edit','','root/import/survey/default-answer-edit',1226009658,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Answer Edit Default Answer Edit root import survey default answer edit Survey/Edit','000001000001000042000009',NULL),('QHn6T9rU7KsnS3Y70KCNTg','Account','','root/import/account',1227080251,1233173545,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Account Account root import account','000001000001000002',NULL),('HPDOcsj4gBme8D4svHodBw','Profile','','root/import/account/profile',1225404573,1225404573,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Profile Profile root import account profile','000001000001000002000001',NULL),('WikiKeyword00000000001',' Wiki Pages By Keyword (default)','','wiki-master-by-keyword-template.tmpl',1185754571,1274238756,'3','7','3','WebGUI::Asset::Template',0,'Wiki Pages By Keyword default Wiki Pages By Keyword wiki master by keyword template.tmpl WikiMaster_byKeyword','000001000001000052000008',NULL),('tempspace0000000000000','Tempspace','','tempspace',1185754574,1185754574,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Tempspace Tempspace tempspace','000001000004',NULL),('QpmlAiYZz6VsKBM-_0wXaw','UsersOnline Macro',' ','users-online-macro-templates',1224616691,1224616691,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'UsersOnline Macro UsersOnline Macro users online macro templates','000001000001000021000012',NULL),('h_T2xtOxGRQ9QJOR6ebLpQ','UsersOnline Default View','','users-online-macro-templates/usersonline-default-view',1224616545,1224616545,'3','7','3','WebGUI::Asset::Template',0,'UsersOnline Default View UsersOnline Default View users online macro templates usersonline default view Macro/UsersOnline','000001000001000021000012000001',NULL),('4Ekp0kJoJllRRRo_J1Rj6w','UsersOnline Detailed View','','users-online-macro-templates/usersonline-detailed-view',1224616672,1224616672,'3','7','3','WebGUI::Asset::Template',0,'UsersOnline Detailed View UsersOnline Detailed View users online macro templates usersonline detailed view Macro/UsersOnline','000001000001000021000012000002',NULL),('THQhn1C-ooj-TLlEP7aIJQ','gallery-ie.css','','root/import/gallery-templates/gallery-ie.css',1225313951,1285124158,'3','7','3','WebGUI::Asset::Snippet',0,'gallery-ie.css gallery-ie.css root import gallery templates gallery ie.css wgPicture float:left wgAlbum float:left wgGallery pagination li wgGallery pagination a float:left wgGallery container display:inline-block ','000001000001000015000025',NULL),('itransact_credentials1','ITransact Credentials (Default)','','shopping-cart-collateral-items/itransact-credentials',1228953856,1326776037,'3','7','4','WebGUI::Asset::Template',0,'ITransact Credentials Default ITransact Credentials Default shopping cart collateral items itransact credentials Shop/Credentials','000001000001000036000018',NULL),('1oBRscNIcFOI-pETrCOspA','Default Section Edit','','root/import/survey/default-section-edit',1226009642,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Section Edit Default Section Edit root import survey default section edit Survey/Edit','000001000001000042000007',NULL),('gI_TxK-5S4DNuv42wpImmw','Gallery Templates',' ','root/import/gallery-templates',1197330678,1285124155,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Gallery Templates Gallery Templates root import gallery templates','000001000001000015',NULL),('jME5BEDYVDlBZ8jIQA9-jQ','Default Gallery Search','','root/import/gallery-templates/default-gallery-search',1197927169,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Search Default Gallery Search root import gallery templates default gallery search Gallery/Search','000001000001000015000001',NULL),('azCqD0IjdQSlM3ar29k5Sg','Default Gallery List Albums View','','root/import/gallery-templates/default-gallery-list-albums-view',1197881748,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery List Albums View Default Gallery List Albums View root import gallery templates default gallery list albums view Gallery/ListAlbums','000001000001000015000002',NULL),('05FpjceLYhq4csF1Kww1KQ','Default Gallery View Album','','root/import/gallery-templates/default-gallery-view-album',1197879361,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery View Album Default Gallery View Album root import gallery templates default gallery view album GalleryAlbum/View','000001000001000015000003',NULL),('KAMdiUdJykjN02CPHpyZOw','Default Gallery View Album Slideshow','','root/import/gallery-templates/default-gallery-view-album-slideshow',1197825787,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery View Album Slideshow Default Gallery View Album Slideshow root import gallery templates default gallery view album slideshow GalleryAlbum/ViewSlideshow','000001000001000015000005',NULL),('OkphOEdaSGTXnFGhK4GT5A','Default Gallery List Files For User','','root/import/gallery-templates/default-gallery-list-files-for-user',1197825794,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery List Files For User Default Gallery List Files For User root import gallery templates default gallery list files for user Gallery/ListFilesForUser','000001000001000015000006',NULL),('TEId5V-jEvUULsZA0wuRuA','Default Gallery View Photo','','root/import/gallery-templates/default-gallery-view-photo',1197989443,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery View Photo Default Gallery View Photo root import gallery templates default gallery view photo GalleryFile/View','000001000001000015000007',NULL),('6X-7Twabn5KKO_AbgK3PEw','Default Gallery Edit Album','','root/import/gallery-templates/default-gallery-edit-album',1197987780,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Edit Album Default Gallery Edit Album root import gallery templates default gallery edit album GalleryAlbum/Edit','000001000001000015000008',NULL),('7JCTAiu1U_bT9ldr655Blw','Default Gallery Edit Photo','','root/import/gallery-templates/default-gallery-edit-photo',1197825824,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Edit Photo Default Gallery Edit Photo root import gallery templates default gallery edit photo GalleryFile/Edit','000001000001000015000009',NULL),('0X4Q3tBWUb_thsVbsYz9xQ','Default Gallery Add Archive','','root/import/gallery-templates/default-gallery-add-archive',1197987372,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Add Archive Default Gallery Add Archive root import gallery templates default gallery add archive GalleryAlbum/AddArchive','000001000001000015000010',NULL),('m3IbBavqzuKDd2PGGhKPlA','Default Gallery Make Shortcut','','root/import/gallery-templates/default-gallery-make-shortcut',1197825845,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Make Shortcut Default Gallery Make Shortcut root import gallery templates default gallery make shortcut GalleryFile/MakeShortcut','000001000001000015000011',NULL),('UTNFeV7B_aSCRmmaFCq4Vw','Default Gallery Delete Album','','root/import/gallery-templates/default-gallery-delete-album',1197825856,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Delete Album Default Gallery Delete Album root import gallery templates default gallery delete album GalleryAlbum/Delete','000001000001000015000012',NULL),('zcX-wIUct0S_np14xxOA-A','Default Gallery Delete File','','root/import/gallery-templates/default-gallery-delete-file',1197825866,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Delete File Default Gallery Delete File root import gallery templates default gallery delete file GalleryFile/Delete','000001000001000015000013',NULL),('MBZK_LPVzqhb4TV4mMRTJg','admin_ie7.css','','root/import/gallery-templates/admin_ie7.css',1197330678,1285124155,'3','7','3','WebGUI::Asset::Snippet',0,'admin_ie7.css admin_ie7.css root import gallery templates admin ie7.css input.captionEnter margin-left 5px width 92px ','000001000001000015000014',NULL),('bANo8aiAPA7aY_oQZKxIWw','rss.gif','','root/import/gallery-templates/images/rss.gif',1197330678,1285124155,'3','7','3','WebGUI::Asset::File::Image',1,'rss.gif rss.gif root import gallery templates images rss.gif','000001000001000015000017000001',NULL),('2ci_v2d4x4uvyjTRlC49OA','moveDown.gif','','root/import/gallery-templates/images/movedown.gif',1197330678,1285124156,'3','7','3','WebGUI::Asset::File::Image',1,'moveDown.gif moveDown.gif root import gallery templates images movedown.gif','000001000001000015000017000002',NULL),('O-EsSzKgAk1KolFT-x_KsA','moveUp.gif','','root/import/gallery-templates/images/moveup.gif',1197330678,1285124156,'3','7','3','WebGUI::Asset::File::Image',1,'moveUp.gif moveUp.gif root import gallery templates images moveup.gif','000001000001000015000017000003',NULL),('fdd8tGExyVwHyrB8RBbKXg','next.gif','','root/import/gallery-templates/images/next.gif',1197330839,1285124156,'3','7','3','WebGUI::Asset::File::Image',1,'next.gif next.gif root import gallery templates images next.gif','000001000001000015000017000004',NULL),('BpisgHl4ZDcSECJp6oib1w','play.gif','','root/import/gallery-templates/images/play.gif',1197330840,1285124156,'3','7','3','WebGUI::Asset::File::Image',1,'play.gif play.gif root import gallery templates images play.gif','000001000001000015000017000005',NULL),('zshreRgPAXtnF0DtVbQ1Yg','previous.gif','','root/import/gallery-templates/images/previous.gif',1197330840,1285124156,'3','7','3','WebGUI::Asset::File::Image',1,'previous.gif previous.gif root import gallery templates images previous.gif','000001000001000015000017000006',NULL),('mM3bjP_iG9sv5nQb4S17tQ','Default Gallery View Album RSS','','root/import/gallery-templates/default-gallery-album-rss',1197879662,1285124158,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery View Album RSS Default Gallery View Album RSS root import gallery templates default gallery album rss GalleryAlbum/ViewRss','000001000001000015000018',NULL),('ilu5BrM-VGaOsec9Lm7M6Q','Default Gallery List Albums RSS','','root/import/gallery-templates/default-gallery-list-albums-rss',1197878780,1285124158,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery List Albums RSS Default Gallery List Albums RSS root import gallery templates default gallery list albums rss Gallery/ListAlbumsRss','000001000001000015000019',NULL),('-ANLpoTEP-n4POAdRxCzRw','Default Gallery List Files For User RSS','','root/import/gallery-templates/default-gallery-list-files-for-user-rss',1197880641,1285124158,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery List Files For User RSS Default Gallery List Files For User RSS root import gallery templates default gallery list files for user rss Gallery/ListFilesForUserRss','000001000001000015000020',NULL),('OxJWQgnGsgyGohP2L3zJPQ','Default Gallery Edit Comment','','root/import/gallery-templates/default-gallery-edit-comment',1204663962,1285124158,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Edit Comment Default Gallery Edit Comment root import gallery templates default gallery edit comment GalleryFile/EditComment','000001000001000015000021',NULL),('Tsg7xmPYv782j6IVz7yHFg','Calendar Templates','','root/import/calendar-templates',1204890713,1213244777,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Calendar Templates Calendar Templates root import calendar templates','000001000001000006',NULL),('kj3b-X3i6zRKnhLb4ZiCLw','Default Calendar List View','','root/import/calendar-templates/default-calendar-list-view',1204890713,1295931508,'3','7','3','WebGUI::Asset::Template',0,'Default Calendar List View Default Calendar List View root import calendar templates default calendar list view Calendar/List','000001000001000006000001',NULL),('uRL9qtk7Rb0YRJ41LmHOJw','Default Calendar Print List View','','root/import/calendar-templates/default-calendar-print-list-view',1204890713,1229311072,'3','7','3','WebGUI::Asset::Template',0,'Default Calendar Print List View Default Calendar Print List View root import calendar templates default calendar print list view Calendar/Print/List','000001000001000006000002',NULL),('CalendarWeek0000000001','Default Calendar Week','','root/import/calendar-templates/default-calendar-week',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Week Default Calendar Week root import calendar templates default calendar week Calendar/Week','000001000001000006000003',NULL),('CalendarDay00000000001','Default Calendar Day','','root/import/calendar-templates/default-calendar-day',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Day Default Calendar Day root import calendar templates default calendar day Calendar/Day','000001000001000006000004',NULL),('CalendarEvent000000001','Default Calendar Event','','root/import/calendar-templates/default-calendar-event',1204890713,1295931508,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Event Default Calendar Event root import calendar templates default calendar event Calendar/Event','000001000001000006000005',NULL),('CalendarEventEdit00001','Default Calendar Event Edit','','root/import/calendar-templates/default-calendar-event-edit',1205160982,1269401468,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Event Edit Default Calendar Event Edit root import calendar templates default calendar event edit Calendar/EventEdit','000001000001000006000006',NULL),('CalendarSearch00000001','Default Calendar Search','','root/import/calendar-templates/default-calendar-search',1204890713,1326776038,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Search Default Calendar Search root import calendar templates default calendar search Calendar/Search','000001000001000006000008',NULL),('CalendarPrintEvent0001','Default Calendar Print Event','','root/import/calendar-templates/default-calendar-print-event',1204890714,1215396964,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Print Event Default Calendar Print Event root import calendar templates default calendar print event Calendar/Print/Event','000001000001000006000009',NULL),('CalendarPrintMonth0001','Default Calendar Print Month','','root/import/calendar-templates/default-calendar-print-month',1204890714,1204890714,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Print Month Default Calendar Print Month root import calendar templates default calendar print month Calendar/Print/Month','000001000001000006000010',NULL),('CalendarPrintWeek00001','Default Calendar Print Week','','root/import/calendar-templates/default-calendar-print-week',1204890714,1204890714,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Print Week Default Calendar Print Week root import calendar templates default calendar print week Calendar/Print/Week','000001000001000006000011',NULL),('CalendarPrintDay000001','Default Calendar Print Day','','root/import/calendar-templates/default-calendar-print-day',1204890714,1204890714,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Print Day Default Calendar Print Day root import calendar templates default calendar print day Calendar/Print/Day','000001000001000006000012',NULL),('jnYdqDkUR8x7Pv2eGR1qTA','Thingy Templates','','root/import/thingy-templates',1205431513,1216250666,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Thingy Templates Thingy Templates root import thingy templates','000001000001000044',NULL),('ThingyTmpl000000000001','Default Thingy','','templates/thingy-default',1205003608,1237914005,'3','7','12','WebGUI::Asset::Template',0,'Default Thingy Default Thingy templates thingy default Thingy','000001000001000044000001',NULL),('ThingyTmpl000000000002','Default Thingy View Thing','','templates/thingy-default-view-thing',1205003676,1299559129,'3','7','12','WebGUI::Asset::Template',0,'Default Thingy View Thing Default Thingy View Thing templates thingy default view thing Thingy/ViewThing','000001000001000044000002',NULL),('ThingyTmpl000000000003','Default Thingy Edit Thing','','templates/thingy-default-edit-thing',1205003711,1224518002,'3','7','12','WebGUI::Asset::Template',0,'Default Thingy Edit Thing Default Thingy Edit Thing templates thingy default edit thing Thingy/EditThing','000001000001000044000003',NULL),('ThingyTmpl000000000004','Default Thingy Search Thing','','templates/thingy-default-search-thing',1205158717,1277868920,'3','7','12','WebGUI::Asset::Template',0,'Default Thingy Search Thing Default Thingy Search Thing templates thingy default search thing Thingy/SearchThing','000001000001000044000004',NULL),('7fE8md51vTCcuJFOvxNaGA','thumbnails.js','','root/import/gallery-templates/thumbnails.js',1205443600,1285124158,'3','7','3','WebGUI::Asset::Snippet',0,'thumbnails.js thumbnails.js root import gallery templates thumbnails.js Depends on BrowserDetect.js Make the thumbnails a little bigger while the mouse is over them function scaleThumbUp e anchor IE6 doesn\'t like to do the right thing with the CSS stuff below exclude it if BrowserDetect if BrowserDetect.browser == Explorer BrowserDetect.version < 7 return Make a new image with the same image src as the anchor var oldImage = anchor.getElementsByTagName(\"img\")[0 var newContainer = document.createElement(\"div newContainer.className = thumb-popup newContainer.style.position = absolute newContainer.style.zIndex = 1 var newWidth = oldImage.offsetWidth 3 var newHeight = oldImage.offsetHeight 3 var newLeft = anchor.offsetLeft + anchor.offsetWidth 2 newWidth 2 var newTop = anchor.offsetTop + anchor.offsetHeight 2 newHeight 2 newContainer.style.left = newLeft + px newContainer.style.top = newTop + px newContainer.style.width = newWidth + px newContainer.style.height = newHeight + px var newImage = document.createElement(\"img newImage.src = oldImage.src newImage.style.width = 100 newImage.style.height = 100 newContainer.appendChild newImage Make some text for the caption var caption = document.createElement(\"div caption.appendChild document.createTextNode anchor.title caption.className = caption newContainer.appendChild caption var newBox = document.createElement(\"a newBox.href = anchor.href newBox.style.display = block newBox.style.position = absolute newBox.style.zIndex = 10 newBox.style.left = anchor.offsetLeft + px newBox.style.top = anchor.offsetTop + px newBox.style.height = anchor.offsetHeight + px newBox.style.width = anchor.offsetWidth + px newBox.style.border = 1px solid transparent anchor.parentNode.appendChild newContainer anchor.parentNode.appendChild newBox YAHOO.util.Event.addListener newBox click function window.location.href = anchor.href YAHOO.util.Event.addListener newContainer mouseout scaleThumbDown newBox newContainer caption YAHOO.util.Event.addListener newBox mouseout scaleThumbDown newBox newContainer caption function scaleThumbDown e elements for var i = 0 i < elements.length i++ elements[i].parentNode.removeChild elements[i var anchorTimeout function enterAnchor e anchor if typeof anchorTimeout = undefined clearTimeout anchorTimeout anchorTimeout = setTimeout function scaleThumbUp e anchor 150 function leaveAnchor e anchor if typeof anchorTimeout = undefined clearTimeout anchorTimeout function initThumb var anchors = YAHOO.util.Dom.getElementsByClassName thumb for var i = 0 i < anchors.length i++ YAHOO.util.Event.addListener anchors[i mouseover enterAnchor anchors[i YAHOO.util.Event.addListener anchors[i mouseout leaveAnchor anchors[i YAHOO.util.Event.onDOMReady initThumb ','000001000001000015000022',NULL),('1oGhfj00KkCzP1ez01AfKA','slideshow.js','','root/import/gallery-templates/slideshow.js',1205635970,1285124158,'3','7','3','WebGUI::Asset::Snippet',0,'slideshow.js slideshow.js root import gallery templates slideshow.js if typeof WebGUI == undefined WebGUI = WebGUI.Slideshow config Configure and return a new Slideshow object config is an object with the following properties containerId The ID of the element that contains the Slideshow items Defaults to slideshow-container currentIndex The index of the first item in the Slideshow Defaults to 0 isPlaying If true the slideshow will begin immediately itemClassName The class name of the slideshow items Defaults to slideshow-item nextButtonId The id of the button to go to the next item pauseImageSrc The URL to the pause button image playDelay The delay in milliseconds between slides Defaults to 5000 playImageSrc The URL to the play button image playPauseButtonId The id of the button to toggle between play and pause previousButtonId The id of the button to go to the previous item wrap If true the slideshow will wrap around Control the slideshow To control the slideshow you can use the following methods next Pause the slideshow and go to the next slide previous Pause the slideshow and go to the previous slide play Play the slideshow pause Pause the slideshow togglePlay If it\'s playing pause it If it\'s paused play it WebGUI.Slideshow = function config this.containerId = config config.containerId config.containerId slideshow-container this.currentIndex = config config.currentIndex config.currentIndex 0 this.isPlaying = config config.isPlaying config.isPlaying false this.itemClassName = config config.itemClassName config.itemClassName slideshow-item this.nextButtonId = config config.nextButtonId undefined this.pauseImageSrc = config config.pauseImageSrc undefined this.playDelay = config config.playDelay config.playDelay 5000 this.playImageSrc = config config.playImageSrc undefined this.playPauseButtonId = config config.playPauseButtonId undefined this.previousButtonId = config config.previousButtonId undefined this.wrap = config config.wrap config.wrap false YAHOO.util.Event.onDOMReady this.init this true clearPlayTimeout Clears the timeout to move to the next slide WebGUI.Slideshow.prototype.clearPlayTimeout = function clearTimeout this.playTimeout this.playTimeout = undefined doPlayTick self Performs the action to move to the next slide and start a new timeout self is a new reference to the object to get around the scoping issues with setTimeout WebGUI.Slideshow.prototype.doPlayTick = function self self.showNext self.setPlayTimeout getSlideshowContainer Returns the HTMLElement for the Slideshow container WebGUI.Slideshow.prototype.getSlideshowContainer = function return document.getElementById this.containerId getSlideshowItems Returns an array of HTMLElements for the Slideshow\'s items WebGUI.Slideshow.prototype.getSlideshowItems = function var items = YAHOO.util.Dom.getElementsByClassName this.itemClassName undefined this.getSlideshowContainer return items init Initialize the slideshow Performed after the DOM is ready WebGUI.Slideshow.prototype.init = function Add handlers to buttons if this.playPauseButtonId YAHOO.util.Event.addListener this.playPauseButtonId click this.togglePlay this true if this.nextButtonId YAHOO.util.Event.addListener this.nextButtonId click this.next this true if this.previousButtonId YAHOO.util.Event.addListener this.previousButtonId click this.previous this true Hide all but the currentIndex var items = this.getSlideshowItems for var i = 0 i < items.length i++ if i = this.currentIndex items i style.display = none else items i style.display = block Start it off if necessary if this.isPlaying this.setPlayTimeout this.updatePlayPauseButton next Pause the slideshow and go to the next slide WebGUI.Slideshow.prototype.next = function this.pause this.showNext play Start the slideshow WebGUI.Slideshow.prototype.play = function if this.isPlaying this.isPlaying = true this.setPlayTimeout this.updatePlayPauseButton previous Pause the slideshow and show the previous slide WebGUI.Slideshow.prototype.previous = function this.pause this.showPrevious pause Pause the slideshow WebGUI.Slideshow.prototype.pause = function if this.isPlaying this.isPlaying = false this.clearPlayTimeout this.updatePlayPauseButton setPlayTimeout Sets the timeout to move to the next slide WebGUI.Slideshow.prototype.setPlayTimeout = function var self = this this.playTimeout = setTimeout function self.doPlayTick(self this.playDelay showNext Show the next slide WebGUI.Slideshow.prototype.showNext = function var items = this.getSlideshowItems var hideIndex = this.currentIndex var showIndex = this.currentIndex + 1 Wrap around if this.wrap showIndex >= items.length showIndex = 0 Don\'t allow going past the last item else if showIndex >= items.length return Do the switch if items hideIndex items hideIndex style.display = none if items showIndex items showIndex style.display = block this.currentIndex = showIndex showPrevious Show the previous slide WebGUI.Slideshow.prototype.showPrevious = function var items = this.getSlideshowItems var hideIndex = this.currentIndex var showIndex = this.currentIndex 1 Wrap around if this.wrap showIndex < 0 showIndex = items.length 1 Don\'t allow going past the last item else if showIndex < 0 return Do the switch items hideIndex style.display = none items showIndex style.display = block this.currentIndex = showIndex togglePlay If it\'s paused play it If it\'s playing pause it Return true if the slideshow is now playing WebGUI.Slideshow.prototype.togglePlay = function if this.isPlaying == false this.play return true else this.pause updatePlayPauseButton Update the Play/Pause button to have the correct image WebGUI.Slideshow.prototype.updatePlayPauseButton = function if this.playPauseButtonId if this.isPlaying this.playImageSrc document.getElementById this.playPauseButtonId src = this.pauseImageSrc else if this.pauseImageSrc document.getElementById this.playPauseButtonId src = this.playImageSrc ','000001000001000015000023',NULL),('3qiVYhNTXMVC5hfsumVHgg','browserdetect.js','','root/import/gallery-templates/browserdetect.js',1206743306,1285124158,'3','7','3','WebGUI::Asset::Snippet',0,'browserdetect.js browserdetect.js root import gallery templates browserdetect.js var BrowserDetect = init function this.browser = this.searchString(this.dataBrowser || An unknown browser this.version = this.searchVersion(navigator.userAgent || this.searchVersion(navigator.appVersion || an unknown version this.OS = this.searchString(this.dataOS || an unknown OS searchString function data for var i=0;i','000001000001000015000024',NULL),('usuxw9V3jN4d4pujRiEYxg','css03-ie.css','','style3/css03-ie.css',1209494150,1209494150,'3','7','12','WebGUI::Asset::Snippet',0,'css03-ie.css css03-ie.css style3 css03 ie.css contentArea height:500px padding-bottom:300px ','000001000001000051000023',NULL),('POVcY79vIqAHR8OfGt36aw','pagination_button.jpg','','root/import/gallery-templates/images/pagination_button.jpg',1209499189,1285124156,'3','7','12','WebGUI::Asset::File::Image',1,'pagination_button.jpg pagination_button.jpg root import gallery templates images pagination button.jpg','000001000001000015000017000007',NULL),('hIB-z34r8Xl-vYVYCkKr-w','bar-btn-r.jpg','','root/import/gallery-templates/images/bar-btn-r.jpg',1209499189,1285124156,'3','7','12','WebGUI::Asset::File::Image',1,'bar-btn-r.jpg bar-btn-r.jpg root import gallery templates images bar btn r.jpg','000001000001000015000017000008',NULL),('-mPUoFlYcjqjPUPRLAlxNQ','search-field-r.jpg','','root/import/gallery-templates/images/search-field-r.jpg',1209499189,1285124156,'3','7','12','WebGUI::Asset::File::Image',1,'search-field-r.jpg search-field-r.jpg root import gallery templates images search field r.jpg','000001000001000015000017000009',NULL),('MDpUOR-N8KMyt1J7Hh_h4w','bar-btn.jpg','','root/import/gallery-templates/images/bar-btn.jpg',1209499189,1285124156,'3','7','12','WebGUI::Asset::File::Image',1,'bar-btn.jpg bar-btn.jpg root import gallery templates images bar btn.jpg','000001000001000015000017000010',NULL),('YfXKByTwDZVituMc4h13Dg','pagination_bg.jpg','','root/import/gallery-templates/images/pagination_bg.jpg',1209499189,1285124156,'3','7','12','WebGUI::Asset::File::Image',1,'pagination_bg.jpg pagination_bg.jpg root import gallery templates images pagination bg.jpg','000001000001000015000017000011',NULL),('esko_HSU0Gh-uJZ1h3xRmQ','search-field-l.jpg','','root/import/gallery-templates/images/search-field-l.jpg',1209499189,1285124156,'3','7','12','WebGUI::Asset::File::Image',1,'search-field-l.jpg search-field-l.jpg root import gallery templates images search field l.jpg','000001000001000015000017000012',NULL),('oSqpGswzpBG_ErdfYwIO8A','top_bg.jpg','','root/import/gallery-templates/images/top_bg.jpg',1209499189,1285124156,'3','7','12','WebGUI::Asset::File::Image',1,'top_bg.jpg top_bg.jpg root import gallery templates images top bg.jpg','000001000001000015000017000013',NULL),('MXJklShZvLLB_DSnZQmXrQ','title_bg.jpg','','root/import/gallery-templates/images/title_bg.jpg',1209499189,1285124156,'3','7','12','WebGUI::Asset::File::Image',1,'title_bg.jpg title_bg.jpg root import gallery templates images title bg.jpg','000001000001000015000017000014',NULL),('BthxD5oJ0idmsyI3ioA2FA','bar-btn-l.jpg','','root/import/gallery-templates/images/bar-btn-l.jpg',1209499189,1285124156,'3','7','12','WebGUI::Asset::File::Image',1,'bar-btn-l.jpg bar-btn-l.jpg root import gallery templates images bar btn l.jpg','000001000001000015000017000015',NULL),('aZ-1HYQamkRHYXvzAra8WQ','search-field.jpg','','root/import/gallery-templates/images/search-field.jpg',1209499189,1285124156,'3','7','12','WebGUI::Asset::File::Image',1,'search-field.jpg search-field.jpg root import gallery templates images search field.jpg','000001000001000015000017000016',NULL),('eRkb94OYcS5AdcrrerOP5Q','rss.gif','','root/import/gallery-templates/images/rss2.gif',1209499189,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'rss.gif rss.gif root import gallery templates images rss2.gif','000001000001000015000017000017',NULL),('TbnkjAJQEASORXIpYqDkcA','blank-image.jpg','','root/import/gallery-templates/images/blank-image.jpg',1209499189,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'blank-image.jpg blank-image.jpg root import gallery templates images blank image.jpg','000001000001000015000017000018',NULL),('er-3faBjY-hhlDcc5aKqdQ','top_bg.jpg','','root/import/gallery-templates/images/top_bg2.jpg',1209499189,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'top_bg.jpg top_bg.jpg root import gallery templates images top bg2.jpg','000001000001000015000017000019',NULL),('8bFsu2FJUqHRUiHcozcVFw','sub-btn-l.jpg','','root/import/gallery-templates/images/sub-btn-l.jpg',1209499189,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'sub-btn-l.jpg sub-btn-l.jpg root import gallery templates images sub btn l.jpg','000001000001000015000017000020',NULL),('34Aayx5eA320D8VfhdfDBw','sub-btn-r.jpg','','root/import/gallery-templates/images/sub-btn-r.jpg',1209499189,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'sub-btn-r.jpg sub-btn-r.jpg root import gallery templates images sub btn r.jpg','000001000001000015000017000021',NULL),('TlhKOVmWblZOsAdqmhEpeg','sub-btn.jpg','','root/import/gallery-templates/images/sub-btn.jpg',1209499189,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'sub-btn.jpg sub-btn.jpg root import gallery templates images sub btn.jpg','000001000001000015000017000022',NULL),('Nx0ypjO3cN6QdZUBUEE0lA','pic-title-bg.jpg','','root/import/gallery-templates/images/pic-title-bg.jpg',1209499189,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'pic-title-bg.jpg pic-title-bg.jpg root import gallery templates images pic title bg.jpg','000001000001000015000017000023',NULL),('CmFZLN7iPS7XXvUEsxKPKA','row-2.jpg','','root/import/gallery-templates/images/row-2.jpg',1209499190,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'row-2.jpg row-2.jpg root import gallery templates images row 2.jpg','000001000001000015000017000024',NULL),('v_XBgwwZqgW1D5s4y05qfg','addtl-info.gif','','root/import/gallery-templates/images/addtl-info.gif',1209499190,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'addtl-info.gif addtl-info.gif root import gallery templates images addtl info.gif','000001000001000015000017000025',NULL),('4TdAkKoQbSCvI7QWcW889A','row-1.jpg','','root/import/gallery-templates/images/row-1.jpg',1209499190,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'row-1.jpg row-1.jpg root import gallery templates images row 1.jpg','000001000001000015000017000026',NULL),('SAgK6eDPCG1cgkJ59WapHQ','prev-btn.gif','','root/import/gallery-templates/images/prev-btn.gif',1209499190,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'prev-btn.gif prev-btn.gif root import gallery templates images prev btn.gif','000001000001000015000017000027',NULL),('XJYLuvGy9ubF7JNKyINtpA','play-btn.gif','','root/import/gallery-templates/images/play-btn.gif',1209499190,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'play-btn.gif play-btn.gif root import gallery templates images play btn.gif','000001000001000015000017000028',NULL),('RWj7hyv2SpZuXxwj1Wocug','next-btn.gif','','root/import/gallery-templates/images/next-btn.gif',1209499190,1285124157,'3','7','12','WebGUI::Asset::File::Image',1,'next-btn.gif next-btn.gif root import gallery templates images next btn.gif','000001000001000015000017000029',NULL),('aq8QElnlm3YufAoxRz9Pcg','data-bg.jpg','','root/import/gallery-templates/images/data-bg.jpg',1209499190,1285124158,'3','7','12','WebGUI::Asset::File::Image',1,'data-bg.jpg data-bg.jpg root import gallery templates images data bg.jpg','000001000001000015000017000030',NULL),('6D4Z-oruXPS6OlH_Kx8pBg','images','','root/import/thingy-templates/images',1209509389,1209509389,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'images images root import thingy templates images','000001000001000044000005',NULL),('hQ7z33_jOYkQ8WNX5xy9Sw','style-button.gif','','root/import/thingy-templates/images/style-button.gif',1209509455,1209509455,'3','7','12','WebGUI::Asset::File::Image',1,'style-button.gif style-button.gif root import thingy templates images style button.gif','000001000001000044000005000001',NULL),('vWW_DcHiYSrKZOkkIfEfcQ','row-2.jpg','','root/import/thingy-templates/images/row-2.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'row-2.jpg row-2.jpg root import thingy templates images row 2.jpg','000001000001000044000005000002',NULL),('_bPYzRA87NTAUIKlfrJMHg','row-1.jpg','','root/import/thingy-templates/images/row-1.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'row-1.jpg row-1.jpg root import thingy templates images row 1.jpg','000001000001000044000005000003',NULL),('nJjZHRwdDs5MAZYsAyioHw','title-bg.jpg','','root/import/thingy-templates/images/title-bg.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'title-bg.jpg title-bg.jpg root import thingy templates images title bg.jpg','000001000001000044000005000004',NULL),('8hxfkrJPeFVRWF5piCNJ1A','field-bg.jpg','','root/import/thingy-templates/images/field-bg.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'field-bg.jpg field-bg.jpg root import thingy templates images field bg.jpg','000001000001000044000005000005',NULL),('Osx7WN52iIKHZFT4vqUBHQ','search-btn.gif','','root/import/thingy-templates/images/search-btn.gif',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'search-btn.gif search-btn.gif root import thingy templates images search btn.gif','000001000001000044000005000006',NULL),('oWff8fGzRdHPyq5VNREe9Q','top-bg.jpg','','root/import/thingy-templates/images/top-bg.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'top-bg.jpg top-bg.jpg root import thingy templates images top bg.jpg','000001000001000044000005000007',NULL),('uqbkvb1b9443VvfkyRz95w','save-button.gif','','root/import/thingy-templates/images/save-button.gif',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'save-button.gif save-button.gif root import thingy templates images save button.gif','000001000001000044000005000008',NULL),('8YiMkcz32xalkAn3WBLpag','go-btn.gif','','root/import/thingy-templates/images/go-btn.gif',1210181860,1210181860,'3','7','12','WebGUI::Asset::File::Image',1,'go-btn.gif go-btn.gif root import thingy templates images go btn.gif','000001000001000044000005000009',NULL),('5m5I7__l40C4hhv4ydqAHQ','thingy-ie.css','','root/import/thingy-templates/thingy-ie.css',1210181698,1216227786,'3','7','12','WebGUI::Asset::Snippet',0,'thingy-ie.css thingy-ie.css root import thingy templates thingy ie.css thingyList things padding:0px margin:0px width:200px z-index:5000 position:absolute top:27px left:20px border:solid a2a2a2 1px border-top-style:none thingyList things a:link thingyList things a:visited display:block background-color:#f1f1f1 border-top:solid a2a2a2 1px border-bottom:solid 727272 1px line-height:12px font-size:10px height:12px padding:2px 5px text-decoration:none font-weight:bold color:#a2a2a2 width:190px thingyList things a:hover background-color:white ','000001000001000044000007',NULL),('2rC4ErZ3c77OJzJm7O5s3w','EMS Badge Listing (default)','','root/import/ems/ems-badge-listing-default',1208721232,1288747841,'3','7','12','WebGUI::Asset::Template',0,'EMS Badge Listing default EMS Badge Listing default root import ems ems badge listing default EMS','000001000001000012000003',NULL),('PsFn7dJt4wMwBa8hiE3hOA','Print Badge (Default)','','root/import/ems/print-badge-default',1208558071,1257311886,'3','7','12','WebGUI::Asset::Template',0,'Print Badge Default Print Badge Default root import ems print badge default EMS/PrintBadge','000001000001000012000004',NULL),('yBwydfooiLvhEFawJb0VTQ','Print Ticket (Default)','','root/import/ems/print-ticket-default',1208629936,1257311887,'3','7','12','WebGUI::Asset::Template',0,'Print Ticket Default Print Ticket Default root import ems print ticket default EMS/PrintTicket','000001000001000012000005',NULL),('63ix2-hU0FchXGIWkG3tow','Flat Discount (Default)','','root/import/flat-discount-default',1209588387,1326776037,'3','7','12','WebGUI::Asset::Template',0,'Flat Discount Default Flat Discount Default root import flat discount default FlatDiscount','000001000001000036000011',NULL),('gbnRhcWNk1iQe32LFEB5eQ','Shelf','','root/import/shelf2',1210779723,1212086102,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Shelf Shelf root import shelf2','000001000001000035',NULL),('1XOJDcg_ITRYwVM-QnIcPw','shelf.css','','root/import/shelf2/shelf.css',1210779441,1219175575,'3','7','12','WebGUI::Asset::Snippet',0,'shelf.css shelf.css root import shelf2 shelf.css wgShelf font-size:12px font-family:arial verdana margin:15px 0px wgShelf h2 background black padding:5px padding-left:15px line-height:32px color:white margin:0px height:32px wgShelf wgShelves background F1F1F1 height:29px padding:3px line-height:29px padding-left:30px wgShelf product margin:15px margin-left:0px text-align:left background-color:#f1f1f1 border:solid e1e1e1 1px width 200px display moz-inline-box Moz display inline-block Op Saf IE vertical-align top IE Mac non capisce e a volte crea extra v space wgShelf product thumbnail display:block text-align:left margin:3px float:left wgShelf product link background e1e1e1 height:30px padding:3px line-height:24px margin-bottom:5px text-align:left display:block wgShelf product link a:link wgShelf product link a:visited color:#000 display:block wgShelf product link a:hover text-decoration:underline wgShelf product price display:block text-align:right font-size:18px font-weight:bold ','000001000001000035000003',NULL),('C5fPz-Wg85vkYRvCdl-Xqw','UserList','','root/import/userlist',1212160830,1212160830,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'UserList UserList root import userlist','000001000001000047',NULL),('aNmgn0cd6tldmC1FpW4KbA','Shop','','shopping-cart-collateral-items',1213122695,1326776036,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Shop Shop shopping cart collateral items','000001000001000036',NULL),('2q5fxatSFLgIhXaUX-oSvg','bottom-left.jpg','','shopping-cart-collateral-items/bottom-left.jpg',1204149033,1326776036,'3','7','3','WebGUI::Asset::File::Image',1,'bottom-left.jpg bottom-left.jpg shopping cart collateral items bottom left.jpg','000001000001000036000001',NULL),('_d5WTkKjnwct-_Dk7gZHvQ','bottom-right.jpg','','shopping-cart-collateral-items/bottom-right.jpg',1204149033,1326776036,'3','7','3','WebGUI::Asset::File::Image',1,'bottom-right.jpg bottom-right.jpg shopping cart collateral items bottom right.jpg','000001000001000036000002',NULL),('Iz2mUR3jCPKyemwAea4b2g','input_bg.jpg','','shopping-cart-collateral-items/input_bg.jpg',1204149033,1326776036,'3','7','3','WebGUI::Asset::File::Image',1,'input_bg.jpg input_bg.jpg shopping cart collateral items input bg.jpg','000001000001000036000003',NULL),('JU9bjsLRoWj7GVHs__prig','top-left.jpg','','shopping-cart-collateral-items/top-left.jpg',1204149033,1326776036,'3','7','3','WebGUI::Asset::File::Image',1,'top-left.jpg top-left.jpg shopping cart collateral items top left.jpg','000001000001000036000004',NULL),('noOlnjQGexHg8c4bGVUo9g','top-right.jpg','','shopping-cart-collateral-items/top-right.jpg',1204149033,1326776036,'3','7','3','WebGUI::Asset::File::Image',1,'top-right.jpg top-right.jpg shopping cart collateral items top right.jpg','000001000001000036000005',NULL),('aIpCmr9Hi__vgdZnDTz1jw','Cart (Default)','','default-shopping-cart-template',1209921197,1326776036,'3','7','3','WebGUI::Asset::Template',0,'Cart Default Cart Default default shopping cart template Shop/Cart','000001000001000036000006',NULL),('4e-_rNs6mSWedZhQ_V5kJA','shelf-ie.css','','root/import/shelf2/shelf-ie.css',1210779672,1210779672,'3','7','12','WebGUI::Asset::Snippet',0,'shelf-ie.css shelf-ie.css root import shelf2 shelf ie.css wgShelf product margin:15px margin-left:0px float:left text-align:left background-color:#f1f1f1 border:solid e1e1e1 1px min-height:100px min-width:200px width:200px height:100px wgShelf product link background url(^FileUrl(root/import/shelf2/images/shelf-titles.jpg no-repeat top right height:30px padding:3px line-height:24px margin-bottom:5px text-align:left display:block ','000001000001000035000004',NULL),('2gtFt7c0qAFNU3BG_uvNvg','My Purchases (Default)','','shopping-cart-collateral-items/my-purchases-default',1211824430,1326776037,'3','7','3','WebGUI::Asset::Template',0,'My Purchases Default My Purchases Default shopping cart collateral items my purchases default Shop/MyPurchases','000001000001000036000008',NULL),('bPz1yk6Y9uwMDMBcmMsSCg','Email Receipt (Default)','','shopping-cart-collateral-items/email-receipt-default',1211829604,1326776037,'3','7','3','WebGUI::Asset::Template',0,'Email Receipt Default Email Receipt Default shopping cart collateral items email receipt default Shop/EmailReceipt','000001000001000036000009',NULL),('EBlxJpZQ9o-8VBOaGQbChA','MiniCart','','shopping-cart-collateral-items/minicart',1212093746,1326776037,'3','7','3','WebGUI::Asset::Template',0,'MiniCart MiniCart shopping cart collateral items minicart Shop/MiniCart','000001000001000036000014',NULL),('PBtmpl0000000000000053','Subscription code redemption','','subscription_code_redemption',1124395696,1326776037,'3','7','12','WebGUI::Asset::Template',0,'Subscription code redemption Subscription code redemption subscription code redemption Operation/RedeemSubscription','000001000001000036000017',NULL),('6tK47xsaIH-ELw0IBo0uRQ','images','','root/import/shelf2/images',1210777115,1210777115,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'images images root import shelf2 images','000001000001000035000001',NULL),('XNd7a_g_cTvJVYrVHcx2Mw','Address (Default)','','shopping-cart-collateral-items/address-default',1212099009,1326776037,'3','7','3','WebGUI::Asset::Template',0,'Address Default Address Default shopping cart collateral items address default Shop/Address','000001000001000036000007',NULL),('_bZJ9LA_KNekZiFPaP2SeQ','shelf-titles.jpg','','root/import/shelf2/images/shelf-titles.jpg',1210777868,1210777868,'3','7','12','WebGUI::Asset::File::Image',1,'shelf-titles.jpg shelf-titles.jpg root import shelf2 images shelf titles.jpg','000001000001000035000001000001',NULL),('nFen0xjkZn8WkpM93C9ceQ','Shelf (Default)','','root/import/shelf-default',1210779326,1247864696,'3','7','12','WebGUI::Asset::Template',0,'Shelf Default Shelf Default root import shelf default Shelf','000001000001000035000002',NULL),('mTOiwwk3q4k9g5-XykXhPA','Documentation','With any large system, having the right documentation to get you started is mandatory. The good news is that WebGUI has abundant documentation. ','documentation',1215717999,1271349647,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Documentation Documentation documentation With any large system having the right documentation to get you started is mandatory The good news is that WebGUI has abundant documentation','000001000002000003',NULL),('o_pq_e4vRyhMOKFzs61eag','book-covers.jpg','','documentation/book-covers.jpg',1215714957,1215714957,'3','7','3','WebGUI::Asset::File::Image',1,'book-covers.jpg book-covers.jpg documentation book covers.jpg','000001000002000003000002',NULL),('PBEmsBadgeTemplate0000','Default EMS Badge Template','','default_emsbadge',1221077977,1313542962,'3','7','4','WebGUI::Asset::Template',0,'Default EMS Badge Template Default EMS Badge Template default emsbadge EMSBadge','000001000001000012000006',NULL),('9A-mg2gwWmaYi9o_1C7ArQ','dashboard','','root/import/projectmanager/dashboard',1147642478,1222803338,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'dashboard dashboard root import projectmanager dashboard','000001000001000030000001',NULL),('yD1SMHelczihzjEmx6eXBA','editTask','','root/import/projectmanager/edittask',1147642478,1222803342,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'editTask editTask root import projectmanager edittask','000001000001000030000002',NULL),('pV7GnZdpjR3XpZaSINIoeg','gantt','','root/import/projectmanager/gantt',1147642478,1222803347,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'gantt gantt root import projectmanager gantt','000001000001000030000003',NULL),('71e17KeduiXgODLMlUxiow','project','','root/import/projectmanager/project',1147642479,1222803352,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'project project root import projectmanager project','000001000001000030000004',NULL),('vTymIDYL2YqEh6PV50F7ew','manager','','root/import/timetracking/manager',1147642482,1222803302,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'manager manager root import timetracking manager','000001000001000046000001',NULL),('lo1ac3BsoJx3ijGQ3gR-bQ','row','','root/import/timetracking/row',1147642482,1222803309,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'row row root import timetracking row','000001000001000046000002',NULL),('huASapWvFDzqwOSbcN-JFQ','user','','root/import/timetracking/user',1147642483,1222803313,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'user user root import timetracking user','000001000001000046000003',NULL),('xSmREZO3GNzK3M5PaueOOQ','LDAP/Account','','root/import/auth/ldap/account',1147642466,1287545014,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP/Account LDAP/Account root import auth ldap account','000001000001000005000001',NULL),('0bx-xoL8TSXXubFuqKAoVQ','LDAP/Create','','root/import/auth/ldap/create',1147642466,1287545014,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP/Create LDAP/Create root import auth ldap create','000001000001000005000002',NULL),('taX2UYkFF21ALpFZY2rhMw','LDAP/Login','','root/import/auth/ldap/login',1147642466,1287545014,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP/Login LDAP/Login root import auth ldap login','000001000001000005000003',NULL),('K0q_N885Httqev1VCqUWxg','WebGUI/Account','','root/import/auth/webgui/account',1147642466,1287545014,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI/Account WebGUI/Account root import auth webgui account','000001000001000005000004',NULL),('fq1ZkYhH24R5tb96kuT10Q','WebGUI/Create','','root/import/auth/webgui/create',1147642466,1287545014,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI/Create WebGUI/Create root import auth webgui create','000001000001000005000005',NULL),('oHk7fAFhEEkB7dHzi0QOQA','WebGUI/Expired','','root/import/auth/webgui/expired',1147642466,1287545014,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI/Expired WebGUI/Expired root import auth webgui expired','000001000001000005000006',NULL),('9M-lrlPQWeeNWfvnDnK_Xg','WebGUI/Login','','root/import/auth/webgui/login',1147642466,1287545014,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI/Login WebGUI/Login root import auth webgui login','000001000001000005000007',NULL),('_gBYAdTcbkiyamnqi2Xskg','WebGUI/Recovery','','root/import/auth/webgui/recovery',1147642466,1287545014,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI/Recovery WebGUI/Recovery root import auth webgui recovery','000001000001000005000008',NULL),('tBL7BWiQRZFed2Y-Zjo9tQ','AdminToggle','','root/import/macro/admintoggle',1147642471,1222803200,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'AdminToggle AdminToggle root import macro admintoggle','000001000001000021000001',NULL),('GdkQpvjRtJqtzOUbwIIQRA','a_account','','root/import/macro/a_account',1147642471,1222803205,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'a_account a_account root import macro a account','000001000001000021000002',NULL),('tnc5iYyynX2hfdEs9D3P8w','EditableToggle','','root/import/macro/editabletoggle',1147642472,1222803213,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'EditableToggle EditableToggle root import macro editabletoggle','000001000001000021000003',NULL),('vgXdBcFTqU7h4wBG1ewdBw','File','','root/import/macro/file',1147642472,1222803217,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'File File root import macro file','000001000001000021000004',NULL),('hcFlqnXlsmC1ujN6Id0F0A','GroupAdd','','root/import/macro/groupadd',1147642473,1222803234,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'GroupAdd GroupAdd root import macro groupadd','000001000001000021000005',NULL),('eRJR52fvlaxfetv3DQkQYw','GroupDelete','','root/import/macro/groupdelete',1147642473,1222803238,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'GroupDelete GroupDelete root import macro groupdelete','000001000001000021000006',NULL),('5HIDHq5lAWHV5gpYGS0zLg','H_homeLink','','root/import/macro/h_homelink',1147642473,1222803244,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'H_homeLink H_homeLink root import macro h homelink','000001000001000021000007',NULL),('rYEFwXXo0tkGhQTcbDibvg','LoginToggle','','root/import/macro/logintoggle',1147642473,1222803249,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LoginToggle LoginToggle root import macro logintoggle','000001000001000021000008',NULL),('V3l5S5TtI7wMm1WpIMhvOA','L_loginBox','','root/import/macro/l_loginbox',1147642473,1222803253,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'L_loginBox L_loginBox root import macro l loginbox','000001000001000021000009',NULL),('nqNbSUAhk9Vd1zda2SCz9A','RandomThread','','root/import/macro/randomthread',1147642474,1222803258,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'RandomThread RandomThread root import macro randomthread','000001000001000021000010',NULL),('y8XkRdxIperLKkJ3bL5sSQ','r_printable','','root/import/macro/r_printable',1147642474,1222803264,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'r_printable r_printable root import macro r printable','000001000001000021000011',NULL),('UserListTmpl0000000002','UserList with search field selection','','root/import/userlist/userlist-with-search-field-selection',1212000800,1228125752,'3','7','12','WebGUI::Asset::Template',0,'UserList with search field selection UserList with search field selection root import userlist userlist with search field selection UserList','000001000001000047000002',NULL),('UserListTmpl0000000003','UserList with multiple search keywords','','root/import/userlist/userlist-with-multiple-search-keywords',1212001437,1228125758,'3','7','12','WebGUI::Asset::Template',0,'UserList with multiple search keywords UserList with multiple search keywords root import userlist userlist with multiple search keywords UserList','000001000001000047000003',NULL),('UserListTmpl0000000001','Default UserList','','root/import/userlist/default-userlist',1212159641,1228125743,'3','7','12','WebGUI::Asset::Template',0,'Default UserList Default UserList root import userlist default userlist UserList','000001000001000047000001',NULL),('BMybD3cEnmXVk2wQ_qEsRQ','Badge Builder (Default)','','root/import/ems/badge-builder-default',1208530113,1263962529,'3','7','12','WebGUI::Asset::Template',0,'Badge Builder Default Badge Builder Default root import ems badge builder default EMS/BadgeBuilder','000001000001000012000001',NULL),('OOyMH33plAy6oCj_QWrxtg','Lookup Registrant (Default)','','root/import/ems/lookup-registrant-default',1207951375,1257311886,'3','7','12','WebGUI::Asset::Template',0,'Lookup Registrant Default Lookup Registrant Default root import ems lookup registrant default EMS/LookupRegistrant','000001000001000012000002',NULL),('stevecoolmenu000000001','Site Nav','','webgui7/style3/hierarchical-top-nav',1147642505,1224116942,'3','7','12','WebGUI::Asset::Template',0,'Site Nav Site Nav webgui7 style3 hierarchical top nav Navigation','000001000001000051000001',NULL),('7-0-style0000000000051','css03.css','','style3/css03.css',1147642505,1224117026,'3','7','12','WebGUI::Asset::Snippet',0,'css03.css css03.css style3 css03.css body html margin:0px background-color:#b53018 padding:0px body a color:#EE963E;font-weight:bold letter-spacing:1px font-size:8pt main width:98 min-width:790px margin:0px padding:0px padding-top:20px padding-bottom:20px position:relative header background url(\'^FileUrl(style3/header_bg.jpg repeat-x width:100 margin:0px height:115px headerTitle background url(\'^FileUrl(style3/header_left.jpg no-repeat left top height:100 width:100 headerRight background url(\'^FileUrl(style3/header_right.jpg no-repeat right top width:100 height:100 text-align:right position:relative headerRight title position:absolute top:25px left:20px font-family:arial text-align:left title h1 text-transform:uppercase margin-bottom:0px font-weight:normal font-size:26pt margin-top:0px color:white title h1 a color:white text-decoration:none font-size 26pt font-weight normal title h2 margin:0px font-size:12pt color:#bebebe padding-left:20px title img z-index:5 login position:absolute font-size:8pt top:45 right:150px color:white z-index:6 font-family:arial login a color:white font-weight normal letter-spacing 0px loginBox font-size:8pt margin:0px display:inline loginBox input font-size:8pt mainBody width:100 margin:0px height:500px background fff position:relative z-index:0 main > mainBody height:auto min-height:500px contentArea z-index:2 position:relative padding-top:10px padding-left:10px padding-right:20px padding-bottom:20px moz-box-sizing:border-box font-family:verdana font-size:9pt min-height:500px html main mainBody contentArea height:1 topCorner width:100 height:214px position:absolute top:0px left:0px background url(^FileUrl(/style3/main_top.jpg no-repeat z-index:1 bottomCorner width:100 height:211px position:absolute bottom:59px right:0px background url(\'^FileUrl(style3/main_bottom.jpg no-repeat right z-index:1 html bottomCorner bottom:58px footer width:100 margin:0px background:#000 url(\'^FileUrl(style3/footer_right.jpg no-repeat right top height:57px border-top:solid B53018 2px text-align:right position:relative z-index:0 footer copyright color:#3b3b3b font-family:arial position:absolute top:20px left:30px font-size:8pt main yui-skin-sam font-family:verdana font-size:9pt font-weight:normal ','000001000001000051000002',NULL),('jVKLVakT_iA2010_oEuAwg','Style3 Coolmenu','','department_nav',1224116526,1224116526,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'Style3 Coolmenu Style3 Coolmenu department nav','000001000001000051000024',NULL),('UL-ItI4L1Z6-WSuhuXVvsQ','DataTable','','root/import/datatable',1225139673,1225139673,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'DataTable DataTable root import datatable','000001000001000011',NULL),('3rjnBVJRO6ZSkxlFkYh_ug','Default DataTable Template (YUI)','','root/import/datatable/default-datatable-template-yui',1225139643,1233861835,'3','7','3','WebGUI::Asset::Template',0,'Default DataTable Template YUI Default DataTable Template YUI root import datatable default datatable template yui DataTable','000001000001000011000001',NULL),('TuYPpHx7TUyk08639Pc8Bg','Default DataTable Template (HTML)','','root/import/datatable/default-datatable-template-html',1225139643,1233861621,'3','7','3','WebGUI::Asset::Template',0,'Default DataTable Template HTML Default DataTable Template HTML root import datatable default datatable template html DataTable','000001000001000011000002',NULL),('IZkrow_zwvbf4FCH-taVTQ','Inbox','','root/import/account/inbox',1226011853,1226011853,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Inbox Inbox root import account inbox','000001000001000002000002',NULL),('K0YjxqOqr7RupSo6sIdcAg','Friends','','root/import/account/friends',1227074310,1227074310,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Friends Friends root import account friends','000001000001000002000003',NULL),('_ilRXNR3s8F2vGJ_k9ePcg','User','','root/import/account/user',1226643205,1226643205,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'User User root import account user','000001000001000002000004',NULL),('AOjPG2NHgfL9Cq6dDJ7mew','Shop','','root/import/account/shop',1226659753,1236960881,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Shop Shop root import account shop','000001000001000002000005',NULL),('qaVcU0FFzzraMX_bzELqzw','Contributions','','root/import/account/contributions',1227074362,1227074362,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Contributions Contributions root import account contributions','000001000001000002000006',NULL),('matrixtmpl000000000004','Matrix Default Edit Listing','','default-matrix-edit-listing-template',1133743239,1281501163,'3','7','12','WebGUI::Asset::Template',0,'Matrix Default Edit Listing Matrix Default Edit Listing default matrix edit listing template Matrix/EditListing','000001000001000022000004',NULL),('kJf77eCr9GAMiEzWrzsBTA','matrix-ie.css','','new-matrix/matrix-ie.css',1229639255,1281501163,'3','7','12','WebGUI::Asset::Snippet',0,'matrix-ie.css matrix-ie.css new matrix matrix ie.css matrixLeft buttons span matrixRight buttons span padding:0px 0px 0px 0px matrixLeft buttons button matrixRight buttons a top:-3px left:-2px height:22px matrixRight buttons a color:black text-decoration:none padding:1px 3px ','000001000001000022000007',NULL),('4LQT4-bGW4FkiEQLSY5gvQ','show-hide.js','','new-matrix/show-hide.js',1232400287,1281501163,'3','7','12','WebGUI::Asset::Snippet',0,'show-hide.js show-hide.js new matrix show hide.js function showHide(theLink,theId var theId = document.getElementById(theId var theLink = document.getElementById(theLink if(theId.style.display == block theId.style.display = none theLink.innerHTML = Send Creator a Message theLink.className = showLink else theId.style.display = block theLink.innerHTML = Hide theLink.className = hideLink ','000001000001000022000008',NULL),('Vch1Ww7G_JpBhOhXX07RDg','matrx-nav','','new-matrix/matrix-nav',1232664082,1281501163,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'matrx-nav matrix-nav new matrix matrix nav','000001000001000022000010',NULL),('PBtmpl0000000000000063','Default Overview Report','','root/import/survey/default-overview-report',1124395696,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Overview Report Default Overview Report root import survey default overview report Survey/Overview','000001000001000042000001',NULL),('HW-sPoDDZR8wBZ0YgFgPtg','images','','root/import/account/images',1227634350,1227634350,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'images images root import account images','000001000001000002000009',NULL),('hBpisL-_URyZnh9clR5ohA','no_photo.gif','','root/import/account/images/no_photo.gif',1227634417,1227634417,'3','7','12','WebGUI::Asset::File::Image',1,'no_photo.gif no_photo.gif root import account images no photo.gif','000001000001000002000009000001',NULL),('FOBV6KkifreXa4GmEAUU4A','no_photo_sm.gif','','root/import/account/images/no_photo_sm.gif',1227634447,1227634447,'3','7','12','WebGUI::Asset::File::Image',1,'no_photo_sm.gif no_photo_sm.gif root import account images no photo sm.gif','000001000001000002000009000002',NULL),('PBtmpl0000000000000061','Default Survey','','root/import/survey/default-survey',1124395696,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Survey Default Survey root import survey default survey Survey','000001000001000042000003',NULL),('S2_LsvVa95OSqc66ITAoig','EMS Schedule Listing (default)','','root/import/ems/ems-schedule-listing-default2',1242730712,1257311887,'3','7','12','WebGUI::Asset::Template',0,'EMS Schedule Listing default EMS Schedule Listing default root import ems ems schedule listing default2 EMS/Schedule','000001000001000012000007',NULL),('VyCINX2KixKYr2pzQGX9Mg','layout.css','','layout.css',1246968584,1254881103,'3','7','12','WebGUI::Asset::Snippet',0,'layout.css layout.css layout.css styles for the layout asset wg-left float left wg-right float right wg-clear clear both sidebyside wg-content-position oneovertwo wg-content-position width 49 oneovertwo wg-top width 100 oneoverthree wg-first-column oneoverthree wg-second-column oneoverthree wg-third-column threeColumns wg-first-column threeColumns wg-second-column threeColumns wg-third-column width 32 oneoverthree wg-first-column threeColumns wg-first-column margin-right:2 rightcolumn wg-first-column width 65 rightcolumn wg-second-column width 33 ','000001000001000019000006',NULL),('jmlI9IK-lV8n2WMYmmPhAA','Ad Sku','','root/import/ad-sku',1238106173,1238106173,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Ad Sku Ad Sku root import ad sku','000001000001000001',NULL),('AldPGu0u-jm_5xK13atCSQ','Default Purchase Ad Sku Template','','root/import/ad-sku/default-purchase-ad-sku-template',1238106805,1251419124,'3','7','12','WebGUI::Asset::Template',0,'Default Purchase Ad Sku Template Default Purchase Ad Sku Template root import ad sku default purchase ad sku template AdSku/Purchase','000001000001000001000001',NULL),('ohjyzab5i-yW6GOWTeDUHg','Default Manage Ad Sku Template','','root/import/ad-sku/default-manage-ad-sku-template',1238106805,1251425384,'3','7','12','WebGUI::Asset::Template',0,'Default Manage Ad Sku Template Default Manage Ad Sku Template root import ad sku default manage ad sku template AdSku/Manage','000001000001000001000002',NULL),('PBtmpl0000000000000015','Default WebGUI Welcome Message Template','','root/import/auth/webgui/create/default-webgui-welcome-message-template',1237647040,1287545014,'3','7','12','WebGUI::Asset::Template',0,'Default WebGUI Welcome Message Template Default WebGUI Welcome Message Template root import auth webgui create default webgui welcome message template Auth/WebGUI/Welcome','000001000001000005000005000002',NULL),('PBtmpl0000000000000016','Default WebGUI Account Activation Template','','root/import/auth/webgui/create/default-webgui-account-activation-template',1237407798,1287545014,'3','7','3','WebGUI::Asset::Template',0,'Default WebGUI Account Activation Template Default WebGUI Account Activation Template root import auth webgui create default webgui account activation template Auth/WebGUI/Activation','000001000001000005000005000003',NULL),('wrq7hMxb1ewQqZ46xmd8Gg','equal-cols.js','','matrix/equal-cols.js',1235706620,1281501163,'3','7','12','WebGUI::Asset::Snippet',0,'equal-cols.js equal-cols.js matrix equal cols.js function equalCol var colOne = document.getElementById(\'compareForm var colTwo = document.getElementById(\'matrixRight var colOneH = colOne.offsetHeight var colTwoH = colTwo.offsetHeight alert(colOneH + + colTwoH colOne.style.overflow = scroll colOne.style.height = colTwoH 150 + px ','000001000001000022000011',NULL),('matrixtmpl000000000007','Matrix Default Screenshots Config','','matrix-default-screenshots-config',1236594030,1281501163,'3','7','12','WebGUI::Asset::Template',0,'Matrix Default Screenshots Config Matrix Default Screenshots Config matrix default screenshots config Matrix/ScreenshotsConfig','000001000001000022000012',NULL),('matrixtmpl000000000006','Matrix Default Screenshots','','matrix-default-screenshots',1236889702,1281501163,'3','7','12','WebGUI::Asset::Template',0,'Matrix Default Screenshots Matrix Default Screenshots matrix default screenshots Matrix/Screenshots','000001000001000022000013',NULL),('RSAMkc6WQmfRE3TOr1_3Mw','ExpireIncompleteSurveyResponses','','root/import/expireincompletesurveyresponses',1234828062,1250243000,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ExpireIncompleteSurveyResponses ExpireIncompleteSurveyResponses root import expireincompletesurveyresponses','000001000001000042000011',NULL),('ExpireIncResptmpl00001','ExpireIncompleteSurveyResponses','','root/import/expireincompletesurveyresponses/expireincompletesurveyresponses',1236752721,1250243000,'3','7','12','WebGUI::Asset::Template',0,'ExpireIncompleteSurveyResponses ExpireIncompleteSurveyResponses root import expireincompletesurveyresponses expireincompletesurveyresponses ExpireIncompleteSurveyResponses','000001000001000042000011000001',NULL),('NBVSVNLp9X_bV7WrCprtCA','Annotate Image','','image3',1237842096,1237842096,'3','7','12','WebGUI::Asset::Template',0,'Annotate Image Annotate Image image3 ImageAsset','000001000001000017000002',NULL),('qsG6B24a0SC5KrhQjmdZBw','survey.css','','survey.css',1233860274,1287545015,'3','7','12','WebGUI::Asset::Snippet',0,'survey.css survey.css survey.css body margin 0 background-repeat repeat-y background-position 0px 0px survey-header width 80 height 20px margin-left 80px survey margin-left 80px width 85 div.dateanswer overflow auto div.slider-bg position relative background:url(/extras/wobject/Survey/bg-fader-500.gif 5px 0 no-repeat height:68px width:529px div.slider-thumb cursor:default position absolute top 30px left 4px div.slider-min-thumb cursor:default position absolute top 4px div.slider-max-thumb cursor:default position absolute top 4px headertitle display none headertext display none questions display none input.mcbutton font-size 10px font-weight bold text-decoration none background-color CCCCCC background-repeat repeat-x text-align center display block margin 0.5em padding 8em min-width 60px font-family Verdana Arial Helvetica sans-serif color 000000 background-image url(/extras/wobject/Survey/gradient-glossy.png input.mcbutton:hover background-color B6D2F1 font-family Verdana Arial Helvetica sans-serif font-size 10px color 000000 input.mcbutton-selected background-color 172D9D background-repeat repeat-x color FFFFFF font-family Verdana Arial Helvetica sans-serif font-size 10px margin 0.5em padding 8em width 60px text-align center display block font-weight bold background-image url(/extras/wobject/Survey/gradient-glossy.png background-position 0px 0px By default the marker for invalid required fields is a red survey-invalid-marker color FF0000 survey font-family Verdana Arial Helvetica sans-serif font-size 10px border 3px solid 1e1e1e survey survey-header background-color cfcfcf padding-top 1px survey headertitle padding-left 5px survey progress position relative top 26px right 5px text-align right font-style italic survey progress:before content Progress survey headertext border-bottom 2px solid 1e1e1e padding 5px survey questions survey question background-color dfdfdf padding 10px 5px 10px 5px survey question p:before content Q survey scale:before content A survey submitbutton margin-left 5px restartMessage color FF0000 chart float left width 200px height 113px ','000001000001000042000010',NULL),('6uvSLY-ak_w4p_wS8q33cA','Carousel','','root/import/carousel',1239213092,1239213092,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Carousel Carousel root import carousel','000001000001000007',NULL),('CarouselTmpl0000000001','Default Carousel','','root/import/carousel/carousel-default',1239290719,1301973997,'3','7','12','WebGUI::Asset::Template',0,'Default Carousel Default Carousel root import carousel carousel default Carousel','000001000001000007000001',NULL),('CarouselTmpl0000000002','Carousel hidden textareas','','root/import/carousel/carousel-hidden-textareas',1238878995,1239475937,'3','7','12','WebGUI::Asset::Template',0,'Carousel hidden textareas Carousel hidden textareas root import carousel carousel hidden textareas Carousel','000001000001000007000002',NULL),('GaBAW-2iVhLMJaZQzVLE5A','ThingyRecord Templates','','root/import/thingyrecord-templates',1240103565,1240103565,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'ThingyRecord Templates ThingyRecord Templates root import thingyrecord templates','000001000001000045',NULL),('TKmhv8boP3TD2xwSwUBq0g','Default ThingyRecord View','','home/thinyrecord-templates/default-thingyrecord-view',1240103436,1250243000,'3','7','3','WebGUI::Asset::Template',0,'Default ThingyRecord View Default ThingyRecord View home thinyrecord templates default thingyrecord view ThingyRecord/View','000001000001000045000001',NULL),('fowHfgOkJtAxdst7rugTog','Story Manager','','root/import/storymanager',1236184911,1252595993,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Story Manager Story Manager root import storymanager','000001000001000040',NULL),('3QpYtHrq_jmAk1FNutQM5A','Story Template','','root/import/storymanager/storytemplate',1239237827,1253636379,'3','7','4','WebGUI::Asset::Template',0,'Story Template Story Template root import storymanager storytemplate Story','000001000001000040000001',NULL),('yxD5ka7XHebPLD-LXBwJqw','StoryArchive','','root/import/storymanager/storyarchive',1239918573,1253635396,'3','7','4','WebGUI::Asset::Template',0,'StoryArchive StoryArchive root import storymanager storyarchive StoryArchive','000001000001000040000002',NULL),('A16v-YjWAShXWvSACsraeg','StoryTopic','','root/import/storymanager/storytopic',1239918710,1285124154,'3','7','4','WebGUI::Asset::Template',0,'StoryTopic StoryTopic root import storymanager storytopic StoryTopic','000001000001000040000005',NULL),('0EAJ9EYb9ap2XwfrcXfdLQ','Story Archive Asset List','','root/import/storymanager/keywordlist',1240262820,1250243000,'3','7','4','WebGUI::Asset::Template',0,'Story Archive Asset List Story Archive Asset List root import storymanager keywordlist StoryArchive/KeywordList','000001000001000040000006',NULL),('9j0_Z1j3Jd0QBbY2akb6qw','Default Map View','','home/map/map-templates/default-map-view',1238053232,1304392055,'3','7','3','WebGUI::Asset::Template',0,'Default Map View Default Map View home map map templates default map view Map/View','000001000001000020000001',NULL),('oHh0UqAJeY7u2n--WD-BAA','Default Edit Map Point','','home/map/map-templates/default-edit-map-point',1238040667,1304392055,'3','7','3','WebGUI::Asset::Template',0,'Default Edit Map Point Default Edit Map Point home map map templates default edit map point MapPoint/Edit','000001000001000020000002',NULL),('u9vfx33XDk5la1-QC5FK7g','Default Map Point View','','home/map/map-templates/default-map-point-view',1238048383,1304392055,'3','7','3','WebGUI::Asset::Template',0,'Default Map Point View Default Map Point View home map map templates default map point view MapPoint/View','000001000001000020000003',NULL),('kwTL1SWCk0GlpiJ5zAAEPQ','surveyedit.css','','root/import/survey/surveyedit.css',1244488512,1287545015,'3','7','12','WebGUI::Asset::Snippet',0,'surveyedit.css surveyedit.css root import survey surveyedit.css editor_container visibility hidden z-index 100 loading-mask position absolute left 0 top 0 width 100 height 100 z-index 20000 background-color white opacity:0.6 filter:alpha(opacity=60 loading position absolute left 50 top 50 padding 2px z-index 20001 height auto margin 35px 0 0 30px loading loading-indicator background url(^Extras(\"wobject/Survey/rel_interstitial_loading.gif no-repeat color 555 font bold 13px tahoma,arial,helvetica padding 18px 80px margin 0 text-align center height auto z-index 20002 div.testarea width 200px height 100px z-index 999 border 1px solid gray background f7f7f7 position absolute top 5 left:5 div.trashcan border 1px solid gray width 175px height 50px div.editarea margin-top:40px padding:10px float:left border 1px solid gray div.editquestion padding:10px float:left div.editanswer padding:10px float:left submitbutton padding:20px div.entry padding-bottom:10px padding-left:10px ul.draglist list-style none margin:0 padding:0 ul.draglist li margin 1px ul.questionList position relative background f7f7f7 border 1px solid gray list-style none margin:0 padding:0 min-height 40px li.section background-color CCCCFF border:1px solid 7EA6B2 cursor move min-height 10px li.question background-color D1E6EC border:1px solid 7EA6B2 cursor move padding-left:10px min-height 10px li.answer background-color F1FFB8 border:1px solid 7EA6B2 cursor move padding-left:15px min-height 10px sections-panel li.selected background-image url(^Extras(\"toolbar/bullet/moveRight.gif background-position:99 center background-repeat no-repeat font-weight:bold goto-yui-ac width:15em margin-top:0.5em wGwarning background-color:#FF6666 border:1px solid red margin:5px padding:10px warning padding 5px sections-panel bd overflow auto background-color:#fff padding:10px buttons height 30px sections-panel_c yui-resize yui-resize-handle-r right 6px make room for the scroll-bars sections-panel div.ft font-size 100 ','000001000001000042000014',NULL),('i5kt5aodVs_oepNEkE7Okw','poll.css','','poll.css',1242312883,1242312883,'3','7','12','WebGUI::Asset::Snippet',0,'poll.css poll.css poll.css styles for the poll asset pollColor background-color:#808080 pollOptions pollSubmit border:0 margin:0 padding:0 ','000001000001000027000002',NULL),('uCn31PzislTZlgt_79j7cQ','style.css','','css/style.css',1258524916,1258524916,'3','7','12','WebGUI::Asset::Snippet',0,'style.css style.css css style.css fail safe topWrapper font:82.5%/1.3 helvetica,arial,sans-serif width:98 overflow:hidden margin:0 auto 2em nav float:left width:20 margin:1em 0 2em nav menu list-style:none margin:0 padding:0 contentArea float:right width:77 margin:1em 0 2em padding:5px 1 border:1px solid ccc adminControls margin:1em 0 padding:1em 0 0 border-top:1px dotted ccc ','000001000001000041000006',NULL),('FJbUTvZ2nUTn65LpW6gjsA','Profile Account Layout','','root/import/account/profile/profile-account-layout',1227070381,1256092369,'3','7','12','WebGUI::Asset::Template',0,'Profile Account Layout Profile Account Layout root import account profile profile account layout Account/Layout','000001000001000002000001000001',NULL),('75CmQgpcCSkdsL-oawdn3Q','Default Edit Profile Template','','root/import/account/profile/default-edit-profile-template',1227052575,1253555614,'3','7','12','WebGUI::Asset::Template',0,'Default Edit Profile Template Default Edit Profile Template root import account profile default edit profile template Account/Profile/Edit','000001000001000002000001000002',NULL),('2CS-BErrjMmESOtGT90qOg','Default View Profile Template','','root/import/account/profile/default-view-profile-template',1227070888,1248549087,'3','7','12','WebGUI::Asset::Template',0,'Default View Profile Template Default View Profile Template root import account profile default view profile template Account/Profile/View','000001000001000002000001000003',NULL),('MBmWlA_YEA2I6D29OMGtRg','Default Profile Error Template','','root/import/account/profile/default-profile-error-template',1226542675,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Profile Error Template Default Profile Error Template root import account profile default profile error template Account/Profile/Error','000001000001000002000001000004',NULL),('gfZOwaTWYjbSoVaQtHBBEw','Inbox Account Layout','','root/import/account/inbox-account-layout',1226974679,1249407461,'3','7','12','WebGUI::Asset::Template',0,'Inbox Account Layout Inbox Account Layout root import account inbox account layout Account/Layout','000001000001000002000002000001',NULL),('c8xrwVuu5QE0XtF9DiVzLw','Default Inbox View Template','','root/import/account/inbox/default-inbox-view-template',1226894351,1273032723,'3','7','12','WebGUI::Asset::Template',0,'Default Inbox View Template Default Inbox View Template root import account inbox default inbox view template Account/Inbox/View','000001000001000002000002000002',NULL),('0n4HtbXaWa_XJHkFjetnLQ','Default Inbox View Message Template','','root/import/account/inbox/default-inbox-view-message-template',1226894994,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Inbox View Message Template Default Inbox View Message Template root import account inbox default inbox view message template Account/Inbox/ViewMessage','000001000001000002000002000003',NULL),('ErEzulFiEKDkaCDVmxUavw','Default Inbox Error Template','','root/import/account/inbox/default-inbox-error-template',1226895484,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Inbox Error Template Default Inbox Error Template root import account inbox default inbox error template Account/Inbox/Error','000001000001000002000002000004',NULL),('6uQEULvXFgCYlRWnYzZsuA','Default Inbox Send Message Template','','root/import/account/inbox/default-inbox-send-message-template',1226896682,1279073450,'3','7','12','WebGUI::Asset::Template',0,'Default Inbox Send Message Template Default Inbox Send Message Template root import account inbox default inbox send message template Account/Inbox/SendMessage','000001000001000002000002000005',NULL),('DUoxlTBXhVS-Zl3CFDpt9g','Default Message Confirm Template','','root/import/account/inbox/default-message-confirm-template',1226896802,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Message Confirm Template Default Message Confirm Template root import account inbox default message confirm template Account/Inbox/Confirm','000001000001000002000002000006',NULL),('1Q4Je3hKCJzeo0ZBB5YB8g','Default Manage Invitations Template','','root/import/account/inbox/default-manage-invitations-template',1226898445,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Manage Invitations Template Default Manage Invitations Template root import account inbox default manage invitations template Account/Inbox/ManageInvitations','000001000001000002000002000007',NULL),('5A8Hd9zXvByTDy4x-H28qw','Default Invitation Confirmation Template','','root/import/account/inbox/default-invitation-confirmation-template',1226899462,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Invitation Confirmation Template Default Invitation Confirmation Template root import account inbox default invitation confirmation template Account/Inbox/Confirm','000001000001000002000002000008',NULL),('VBkY05f-E3WJS50WpdKd1Q','Default View Invitation Template','','root/import/account/inbox/default-view-invitation-template',1226899241,1248549087,'3','7','12','WebGUI::Asset::Template',0,'Default View Invitation Template Default View Invitation Template root import account inbox default view invitation template Account/Inbox/ViewInvitation','000001000001000002000002000009',NULL),('XgcsoDrbC0duVla7N7JAdw','Default Invite User Email Template','','root/import/account/inbox/default-invite-user-email-template',1226973330,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Invite User Email Template Default Invite User Email Template root import account inbox default invite user email template Account/Inbox/InviteUserMessage','000001000001000002000002000010',NULL),('cR0UFm7I1qUI2Wbpj--08Q','Default Invite User Form Template','','root/import/account/inbox/default-invite-user-form-template',1226964738,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Invite User Form Template Default Invite User Form Template root import account inbox default invite user form template Account/Inbox/InviteUser','000001000001000002000002000011',NULL),('SVIhz68689hwUGgcDM-gWw','Default Invite User Confirm Template','','root/import/account/inbox/default-invite-user-confirm-template',1226973314,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Invite User Confirm Template Default Invite User Confirm Template root import account inbox default invite user confirm template Account/Inbox/InviteUserConfirm','000001000001000002000002000012',NULL),('zrNpGbT3odfIkg6nFSUy8Q','Friends Layout Template','','root/import/account/friends/friends-layout-template',1226994016,1249407461,'3','7','12','WebGUI::Asset::Template',0,'Friends Layout Template Friends Layout Template root import account friends friends layout template Account/Layout','000001000001000002000003000001',NULL),('1Yn_zE_dSiNuaBGNLPbxtw','Default Friends View Template','','root/import/account/friends/default-friends-view-template',1226994422,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Friends View Template Default Friends View Template root import account friends default friends view template Account/Friends/View','000001000001000002000003000002',NULL),('AZFU33p0jpPJ-E6qLSWZng','Default Friends Edit Template','','root/import/account/friends/default-friends-edit-template',1226994865,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Friends Edit Template Default Friends Edit Template root import account friends default friends edit template Account/Friends/Edit','000001000001000002000003000003',NULL),('AGJBGviWGAwjnwziiPjvDg','Default Send Request Template','','root/import/account/friends/default-send-request-template',1226995497,1248549087,'3','7','12','WebGUI::Asset::Template',0,'Default Send Request Template Default Send Request Template root import account friends default send request template Account/Friends/SendRequest','000001000001000002000003000004',NULL),('7Ijdd8SW32lVgg2H8R-Aqw','Default Friends Error Template','','root/import/account/friends/default-friends-error-template',1226995714,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Friends Error Template Default Friends Error Template root import account friends default friends error template Account/Friends/Error','000001000001000002000003000005',NULL),('K8F0j_cq_jgo8dvWY_26Ag','Default Friends Confirmation Template','','root/import/account/friends/default-friends-confirmation-template',1226995643,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Friends Confirmation Template Default Friends Confirmation Template root import account friends default friends confirmation template Account/Friends/Confirm','000001000001000002000003000006',NULL),('G5V6neXIDiFXN05oL-U3AQ','Default Remove Friends Confirmation Template','','root/import/account/friends/default-remove-friends-confirmation-template',1226995768,1248549087,'3','7','12','WebGUI::Asset::Template',0,'Default Remove Friends Confirmation Template Default Remove Friends Confirmation Template root import account friends default remove friends confirmation template Account/Friends/Confirm','000001000001000002000003000007',NULL),('9ThW278DWLV0-Svf68ljFQ','Account Layout','','root/import/account/user/account-layout',1226647187,1249407460,'3','7','12','WebGUI::Asset::Template',0,'Account Layout Account Layout root import account user account layout Account/Layout','000001000001000002000004000001',NULL),('aUDsJ-vB9RgP-AYvPOy8FQ','Shop Account Layout','','root/import/account/shop/shop-account-layout',1226660439,1263962529,'3','7','12','WebGUI::Asset::Template',0,'Shop Account Layout Shop Account Layout root import account shop shop account layout Account/Layout','000001000001000002000005000001',NULL),('-zxyB-O50W8YnL39Ouoc4Q','Default My Sales Template','','root/import/default-my-sales-template',1236959717,1248563425,'3','7','12','WebGUI::Asset::Template',0,'Default My Sales Template Default My Sales Template root import default my sales template Shop/MySales','000001000001000002000005000002',NULL),('b4n3VyUIsAHyIvT-W-jziA','Contributions Layout','','root/import/account/contributions/contributions-layout',1227074747,1249407461,'3','7','12','WebGUI::Asset::Template',0,'Contributions Layout Contributions Layout root import account contributions contributions layout Account/Layout','000001000001000002000006000001',NULL),('1IzRpX0tgW7iuCfaU2Kk0A','Default Contributions View','','root/import/account/contributions/default-contributions-view',1227079721,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Contributions View Default Contributions View root import account contributions default contributions view Account/Contrib/View','000001000001000002000006000002',NULL),('N716tpSna0iIQTKxS4gTWA','Default Account Layout','','root/import/account/default-account-layout2',1226604666,1281501163,'3','7','12','WebGUI::Asset::Template',0,'Default Account Layout Default Account Layout root import account default account layout2 Account/Layout','000001000001000002000007',NULL),('CalendarMonth000000001','Default Calendar Month','','root/import/calendar-templates/default-calendar-month',1204890713,1279073449,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Month Default Calendar Month root import calendar templates default calendar month Calendar/Month','000001000001000006000007',NULL),('q5O62aH4pjUXsrQR3Pq4lw','Default Gallery View Album Thumbnails','','root/import/gallery-templates/default-gallery-view-album-thumbnails',1197825772,1285124155,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery View Album Thumbnails Default Gallery View Album Thumbnails root import gallery templates default gallery view album thumbnails GalleryAlbum/ViewThumbnails','000001000001000015000004',NULL),('kaPRSaf8UKiskiGEgJgLAw','images','','root/import/gallery-templates/images',1197330678,1285124155,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'images images root import gallery templates images','000001000001000015000017',NULL),('matrixtmpl000000000001','Matrix Default View','','matrix-default-view-template',1133743238,1281501162,'3','7','12','WebGUI::Asset::Template',0,'Matrix Default View Matrix Default View matrix default view template Matrix','000001000001000022000002',NULL),('matrixtmpl000000000003','Matrix Default Detailed Listing','','matrix-default-detailed-listing',1133743238,1281501163,'3','7','12','WebGUI::Asset::Template',0,'Matrix Default Detailed Listing Matrix Default Detailed Listing matrix default detailed listing Matrix/Detail','000001000001000022000003',NULL),('alraubvBu-YJJ614jAHD5w','matrix-nav-tmpl','','new-matrix/matrix-nav-tmpl',1232664015,1281501163,'3','7','12','WebGUI::Asset::Template',0,'matrix-nav-tmpl matrix-nav-tmpl new matrix matrix nav tmpl Navigation','000001000001000022000009',NULL),('PBtmpl0000000000000062','Default Gradebook Report','','root/import/survey/default-gradebook-report',1124395696,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Gradebook Report Default Gradebook Report root import survey default gradebook report Survey/Gradebook','000001000001000042000002',NULL),('d8jMMMRddSQ7twP4l1ZSIw','Default Survey Take','','root/import/survey/default-survey-take',1227248175,1253555614,'3','7','12','WebGUI::Asset::Template',0,'Default Survey Take Default Survey Take root import survey default survey take Survey/Take','000001000001000042000005',NULL),('E3tzZjzhmYoNlAyP2VW33Q','Edit Story','','root/import/storymanager/editstory',1239236292,1303183716,'3','7','4','WebGUI::Asset::Template',0,'Edit Story Edit Story root import storymanager editstory Story/Edit','000001000001000040000003',NULL),('TbDcVLbbznPi0I0rxQf2CQ','Story Template Topic','','root/import/storymanager/storytemplatetopic',1237524306,1253636379,'3','7','4','WebGUI::Asset::Template',0,'Story Template Topic Story Template Topic root import storymanager storytemplatetopic Story','000001000001000040000004',NULL),('brxm_faNdZX5tRo3p50g3g','Map Templates','','home/map/map-templates',1238054297,1304392055,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Map Templates Map Templates home map map templates','000001000001000020',NULL),('i9-G00ALhJOr0gMh-vHbKA','Inbox SMS Notification','','root/import/inbox-sms-notification',1250408924,1250408924,'3','7','4','WebGUI::Asset::Template',0,'Inbox SMS Notification Inbox SMS Notification root import inbox sms notification Account/Inbox/Notification','000001000001000002000002000014',NULL),('S3zpVitAmhy58CAioH359Q','Default Test Results','','root/import/survey/default-test-results',1242893798,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Test Results Default Test Results root import survey default test results Survey/TestResults','000001000001000042000013',NULL),('b1316COmd9xRv4fCI3LLGA','Inbox Notification','','inbox_notification',1236956475,1236956475,'3','7','4','WebGUI::Asset::Template',0,'Inbox Notification Inbox Notification inbox notification Account/Inbox/Notification','000001000001000002000002000013',NULL),('nWNVoMLrMo059mDRmfOp9g','Default Feedback','','root/import/survey/default-feedback',1242259265,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Feedback Default Feedback root import survey default feedback Survey/Feedback','000001000001000042000015',NULL),('l0guT3vTR3B8cL6vtP-g3A','Contribute','You don\'t have to be a developer to become a project contributor. Examples of how you can contribute include:\n \n\nTranslators - Visit i18n.webgui.org\n and either help translate a few items in an existing language, or \ncreate a new translation. \nGraphic Des','contribute',1271445611,1285124369,'3','7','3','WebGUI::Asset::Wobject::Article',1,'Contribute contribute contribute You don\'t have to be a developer to become a project contributor Examples of how you can contribute include Translators Visit i18n.webgui.org and either help translate a few items in an existing language or create a new translation Graphic Designers Create WebGUI style themes icons or fix UI bugs You can contribute your items to WebGUI\'s Addons and Plugins area for others to download and use Usability Experts Help make WebGUI more accessable and easier to use by submitting RFEs Even better submit an RFE that\'s ready to implement by including the code Doc Writers Write documents in WebGUI\'s wiki help out on the boards improve WebGUI\'s built in documentation Testers Validate WebGUI\'s features against its documentation search for errors and report bugs Test writers If you have some Perl abilities you can help develop unit tests to make sure the WebGUI API is behaving as documented Developers Write a new feature for WebGUI like a macro asset wobject auth module or workflow activity and contribute it to the Addons and Plugins If you\'re interested in developing for WebGUI be sure to check out the Development Best Practices wiki article Bug Fixers Cruise the bug list and submit patches to correct the problem Core Developers Becoming a core developer is a privilege To earn it you have to demonstrate through bug fixes and/or contributions that you can make sound programming decisions without the need for someone to scrutinize everything you check in WebGUI is a very large and complex application so getting to this level can take some time Core developers are developers with commit privileges to the subversion repository Advocate Spread the word about WebGUI tell people about how you use it and how it\'s helped you.Encourage people to try it out Marketing and Promotion If you have a talent for marketing advertising or promotion you can be a super advocate Have a marketing idea Contact tavis AT plainblack DOT com Make a WebGUI banner or print ad and contribute it Maybe you have a design for a cool wallpaper or t-shirt anything to get the word out ','000001000002000004000002',NULL),('D6cJpRcey35aSkh9Q_FPUQ','Default EU User Screen','','root/import/default-eu-user-screen',1242407725,1326776037,'3','7','12','WebGUI::Asset::Template',0,'Default EU User Screen Default EU User Screen root import default eu user screen TaxDriver/EU/User','000001000001000036000019',NULL),('lo1rpxn3t8YPyKGers5eQg','Friend Manager','Templates for the Friend Manager ','root/import/account/friendmanager',1238625621,1238625621,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Friend Manager Friend Manager root import account friendmanager Templates for the Friend Manager','000001000001000002000010',NULL),('64tqS80D53Z0JoAs2cX2VQ','FriendManager View Template','','root/import/account/friendmanager/view',1239400975,1295931508,'3','7','4','WebGUI::Asset::Template',0,'FriendManager View Template FriendManager View Template root import account friendmanager view Account/FriendManager/View','000001000001000002000010000001',NULL),('lG2exkH9FeYvn4pA63idNg','Friend Manager Edit Friends','','root/import/account/friendmanager/edit',1239383808,1289967962,'3','7','4','WebGUI::Asset::Template',0,'Friend Manager Edit Friends Friend Manager Edit Friends root import account friendmanager edit Account/FriendManager/Edit','000001000001000002000010000002',NULL),('newslettercs0000000001','Newsletter Manager (default)','','newslettercstemplate',1185754569,1252682678,'3','7','3','WebGUI::Asset::Template',0,'Newsletter Manager default Newsletter Manager newslettercstemplate Collaboration','000001000001000026000002',NULL),('iCM9pRY5yYyjufROgaCDlg','storyManager.css','','storymanager.css',1253305659,1253305659,'3','7','12','WebGUI::Asset::Snippet',0,'storyManager.css storyManager.css storymanager.css editStory width 100 editStory legend font-size 1.8em border-bottom 2px solid editStory tbody width 943px editStory td padding 5px editStory story float:left editStory story label editStory photo label display block width 100 text-align right editStory photoContainer border 1px solid float:left margin 10px 0 0 20px editStory photoContainer photoHeader font-size 1.2em font-weight bold editStory buttons clear both text-align right padding 10px 0 editStory story_formId_tbl width 100 important editStory fieldset border none storyArchive width 100 storyArchive h3 border-bottom 2px solid margin-bottom 10px storyArchive storyList list-style-type none padding-left 0 storyArchive storyList li padding-left 10px margin-bottom 10px storyArchive pagination float left list-style-type none storyArchive keywords width 100 clear both storyArchive img border none storyArchive controls a margin-right 10px viewStory storyTitle viewStory storyUpdated viewStoryTopic storyTitle viewStoryTopic storyUpdated float left viewStory storyTitle viewStoryTopic storyTitle font-size 1.5em width 100 viewStory storyHighlights viewStoryTopic storyHighlights float:right margin-top 1.5em viewStory storyPhoto viewStoryTopic storyPhoto float left margin 0 10px 10px 0 viewStory photoCaption viewStoryTopic photoCaption width 496px padding 5px display:block viewStory clear viewStoryTopic clear clear both storyTopic width 100 storyTopic h3 border-bottom 2px solid storyTopic topStory width 340px float left storyTopic storyList width 250px float left storyTopic storyListBig width 100 float left htmltagcloud wg-clear clear:both ','000001000001000040000007',NULL),('zb_OPKNqcTuIjdvvbEkRjw','article.css','','article.css',1247484073,1256092368,'3','7','12','WebGUI::Asset::Snippet',0,'article.css article.css article.css styles for the article asset withImage articleContent linkedImage articleContent width:100 overflow:hidden withImage articleImage linkedImage articleImage float:right margin:0 0 10px 10px linkedImage caption display:block ','000001000001000004000005',NULL),('PBtmpl0000000000000210','Request Tracker Post Form','','request-tracker-template2',1147642410,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Request Tracker Post Form Request Tracker Post Form request tracker template2 Collaboration/PostForm','000001000001000008000028',NULL),('pbrobot000000000000001','robots.txt','','robots.txt',1147642511,1256092369,'3','7','12','WebGUI::Asset::Snippet',0,'robots.txt robots.txt robots.txt User-agent Disallow op=auth Disallow op=account Disallow op=ajaxGetI18N Disallow op=makePrintable Disallow op=viewHelp Disallow op=viewHelpIndex','000001000001000033',NULL),('4qh0kIsFUdd4Ox-Iu1JZgg','EMS','','root/import/ems',1208725439,1257311886,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'EMS EMS root import ems','000001000001000012',NULL),('hreA_bgxiTX-EzWCSZCZJw','Print Remaining Tickets Template (default)','','root/import/ems/default-print-remaining-tickets-template',1257311887,1257311887,'3','7','12','WebGUI::Asset::Template',0,'Print Remaining Tickets Template default Print Remaining Tickets Template default root import ems default print remaining tickets template EMS/PrintRemainingTickets','000001000001000012000008',NULL),('P_4uog81vSUK4KxuW_4GUA','css','','css',1258524916,1258524916,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'css css css','000001000001000054',NULL),('H_-8zjtWsO1FUpQqNtkxNQ','wg-base.css','','css/wg-base.css',1258524916,1258524916,'3','7','12','WebGUI::Asset::Snippet',0,'wg-base.css wg-base.css css wg base.css In this stylesheet you can find the styles that are used in more than one template For example file/attachment icons pagination etc Elements that are styled with this stylesheet have a classname that starts with wg general wg-icon border:0px none vertical-align middle wg-clear clear:both inline list pagination wg-inline margin:0 0 1em padding:0 wg-inline li display:inline margin:0 padding:0 wg-inline li.active font-weight:bold forms wg-captchaImage border:0 none vertical-align:middle margin-left:5px ','000001000001000054000001',NULL),('0iMMbGN3BevuCBHjjLiQNA','WebGUI/Deactivate','','root/import/auth/webgui/deactivate',1269401469,1287545015,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI/Deactivate WebGUI/Deactivate root import auth webgui deactivate','000001000001000005000009',NULL),('zaHUYsE_PgKk8hnVd8ffEQ','WebGUI Deactivate Account Template','','default_webgui_deactivate_account_template',1269401469,1287545015,'3','7','12','WebGUI::Asset::Template',0,'WebGUI Deactivate Account Template WebGUI Deactivate Account Template default webgui deactivate account template Auth/WebGUI/Deactivate','000001000001000005000009000001',NULL),('6A4yIjWwJfIE0Ep-I0jutg','LDAP/Deactivate','','root/import/auth/ldap/deactivate',1269401469,1287545015,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP/Deactivate LDAP/Deactivate root import auth ldap deactivate','000001000001000005000010',NULL),('_P4PMiraGsLTfOjK4fYQPQ','LDAP Deactivate Account Template','','default_ldap_deactivate_account_template',1269401469,1287545015,'3','7','12','WebGUI::Asset::Template',0,'LDAP Deactivate Account Template LDAP Deactivate Account Template default ldap deactivate account template Auth/LDAP/Deactivate','000001000001000005000010000001',NULL),('_XfvgNH__bY1ykMiKYSobQ','account.css','','root/import/account/account.css',1233168041,1281501163,'3','7','12','WebGUI::Asset::Snippet',0,'account.css account.css root import account account.css general WGsubContent WGsubContent a WGsubContent a:link color:#000000 important WGbutton float:right padding-right:10px centered text-align center WGaccount_message background-color white border solid BECEF8 1px height 300px margin-bottom 10px margin-left 60px margin-top 20px overflow:-moz-scrollbars-vertical overflow-x:hidden overflow-y:scroll padding:10px text-align left vertical-align:top width 90 WGprofileMember font-size:9px margin-right:20px text-align:right WGmember color:#3e4f77 font 9px Verdana Arial Helvetica sans-serif text-align:center WGphotostyle border:solid 3e4f77 2px margin-bottom:5px margin-top:5px rightalign float right WGsend float:right padding-right 75px bio addtonetwork network WGbordered border-bottom dashed BECEF8 2px padding-bottom 10px WGfriendpic border solid BECEF8 1px WGinvitemsg width 600px height 150px ol.WGProfile_interests color:#0B2259 font-size:15px font-weight:bold list-style-type:none margin:0px padding:0px padding:5px 5px ol.WGProfile_interests li margin-bottom:15px ol.WGProfile_interests span font-size:12px font-weight:normal color:black WGpBio border-bottom:solid DDE6FB 1px margin:0px margin-bottom:5px padding-bottom:5px WGpBio div background-color:#DDE6FB padding:2px 5px margin-bottom:2px WGprogram font-size 9px contributions WGContribCount font-size:12px text-align:left padding:3px WGContribTitle background-color:#f2f5fa border solid d8dee8 1px color:#0B2259 font-size:12px font-weight:bold min-height:25px padding:3px text-align:center text-decoration underline WGContribTitleLeft background-color:#f2f5fa border solid d8dee8 1px color:#0B2259 font-size:12px font-weight:bold min-height:25px padding:3px text-align:center text-decoration underline WGContribEntry text-align:center padding:3px WGContribEntryLeft text-align:left padding:3px edit box WGeditBox background:white url(images/edit_box_bg.jpg no-repeat bottom left border:solid 8DABF1 2px display:block font-family:verdana font-size:9px font-weight:bold left:100px moz-box-sizing:border-box padding:5px position:absolute top:100px width:590px z-index:100 WGeditBox input WGeditBox select font-size:9px friends WGfriends_name font-weight:bold width:90 WGfriends_photo font-weight:bold width:10 WGfriends_photo img height 50px width 50px WGfriends_private float:right padding-bottom 5px width 50 WGfriends_ninety vertical-align:top width 90 WGfriends_seventy vertical-align:top width 70 WGfriends_ten width 10 WGfriends_ten img height 50px width 50px WGfriends_twenty width 20 WGaccepts padding-bottom 5px inbox WGProfile_msgcontainer padding:2px WGinbox_count font-size:12px font-weight:bold padding:3px text-align:left WGinbox_errors font-weight:bold color:red text-align:center WG_inbox_InviteLabel width:50px text-align:right WG_inbox_InviteLabelView font-weight:bold width:120px WGmsgcontainer padding:6px display:block margin-bottom:6px inbox contacts WGdatacells border-bottom dashed BECEF8 1px WGinbox_contactsTbl background-color:#EEF2FD font-family:arial font-size:9pt width:100 contacts height 275px overflow auto inbox forms WGbuttons_left float left WGbuttons_right float right WGinbox_from color black font-weight normal text-decoration none WGinbox_subject width 530px WGinbox_messageTo background-color white border solid BECEF8 1px height 50px overflow:-moz-scrollbars-vertical overflow-x:hidden overflow-y:scroll width 530px inbox pagination WGinbox_buttons display:inline float:left font-size:10px text-align:left width:70 WGinbox_pagination display:inline text-align:right width:20 WGinbox_messagerpp font-size:10px display:inline text-align:right width:20 WGmessage display:inline float:left font-size:10px text-align:left width:70 WGmessagerpp font-size:10px display:inline text-align:right float right WG-previous-next float right inbox threads WGevenThread background-color e1e8fb border-bottom 1px solid bfcef9 padding 8px text-align:center WGoddThread background-color eef2fd border-bottom 1px solid bfcef9 padding 8px text-align center pagination WGProfile_pagination font-size:10px text-align:right width:20 WGProfile_messagerpp font-size:10px display:inline text-align:right width:20 WGProfile_paginationLeft font-size:10px text-align:left width:20 WGProfile_paginationCenter font-size:10px text-align:center width:20 WGProfile_pagination a background-color:#f2f5fa border:solid bfc8dc 1px font-size:10px font-weight:bold padding:1px 5px text-decoration:none WGProfile_pagination a:hover background-color:#d8dee8 color:white WGProfile_pagination prevNext background-color transparent border none color black WGProfile_pagination prevNext:hover background-color transparent border none color black WGProfile_pagination active background-color:#d8dee8 border:solid bfc8dc 1px color:white font-size:10px font-weight:bold padding:1px 5px text-decoration:none WGProfile_pagination img vertical-align:middle margin-top:2px border:none profile WGProfile_registration background:none border:none font-size:9pt font-family:arial margin:0 padding:0 width:100 WGProfile_registration header background-color:#818997 color:#3e4f77 font-size:10px font-weight:bold text-align:left WGProfile_registration header a color:white text-decoration:none WGProfile_registration help a font-weight:bold text-decoration:none WGProfile_registration inputText font-size:10px margin-right:1px WGProfile_registration label font-size:9pt font-weight:bold text-align:right white-space:nowrap width:1 WGProfile_registration labelLeft font-size:9pt font-weight:bold white-space:nowrap width:1 text-align left vertical-align top WGProfile_registration smallLabel font-size:8px text-align:center WGProfile_registration smallText font-size:9px WGinboxTbl display:block margin 4px padding 2px WGProfile_registration bar WGProfile_registration barRight background-color:#f2f5fa border solid d8dee8 1px color:#3e4f77 font-size:14px font-weight:bold margin:10px 0px 10px 0px min-height:25px padding:4px 4px 0px 4px vertical-align:middle WGProfile_registration bar text-align center WGProfile_registration barRight text-align right WGProfile_registration bar a color:#0B2259 font-size:10px font-weight:bold WGProfile_registration barFive background-color:#f2f5fa border solid d8dee8 1px color:#3e4f77 font-size:14px font-weight:bold text-align:center margin-right:3px min-height:25px padding:2px width:4.3 WGProfile_registration barTen background-color:#f2f5fa border solid d8dee8 1px color:#3e4f77 font-size:14px font-weight:bold min-height:25px padding:2px text-align:center width:7.2 WGProfile_registration barFifteen background-color:#f2f5fa border solid d8dee8 1px color:#3e4f77 font-size:14px font-weight:bold margin-right:3px min-height:25px padding:2px text-align:center width:15 WGProfile_registration barFifty background-color:#f2f5fa border solid d8dee8 1px color:#3e4f77 font-size:14px font-weight:bold margin-right:3px min-height:25px padding:2px text-align:center width:50 WGbarContainer display:block margin:10px 0px 10px 0px width:100 profile edit WGfields padding 2px WGfields_left padding:2px vertical-align:top width 15 WGfields_right display:inline float:right padding:2px text-align:right width:80 vertical-align top WGProfile display:table margin 0 padding 0 width:100 WGProfileFields border:0 padding 0 margin:0 width 100 WGProfileFields ol display inline list-style-type none WGProfileFields ul list-style-type none display inline WGProfileFields ul li display inline-block display inline zoom 1 profile view WGProfile_accepts text-align:right background-color:gray padding:4px width:100 WGviewContainer margin:0 padding:0 width:90 WGinternational background-color:red color:white display:inline font-weight:bold padding:4px text-align:center WGcategoryLabel vertical-align:top width:90 WGprivateMessage background-color:gray padding:4px text-align:right WGprofileAlert background-color:red color:white font-weight:bold padding:4px text-align:center width:100 WGprofilePhoto vertical-align:top profile errors WGprofileErrors background-color ff0000 color ffffff font-weight bold text-align center WGprofilefield_required_off WGprofilefield_required background-color ffd6bb WGprofilefield_error background-color FF9494 WGerrorMsg font-weight:bold color:red text-align:center user WGuserInvite_subject background-color white border solid BECEF8 1px height 25px text-align left width 500px margin-left 50px margin-bottom 20px overflow:-moz-scrollbars-vertical overflow-x:hidden overflow-y:scroll view profile WGprofile_canEdit text-align:center background-color:red padding:4px color:white font-weight:bold WGprofile_fieldLabel background DDE6FB padding:2px width:200px WGprofile_fieldData margin-left 5px WGprofile_fieldStatus padding:4px color:white font-weight:bold TABS TABS outer WGbottombutton float:right padding-right:2px padding-top 2px position relative WGcontent padding:10px WGcleartab clear both height:0 WGsubContent color setting for border under outer tabs that surrounds inner tabs border solid d8dee8 6px WGtopbutton float:right clear:both padding-right:2px padding-top 2px position relative ul.WGtopTabs ul.WGtopTabs li list-style-type:none margin:10px 0px 0px 0px padding:0px position:relative width:auto Xposition:relative zoom:1 ul.WGtopTabs li display:block float:left margin-right 3px ul.WGtopTabs li b background-color eef2fd border-top:solid d8dee8 1px display:block padding:4px 8px position:relative top:-1px ul.WGtopTabs a non-selected tabs color settings display:block color:#9ea0bb important font-size:12px font-family Arial Helvetica sans-serif text-decoration:none background-color:#f2f5fa border-left solid d8dee8 1px border-right solid d8dee8 1px ul.WGtopTabs a:hover ul.WGtopTabs a:hover b ul.WGtopTabs a.selected ul.WGtopTabs a.selected b selected tab color settings background-color:#d8dee8 color:#3e4f77 text-align right TABS YUI WGcleardiv clear both margin 0px 0px 0px 0px padding 0px WGviewProfile wgView border none font bold 10px Verdana color 3e4f77 text-decoration:none WGview position absolute right 4px top:4px WGprofile_displayView x-system-font:none border:medium none color:#0B2258 display:inline float:right font-family:Verdana font-size:10px font-size-adjust:none font-stretch:normal font-style:normal font-variant:normal font-weight:bold line-height:normal padding-right:8px padding-top:3px text-decoration none WGprofile_displaySubContent border around friends tab content border solid d8dee8 6px border-top solid d8dee8 18px Copyright c 2008 Yahoo Inc All rights reserved Code licensed under the BSD License http://developer.yahoo.net/yui/license.txt version 2.6.0 yui tabs color settings below yui-navset defaults to yui-navset-top WGsubContent yui-skin-sam yui-navset yui-nav WGsubContent yui-skin-sam yui-navset yui-navset-top yui-nav protect nested tabviews from other orientations border:solid eef2fd color between tab list and content border-width:0 0 5px Xposition:relative zoom:1 WGsubContent yui-skin-sam yui-navset yui-nav a WGsubContent yui-skin-sam yui-navset yui-navset-top yui-nav a background:#ffffff tab background border:solid ffffff border-width:0 1px color:#bfccdd position:relative text-decoration:none font-size:12px font-family Arial Helvetica sans-serif font-weight bold WGsubContent yui-skin-sam yui-navset yui-nav a em WGsubContent yui-skin-sam yui-navset yui-navset-top yui-nav a em border:solid eef2fd border-width:1px 0 0 cursor:hand padding:0.25em 75em left:0 right 0 bottom 0 protect from other orientations top:-1px for 1px rounded corners position:relative WGsubContent yui-skin-sam yui-navset yui-nav selected a WGsubContent yui-skin-sam yui-navset yui-nav selected a:focus no focus effect for selected WGsubContent yui-skin-sam yui-navset yui-nav selected a:hover no hover effect for selected background eef2fd selected tab background color 3e4f77 font-size:12px font-family Arial Helvetica sans-serif text-decoration:none font-weight bold WGsubContent yui-skin-sam yui-navset yui-nav selected a WGsubContent yui-skin-sam yui-navset yui-nav selected a em border-color:#eef2fd selected tab border color WGsubContent yui-skin-sam yui-navset yui-nav a:hover WGsubContent yui-skin-sam yui-navset yui-nav a:focus background eef2fd hover tab background color 3e4f77 outline:0 font-size:12px font-family Arial Helvetica sans-serif text-decoration:none font-weight bold WGsubContent yui-skin-sam yui-navset yui-content background eef2fd content background color WGsubContent yui-skin-sam yui-navset yui-content WGsubContent yui-skin-sam yui-navset yui-navset-top yui-content border:5px solid eef2fd content border padding:0.75em 1em content padding left and right orientations WGsubContent yui-skin-sam yui-navset-left yui-nav WGsubContent yui-skin-sam yui-navset yui-navset-left yui-nav WGsubContent yui-skin-sam yui-navset yui-navset-right yui-nav WGsubContent yui-skin-sam yui-navset-right yui-nav border-width:0 5px 0 0 Xposition:absolute from tabview-core have to reiterate for skin-sam due to pos:rel on skin-sam yui-nav top:0 bottom:0 stretch to fill content height WGsubContent yui-skin-sam yui-navset yui-navset-right yui-nav WGsubContent yui-skin-sam yui-navset-right yui-nav border-width:0 0 0 5px WGsubContent yui-skin-sam yui-navset-left yui-nav li WGsubContent yui-skin-sam yui-navset yui-navset-left yui-nav li WGsubContent yui-skin-sam yui-navset-right yui-nav li margin:0 0 0.3em space between tabs padding:0 0 0 1px gecko make room for overflow WGsubContent yui-skin-sam yui-navset-right yui-nav li padding:0 1px 0 0 gecko make room for overflow WGsubContent yui-skin-sam yui-navset-left yui-nav selected WGsubContent yui-skin-sam yui-navset yui-navset-left yui-nav selected margin:0 1px 0.16em 0 WGsubContent yui-skin-sam yui-navset-right yui-nav selected margin:0 0 0.16em 1px WGsubContent yui-skin-sam yui-navset-left yui-nav a WGsubContent yui-skin-sam yui-navset-right yui-nav a border-width:1px 0 WGsubContent yui-skin-sam yui-navset-left yui-nav a em WGsubContent yui-skin-sam yui-navset yui-navset-left yui-nav a em WGsubContent yui-skin-sam yui-navset-right yui-nav a em border-width:0 0 0 1px padding:0.2em 75em top:auto left:-1px for 1px rounded corners WGsubContent yui-skin-sam yui-navset-right yui-nav a em border-width:0 1px 0 0 left:auto right:-1px for 1px rounded corners WGsubContent yui-skin-sam yui-navset-left yui-nav a WGsubContent yui-skin-sam yui-navset-left yui-nav selected a WGsubContent yui-skin-sam yui-navset-left yui-nav a:hover WGsubContent yui-skin-sam yui-navset-right yui-nav a WGsubContent yui-skin-sam yui-navset-right yui-nav selected a WGsubContent yui-skin-sam yui-navset-right yui-nav a:hover WGsubContent yui-skin-sam yui-navset-bottom yui-nav a WGsubContent yui-skin-sam yui-navset-bottom yui-nav selected a WGsubContent yui-skin-sam yui-navset-bottom yui-nav a:hover background-image:none no left-right or bottom-top gradient WGsubContent yui-skin-sam yui-navset-left yui-content border:1px solid d8dee8 content border bottom orientation WGsubContent yui-skin-sam yui-navset-bottom yui-nav WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-nav border-width:5px 0 0 color between tab list and content WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-nav selected WGsubContent yui-skin-sam yui-navset-bottom yui-nav selected margin:-1px 0.3em 0 0 for overlap WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-nav li WGsubContent yui-skin-sam yui-navset-bottom yui-nav li padding:0 0 1px 0 gecko make room for overflow vertical-align:top WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-nav li a WGsubContent yui-skin-sam yui-navset-bottom yui-nav li a WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-nav a em WGsubContent yui-skin-sam yui-navset-bottom yui-nav a em border-width:0 0 1px top:auto bottom:-1px for 1px rounded corners WGsubContent yui-skin-sam yui-navset-bottom yui-content WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-content border:1px solid f2f5fa content border WGsubContent yui-skin-sam background-color d8dee8 padding 10px 5 5 5px display:block yui tab placement settings below WGsubContent yui-skin-sam yui-navset yui-nav li WGsubContent yui-skin-sam yui-navset yui-navset-top yui-nav li margin:0 0.3em 0 0 space between tabs padding:5px 0 0 gecko make room for overflow zoom:1 WGsubContent yui-skin-sam yui-navset yui-nav selected WGsubContent yui-skin-sam yui-navset yui-navset-top yui-nav selected margin:0 0.3em 1px 0 for overlap WGsubContent yui-navset yui-nav li,.yui-navset yui-navset-top yui-nav li WGsubContent yui-navset yui-navset-bottom yui-nav li margin:0 0.5em 0 0 WGsubContent yui-navset-left yui-nav li,.yui-navset-right yui-nav li margin:0 0 0.5em WGsubContent yui-navset yui-content yui-hidden display:none WGsubContent yui-navset yui-navset-left yui-nav,.yui-navset yui-navset-right yui-nav WGsubContent yui-navset-left yui-nav,.yui-navset-right yui-nav width:6em WGsubContent yui-navset-top yui-nav,.yui-navset-bottom yui-nav width:auto WGsubContent yui-navset yui-navset-left,.yui-navset-left padding:0 0 0 6em WGsubContent yui-navset-right padding:0 6em 0 0 WGsubContent yui-navset-top,.yui-navset-bottom padding:auto WGsubContent yui-nav,.yui-nav li list-style:none margin:0 padding:0 WGsubContent yui-navset li em font-style:normal WGsubContent yui-navset position:relative zoom:1 WGsubContent yui-navset yui-content zoom:1 WGsubContent yui-navset yui-nav li,.yui-navset yui-navset-top yui-nav li WGsubContent yui-navset yui-navset-bottom yui-nav li display:inline-block display:-moz-inline-stack display:inline vertical-align:bottom cursor:pointer zoom:1 WGsubContent yui-navset-left yui-nav li,.yui-navset-right yui-nav li display:block WGsubContent yui-navset yui-nav a position:relative WGsubContent yui-navset yui-nav li a,.yui-navset-top yui-nav li a WGsubContent yui-navset-bottom yui-nav li a display:block display:inline-block vertical-align:bottom zoom:1 WGsubContent yui-navset-left yui-nav li a,.yui-navset-right yui-nav li a display:block WGsubContent yui-navset-bottom yui-nav li a vertical-align:text-top WGsubContent yui-navset yui-nav li a em,.yui-navset-top yui-nav li a em WGsubContent yui-navset-bottom yui-nav li a em display:block WGsubContent yui-navset yui-navset-left yui-nav,.yui-navset yui-navset-right yui-nav WGsubContent yui-navset-left yui-nav,.yui-navset-right yui-nav position:absolute z-index:1 WGsubContent yui-navset-top yui-nav,.yui-navset-bottom yui-nav position:static WGsubContent yui-navset yui-navset-left yui-nav,.yui-navset-left yui-nav left:0 right:auto WGsubContent yui-navset yui-navset-right yui-nav,.yui-navset-right yui-nav left:auto right:0 WGsubContent yui-skin-sam yui-navset yui-nav selected a em padding:0.35em 0.75em WGsubContent yui-skin-sam yui-navset-left yui-nav,.yui-skin-sam yui-navset yui-navset-left yui-nav WGsubContent yui-skin-sam yui-navset yui-navset-right yui-nav,.yui-skin-sam yui-navset-right yui-nav border-width:0 5px 0 0 bottom:0 top:0 Xposition:absolute WGsubContent yui-skin-sam yui-navset yui-navset-right yui-nav,.yui-skin-sam yui-navset-right yui-nav border-width:0 0 0 5px WGsubContent yui-skin-sam yui-navset-left yui-nav li,.yui-skin-sam yui-navset yui-navset-left yui-nav li WGsubContent yui-skin-sam yui-navset-right yui-nav li margin:0 0 0.16em padding:0 0 0 1px WGsubContent yui-skin-sam yui-navset-right yui-nav li padding:0 1px 0 0 WGsubContent yui-skin-sam yui-navset-left yui-nav a,.yui-skin-sam yui-navset-right yui-nav a border-width:1px 0 WGsubContent yui-skin-sam yui-navset-left yui-nav a em,.yui-skin-sam yui-navset yui-navset-left yui-nav a em,.yui-skin-sam yui-navset-right yui-nav a em border-width:0 0 0 1px left:-1px padding:0.2em 75em top:auto WGsubContent yui-skin-sam yui-navset-right yui-nav a em border-width:0 1px 0 0 left:auto right:-1px WGsubContent yui-skin-sam yui-navset-left yui-nav a,.yui-skin-sam yui-navset-left yui-nav selected a,.yui-skin-sam yui-navset-left yui-nav a:hover WGsubContent yui-skin-sam yui-navset-right yui-nav a,.yui-skin-sam yui-navset-right yui-nav selected a,.yui-skin-sam yui-navset-right yui-nav a:hover WGsubContent yui-skin-sam yui-navset-bottom yui-nav a,.yui-skin-sam yui-navset-bottom yui-nav selected a WGsubContent yui-skin-sam yui-navset-bottom yui-nav a:hover background-image:none WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-nav selected WGsubContent yui-skin-sam yui-navset-bottom yui-nav selected margin:-1px 0.16em 0 0 WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-nav li WGsubContent yui-skin-sam yui-navset-bottom yui-nav li padding:0 0 1px 0 vertical-align:top ','000001000001000002000008',NULL),('_9_eiaPgxzF_x_upt6-PNQ','gallery.css','','root/import/gallery-templates/gallery.css',1197988920,1304392055,'3','7','3','WebGUI::Asset::Snippet',0,'gallery.css gallery.css root import gallery templates gallery.css FIXES FLOAT ISSUES WITHOUT THIS FLOATS GET ALL NUTSY ESPECIALLY IN OPERA AND SAFARI clearfix:after content display block height 0 clear both visibility hidden clearfix display inline-block END FLOAT FIX wgGallery font-family:verdana arial text-align:left firstBar background black color:white font-size:18px font-weight:bold firstBar title margin-left:20px line-height:42px firstBar title a font-size:18px font-weight:bold color:white firstBar buttons float:right firstBar buttons a display:block float:left height:42px line-height:42px font-size:10px color:white font-weight:bold text-align:center padding:0px 5px firstBar buttons rss display:block height:29px position:relative background:transparent padding-top:13px secondBar background F1F1F1 text-align:left border-top:solid 8B8B8B 5px color black overflow hidden secondBar author font-size:10px secondBar desc p margin-left 20px margin-top 0 color black pictures searchArea float:right searchArea float:left searchArea input.searchText border:solid black 1px width:100px margin:0px padding:2px margin-top:5px font-size:10px height:15px margin-right:10px searchArea input.searchBtn border:solid black 1px margin:0px padding:3px margin-top:5px font-size:10px vertical-align:middle cursor:pointer height:21px searchArea a:link searchArea a:visited secondBar author a:link secondBar author a:visited font-size:11px color:black searchArea current font-weight:bold text-transform:uppercase text-decoration:none font-size:10px wgAlbum display moz-inline-box Although this works in later versions of FireFox it does not work in 2.x display:block display inline-block Op Saf IE vertical-align top IE Mac non capisce e a volte crea extra v space width:250px margin:10px wgAlbum albumTitle background black color:white font-size:12px font-weight:bold padding:10px padding-right:50px border:solid 475f6f 1px border-bottom:solid 8B8B8B 5px text-align:left display:block wgAlbum albumImage background F1F1F1 border-left solid black 1px border-right solid black 1px padding-top:15px height:135px wgAlbum albumImage a height:135px width:200px overflow:hidden display:block margin:0px 23px wgAlbum albumImage img border-style:none display:block width:200px height:auto border:solid black 1px wgAlbum albumDesc background F1F1F1 border-left solid black 1px border-right solid black 1px border-bottom solid black 1px text-align:center padding 5px 23px wgAlbum description font-size:10px height:40px overflow:auto text-align:left border:solid silver 1px padding:5px background-color fff color:#222 albumDesc description margin:2px 0px PAGINATION STYLES wgGallery paginationContainer text-align:center background black height:42px wgGallery container clear:both text-align:center wgGallery pagination margin:0px auto 20px auto display:table list-style-type:none white-space:nowrap padding:0px height:42px wgGallery pagination li display:table-cell wgGallery pagination a display:block width:50px line-height:42px color:white font-size:10px text-align:center wgPicture a:link wgPicture a:visited color:black wgPicture width:250px margin:10px display moz-inline-box This does not work in earlier versions of Firefox display:block float:left display inline-block Op Saf IE vertical-align top IE Mac non capisce e a volte crea extra v space wgPicture title background:#e0e0e0 display:block font-size:12px text-align:center padding:2px 5px border:solid black 1px border-bottom:solid 8B8B8B 4px wgPicture title a font-size:12px wgPicture thumbnail text-align:center background F1F1F1 padding:15px 23px 15px 23px margin:0px border-left:solid black 1px border-right:solid black 1px wgPicture thumbnail a display:block width:200px height:120px overflow:hidden border:solid black 1px wgPicture thumbnail img border-style:none width:200px height:auto wgPicture pictureDesc padding:0px border-top:solid e1e1e1 1px border-bottom:solid gray 1px border-left:solid black 1px border-right:solid black 1px background:#F1F1F1 margin:0px wgPicture pictureDesc description margin:0px padding:5px font-size:10px wgPicture details background:#e0e0e0 border:solid 999 1px border-top:solid aaa 1px font-size:9px padding:1px 3px wgPicture details date float:right wgPicture details comments float:left wgPicture details a font-size:9px BEGIN STYLES FOR PHOTO VIEW The Photo view uses some/all of the above classes plus those in this section wgSnapshot float:left margin:10px max-width:250px width:25 wgSnapshot fieldset background-color:#fefefe border:solid 555 2px padding:10px background-color:#f9f9f9 text-align:center navigation width 100 text-align center font-weight bold color navy wgSnapshot p max-width:230px wgSnapshot navigation width:100 margin:5px 0 0 text-align:center wgSnapshot navigation img border none wgSnapshot legend color:#333 font-size:15px font-weight:bold max-width:250px wgSnapshot a.thumbnail img width:200px height:auto border:solid 555 2px wgSnapshot description font-size:9px border:solid 555555 2px padding:5px width:190px margin:0px auto background-color:#fff height:50px overflow:auto text-align:left overflow:auto wgSnapshot a.fullSize margin:0px auto wgPictureDetails float:left width:70 margin:10px overflow hidden wgPictureDetails a:link wgPictureDetails a:visited color:black wgPictureDetails fieldset background-color:#fefefe border:solid 555 2px padding:10px background-color:#f9f9f9 margin-bottom:10px wgPictureDetails legend color:#333 font-size:15px font-weight:bold rowOne rowTwo margin:1px color:black padding:3px rowOne background EFEFEF border:solid CDCDCD 1px rowTwo background DCDCDC border:solid DDDDDD 1px rowOne label rowTwo label margin-left:15px text-align:left font-weight:bold font-size:11px rowOne data rowTwo data font-size:10px margin-left:5px a.fullSize:link a.fullSize:visited color:black display:block text-align:center font-weight:bold font-size:10px wgComments font-size:9px margin:10px width:90 wgComments title font-size:14px font-weight:bold color:#333 border-bottom:solid 555555 2px padding-bottom:2px wgComments title a color:navy text-decoration:none wgComments comment wgComments commentAlt position:relative padding:5px wgComments comment background-color:#e1e1e1 border-top:solid F7F7F7 1px border-bottom:solid C9C9C9 1px wgComments commentAlt background-color:#f0f0f0 border-bottom:solid CDCDCD 1px border-top:solid FBFBFB 1px wgComments number float:left font-size:30px color:silver margin:5px 10px 5px 5px wgComments posted font-style:italic padding-top:3px font-size:9px color:gray wgComments posted a color:navy text-decoration:underline BEGIN STYLES FOR THUMBNAIL VIEW The Thumbnail view uses some/all of the above classes plus those in this section thumbView width:400px height:auto thumbView thumbnail a display:block width:350px height:auto border:solid black 1px thumbView thumbnail img border-style:none width:350px height:auto thumb width:100px height:65px overflow:hidden display:block float:left border:solid black 2px margin:10px z-index 0 position relative thumb:hover background-color transparent z-index 50 overflow visible thumb img width:100px height:auto border-style:none thumb:hover img bottom 65px left 75px position absolute width 250px BEGIN STYLES FOR SLIDESHOW VIEW The Slideshow view uses some/all of the above classes plus those in this section wgSlideshow controls background url(^FileUrl(root/import/gallery-templates/images/pagination_bg.jpg repeat-x width:500px height:42px margin:0px auto border:solid black 2px wgSlideshow text-align:center slideshow-container width:500px height:auto margin:0px auto text-align:center border:solid black 2px position:relative z-index:0 slideshow-container slideshow-item img width:100 height:auto border-style:none display:block slideshow-container slideshow-item title background-color:black padding:3px color:white border-top:solid white 1px border-bottom:solid white 1px slideshow-container slideshow-item title a color:white font-size:11px font-weight:bold slideshow-container slideshow-item counter background-color:black padding:3px color:white font-size:11px font-weight:bold slideshow-container slideshow-item synopsis width:494px background-color:white padding:3px color:black font-size:11px font-weight:bold border-top:solid black 1px text-align:left BEGIN STYLES FOR SEARCH VIEW The Search view uses some/all of the above classes plus those in this section adminWrapper margin-top:20px adminWrapper label background:black font-weight:bold font-size:10px color:white adminWrapper td.data input background f1f1f1 vertical-align:middle adminWrapper td.radio input border-style:none background:none adminWrapper forwardButton cursor:pointer float:rigbt adminWrapper forwardButton:hover color:gold ','000001000001000015000016',NULL),('i6-BofrJJYozovlzFBByXg','first-photo-button.png','','root/import/gallery-templates/images/first-photo-button.png',1270612331,1285124158,'3','7','3','WebGUI::Asset::File::Image',1,'first-photo-button.png first-photo-button.png root import gallery templates images first photo button.png','000001000001000015000017000031',NULL),('fU_OZCmtdFNJ8a6bMve8ng','previous-photo-button.png','','root/import/gallery-templates/images/previous-photo-button.png',1270612331,1285124158,'3','7','3','WebGUI::Asset::File::Image',1,'previous-photo-button.png previous-photo-button.png root import gallery templates images previous photo button.png','000001000001000015000017000032',NULL),('YXCtusAxb4vzZ5sTnUA5DA','next-photo-button.png','','root/import/gallery-templates/images/next-photo-button.png',1270612331,1285124158,'3','7','3','WebGUI::Asset::File::Image',1,'next-photo-button.png next-photo-button.png root import gallery templates images next photo button.png','000001000001000015000017000033',NULL),('k_xuE82wwp8gFVl9aaaG8g','last-photo-button.png','','root/import/gallery-templates/images/last-photo-button.png',1270612331,1285124158,'3','7','3','WebGUI::Asset::File::Image',1,'last-photo-button.png last-photo-button.png root import gallery templates images last photo button.png','000001000001000015000017000034',NULL),('NPM_WItpM5IzLWBhWjYfCA','photo-navigation-spacer.png','','root/import/gallery-templates/images/photo-navigation-spacer.png',1270612331,1285124158,'3','7','3','WebGUI::Asset::File::Image',1,'photo-navigation-spacer.png photo-navigation-spacer.png root import gallery templates images photo navigation spacer.png','000001000001000015000017000035',NULL),('30h5rHxzE_Q0CyI3Gg7EJw','Cash Summary Screen (Default)','','shopping-cart-collateral-items/cash-summary',1273032715,1326776037,'3','7','4','WebGUI::Asset::Template',0,'Cash Summary Screen Default Cash Summary Screen Default shopping cart collateral items cash summary Shop/Credentials','000001000001000036000020',NULL),('jysVZeUR0Bx2NfrKs5sulg','Ogone Summary Screen (Default)','','shopping-cart-collateral-items/ogone-summary',1273032715,1326776037,'3','7','4','WebGUI::Asset::Template',0,'Ogone Summary Screen Default Ogone Summary Screen Default shopping cart collateral items ogone summary Shop/Credentials','000001000001000036000021',NULL),('300AozDaeveAjB_KN0ljlQ','PayPal Standard Summary Screen (Default)','','shopping-cart-collateral-items/paypal-std-summary',1273032715,1326776037,'3','7','4','WebGUI::Asset::Template',0,'PayPal Standard Summary Screen Default PayPal Standard Summary Screen Default shopping cart collateral items paypal std summary Shop/Credentials','000001000001000036000022',NULL),('GqnZPB0gLoZmqQzYFaq7bg','PayPal Express Checkout Summary Screen (Default)','','shopping-cart-collateral-items/paypal-express-summary',1273032716,1326776037,'3','7','4','WebGUI::Asset::Template',0,'PayPal Express Checkout Summary Screen Default PayPal Express Checkout Summary Screen Default shopping cart collateral items paypal express summary Shop/Credentials','000001000001000036000023',NULL),('stevestyle000000000001','Style 01','by Steve from Plain Black http://plainblack.com\r\n\r\nThe first of the WebGUI 7 styles','style_01',1147642499,1273032722,'3','7','12','WebGUI::Asset::Template',0,'Style 01 Style 01 by Steve from Plain Black http://plainblack.com The first of the WebGUI 7 styles style 01 style','000001000001000049000026',NULL),('stevestyle000000000002','Style 02','by Steve from Plain Black http://plainblack.com\r\n\r\nThe second of the WebGUI 7 styles','style_02',1147642504,1273032718,'3','7','12','WebGUI::Asset::Template',0,'Style 02 Style 02 by Steve from Plain Black http://plainblack.com The second of the WebGUI 7 styles style 02 style','000001000001000050000016',NULL),('stevestyle000000000003','Style 03','by Steve from Plain Black http://plainblack.com\r\n\r\nThe last of the WebGUI 7 style templates.','style_03',1147642510,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Style 03 Style 03 by Steve from Plain Black http://plainblack.com The last of the WebGUI 7 style templates style 03 style','000001000001000051000020',NULL),('t87D1138NhPHhA23-hozBA','CrystalX','','crystalx',1273032716,1273032716,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'CrystalX CrystalX crystalx','000001000001000055',NULL),('QtBumey5ffc-xffRp1-7Aw','img','','crystalx/img',1273032716,1273032716,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'img img crystalx img','000001000001000055000001',NULL),('-0sK2rX1cwQt1ipUSqsiQQ','bg.gif','','crystalx/img/bg.gif',1273032716,1273032716,'3','7','3','WebGUI::Asset::File::Image',1,'bg.gif bg.gif crystalx img bg.gif','000001000001000055000001000001',NULL),('hS_eOaVz9Qb5ixndK9EXAw','header.jpg','','crystalx/img/header.jpg',1273032716,1273032716,'3','7','3','WebGUI::Asset::File::Image',1,'header.jpg header.jpg crystalx img header.jpg','000001000001000055000001000002',NULL),('k2p-Be8C98pf2cRq7E-JHg','tab_link.gif','','crystalx/img/tab_link.gif',1273032716,1273032716,'3','7','3','WebGUI::Asset::File::Image',1,'tab_link.gif tab_link.gif crystalx img tab link.gif','000001000001000055000001000003',NULL),('aYG4fjbMPbC4LCuuMp4gGA','tab_hover.gif','','crystalx/img/tab_hover.gif',1273032716,1273032716,'3','7','3','WebGUI::Asset::File::Image',1,'tab_hover.gif tab_hover.gif crystalx img tab hover.gif','000001000001000055000001000004',NULL),('F122Ey0NtVAw6Lfv1M6G_Q','ico_archive.gif','','crystalx/img/ico_archive.gif',1273032716,1273032716,'3','7','3','WebGUI::Asset::File::Image',1,'ico_archive.gif ico_archive.gif crystalx img ico archive.gif','000001000001000055000001000005',NULL),('qmXHKrQ6EDLSOGkrEKRUDA','bg_page_in.jpg','','crystalx/img/bg_page_in.jpg',1273032716,1273032716,'3','7','3','WebGUI::Asset::File::Image',1,'bg_page_in.jpg bg_page_in.jpg crystalx img bg page in.jpg','000001000001000055000001000006',NULL),('4qZgXjPPO4fwV879yu5XUg','bg_page.JPG','','crystalx/img/bg_page.jpg',1273032716,1273032716,'3','7','3','WebGUI::Asset::File::Image',1,'bg_page.JPG bg_page.JPG crystalx img bg page.jpg','000001000001000055000001000007',NULL),('mb-xeAugm5GJdvu-Wh0MtQ','search_submit.gif','','crystalx/img/search_submit.gif',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'search_submit.gif search_submit.gif crystalx img search submit.gif','000001000001000055000001000008',NULL),('84Y9CwgzP6eNU7wZnk019Q','ico_date.gif','','crystalx/img/ico_date.gif',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'ico_date.gif ico_date.gif crystalx img ico date.gif','000001000001000055000001000009',NULL),('ikXTtJKZfHVxqw-47E4AQA','ico_user.gif','','crystalx/img/ico_user.gif',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'ico_user.gif ico_user.gif crystalx img ico user.gif','000001000001000055000001000010',NULL),('DhRWPTgzhvju_-TbMN3CwA','ico_comments.gif','','crystalx/img/ico_comments.gif',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'ico_comments.gif ico_comments.gif crystalx img ico comments.gif','000001000001000055000001000011',NULL),('6njI-pZz2bwsjWh-Q1_11g','ico_list.gif','','crystalx/img/ico_list2.gif',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'ico_list.gif ico_list.gif crystalx img ico list2.gif','000001000001000055000001000012',NULL),('_Hz1Gnd3yEnJzVS7l7nJMQ','content_all_bg.PNG','','crystalx/img/content_all_bg.png',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'content_all_bg.PNG content_all_bg.PNG crystalx img content all bg.png','000001000001000055000001000013',NULL),('VOOrXK5dFnkGih7aTkuDWA','search.PNG','','crystalx/img/search.png',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'search.PNG search.PNG crystalx img search.png','000001000001000055000001000014',NULL),('ruf-QejOkUHDRtfgakHlbA','col_title_bg_long.GIF','','crystalx/img/col_title_bg_long.gif',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'col_title_bg_long.GIF col_title_bg_long.GIF crystalx img col title bg long.gif','000001000001000055000001000015',NULL),('FSHy5KjQjkt599PHS41seA','footer.jpg','','crystalx/img/footer.jpg',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'footer.jpg footer.jpg crystalx img footer.jpg','000001000001000055000001000016',NULL),('nuYYXAz4KNNxgfumfnpo_g','ico_top.gif','','crystalx/img/ico_top.gif',1273032718,1273032718,'3','7','3','WebGUI::Asset::File::Image',1,'ico_top.gif ico_top.gif crystalx img ico top.gif','000001000001000055000001000017',NULL),('Mr7ljjoy6n4fZojpQWajKQ','ico_links.gif','','crystalx/img/ico_links.gif',1273032718,1273032718,'3','7','3','WebGUI::Asset::File::Image',1,'ico_links.gif ico_links.gif crystalx img ico links.gif','000001000001000055000001000018',NULL),('ApkqpDOrJDxK3QrWBGSRIg','ico_archive2.gif','','crystalx/img/ico_archive2.gif',1273032718,1273032718,'3','7','3','WebGUI::Asset::File::Image',1,'ico_archive2.gif ico_archive2.gif crystalx img ico archive2.gif','000001000001000055000001000019',NULL),('AzzTY0Lay1f_YGeQJFnQCA','ico_list.gif','','crystalx/img/ico_list.gif',1273032718,1273032718,'3','7','3','WebGUI::Asset::File::Image',1,'ico_list.gif ico_list.gif crystalx img ico list.gif','000001000001000055000001000020',NULL),('OiJNwP1gAlcva8_yOtL4gA','CrystalX_style','by Ning from Pluton -- http://pluton.nl\n\nCrystalX gives your site a crystal-ish look and a strictly formal style. Feel free to download and apply it to your own site.\n\nOriginally designed by \"Nuvio Webdesign\" and collected by Open Source Web Design, converted to WebGUI theme by Ning.','crystalx_style',1273032718,1273032718,'3','7','3','WebGUI::Asset::Template',0,'CrystalX_style CrystalX_style by Ning from Pluton http://pluton.nl CrystalX gives your site a crystal-ish look and a strictly formal style Feel free to download and apply it to your own site Originally designed by Nuvio Webdesign and collected by Open Source Web Design converted to WebGUI theme by Ning crystalx style style','000001000001000055000002',NULL),('JOuCU4x5BJfVHfkfMkVQdQ','crystalx.css','','crystalx/crystalx.css',1273032718,1273032718,'3','7','3','WebGUI::Asset::Snippet',0,'crystalx.css crystalx.css crystalx crystalx.css Project CrystalX URL http://www.nuvio.cz Output device screen projection Author Vit Dlouhy vit.dlouhy@nuvio.cz Nuvio www.nuvio.cz Last revision 2006-12-05 12:00 GMT+1 Structure display | position | float | overflow | width | height | border | margin | padding | background | align | font min-height:1px body border:0 margin:0 padding:0 background:#F2F5FE url(\'^FileUrl(/crystalx/img/bg.gif 0 0 repeat-x font:70%/160 verdana\",sans-serif color:#192666 text-align:center a color:#192666 a:hover color:#4F6AD7 p border:0 margin:15px 0 padding:0 div display:block border:0 margin:0 padding:0 overflow:hidden h1 h2 h3 h4 h5 border:0 margin:15px 0 10px 0 padding:0 font-weight:bold h1 font-size:260 line-height:100 font-family:\"georgia\",serif font-weight:normal h2 font-size:180 line-height:100 font-family:\"georgia\",serif font-weight:normal h3 font-size:120 line-height:100 font-weight:bold h4 font-size:120 h5 font-size:100 table display:table border-collapse:collapse margin:15px 1px padding:0 border:1px solid B7CAF6 font-size:100 tr display:table-row th td display table-cell border:1px solid B7CAF6 margin:0 padding:5px vertical-align:top text-align:left th background:#E7ECFD text-align:center color:#192666 font-weight:bold ul ol display:block border:0 margin:15px 0 15px 40px padding:0 ol list-style-type:decimal li display:list-item border:0 margin:0 padding:0 min-height:1px ul ul ul ol ol ol ol ul margin 0 0 0 20px dl border-bottom:1px solid E0E8FA margin:0 padding:5px 10px background:#CEDBF9 dt border:0 margin:0 padding:0 font-weight:bold dd border:0 margin:0 0 0 30px padding:0 form border:0 margin:0 padding:0 fieldset border:1px solid ccc margin:15px 0 padding:10px legend margin-left:10px font-size:100 font-weight:bold color:#008 hr height:1px width:724px margin 5px 23px padding 0 background:#CCC border:0 solid CCC color:#CCC a img span border:0 margin:0 padding:0 overflow:hidden abbr acronym border-bottom:1px dotted CCC cursor:help del through text-decoration:line-through strong strong font-weight:bold cite em q var font-style:italic code kbd samp font-family:monospace font-size:110 box min-height:1px box:after content display:block line-height:0px font-size:0px visibility:hidden clear:both nom margin:0 noscreen display:none main width:770px margin:0 auto text-align:left Top empty space for the background img to fit main topspace position:relative top:0 left:0 height:50px margin:0 padding:0 Header header position:relative width:770px height:100px margin:0 padding:0 background:#233C9B url(\'^FileUrl(/crystalx/img/header.jpg 0 0 no-repeat color:#FFFFFF Header logo header logo position:absolute top:35px left:35px margin:0 header logo a font-size:260 line-height:100 font-family:\"georgia\",serif font-weight:bold color:#FFF header logo a:hover color:#B5C4E3 text-decoration:none Header Search header search form position:absolute top:35px right:20px height:30px header search formContents position:absolute top:0 right:0px width:200px height:28px margin:0 padding:0 border:0 background:url(\'^FileUrl(/crystalx/img/search.png 0 0 no-repeat font:bold 90%/100 verdana\",sans-serif color:#192666 header search input#keywords_formId width:140px margin:5px 8px padding:3px 0 border:0 background:#FFF font:bold 100%/100 verdana\",sans-serif color:#192666 header search search_form position:absolute top:0 right:0px width:41px height:28px cursor:point margin:0 padding:0 Search Result header search search_result position:absolute top:220px header search home_link header search no_result header search pagination visibility:hidden page page-in pagination color:#6182D1 font-weight:bold padding:5px text-align:right page page-in pagination a color:#6182D1 page page-in pagination a:hover color:#192666 page page-in home_link padding:5px 5px 15px color:#6182D1 font-weight:bold text-align:right page page-in home_link a color:#6182D1 page page-in home_link a:hover color:#192666 search_result margin:10px 0 dl#odd background:#A0B9F3 page page-in no_result margin:0 10px color:#192666 font-weight:bold Main menu tabs menu background:#192666 margin:0 5px padding:10px 10px 0 height:32px overflow:hidden menu a cursor:pointer font-size:11px Page dynamic page width:770px background:#FFFFFF url(\'^FileUrl(/crystalx/img/bg_page.jpg 0 0 repeat-y page-in min-height:400px background:url(\'^FileUrl(/crystalx/img/bg_page_in.jpg 0 0 no-repeat padding:10px 0 0 Strip strip position:relative clear:both padding:3px 20px 10px 20px color:#6182D1 Strip Location strip location float left background:url(\'^FileUrl(/crystalx/img/ico_comments.gif 0 50 no-repeat padding 0 15px strip location a color:#6182D1 strip location a:hover color:#192666 strip location a#currentpage font-weight:bold text-decoration:none Strip DateTime strip datetime float:right background:url(\'^FileUrl(/crystalx/img/ico_date.gif 0 50 no-repeat padding 0 10px 0 15px Content Container contentContainer margin:0 padding:0 20px width:730px overflow:hidden Contents contentContainer content clear:both margin:10px 10px 0 0 padding:20px max-width:710px background:url(\'^FileUrl(/crystalx/img/content_all_bg.png 0 0 no-repeat overflow:hidden contentContainer content h2 margin:0 10px padding:10px 25px color:#192666 background:url(\'^FileUrl(/crystalx/img/ico_list.gif 0 50 no-repeat contentContainer content p text-align:justify Utility utility background FFFFFF url(\'^FileUrl(/crystalx/img/bg_page.jpg 0 0 repeat-y padding 10px 0 15px Utility Toggles toggles font-size:10px font-weight:bold text-align:left margin-left:42px toggles a margin:0 10px padding:2px 0 text-decoration:none border-bottom:1px dashed color:#6182D1 toggles a:hover border-bottom:1px solid color:#4F6AD7 toggles span.userAcc background:url(\'^FileUrl(/crystalx/img/ico_user.gif 0 50 no-repeat margin 0 0 0 8px Footer footer position:relative clear:both width:770px height:80px margin-bottom:30px background:url(\'^FileUrl(/crystalx/img/footer.jpg 0 0 no-repeat color:#6685CC footer a color:#6685CC footer a:hover color:#192666 Footer back on top top position:absolute top:55px left:550px top p position:relative width:30px height:25px margin:0 overflow:hidden top p a display:block position:absolute left:0 top:0 z-index:1 width:30px height:25px background:url(\'^FileUrl(/crystalx/img/ico_top.gif 0 0 no-repeat cursor:pointer top a:hover background:url(\'^FileUrl(/crystalx/img/ico_top.gif 30px 0 no-repeat Footer copyright footer p#copyright position:absolute top:10px left:40px margin:0 Footer created by createdby position:absolute top:10px left:562px margin:0 color:#8CA3D8 createdby a color:#8CA3D8','000001000001000055000003',NULL),('Am1J-meNBmhqFfEIWy6Gag','crystalX_Navigation','','crystalx/crystalx_navigation',1273032718,1287545014,'3','7','3','WebGUI::Asset::Wobject::Navigation',1,'crystalX_Navigation crystalX_Navigation crystalx crystalx navigation','000001000001000055000004',NULL),('gaIOm5cr2TkT9Fk6QmZWug','crystalX_navi','','crystalx/crystalx_navi',1273032718,1273032718,'3','7','3','WebGUI::Asset::Template',0,'crystalX_navi crystalX_navi crystalx crystalx navi Navigation','000001000001000055000005',NULL),('w0QifHLhsrzeOpFKl-DX-Q','crystalx_navi.css','','crystalx/crystalx_navi.css',1273032718,1273032718,'3','7','3','WebGUI::Asset::Snippet',0,'crystalx_navi.css crystalx_navi.css crystalx crystalx navi.css ','000001000001000055000006',NULL),('x_hiUi1XZloBvV47Obnu8Q','crystalX_NavigationTrail','','crystalx/crystalx_navigationtrail',1273032718,1273032718,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'crystalX_NavigationTrail crystalX_NavigationTrail crystalx crystalx navigationtrail','000001000001000055000007',NULL),('hpCk0B3vQzgc-QJhSol41w','crystalX_navitrail','','crystalx/crystalx_navitrail',1273032718,1273032718,'3','7','12','WebGUI::Asset::Template',0,'crystalX_navitrail crystalX_navitrail crystalx crystalx navitrail Navigation','000001000001000055000008',NULL),('UUwEL6hLEPdrnkZnKRzFYQ','Site Search','','crystalx/site-search',1273032718,1273032718,'3','7','3','WebGUI::Asset::Wobject::Search',1,'Site Search Site Search crystalx site search','000001000001000055000009',NULL),('OfKbvK7CrfMnfc8WDoF4Rg','crystalx_search','','crystalx/crystalx_search',1273032718,1273032718,'3','7','3','WebGUI::Asset::Template',0,'crystalx_search crystalx_search crystalx crystalx search Search','000001000001000055000010',NULL),('CQp-RFA2pMh5lFSggPPPYg','[Style] Underground','Templates and images for the \"Underground\" style from StyleShout.com ','style-underground',1273032719,1301973995,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Style Underground Style Underground style underground Templates and images for the Underground style from StyleShout.com','000001000001000056',NULL),('_Mi_NTd3x8UB96LWezWHnw','Images','','style-underground/images',1273032719,1301973995,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Images Images style underground images','000001000001000056000001',NULL),('A_5LVQQWR73QZR8FFbny_w','bg.gif','','style-underground/images/bg.gif',1273032719,1301973995,'3','7','3','WebGUI::Asset::File::Image',1,'bg.gif bg.gif style underground images bg.gif','000001000001000056000001000001',NULL),('wywIfa_VuTsq0c5Ed-W-MA','bullet.gif','','style-underground/images/bullet.gif',1273032719,1301973995,'3','7','3','WebGUI::Asset::File::Image',1,'bullet.gif bullet.gif style underground images bullet.gif','000001000001000056000001000002',NULL),('xmykMFjri1O2NrYHbeToVQ','footerbg.gif','','style-underground/images/footerbg.gif',1273032719,1301973995,'3','7','3','WebGUI::Asset::File::Image',1,'footerbg.gif footerbg.gif style underground images footerbg.gif','000001000001000056000001000003',NULL),('0IIGNBs_-INzqBC5VLeJgw','headerbg.gif','','style-underground/images/headerbg.gif',1273032719,1301973996,'3','7','3','WebGUI::Asset::File::Image',1,'headerbg.gif headerbg.gif style underground images headerbg.gif','000001000001000056000001000004',NULL),('FXmePdyS0YKuZ1VCGGpK9w','quote.gif','','style-underground/images/quote.gif',1273032719,1301973996,'3','7','3','WebGUI::Asset::File::Image',1,'quote.gif quote.gif style underground images quote.gif','000001000001000056000001000005',NULL),('66qCywiE_fiL9u5YIaJhgw','tableft.gif','','style-underground/images/tableft.gif',1273032719,1301973996,'3','7','3','WebGUI::Asset::File::Image',1,'tableft.gif tableft.gif style underground images tableft.gif','000001000001000056000001000006',NULL),('n5VpG4lFsOG1elaWDQbilw','tabright.gif','','style-underground/images/tabright.gif',1273032719,1301973996,'3','7','3','WebGUI::Asset::File::Image',1,'tabright.gif tabright.gif style underground images tabright.gif','000001000001000056000001000007',NULL),('g3JH1PRq6m6Bj_PnGpcrSQ','CSS','','style-underground/css',1273032719,1301973996,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'CSS CSS style underground css','000001000001000056000002',NULL),('egpnaaFqWmJwYTZ5CvFH9g','Underground.css','','style-underground/css/underground.css',1273032719,1301973996,'3','7','3','WebGUI::Asset::Snippet',0,'Underground.css Underground.css style underground css underground.css AUTHOR Erwin Aligam WEBSITE http://www.styleshout.com TEMPLATE NAME Underground TEMPLATE CODE S-0006 VERSION 1.1 Changes for WebGUI by Doug Bell Preaction doug@plainblack.com HTML ELEMENTS top elements margin 0 padding 0 body margin 0 padding 0 font 70%/1.5 Verdana Tahoma Arial Helvetica sans-serif color 333 background FFF url(^FileUrl(style-underground/images/bg.gif repeat-x links a color 003366 background-color inherit text-decoration none a:hover color CC0001 background-color inherit headers h1 h2 h3 font-family Arial Trebuchet MS Sans-Serif font-weight bold color 333 h1 font-size 120 letter-spacing 5px h2 font-size 115 text-transform uppercase h3 font-size 115 color 003366 images img border 2px solid CCC img.float-right margin 5px 0px 10px 10px img.float-left margin 5px 10px 10px 0px h1 h2 h3 p padding 0 margin 10px ul ol margin 10px 20px padding 0 20px code margin 10px 0 padding 10px text-align left display block overflow auto font 500 1em/1.5em Lucida Console courier new monospace white-space pre background FAFAFA border 1px solid f2f2f2 border-left 4px solid CC0000 acronym cursor help border-bottom 1px solid 777 blockquote margin 10px padding 0 0 0 32px background FAFAFA url(^FileUrl(style-underground/images/quote.gif no-repeat 5px 10px important background-position 8px 10px border 1px solid f2f2f2 border-left 4px solid CC0000 font-weight bold form elements form margin:10px padding 0 5px border 1px solid f2f2f2 background-color FAFAFA label display:block font-weight:bold margin:5px 0 input padding 2px border:1px solid eee font normal 1em Verdana sans-serif color:#777 textarea width:400px padding:2px font normal 1em Verdana sans-serif border:1px solid eee height:100px display:block color:#777 input.button margin 0 font bolder 12px Arial Sans-serif border 1px solid CCC padding 1px background FFF color CC0000 search form form.search position absolute top 5px right 5px padding 0 margin 0 border none background-color transparent form.search input.textbox margin 0 width 120px border 1px solid CCC background FFF color 333 form.search input.searchbutton margin 0 font-size 100 font-family Arial Sans-serif border 1px solid CCC background FFFFFF url(^FileUrl(style-underground/images/headerbg.gif repeat-x bottom left padding 1px font-weight bold height 23px color 333 width 60px LAYOUT wrap margin 0 auto width 90 header header position relative margin 0 padding 0 height 60px header span#slogan z-index 3 position absolute left 3px bottom 7px font bold 1.2em Verdana Arial Tahoma Sans-serif color FFF header-logo position relative clear both height 50px margin 0 padding 0 header-logo logo position absolute top 3px left 5px font bold 30px trebuchet MS Arial Tahoma Sans-Serif margin 0 padding 0 letter-spacing 1px color 000 navigation tabs header ul position absolute margin:0 list-style:none right:-18px bottom 3px font bold 13px Trebuchet MS Arial Sans-serif header li display:inline margin:0 padding:0 header a float:left background url(^FileUrl(style-underground/images/tableft.gif no-repeat left top margin:0 padding:0 0 0 4px text-decoration:none header a span float:left display:block background url(^FileUrl(style-underground/images/tabright.gif no-repeat right top padding:5px 15px 4px 6px color:#FFF Commented Backslash Hack hides rule from IE5-Mac header a span float:none End IE5-Mac hack header a:hover span color:#FFF header a:hover background-position:0 42px header a:hover span background-position:100 42px header current a background-position:0 42px header current a span background-position:100 42px main column main float right margin 0 padding 0 width 78 main h1 margin 10px 0 padding 4px 0 4px 8px font-size 105 color FFF text-transform uppercase background-color CC0000 letter-spacing 5px sidebar sidebar float left width 20 margin 0 padding 0 background-color FFFFFF sidebar h1 margin 10px 0 0 0 padding 4px 0 4px 8px font bold 105 Arial Sans-Serif color FFF text-transform uppercase background 333 letter-spacing 1px sidebar left-box border 1px solid EBEBEB margin 0 0 5px 0 background FFF sidebar ul.sidemenu list-style none text-align left margin 3px 0px 8px 0 padding 0 text-decoration none sidebar ul.sidemenu li border-bottom 1px solid f2f2f2 background url(^FileUrl(style-underground/images/bullet.gif no-repeat 3px 2px padding 3px 5px 3px 25px margin 0 sidebar ul.sidemenu a font-weight bolder padding 3px 0px background none footer footer clear both border-top 1px solid f2f2f2 background FFF url(^FileUrl(style-underground/images/footerbg.gif repeat-x padding 2px 0 10px 0 text-align center line-height 1.5em font-size 95 footer a text-decoration none font-weight bold alignment classes float-left float left float-right float right align-left text-align left align-right text-align right display and additional classes clear clear both red color CC0000 comments margin 20px 10px 5px 10px padding 3px 0 border-bottom 1px dashed EFF0F1 border-top 1px dashed EFF0F1 ','000001000001000056000002000001',NULL),('G0hl4VilbFKipToyxKqFrg','Prototypes','This folder holds prototype WebGUI assets with the correct templates pre-selected. ','style-underground/prototypes',1273032719,1301973997,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Prototypes Prototypes style underground prototypes This folder holds prototype WebGUI assets with the correct templates pre-selected','000001000001000056000003',NULL),('GWU2qZqe6yEuAKG-5HtBdg','Templates','','style-underground/templates',1273032719,1301973997,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Templates Templates style underground templates','000001000001000056000004',NULL),('Qk24uXao2yowR6zxbVJ0xA','[style] Underground','by Doug from Plain Black http://plainblack.com\r\n\r\nThis is the Underground style from http://www.styleshout.com/ made into a WebGUI package. A simple, functional style.','style-underground/style-underground',1273032719,1301973997,'3','7','3','WebGUI::Asset::Template',0,'style Underground style Underground by Doug from Plain Black http://plainblack.com This is the Underground style from http://www.styleshout.com made into a WebGUI package A simple functional style style underground style underground style','000001000001000056000004000001',NULL),('39KNX53B4nYJAyIE1lu8ZQ','[nav] Underground Top Navigation','','style-underground/nav-underground-top-navigation',1273032720,1301973997,'3','7','3','WebGUI::Asset::Template',0,'nav Underground Top Navigation nav Underground Top Navigation style underground nav underground top navigation Navigation','000001000001000056000004000002',NULL),('ztfi__vHJLsQDsMenrEn-w','[nav] Underground Side Navigation','','style-underground/nav-underground-side-navigation',1273032720,1301973997,'3','7','3','WebGUI::Asset::Template',0,'nav Underground Side Navigation nav Underground Side Navigation style underground nav underground side navigation Navigation','000001000001000056000004000003',NULL),('8qyrDCNeggB4dzKiOoRuiQ','[admintoggle] Underground Admin Toggle','','style-underground/templates/admintoggle-underground-admin-toggle',1273032720,1301973997,'3','7','3','WebGUI::Asset::Template',0,'admintoggle Underground Admin Toggle admintoggle Underground Admin Toggle style underground templates admintoggle underground admin toggle AdminToggle','000001000001000056000004000004',NULL),('M1NyNeS5jpdIsiIWFiJprw','View My Account','','style-underground/templates/view-my-account',1273032720,1301973997,'3','7','3','WebGUI::Asset::Template',0,'View My Account View My Account style underground templates view my account Macro/a_account','000001000001000056000004000005',NULL),('AsfpsOpsGzZCb9m7MyxPuw','Navigation','','style-underground/navigation',1273032720,1301973997,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Navigation Navigation style underground navigation','000001000001000056000005',NULL),('n-Vr_wgxOkwiHGt1nJto9w','Top Navigation','','style-underground/top-navigation',1273032720,1309236774,'3','7','3','WebGUI::Asset::Wobject::Navigation',1,'Top Navigation Top Navigation style underground top navigation','000001000001000056000005000001',NULL),('jmqLxnoWb6p92Cr12lf1hw','Side Navigation','','style-underground/side-navigation',1273032720,1301973997,'3','7','3','WebGUI::Asset::Wobject::Navigation',1,'Side Navigation Side Navigation style underground side navigation','000001000001000056000005000002',NULL),('8E2UOnj_XPEghTj7nfVM0g','Search','','style-underground/search',1273032720,1301973997,'3','7','3','WebGUI::Asset::Wobject::Search',1,'Search Search style underground search','000001000001000056000006',NULL),('1qFjOEiILIwr1xB5_ebppQ','Greenportal','','greenportal',1273032721,1301973998,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Greenportal Greenportal greenportal','000001000001000057',NULL),('xD76UfQ_JnSgTLBNvytcpQ','greenportal_image','','greenportal_image',1273032721,1301973998,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'greenportal_image greenportal_image greenportal image','000001000001000057000001',NULL),('pAXR7Kby4O-dSxOwLp1GaA','menu_top.png','','greenportal_image/menu_top.png',1273032721,1301973998,'3','7','12','WebGUI::Asset::File::Image',1,'menu_top.png menu_top.png greenportal image menu top.png','000001000001000057000001000001',NULL),('TthzMLO4n3qxy59QZ5YBHg','menu_dark.png','','greenportal_image/menu_dark.png',1273032721,1301973998,'3','7','12','WebGUI::Asset::File::Image',1,'menu_dark.png menu_dark.png greenportal image menu dark.png','000001000001000057000001000002',NULL),('3n31SQjYa150TBrRBgMPhA','menu_light.png','','greenportal_image/menu_light.png',1273032721,1301973998,'3','7','12','WebGUI::Asset::File::Image',1,'menu_light.png menu_light.png greenportal image menu light.png','000001000001000057000001000003',NULL),('R4RxDufGbbIzEmpcoEcLrw','logo.jpg','','greenportal_image/logo.jpg',1273032721,1301973998,'3','7','12','WebGUI::Asset::File::Image',1,'logo.jpg logo.jpg greenportal image logo.jpg','000001000001000057000001000004',NULL),('KKt0VB_eoQxw9xEsHsAhag','Greenportal_style','by Ning from PlutonIT http://pluton.nl\n\nA Joomla! Open Source design released under the GNU/GPL License. Enhanced and converted into WebGUI theme by Ning. The original PHP and CSS file can be downloaded following the author\'s link: http://www.studentsdesign.de/','greenportal_style',1273032721,1301973998,'3','7','12','WebGUI::Asset::Template',0,'Greenportal_style Greenportal_style by Ning from PlutonIT http://pluton.nl A Joomla Open Source design released under the GNU/GPL License Enhanced and converted into WebGUI theme by Ning The original PHP and CSS file can be downloaded following the author\'s link http://www.studentsdesign.de greenportal style style','000001000001000057000003',NULL),('h0bOzz7WvdaVZXsjpwtkww','greenportal_Navigation','','greenportal_navigation',1273032721,1301973998,'3','7','3','WebGUI::Asset::Wobject::Navigation',1,'greenportal_Navigation greenportal_Navigation greenportal navigation','000001000001000057000004',NULL),('_z3ukLCqvoaUygfsbbkBzw','Greenportal_menu','','greenportal_menu',1273032721,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_menu Greenportal_menu greenportal menu Navigation','000001000001000057000005',NULL),('qFOfW1sKyOTnGNcP6BXbwg','greenportal_NavigationTop','','greenportal_navigationtop',1273032721,1301973999,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'greenportal_NavigationTop greenportal_NavigationTop greenportal navigationtop','000001000001000057000006',NULL),('Pt38T5_MWSue2e1N36MLdw','Greenportal_menuTop','','greenportal_menutop',1273032721,1301973999,'3','7','12','WebGUI::Asset::Template',0,'Greenportal_menuTop Greenportal_menuTop greenportal menutop Navigation','000001000001000057000007',NULL),('LDcM1Iop17nF2MoSa7zo_Q','Greenportal_dataform','','greenportal_dataform',1273032721,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_dataform Greenportal_dataform greenportal dataform DataForm','000001000001000057000008',NULL),('hVF1taXj4bfd7DuL4XDMYg','Greenportal_datalist','','greenportal_datalist',1273032721,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_datalist Greenportal_datalist greenportal datalist DataForm/List','000001000001000057000009',NULL),('x4-2QYRSrIB_BJfnSKKj4w','Greenportal_acknowledgement','','greenportal_acknowledgement',1273032721,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_acknowledgement Greenportal_acknowledgement greenportal acknowledgement DataForm','000001000001000057000010',NULL),('423R4Y6XIt3wUzlnLo-chg','Greenportal_forum','','greenportal_forum',1273032721,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_forum Greenportal_forum greenportal forum Collaboration','000001000001000057000011',NULL),('oZ1Mk-zExYUyD-JsjTvaHg','Greenportal_thread','','greenportal_thread',1273032722,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_thread Greenportal_thread greenportal thread Collaboration/Thread','000001000001000057000012',NULL),('mYwS8CZaOLMt0raaKXGZcQ','Greenportal_postform','','greenportal_postform',1273032722,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_postform Greenportal_postform greenportal postform Collaboration/PostForm','000001000001000057000013',NULL),('kSGR4OHsKmhLQTuLkisOww','Greenportal_search','','greenportal_search',1273032722,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_search Greenportal_search greenportal search Collaboration/Search','000001000001000057000014',NULL),('G5DgNizuG3jXkjPp6UaGrA','Greenportal_Calendar','','greenportal_calendar',1273032722,1301973999,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Greenportal_Calendar Greenportal_Calendar greenportal calendar','000001000001000057000015',NULL),('U78V5IJHVljvRTb6ydsTHg','Greenportal_calendarMonth','','greenportal_calendar/greenportal_calendarmonth',1273032722,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_calendarMonth Greenportal_calendarMonth greenportal calendar greenportal calendarmonth Calendar/Month','000001000001000057000015000001',NULL),('Xqc3qPUXoFE8dt9qocdWig','Greenportal_calendarWeek','','greenportal_calendar/greenportal_calendarweek',1273032722,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_calendarWeek Greenportal_calendarWeek greenportal calendar greenportal calendarweek Calendar/Week','000001000001000057000015000002',NULL),('IBTb7wllSt7RxFmmvm9pkQ','Greenportal_calendarDay','','greenportal_calendar/greenportal_calendarday',1273032722,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_calendarDay Greenportal_calendarDay greenportal calendar greenportal calendarday Calendar/Day','000001000001000057000015000003',NULL),('Z1EM7JMI_4SkyfaZffSElw','Greenportal_calendarEvent','','greenportal_calendar/greenportal_calendarevent',1273032722,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_calendarEvent Greenportal_calendarEvent greenportal calendar greenportal calendarevent Calendar/Event','000001000001000057000015000004',NULL),('fJg7SKpGZwzSNx3_ebki1A','Greenportal_calendarEventEdit','','greenportal_calendar/greenportal_calendareventedit',1273032722,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_calendarEventEdit Greenportal_calendarEventEdit greenportal calendar greenportal calendareventedit Calendar/EventEdit','000001000001000057000015000005',NULL),('ihf4Rx6p72xn_nVKaIeOaw','Greenportal_calendarSearch','','greenportal_calendar/greenportal_calendarsearch',1273032722,1301973999,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_calendarSearch Greenportal_calendarSearch greenportal calendar greenportal calendarsearch Calendar/Search','000001000001000057000015000006',NULL),('jrWJ6nHXkqgFbml7BZ9chw','Greenportal_submission','','greenportal_submission',1273032722,1301974000,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_submission Greenportal_submission greenportal submission Collaboration/Thread','000001000001000057000016',NULL),('Ys6f3vpe0y1uRcaCJ2TlFw','Greenportal_messageboard','','greenportal_messageboard',1273032722,1301974000,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_messageboard Greenportal_messageboard greenportal messageboard MessageBoard','000001000001000057000017',NULL),('default_CS_unsubscribe','Default Collaboration System Unsubscribe','','collaboration_unsubscribe',1274238758,1277868922,'3','7','4','WebGUI::Asset::Template',0,'Default Collaboration System Unsubscribe Default Collaboration System Unsubscribe collaboration unsubscribe Collaboration/Unsubscribe','000001000001000008000030',NULL),('_hELmIJfgbAyXFNqPyApxQ','admin.css','','root/import/gallery-templates/admin.css',1197330678,1285124155,'3','7','3','WebGUI::Asset::Snippet',0,'admin.css admin.css root import gallery templates admin.css adminWrapper text-align:left font-family:arial font-size:11px position relative z-index 2 h2 font-size:15px messageStyle font-weight:bold font-family:arial font-size:10px margin-bottom:8px adminButton border:solid silver 1px background-color:#e0e0e0 font-weight:bold font-size:10px color:#333 cursor:pointer padding 0.5em 1em adminTable border:solid silver 1px background-color:#F0F0F0 color black width:320px padding:5px adminTable select adminTable input adminTable textarea border:solid gray 1px font-size:10px padding-left:5px label white-space:nowrap text-align:right padding-right:10px font-weight:bold width:1px vertical-align:top galleryOrg list-style-type:none display:block width:95 margin-top:3px padding-top:10px margin-left:5px border:gray solid 1px text-align:center font-family:verdana,arial font-size:9pt background-color:#dedede galleryOrgList margin 0px padding 0px galleryOrg left float left width 36 galleryOrg right width 63 galleryOrg img display:block height:150px margin:0px auto border none galleryOrg select galleryOrg input galleryOrg textarea border:solid gray 1px font-size:10px padding-left:5px promote margin-left:3px promote img height:14px width:16px demote margin-right:3px demote img height:14px width:16px delete img height 14px numbering position:absolute top:0px left:0px padding:1px background-color:black color:white moz-border-radius-bottomRight:5px input.captionEnter width:93px clear:both margin-bottom:3px galleryOrg button border-style:none background:none galleryOrg button img width:16px height:auto galleryOrg synopsis input width:80px ','000001000001000015000015',NULL),('68sKwDgf9cGH58-NZcU4lg','Welcome','','home',1124395696,1286336676,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Welcome Home home','000001000002',NULL),('bX5rYxb6tZ9docY6sUhBlw','Getting Started','\nCongratulations on successfully installing the WebGUI Content Engine®. If you used the Site Starter to select a set of default pages, you will see those pages in the site navigation. You will also notice that a number of additional pages appear, such','getting_started/getting-started',1147642514,1278013772,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Getting Started Getting Started getting started getting started Congratulations on successfully installing the WebGUI Content Engine® If you used the Site Starter to select a set of default pages you will see those pages in the site navigation You will also notice that a number of additional pages appear such as this page These are default pages added for your convenience to help you get started with WebGUI and find the resources you need Feel free to remove these extra pages whenever you are ready To get started managing content download the PDF document below This document provides a basic introduction to the WebGUI user interface WebGUI Basics PDF Once you have read this document you may want to head over to the Documentation section where you can find more WebGUI resources ','000001000002000001000001',NULL),('8Bb8gu-me2mhL3ljFyiWLg','Talk to the Experts','Plain Black® created the WebGUI Content Engine® and is here to answer \nyour questions and provide you with services to make sure your WebGUI \nimplementation is entirely successful. We bend over backwards to make \nsure you\'re a success. Contact us ','your_next_step',1124395696,1271359194,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Talk to the Experts Your Next Step your next step Plain Black® created the WebGUI Content Engine® and is here to answer your questions and provide you with services to make sure your WebGUI implementation is entirely successful We bend over backwards to make sure you\'re a success Contact us today to see how we can help you','000001000002000002',NULL),('ix1p0AbwKAz8QWB-T-HHfg','Get Support','Plain Black provides support packages to fit any budget or need. Start out with online support which costs only $500 per year, or work with Plain Black to build a custom support package tailored to your specific needs. No matter what level of support you ','yns/support',1147642516,1271359087,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get Support Get Support yns support Plain Black provides support packages to fit any budget or need Start out with online support which costs only $500 per year or work with Plain Black to build a custom support package tailored to your specific needs No matter what level of support you purchase you will get personalized and friendly service in a timely manner ','000001000002000002000001',NULL),('iCYOjohB9SKvAPr6bXElKA','Get Hosting','Plain Black\'s professionally trained WebGUI experts can handle the task\nof hosting your web site, intranet, or extranet. Let us deal with upgrades, security, and server management so you focus on building your WebGUI site, which is where your time and exp','yns/hosting',1147642516,1271445525,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get Hosting Get Hosting yns hosting Plain Black\'s professionally trained WebGUI experts can handle the task of hosting your web site intranet or extranet Let us deal with upgrades security and server management so you focus on building your WebGUI site which is where your time and expertise should be spent And when you sign up with hosting online support is included ','000001000002000002000002',NULL),('4Yfz9hqBqM8OYMGuQK8oLw','Get Features','WebGUI\'s robust API allows for easy customization. Plain Black\'s team of developers can create any features you need for your site. We\'ve built hundreds of custom applications for people. From simple macros, to custom single sign on systems, to applicatio','yns/features',1147642516,1271352537,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get Features Get Features yns features WebGUI\'s robust API allows for easy customization Plain Black\'s team of developers can create any features you need for your site We\'ve built hundreds of custom applications for people From simple macros to custom single sign on systems to applications that will manage your entire company our team will leverage the power of WebGUI to your advantage ','000001000002000002000003',NULL),('Wl8WZ43g2rK5AYr9o4zY7w','Get Style','Branding and visual appeal are powerful marketing tools. Don\'t let your site become a wallflower. Plain Black\'s professional design team can create a custom design to make your site stand out. Our team is fast, easy to work with, and can even migrate your','yns/style',1147642516,1271445539,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get Style Get Style yns style Branding and visual appeal are powerful marketing tools Don\'t let your site become a wallflower Plain Black\'s professional design team can create a custom design to make your site stand out Our team is fast easy to work with and can even migrate your existing content into your new WebGUI site ','000001000002000002000004',NULL),('2TqQc4OISddWCZmRY1_m8A','Join Us','The WebGUI project community is a diverse and talented group. If you \nwould like to contribute back to the project there are many ways to \nbecome involved. ','join_us',1124395696,1271357565,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Join Us Join Us join us The WebGUI project community is a diverse and talented group If you would like to contribute back to the project there are many ways to become involved','000001000002000004',NULL),('k2Qj03FrAOXYra8kDJYYXw','IRC (Internet Relay Chat)','You can find members of the community on the #webgui chat channel on the Freenode IRC network. If you\'re not \nfamiliar with IRC, it\'s essentially like a chat room. A few things you\'ll need to know: \n\n\n\nYou need an IRC client program. There are many availa','join_us/irc',1271357513,1271357513,'3','7','3','WebGUI::Asset::Wobject::Article',1,'IRC Internet Relay Chat IRC join us irc You can find members of the community on the webgui chat channel on the Freenode IRC network If you\'re not familiar with IRC it\'s essentially like a chat room A few things you\'ll need to know You need an IRC client program There are many available that can be downloaded free of charge The IRC network we use is Freenode Our channel is webgui Channel operators have an next to their name All channel operators in webgui are Plain Black employees Someone with a + next to their name is a recognized contributor in the WebGUI community People who have been recognized as one of the People Behind WebGUI are often given this designation If you\'re looking for a mentor recognized contributors are a good place to start ','000001000002000004000003',NULL),('ksSfkZdsr0uC62NwIk6hFQ','WebGUI Users Conference','An annual event, this is the one time a year when WebGUI users and Plain\n Black\'s staff come together to do all things WebGUI. This is by far \nthe best way to get involved with the community as nothing can replace \nface to face interaction and mentoring.','join_us/wuc',1271356973,1271356973,'3','7','3','WebGUI::Asset::Wobject::Article',1,'WebGUI Users Conference WUC join us wuc An annual event this is the one time a year when WebGUI users and Plain Black\'s staff come together to do all things WebGUI This is by far the best way to get involved with the community as nothing can replace face to face interaction and mentoring The conference is usually held in the fall of each year and more information on attending can be found on the WebGUI Users Conference website as details become available ','000001000002000004000004',NULL),('nWxS5jnA3o3DgPEwBeR7yQ','The Forums','WebGUI \nForums are available for WebGUI related\n discussion and community support. Bounce around ideas, discuss \nimportant issues, and ask community members for help and advice. WebGUI \nForums are broken up into: \n\nEt Cetera: general WebGUI discussion \nWe','join_us/forums',1271357239,1271357239,'3','7','3','WebGUI::Asset::Wobject::Article',1,'The Forums forums join us forums WebGUI Forums are available for WebGUI related discussion and community support Bounce around ideas discuss important issues and ask community members for help and advice WebGUI Forums are broken up into Et Cetera general WebGUI discussion Web Design Templates and Themes discuss making your site look pretty Admin Forum get your questions answered about everything from security to configuration Install/Upgrade Help get answers to your installation and upgrade questions WebGUI Dev a place to discuss WebGUI and WRE core development as well as writing your own custom modules ','000001000002000004000005',NULL),('AssetReportFolder00001','Asset Report','','asset_report',1281501163,1281501163,'3','3','4','WebGUI::Asset::Wobject::Folder',1,'Asset Report Asset Report asset report','000001000001000058',NULL),('sJtcUCfn0CVbKdb4QM61Yw','Asset Report Default Template','','asset-report/asset-report-default-template',1281501163,1283921584,'3','3','4','WebGUI::Asset::Template',0,'Asset Report Default Template Asset Report Default Template asset report asset report default template AssetReport','000001000001000058000001',NULL),('N7uMnnicbyTEulcuRi1sSg','PDFs','','media/pdfs',1283900195,1283900195,'3','7','4','WebGUI::Asset::Wobject::Folder',1,'PDFs PDFs media pdfs','000001000003000001',NULL),('bCGr7FRtZt-XYlBVUEJBjw','Getting_Started_doc.pdf','','media/pdfs/getting_started_doc.pdf',1278013724,1278013724,'3','7','4','WebGUI::Asset::File::Image',1,'Getting_Started_doc.pdf Getting_Started_doc.pdf media pdfs getting started doc.pdf','000001000003000001000001',NULL),('A3T7jpTBKLYws1h5mJ0t8A','makepageprintable.css','','makepageprintable.css',1286336607,1286336607,'3','7','12','WebGUI::Asset::Snippet',0,'makepageprintable.css makepageprintable.css makepageprintable.css This is the stylesheet for the Make Page Printable Style template reset html body div span applet object iframe h1 h2 h3 h4 h5 h6 p blockquote pre a abbr acronym address big cite code del dfn em font img ins kbd q s samp small strike strong sub sup tt var b u i center dl dt dd ol ul li fieldset form label legend table caption tbody tfoot thead tr th td margin:0 padding:0 border:0 outline:0 font-size:100 vertical-align:baseline background:transparent text-decoration:none font-weight:normal font-style:normal basic formatting body font:12px/18px Georgia,\"Bitstream Charter\",\"Liberation Serif\",\"Times New Roman\",Times,serif color:#000 h1 h2 h3 h4 h5 h6 font:12px/18px Helvetica,Arial,\"Liberation Sans\",sans-serif code font:11px/18px Lucida Console\",\"Courier New\",\"Liberation Mono\",monospace h1 h2 font-size:18px line-height:24px margin:24px 0 12px h3 font-size:14px margin:0 0 12px h4 margin:0 0 6px font-weight:bold h5 margin:0 0 6px h6 font-style:italic margin:0 0 6px p ul ol dl blockquote table form fieldset margin:0 0 18px a:link a:visited text-decoration:underline color:#000 a:hover a:active text-decoration:none color:#000 ol ul blockquote padding:0 0 0 27px ol ol ol ul ul ul ul ol margin:0 dd margin:0 0 3px blockquote font-style:italic font-size:15px quotes:none blockquote p font-style:italic margin:0 0 9px q quotes:none font-style:italic blockquote:before blockquote:after q:before q:after content content:none b strong dt font-weight:bold cite dfn i em ins font-style:italic abbr acronym text-transform:lowercase font-variant:small-caps del text-decoration:line-through sub vertical-align:sub font-size:8px sup vertical-align:super font-size:8px hr border-color:#aaa border-style:dotted border-width:1px 0 0 color:#fff background:#fff margin:18px 0 padding:0 width:100 legend font-weight:bold label display:block table border-collapse:collapse border-spacing:0 caption font-style:italic margin:0 0 6px tr border-bottom:1px dotted ccc thead tr border-top:1px solid ccc border-bottom:1px solid ccc th td padding:5px 9px 4px th font-variant:small-caps very basic positioning design header border-top:1px dotted aaa border-bottom:1px dotted aaa padding:17px 6px color:#666 header h1 font-weight:bold margin:0 text-transform:uppercase header a text-decoration:none font-style:italic color:#666 font-size:11px content padding:0 6px margin:18px 0 36px content a font-weight:bold content img margin:0 0 18px footer border-top:1px dotted aaa border-bottom:1px dotted aaa padding:17px 6px color:#666 ','000001000001000041000007',NULL),('j_1qEqM6iLfQLiR6VKy0aA','Free Documentation','There are hundreds of pages of free documentation available for WebGUI, provided by both Plain Black and the community at large. The following list is by no means comprehensive, but it should get you started in the right direction. \n \n\nPrimer - A downloa','documentation/free-documentation',1215718151,1299872071,'3','7','3','WebGUI::Asset::Wobject::Article',1,'Free Documentation Free Documentation documentation free documentation There are hundreds of pages of free documentation available for WebGUI provided by both Plain Black and the community at large The following list is by no means comprehensive but it should get you started in the right direction Primer A downloadable PDF that shows you the basics of publishing content in WebGUI WebGUI User Guides all commercial user guides previously published by Plain Black are in the process of being converted into wikis You can find these wikis on the WebGUI User Guides page of www.webgui.org This is an ongoing process until all books have been converted remaining books are being made available as free PDF downloads Wiki Hundreds of pages of WebGUI community contributed content featuring a variety of tutorials Worldwide A collection of WebGUI related web sites from all over the world that have documentation and other resources for WebGUI API Docs The documentation of all of the WebGUI source code Template Help The documentation of all of WebGUI\'s template variables ','000001000002000003000001',NULL),('diZvW4bSgZWwyyGP3qXi1g','Commercial Documentation','Plain Black has created a line of commercial books which total over 1500 pages of detailed documentation about WebGUI. Both black and white and full color editions of these books are available. Visit the book store today to stock your WebGUI library. Othe','documentation/commercial-documentation',1215717972,1285610019,'3','7','3','WebGUI::Asset::Wobject::Article',1,'Commercial Documentation Commercial Documentation documentation commercial documentation Plain Black has created a line of commercial books which total over 1500 pages of detailed documentation about WebGUI Both black and white and full color editions of these books are available Visit the book store today to stock your WebGUI library Other than hands on training there is no better way to hone your WebGUI skills No matter what your need Plain Black has created a book that\'s right for you and is creating new books each year In the fall of 2010 Plain Black announced that these books will be converted into free wikis You can now access all WebGUI user guides for free on the WebGUI User Guides page on www.webgui.org These books are available for WebGUI version 7.7 and earlier For later documentation see the free resources available on the WebGUI project website ','000001000002000003000003',NULL),('sK_0zVw4kwdJ1sqREIsSzA','WebGUI Auth Password Recovery Email Template','','root/import/auth/webgui/recoveryemail',1287545015,1287545015,'3','7','4','WebGUI::Asset::Template',0,'WebGUI Auth Password Recovery Email Template Password Recovery Email root import auth webgui recoveryemail Auth/WebGUI/RecoveryEmail','000001000001000005000011',NULL),('_cD6DLM_Fs5IlrLeWUjrjg','Workflow Activity Templates','Folder for holding Workflow Activity templates. ','root/import/workflow-activity-templates',1287545015,1287545015,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Workflow Activity Templates Workflow Activity Templates root import workflow activity templates Folder for holding Workflow Activity templates','000001000001000059',NULL),('lYhMheuuLROK_iNjaQuPKg','Notify About Version Tag','','root/import/workflow-activity-templates/notify-about-version-tag',1287545015,1287545015,'3','7','12','WebGUI::Asset::Template',0,'Notify About Version Tag Notify About Version Tag root import workflow activity templates notify about version tag NotifyAboutVersionTag','000001000001000059000001',NULL),('PBtmplHelp000000000001','Help','','root/import/adminconsole/help',1124395706,1147642410,'3','7','12','WebGUI::Asset::Template',0,'Help Help root import adminconsole help AdminConsole','000001000001000003000002',NULL),('2GxjjkRuRkdUg_PccRPjpA','Select Gateway (Default)','','shopping-cart-collateral-items/select-gateway-default',1257311888,1326776038,'3','7','3','WebGUI::Asset::Template',0,'Select Gateway Default Select Gateway Default shopping cart collateral items select gateway default Shop/selectGateway','000001000001000036000024',NULL),('qxd0WpRGqDPWP8WBicYvEA','dragdropsorting.js','','root/import/gallery-templates/dragdropsorting.js',1271820952,1285124158,'3','7','12','WebGUI::Asset::Snippet',0,'dragdropsorting.js dragdropsorting.js root import gallery templates dragdropsorting.js Create our own namespace For the moment we leave this here since there are no other JS modules for the gallery if typeof Gallery == undefined Gallery = Gallery.DDSorting = Configure the drag\'n\'drop sorting app Gallery.DDSorting.parentId = photos Element Id of the container element Gallery.DDSorting.draggableNodeTags = li Type of tag used for draggable items Gallery.DDSorting.idPrefix = photoId Prefix used in Ids of draggable items Create some shortcuts var Dom = YAHOO.util.Dom var Event = YAHOO.util.Event var DDM = YAHOO.util.DragDropMgr Drag\'n\'drop sorting app for the gallery Gallery.DDSorting.init = function Make list element containing photos a drop target new YAHOO.util.DDTarget(this.parentId Get all items within list of photos var items = document.getElementById(this.parentId).getElementsByTagName(this.draggableNodeTags Initialize DDList object for all list items for i=0 i < items.length i=i+1 new Gallery.DDList(this items[i].id gallery Custom drag and drop implementation Gallery.DDList = function(app id sGroup config Gallery.DDList.superclass.constructor.call(this id sGroup config var el = this.getDragEl Dom.setStyle(el opacity 0.67 The proxy is slightly transparent Assign reference to application object this.app = app Init variables for direction and replacement tracking this.goingUp = false this.goingLeft = false this.lastY = 0 this.lastX = 0 this.before = false this.lastReplaced = null YAHOO.extend(Gallery.DDList YAHOO.util.DDProxy startDrag function(x y Make the proxy look like the source element var dragEl = this.getDragEl var clickEl = this.getEl Dom.setStyle(clickEl visibility hidden Copy source element to proxy and set class dragEl.className = clickEl.className dragEl.innerHTML = clickEl.innerHTML endDrag function(e var srcEl = this.getEl var proxy = this.getDragEl Show the proxy element and animate it to the src element\'s location Dom.setStyle(proxy visibility var a = new YAHOO.util.Motion proxy points to Dom.getXY(srcEl 0.2 YAHOO.util.Easing.easeOut var proxyid = proxy.id var thisid = this.id Hide the proxy and show the source element when finished with the animation a.onComplete.subscribe(function Dom.setStyle(proxyid visibility hidden Dom.setStyle(thisid visibility a.animate Do nothing more if no element has been replaced if this.lastReplaced == null return Get assed ids of the target to move and the last photo replaced var target = srcEl.id.replace(this.app.idPrefix var dest = this.lastReplaced.id.replace(this.app.idPrefix Prepare call to ajax service of the gallery asset We need to set the action argument to moveFile provide the asset id of the target photo in target and the asset id of the photo replaced in before or after depending on order var args = args.action = moveFile args.target = target if this.before args.before = dest else args.after = dest Callback function for asynchronous request This is required for error handling var callback = success function o Parse answer from ajax service result = YAHOO.lang.JSON.parse(o.responseText Check for errors if result.err Display error message alert(\'Failed to move photo + result.errMessage Request a reload of the page so we are back in sync location.reload failure function o Display generic error message alert(\'AJAX service for moving photos is currently not available Failed to move photo Request a reload of the page so we are back in sync location.reload Convert args object to JSON string var postData = func=ajax;args= + encodeURI(YAHOO.lang.JSON.stringify(args Make asynchronous call to gallery asset YAHOO.util.Connect.asyncRequest(\"POST this.app.url callback postData onDrag function(e Keep track of the direction of the drag for use during onDragOver var y = Event.getPageY(e var x = Event.getPageX(e Check in vertical direction if y < this.lastY this.goingUp = true else if y > this.lastY this.goingUp = false Check in horizontal direction if x < this.lastX this.goingLeft = true else if x > this.lastX this.goingLeft = false this.lastY = y this.lastX = x onDragOver function(e id var srcEl = this.getEl var destEl = Dom.get(id We are only concerned with list items we ignore the dragover notifications for the list if destEl.nodeName.toLowerCase == this.app.draggableNodeTags var orig_p = srcEl.parentNode var p = destEl.parentNode if this.goingUp || this.goingLeft Insert above/before p.insertBefore(srcEl destEl Keep track of where we moved this.lastReplaced = destEl this.before = true else Insert below/after p.insertBefore(srcEl destEl.nextSibling Keep track of where we moved this.lastReplaced = destEl this.before = false DDM.refreshCache Start application after DOM is ready Event.onDOMReady(Gallery.DDSorting.init Gallery.DDSorting true','000001000001000015000026',NULL),('f2EktltCvwQpl_3-B1yR7g','Asset Templates','','root/import/asset_templates',1288748251,1288748251,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Asset Templates Asset Templates root import asset templates','000001000001000060',NULL),('BBpxqoSseIor5C9ei9JEFQ','Underground WebGUI.css','','style-underground/css/underground-webgui.css',1273032719,1301973996,'3','7','3','WebGUI::Asset::Snippet',0,'Underground WebGUI.css Underground WebGUI.css style underground css underground webgui.css wg-toolbar p margin 0px img.wg-toolbar-icon border 0px none toolbarIcon margin 0px label display inline ','000001000001000056000002000002',NULL),('xyyn5mz3xGyvrcI1rY8C-w','greenportal.css','','greenportal.css',1273032721,1301973998,'3','7','12','WebGUI::Asset::Snippet',0,'greenportal.css greenportal.css greenportal.css CSS Document body,html text-align:center height 100 margin 3px 3px 3px 3px font-family Verdana Sans-Serif line-height 125 color:#CCCCCC background 222625 h1,h2,h3,h4,h5,h6{font-weight:bold h1{font-size:18px h2{font-size:16px h3{font-size:14px h4{font-size:12px h5{font-size:11px h6{font-size:10px main width:80 height:100 margin-left:auto margin-right:auto position:relative body > main height:auto min-height:100 font-size:10px main mainHeader width:100 height:125px background url(\'^FileUrl(/greenportal_image/logo.jpg top center no-repeat margin-bottom:5px position:relative main mainHeader title position:absolute top:55px left:180px font-size:36pt font-family Edwardian Script ITC Arial Sans-Serif font-variant small-caps font-style italic color:#CCCCCC font-weight bold overflow visible padding 20px main mainHeader title a color:#CCCCCC text-decoration:none main mainHeader title a:hover color:#FFFFFF text-decoration:none font-size:37pt main mainMenu width:186px position:absolute top:125px left:0px main mainMenu li list-style none font-size 9pt text-align:left main mainMenu menuTop color:#99CC33 background url(\'^FileUrl(/greenportal_image/menu_top.png no-repeat margin-left:-3px padding:2px 0px 3px 26px width:162px 186px-24px font-size:10pt font-weight bold main mainMenu indent1 margin-left:0px width:186px main mainMenu indent2 margin-left:17px width:168px 186-17px main mainMenu a display:block height:24px font-weight:bold text-decoration:none color:#CCCCCC background url(\'^FileUrl(/greenportal_image/menu_dark.png no-repeat padding:2px 0px 0px 24px main mainMenu a:hover,active display:block height:24px font-weight:bold text-decoration:none color:#FFFFFF background url(\'^FileUrl(/greenportal_image/menu_light.png no-repeat padding:2px 0px 0px 24px main mainContent width:75 height:100 margin-top:5px margin-left:215px text-align:left border 1px solid CCCCCC main > mainContent margin-top:0px min-height:500px main > mainContent > p margin-top:0px main mainContent topMenu margin-right 10px text-align right font-size 8pt font-weight bold main mainContent topMenu a color 99CC33 text-decoration none main mainContent topMenu a:hover text-decoration:underline main mainContent mainText margin 10px 5px 5px 10px font-size:8pt padding 5px min-height 423px text-align left main mainContent mainText a color:#FFFFFF text-decoration none font-weight bold main mainContent mainText a:hover color:#FFFF00 text-decoration none font-weight bold main mainContent mainText yui-skin-sam a color 222625 text-decoration none font-weight bold main mainFooter text-align:left padding:10px margin:5px 0px 5px 200px width:75 font-size:9px background:url(^FileUrl(/greenportal_image/logo.jpg no-repeat main mainFooter a color:#CCCCCC font-weight:bold text-decoration:none main mainFooter a:hover color:#FFFFFF font-weight:bold text-decoration:none ','000001000001000057000002',NULL),('XdlKhCDvArs40uqBhvzR3w','Article With Pagination','','article-with-pagination',1254881103,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Article With Pagination Article With Pagination article with pagination Article','000001000001000004000006',NULL),('mRtqRuVikSe82BQsYBlD0A','Bare Image','','bare_image',1263962529,1263962529,'3','7','12','WebGUI::Asset::Template',0,'Bare Image Bare Image bare image ImageAsset','000001000001000017000003',NULL),('8tqyQx-LwYUHIWOlKPjJrA','EMS Event Submission Template','','root/import/ems/ems-event-submission',1258524917,1279073449,'3','7','12','WebGUI::Asset::Template',0,'EMS Event Submission Template EMS Event Submission Template root import ems ems event submission EMS/Submission','000001000001000012000009',NULL),('DoVNijm6lMDE0cYrtvEbDQ','EMS Event Submission Main Template','','root/import/ems/ems-event-submission-main',1258524917,1279073449,'3','7','12','WebGUI::Asset::Template',0,'EMS Event Submission Main Template EMS Event Submission Main Template root import ems ems event submission main EMS/SubmissionMain','000001000001000012000010',NULL),('ktSvKU8riGimhcsxXwqvPQ','EMS Event Submission Queue','','root/import/ems/ems-event-submission-queue',1258524917,1279073450,'3','7','12','WebGUI::Asset::Template',0,'EMS Event Submission Queue EMS Event Submission Queue root import ems ems event submission queue EMS/SubmissionQueue','000001000001000012000011',NULL),('pbproto000000000000002','Request Tracker','','request-tracker-prototype',1147642465,1163019036,'3','7','12','WebGUI::Asset::Wobject::Collaboration',1,'Request Tracker Request Tracker request tracker prototype','000001000001000008000031',NULL),('VCFhB9WOsDsH2Apj3c6DpQ','Three Columns','','three-columns',1254881103,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Three Columns Three Columns three columns Layout','000001000001000019000008',NULL),('_aE16Rr1-bXBf8SIaLZjCg','picklanguage','','media/picklanguage',1257311888,1257311888,'3','7','12','WebGUI::Asset::Template',0,'picklanguage picklanguage media picklanguage Macro/PickLanguage','000001000001000021000013',NULL),('mfHGkp6t9gdclmzN33OEnw','Default Twitter Choose Username','','root/import/auth/twitter/chooseusername/default-twitter-choose-username',1277868927,1277868927,'3','7','12','WebGUI::Asset::Template',0,'Default Twitter Choose Username Default Twitter Choose Username root import auth twitter chooseusername default twitter choose username Auth/Twitter/ChooseUsername','000001000001000005000012',NULL),('limMkk80fMB3fqNZVf162w','Default Asset Subscription','','root/import/default-asset-subscription',1253507213,1281501163,'3','7','3','WebGUI::Asset::Template',0,'Default Asset Subscription Default Asset Subscription root import default asset subscription AssetAspect/Subscribable','000001000001000060000001',NULL),('YP9WaMPJHvCJl-YwrLVcPw','Progress Bar','','admin_progress_bar',1245376837,1245376837,'3','7','12','WebGUI::Asset::Template',0,'Progress Bar Progress Bar admin progress bar AdminConsole/ProgressBar','000001000001000060000002',NULL),('Rqwgh50A3gGcOKIrdi_kxw','Authorize.net Credentials (Default)','','shopping-cart-collateral-items/authorizenet-credentials',1313542962,1326776038,'3','7','4','WebGUI::Asset::Template',0,'Authorize.net Credentials Default Authorize.net Credentials Default shopping cart collateral items authorizenet credentials Shop/Credentials','000001000001000036000025',NULL),('3n3H85BsdeRQ0I08WmvlOg','thingy.css','','root/import/thingy-templates/thingy.css',1212091492,1313542960,'3','7','12','WebGUI::Asset::Snippet',0,'thingy.css thingy.css root import thingy templates thingy.css wgThingy margin:5px wgThingy styleButton color:black margin:0px 5px display:block float:left wgThingy spacerOne padding-left:15px wgThingy rowOne wgThingy tr.rowOne td background EEEEEE margin:1px border:solid CDCDCD 1px color:#000 padding:2px wgThingy rowTwo wgThingy tr.rowTwo td background DBDBDB margin:1px border:solid DDDDDD 1px color:#000 padding:2px wgThingsWrapper img display:block vertical-align:middle float:left wgThingsWrapper label font-weight:bold padding-left:15px wgThingy h2.title background 000 height:42px color:white font-size:18px font-weight:bold letter-spacing:1px line-height:42px padding-left:15px margin-bottom:0px wgThingy span.smaller font-size:13px color:white wgThingy controls line-height:35px height:35px background f1f1f1 margin-top:0px margin-bottom:20px padding:0px overflow:visible wgThingy label background:black color:white padding:2px 5px font-family:arial font-size:11px font-weight:bold vertical-align:middle wgThingy label a color:white searchTable input editThing input background white border:solid 555 1px editThing margin-top:15px thingyList thingyList margin:0px padding:0px thingyList position:relative float:left overflow:visible thingyList goButton:link thingyList goButton:visited padding:2px 25px 2px 2px background F1F1F1 url(^FileUrl(root/import/thingy-templates/images/go-btn.gif no-repeat right line-height:20px border:solid a2a2a2 1px color:#a2a2a2 text-decoration:none font-family:verdana arial font-size:10px font-weight:bold margin-left:20px letter-spacing:0px thingyList goButton:hover background-color:white thingyList things padding:0px margin:0px width:300px z-index:5000 position:absolute top:27px left:20px border:solid a2a2a2 1px border-top-style:none thingyList things a:link thingyList things a:visited display:block background-color:#f1f1f1 border-top:solid a2a2a2 1px border-bottom:solid 727272 1px line-height:12px font-size:10px height:12px padding:2px 5px text-decoration:none font-weight:bold color:#a2a2a2 thingyList things a:hover background-color:white ','000001000001000044000006',NULL); ALTER TABLE `assetIndex` ENABLE KEYS; ALTER TABLE `assetVersionTag` DISABLE KEYS; -INSERT INTO `assetVersionTag` VALUES ('pbversion0000000000001','Base 7.10.23 Install',1,1315877146,'3',1315877146,'3',0,'','3','',NULL,NULL,NULL,NULL,0); +INSERT INTO `assetVersionTag` VALUES ('pbversion0000000000001','Base 7.10.24 Install',1,1326776041,'3',1326776041,'3',0,'','3','',NULL,NULL,NULL,NULL,0); ALTER TABLE `assetVersionTag` ENABLE KEYS; ALTER TABLE `authentication` DISABLE KEYS; INSERT INTO `authentication` VALUES ('1','LDAP','ldapUrl',NULL),('3','LDAP','ldapUrl',''),('1','LDAP','connectDN',NULL),('3','LDAP','connectDN',''),('1','WebGUI','identifier','No Login'),('3','WebGUI','identifier','RvlMjeFPs2aAhQdo/xt/Kg'),('1','WebGUI','passwordLastUpdated','1078704037'),('1','WebGUI','passwordTimeout','3122064000'),('1','WebGUI','changeUsername','1'),('1','WebGUI','changePassword','1'),('3','WebGUI','passwordLastUpdated','1078704037'),('3','WebGUI','passwordTimeout','3122064000'),('3','WebGUI','changeUsername','1'),('3','WebGUI','changePassword','1'); @@ -2683,8 +2693,8 @@ ALTER TABLE `snippet` DISABLE KEYS; INSERT INTO `snippet` VALUES ('SynConXSLT000000000001','\n\n\n \n \n \n \n \n \nYou\'re viewing an RSS version 0.9 feed. Please use an RSS feed reader to view this content as intended.\n
\n
\n \n
\n
\n \n
\n
    \n \n
\n
\n
\n \n
  • \n \n \n \n
  • \n
    \n
    ','application/xml',1124395707,3600,'\n\n\n \n \n \n \n \n \nYou\'re viewing an RSS version 0.9 feed. Please use an RSS feed reader to view this content as intended.\n
    \n
    \n \n
    \n
    \n \n
    \n
      \n \n
    \n
    \n
    \n \n
  • \n \n \n \n
  • \n
    \n
    ',0,NULL),('SynConXSLT000000000002','\n\n\n \n \n \n \n \n \n
    \nYou\'re viewing an RSS version 0.91 feed. Please use an RSS feed reader to view this content as intended.\n
    \n \n
    \n
    \n \n
    \n
      \n \n
    \n\n
    \n
    \n \n
  • \n \n \n \n
    \n \n\n
    \n
  • \n
    \n
    ','application/xml',1124395707,3600,'\n\n\n \n \n \n \n \n \n
    \nYou\'re viewing an RSS version 0.91 feed. Please use an RSS feed reader to view this content as intended.\n
    \n \n
    \n
    \n \n
    \n
      \n \n
    \n\n
    \n
    \n \n
  • \n \n \n \n
    \n \n\n
    \n
  • \n
    \n
    ',0,NULL),('SynConXSLT000000000003','\n\n\n \n \n \n \n \n \n
    \nYou\'re viewing an RSS version 1.0 feed. Please use an RSS feed reader to view this content as intended.\n
    \n \n
    \n
    \n \n
    \n
      \n \n
    \n\n
    \n
    \n \n
  • \n \n \n \n \n (\n )\n \n\n
    \n \n
    \n
  • \n
    \n
    \n','application/xml',1124395707,3600,'\n\n\n \n \n \n \n \n \n
    \nYou\'re viewing an RSS version 1.0 feed. Please use an RSS feed reader to view this content as intended.\n
    \n \n
    \n
    \n \n
    \n
      \n \n
    \n\n
    \n
    \n \n
  • \n \n \n \n \n (\n )\n \n\n
    \n \n
    \n
  • \n
    \n
    \n',0,NULL),('SynConXSLT000000000004','\n\n\n \n \n \n \n \n \n
    \nYou\'re viewing an RSS version 2.0 feed. Please use an RSS feed reader to view this content as intended.\n
    \n \n
    \n
    \n \n
    \n
      \n \n
    \n\n
    \n
    \n \n
  • \n \n \n \n \n ()\n \n\n
    \n \n
    \n
  • \n
    \n
    ','application/xml',1124395707,3600,'\n\n\n \n \n \n \n \n \n
    \nYou\'re viewing an RSS version 2.0 feed. Please use an RSS feed reader to view this content as intended.\n
    \n \n
    \n
    \n \n
    \n
      \n \n
    \n\n
    \n
    \n \n
  • \n \n \n \n \n ()\n \n\n
    \n \n
    \n
  • \n
    \n
    ',0,NULL),('7-0-style0000000000003','body, html\n{\n text-align:center;\n margin:0px;\n height:100%; \n background-color:#494949;\n}\n\n#main\n{\n width:800px;\n background: url(\'^FileUrl(style1/main_bg.jpg);\') repeat-y;\n height:100%;\n margin-left:auto;\n margin-right:auto;\n margin-top:0px;\n margin-bottom:0px;\n position:relative;\n}\nbody > #main\n{\n height:auto;\n min-height:100%;\n}\n\n#main #mainHeader\n{\n width:800px;\n height:133px;\n background: url(\'^FileUrl(style1/header.jpg);\') top left no-repeat;\n margin-bottom:0px;\n position:relative;\n}\n#main #mainHeader #title\n{\n position:absolute;\n top:23px;\n left:145px;\n font-size:32pt;\n font-family:arial;\n color:white;\n font-weight:bold;\n}\n#main #mainHeader #title a {\n color:white;\n text-decoration:none;\n}\n\n#main #mainContent\n{\n background: url(\'^FileUrl(style1/orange_left01.jpg);\') left top no-repeat;\n width:100%;\n height:100%; \n margin-top:0px;\n text-align:left;\n border:solid red 0px;\n}\n#main > #mainContent\n{\n margin-top:0px;\n min-height:500px;\n}\n#main > #mainContent > p {\n margin-top:0px;\n}\n#main #mainContent #mainText a:link {\n color:#FF7F23;\n}\n#main #mainContent #mainText a:visited {\n color:#D25900;\n}\n\n/* LEVEL 1 AND 2 NAVIGATION */\n#main .mainNav_1, #main .mainNav_2 {\n border-bottom:dashed #DADADA 1px; \n width:621px;\n height:25px;\n text-align:left;\n position:relative;\n margin-left:137px; \n clear:both;\n}\n#main .mainNav_1 a:link, #main .mainNav_1 a:visited, #main .mainNav_2 a:link, #main .mainNav_2 a:visited {\n color:white;\n text-decoration:none;\n top:5px;\n position:relative;\n -moz-box-sizing:border-box;\n}\n#main .mainNav_1 a:hover,#main .mainNav_2 a:hover {\n color:black;\n}\n#main .mainNav_1 div .left, #main .mainNav_2 div .left {\n width:12px;\n height:25px;\n display:block;\n float:left;\n background: url(\'^FileUrl(style1/nav1_off_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div .left {\n background: url(\'^FileUrl(style1/nav2_off_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_1 div .center, #main .mainNav_2 div .center { \n height:25px;\n display:block;\n float:left;\n background: url(\'^FileUrl(style1/nav1_off_center.jpg);\') repeat-x top left;\n color:white;\n font-family:arial, verdana;\n font-size:8pt;\n}\n#main .mainNav_2 div .center {\n background: url(\'^FileUrl(style1/nav2_off_center.jpg);\') repeat-x top left;\n}\n#main .mainNav_1 div .right, #main .mainNav_2 div .right {\n width:10px;\n height:25px;\n display:block;\n float:left;\n background: url(\'^FileUrl(style1/nav1_off_right.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div .right {\n background: url(\'^FileUrl(style1/nav2_off_right.jpg);\') no-repeat top left;\n}\n#main .mainNav_1 div.navOn .left {\n background: url(\'^FileUrl(style1/nav1_on_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_1 div.navOn .center {\n background: url(\'^FileUrl(style1/nav1_center_on.jpg);\') repeat-x top left;\n}\n#main .mainNav_1 div.navOn .right {\n background: url(\'^FileUrl(style1/nav1_on_right.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div.navOn .left {\n background: url(\'^FileUrl(style1/nav2_on_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div.navOn .center {\n background: url(\'^FileUrl(style1/nav2_center_on.jpg);\') repeat-x top left;\n}\n#main .mainNav_2 div.navOn .right {\n background: url(\'^FileUrl(style1/nav2_on_right.jpg);\') no-repeat top left;\n} \n#main .mainNav_1 div.navOn a:link, #main .mainNav_1 div.navOn a:visited, #main .mainNav_2 div.navOn a:link, #main .mainNav_2 div.navOn a:visited {\n color:black;\n}\n/* ENDOF LEVEL 1 AND 2 NAVIGATION */\n\n#main #crumbTrail {\n margin-left:177px;\n margin-bottom:0px;\n color:gray;\n font-size:8pt;\n font-weight:bold;\n}\n#main #crumbTrail a.crumbTrail:visited, #main #crumbTrail a.crumbTrail:link {\n color:silver;\n font-size:8pt; \n font-family:arial;\n text-decoration:none;\n font-weight:normal;\n}\n#main #crumbTrail a.crumbTrail:hover {\n color:gray;\n}\n\n#main #mainText\n{\n padding-left:150px;\n font-family:verdana;\n font-size:9pt;\n width:600px;\n margin-top:0px;\n}\n\n#main #gui\n{\n bottom:0px;\n left:0px;\n position:absolute;\n width:135px;\n font-size:8pt;\n color:black;\n font-family:arial;\n text-align:right;\n}\n#main #gui .loginBox {\n padding-right:12px;\n -moz-box-sizing:border-box;\n width:100px; \n float:right;\n margin-bottom:10px;\n}\n#main #gui .loginBox .loginBoxField {\n width:75px;\n}\n#main #gui .loginBox .loginBoxButton {\n background-color:#D65501;\n color:white;\n border:solid white 2px;\n margin-top:4px;\n font-variant:small-caps;\n}\n#main #gui a\n{\n color:white; \n}\n#copyright {\n color:#fff;\n position:absolute;\n top:110px;\n right:40px;\n font-family:verdana;\n font-size:8pt;\n font-weight:bold;\n background-color:#2D2D2D;\n opacity:0.4;\n -moz-opacity:0.4;\n -khtml-opacity:0.4; \n padding:2px;\n}\n* html #copyright {\n background: transparent;\n}\n','text/css',1147642492,3600,'body,html{text-align:center;margin:0px;height:100%;background-color:#494949;}#main{width:800px;background:url(\'^FileUrl(style1/main_bg.jpg);\') repeat-y;height:100%;margin-left:auto;margin-right:auto;margin-top:0px;margin-bottom:0px;position:relative;}body > #main{height:auto;min-height:100%;}#main #mainHeader{width:800px;height:133px;background:url(\'^FileUrl(style1/header.jpg);\') top left no-repeat;margin-bottom:0px;position:relative;}#main #mainHeader #title{position:absolute;top:23px;left:145px;font-size:32pt;font-family:arial;color:white;font-weight:bold;}#main #mainHeader #title a{color:white;text-decoration:none;}#main #mainContent{background:url(\'^FileUrl(style1/orange_left01.jpg);\') left top no-repeat;width:100%;height:100%;margin-top:0px;text-align:left;border:solid red 0px;}#main > #mainContent{margin-top:0px;min-height:500px;}#main > #mainContent > p{margin-top:0px;}#main #mainContent #mainText a:link{color:#FF7F23;}#main #mainContent #mainText a:visited{color:#D25900;}#main .mainNav_1,#main .mainNav_2{border-bottom:dashed #DADADA 1px;width:621px;height:25px;text-align:left;position:relative;margin-left:137px;clear:both;}#main .mainNav_1 a:link,#main .mainNav_1 a:visited,#main .mainNav_2 a:link,#main .mainNav_2 a:visited{color:white;text-decoration:none;top:5px;position:relative;-moz-box-sizing:border-box;}#main .mainNav_1 a:hover,#main .mainNav_2 a:hover{color:black;}#main .mainNav_1 div .left,#main .mainNav_2 div .left{width:12px;height:25px;display:block;float:left;background:url(\'^FileUrl(style1/nav1_off_left.jpg);\') no-repeat top left;}#main .mainNav_2 div .left{background:url(\'^FileUrl(style1/nav2_off_left.jpg);\') no-repeat top left;}#main .mainNav_1 div .center,#main .mainNav_2 div .center{height:25px;display:block;float:left;background:url(\'^FileUrl(style1/nav1_off_center.jpg);\') repeat-x top left;color:white;font-family:arial,verdana;font-size:8pt;}#main .mainNav_2 div .center{background:url(\'^FileUrl(style1/nav2_off_center.jpg);\') repeat-x top left;}#main .mainNav_1 div .right,#main .mainNav_2 div .right{width:10px;height:25px;display:block;float:left;background:url(\'^FileUrl(style1/nav1_off_right.jpg);\') no-repeat top left;}#main .mainNav_2 div .right{background:url(\'^FileUrl(style1/nav2_off_right.jpg);\') no-repeat top left;}#main .mainNav_1 div.navOn .left{background:url(\'^FileUrl(style1/nav1_on_left.jpg);\') no-repeat top left;}#main .mainNav_1 div.navOn .center{background:url(\'^FileUrl(style1/nav1_center_on.jpg);\') repeat-x top left;}#main .mainNav_1 div.navOn .right{background:url(\'^FileUrl(style1/nav1_on_right.jpg);\') no-repeat top left;}#main .mainNav_2 div.navOn .left{background:url(\'^FileUrl(style1/nav2_on_left.jpg);\') no-repeat top left;}#main .mainNav_2 div.navOn .center{background:url(\'^FileUrl(style1/nav2_center_on.jpg);\') repeat-x top left;}#main .mainNav_2 div.navOn .right{background:url(\'^FileUrl(style1/nav2_on_right.jpg);\') no-repeat top left;}#main .mainNav_1 div.navOn a:link,#main .mainNav_1 div.navOn a:visited,#main .mainNav_2 div.navOn a:link,#main .mainNav_2 div.navOn a:visited{color:black;}#main #crumbTrail{margin-left:177px;margin-bottom:0px;color:gray;font-size:8pt;font-weight:bold;}#main #crumbTrail a.crumbTrail:visited,#main #crumbTrail a.crumbTrail:link{color:silver;font-size:8pt;font-family:arial;text-decoration:none;font-weight:normal;}#main #crumbTrail a.crumbTrail:hover{color:gray;}#main #mainText{padding-left:150px;font-family:verdana;font-size:9pt;width:600px;margin-top:0px;}#main #gui{bottom:0px;left:0px;position:absolute;width:135px;font-size:8pt;color:black;font-family:arial;text-align:right;}#main #gui .loginBox{padding-right:12px;-moz-box-sizing:border-box;width:100px;float:right;margin-bottom:10px;}#main #gui .loginBox .loginBoxField{width:75px;}#main #gui .loginBox .loginBoxButton{background-color:#D65501;color:white;border:solid white 2px;margin-top:4px;font-variant:small-caps;}#main #gui a{color:white;}#copyright{color:#fff;position:absolute;top:110px;right:40px;font-family:verdana;font-size:8pt;font-weight:bold;background-color:#2D2D2D;opacity:0.4;-moz-opacity:0.4;-khtml-opacity:0.4;padding:2px;}* html #copyright{background:transparent;}',0,'WebGUI::Asset::Template::HTMLTemplate'),('7-0-style0000000000033','body, html { \n height:100%; \n}\nbody {\n background:#7c9ab0 url(\'^FileUrl(style2/main_bg.jpg);\') repeat-y right; \n margin:0px;\n}\n.rightColumn {\n width:20%;\n height:100%;\n background: #eeeeee url(\'^FileUrl(style2/rightCol_bg.jpg);\') repeat-y right; \n text-align:center; \n}\n.rightColumn #pb_wg_bg {\n background: url(\'^FileUrl(style2/pb_wg_bg.jpg);\') repeat-x;\n width:100%;\n text-align:left; \n}\n.rightColumn #pb_wg {\n background: url(\'^FileUrl(style2/pb_wg.jpg);\') left no-repeat;\n height:53px;\n}\n.leftColumn { \n width:80%; \n background: white url(\'^FileUrl(style2/context_bg.jpg);\') repeat-y right; \n} \n.leftColumn #header {\n width:100%;\n background:#7c9ab0 url(\'^FileUrl(style2/leftCol_header.jpg);\') right no-repeat; \n height:86px;\n position:relative;\n}\n.leftColumn #header #title, .leftColumn #header #title_bg {\n color:white;\n font-size:36pt;\n font-weight:bold;\n font-family:arial;\n font-variant:small-caps;\n letter-spacing:12px;\n top:15px;\n left:5px;\n position:absolute;\n z-index:10;\n}\n.leftColumn #header #title a {\n color:white;\n text-decoration:none;\n}\n.leftColumn #header #title_bg {\n color:black;\n z-index:5;\n top:17px;\n left:7px;\n}\n.leftColumn #context {\n /*background: #fff url(\'^FileUrl(style2/context_bg.jpg);\') repeat-y right; */\n width:95%;\n font-family:verdana;\n font-size:9pt;\n color:#242424;\n -moz-box-sizing:border-box; \n position:relative;\n padding-left:1%;\n padding-right:1%;\n padding-bottom:15px;\n}\n.leftColumn #context a {\n color:#7C9AB0;\n font-weight:bold;\n}\n.leftColumn #context a:hover {\n text-decoration:none;\n}\n.leftColumn #pageTitleBG {\n background: url(\'^FileUrl(style2/page_title_bg.jpg);\') repeat-x; \n width:100%;\n}\n.leftColumn #pageTitleBG #pageTitle {\n background: url(\'^FileUrl(style2/page_title.jpg);\') right no-repeat; \n width:100%;\n height:50px;\n} \n.leftColumn #pageTitleBG #pageTitle h2 {\n font-size:14pt;\n color:#696969;\n font-family:arial;\n font-weight:normal;\n margin:0px;\n padding-top:2px;\n padding-left:25px;\n letter-spacing:3px;\n}\n.rightColumn #nav {\n width:85%;\n background: #b5b5b5 url(\'^FileUrl(style2/nav_bg.jpg);\') repeat-x top; \n border-right:solid #848484 1px;\n margin-left:auto;\n margin-right:auto;\n text-align:left;\n padding-left:3px;\n padding-top:7px;\n padding-bottom:7px;\n}\n.rightColumn #nav a {\n color:white;\n font-size:8pt;\n font-weight:bold;\n text-decoration:none;\n font-family:arial;\n line-height:8pt; \n} \n.rightColumn #nav .selectedMenuItem {\n color:yellow;\n}\n#loginStyles {\n font-size:8pt;\n font-family:arial;\n padding-bottom:25px;\n}\n#loginStyles a {\n color:#89ACCF;\n font-weight:bold; \n border-bottom:solid transparent 2px;\n text-decoration:none;\n}\n#loginStyles a:hover {\n border-bottom:dotted #B2C9D9 2px;\n} \n\n.copyright {\n border-top:solid silver 3px;\n background-color:gray;\n font-family:arial;\n font-size:9pt;\n color:silver; \n text-align:center;\n}\n','text/css',1147642500,3600,'body,html{height:100%;}body{background:#7c9ab0 url(\'^FileUrl(style2/main_bg.jpg);\') repeat-y right;margin:0px;}.rightColumn{width:20%;height:100%;background:#eeeeee url(\'^FileUrl(style2/rightCol_bg.jpg);\') repeat-y right;text-align:center;}.rightColumn #pb_wg_bg{background:url(\'^FileUrl(style2/pb_wg_bg.jpg);\') repeat-x;width:100%;text-align:left;}.rightColumn #pb_wg{background:url(\'^FileUrl(style2/pb_wg.jpg);\') left no-repeat;height:53px;}.leftColumn{width:80%;background:white url(\'^FileUrl(style2/context_bg.jpg);\') repeat-y right;}.leftColumn #header{width:100%;background:#7c9ab0 url(\'^FileUrl(style2/leftCol_header.jpg);\') right no-repeat;height:86px;position:relative;}.leftColumn #header #title,.leftColumn #header #title_bg{color:white;font-size:36pt;font-weight:bold;font-family:arial;font-variant:small-caps;letter-spacing:12px;top:15px;left:5px;position:absolute;z-index:10;}.leftColumn #header #title a{color:white;text-decoration:none;}.leftColumn #header #title_bg{color:black;z-index:5;top:17px;left:7px;}.leftColumn #context{width:95%;font-family:verdana;font-size:9pt;color:#242424;-moz-box-sizing:border-box;position:relative;padding-left:1%;padding-right:1%;padding-bottom:15px;}.leftColumn #context a{color:#7C9AB0;font-weight:bold;}.leftColumn #context a:hover{text-decoration:none;}.leftColumn #pageTitleBG{background:url(\'^FileUrl(style2/page_title_bg.jpg);\') repeat-x;width:100%;}.leftColumn #pageTitleBG #pageTitle{background:url(\'^FileUrl(style2/page_title.jpg);\') right no-repeat;width:100%;height:50px;}.leftColumn #pageTitleBG #pageTitle h2{font-size:14pt;color:#696969;font-family:arial;font-weight:normal;margin:0px;padding-top:2px;padding-left:25px;letter-spacing:3px;}.rightColumn #nav{width:85%;background:#b5b5b5 url(\'^FileUrl(style2/nav_bg.jpg);\') repeat-x top;border-right:solid #848484 1px;margin-left:auto;margin-right:auto;text-align:left;padding-left:3px;padding-top:7px;padding-bottom:7px;}.rightColumn #nav a{color:white;font-size:8pt;font-weight:bold;text-decoration:none;font-family:arial;line-height:8pt;}.rightColumn #nav .selectedMenuItem{color:yellow;}#loginStyles{font-size:8pt;font-family:arial;padding-bottom:25px;}#loginStyles a{color:#89ACCF;font-weight:bold;border-bottom:solid transparent 2px;text-decoration:none;}#loginStyles a:hover{border-bottom:dotted #B2C9D9 2px;}.copyright{border-top:solid silver 3px;background-color:gray;font-family:arial;font-size:9pt;color:silver;text-align:center;}',0,NULL),('4e-_rNs6mSWedZhQ_V5kJA','.wgShelf .product {\r\n margin:15px;\r\n margin-left:0px; \r\n float:left;\r\n text-align:left;\r\n background-color:#f1f1f1;\r\n border:solid #e1e1e1 1px;\r\n min-height:100px;\r\n min-width:200px;\r\n width:200px;\r\n height:100px;\r\n}\r\n.wgShelf .product .link {\r\n background: url(^FileUrl(root/import/shelf2/images/shelf-titles.jpg);) no-repeat top right;\r\n height:30px;\r\n padding:3px;\r\n line-height:24px;\r\n margin-bottom:5px; \r\n text-align:left;\r\n display:block; \r\n}','text/css',1210779672,0,'.wgShelf .product{margin:15px;margin-left:0px;float:left;text-align:left;background-color:#f1f1f1;border:solid #e1e1e1 1px;min-height:100px;min-width:200px;width:200px;height:100px;}.wgShelf .product .link{background:url(^FileUrl(root/import/shelf2/images/shelf-titles.jpg);) no-repeat top right;height:30px;padding:3px;line-height:24px;margin-bottom:5px;text-align:left;display:block;}',0,NULL),('usuxw9V3jN4d4pujRiEYxg','#contentArea {\r\n height:500px;\r\n padding-bottom:300px;\r\n}','text/css',1209494150,1,'#contentArea{height:500px;padding-bottom:300px;}',0,NULL),('5m5I7__l40C4hhv4ydqAHQ','#thingyList .things {\r\n padding:0px;\r\n margin:0px;\r\n width:200px;\r\n z-index:5000;\r\n position:absolute;\r\n top:27px;\r\n left:20px;\r\n border:solid #a2a2a2 1px;\r\n border-top-style:none;\r\n}\r\n\r\n#thingyList .things a:link,\r\n#thingyList .things a:visited {\r\n display:block;\r\n background-color:#f1f1f1;\r\n border-top:solid #a2a2a2 1px; \r\n border-bottom:solid #727272 1px;\r\n line-height:12px;\r\n font-size:10px;\r\n height:12px;\r\n padding:2px 5px;\r\n text-decoration:none;\r\n font-weight:bold;\r\n color:#a2a2a2;\r\n width:190px;\r\n}\r\n#thingyList .things a:hover {\r\n background-color:white;\r\n}','text/css',1216227786,3600,'#thingyList .things{padding:0px;margin:0px;width:200px;z-index:5000;position:absolute;top:27px;left:20px;border:solid #a2a2a2 1px;border-top-style:none;}#thingyList .things a:link,#thingyList .things a:visited{display:block;background-color:#f1f1f1;border-top:solid #a2a2a2 1px;border-bottom:solid #727272 1px;line-height:12px;font-size:10px;height:12px;padding:2px 5px;text-decoration:none;font-weight:bold;color:#a2a2a2;width:190px;}#thingyList .things a:hover{background-color:white;}',0,NULL),('1XOJDcg_ITRYwVM-QnIcPw',' .wgShelf {\r\n font-size:12px;\r\n font-family:arial, verdana; \r\n margin:15px 0px;\r\n }\r\n .wgShelf h2 {\r\n background: black;\r\n padding:5px;\r\n padding-left:15px;\r\n line-height:32px;\r\n color:white;\r\n margin:0px;\r\n height:32px;\r\n }\r\n .wgShelf .wgShelves {\r\n background: #F1F1F1;\r\n height:29px;\r\n padding:3px;\r\n line-height:29px;\r\n padding-left:30px;\r\n }\r\n .wgShelf .product {\r\n margin:15px;\r\n margin-left:0px; \r\n text-align:left;\r\n background-color:#f1f1f1;\r\n border:solid #e1e1e1 1px;\r\n width: 200px;\r\n display: -moz-inline-box; /* Moz */\r\n display: inline-block; /* Op, Saf, IE \\*/\r\n vertical-align: top; /* IE Mac non capisce e a volte crea extra v space */\r\n }\r\n .wgShelf .product .thumbnail {\r\n display:block;\r\n text-align:left;\r\n margin:3px;\r\n float:left;\r\n }\r\n .wgShelf .product .link {\r\n background: #e1e1e1;\r\n height:30px;\r\n padding:3px;\r\n line-height:24px;\r\n margin-bottom:5px; \r\n text-align:left;\r\n display:block;\r\n }\r\n .wgShelf .product .link a:link,\r\n .wgShelf .product .link a:visited {\r\n color:#000; \r\n display:block;\r\n }\r\n .wgShelf .product .link a:hover {\r\n text-decoration:underline;\r\n }\r\n .wgShelf .product .price {\r\n display:block;\r\n text-align:right;\r\n font-size:18px;\r\n font-weight:bold;\r\n }','text/css',1219175575,0,'.wgShelf{font-size:12px;font-family:arial,verdana;margin:15px 0px;}.wgShelf h2{background:black;padding:5px;padding-left:15px;line-height:32px;color:white;margin:0px;height:32px;}.wgShelf .wgShelves{background:#F1F1F1;height:29px;padding:3px;line-height:29px;padding-left:30px;}.wgShelf .product{margin:15px;margin-left:0px;text-align:left;background-color:#f1f1f1;border:solid #e1e1e1 1px;width:200px;display:-moz-inline-box;display:inline-block;/*\\*/\n vertical-align:top; /**/}.wgShelf .product .thumbnail{display:block;text-align:left;margin:3px;float:left;}.wgShelf .product .link{background:#e1e1e1;height:30px;padding:3px;line-height:24px;margin-bottom:5px;text-align:left;display:block;}.wgShelf .product .link a:link,.wgShelf .product .link a:visited{color:#000;display:block;}.wgShelf .product .link a:hover{text-decoration:underline;}.wgShelf .product .price{display:block;text-align:right;font-size:18px;font-weight:bold;}',0,NULL),('7-0-style0000000000051','body, html {\r\n margin:0px;\r\n background-color:#b53018;\r\n padding:0px;\r\n}\r\nbody a {\r\n color:#EE963E;font-weight:bold;\r\n letter-spacing:1px;\r\n font-size:8pt;\r\n}\r\n#main {\r\n width:98%;\r\n /*min-width:790px;*/\r\n margin:0px;\r\n padding:0px;\r\n padding-top:20px;\r\n padding-bottom:20px;\r\n position:relative;\r\n}\r\n#header { \r\n background: url(\'^FileUrl(style3/header_bg.jpg);\') repeat-x;\r\n width:100%;\r\n margin:0px;\r\n height:115px;\r\n}\r\n#headerTitle {\r\n background: url(\'^FileUrl(style3/header_left.jpg);\') no-repeat left top;\r\n height:100%;\r\n width:100%;\r\n}\r\n#headerRight {\r\n background: url(\'^FileUrl(style3/header_right.jpg);\') no-repeat right top;\r\n width:100%;\r\n height:100%;\r\n text-align:right;\r\n position:relative;\r\n}\r\n#headerRight #title {\r\n position:absolute;\r\n top:25px;\r\n left:20px;\r\n font-family:arial;\r\n text-align:left;\r\n}\r\n#title h1 {\r\n text-transform:uppercase;\r\n margin-bottom:0px;\r\n font-weight:normal;\r\n font-size:26pt;\r\n margin-top:0px;\r\n color:white;\r\n}\r\n#title h1 a {\r\n color:white;\r\n text-decoration:none; font-size: 26pt; font-weight: normal; \r\n}\r\n#title h2 {\r\n margin:0px;\r\n font-size:12pt;\r\n color:#bebebe;\r\n padding-left:20px;\r\n}\r\n#title img {\r\n z-index:5;\r\n}\r\n#login {\r\n position:absolute;\r\n font-size:8pt;\r\n top:45%;\r\n right:150px;\r\n color:white;\r\n z-index:6;\r\n font-family:arial;\r\n}\r\n#login a {\r\n color:white; font-weight: normal; letter-spacing: 0px;\r\n}\r\n.loginBox {\r\n font-size:8pt;\r\n margin:0px;\r\n display:inline;\r\n}\r\n.loginBox input {\r\n font-size:8pt;\r\n}\r\n\r\n#mainBody {\r\n width:100%;\r\n margin:0px;\r\n height:500px;\r\n background: #fff;\r\n position:relative;\r\n z-index:0;\r\n}\r\n#main > #mainBody {\r\n height:auto;\r\n min-height:500px;\r\n}\r\n#contentArea {\r\n z-index:2;\r\n position:relative;\r\n padding-top:10px;\r\n padding-left:10px;\r\n padding-right:20px;\r\n padding-bottom:20px;\r\n -moz-box-sizing:border-box;\r\n font-family:verdana;\r\n font-size:9pt;\r\n min-height:500px;\r\n}\r\nhtml #main #mainBody #contentArea {\r\n height:1%;\r\n}\r\n#topCorner {\r\n width:100%;\r\n height:214px;\r\n position:absolute;\r\n top:0px;\r\n left:0px;\r\n background: url(^FileUrl(/style3/main_top.jpg);) no-repeat;\r\n z-index:1;\r\n}\r\n#bottomCorner {\r\n width:100%;\r\n height:211px;\r\n position:absolute;\r\n bottom:59px;\r\n right:0px;\r\n background: url(\'^FileUrl(style3/main_bottom.jpg);\') no-repeat right;\r\n z-index:1;\r\n}\r\n* html #bottomCorner {\r\n bottom:58px;\r\n}\r\n\r\n#footer {\r\n width:100%;\r\n margin:0px;\r\n background:#000 url(\'^FileUrl(style3/footer_right.jpg);\') no-repeat right top;\r\n height:57px;\r\n border-top:solid #B53018 2px;\r\n text-align:right;\r\n position:relative;\r\n z-index:0;\r\n}\r\n#footer #copyright {\r\n color:#3b3b3b;\r\n font-family:arial;\r\n position:absolute;\r\n top:20px;\r\n left:30px;\r\n font-size:8pt;\r\n}\r\n#main .yui-skin-sam {\r\n font-family:verdana;\r\n font-size:9pt;\r\n font-weight:normal;\r\n}','text/css',1224117026,3600,'body,html{margin:0px;background-color:#b53018;padding:0px;}body a{color:#EE963E;font-weight:bold;letter-spacing:1px;font-size:8pt;}#main{width:98%;margin:0px;padding:0px;padding-top:20px;padding-bottom:20px;position:relative;}#header{background:url(\'^FileUrl(style3/header_bg.jpg);\') repeat-x;width:100%;margin:0px;height:115px;}#headerTitle{background:url(\'^FileUrl(style3/header_left.jpg);\') no-repeat left top;height:100%;width:100%;}#headerRight{background:url(\'^FileUrl(style3/header_right.jpg);\') no-repeat right top;width:100%;height:100%;text-align:right;position:relative;}#headerRight #title{position:absolute;top:25px;left:20px;font-family:arial;text-align:left;}#title h1{text-transform:uppercase;margin-bottom:0px;font-weight:normal;font-size:26pt;margin-top:0px;color:white;}#title h1 a{color:white;text-decoration:none;font-size:26pt;font-weight:normal;}#title h2{margin:0px;font-size:12pt;color:#bebebe;padding-left:20px;}#title img{z-index:5;}#login{position:absolute;font-size:8pt;top:45%;right:150px;color:white;z-index:6;font-family:arial;}#login a{color:white;font-weight:normal;letter-spacing:0px;}.loginBox{font-size:8pt;margin:0px;display:inline;}.loginBox input{font-size:8pt;}#mainBody{width:100%;margin:0px;height:500px;background:#fff;position:relative;z-index:0;}#main > #mainBody{height:auto;min-height:500px;}#contentArea{z-index:2;position:relative;padding-top:10px;padding-left:10px;padding-right:20px;padding-bottom:20px;-moz-box-sizing:border-box;font-family:verdana;font-size:9pt;min-height:500px;}html #main #mainBody #contentArea{height:1%;}#topCorner{width:100%;height:214px;position:absolute;top:0px;left:0px;background:url(^FileUrl(/style3/main_top.jpg);) no-repeat;z-index:1;}#bottomCorner{width:100%;height:211px;position:absolute;bottom:59px;right:0px;background:url(\'^FileUrl(style3/main_bottom.jpg);\') no-repeat right;z-index:1;}* html #bottomCorner{bottom:58px;}#footer{width:100%;margin:0px;background:#000 url(\'^FileUrl(style3/footer_right.jpg);\') no-repeat right top;height:57px;border-top:solid #B53018 2px;text-align:right;position:relative;z-index:0;}#footer #copyright{color:#3b3b3b;font-family:arial;position:absolute;top:20px;left:30px;font-size:8pt;}#main .yui-skin-sam{font-family:verdana;font-size:9pt;font-weight:normal;}',0,NULL),('FEDP3dk8J3Chw_gyr7_XEQ','/*/Horizontal Menu styles/*/\r\n.horizontalMenu ul.menu {\r\n padding: 0;\r\n margin: 0 0 1em;\r\n list-style: none;\r\n width: 100%; /*/clear floated li elements/*/\r\n overflow: auto; /*/clear floated li elements/*/\r\n}\r\n.horizontalMenu ul.menu li {\r\n float: left;\r\n}\r\n.horizontalMenu ul.menu li a {\r\n float: left;\r\n padding: 4px 8px;\r\n margin-right: 1px;\r\n background: #ddd;\r\n color: #000;\r\n text-decoration: none;\r\n}\r\n.horizontalMenu ul.menu li.current a {\r\n background:#eee;\r\n}\r\n.horizontalMenu ul.menu li a:hover {\r\n background:#fff;\r\n}\r\n\r\n/*/Tabs (tabbed navigation) styles/*/\r\n.tabsMenu ul.menu {\r\n margin: 0 0 1em;\r\n}\r\n.tabsMenu ul.menu li {\r\n display: inline;\r\n}\r\n.tabsMenu ul.menu li a {\r\n border: 1px solid #999;\r\n border-bottom: 0;\r\n padding: 5px 10px 2px;\r\n color: #777;\r\n text-decoration:none;\r\n}\r\n.tabsMenu ul.menu li.current a,\r\n.tabsMenu ul.menu li a:hover {\r\n border: 1px solid #000;\r\n border-bottom: 0;\r\n color: #000;\r\n}\r\n\r\n/*/Indent Nav styles/*/\r\n.indentMenu a.level0 {\r\n margin-left:0px;\r\n display:block;\r\n}\r\n.indentMenu a.level1 {\r\n margin-left:15px;\r\n display:block; \r\n}\r\n.indentMenu a.level2 {\r\n margin-left:30px;\r\n display:block;\r\n}\r\n.indentMenu a.level3 {\r\n margin-left:45px;\r\n display:block;\r\n}\r\n.indentMenu a.level4 {\r\n margin-left:60px;\r\n display:block;\r\n}','text/css',1246278679,3600,'.horizontalMenu ul.menu{padding:0;margin:0 0 1em;list-style:none;width:100%;overflow:auto;}.horizontalMenu ul.menu li{float:left;}.horizontalMenu ul.menu li a{float:left;padding:4px 8px;margin-right:1px;background:#ddd;color:#000;text-decoration:none;}.horizontalMenu ul.menu li.current a{background:#eee;}.horizontalMenu ul.menu li a:hover{background:#fff;}.tabsMenu ul.menu{margin:0 0 1em;}.tabsMenu ul.menu li{display:inline;}.tabsMenu ul.menu li a{border:1px solid #999;border-bottom:0;padding:5px 10px 2px;color:#777;text-decoration:none;}.tabsMenu ul.menu li.current a,.tabsMenu ul.menu li a:hover{border:1px solid #000;border-bottom:0;color:#000;}.indentMenu a.level0{margin-left:0px;display:block;}.indentMenu a.level1{margin-left:15px;display:block;}.indentMenu a.level2{margin-left:30px;display:block;}.indentMenu a.level3{margin-left:45px;display:block;}.indentMenu a.level4{margin-left:60px;display:block;}',0,NULL),('i5kt5aodVs_oepNEkE7Okw','/*/styles for the poll asset/*/\r\n.pollColor {\r\nbackground-color:#808080;\r\n}\r\n.pollOptions, .pollSubmit {\r\nborder:0;\r\nmargin:0;\r\npadding:0;\r\n}','text/css',1242312883,3600,'.pollColor{background-color:#808080;}.pollOptions,.pollSubmit{border:0;margin:0;padding:0;}',0,NULL),('uCn31PzislTZlgt_79j7cQ','/*/ fail safe /*/\r\n#topWrapper {\r\nfont:82.5%/1.3 helvetica,arial,sans-serif;\r\nwidth:98%;\r\noverflow:hidden;\r\nmargin:0 auto 2em;\r\n}\r\n.nav {\r\nfloat:left;\r\nwidth:20%;\r\nmargin:1em 0 2em;\r\n}\r\n.nav .menu {\r\nlist-style:none;\r\nmargin:0;\r\npadding:0;\r\n}\r\n#contentArea {\r\nfloat:right;\r\nwidth:77%;\r\nmargin:1em 0 2em;\r\npadding:5px 1%;\r\nborder:1px solid #ccc;\r\n}\r\n#adminControls {\r\nmargin:1em 0;\r\npadding:1em 0 0;\r\nborder-top:1px dotted #ccc;\r\n}\r\n\r\n','text/css',1258524916,0,'#topWrapper{font:82.5%/1.3 helvetica,arial,sans-serif;width:98%;overflow:hidden;margin:0 auto 2em;}.nav{float:left;width:20%;margin:1em 0 2em;}.nav .menu{list-style:none;margin:0;padding:0;}#contentArea{float:right;width:77%;margin:1em 0 2em;padding:5px 1%;border:1px solid #ccc;}#adminControls{margin:1em 0;padding:1em 0 0;border-top:1px dotted #ccc;}',0,NULL),('iCM9pRY5yYyjufROgaCDlg','.editStory { width: 100%;\r\n}\r\n\r\n.editStory legend {\r\n font-size: 1.8em;\r\n border-bottom: 2px solid;\r\n}\r\n\r\n.editStory tbody {\r\n width: 943px;\r\n}\r\n\r\n.editStory td {\r\n padding: 5px;\r\n}\r\n\r\n.editStory .story {\r\n float:left;\r\n}\r\n\r\n.editStory .story label, .editStory .photo label {\r\n display: block;\r\n width: 100%;\r\n text-align: right;}\r\n\r\n.editStory .photoContainer {\r\n border: 1px solid;\r\n float:left;\r\n margin: 10px 0 0 20px;\r\n}\r\n\r\n.editStory .photoContainer .photoHeader {\r\n font-size: 1.2em;\r\n font-weight: bold;\r\n}\r\n\r\n.editStory .buttons {\r\n clear: both;\r\n text-align: right;\r\n padding: 10px 0;\r\n}\r\n\r\n.editStory #story_formId_tbl {\r\n width: 100% !important;\r\n}\r\n\r\n.editStory fieldset {\r\n border: none;\r\n}\r\n\r\n\r\n\r\n.storyArchive { width: 100%;\r\n}\r\n\r\n.storyArchive h3 {\r\n border-bottom: 2px solid;\r\n margin-bottom: 10px;\r\n}\r\n\r\n.storyArchive .storyList {\r\n list-style-type: none;\r\n padding-left: 0;\r\n}\r\n\r\n.storyArchive .storyList li {\r\n padding-left: 10px;\r\n margin-bottom: 10px;\r\n}\r\n\r\n.storyArchive .pagination { \r\n float: left;\r\n list-style-type: none;\r\n}\r\n\r\n.storyArchive .keywords {\r\n width: 100%;\r\n clear: both;\r\n}\r\n\r\n.storyArchive img {\r\n border: none;\r\n}\r\n\r\n.storyArchive .controls a {\r\n margin-right: 10px;\r\n}\r\n\r\n.viewStory .storyTitle, .viewStory .storyUpdated, .viewStoryTopic .storyTitle, .viewStoryTopic .storyUpdated {\r\n float: left;\r\n}\r\n\r\n.viewStory .storyTitle, .viewStoryTopic .storyTitle {\r\n font-size: 1.5em;\r\n width: 100%;\r\n}\r\n\r\n.viewStory .storyHighlights, .viewStoryTopic .storyHighlights {\r\n float:right;\r\n margin-top: -1.5em;\r\n}\r\n\r\n.viewStory .storyPhoto, .viewStoryTopic .storyPhoto {\r\n float: left;\r\n margin: 0 10px 10px 0;\r\n}\r\n\r\n.viewStory .photoCaption, .viewStoryTopic .photoCaption {\r\n width: 496px;\r\n padding: 5px;\r\n display:block;\r\n}\r\n.viewStory .clear, .viewStoryTopic .clear {\r\n clear: both;\r\n}\r\n.storyTopic {\r\n width: 100%;\r\n}\r\n\r\n.storyTopic h3{ border-bottom: 2px solid;\r\n}\r\n.storyTopic .topStory {\r\n width: 340px;\r\n float: left;\r\n}\r\n\r\n.storyTopic .storyList {\r\n width: 250px;\r\n float: left;\r\n}\r\n\r\n.storyTopic .storyListBig {\r\n width: 100%;\r\n float: left;\r\n}\r\n\r\n#htmltagcloud, .wg-clear {\r\n clear:both;\r\n}\r\n','text/css',1253305659,3600,'.editStory{width:100%;}.editStory legend{font-size:1.8em;border-bottom:2px solid;}.editStory tbody{width:943px;}.editStory td{padding:5px;}.editStory .story{float:left;}.editStory .story label,.editStory .photo label{display:block;width:100%;text-align:right;}.editStory .photoContainer{border:1px solid;float:left;margin:10px 0 0 20px;}.editStory .photoContainer .photoHeader{font-size:1.2em;font-weight:bold;}.editStory .buttons{clear:both;text-align:right;padding:10px 0;}.editStory #story_formId_tbl{width:100% !important;}.editStory fieldset{border:none;}.storyArchive{width:100%;}.storyArchive h3{border-bottom:2px solid;margin-bottom:10px;}.storyArchive .storyList{list-style-type:none;padding-left:0;}.storyArchive .storyList li{padding-left:10px;margin-bottom:10px;}.storyArchive .pagination{float:left;list-style-type:none;}.storyArchive .keywords{width:100%;clear:both;}.storyArchive img{border:none;}.storyArchive .controls a{margin-right:10px;}.viewStory .storyTitle,.viewStory .storyUpdated,.viewStoryTopic .storyTitle,.viewStoryTopic .storyUpdated{float:left;}.viewStory .storyTitle,.viewStoryTopic .storyTitle{font-size:1.5em;width:100%;}.viewStory .storyHighlights,.viewStoryTopic .storyHighlights{float:right;margin-top:-1.5em;}.viewStory .storyPhoto,.viewStoryTopic .storyPhoto{float:left;margin:0 10px 10px 0;}.viewStory .photoCaption,.viewStoryTopic .photoCaption{width:496px;padding:5px;display:block;}.viewStory .clear,.viewStoryTopic .clear{clear:both;}.storyTopic{width:100%;}.storyTopic h3{border-bottom:2px solid;}.storyTopic .topStory{width:340px;float:left;}.storyTopic .storyList{width:250px;float:left;}.storyTopic .storyListBig{width:100%;float:left;}#htmltagcloud,.wg-clear{clear:both;}',0,NULL),('VyCINX2KixKYr2pzQGX9Mg','/*/ styles for the layout asset /*/\r\n.wg-left {\r\n float: left;\r\n}\r\n.wg-right {\r\n float: right;\r\n}\r\n.wg-clear {\r\n clear: both;\r\n}\r\n.sidebyside .wg-content-position, .oneovertwo .wg-content-position {\r\n width: 49%;\r\n}\r\n.oneovertwo .wg-top {\r\n width: 100%;\r\n}\r\n.oneoverthree .wg-first-column, .oneoverthree .wg-second-column, .oneoverthree .wg-third-column,\r\n.threeColumns .wg-first-column, .threeColumns .wg-second-column, .threeColumns .wg-third-column {\r\n width: 32%;\r\n}\r\n.oneoverthree .wg-first-column,\r\n.threeColumns .wg-first-column {\r\n margin-right:2%;\r\n}\r\n.rightcolumn .wg-first-column {\r\n width: 65%;\r\n}\r\n.rightcolumn .wg-second-column {\r\n width: 33%;\r\n}\r\n','text/css',1254881103,0,'.wg-left{float:left;}.wg-right{float:right;}.wg-clear{clear:both;}.sidebyside .wg-content-position,.oneovertwo .wg-content-position{width:49%;}.oneovertwo .wg-top{width:100%;}.oneoverthree .wg-first-column,.oneoverthree .wg-second-column,.oneoverthree .wg-third-column,.threeColumns .wg-first-column,.threeColumns .wg-second-column,.threeColumns .wg-third-column{width:32%;}.oneoverthree .wg-first-column,.threeColumns .wg-first-column{margin-right:2%;}.rightcolumn .wg-first-column{width:65%;}.rightcolumn .wg-second-column{width:33%;}',0,NULL),('zb_OPKNqcTuIjdvvbEkRjw','/*/ styles for the article asset /*/\r\n.withImage .articleContent, .linkedImage .articleContent {\r\n width:100%;\r\n overflow:hidden;\r\n}\r\n.withImage .articleImage, .linkedImage .articleImage {\r\n float:right;\r\n margin:0 0 10px 10px;\r\n}\r\n.linkedImage .caption {\r\n display:block;\r\n}\r\n','text/css',1256092368,0,'.withImage .articleContent,.linkedImage .articleContent{width:100%;overflow:hidden;}.withImage .articleImage,.linkedImage .articleImage{float:right;margin:0 0 10px 10px;}.linkedImage .caption{display:block;}',0,NULL),('pbrobot000000000000001','User-agent: *\nDisallow: *?op=auth\nDisallow: *?op=account\nDisallow: *?op=ajaxGetI18N\nDisallow: *?op=makePrintable\nDisallow: *?op=viewHelp\nDisallow: *?op=viewHelpIndex\n\n','text/plain',1256092369,3600,'User-agent: *\nDisallow: *?op=auth\nDisallow: *?op=account\nDisallow: *?op=ajaxGetI18N\nDisallow: *?op=makePrintable\nDisallow: *?op=viewHelp\nDisallow: *?op=viewHelpIndex\n\n',0,NULL),('H_-8zjtWsO1FUpQqNtkxNQ','/*/ In this stylesheet you can find the styles that are used\r\nin more than one template. For example: file/attachment icons,\r\npagination etc. /*/\r\n/*/ Elements that are styled with this stylesheet have a\r\nclassname that starts with \"wg-\". /*/\r\n\r\n/*/ general /*/\r\n.wg-icon {\r\nborder:0px none;\r\nvertical-align: middle;\r\n}\r\n.wg-clear {\r\nclear:both;\r\n}\r\n/*/ inline list (pagination) /*/\r\n.wg-inline {\r\nmargin:0 0 1em;\r\npadding:0;\r\n}\r\n.wg-inline li {\r\ndisplay:inline;\r\nmargin:0;\r\npadding:0;\r\n}\r\n.wg-inline li.active {\r\nfont-weight:bold;\r\n}\r\n/*/ forms /*/\r\n.wg-captchaImage {\r\nborder:0 none;\r\nvertical-align:middle;\r\nmargin-left:5px;\r\n}\r\n\r\n','text/css',1258524916,0,'.wg-icon{border:0px none;vertical-align:middle;}.wg-clear{clear:both;}.wg-inline{margin:0 0 1em;padding:0;}.wg-inline li{display:inline;margin:0;padding:0;}.wg-inline li.active{font-weight:bold;}.wg-captchaImage{border:0 none;vertical-align:middle;margin-left:5px;}',0,NULL),('JOuCU4x5BJfVHfkfMkVQdQ','/*\r\n Project: CrystalX\r\n URL: http://www.nuvio.cz\r\n \r\n Output device: screen, projection\r\n \r\n Author: Vit Dlouhy (vit.dlouhy@nuvio.cz); Nuvio (www.nuvio.cz)\r\n Last revision: 2006-12-05, 12:00 GMT+1\r\n\r\n Structure:\r\n display | position | float | overflow | width | height | border | margin | padding | background | align | font\r\n*/\r\n\r\n* {min-height:1px;}\r\nbody {border:0; margin:0; padding:0; background:#F2F5FE url(\'^FileUrl(/crystalx/img/bg.gif);\') 0 0 repeat-x; font:70%/160% \"verdana\",sans-serif; color:#192666; text-align:center;}\r\n\r\na {color:#192666;}\r\na:hover {color:#4F6AD7;}\r\n\r\np {border:0; margin:15px 0; padding:0;}\r\n\r\ndiv {display:block; border:0; margin:0; padding:0; overflow:hidden;}\r\n\r\nh1, h2, h3, h4, h5 {border:0; margin:15px 0 10px 0; padding:0; font-weight:bold;}\r\nh1 {font-size:260%; line-height:100%; font-family:\"georgia\",serif; font-weight:normal;}\r\nh2 {font-size:180%; line-height:100%; font-family:\"georgia\",serif; font-weight:normal;}\r\nh3 {font-size:120%; line-height:100%; font-weight:bold;}\r\nh4 {font-size:120%;}\r\nh5 {font-size:100%;}\r\n\r\ntable {display:table; border-collapse:collapse; margin:15px 1px; padding:0; border:1px solid #B7CAF6; font-size:100%;}\r\ntr {display:table-row;}\r\nth, td {display: table-cell; border:1px solid #B7CAF6; margin:0; padding:5px; vertical-align:top; text-align:left;}\r\nth {background:#E7ECFD; text-align:center; color:#192666; font-weight:bold;}\r\n\r\nul, ol {display:block; border:0; margin:15px 0 15px 40px; padding:0;}\r\nol {list-style-type:decimal;}\r\nli {display:list-item; border:0; margin:0; padding:0; min-height:1px;}\r\nul ul, ul ol, ol ol, ol ul {margin: 0 0 0 20px;}\r\n\r\ndl {border-bottom:1px solid #E0E8FA; margin:0; padding:5px 10px; background:#CEDBF9;}\r\ndt {border:0; margin:0; padding:0; font-weight:bold;}\r\ndd {border:0; margin:0 0 0 30px; padding:0;}\r\n\r\nform {border:0; margin:0; padding:0;}\r\nfieldset {border:1px solid #ccc; margin:15px 0; padding:10px;}\r\nlegend {margin-left:10px; font-size:100%; font-weight:bold; color:#008;}\r\n\r\nhr {height:1px; width:724px; margin: 5px 23px; padding: 0; background:#CCC; border:0 solid #CCC; color:#CCC;}\r\n\r\na, img, span {border:0; margin:0; padding:0; overflow:hidden;}\r\nabbr, acronym {border-bottom:1px dotted #CCC; cursor:help;}\r\n\r\ndel, .through {text-decoration:line-through;}\r\nstrong, .strong {font-weight:bold;}\r\ncite, em, q, var {font-style:italic;}\r\ncode, kbd, samp {font-family:monospace; font-size:110%;}\r\n\r\n.box {min-height:1px;}\r\n.box:after {content:\".\"; display:block; line-height:0px; font-size:0px; visibility:hidden; clear:both;}\r\n\r\n.nom {margin:0;}\r\n.noscreen {display:none;}\r\n\r\n/* -----------------...........--------------------------------------------------------------------------------------- */\r\n\r\n#main {width:770px; margin:0 auto; text-align:left;}\r\n\r\n/* Top (empty space for the background img to fit) */\r\n#main #topspace {position:relative; top:0; left:0; height:50px; margin:0; padding:0;}\r\n\r\n/* Header */\r\n#header {position:relative; width:770px; height:100px; margin:0; padding:0; background:#233C9B url(\'^FileUrl(/crystalx/img/header.jpg);\') 0 0 no-repeat; color:#FFFFFF;}\r\n\r\n /* Header - logo */\r\n #header #logo {position:absolute; top:35px; left:35px; margin:0;}\r\n #header #logo a {font-size:260%; line-height:100%; font-family:\"georgia\",serif; font-weight:bold; color:#FFF;}\r\n #header #logo a:hover {color:#B5C4E3; text-decoration:none;}\r\n\r\n /* Header - Search */\r\n #header #search form {position:absolute; top:35px; right:20px; height:30px;}\r\n #header #search .formContents {position:absolute; top:0; right:0px; width:200px; height:28px; margin:0; padding:0; border:0; background:url(\'^FileUrl(/crystalx/img/search.png);\') 0 0 no-repeat; font:bold 90%/100% \"verdana\",sans-serif; color:#192666;}\r\n #header #search input#keywords_formId {width:140px; margin:5px 8px; padding:3px 0; border:0; background:#FFF; font:bold 100%/100% \"verdana\",sans-serif; color:#192666;}\r\n #header #search #search_form {position:absolute; top:0; right:0px; width:41px; height:28px; cursor:point; margin:0; padding:0;}\r\n\r\n /* Search Result*/\r\n #header #search #search_result {position:absolute; top:220px;}\r\n #header #search #home_link, #header #search #no_result, #header #search #pagination {visibility:hidden;}\r\n #page #page-in #pagination {color:#6182D1; font-weight:bold; padding:5px; text-align:right;}\r\n #page #page-in #pagination a {color:#6182D1;}\r\n #page #page-in #pagination a:hover {color:#192666;}\r\n #page #page-in #home_link {padding:5px 5px 15px; color:#6182D1; font-weight:bold; text-align:right;}\r\n #page #page-in #home_link a {color:#6182D1;}\r\n #page #page-in #home_link a:hover {color:#192666;}\r\n #search_result {margin:10px 0;}\r\n dl#odd {background:#A0B9F3;}\r\n #page #page-in #no_result {margin:0 10px; color:#192666; font-weight:bold;}\r\n\r\n/* Main menu (tabs) */\r\n#menu {background:#192666; margin:0 5px; padding:10px 10px 0; height:32px; overflow:hidden;}\r\n#menu a {cursor:pointer; font-size:11px;}\r\n\r\n/* Page (dynamic) */\r\n#page {width:770px; background:#FFFFFF url(\'^FileUrl(/crystalx/img/bg_page.jpg);\') 0 0 repeat-y;}\r\n#page-in {min-height:400px; background:url(\'^FileUrl(/crystalx/img/bg_page_in.jpg);\') 0 0 no-repeat; padding:10px 0 0;}\r\n\r\n/* Strip */\r\n#strip {position:relative; clear:both; padding:3px 20px 10px 20px; color:#6182D1;}\r\n\r\n /* Strip - Location */\r\n #strip #location {float: left; background:url(\'^FileUrl(/crystalx/img/ico_comments.gif);\') 0 50% no-repeat; padding: 0 15px;}\r\n #strip #location a {color:#6182D1;}\r\n #strip #location a:hover {color:#192666;}\r\n #strip #location a#currentpage {font-weight:bold; text-decoration:none;}\r\n\r\n /* Strip - DateTime */\r\n #strip #datetime {float:right; background:url(\'^FileUrl(/crystalx/img/ico_date.gif);\') 0 50% no-repeat; padding: 0 10px 0 15px;}\r\n\r\n/* Content Container */\r\n#contentContainer {margin:0; padding:0 20px; width:730px; overflow:hidden;}\r\n\r\n /* Contents */\r\n #contentContainer .content {clear:both; margin:10px 10px 0 0; padding:20px; max-width:710px; background:url(\'^FileUrl(/crystalx/img/content_all_bg.png);\') 0 0 no-repeat; overflow:hidden;}\r\n #contentContainer .content h2 {margin:0 -10px; padding:10px 25px; color:#192666; background:url(\'^FileUrl(/crystalx/img/ico_list.gif);\') 0 50% no-repeat;}\r\n #contentContainer .content p {text-align:justify;}\r\n \r\n/* Utility */\r\n#utility {background: #FFFFFF url(\'^FileUrl(/crystalx/img/bg_page.jpg);\') 0 0 repeat-y; padding: 10px 0 15px;}\r\n\r\n /* Utility - Toggles */\r\n #toggles {font-size:10px; font-weight:bold; text-align:left; margin-left:42px;}\r\n #toggles a {margin:0 10px; padding:2px 0; text-decoration:none; border-bottom:1px dashed; color:#6182D1;}\r\n #toggles a:hover {border-bottom:1px solid; color:#4F6AD7;}\r\n #toggles span.userAcc {background:url(\'^FileUrl(/crystalx/img/ico_user.gif);\') 0 50% no-repeat; margin: 0 0 0 8px;}\r\n\r\n/* Footer */\r\n#footer {position:relative; clear:both; width:770px; height:80px; margin-bottom:30px; background:url(\'^FileUrl(/crystalx/img/footer.jpg);\') 0 0 no-repeat; color:#6685CC;}\r\n#footer a {color:#6685CC;}\r\n#footer a:hover {color:#192666;}\r\n\r\n /* Footer - \"back on top\" */\r\n #top {position:absolute; top:55px; left:550px;}\r\n #top p {position:relative; width:30px; height:25px; margin:0; overflow:hidden;}\r\n #top p a {display:block; position:absolute; left:0; top:0; z-index:1; width:30px; height:25px; background:url(\'^FileUrl(/crystalx/img/ico_top.gif);\') 0 0 no-repeat; cursor:pointer;}\r\n #top a:hover {background:url(\'^FileUrl(/crystalx/img/ico_top.gif);\') -30px 0 no-repeat;} \r\n\r\n /* Footer - copyright */\r\n #footer p#copyright {position:absolute; top:10px; left:40px; margin:0;}\r\n\r\n /* Footer - created by */\r\n #createdby {position:absolute; top:10px; left:562px; margin:0; color:#8CA3D8;}\r\n #createdby a {color:#8CA3D8;}\r\n','text/css',1273032718,3600,'*{min-height:1px;}body{border:0;margin:0;padding:0;background:#F2F5FE url(\'^FileUrl(/crystalx/img/bg.gif);\') 0 0 repeat-x;font:70%/160% \"verdana\",sans-serif;color:#192666;text-align:center;}a{color:#192666;}a:hover{color:#4F6AD7;}p{border:0;margin:15px 0;padding:0;}div{display:block;border:0;margin:0;padding:0;overflow:hidden;}h1,h2,h3,h4,h5{border:0;margin:15px 0 10px 0;padding:0;font-weight:bold;}h1{font-size:260%;line-height:100%;font-family:\"georgia\",serif;font-weight:normal;}h2{font-size:180%;line-height:100%;font-family:\"georgia\",serif;font-weight:normal;}h3{font-size:120%;line-height:100%;font-weight:bold;}h4{font-size:120%;}h5{font-size:100%;}table{display:table;border-collapse:collapse;margin:15px 1px;padding:0;border:1px solid #B7CAF6;font-size:100%;}tr{display:table-row;}th,td{display:table-cell;border:1px solid #B7CAF6;margin:0;padding:5px;vertical-align:top;text-align:left;}th{background:#E7ECFD;text-align:center;color:#192666;font-weight:bold;}ul,ol{display:block;border:0;margin:15px 0 15px 40px;padding:0;}ol{list-style-type:decimal;}li{display:list-item;border:0;margin:0;padding:0;min-height:1px;}ul ul,ul ol,ol ol,ol ul{margin:0 0 0 20px;}dl{border-bottom:1px solid #E0E8FA;margin:0;padding:5px 10px;background:#CEDBF9;}dt{border:0;margin:0;padding:0;font-weight:bold;}dd{border:0;margin:0 0 0 30px;padding:0;}form{border:0;margin:0;padding:0;}fieldset{border:1px solid #ccc;margin:15px 0;padding:10px;}legend{margin-left:10px;font-size:100%;font-weight:bold;color:#008;}hr{height:1px;width:724px;margin:5px 23px;padding:0;background:#CCC;border:0 solid #CCC;color:#CCC;}a,img,span{border:0;margin:0;padding:0;overflow:hidden;}abbr,acronym{border-bottom:1px dotted #CCC;cursor:help;}del,.through{text-decoration:line-through;}strong,.strong{font-weight:bold;}cite,em,q,var{font-style:italic;}code,kbd,samp{font-family:monospace;font-size:110%;}.box{min-height:1px;}.box:after{content:\".\";display:block;line-height:0px;font-size:0px;visibility:hidden;clear:both;}.nom{margin:0;}.noscreen{display:none;}#main{width:770px;margin:0 auto;text-align:left;}#main #topspace{position:relative;top:0;left:0;height:50px;margin:0;padding:0;}#header{position:relative;width:770px;height:100px;margin:0;padding:0;background:#233C9B url(\'^FileUrl(/crystalx/img/header.jpg);\') 0 0 no-repeat;color:#FFFFFF;}#header #logo{position:absolute;top:35px;left:35px;margin:0;}#header #logo a{font-size:260%;line-height:100%;font-family:\"georgia\",serif;font-weight:bold;color:#FFF;}#header #logo a:hover{color:#B5C4E3;text-decoration:none;}#header #search form{position:absolute;top:35px;right:20px;height:30px;}#header #search .formContents{position:absolute;top:0;right:0px;width:200px;height:28px;margin:0;padding:0;border:0;background:url(\'^FileUrl(/crystalx/img/search.png);\') 0 0 no-repeat;font:bold 90%/100% \"verdana\",sans-serif;color:#192666;}#header #search input#keywords_formId{width:140px;margin:5px 8px;padding:3px 0;border:0;background:#FFF;font:bold 100%/100% \"verdana\",sans-serif;color:#192666;}#header #search #search_form{position:absolute;top:0;right:0px;width:41px;height:28px;cursor:point;margin:0;padding:0;}#header #search #search_result{position:absolute;top:220px;}#header #search #home_link,#header #search #no_result,#header #search #pagination{visibility:hidden;}#page #page-in #pagination{color:#6182D1;font-weight:bold;padding:5px;text-align:right;}#page #page-in #pagination a{color:#6182D1;}#page #page-in #pagination a:hover{color:#192666;}#page #page-in #home_link{padding:5px 5px 15px;color:#6182D1;font-weight:bold;text-align:right;}#page #page-in #home_link a{color:#6182D1;}#page #page-in #home_link a:hover{color:#192666;}#search_result{margin:10px 0;}dl#odd{background:#A0B9F3;}#page #page-in #no_result{margin:0 10px;color:#192666;font-weight:bold;}#menu{background:#192666;margin:0 5px;padding:10px 10px 0;height:32px;overflow:hidden;}#menu a{cursor:pointer;font-size:11px;}#page{width:770px;background:#FFFFFF url(\'^FileUrl(/crystalx/img/bg_page.jpg);\') 0 0 repeat-y;}#page-in{min-height:400px;background:url(\'^FileUrl(/crystalx/img/bg_page_in.jpg);\') 0 0 no-repeat;padding:10px 0 0;}#strip{position:relative;clear:both;padding:3px 20px 10px 20px;color:#6182D1;}#strip #location{float:left;background:url(\'^FileUrl(/crystalx/img/ico_comments.gif);\') 0 50% no-repeat;padding:0 15px;}#strip #location a{color:#6182D1;}#strip #location a:hover{color:#192666;}#strip #location a#currentpage{font-weight:bold;text-decoration:none;}#strip #datetime{float:right;background:url(\'^FileUrl(/crystalx/img/ico_date.gif);\') 0 50% no-repeat;padding:0 10px 0 15px;}#contentContainer{margin:0;padding:0 20px;width:730px;overflow:hidden;}#contentContainer .content{clear:both;margin:10px 10px 0 0;padding:20px;max-width:710px;background:url(\'^FileUrl(/crystalx/img/content_all_bg.png);\') 0 0 no-repeat;overflow:hidden;}#contentContainer .content h2{margin:0 -10px;padding:10px 25px;color:#192666;background:url(\'^FileUrl(/crystalx/img/ico_list.gif);\') 0 50% no-repeat;}#contentContainer .content p{text-align:justify;}#utility{background:#FFFFFF url(\'^FileUrl(/crystalx/img/bg_page.jpg);\') 0 0 repeat-y;padding:10px 0 15px;}#toggles{font-size:10px;font-weight:bold;text-align:left;margin-left:42px;}#toggles a{margin:0 10px;padding:2px 0;text-decoration:none;border-bottom:1px dashed;color:#6182D1;}#toggles a:hover{border-bottom:1px solid;color:#4F6AD7;}#toggles span.userAcc{background:url(\'^FileUrl(/crystalx/img/ico_user.gif);\') 0 50% no-repeat;margin:0 0 0 8px;}#footer{position:relative;clear:both;width:770px;height:80px;margin-bottom:30px;background:url(\'^FileUrl(/crystalx/img/footer.jpg);\') 0 0 no-repeat;color:#6685CC;}#footer a{color:#6685CC;}#footer a:hover{color:#192666;}#top{position:absolute;top:55px;left:550px;}#top p{position:relative;width:30px;height:25px;margin:0;overflow:hidden;}#top p a{display:block;position:absolute;left:0;top:0;z-index:1;width:30px;height:25px;background:url(\'^FileUrl(/crystalx/img/ico_top.gif);\') 0 0 no-repeat;cursor:pointer;}#top a:hover{background:url(\'^FileUrl(/crystalx/img/ico_top.gif);\') -30px 0 no-repeat;}#footer p#copyright{position:absolute;top:10px;left:40px;margin:0;}#createdby{position:absolute;top:10px;left:562px;margin:0;color:#8CA3D8;}#createdby a{color:#8CA3D8;}',0,NULL),('w0QifHLhsrzeOpFKl-DX-Q','','text/css',1273032718,3600,'\n/taskEdit.css\" />\n\n\n
    \">\n\" />\n\n\" />\n\" />\n
    \n
    \" size=\"20\" class=\"inputBox\" />\n\n
    \n\n

    \n

    \n','ProjectManager_resourcePopup',1,1,'ProjectManagerTMPL0005',1229579830,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n<tmpl_var title>\n\n\n/taskEdit.css\" />\n\n\n
    \">\n\" />\n\n\" />\n\" />\n
    \n
    \" size=\"20\" class=\"inputBox\" />\n\n
    \n

    \n

    \n',0,NULL,NULL),('\n

    \n
    \n\n\n

    \n
    \n\n\n
    \n \n
    \n
    \n\n\n\n\n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \"> \n
    \">
    \n \">\n \n
    \n
    %;\">
    \n
    %
    \n
    \n
    \n \n \">/edit.gif\" style=\"border-style:none;\" title=\"\" alt=\"^International(edit,Asset);\" /> \n \'));\">/delete.gif\" style=\"border-style:none;\" title=\"\" alt=\"^International(delete,Asset);\" />\n
    ','ProjectManager_dashboard',1,1,'ProjectManagerTMPL0001',1229579830,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n
    \n\n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\"> \n
    \">
    \n\">\n\n
    \n
    %;\">
    \n
    %
    \n
    \n
    \n\n\">/edit.gif\" style=\"border-style:none;\" title=\"\" alt=\"^International(edit,Asset);\" /> \n\'));\">/delete.gif\" style=\"border-style:none;\" title=\"\" alt=\"^International(delete,Asset);\" />\n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n

    \n\n\n\n \n \n \n \n \n ^International(Error: Search string,Asset_HttpProxy); ^International(not found in content,Asset_HttpProxy);.\n \n\n\n\n\n\n \n \n \n \n \n ^International(Warning: Ending search point,Asset_HttpProxy); ^International(not found in content,Asset_HttpProxy);.\n \n','HttpProxy',1,1,'PBtmpl0000000000000033',1230159454,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n

    \n\n\n\n\n\n\n\n^International(Error: Search string,Asset_HttpProxy); ^International(not found in content,Asset_HttpProxy);.\n\n\n\n\n\n\n\n\n\n^International(Warning: Ending search point,Asset_HttpProxy); ^International(not found in content,Asset_HttpProxy);.\n\n',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n

    \n\n\n\n \">^International(Download this data,Asset_SQLReport);\n\n\n\n

      \n \n
    • \n
      \n
    \n
    \n\n\n\n\n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n\n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n\n
    \n \n
    \n
    ','SQLReport',1,1,'PBtmpl0000000000000059',1229907401,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n

    \n\n\n\">^International(Download this data,Asset_SQLReport);\n\n\n

      \n\n
    • \n
      \n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\n\n\n\n\n\n
     \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\n\n\n\n\n\n
     \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\n\n\n\n\n\n
     \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\n\n\n\n\n\n
     \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n \n
    \n
    ',0,NULL,NULL),('\"> \n \n \n

    \n
    \n\n\n

    \n
    \n\n\n

    \n\n\n

    \n
    \n\n\n \n \n\n\n \n \n\n
    ^International(364,WebGUI);:\n \n
    ^International(For,WebGUI);: 
    \n
    \n
    ','MultiSearch',1,1,'MultiSearchTmpl0000001',1230269962,'WebGUI::Asset::Template::HTMLTemplate',1,'\">\n\n

    \n
    \n\n

    \n
    \n\n

    \n\n\n

    \n
    \n\n\n\n\n\n\n\n\n\n
    ^International(364,WebGUI);:\n\n
    ^International(For,WebGUI);: 
    \n
    \n
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n \r\n\r\n \r\n
    \r\n \r\n
    \r\n
    \r\n , , \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    :00
    \r\n
    \r\n
      \r\n
    • \r\n \">\r\n
    • \r\n
    \r\n
    \r\n
    ','Calendar/Day',1,1,'CalendarDay00000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\">^International(label day,Asset_Calendar);\n\">^International(label week,Asset_Calendar);\n\">^International(label month,Asset_Calendar);\n?type=list\">^International(486,WebGUI);\n\">^International(label search,Asset_Calendar);\n\n
    \n\n
    \n
    \n, , \n
    \n
    \n\n\n\n\n\n
    \n
    :00
    \n
    \n\n
    \n
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n ?type=day\">^International(label day,Asset_Calendar);\r\n ?type=week\">^International(label week,Asset_Calendar);\r\n ?type=month\">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n
    \r\n  \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n
    \r\n
    ^International(keyword,Asset_Calendar);
    \r\n
    \r\n
    \r\n
    ^International(start date,Asset_Calendar);
    \r\n
    \r\n
    \r\n
    ^International(end date,Asset_Calendar);
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n
    \r\n ^International(search results,Asset_Calendar);\r\n ^International(page x of x,Asset_Calendar,,);\r\n
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n \" style=\"padding-left:10px\">\r\n
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    ','Calendar/Search',1,1,'CalendarSearch00000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n?type=day\">^International(label day,Asset_Calendar);\n?type=week\">^International(label week,Asset_Calendar);\n?type=month\">^International(label month,Asset_Calendar);\n?type=list\">^International(486,WebGUI);\n\">^International(label search,Asset_Calendar);\n
    \n \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    ^International(keyword,Asset_Calendar);
    \n
    \n
    \n
    ^International(start date,Asset_Calendar);
    \n
    \n
    \n
    ^International(end date,Asset_Calendar);
    \n
    \n
    \n
    \n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    \n^International(search results,Asset_Calendar);\n^International(page x of x,Asset_Calendar,,);\n
    \n
    \n
    \n\n\n\n
    \n
    \n\n\n\n\n\n
    \n
    \n
    \n\" style=\"padding-left:10px\">\n
    \n
    \n
    \n\n\n\n
    \n
    \n
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n\r\n \r\n
    \r\n \r\n
    \r\n
    \r\n , to , \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    curDay\"> \r\n \r\n \r\n
    \r\n
    \r\n
    ','Calendar/Week',1,1,'CalendarWeek0000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\">^International(label day,Asset_Calendar);\n\">^International(label week,Asset_Calendar);\n\">^International(label month,Asset_Calendar);\n?type=list\">^International(486,WebGUI);\n\">^International(label search,Asset_Calendar);\n\n
    \n\n
    \n
    \n , to , \n
    \n
    \n\n\n\n\n\n
    \n
    \n
    curDay\">\n\n\n
    \n
    \n
    ',0,NULL,NULL),('\n\n\n\n\n/tools.css\" />\n\n\n\n\n\n\n \n \n \n \n \n \n
    \n
    \n \n \n \n \n \n
    ()\n \n
    1:23 PM EDT
    \n \n
    \n
    \n
    \n
    \n \n \n \n \n \n \n
    \n &t=1d&q=l&l=off&z=s&p=s\" alt=\"chart\" />\n \n \n \n \n \n \n \n \n \n \n
    Today5d1m3m1y5y20y
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(stocks.last,Asset_StockData);
    ^International(Market Cap,Asset_StockData);
    ^International(Change,Asset_StockData); _up_down\" style=\"text-align: right; font-weight: bold;\">\n /\' alt=\"\" /> \n
    ^International(Open,Asset_StockData);
    ^International(Day High,Asset_StockData);
    ^International(stocks.bid,Asset_StockData);
    ^International(52 Wk High,Asset_StockData);
    ^International(EPS,Asset_StockData);
    ^International(stocks.ex_div,Asset_StockData);
    ^International(Yield,Asset_StockData);
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(Last Trade,Asset_StockData);
    ^International(Volume,Asset_StockData); m
    ^International(% Change,Asset_StockData); _up_down\" style=\"text-align: right; font-weight: bold;\">%
    ^International(Prev Close,Asset_StockData);
    ^International(Day Low,Asset_StockData);
    ^International(stocks.ask,Asset_StockData);
    ^International(52 Wk Low,Asset_StockData);
    ^International(stocks.pe,Asset_StockData);
    ^International(Dividend,Asset_StockData);
    ^International(Exchange,Asset_StockData);
    \n
    \n
    \n\n\n\n','StockData/Display',1,1,'StockDataTMPL000000002',1229494994,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n/tools.css\" />\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    \n\n\n\n\n\n
    ()\n\n
    1:23 PM EDT
    \n\n
    \n
    \n
    \n
    \n\n\n\n\n\n\n
    \n&t=1d&q=l&l=off&z=s&p=s\" alt=\"chart\" />\n\n\n\n\n\n\n\n\n\n\n
    Today5d1m3m1y5y20y
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(stocks.last,Asset_StockData);
    ^International(Market Cap,Asset_StockData);
    ^International(Change,Asset_StockData); _up_down\" style=\"text-align: right; font-weight: bold;\">\n/\' alt=\"\" /> \n
    ^International(Open,Asset_StockData);
    ^International(Day High,Asset_StockData);
    ^International(stocks.bid,Asset_StockData);
    ^International(52 Wk High,Asset_StockData);
    ^International(EPS,Asset_StockData);
    ^International(stocks.ex_div,Asset_StockData);
    ^International(Yield,Asset_StockData);
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(Last Trade,Asset_StockData);
    ^International(Volume,Asset_StockData); m
    ^International(% Change,Asset_StockData); _up_down\" style=\"text-align: right; font-weight: bold;\">%
    ^International(Prev Close,Asset_StockData);
    ^International(Day Low,Asset_StockData);
    ^International(stocks.ask,Asset_StockData);
    ^International(52 Wk Low,Asset_StockData);
    ^International(stocks.pe,Asset_StockData);
    ^International(Dividend,Asset_StockData);
    ^International(Exchange,Asset_StockData);
    \n
    \n
    \n\n\n',0,NULL,NULL),('
    \" class=\"dataTable\">\r\n\r\n\r\n \r\n\r\n\r\n\r\n

    \r\n
    \r\n\r\n
    \r\n \r\n
    \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    ','DataTable',1,1,'TuYPpHx7TUyk08639Pc8Bg',1233861621,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"dataTable\">\n\n\n\n\n

    \n
    \n
    \n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    ',0,NULL,NULL),('
    \" class=\"dataTable\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n
    ','DataTable',1,1,'3rjnBVJRO6ZSkxlFkYh_ug',1233861835,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"dataTable\">\n\n

    \n
    \n\n

    \n
    \n
    \n\n
    \n
    \n\n
    \n
    ',0,NULL,NULL),('

    \" />
    ','ImageAsset',1,1,'NBVSVNLp9X_bV7WrCprtCA',1237842096,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \" />
    ',0,NULL,NULL),('
    \r\n \r\n

    \r\n
    \r\n\r\n \r\n

    • ^International(manage things label,Asset_Thingy);

    \r\n
    \r\n\r\n \r\n
    \r\n
    \r\n\r\n \r\n \r\n \r\n\r\n \r\n
    \r\n \r\n
    rowOnerowTwo\">\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    ','Thingy',1,1,'ThingyTmpl000000000001',1237914005,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n

    \n
    \n\n

    • ^International(manage things label,Asset_Thingy);

    \n
    \n\n
    \n
    \n\n\n\n\n
    \n\n
    rowOnerowTwo\">\n \n
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n
    \r\n
    \r\n\r\n \r\n \r\n ','Carousel',1,1,'CarouselTmpl0000000002',1239475937,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n
    \n
    \n\n\n',0,NULL,NULL),('^International(inbox notification,Account_Inbox);','Account/Inbox/Notification',1,1,'b1316COmd9xRv4fCI3LLGA',1236956475,'WebGUI::Asset::Template::HTMLTemplate',1,'^International(inbox notification,Account_Inbox);',0,NULL,NULL),('
    \n
    \n \n
    \n
    \n
    ^International(Working...,WebGUI);
    \n
     
    \n
    \n
    \n \" style=\"border-style:none;height:48px;width:48px;\" title=\"\" alt=\"\" />\n
    \n
    \n \"*\"\n
    \n
    ','AdminConsole/ProgressBar',1,1,'YP9WaMPJHvCJl-YwrLVcPw',1245376837,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n\n
    \n
    \n
    ^International(Working...,WebGUI);
    \n
     
    \n
    \n
    \n\" style=\"border-style:none;height:48px;width:48px;\" title=\"\" alt=\"\" />\n
    \n
    \n\"*\"\n
    \n
    ',0,NULL,NULL),('\r\n \r\n

    \r\n
    \r\n
    \r\n\r\n
    \r\n \" style=\"height:auto;min-height:100px;width:100%;display:block;\">\r\n \" /> \r\n \r\n
    ','FileAsset',1,1,'pbtmpl0000000000000220',1247488979,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n

    \n
    \n
    \n
    \n\" style=\"height:auto;min-height:100px;width:100%;display:block;\">\n\" />\n\n
    ',0,NULL,NULL),('\n
    \n
    \n \n
    \n
    \n \n
    \n
    \n
    \n  \n
    \n \n \n \n \n \n
    \n  \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n \" >
    \n
    \n \n
    \n
    \n \n
    \n \n \">
    \n
    \n
    \n
    \n
    \n \">
    \n ^AdminToggle;
    \n ^LoginToggle;
    \n
    \n
    \n
    \n \n
    \n
    \n \n \')\">\"?\"\n \n
    \n
    \n \" style=\"border-style:none;height:48px;width:48px;\" title=\"\" alt=\"\" />\n
    \n
    \n\"*\"\n
    \n
    \n \" style=\"border-style:none;\" title=\"\" alt=\"\" />\n
    \n\n\n
    ','AdminConsole',1,1,'PBtmpl0000000000000001',1247535846,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n
    \n\n
    \n
    \n\n
    \n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n\n\n\" >
    \n
    \n\n
    \n
    \n\n
    \n\n\">
    \n
    \n
    \n
    \n
    \n\">
    \n^AdminToggle;
    \n^LoginToggle;
    \n
    \n
    \n
    \n\n
    \n
    \n\n\')\">\"?\"\n\n
    \n
    \n\" style=\"border-style:none;height:48px;width:48px;\" title=\"\" alt=\"\" />\n
    \n
    \n\"*\"\n
    \n
    \n\" style=\"border-style:none;\" title=\"\" alt=\"\" />\n
    \n\n
    ',0,NULL,NULL),('

    \r\n

    \r\n\r\n\" />\" quality=\"high\" width=\"800\" height=\"600\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />\r\n

    ','FileAsset',1,1,'pbtmpl0000000000000221',1247487940,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n

    \n\n\" />\" quality=\"high\" width=\"800\" height=\"600\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />\n

    ',0,NULL,NULL),('
    \n \n

    \n
    \n\n \n

    \n
    \n\n
    \n ^ViewCart(); (^CartItemCount;)\n
    \n\n \n
    \n
    \n \n\n \n
    \n ^International(subcategories,Asset_Shelf);: \n \n \n \">\n \n
    \n
    \n\n \n
    \n \n \n \" class=\"thumbnail\">\" alt=\"\" />\n \n \n
    \n \n ()\n
    \n \n
    \n \n
    \n
    \n
    \n \n \n \n \n
    \n ^International(this shelf is empty,Asset_Shelf);\n
    \n \n \n
    \n ^International(You do not have permission to view the products on this shelf,Asset_Shelf);\n
    \n
    \n
    \n
    \n
    ','Shelf',1,1,'nFen0xjkZn8WkpM93C9ceQ',1247864696,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n

    \n
    \n\n

    \n
    \n
    \n^ViewCart(); (^CartItemCount;)\n
    \n\n
    \n
    \n\n
    \n^International(subcategories,Asset_Shelf);:\n\n\n\">\n\n
    \n
    \n\n\n\n\n\n\n\n
    \n^International(this shelf is empty,Asset_Shelf);\n
    \n\n\n
    \n^International(You do not have permission to view the products on this shelf,Asset_Shelf);\n
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('
    \n\n\n
    \n );\'\"/>\n  \n );\'\"/>\n
    \n\n \n
    \n ^International(friends only,Account_Profile);^International(private profile,Account_Profile);^International(public profile,Account_Profile);\n
    \n\n
    \n\n\n

    ^International(error label,Account_Inbox);

    \n

    \n

    \">^International(back label,Account_Profile);

    \n\n \n \n \n \n \n \n \n \n \n \n \n \n
    colspan=2 class=\"bar\">\n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    32\" class=\"bar\">
    greenredblue;\">
    \n
    \n );\" class=\"WGphotostyle\"/>
    \n
    \n
    \n \n
    \n );\'\"/>\n  \n );\'\"/>\n
    \n\n
    \n','Account/Profile/View',1,1,'2CS-BErrjMmESOtGT90qOg',1248549087,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n);\'\"/>\n \n);\'\"/>\n
    \n\n
    \n^International(friends only,Account_Profile);^International(private profile,Account_Profile);^International(public profile,Account_Profile);\n
    \n
    \n\n

    ^International(error label,Account_Inbox);

    \n

    \n

    \">^International(back label,Account_Profile);

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    colspan=2 class=\"bar\">\n
    \n^International(member since,Account_Inbox); ^D(%z,);\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    32\" class=\"bar\">
    greenredblue;\">
    \n
    \n);\" class=\"WGphotostyle\"/>
    \n
    \n
    \n
    \n);\'\"/>\n \n);\'\"/>\n
    \n
    ',1,NULL,NULL),('
    \n
    \n
    \n
    \n
    \n

    ^International(error label,Account_Inbox);

    \n

    \n

    \">^International(back label,Account_Profile);

    \n
    \n
    \n
    \n
    \n
    ','Account/Profile/Error',1,1,'MBmWlA_YEA2I6D29OMGtRg',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n
    \n
    \n
    \n

    ^International(error label,Account_Inbox);

    \n

    \n

    \">^International(back label,Account_Profile);

    \n
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('\n\n
    \n','Account/Layout',1,1,'gfZOwaTWYjbSoVaQtHBBEw',1249407461,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n
    \n',0,NULL,NULL),('
    \n\n
    \n\n

    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n

    \n

    \n disabled onclick=\"location.href=\'\'\"/> \'\" /> \'\" />\n \'\" disabled/> >\" onclick=\"location.href=\'\'\" disabled/>\n

    \n
    \n

    \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(subject label,Account_Inbox);:
    ^International(from label,Account_Inbox);:
    ^International(received label,Account_Inbox);:^D(\"%z %Z\",);
    ^International(status label,Account_Inbox);:
    \n
    \n
    \n \n\n
    \n\n
    \n','Account/Inbox/ViewMessage',1,1,'0n4HtbXaWa_XJHkFjetnLQ',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n

    \n
    \n^International(member since,Account_Inbox); ^D(%z,);\n

    \n

    \ndisabled onclick=\"location.href=\'\'\"/> \'\" /> \'\" />\n\'\" disabled/> >\" onclick=\"location.href=\'\'\" disabled/>\n

    \n
    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(subject label,Account_Inbox);:
    ^International(from label,Account_Inbox);:
    ^International(received label,Account_Inbox);:^D(\"%z %Z\",);
    ^International(status label,Account_Inbox);:
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('

    ^International(error label,Account_Inbox);

    \n

    \n

    \">^International(back label,Account_Inbox);

    \n','Account/Inbox/Error',1,1,'ErEzulFiEKDkaCDVmxUavw',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(error label,Account_Inbox);

    \n

    \n

    \">^International(back label,Account_Inbox);

    ',0,NULL,NULL),('

    ^International(message sent label,Account_Inbox);

    \n

    ^International(message sent text,Account_Inbox);

    \n

    \">^International(back label,Account_Inbox);

    ','Account/Inbox/Confirm',1,1,'DUoxlTBXhVS-Zl3CFDpt9g',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(message sent label,Account_Inbox);

    \n

    ^International(message sent text,Account_Inbox);

    \n

    \">^International(back label,Account_Inbox);

    ',0,NULL,NULL),('\n
    \n
    \n\n

    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n

    \n\n

    \n \n \n\n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n WGoddThreadWGevenThread\">\n \n \n \n \n \n \n \n \n \n \n \n \n
    \">^International(from label,Account_Inbox);\">^International(invitation label,Account_Inbox);\">^International(date label,Account_Inbox);
    \" class=\"WGinbox_from\">\">^International(invitation message,Account_Inbox,);
    ^International(no invitations,Account_Inbox);
    \n \n

    \n \n \n\n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n \n \n \n

    \n\n

    \n ^International(invitation count,\'Account_Inbox\');\n

    \n\n
    \n
    \n','Account/Inbox/ManageInvitations',1,1,'1Q4Je3hKCJzeo0ZBB5YB8g',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n
    \n

    \n
    \n^International(member since,Account_Inbox); ^D(%z,);\n

    \n

    \n \n\n\n\" class=\"prevNext\">\"Previous\" \n\"> \n \" class=\"prevNext\">\"Next\"\n\n\n\n\n

    \n\n\n\n\n\n\n\n\n\nWGoddThreadWGevenThread\">\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">^International(from label,Account_Inbox);\">^International(invitation label,Account_Inbox);\">^International(date label,Account_Inbox);
    \" class=\"WGinbox_from\">\">^International(invitation message,Account_Inbox,);
    ^International(no invitations,Account_Inbox);
    \n

    \n \n\n\n\" class=\"prevNext\">\"Previous\" \n\"> \n \" class=\"prevNext\">\"Next\"\n\n\n\n\n

    \n

    \n ^International(invitation count,\'Account_Inbox\');\n

    \n
    \n
    \n',0,NULL,NULL),('

    ^International(invitation confirm label,Account_Inbox);

    \n

    ^International(invitation confirm message,Account_Inbox);

    \n\n \n \n \n \n \n
    ^International(\'you have not been added\',\'Friends\',);^International(\'you have been added\',\'Friends\',);
    \n

    \">^International(invitations back label,Account_Inbox);

    \n','Account/Inbox/Confirm',1,1,'5A8Hd9zXvByTDy4x-H28qw',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(invitation confirm label,Account_Inbox);

    \n

    ^International(invitation confirm message,Account_Inbox);

    \n\n\n\n\n\n\n
    ^International(\'you have not been added\',\'Friends\',);^International(\'you have been added\',\'Friends\',);
    \n

    \">^International(invitations back label,Account_Inbox);

    ',0,NULL,NULL),('\n
    \n \n
    \n\n

    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n

    \n
    \n \'\" /> \'\" disabled/> >\" onclick=\"location.href=\'\'\" disabled/>\n
    \n \n

    \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(from label,Account_Inbox);:
    ^International(received label,Account_Inbox);:
    ^D(\"%z %Z\",);
    \n
    \n\n
    \n\n
    \n','Account/Inbox/ViewInvitation',1,1,'VBkY05f-E3WJS50WpdKd1Q',1248549087,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n
    \n

    \n
    \n^International(member since,Account_Inbox); ^D(%z,);\n

    \n
    \n \'\" /> \'\" disabled/> >\" onclick=\"location.href=\'\'\" disabled/>\n
    \n

    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(from label,Account_Inbox);:
    ^International(received label,Account_Inbox);:
    ^D(\"%z %Z\",);
    \n
    \n
    \n
    \n',0,NULL,NULL),('

    \n

    \n','Account/Inbox/InviteUserMessage',1,1,'XgcsoDrbC0duVla7N7JAdw',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n

    ',0,NULL,NULL),(' \n
    \n \n
    \n\n

    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n

    \n\n

    \n ^International(invite a friend,Account_Inbox);\n

    \n \n\n

    \n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(to label,Account_Inbox);:
    ^International(subject label,Account_Inbox);:
    \n   \n \'\" />\n
    \n\n
    \n
    \n','Account/Inbox/InviteUser',1,1,'cR0UFm7I1qUI2Wbpj--08Q',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n
    \n

    \n
    \n^International(member since,Account_Inbox); ^D(%z,);\n

    \n

    \n^International(invite a friend,Account_Inbox);\n

    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(to label,Account_Inbox);:
    ^International(subject label,Account_Inbox);:
    \n  \n\'\" />\n
    \n
    \n
    \n',0,NULL,NULL),('

    ^International(invitation sent label,Account_Inbox);

    \n

    ^International(invitation sent text,Account_Inbox);

    \n

    \">^International(back label,Account_Inbox);

    ','Account/Inbox/InviteUserConfirm',1,1,'SVIhz68689hwUGgcDM-gWw',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(invitation sent label,Account_Inbox);

    \n

    ^International(invitation sent text,Account_Inbox);

    \n

    \">^International(back label,Account_Inbox);

    ',0,NULL,NULL),('\n\n
    \n\" class=\"WGprofile_displayView\">^International(\'friends as others label\',\'Account_Friends\');\" class=\"WGprofile_displayView\">^International(\'edit my friends\',\'Account_Friends\');\" class=\"WGprofile_displayView\">^International(\'back label\',\'Account_Friends\');\n
    \n
    \n
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    ','Account/Layout',1,1,'zrNpGbT3odfIkg6nFSUy8Q',1249407461,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n
    \n\" class=\"WGprofile_displayView\">^International(\'friends as others label\',\'Account_Friends\');\" class=\"WGprofile_displayView\">^International(\'edit my friends\',\'Account_Friends\');\" class=\"WGprofile_displayView\">^International(\'back label\',\'Account_Friends\');\n
    \n
    \n
    \n
    \n
    \n\n
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('\n
    \n\n\n

    \n
    \n ^International(member since,Account_Friends); ^D(%z,);\n

    \n\n \n\n
    \n\n
    \n\n

    \n \n \n \n

    \n \n \n \n

    \n\n \n
    class=\"bordered\">\n \n \n \n \n \n \n \n
    \">\"\"^Extras(account/images/no_photo.gif);\"/>\n \">
    \n \n ^International(member since,Account_Friends); ^D(%z,);
    \n
    \n
    \n
    \n
    \n \n

    \n \n \n \n

    \n \n \n \n

    \n\n
    \n','Account/Friends/View',1,1,'1Yn_zE_dSiNuaBGNLPbxtw',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n

    \n
    \n^International(member since,Account_Friends); ^D(%z,);\n

    \n\n
    \n
    \n

    \n \n\n\n

    \n\n\n\n

    \n\n
    class=\"bordered\">\n\n\n\n\n\n\n\n
    \">\"\"^Extras(account/images/no_photo.gif);\"/>\n\">
    \n\n^International(member since,Account_Friends); ^D(%z,);
    \n
    \n
    \n
    \n
    \n

    \n \n\n\n

    \n\n\n\n

    \n
    ',0,NULL,NULL),('
    \n\n
    \n\n
    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n
    \n\n \n\n
    \n\n
    \n\n

    \n \n \n \n

    \n \n \n \n

    \n\n \n \n \n \n \n \n
    class=\"WGbordered\" >\n \n \n \n \n \n \n \n \n
    \">\"Friend^Extras(account/images/no_photo.gif);\"/>
    ^International(online,Friends);^International(offline,Friends);
    \n \">
    \n \n ^International(member since,Account_Friends); ^D(%z,);
    \n ^User(homeCountry,);\n
    \n
    \n
    \n
    \n
    \n
    \n \n

    \n \n \n \n

    \n \n \n \n

    \n\n
    \n\n
    \n','Account/Friends/Edit',1,1,'AZFU33p0jpPJ-E6qLSWZng',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n
    \n
    \n^International(member since,Account_Inbox); ^D(%z,);\n
    \n\n
    \n
    \n

    \n \n\n\n

    \n\n\n\n

    \n\n\n\n\n\n\n
    class=\"WGbordered\" >\n\n\n\n\n\n\n\n\n
    \">\"Friend^Extras(account/images/no_photo.gif);\"/>
    ^International(online,Friends);^International(offline,Friends);
    \n\">
    \n\n^International(member since,Account_Friends); ^D(%z,);
    \n^User(homeCountry,);\n
    \n
    \n
    \n
    \n
    \n
    \n

    \n \n\n\n

    \n\n\n\n

    \n
    \n
    ',0,NULL,NULL),('\n\n
    \n \n

    \n
    \n ^International(member since,Account_Friends); ^D(%z,);\n

    \n \n

    ^International(add to network label,Account_Friends);

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(adding user message,Account_Friends,);
    ^International(sending to message,Account_Friends);
    \n\n
    \n\n','Account/Friends/SendRequest',1,1,'AGJBGviWGAwjnwziiPjvDg',1248549087,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n

    \n
    \n^International(member since,Account_Friends); ^D(%z,);\n

    \n

    ^International(add to network label,Account_Friends);

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(adding user message,Account_Friends,);
    ^International(sending to message,Account_Friends);
    \n
    \n',0,NULL,NULL),('

    \n

    ^International(error label,Account_Friends);

    \n

    \n

    \">^International(back label,Account_Inbox);

    \n

    \n','Account/Friends/Error',1,1,'7Ijdd8SW32lVgg2H8R-Aqw',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n

    ^International(error label,Account_Friends);

    \n

    \n

    \">^International(back label,Account_Inbox);

    \n

    ',0,NULL,NULL),('

    \n

    ^International(message sent label,Account_Friends);

    \n

    ^International(add to friends confirmation,Account_Friends,);

    \n

    \">^International(back to user profile,Account_Friends);

    \n

    ','Account/Friends/Confirm',1,1,'K8F0j_cq_jgo8dvWY_26Ag',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n

    ^International(message sent label,Account_Friends);

    \n

    ^International(add to friends confirmation,Account_Friends,);

    \n

    \">^International(back to user profile,Account_Friends);

    \n

    ',0,NULL,NULL),('

    \n

    ^International(remove confirm label,Account_Friends);

    \n

    ^International(remove confirm message,Account_Friends,);

    \n

    \n \">^International(remove confirm no,Account_Friends); · \n \">^International(remove confirm yes,Account_Friends);\n

    \n

    ','Account/Friends/Confirm',1,1,'G5V6neXIDiFXN05oL-U3AQ',1248549087,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n

    ^International(remove confirm label,Account_Friends);

    \n

    ^International(remove confirm message,Account_Friends,);

    \n

    \n\">^International(remove confirm no,Account_Friends); · \n\">^International(remove confirm yes,Account_Friends);\n

    \n

    ',0,NULL,NULL),('\n\n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    ','Account/Layout',1,1,'9ThW278DWLV0-Svf68ljFQ',1249407460,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('
    \n
    \n

    \n ^International(Payout Totals,Account_Shop);\n

    \n \n \n \n \n \n \n
    ^International(Paid,Account_Shop); :
    ^International(Scheduled for payment,Account_Shop); :
    ^International(Not yet scheduled,Account_Shop); : \n
    ^International(total,Shop); :
    \n \n

    ^International(my sales label,Account_Shop);

    \n \n \n \n \n \n \n \n \n \n \n \n \n WGoddThreadWGevenThread\">\n \n \n \n \n \n \n \n \n \n \n \n
    ^International(Product,Account_Shop);^International(quantity,Shop);^International(Payout,Account_Shop);
    \">
    ^International(no contributions,Account_Contributions);
    \n \n

    ^International(my sales label,Account_Shop); :: ^International(Products,Account_Shop);

    \n
    \n
    ','Shop/MySales',1,1,'-zxyB-O50W8YnL39Ouoc4Q',1248563425,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n

    \n^International(Payout Totals,Account_Shop);\n

    \n\n\n\n\n\n\n
    ^International(Paid,Account_Shop); :
    ^International(Scheduled for payment,Account_Shop); :
    ^International(Not yet scheduled,Account_Shop); : \n
    ^International(total,Shop); :
    \n

    ^International(my sales label,Account_Shop);

    \n\n\n\n\n\n\n\n\n\n\n\nWGoddThreadWGevenThread\">\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(Product,Account_Shop);^International(quantity,Shop);^International(Payout,Account_Shop);
    \">
    ^International(no contributions,Account_Contributions);
    \n

    ^International(my sales label,Account_Shop); :: ^International(Products,Account_Shop);

    \n
    \n
    ',0,NULL,NULL),('\n\n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    ','Account/Layout',1,1,'b4n3VyUIsAHyIvT-W-jziA',1249407461,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('
    \n \" id=\"id\">\n\n \n
    \n
    \n\n \n

    \n
    \n\n \n \n
    \n \n

    \n ^ViewCart();
    \n \">^International(continue shopping button,Shop);\n \n ^ViewCart(); (^CartItemCount;)\n

    \n \n \n \n \n \n \n \n \n \n\n \n \n \n
      \n ^International(variants,Asset_Product);\n \n
    • \n
      \n
    \n \n \n \n
    \n
    \n \n \n \n \n \n
      \n ^International(30,Asset_Product);\n \n
    • \n
      \n
    \n
    \n \n \n
      \n ^International(54,Asset_Product);\n \n
    • \n
      \n
    \n
    \n\n \n
      \n ^International(31,Asset_Product);\n \n
    • :
    • \n
      \n
    \n
    \n \n \n
      \n ^International(32,Asset_Product);\n \n
    • \">
    • \n
      \n
    \n
    \n \n \n
      \n ^International(33,Asset_Product);\n \n
    • \">
    • \n
      \n
    \n
    \n
    \n \n
    \n
    \n\n','Product',1,1,'PBtmpl0000000000000056',1248729559,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\" id=\"id\">\n\n
    \n
    \n\n

    \n
    \n\n
    \n\n

    \n^ViewCart();
    \n\">^International(continue shopping button,Shop);\n\n^ViewCart(); (^CartItemCount;)\n

    \n\n\n\n\n\n\n\n\n\n\n\n
      \n^International(variants,Asset_Product);\n\n
    • \n
      \n
    \n\n\n\n
    \n
    \n\n
      \n^International(30,Asset_Product);\n\n
    • \n
      \n
    \n
    \n\n
      \n^International(54,Asset_Product);\n\n
    • \n
      \n
    \n
    \n\n
      \n^International(31,Asset_Product);\n\n
    • :
    • \n
      \n
    \n
    \n\n
      \n^International(32,Asset_Product);\n\n
    • \">
    • \n
      \n
    \n
    \n\n
      \n^International(33,Asset_Product);\n\n
    • \">
    • \n
      \n
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('^International(inbox sms notification,Account_Inbox);','Account/Inbox/Notification',1,1,'i9-G00ALhJOr0gMh-vHbKA',1250408924,'WebGUI::Asset::Template::HTMLTemplate',1,'^International(inbox sms notification,Account_Inbox);',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n

    ^International(\"form manage title\",\"Asset_AdSku\");

    \n

    \'>^International(\"form purchase link\",\"Asset_AdSku\");

    \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n
    ^International(\"form manage table header title\",\"Asset_AdSku\");^International(\"form manage table header clicks\",\"Asset_AdSku\");^International(\"form manage table header impressions\",\"Asset_AdSku\");^International(\"form manage table header renew\",\"Asset_AdSku\");
    \">^International(\"form manage table value renew\",\"Asset_AdSku\");
    \n\n^ViewCart(); (^CartItemCount;)','AdSku/Manage',1,1,'ohjyzab5i-yW6GOWTeDUHg',1251425384,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n

    ^International(\"form manage title\",\"Asset_AdSku\");

    \n

    \'>^International(\"form purchase link\",\"Asset_AdSku\");

    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\"form manage table header title\",\"Asset_AdSku\");^International(\"form manage table header clicks\",\"Asset_AdSku\");^International(\"form manage table header impressions\",\"Asset_AdSku\");^International(\"form manage table header renew\",\"Asset_AdSku\");
    \">^International(\"form manage table value renew\",\"Asset_AdSku\");
    \n^ViewCart(); (^CartItemCount;)',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n
    \n
    \n\n

    ^International(form added to cart thanks,Asset_AdSku);

    \n\n

    \n

    \n

    \">^International(form manage link,Asset_AdSku);

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(form purchase ad title,Asset_AdSku);
    ^International(form purchase ad link,Asset_AdSku);
    ^International(form purchase ad image,Asset_AdSku);
    ^International(form purchase number of clicks,Asset_AdSku);^International(form purchase per click,Asset_AdSku, );\n
    \n
    ^International(minimum clicks,Asset_AdSku,);
    ^International(form purchase number of impressions,Asset_AdSku);^International(form purchase per click,Asset_AdSku, );\n
    \n
    ^International(minimum impressions,Asset_AdSku,);
    \n \n
    \n^ViewCart(); (^CartItemCount;)','AdSku/Purchase',1,1,'AldPGu0u-jm_5xK13atCSQ',1251419124,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n
    \n
    \n\n

    ^International(form added to cart thanks,Asset_AdSku);

    \n\n

    \n

    \n

    \">^International(form manage link,Asset_AdSku);

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(form purchase ad title,Asset_AdSku);
    ^International(form purchase ad link,Asset_AdSku);
    ^International(form purchase ad image,Asset_AdSku);
    ^International(form purchase number of clicks,Asset_AdSku);^International(form purchase per click,Asset_AdSku, );\n
    \n
    ^International(minimum clicks,Asset_AdSku,);
    ^International(form purchase number of impressions,Asset_AdSku);^International(form purchase per click,Asset_AdSku, );\n
    \n
    ^International(minimum impressions,Asset_AdSku,);
    \n\n
    \n^ViewCart(); (^CartItemCount;)',0,NULL,NULL),('

    \n\n\n\n
    \n
    \n\n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \" style=\"display:none;\">\n \n \n \n \n
    ^International(\'answer label\',\'Asset_Survey\');^International(\'response count label\',\'Asset_Survey\');^International(\'response percent label\',\'Asset_Survey\');
    \');\">^International(\'show comments label\',\'Asset_Survey\');
    \n \n

    \n
    \n
    \n \n
    \n \');\">^International(\'show responses label\',\'Asset_Survey\');\n
    \n
    \" style=\"display:none;\">\n \n

    \n \n
    \n
    \n
    \n
    \n
    \n


    \n
    \n\n\n
    \n · · \n
    \n
    \n','Survey/Overview',1,1,'PBtmpl0000000000000063',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\" style=\"display:none;\">\n\n\n\n\n
    ^International(\'answer label\',\'Asset_Survey\');^International(\'response count label\',\'Asset_Survey\');^International(\'response percent label\',\'Asset_Survey\');
    \');\">^International(\'show comments label\',\'Asset_Survey\');
    \n\n

    \n
    \n
    \n\n
    \n\');\">^International(\'show responses label\',\'Asset_Survey\');\n
    \n
    \" style=\"display:none;\">\n\n

    \n\n
    \n
    \n
    \n
    \n
    \n


    \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n

    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n
    ^International(\'user label\',\'Asset_Survey\');^International(\'start date\',\'Asset_Survey\');^International(\'end date\',\'Asset_Survey\');^International(\'score label\',\'Asset_Survey\');^International(\'percentage label\',\'Asset_Survey\');
    \">/%
    \r\n\r\n\r\n\r\n
    \r\n · · \r\n
    \r\n
    \r\n','Survey/Gradebook',1,1,'PBtmpl0000000000000062',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n

    \n\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\'user label\',\'Asset_Survey\');^International(\'start date\',\'Asset_Survey\');^International(\'end date\',\'Asset_Survey\');^International(\'score label\',\'Asset_Survey\');^International(\'percentage label\',\'Asset_Survey\');
    \">/%
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n

    \n\n\n

    \n\n\n','Survey',1,1,'PBtmpl0000000000000061',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n

    \n\n

    \n',0,NULL,NULL),('
    \n
    \n
    \n
    \n\n\n
    \n

    \n^International(\'restart message\',\'Asset_Survey\');\n

    \n
    \n
    \n\n\n
    \n out of \n
    \n
    \n\n
    \n minutes left\n
    \n
    \n
    \n\n
    \n\n\n
    \n

    required\'>

    \n\n \n\n \n\n \n \n\n\n \n \n \n \n \n \' id=\'\' size=\'50\' />\n \n \n verbatim\' >\n \n \n \n \n\n \n \n \' value=\'\'>\n \n \n\n \n \n \n \n \n \" id=\"\">
    \n
    \n \n verbatim\'>\n \n \n
    \n
    \n\n \n \n \n \n \n
    \n
    \n \n verbatim\'>\n \n \n
    \n
    \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n button\" value=\"\">\n \n \n button\">\n \n \" id=\"\" value=\"\">\n \n \n \n \n \n verbatim\' name=\'verbatim\'>\n
    \n \n \n \n
    \n button\" value=\"\">\n \n \n button\">\n \n \" id=\"\" value=\"\">\n \n verbatim\' name=\'verbatim\'>\n \n
    \n
    \n\n \n \n \n \' id=\'\'>\n \n \n ^International(\'year\', \'Asset_Survey\');\n -year\' id=\'-year\' type=text size=4>\n ^International(\'month\', \'Asset_Survey\');\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n \n \' id=\'\' type=text>\n button\'>\n
    container\'>
    \n \n
    \n
    \n
    \n\n \n \n\n \n \' name=\'\' value=0>\n \n \n \' name=\'\' value=\"\">\n \n\n \n

    \n
    \n \n show\'>0\n \n \n \n show\'>\n \n
    0  \n
    slider-bg\' tabindex=\'-1\' title=\'Slider\' class=slider-bg>\n \n
    slider-min-thumb\' class=slider-min-thumb>\n \n
    \n \n
    slider-max-thumb\' class=slider-max-thumb>\n \n
    \n
    \n \n \n
    \n \n
    \n\n \n\n \n \n \n\n \n

    \n
    \n | \' name=\'\'> | \n \n
      \n
    slider-bg\' tabindex=\'-1\' title=\'Slider\' class=slider-bg>\n
    slider-thumb\' class=slider-thumb>\n \n
    \n
    \n
    \n
    \n \n\n \n \n \n \n\n \n \n

    Comment:

    \n
    \n\n\n
    \n
    \n
    \n \n \n \n ^International(\'finish\', \'Asset_Survey\');^International(\'continue\', \'Asset_Survey\');\">\n
    \n
    \n\n
    \n\n
    \n\n\n\n\n\n\n','Survey/Take',1,1,'CxMpE_UPauZA3p8jdrOABw',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n
    \n
    \n\n
    \n

    \n^International(\'restart message\',\'Asset_Survey\');\n

    \n
    \n
    \n\n
    \n out of \n
    \n
    \n\n
    \n minutes left\n
    \n
    \n
    \n
    \n\n
    \n

    required\'>

    \n\n\n\n\n\n\n\n\n\n\' id=\'\' size=\'50\' />\n\n\n verbatim\'>\n\n\n\n\n\n\n\' value=\'\'>\n\n\n\n\n\n\n\n\" id=\"\">
    \n
    \n\nverbatim\'>\n\n\n
    \n
    \n\n\n\n\n\n
    \n
    \n\nverbatim\'>\n\n\n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \nbutton\" value=\"\">\n\n\nbutton\">\n\n\" id=\"\" value=\"\">\n\n\n\n\n\nverbatim\' name=\'verbatim\'>\n
    \n\n\n\n
    \nbutton\" value=\"\">\n\n\nbutton\">\n\n\" id=\"\" value=\"\">\n\nverbatim\' name=\'verbatim\'>\n\n
    \n
    \n\n\n\n\' id=\'\'>\n\n\n^International(\'year\', \'Asset_Survey\');\n-year\' id=\'-year\' type=text size=4>\n^International(\'month\', \'Asset_Survey\');\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n\n\' id=\'\' type=text>\nbutton\'>\n
    container\'>
    \n\n
    \n
    \n
    \n\n\n\n\' name=\'\' value=0>\n\n\n\' name=\'\' value=\"\">\n\n\n

    \n
    \n\nshow\'>0\n\n\n\nshow\'>\n\n
    0  \n
    slider-bg\' tabindex=\'-1\' title=\'Slider\' class=slider-bg>\n\n
    slider-min-thumb\' class=slider-min-thumb>\n\n
    \n\n
    slider-max-thumb\' class=slider-max-thumb>\n\n
    \n
    \n\n\n
    \n\n
    \n\n\n\n\n\n

    \n
    \n| \' name=\'\'> | \n\n
      \n
    slider-bg\' tabindex=\'-1\' title=\'Slider\' class=slider-bg>\n
    slider-thumb\' class=slider-thumb>\n\n
    \n
    \n
    \n
    \n\n\n\n\n\n\n

    Comment:

    \n
    \n
    \n
    \n
    \n\n\n\n^International(\'finish\', \'Asset_Survey\');^International(\'continue\', \'Asset_Survey\');\">\n
    \n
    \n
    \n
    ',0,NULL,NULL),('
    \n
    ^International(\'please enter section information\',\'Asset_Survey\');
    \n
    \n
    \n \'>\n \n \n \n
    \n\n

    \n

    ^International(\'section number\',\'Asset_Survey\');\n
    ^International(\'section number description\',\'Asset_Survey\');
    \n
    \n

    \n \n

    \n

    ^International(\'section name\',\'Asset_Survey\');\n
    ^International(\'section name description\',\'Asset_Survey\');
    \n
    \n \' type=text>\n

    \n \n

    \n

    ^International(\'section custom variable name\',\'Asset_Survey\');\n
    ^International(\'section custom variable name description\',\'Asset_Survey\');
    \n
    \n \' name=\'variable\' size=\'2\'>\n

    \n \n \n

    \n

    \n
    ^International(\'jump to\',\'Asset_Survey\');\n
    ^International(\'jump to description\',\'Asset_Survey\');
    \n
    \n
    \n \">\n
    \n
    \n
    \n

    \n\n

    \n

    ^International(\'jump expression\',\'Asset_Survey\');\n
    ^International(\'jump expression description\',\'Asset_Survey\');
    \n
    \n
    \n \n
    \n

    \n \n \n
    \n \n

    \n

    ^International(\'randomize questions\',\'Asset_Survey\');\n
    ^International(\'randomize questions description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n \n\n

    \n

    ^International(\'questions per page\',\'Asset_Survey\');\n
    ^International(\'questions per page description\',\'Asset_Survey\');
    \n
    \n \n

    \n

    \n

    ^International(\'questions on section page\',\'Asset_Survey\');\n
    ^International(\'questions on section page description\',\'Asset_Survey\');
    \n
    \n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n

    \n \n \n

    \n

    ^International(\'title on every page\',\'Asset_Survey\');\n
    ^International(\'title on every page description\',\'Asset_Survey\');
    \n
    \n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n

    \n \n

    \n

    ^International(\'text on every page\',\'Asset_Survey\');\n
    ^International(\'text on every page description\',\'Asset_Survey\');
    \n
    \n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n

    \n \n

    \n

    ^International(\'terminal section\',\'Asset_Survey\');\n
    ^International(\'terminal section description\',\'Asset_Survey\');
    \n
    \n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n

    \n \n

    \n

    ^International(\'terminal section url\',\'Asset_Survey\');\n
    ^International(\'terminal section url description\',\'Asset_Survey\');
    \n
    \n \'>\n

    \n\n

    \n

    ^International(\'logical section\',\'Asset_Survey\');\n
    ^International(\'logical section help\',\'Asset_Survey\');
    \n
    \n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n

    \n \n
    \n \n

    \n

    ^International(\'section text\',\'Asset_Survey\');\n
    ^International(\'section text description\',\'Asset_Survey\');
    \n
    \n

    \n
    \n \n
    \n \n
    \n
    \n
    ','Survey/Edit',1,1,'1oBRscNIcFOI-pETrCOspA',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    ^International(\'please enter section information\',\'Asset_Survey\');
    \n
    \n
    \n\'>\n\n\n
    \n

    \n

    ^International(\'section number\',\'Asset_Survey\');\n
    ^International(\'section number description\',\'Asset_Survey\');
    \n
    \n

    \n

    \n

    ^International(\'section name\',\'Asset_Survey\');\n
    ^International(\'section name description\',\'Asset_Survey\');
    \n
    \n\' type=text>\n

    \n

    \n

    ^International(\'section custom variable name\',\'Asset_Survey\');\n
    ^International(\'section custom variable name description\',\'Asset_Survey\');
    \n
    \n\' name=\'variable\' size=\'2\'>\n

    \n

    \n

    \n
    ^International(\'jump to\',\'Asset_Survey\');\n
    ^International(\'jump to description\',\'Asset_Survey\');
    \n
    \n
    \n\">\n
    \n
    \n
    \n

    \n

    \n

    ^International(\'jump expression\',\'Asset_Survey\');\n
    ^International(\'jump expression description\',\'Asset_Survey\');
    \n
    \n
    \n\n
    \n

    \n
    \n

    \n

    ^International(\'randomize questions\',\'Asset_Survey\');\n
    ^International(\'randomize questions description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n

    \n

    ^International(\'questions per page\',\'Asset_Survey\');\n
    ^International(\'questions per page description\',\'Asset_Survey\');
    \n
    \n\n

    \n

    \n

    ^International(\'questions on section page\',\'Asset_Survey\');\n
    ^International(\'questions on section page description\',\'Asset_Survey\');
    \n
    \n\n^International(\'yes\',\'Asset_Survey\');\n^International(\'no\',\'Asset_Survey\');\n\n^International(\'yes\',\'Asset_Survey\');\n^International(\'no\',\'Asset_Survey\');\n\n

    \n

    \n

    ^International(\'title on every page\',\'Asset_Survey\');\n
    ^International(\'title on every page description\',\'Asset_Survey\');
    \n
    \n\n^International(\'yes\',\'Asset_Survey\');\n^International(\'no\',\'Asset_Survey\');\n\n^International(\'yes\',\'Asset_Survey\');\n^International(\'no\',\'Asset_Survey\');\n\n

    \n

    \n

    ^International(\'text on every page\',\'Asset_Survey\');\n
    ^International(\'text on every page description\',\'Asset_Survey\');
    \n
    \n\n^International(\'yes\',\'Asset_Survey\');\n^International(\'no\',\'Asset_Survey\');\n\n^International(\'yes\',\'Asset_Survey\');\n^International(\'no\',\'Asset_Survey\');\n\n

    \n

    \n

    ^International(\'terminal section\',\'Asset_Survey\');\n
    ^International(\'terminal section description\',\'Asset_Survey\');
    \n
    \n\n^International(\'yes\',\'Asset_Survey\');\n^International(\'no\',\'Asset_Survey\');\n\n^International(\'yes\',\'Asset_Survey\');\n^International(\'no\',\'Asset_Survey\');\n\n

    \n

    \n

    ^International(\'terminal section url\',\'Asset_Survey\');\n
    ^International(\'terminal section url description\',\'Asset_Survey\');
    \n
    \n\'>\n

    \n

    \n

    ^International(\'logical section\',\'Asset_Survey\');\n
    ^International(\'logical section help\',\'Asset_Survey\');
    \n
    \n\n^International(\'yes\',\'Asset_Survey\');\n^International(\'no\',\'Asset_Survey\');\n\n^International(\'yes\',\'Asset_Survey\');\n^International(\'no\',\'Asset_Survey\');\n\n

    \n
    \n

    \n

    ^International(\'section text\',\'Asset_Survey\');\n
    ^International(\'section text description\',\'Asset_Survey\');
    \n
    \n

    \n
    \n\n
    \n
    \n
    \n
    ',0,NULL,NULL),('
    \n
    ^International(\'please enter question information\',\'Asset_Survey\');
    \n
    \n
    \n \'>\n \n \n \n \n \n
    \n \n

    \n

    ^International(\'question number\',\'Asset_Survey\');\n
    ^International(\'question number description\',\'Asset_Survey\');
    \n
    \n \n

    \n \n

    \n

    ^International(\'question variable name\',\'Asset_Survey\');\n
    ^International(\'question variable name description\',\'Asset_Survey\');
    \n
    \n \' name=\'variable\' size=\'2\'>\n

    \n \n

    \n

    ^International(\'question type\',\'Asset_Survey\');\n
    ^International(\'question type description\',\'Asset_Survey\');
    \n
    \n \n

    \n \n

    \n

    ^International(\'question score\',\'Asset_Survey\');\n
    ^International(\'question score description\',\'Asset_Survey\');
    \n
    \n \' name=\'value\'>\n

    \n \n

    \n

    ^International(\'required label\',\'Asset_Survey\');\n
    ^International(\'required description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n \n

    \n

    ^International(\'randomize answers\',\'Asset_Survey\');\n
    ^International(\'randomize answers description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n

    \n

    ^International(\'vertical display\',\'Asset_Survey\');\n
    ^International(\'vertical display description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n \n\n\n
    \n\n

    \n

    ^International(\'show text in button\',\'Asset_Survey\');\n
    ^International(\'show text in button description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n \n

    \n

    ^International(\'allow comment\',\'Asset_Survey\');\n
    ^International(\'allow comment description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n \n

    \n

    ^International(\'comment cols\',\'Asset_Survey\');\n
    ^International(\'cols description\',\'Asset_Survey\');
    \n
    \n \' name=\'commentCols\'>\n

    \n \n

    \n

    ^International(\'comment rows\',\'Asset_Survey\');\n
    ^International(\'rows description\',\'Asset_Survey\');
    \n
    \n \' name=\'commentRows\'> \n

    \n \n

    \n

    ^International(\'maximum number of answers\',\'Asset_Survey\');\n
    ^International(\'maximum number of answers description\',\'Asset_Survey\');
    \n
    \n \' name=\'maxAnswers\' size=\'2\'>\n

    \n\n\n
    \n\n

    \n

    \n
    ^International(\'jump to\',\'Asset_Survey\');\n
    ^International(\'jump to description\',\'Asset_Survey\');
    \n
    \n
    \n \">\n
    \n
    \n
    \n

    \n\n

    \n

    ^International(\'jump expression\',\'Asset_Survey\');\n
    ^International(\'jump expression description\',\'Asset_Survey\');
    \n
    \n
    \n \n
    \n

    \n\n \n
    \n \n

    \n

    ^International(\'question text\',\'Asset_Survey\');\n
    ^International(\'question text description\',\'Asset_Survey\');
    \n
    \n

    \n
    \n \n
    \n
    \n
    \n
    \n','Survey/Edit',1,1,'wAc4azJViVTpo-2NYOXWvg',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    ^International(\'please enter question information\',\'Asset_Survey\');
    \n
    \n
    \n\'>\n\n\n\n\n\n
    \n

    \n

    ^International(\'question number\',\'Asset_Survey\');\n
    ^International(\'question number description\',\'Asset_Survey\');
    \n
    \n\n

    \n

    \n

    ^International(\'question variable name\',\'Asset_Survey\');\n
    ^International(\'question variable name description\',\'Asset_Survey\');
    \n
    \n\' name=\'variable\' size=\'2\'>\n

    \n

    \n

    ^International(\'question type\',\'Asset_Survey\');\n
    ^International(\'question type description\',\'Asset_Survey\');
    \n
    \n\n

    \n

    \n

    ^International(\'question score\',\'Asset_Survey\');\n
    ^International(\'question score description\',\'Asset_Survey\');
    \n
    \n\' name=\'value\'>\n

    \n

    \n

    ^International(\'required label\',\'Asset_Survey\');\n
    ^International(\'required description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n

    \n

    ^International(\'randomize answers\',\'Asset_Survey\');\n
    ^International(\'randomize answers description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n

    \n

    ^International(\'vertical display\',\'Asset_Survey\');\n
    ^International(\'vertical display description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n
    \n

    \n

    ^International(\'show text in button\',\'Asset_Survey\');\n
    ^International(\'show text in button description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n

    \n

    ^International(\'allow comment\',\'Asset_Survey\');\n
    ^International(\'allow comment description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n

    \n

    ^International(\'comment cols\',\'Asset_Survey\');\n
    ^International(\'cols description\',\'Asset_Survey\');
    \n
    \n\' name=\'commentCols\'>\n

    \n

    \n

    ^International(\'comment rows\',\'Asset_Survey\');\n
    ^International(\'rows description\',\'Asset_Survey\');
    \n
    \n\' name=\'commentRows\'> \n

    \n

    \n

    ^International(\'maximum number of answers\',\'Asset_Survey\');\n
    ^International(\'maximum number of answers description\',\'Asset_Survey\');
    \n
    \n\' name=\'maxAnswers\' size=\'2\'>\n

    \n
    \n

    \n

    \n
    ^International(\'jump to\',\'Asset_Survey\');\n
    ^International(\'jump to description\',\'Asset_Survey\');
    \n
    \n
    \n\">\n
    \n
    \n
    \n

    \n

    \n

    ^International(\'jump expression\',\'Asset_Survey\');\n
    ^International(\'jump expression description\',\'Asset_Survey\');
    \n
    \n
    \n\n
    \n

    \n
    \n

    \n

    ^International(\'question text\',\'Asset_Survey\');\n
    ^International(\'question text description\',\'Asset_Survey\');
    \n
    \n

    \n
    \n\n
    \n
    \n
    \n
    ',0,NULL,NULL),('
    \n
    ^International(\'please enter answer information\',\'Asset_Survey\');
    \n
    \n
    \n \'>\n \n \n \n \n \n
    \n \n

    \n

    ^International(\'answer number\',\'Asset_Survey\');\n
    ^International(\'answer number description\',\'Asset_Survey\');
    \n
    \n \n

    \n \n

    \n

    ^International(\'recorded answer\',\'Asset_Survey\');\n
    ^International(\'recorded answer description\',\'Asset_Survey\');
    \n
    \n \' name=\'recordedAnswer\'>\n

    \n \n

    \n

    ^International(\'answer score\',\'Asset_Survey\');\n
    ^International(\'answer score description\',\'Asset_Survey\');
    \n
    \n \' name=\'value\'>\n

    \n \n

    \n

    ^International(\'verbatim label\',\'Asset_Survey\');\n
    ^International(\'verbatim description\',\'Asset_Survey\');
    \n
    \n ^International(\'checked\',\'Asset_Survey\');>^International(\'yes\',\'Asset_Survey\');\n ^International(\'checked\',\'Asset_Survey\');>^International(\'no\',\'Asset_Survey\');\n

    \n \n

    \n

    ^International(\'min label\',\'Asset_Survey\');\n
    ^International(\'min description\',\'Asset_Survey\');
    \n
    \n \' name=\'min\' size=\'2\'>\n

    \n \n

    \n

    ^International(\'max label\',\'Asset_Survey\');\n
    ^International(\'max description\',\'Asset_Survey\');
    \n
    \n \' name=\'max\' size=\'2\'>\n

    \n \n

    \n

    ^International(\'step label\',\'Asset_Survey\');\n
    ^International(\'step description\',\'Asset_Survey\');
    \n
    \n \' name=\'step\' size=\'2\'>\n

    \n\n
    \n \n \n

    \n

    ^International(\'textCols label\',\'Asset_Survey\');\n
    ^International(\'cols description\',\'Asset_Survey\');
    \n
    \n \' name=\'textCols\'>\n

    \n \n

    \n

    ^International(\'textRows label\',\'Asset_Survey\');\n
    ^International(\'rows description\',\'Asset_Survey\');
    \n
    \n \' name=\'textRows\'>\n

    \n \n

    \n

    ^International(\'is this the correct answer\',\'Asset_Survey\');\n
    ^International(\'is this the correct answer description\',\'Asset_Survey\');
    \n
    \n checked>^International(\'yes\',\'Asset_Survey\');\n checked>^International(\'no\',\'Asset_Survey\');\n

    \n \n

    \n

    \n
    ^International(\'jump to\',\'Asset_Survey\');\n
    ^International(\'jump to description\',\'Asset_Survey\');
    \n
    \n
    \n \">\n
    \n
    \n
    \n

    \n \n

    \n

    ^International(\'jump expression\',\'Asset_Survey\');\n
    ^International(\'jump expression description\',\'Asset_Survey\');
    \n
    \n
    \n \n
    \n

    \n \n
    \n \n

    \n

    ^International(\'answer text\',\'Asset_Survey\');\n
    ^International(\'answer text description\',\'Asset_Survey\');
    \n
    \n

    \n
    \n \n
    \n \n
    \n
    \n
    \n','Survey/Edit',1,1,'AjhlNO3wZvN5k4i4qioWcg',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    ^International(\'please enter answer information\',\'Asset_Survey\');
    \n
    \n
    \n\'>\n\n\n\n\n
    \n

    \n

    ^International(\'answer number\',\'Asset_Survey\');\n
    ^International(\'answer number description\',\'Asset_Survey\');
    \n
    \n\n

    \n

    \n

    ^International(\'recorded answer\',\'Asset_Survey\');\n
    ^International(\'recorded answer description\',\'Asset_Survey\');
    \n
    \n\' name=\'recordedAnswer\'>\n

    \n

    \n

    ^International(\'answer score\',\'Asset_Survey\');\n
    ^International(\'answer score description\',\'Asset_Survey\');
    \n
    \n\' name=\'value\'>\n

    \n

    \n

    ^International(\'verbatim label\',\'Asset_Survey\');\n
    ^International(\'verbatim description\',\'Asset_Survey\');
    \n
    \n^International(\'checked\',\'Asset_Survey\');>^International(\'yes\',\'Asset_Survey\');\n^International(\'checked\',\'Asset_Survey\');>^International(\'no\',\'Asset_Survey\');\n

    \n

    \n

    ^International(\'min label\',\'Asset_Survey\');\n
    ^International(\'min description\',\'Asset_Survey\');
    \n
    \n\' name=\'min\' size=\'2\'>\n

    \n

    \n

    ^International(\'max label\',\'Asset_Survey\');\n
    ^International(\'max description\',\'Asset_Survey\');
    \n
    \n\' name=\'max\' size=\'2\'>\n

    \n

    \n

    ^International(\'step label\',\'Asset_Survey\');\n
    ^International(\'step description\',\'Asset_Survey\');
    \n
    \n\' name=\'step\' size=\'2\'>\n

    \n
    \n

    \n

    ^International(\'textCols label\',\'Asset_Survey\');\n
    ^International(\'cols description\',\'Asset_Survey\');
    \n
    \n\' name=\'textCols\'>\n

    \n

    \n

    ^International(\'textRows label\',\'Asset_Survey\');\n
    ^International(\'rows description\',\'Asset_Survey\');
    \n
    \n\' name=\'textRows\'>\n

    \n

    \n

    ^International(\'is this the correct answer\',\'Asset_Survey\');\n
    ^International(\'is this the correct answer description\',\'Asset_Survey\');
    \n
    \nchecked>^International(\'yes\',\'Asset_Survey\');\nchecked>^International(\'no\',\'Asset_Survey\');\n

    \n

    \n

    \n
    ^International(\'jump to\',\'Asset_Survey\');\n
    ^International(\'jump to description\',\'Asset_Survey\');
    \n
    \n
    \n\">\n
    \n
    \n
    \n

    \n

    \n

    ^International(\'jump expression\',\'Asset_Survey\');\n
    ^International(\'jump expression description\',\'Asset_Survey\');
    \n
    \n
    \n\n
    \n

    \n
    \n

    \n

    ^International(\'answer text\',\'Asset_Survey\');\n
    ^International(\'answer text description\',\'Asset_Survey\');
    \n
    \n

    \n
    \n\n
    \n
    \n
    \n
    ',0,NULL,NULL),('Dear ,\r\n\r\nYour responses for the Survey have expired and have been deleted. \r\n\r\nSincerely,\r\n\r\n','ExpireIncompleteSurveyResponses',1,1,'ExpireIncResptmpl00001',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'Dear ,\nYour responses for the Survey have expired and have been deleted.\nSincerely,\n',0,NULL,NULL),('
    \r\n \r\n

    \r\n Survey Summary Total Sections: Total Questions: Total Answers: \r\n

    \r\n

    \r\n Total Correct: Total Incorrect: \r\n

    \r\n

    \r\n

    \r\n

    \r\n \r\n
    \r\n
    \r\n Section: Correct: Incorrect: \r\n chart\'>\r\n
    \r\n
    datatable\'>
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n','Survey/Summary',1,1,'7F-BuEHi7t9bPi008H8xZQ',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n

    \nSurvey Summary Total Sections: Total Questions: Total Answers: \n

    \n

    \nTotal Correct: Total Incorrect: \n

    \n

    \n

    \n

    \n\n
    \n
    \nSection: Correct: Incorrect: \nchart\'>\n
    \n
    datatable\'>
    \n
    \n
    \n\n\n\n
    \n
    ',0,NULL,NULL),('\n\n\n

    failpass\">^International(\'test results\', \'Asset_Survey\'); - \n ^International(\'fail\', \'Asset_Survey\');^International(\'pass\', \'Asset_Survey\');

    \n

    Tests=, Passed=, Failed=,

    \n \n \n \n \n \n \n \n failpass \">\n \n \n \n \n \n \n \n \n \n
    ^International(\'test name\', \'Asset_Survey\');^International(\'tests run\', \'Asset_Survey\');^International(\'tests passed\', \'Asset_Survey\');^International(\'tests failed\', \'Asset_Survey\');^International(\'test result\', \'Asset_Survey\');
    ^International(\'fail\', \'Asset_Survey\');^International(\'pass\', \'Asset_Survey\');\">^International(\'575\', \'WebGUI\');\">^International(\'run test\', \'Asset_Survey\');
    \n\n

    ^International(\'details\', \'Asset_Survey\');

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    all_passed
    get_status
    failed
    parse_errors
    passed
    skipped
    todo
    todo_passed
    wait
    exit
    total
    has_problems
    has_errors
    \n\n\n\n

    failpass\">^International(\'test results\', \'Asset_Survey\'); - \n ^International(\'fail\', \'Asset_Survey\');^International(\'pass\', \'Asset_Survey\');

    \n \n \n \n passfail \">\n \n \n
    \n
    \n \n

    ^International(\'details\', \'Asset_Survey\');

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    passed
    failed
    actual_passed
    actual_failed
    todo
    todo_passed
    skipped
    plan
    tests_planned
    tests_run
    skip_all
    has_problems
    exit
    wait
    \n\n
    ','Survey/TestResults',1,1,'S3zpVitAmhy58CAioH359Q',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    failpass\">^International(\'test results\', \'Asset_Survey\'); -\n^International(\'fail\', \'Asset_Survey\');^International(\'pass\', \'Asset_Survey\');

    \n

    Tests=, Passed=, Failed=,

    \n\n\n\n\n\n\n\nfailpass \">\n\n\n\n\n\n\n\n\n\n
    ^International(\'test name\', \'Asset_Survey\');^International(\'tests run\', \'Asset_Survey\');^International(\'tests passed\', \'Asset_Survey\');^International(\'tests failed\', \'Asset_Survey\');^International(\'test result\', \'Asset_Survey\');
    ^International(\'fail\', \'Asset_Survey\');^International(\'pass\', \'Asset_Survey\');\">^International(\'575\', \'WebGUI\');\">^International(\'run test\', \'Asset_Survey\');
    \n

    ^International(\'details\', \'Asset_Survey\');

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    all_passed
    get_status
    failed
    parse_errors
    passed
    skipped
    todo
    todo_passed
    wait
    exit
    total
    has_problems
    has_errors
    \n\n

    failpass\">^International(\'test results\', \'Asset_Survey\'); -\n^International(\'fail\', \'Asset_Survey\');^International(\'pass\', \'Asset_Survey\');

    \n\n\npassfail \">\n\n\n
    \n
    \n

    ^International(\'details\', \'Asset_Survey\');

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    passed
    failed
    actual_passed
    actual_failed
    todo
    todo_passed
    skipped
    plan
    tests_planned
    tests_run
    skip_all
    has_problems
    exit
    wait
    \n
    ',0,NULL,NULL),('
    \n\n \n ^International(\'response complete\', \'Asset_Survey\'); on \n \n\n \n ^International(\'response restart\', \'Asset_Survey\'); on \n \n\n \n ^International(\'response timeout\', \'Asset_Survey\'); on \n \n\n \n ^International(\'response timeout restart\', \'Asset_Survey\'); on \n \n\n
    \n\n','Survey/Feedback',1,1,'nWNVoMLrMo059mDRmfOp9g',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n^International(\'response complete\', \'Asset_Survey\'); on \n\n\n^International(\'response restart\', \'Asset_Survey\'); on \n\n\n^International(\'response timeout\', \'Asset_Survey\'); on \n\n\n^International(\'response timeout restart\', \'Asset_Survey\'); on \n\n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n |\n \n \n \">^International(my subscriptions,Asset_Newsletter);\n |\n \n \">\n

    \n\n

    \n\n\n

    \">
    \n

    \n\n\n\n
    \n \n
    \n
    \n','Collaboration',1,1,'newslettercs0000000001',1252682678,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n\n

    \n\n\">\n|\n\n\n\">^International(my subscriptions,Asset_Newsletter);\n|\n\n\">\n

    \n

    \n\n

    \">
    \n

    \n\n\n
    \n\n
    \n
    ',0,NULL,NULL),('
    \n
    \n\n

    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n

    \n \n

    \n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n WGoddThreadWGevenThread\">\n \n \n \n \n \n \n \n \n \n \n \n
    \">^International(title label,Account_Contributions);\">^International(type label,Account_Contributions);\">^International(date label,Account_Contributions);
    \">^D(,);
    ^International(no contributions,Account_Contributions);
    \n \n

    \n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n

    \n \n \n

    ^International(contribution count,\'Account_Contributions\');

    \n
    \n
    ','Account/Contrib/View',1,1,'1IzRpX0tgW7iuCfaU2Kk0A',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n

    \n
    \n^International(member since,Account_Inbox); ^D(%z,);\n

    \n

    \n\n\n\" class=\"prevNext\">\"Previous\" \n\"> \n \" class=\"prevNext\">\"Next\"\n\n\n\n

    \n\n\n\n\n\n\n\n\n\n\n\nWGoddThreadWGevenThread\">\n\n\n\n\n\n\n\n\n\n\n\n
    \">^International(title label,Account_Contributions);\">^International(type label,Account_Contributions);\">^International(date label,Account_Contributions);
    \">^D(,);
    ^International(no contributions,Account_Contributions);
    \n

    \n\n\n\" class=\"prevNext\">\"Previous\" \n\"> \n \" class=\"prevNext\">\"Next\"\n\n\n\n

    \n

    ^International(contribution count,\'Account_Contributions\');

    \n
    \n
    ',0,NULL,NULL),('','StoryArchive/KeywordList',1,1,'0EAJ9EYb9ap2XwfrcXfdLQ',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('\r\n\r\n\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n\r\n\r\n
    \r\n\">^International(continue shopping button,Shop);
    \r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n
    (add $)
    Hide?
    \r\n\r\n\r\n\r\n
    \r\n','ThingyRecord/View',1,1,'TKmhv8boP3TD2xwSwUBq0g',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n

    \n
    \n\n\n
    \n\">^International(continue shopping button,Shop);
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    (add $)
    Hide?
    \n\n\n
    ',0,NULL,NULL),('\n
    \">\n
    \n\n
    \n
    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n
    \n\n \n

    \n
    \n \n \n \n \n \n \n
    *
    \n \n \n
    \n\n
    \n
    \n
    ','Account/Profile/Edit',1,1,'75CmQgpcCSkdsL-oawdn3Q',1253555614,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \">\n
    \n
    \n
    \n
    \n^International(member since,Account_Inbox); ^D(%z,);\n
    \n\n

    \n
    \n\n\n\n\n\n\n
    *
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('
    \n

    \n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n\n
    \n
    \n\n >\n >\n\n
    ','Survey/Take',1,1,'d8jMMMRddSQ7twP4l1ZSIw',1253555614,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    \n>\n>\n
    ',0,NULL,NULL),('\" id=\"id\">\n

    \n
    \n

    \n\n\n\n\n\">\n\n>\n\n

    \n


    \n\n

    \n

    \n

    ^International(last updated,Asset); ^International(ago,Asset_Story);

    \n

    ^International(by,Asset_Collaboration);

    \n


    \n\n \n \n \n
    \n \">\" alt=\"\" title=\"\" />

    \n ^International(Source,Asset_Story);: \n \n \n

      \n \n
    1. style=\"width:px;\">\n
      \n \">\" alt=\"\" title=\"\" />
      \n ^International(Source,Asset_Story);: \n
    2. \n
      \n
    \n \n \n \n\n

    \n

    ^International(keywords,Asset); \">

    \n
    ','Story',1,1,'3QpYtHrq_jmAk1FNutQM5A',1253636379,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n

    \n
    \n

    \n\n\n\n\n\">\n\n>\n\n

    \n


    \n\n

    \n

    \n

    ^International(last updated,Asset); ^International(ago,Asset_Story);

    \n

    ^International(by,Asset_Collaboration);

    \n


    \n\n\n\n\n
    \n\">\" alt=\"\" title=\"\" />

    \n^International(Source,Asset_Story);: \n\n\n

      \n\n
    1. style=\"width:px;\">\n
      \n\">\" alt=\"\" title=\"\" />
      \n^International(Source,Asset_Story);: \n
    2. \n
      \n
    \n\n\n\n\n

    \n

    ^International(keywords,Asset); \">

    \n
    ',0,NULL,NULL),('
    \" class=\"storyArchive\">\n\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n
    \n
    \n\n\n\n
      \n

      ^D(%c %D %y,);

      \n \n
    • \"> ^D(%Z,);
    • \n
      \n
    \n\n\n
      \n
    • \n\n class=\"active\">\n \">\n \n\n
    • \n
    \n
    \n\n\n
    ','StoryArchive',1,1,'yxD5ka7XHebPLD-LXBwJqw',1253635396,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"storyArchive\">\n\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n
    \n
    \n\n
      \n

      ^D(%c %D %y,);

      \n\n
    • \"> ^D(%Z,);
    • \n
      \n
    \n\n
      \n
    • \n\n class=\"active\">\n\">\n\n\n
    • \n
    \n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"viewStoryTopic\">\n\" id=\"id\">\n

    \n

    \n\n\n\n\n\">\n\n>\n\n

    \n

    \n

    \n

    ^International(last updated,Asset); ^International(ago,Asset_Story);

    \n
    \n
    \n\n \n \n \n
    \n \">\" alt=\"\" title=\"\" />

    \n ^International(Source,Asset_Story);: \n \n \n
      \n \n
    1. style=\"width:px;\">\n
      \n \">\" alt=\"\" title=\"\" />
      \n ^International(Source,Asset_Story);: \n
    2. \n
      \n
    \n \n
    \n \n\n
    \n

    ^International(by,Asset_Collaboration);

    \n \n \n
    \n

    ^International(keywords,Asset); \">

    \n
    \n','Story',1,1,'TbDcVLbbznPi0I0rxQf2CQ',1253636379,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"viewStoryTopic\">\n\" id=\"id\">\n

    \n

    \n\n\n\n\n\">\n\n>\n\n

    \n

    \n

    \n

    ^International(last updated,Asset); ^International(ago,Asset_Story);

    \n
    \n
    \n\n\n\n\n
    \n\">\" alt=\"\" title=\"\" />

    \n^International(Source,Asset_Story);: \n\n\n
      \n\n
    1. style=\"width:px;\">\n
      \n\">\" alt=\"\" title=\"\" />
      \n^International(Source,Asset_Story);: \n
    2. \n
      \n
    \n\n
    \n\n\n
    \n

    ^International(by,Asset_Collaboration);

    \n\n\n
    \n

    ^International(keywords,Asset); \">

    \n
    ',0,NULL,NULL),('\n\n\n
    \n\" class=\"WGprofile_displayView\">^International(\'back to profile label\',\'Account_Profile\');\n
    \n
    \n
    \n \n
    \n \n \n
    \n
    \n \n
    * -  ^International(\'required field\',Account_Profile);
    † - ^International(\'set by admin\',Account_Profile);
    \n
    \n
    \n
    \n
    \n
    \n','Account/Layout',1,1,'FJbUTvZ2nUTn65LpW6gjsA',1256092369,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n
    \n\" class=\"WGprofile_displayView\">^International(\'back to profile label\',\'Account_Profile\');\n
    \n
    \n
    \n\n
    \n\n\n
    \n
    \n\n
    * -  ^International(\'required field\',Account_Profile);
    † - ^International(\'set by admin\',Account_Profile);
    \n
    \n
    \n
    \n
    \n
    \n',0,NULL,NULL),('\n\n\n\n','EMS/LookupRegistrant',1,1,'OOyMH33plAy6oCj_QWrxtg',1257311886,'WebGUI::Asset::Template::HTMLTemplate',1,'\n',0,NULL,NULL),('\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n \r\n \r\n , \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n\r\n\r\n','EMS/PrintBadge',1,1,'PsFn7dJt4wMwBa8hiE3hOA',1257311886,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n
    \n
    \n\n
    \n
    \n\n\n, \n
    \n
    \n\n
    \n
    \n\n',0,NULL,NULL),('\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
    \r\n
    \r\n : \r\n
    \r\n
    \r\n \r\n / \r\n
    \r\n
    \r\n : \r\n
    \r\n
    \r\n\r\n\r\n','EMS/PrintTicket',1,1,'yBwydfooiLvhEFawJb0VTQ',1257311887,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n
    \n
    \n: \n
    \n
    \n\n / \n
    \n
    \n: \n
    \n
    \n\n',0,NULL,NULL),('\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n\n\n
    \n
    \n
    \n
    \n
    \n
    \n\n\">^International(schedule back link,Asset_EventManagementSystem);\n\n\n','EMS/Schedule',1,1,'S2_LsvVa95OSqc66ITAoig',1257311887,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\">^International(schedule back link,Asset_EventManagementSystem);\n',0,NULL,NULL),('\r\n\r\n\r\n \r\n\r\n\r\n\r\n
    \r\n\r\n
    \r\n
    \r\n : \r\n
    \r\n
    \r\n \r\n / \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n','EMS/PrintRemainingTickets',1,1,'hreA_bgxiTX-EzWCSZCZJw',1257311887,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n
    \n\n
    \n
    \n: \n
    \n
    \n\n / \n
    \n
    \n
    \n
    \n\n',0,NULL,NULL),('\" id=\"id\">\n\n

    \n
    \n\n\n

    \n
    \n\n\n
      \n\n
    • \n\n
    \n
    \n\n\n
    \n \n
    \n
    \n\n\n
    \n \">\n • \">\n \n • \">\n \n \n • \">\n • \">\n \n
    \n
    \n\n\n\n\n \n \n \n\n\n \n \n \n \n\n\n
    \n \n \n *\n \n \n \n \n \n \n
    \n
    ^International(template captcha label,Asset_DataForm);
    \n\n\n','DataForm',1,1,'PBtmpl0000000000000020',1257311887,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n
      \n\n
    • \n\n
    \n
    \n\n
    \n\n
    \n
    \n\n
    \n\">\n• \">\n\n• \">\n\n\n• \">\n• \">\n\n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n*\n\n\n\n\n\n\n
    \n
    ^International(template captcha label,Asset_DataForm);
    \n',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n
    \n \n
    \n\n\n\n\n \n \n\n\n
    \n

    \n\" class=\"backLabel\">\n\n\n','DataForm',1,1,'PBtmpl0000000000000104',1257311888,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n
    \n\n
    \n\n\n\n\n\n\n\n
    \n

    \n\" class=\"backLabel\">',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n
      \n \n
    • \n
      \n
    \n
    \n\n\n
    \n \n
    \n
    \n\n\n
    \n \">\n • \">\n \n • \">\n \n \n • \">\n • \">\n \n
    \n
    \n\n\n
    \n \n )\" id=\"tab\" class=\"tab\">\n \n \n \n \n \n \n \n
    \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n \n \n \n \n *\n \n \n \n \n \n \n \n
    \n \n
    \n
    \n \n
    \n
    \n \n
    \n^International(template captcha label,Asset_DataForm);
    \n\n\n\n','DataForm',1,1,'PBtmpl0000000000000116',1257311888,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n
      \n\n
    • \n
      \n
    \n
    \n\n
    \n\n
    \n
    \n\n
    \n\">\n• \">\n\n• \">\n\n\n• \">\n• \">\n\n
    \n
    \n\n
    \n\n)\" id=\"tab\" class=\"tab\">\n\n\n\n\n\n\n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n\n\n\n\n*\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n\n
    \n
    \n\n
    \n^International(template captcha label,Asset_DataForm);
    \n\n\n',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n
      \n \n
    • \n
      \n
    \n
    \n\n\n \n

    \n\n\n\n

    \n \">\n • \">\n \n • \" onclick=\"\">\n \n \n • \" onclick=\"\">\n \n \n • \">\n • \">\n \n
    \n
    \n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n \n \n \n \n *\n \n \n \n \n \n \n \n
    \n \n
    \n
    ^International(template captcha label,Asset_DataForm);
    \n
    \n\n\n\n','DataForm',1,1,'PBtmpl0000000000000141',1257311888,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n
      \n\n
    • \n
      \n
    \n
    \n\n\n

    \n\n\n

    \n\">\n• \">\n\n• \" onclick=\"\">\n\n\n• \" onclick=\"\">\n\n\n• \">\n• \">\n\n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n\n\n\n\n*\n\n\n\n\n\n\n\n
    \n\n
    \n
    ^International(template captcha label,Asset_DataForm);
    \n
    \n\n',0,NULL,NULL),('\r\n \">\r\n\r\n\">\r\n','Macro/PickLanguage',1,1,'_aE16Rr1-bXBf8SIaLZjCg',1257311888,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\">\n\n\">',0,NULL,NULL),('\r\n\r\n\r\n \r\n ^Page(\"title\"); - WebGUI\r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n ^AdminBar;\r\n
    \r\n\r\n ^AssetProxy(flexmenu);\r\n\r\n
    \r\n \r\n\r\n
      \r\n
    • ^H;
    • \r\n
    • ^a(^@;);
    • \r\n
    • ^LoginToggle;
    • \r\n ^GroupText(Turn Admin On,
    • ^AdminToggle;
    • );\r\n
    \r\n\r\n \r\n
    \r\n\r\n \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','style',0,1,'PBtmpl0000000000000060',1258524916,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n^Page(\"title\"); - WebGUI\n\n\n\n\n\n\n\n\n^AdminBar;\n
    \n^AssetProxy(flexmenu);\n
    \n\n
      \n
    • ^H;
    • \n
    • ^a(^@;);
    • \n
    • ^LoginToggle;
    • \n^GroupText(Turn Admin On,
    • ^AdminToggle;
    • );\n
    \n\n
    \n\n
    \n\n\n\n\n\n',0,NULL,NULL),('\r\n\r\n\r\n WebGUI <tmpl_var session.webgui.version>-<tmpl_var session.webgui.status> ^International(admin console,AdminConsole);\r\n \r\n \r\n \r\n\r\n\r\n \r\n\r\n','style',1,0,'PBtmpl0000000000000137',1258524916,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\nWebGUI <tmpl_var session.webgui.version>-<tmpl_var session.webgui.status> ^International(admin console,AdminConsole);\n\n\n\n\n\n\n\n',0,NULL,NULL),('','style',0,0,'PBtmpl0000000000000132',1258524916,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('\r\n\r\n\r\n \r\n ^Page(title); - ^c();\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n ^AdminBar();\r\n\r\n \r\n\r\n ^AdminToggle();\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','style',1,1,'PBtmplBlankStyle000001',1258524916,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n^Page(title); - ^c();\n\n\n\n\n\n\n\n\n\n^AdminBar();\n\n^AdminToggle();\n\n\n\n\n\n',0,NULL,NULL),('
    \" class=\"nav dropMenu\">\n\n\" id=\"id\">\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n
    \n\n

    \n\n

    \n
    \n\n\n\n\n
    \n','Navigation',1,1,'PBtmpl0000000000000117',1259133274,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav dropMenu\">\n\" id=\"id\">\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n
    \n\n

    \n\n

    \n
    \n\n\n
    ',0,NULL,NULL),('
    \" class=\"nav synopsisMenu\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n
    \n \n
    current\">\">
    \n
    \">
    \n
    \n
    \n
    \n\n\n
    \n','Navigation',1,1,'PBtmpl0000000000000136',1259133274,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav synopsisMenu\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
    \n\n
    current\">\">
    \n
    \">
    \n
    \n
    \n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"nav crumbTrail\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n \n \n \"> >\n \n \n\n\n\n
    \n','Navigation',1,1,'PBtmpl0000000000000093',1259133274,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav crumbTrail\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n\n\n\"> >\n\n\n\n\n
    ',0,NULL,NULL),('
    \" class=\"syndicated articles\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n

    \">

    \n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n \n\n\n\n
    \n','SyndicatedContent',1,1,'GNvjCFQWjY2AF2uf0aCM8Q',1259133274,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"syndicated articles\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n

    \">

    \n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n\n\n\n
    ',0,NULL,NULL),('
    \" class=\"layout oneovertwo\">\n \n \" id=\"id\">\n\n \n \n \n\n \n

    \n \n

    \n
    \n\n \n
    \n \n \n
    \n
    \n \n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n\n \n
    \n
    \n
    \n\n \n
    \n\n
    \n\n \n \n \n \n \n
    \n
     
    \n
    \n \n
    \n\n\n
    \n','Layout',1,1,'-PkdI8l1idu-8gDX3iOdcw',1259133274,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"layout oneovertwo\">\n\" id=\"id\">\n\n\n\n\n

    \n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n
    \n\n\n\n\n\n
    \n
     
    \n
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"article withImage\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n
    \n\n\n
    \n \" alt=\"\" />\n \n
    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n \n
    \n

    \">

    \n \n
    \n
    \n
    \n\n\n
    \n\n
    \n\n\n
    \n','Article',1,1,'PBtmpl0000000000000103',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"article withImage\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n
    \n\n
    \n\" alt=\"\" />\n\n
    \n
    \n\n
    \n\n\n
    \n
    \n\n\n
    \n

    \">

    \n\n
    \n
    \n
    \n\n
    \n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"file\">\n\" id=\"id\">\n\n\n \n\n\n\" alt=\"\" class=\"wg-icon\" />\n\">\n\n\n
    \n','FileAsset',1,1,'PBtmpl0000000000000024',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"file\">\n\" id=\"id\">\n\n\n\n\" alt=\"\" class=\"wg-icon\" />\n\">\n\n
    ',0,NULL,NULL),('
    \" class=\"article withPagination\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n
    \n\n\n
    \n \n \n
    \n
    \n\n\n \n \n
    \n

    \">

    \n \n
    \n
    \n
    \n
    \n\n\n
    \n\n\n \n
    \n
      \n \n
    • \n \" alt=\"\" class=\"wg-icon\" />\n \">\n
    • \n
      \n
    \n \n
    \n
    \n
    \n\n
    \n\n\n
      \n
    • \n \n class=\"active\">\n \">\n \n \n
    • \n
    \n
    \n\n\n
    \n','Article',1,1,'XdlKhCDvArs40uqBhvzR3w',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"article withPagination\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n
    \n\n
    \n\n\n
    \n
    \n\n\n\n
    \n

    \">

    \n\n
    \n
    \n
    \n
    \n\n
    \n\n\n
    \n
      \n\n
    • \n\" alt=\"\" class=\"wg-icon\" />\n\">\n
    • \n
      \n
    \n\n
    \n
    \n
    \n
    \n\n
      \n
    • \n\n class=\"active\">\n\">\n\n\n
    • \n
    \n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"navigation indentMenu\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n \n\n \n \"\n class=\"level current ancestor\"\n onclick=\"window.open(this.href);return false;\">\n \n\n\n\n
    \n','Navigation',1,1,'PBnav00000000indentnav',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"navigation indentMenu\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n\n\"\nclass=\"level current ancestor\"\nonclick=\"window.open(this.href);return false;\">\n\n\n\n
    ',0,NULL,NULL),('
    \" class=\"nav tabsMenu\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n
      \n \n class=\"current\" class=\"ancestor\">\n \">\n \n \n
    \n
    \n\n\n
    \n','Navigation',1,1,'PBtmpl0000000000000124',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav tabsMenu\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
      \n\n class=\"current\" class=\"ancestor\">\n\">\n\n\n
    \n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"layout rightcolumn\">\n\n \" id=\"id\">\n\n \n \n \n\n \n

    \n \n

    \n
    \n\n \n
    \n \n \n
    \n
    \n \n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n\n \n
    \n
    \n
    \n\n \n
    \n\n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n\n \n
    \n
    \n
    \n\n \n
    \n\n
    \n \n \n \n \n \n \n
    \n
     
    \n
    \n \n
    \n\n\n
    \n','Layout',1,1,'PBtmpl0000000000000131',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"layout rightcolumn\">\n\" id=\"id\">\n\n\n\n\n

    \n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n
    \n\n\n\n\n\n
    \n
     
    \n
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"nav topNav\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n
    \n\n \n
    \n
    \n
      \n \n \n
    \n
    \n
    \n \n
    \n
  • onclick=\"window.open(this.href); return false;\" href=\"\">\n \n
    \n
    \n
      \n \n \n \n \n \n \n
    \n \n
  • \n
    \n\n\n\n\n\n','Navigation',1,1,'PBtmpl0000000000000134',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav topNav\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n
    \n\n\n
    \n
    \n
      \n\n\n
    \n
    \n
    \n\n
    \n
  • onclick=\"window.open(this.href); return false;\" href=\"\">\n\n
    \n
    \n
      \n\n\n\n\n\n\n
    \n\n
  • \n
    \n\n\n\n',0,NULL,NULL),('
    \" class=\"folder\">\n\n\" id=\"id\">\n\n\n \n\n \n\n

    \n
    \n \n\n
    \n \n\n
    \n
    \n \n\n

    \">

    \n
    \n\n \n\n \n\n \n \n\n\n\n\n \n\n\n \n \n \n \n\n\n\n
    \n \n \" class=\"wg-icon\" alt=\"\" />\n \">\n \n \" class=\"wg-icon\" alt=\"\" />\n \n \n \n \n
    \n \n \n \n \n \n \n \" class=\"wg-icon\" alt=\"\" />\n \">\n \n \" class=\"wg-icon\" alt=\"\" />\n \n \n \n \n \n ^D(\"%z %Z\",);\n \n \n
    \n\n\n
    \n','Folder',1,1,'PBtmpl0000000000000078',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"folder\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n

    \">

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\" class=\"wg-icon\" alt=\"\" />\n\">\n\n\" class=\"wg-icon\" alt=\"\" />\n\n\n\n\n
    \n\n\n\n\n\n\n\" class=\"wg-icon\" alt=\"\" />\n\">\n\n\" class=\"wg-icon\" alt=\"\" />\n\n\n\n\n\n^D(\"%z %Z\",);\n\n\n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"poll\">\n\n\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n
    \n

    \n\n\n \n
    \n \n
    \n
    \n
    \n
    \n \n
    \n \n\n \n \" alt=\"graph\" />\n \n \n
    \n \n \n \n \n \n
    \" class=\"pollColor\">^Spacer(1,1); % ()
    \n
    \n

    :

    \n
    \n
    \n
    \n\n\n
    \n','Poll',1,1,'PBtmpl0000000000000055',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"poll\">\n\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n
    \n\n\n
    \n
    \n
    \n

    \n\n\n
    \n\n
    \n
    \n
    \n
    \n\n
    \n\n\n\n\" alt=\"graph\" />\n\n\n
    \n\n\n\n\n\n
    \" class=\"pollColor\">^Spacer(1,1); % ()
    \n
    \n

    :

    \n
    \n
    \n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"syndicated default\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n

    \">

    \n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n
      \n \n
    • \n \">\n - \n
    • \n
      \n
    \n
    \n\n\n
    \n','SyndicatedContent',1,1,'PBtmpl0000000000000065',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"syndicated default\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n

    \">

    \n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
      \n\n
    • \n\">\n- \n
    • \n
      \n
    \n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"layout default\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n
    \n\n \n \n \n \n \n \n \n \">\n \n \n \n \n \n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n \n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n
    \n\n\n \n \n \n \n
    \n
     
    \n
    \n\n
    \n\n\n
    \n','Layout',1,1,'PBtmpl0000000000000054',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"layout default\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n
    \n\n\n\n\n\n
    \n
     
    \n
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"nav horizontalMenu\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n \n\n\n\n
    \n','Navigation',1,1,'PBtmpl0000000000000108',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav horizontalMenu\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n\n\n\n
    ',0,NULL,NULL),('
    \" class=\"article linkedImage\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n
    \n\n\n
    \n \n \">\" alt=\"\" />\n \n \" class=\"caption\">\n \n \n \" alt=\"\" />\n \n
    \n \n
    \n\n\n
    \n \n
    \n \n
    \n\n
    \n\n\n
    \n\n\n
    \n','Article',1,1,'PBtmpl0000000000000115',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"article linkedImage\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n
    \n\n
    \n\n\">\" alt=\"\" />\n\n\" class=\"caption\">\n\n\n\" alt=\"\" />\n\n
    \n\n
    \n\n
    \n\n
    \n\n
    \n
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"layout oneoverthree\">\n \n \" id=\"id\">\n\n \n \n \n\n \n

    \n \n

    \n
    \n\n \n
    \n \n \n
    \n
    \n \n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n
    \n\n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n\n \n
    \n
    \n
    \n\n \n
    \n\n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n
    \n\n \n \n \n \n \n
    \n
     
    \n
    \n \n
    \n\n\n
    \n','Layout',1,1,'PBtmpl0000000000000109',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"layout oneoverthree\">\n\" id=\"id\">\n\n\n\n\n

    \n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n
    \n\n\n\n\n\n
    \n
     
    \n
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"layout threeColumns\">\n\n \" id=\"id\">\n\n \n \n \n\n \n

    \n
    \n\n \n
    \n \n \n
    \n
    \n\n \n
    \n\n \n \n \n \n\n \n \n \">\n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n\n \n
    \n
    \n
    \n\n \n
    \n\n \n
    \n\n \n \n \n \n\n \n \n \">\n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n\n \n
    \n
    \n
    \n\n \n
    \n\n \n
    \n\n \n \n \n \n\n \n \n \">\n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n\n \n
    \n
    \n
    \n\n \n
    \n\n
    \n\n \n \n \n \n \n
     
    \n \n
    \n\n\n
    \n\n','Layout',1,1,'VCFhB9WOsDsH2Apj3c6DpQ',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"layout threeColumns\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n
    \n\n\n\n\n\n
     
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"article default\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n
    \n\n\n
    \n \n \n
    \n
    \n\n\n \n
    \n

    \">

    \n \n
    \n
    \n
    \n\n\n
    \n\n\n
    \n
      \n \n
    • \n \" alt=\"\" class=\"wg-icon\" />\n \">\n
    • \n
      \n
    \n \n
    \n
    \n\n
    \n\n\n
    \n','Article',1,1,'PBtmpl0000000000000002',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"article default\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n
    \n\n
    \n\n\n
    \n
    \n\n\n
    \n

    \">

    \n\n
    \n
    \n
    \n\n
    \n\n
    \n
      \n\n
    • \n\" alt=\"\" class=\"wg-icon\" />\n\">\n
    • \n
      \n
    \n\n
    \n
    \n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"article item\">\n\n \" id=\"id\">\n\n \n \n \n \n

    \n \n \n \">\n \n \n \n \n \n \n

    \n \n \n
    \n \n
    \n \n
    \n \n \n
    \n
      \n \n
    • \n \" alt=\"\" class=\"wg-icon\" />\n \">\n
    • \n
      \n
    \n \n
    \n
    \n\n
    \n\n\n
    \n','Article',1,1,'PBtmpl0000000000000123',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"article item\">\n\" id=\"id\">\n\n\n\n

    \n\n\n\">\n\n\n\n\n\n\n

    \n\n
    \n\n
    \n\n
    \n\n
    \n
      \n\n
    • \n\" alt=\"\" class=\"wg-icon\" />\n\">\n
    • \n
      \n
    \n\n
    \n
    \n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"layout sidebyside\">\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n
    \n\n \n \n \n \n \n \n \n \">\n \n \n \n \n \n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n \n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n\n
    \n\n \n \n \n \n \n \n \n \">\n \n \n \n \n \n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n \n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n
    \n\n\n \n \n \n \n
    \n
     
    \n
    \n\n
    \n\n\n
    \n','Layout',1,1,'PBtmpl0000000000000135',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"layout sidebyside\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n
    \n\n\n\n\n\n
    \n
     
    \n
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"nav bulletedList\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n
      \n\n\n\n
    \n \n\n\n class=\"current\" class=\"ancestor\"
    >\n onclick=\"window.open(this.href);return false;\" href=\"\">\n\n\n
      \">\n\n \n\n\n\n \n
    \n \n \n
    \n\n\n\n\n\n\n
    \n','Navigation',1,1,'PBnav00000000000bullet',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav bulletedList\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
      \n\n\n
    \n\n\n class=\"current\" class=\"ancestor\"
    >\nonclick=\"window.open(this.href);return false;\" href=\"\">\n\n
      \">\n\n\n\n\n\n
    \n\n\n
    \n\n\n\n\n
    ',0,NULL,NULL),('
    \" class=\"file swfobject\">\n\" id=\"id\">\n\n\n \n\n\n
    \n\n \" />\n \n \" width=\"400\" height=\"300\">\n \n \n \"Get\n \n \n \n \n\n
    \n\n\n
    \n','FileAsset',1,1,'MK4fCNoyrx5SE8eyDfOpxg',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"file swfobject\">\n\" id=\"id\">\n\n\n\n
    \n\n\" />\n\n\" width=\"400\" height=\"300\">\n\n\n\"Get\n\n\n\n\n\n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"nav treeNav\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n
    \">\n
      \n\n\n \n
    \n \n \n\n class=\"expanded\" class=\"expanded\">\n \">\n\n \n
      \">\n \n \n \n\n \n \n
    \n \n \n
    \n\n\n\n
    \n\n\n\n
    \n\n\n
    \n\n','Navigation',1,1,'PBtmpl0000000000000130',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav treeNav\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
    \">\n
      \n\n\n
    \n\n\n class=\"expanded\" class=\"expanded\">\n\">\n\n
      \">\n\n\n\n\n\n
    \n\n\n
    \n\n\n
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n\r\n\r\n\r\n \r\n\r\n \r\n
    \r\n\r\n

    \r\n \">^International(add a ticket,Asset_EventManagementSystem);\r\n •\r\n \">^International(meta fields,Asset_EventManagementSystem);\r\n •\r\n \">^International(import,Asset_EventManagementSystem);\r\n •\r\n \">^International(export,Asset_EventManagementSystem);\r\n •\r\n \">^International(print remaining tickets,Asset_EventManagementSystem);\r\n

    \r\n
    \r\n


    \r\n

    \r\n

    \r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\r\n\r\n \r\n\r\n \r\n
    \r\n\r\n

    \">^International(add a ribbon,Asset_EventManagementSystem);

    \r\n
    \r\n

    \r\n
    \r\n\r\n\r\n\r\n
    \r\n \r\n\r\n\r\n\r\n\r\n \r\n \r\n
    \r\n\r\n

    \">^International(add a token,Asset_EventManagementSystem);

    \r\n
    \r\n

    \r\n
    \r\n\r\n\r\n\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n^ViewCart;\r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n\r\n \r\n\r\n\r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n','EMS/BadgeBuilder',1,1,'BMybD3cEnmXVk2wQ_qEsRQ',1263962529,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n
    \n
    \n\n
    \n\n
    \n\n

    \n\">^International(add a ticket,Asset_EventManagementSystem);\n•\n\">^International(meta fields,Asset_EventManagementSystem);\n•\n\">^International(import,Asset_EventManagementSystem);\n•\n\">^International(export,Asset_EventManagementSystem);\n•\n\">^International(print remaining tickets,Asset_EventManagementSystem);\n

    \n
    \n


    \n

    \n

    \n
    \n\n
    \n\n
    \n\n

    \">^International(add a ribbon,Asset_EventManagementSystem);

    \n
    \n

    \n
    \n\n
    \n\n
    \n\n

    \">^International(add a token,Asset_EventManagementSystem);

    \n
    \n

    \n
    \n\n
    \n
    \n
    \n
    \n
    \n\n\n^ViewCart;\n
    \n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n\n\n\n
    \n
    \n
    \n',0,NULL,NULL),('

    \" />','ImageAsset',1,1,'mRtqRuVikSe82BQsYBlD0A',1263962529,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \" />',0,NULL,NULL),('\n\n
    \n','Account/Layout',1,1,'aUDsJ-vB9RgP-AYvPOy8FQ',1263962529,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n
    \n',0,NULL,NULL),('
    \r\n\r\n\r\n\r\n

    ^International(errors,Asset_Event);

    \r\n
      \r\n\r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n\r\n\r\n \r\n\r\n
    \r\n ^International(tab event,Asset_Event);\r\n ^International(recurrence,Asset_Event);\r\n \r\n \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(event title,Asset_Event);
    ^International(short title,Asset_Event);
    ^International(location,Asset_Event);
    ^International(description,Asset_Event);
    ^International(start date,Asset_Event);
    ^International(end date,Asset_Event);
    ^International(time,Asset_Event);
     
    ^International(related material,Asset_Event);\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \'>\r\n \r\n \r\n \r\n \r\n \r\n\r\n
    \r\n\r\n
    \' type=\'button\' name=\'\' value=\'DEL\' onClick=\"return delete_link(\'\',\'\');\">\r\n \' value=\'\'>\r\n \' value=\"\">\r\n
    \'>\r\n\' name=\'\' value=\'\'>\r\n\' name=\'rel_delconfirm_\' value=\'0\'>\r\n
    \r\n
    \r\n
    ^International(group to view,Asset_Event);
    ^International(attachments for event,Asset_Event);
    \r\n
    \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n
    ^International(recurrence pattern,Asset_Event);
    ^International(recurrence range,Asset_Event);\r\n

    ^International(start,Asset_Event);:

    \r\n

    \r\n

    ^International(end,Asset_Event);:

    \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n','Calendar/EventEdit',1,1,'CalendarEventEdit00001',1269401468,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n\n

    ^International(errors,Asset_Event);

    \n
      \n\n
    • \n
      \n
    \n
    \n\n\n\n\n
    \n^International(tab event,Asset_Event);\n^International(recurrence,Asset_Event);\n\n\n
    \n\n\n\n\n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(event title,Asset_Event);
    ^International(short title,Asset_Event);
    ^International(location,Asset_Event);
    ^International(description,Asset_Event);
    ^International(start date,Asset_Event);
    ^International(end date,Asset_Event);
    ^International(time,Asset_Event);
     
    ^International(related material,Asset_Event);\n\n\n\n\n\n\n\n\n\n\'>\n\n\n\n\n\n\n
    \n\n
    \' type=\'button\' name=\'\' value=\'DEL\' onClick=\"return delete_link(\'\',\'\');\">\n\' value=\'\'>\n\' value=\"\">\n
    \'>\n\' name=\'\' value=\'\'>\n\' name=\'rel_delconfirm_\' value=\'0\'>\n
    \n
    \n
    ^International(group to view,Asset_Event);
    ^International(attachments for event,Asset_Event);
    \n
    \n\n\n\n\n\n\n\n\n\n\n
    ^International(recurrence pattern,Asset_Event);
    ^International(recurrence range,Asset_Event);\n

    ^International(start,Asset_Event);:

    \n

    \n

    ^International(end,Asset_Event);:

    \n
    \n
    \n
    \n\n',0,NULL,NULL),('\n \n WebGUI ^International(assetName,Asset_Survey);\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\n\n
    \n
    \n
    \n
    \n ^International(Loading...,WebGUI);\n
    \n
    \n
    \n\n\n \" id=\"id\">\n \n \n \n
    \n

    ^International(warnings,Asset_Survey);

    \n
    \n
    \n \n
    \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n','Survey/Edit',1,1,'GRUNFctldUgop-qRLuo_DA',1269401469,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\nWebGUI ^International(assetName,Asset_Survey);\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    \n
    \n
    \n^International(Loading...,WebGUI);\n
    \n
    \n
    \n\" id=\"id\">\n\n
    \n

    ^International(warnings,Asset_Survey);

    \n
    \n
    \n
    \n
    \n
    \n\n\n\n
    \n
    \n
    \n
    \n',0,NULL,NULL),('\n\n\n\n \n ^Page(title); - ^c;\n \n\n\n\n ^AdminBar;\n
    \n
     
    \n
    \n
    ^H(^c(););
    \n
    \n ^AssetProxy(crystalx/site-search);\n
    \n
    \n\n
    \n ^AssetProxy(crystalx/crystalx_navigation);\n
    \n\n
    \n
    \n
    \n
    You are here: ^AssetProxy(crystalx/crystalx_navigationtrail);
    \n
    ^D(\"%W, %D/%C/%y\");
    \n
    \n
    \n
    \n
    \n\n
    \n
    \n
    \n ^LoginToggle;  \n ^GroupText(\"Registered Users\",^a(^@;););  \n ^AdminToggle;\n
    \n
    \n\n
    \n

    © 2009 ^c; | Empowered by WebGUI

    \n

    Created by Nuvio | Webdesign

    \n

    \n
    \n
    \n\n\n\n','style',1,1,'OiJNwP1gAlcva8_yOtL4gA',1273032718,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n^Page(title); - ^c;\n\n\n\n^AdminBar;\n
    \n
     
    \n
    \n
    ^H(^c(););
    \n
    \n^AssetProxy(crystalx/site-search);\n
    \n
    \n
    \n^AssetProxy(crystalx/crystalx_navigation);\n
    \n
    \n
    \n
    \n
    You are here: ^AssetProxy(crystalx/crystalx_navigationtrail);
    \n
    ^D(\"%W, %D/%C/%y\");
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n^LoginToggle;  \n^GroupText(\"Registered Users\",^a(^@;););  \n^AdminToggle;\n
    \n
    \n
    \n

    © 2009 ^c; | Empowered by WebGUI

    \n

    Created by Nuvio | Webdesign

    \n

    \n
    \n
    \n\n',0,'pl9xiFGzrqfAgRzqwJ8xPg',NULL),('\n
    \n
    \n\n

    \n
    \n\n

    \n
    \n
    \n \n\n \n \n
    \" class=\"yuimenubar\">\n
    \n
      \n \n\n \n
    \n
    \n
    \n \n
    \n\n \n \n \n \n
  • \n onclick=\"window.open(this.href); return false;\"href=\"\">\n \n \n
  • \n onclick=\"window.open(this.href); return false;\"href=\"\">\n \n
  • \n onclick=\"window.open(this.href); return false;\" href=\"\">\n \n \n \n \n \n \n \n
  • \n \n
  • \n \n onclick=\"window.open(this.href); return false;\"href=\"\">\n \n \n
  • \n \n
  • \n \n onclick=\"window.open(this.href); return false;\" href=\"\">\n \n \n\n \n
    \n
    \n
      \n \n \n \n\n \n \n \n \n \n \n \n \n
    \n
    \n
    \n
  • \n \n \n
    \n \n
    \n\n \n\n\n\n','Navigation',1,1,'gaIOm5cr2TkT9Fk6QmZWug',1273032718,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n
    \n\n

    \n
    \n\n

    \n
    \n\n\n
    \n\n\n',0,NULL,NULL),('\r\n \r\n\r\n\r\n\r\n id=\"currentpage\"\r\n \r\n\r\n onclick=\"window.open(\'\')\" href=\"#\" \r\n href=\"\"\r\n \r\n >\r\n \r\n \r\n\r\n > \r\n\r\n\r\n','Navigation',1,1,'hpCk0B3vQzgc-QJhSol41w',1273032718,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\nid=\"currentpage\"\n\nonclick=\"window.open(\'\')\" href=\"#\"\nhref=\"\"\n>\n\n\n > \n',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n
    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n
    Go back to ^H(Home);
    \r\n\r\n \r\n
    \r\n \r\n
    id=\"odd\" >\r\n
    );\">
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n
    \r\n
    \r\n\r\n \r\n
    \r\n · · \r\n
    \r\n
    \r\n\r\n
    \r\n\r\n','Search',1,0,'OfKbvK7CrfMnfc8WDoF4Rg',1273032718,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n
    \n
    \n\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n
    Go back to ^H(Home);
    \n\n
    \n\n
    id=\"odd\">\n
    );\">
    \n
    \n
    \n
    \n
    \n\n
    \n\n
    \n
    \n\n
    \n · · \n
    \n
    \n
    ',0,NULL,'[]'),('\r\n\r\n\r\n\r\n \r\n ^c; - ^Page(title);\r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n^AdminBar();\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n
    \r\n
    \r\n
    ^H(^c;);
    \r\n
    ^c;
    \r\n
    \r\n
    \r\n

    ^Page(title);

    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n \"plain\"webgui\"
    \r\n
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n ^AssetProxy(flexmenu);\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n ^L(\"\",\"\",\"PBtmpl0000000000000044\");\r\n ^AdminToggle;\r\n
    \r\n
    \r\n © ^D(%y); ^c;\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','style',1,1,'stevestyle000000000002',1273032718,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n^c; - ^Page(title);\n\n\n\n\n\n\n\n\n\n\n^AdminBar();\n\n\n\n\n\n\n\n\n
    \n
    \n
    ^H(^c;);
    \n
    ^c;
    \n
    \n
    \n

    ^Page(title);

    \n
    \n
    \n
    \n\n
    \n
    \n
    \n
    \n\"plain\"webgui\"
    \n
    \n
    \n
    \n\n\n\n\n\n
    \n
    \n^AssetProxy(flexmenu);\n
    \n\n\n\n\n\n
    \n
    \n^L(\"\",\"\",\"PBtmpl0000000000000044\");\n^AdminToggle;\n
    \n
    \n© ^D(%y); ^c;\n
    \n\n\n\n\n\n',0,'ahKL5Wl1XmeUUCB32OzSbA',NULL),('

    \n\n
      \n
    • \n \n \"> - on by \n \n - on by \n \n ( \"> )\n \n \n
    • \n
    \n\n
    \"> | \"> | \">
    \n\n\n','WikiMaster_recentChanges',1,1,'WikiRCTmpl000000000001',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n
      \n
    • \n\n\"> - on by \n\n - on by \n\n( \"> )\n\n\n
    • \n
    \n
    \"> | \"> | \">
    ',0,NULL,NULL),('

    \n\n

    \n\n\n

    \n\n
    \n\n

    ^International(categories label,Asset_Matrix);

    \n\n
    \n

    \n\n\n\"> ()
    \n
    \n
    \n

    \n
    \n
    \n\n

    Featured Article: \">

    \n\n
    \n\n
    \n

    \">

    \n
      \n
    • \n \n \">\n \n ()\n \n
    • \n
    \n
    \n
    \n

    \">

    \n
      \n
    1. \">
    2. \n
    \n\n
    \n
    \n\n
    \n\n\n','WikiMaster_front',1,1,'WikiFrontTmpl000000001',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n

    \n\n

    \n\n
    \n\n

    ^International(categories label,Asset_Matrix);

    \n\n
    \n

    \n\n\n\"> ()
    \n
    \n
    \n

    \n
    \n
    \n\n

    Featured Article: \">

    \n\n
    \n
    \n

    \">

    \n
      \n
    • \n\n\">\n\n ()\n\n
    • \n
    \n
    \n
    \n

    \">

    \n
      \n
    1. \">
    2. \n
    \n
    \n
    \n
    ',0,NULL,NULL),('\n

    \n\n\n\n\n

    \n \n \n \n
    \n · · \n
    \n
    \n

    \n

    \">

    \n \n

    \n

    \">

    \n
    \n
    \n
    \"> | \"> | \">
    \n','WikiMaster_search',1,1,'WikiSearchTmpl00000001',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n\n

    \n\n\n\n
    \n · · \n
    \n
    \n

    \n

    \">

    \n\n

    \n

    \">

    \n
    \n
    \n
    \"> | \"> | \">
    ',0,NULL,NULL),('\n
      \n\n
    • at () by
    • \n
      \n
    \n','WikiPage_pageHistory',1,1,'WikiPHTmpl000000000001',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'
      \n\n
    • at () by
    • \n
      \n
    ',0,NULL,NULL),('

    \n

    \n\n
    \n
      \n
    • \n
    • \n
    \n
    \n
    \n
    ^International(locked,Asset_WikiPage);
    \n
    \n

    ^International(keywords,Asset);: \">

    \n
    \n
    \n
    \n
    \n
    \n\n\n\n
    \"> | \"> | \"> | \">
    ','WikiPage',1,1,'WikiPageTmpl0000000001',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n

    \n
    \n
      \n
    • \n
    • \n
    \n
    \n
    \n
    ^International(locked,Asset_WikiPage);
    \n
    \n

    ^International(keywords,Asset);: \">

    \n
    \n
    \n
    \n
    \n
    \n\n\n\n
    \"> | \"> | \"> | \">
    ',0,NULL,NULL),('\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
    \r\n\r\n\r\n\r\n\r\n \r\n\r\n','WikiPage_edit',1,1,'WikiPageEditTmpl000001',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n\n\n',0,NULL,NULL),('

    \n\n
      \n
    1. \">
    2. \n
    \n\n
    \"> | \"> | \">
    \n\n','WikiMaster_mostPopular',1,1,'WikiMPTmpl000000000001',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n
      \n
    1. \">
    2. \n
    \n
    \"> | \"> | \">
    ',0,NULL,NULL),('\r\n\r\n\r\n \r\n ^c; - ^Page(title);\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n^AdminBar();\r\n\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n ^L(\"\",\"\",\"PBtmpl0000000000000092\"); · ^AdminToggle;\r\n
    \r\n
    \r\n

    ^H(^c;);

    \r\n

    ^Page(title);

    \r\n
    \r\n \"webgui\"
    \r\n
    \r\n
    \r\n
    \r\n ^AssetProxy(style3_coolmenu);\r\n \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n
    \r\n © ^D(%y); ^c;\r\n
    \r\n \"plain
    \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','style',1,1,'stevestyle000000000003',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n^c; - ^Page(title);\n\n\n\n\n\n\n\n\n\n\n\n^AdminBar();\n
    \n
    \n
    \n
    \n
    \n^L(\"\",\"\",\"PBtmpl0000000000000092\"); · ^AdminToggle;\n
    \n
    \n

    ^H(^c;);

    \n

    ^Page(title);

    \n
    \n\"webgui\"
    \n
    \n
    \n
    \n^AssetProxy(style3_coolmenu);\n
    \n
    \n\n
    \n
    \n
    \n
    \n
    \n© ^D(%y); ^c;\n
    \n\"plain
    \n
    \n
    \n
    \n\n\n\n\n\n',0,'Xr1JhO16oSMIEvCjcZILZQ',NULL),('\r\n\r\n\r\n \r\n ^Page(title);\r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n ^AdminBar();\r\n
    \r\n
    \r\n
    \r\n ^H(^c(););\r\n
    \r\n \r\n
    \r\n © ^D(%y); ^c;\r\n
    \r\n
    \r\n\r\n
    \r\n
    \r\n ^AssetProxy(roottab_level0);\r\n
    \r\n
    \r\n
    \r\n ^AssetProxy(roottab_level1);\r\n
    \r\n
    \r\n ^AssetProxy(crumbtrail); \r\n
    \r\n
     
    \r\n
    \r\n \r\n
    \r\n
     
    \r\n
    \r\n \r\n
    \r\n ^L(\"\",\"\",\"PBtmpl0000000000000044\");\r\n
    ^AdminToggle;
    \r\n ^AssetProxy(style1/gui_bottom.jpg);
    \r\n \"WebGUI\r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n \r\n','style',1,1,'stevestyle000000000001',1273032722,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n^Page(title);\n\n\n\n\n\n\n\n\n\n\n^AdminBar();\n
    \n
    \n
    \n^H(^c(););\n
    \n
    \n© ^D(%y); ^c;\n
    \n
    \n
    \n
    \n^AssetProxy(roottab_level0);\n
    \n
    \n
    \n^AssetProxy(roottab_level1);\n
    \n
    \n^AssetProxy(crumbtrail);\n
    \n
     
    \n
    \n\n
    \n
     
    \n
    \n
    \n^L(\"\",\"\",\"PBtmpl0000000000000044\");\n
    ^AdminToggle;
    \n^AssetProxy(style1/gui_bottom.jpg);
    \n\"WebGUI\n
    \n
    \n\n\n\n\n\n',0,'RE3ugPDieP57zCI6J_uJqw',NULL),('\n
    \n\n
    \n

    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n

    \n \n

    \n location.href=\'\'alert(\'^International(no friends hover,Account_Inbox);\');\" />\n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n WGoddThreadWGevenThread\">\n \n \n \n \n \n \n \n \n
     \">^International(from label,Account_Inbox);\">^International(subject label,Account_Inbox);\">^International(date label,Account_Inbox);\">^International(status label,Account_Inbox);
    old.pngnew.png);\" />\" class=\"inbox_from\">\">^D(,);
    \n \n

    \n location.href=\'\'alert(\'^International(no friends hover,Account_Inbox);\');\" />\n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n

    \n\n

    \n ^International(message count,\'Account_Inbox\');\n

    \n \n
    \n\n
    \n','Account/Inbox/View',1,1,'c8xrwVuu5QE0XtF9DiVzLw',1273032723,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n
    \n

    \n
    \n^International(member since,Account_Inbox); ^D(%z,);\n

    \n

    \n location.href=\'\'alert(\'^International(no friends hover,Account_Inbox);\');\" />\n\n\n\" class=\"prevNext\">\"Previous\" \n\"> \n \" class=\"prevNext\">\"Next\"\n\n\n \n

    \n\n\n\n\n\n\n\n\n\n\nWGoddThreadWGevenThread\">\n\n\n\n\n\n\n\n\n
     \">^International(from label,Account_Inbox);\">^International(subject label,Account_Inbox);\">^International(date label,Account_Inbox);\">^International(status label,Account_Inbox);
    old.pngnew.png);\" />\" class=\"inbox_from\">\">^D(,);
    \n

    \n location.href=\'\'alert(\'^International(no friends hover,Account_Inbox);\');\" />\n\n\n\" class=\"prevNext\">\"Previous\" \n\"> \n \" class=\"prevNext\">\"Next\"\n\n\n \n

    \n

    \n ^International(message count,\'Account_Inbox\');\n

    \n
    \n
    \n',0,NULL,NULL),('\n

    \n\n\n\n
    ^International(Sub-keywords,Asset_WikiMaster);
    \n\n
    \n\n\n

    ^International(categories label,Asset_Matrix);

    \n

    \n\n\n\"> ()
    \n
    \n
    \n

    \n
    \n\n\n

    ^International(Related Pages,Asset_WikiMaster);

    \n\n
    \n\n\n
    \n · · \n
    \n
    \n\n\n\n','WikiMaster_byKeyword',1,1,'WikiKeyword00000000001',1274238756,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n\n
    ^International(Sub-keywords,Asset_WikiMaster);
    \n\n
    \n\n

    ^International(categories label,Asset_Matrix);

    \n

    \n\n\n\"> ()
    \n
    \n
    \n

    \n
    \n\n

    ^International(Related Pages,Asset_WikiMaster);

    \n\n
    \n\n
    \n · · \n
    \n
    \n',0,NULL,NULL),('
    \n \n

    \n
    \n\n \n

    \n
    \n\n \n
    \n
    \n \n\n \n \n \n \n \n\n

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n
    \n \n \n \n \n \n \n \n \n \n
    \">
    \n \n
    \n\n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n wgRowOnewgRowTwo\">\n \n \n \n \n \n
    \">\n

    Search Results

    \n
    \n \">\n
    \n \n \n \n \n \">\n \n \n \n
    \n
    \n
    \n \n \n
    \n · · \n
    \n
    \n
    \n','Thingy/SearchThing',1,1,'ThingyTmpl000000000004',1277868920,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n

    \n
    \n\n

    \n
    \n\n
    \n
    \n\n\n\n\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n\n\n\n\n\n\n\n\n\n
    \">
    \n\n
    \n\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nwgRowOnewgRowTwo\">\n\n\n\n\n\n
    \">\n

    Search Results

    \n
    \n\">\n
    \n\n\n\n\n\">\n\n\n\n
    \n
    \n
    \n\n
    \n · · \n
    \n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n\n \n \n \n \n \n \n\n\n\n \n \n \n \n \n \n \n \n \n \n\n\n
    \">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">\">
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000066',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n\n\n\n

    \n
    \n\n\n\n

    \n\n\">\n•\n\n\n\n\">\n\n\">\n\n•\n\n\">\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">\">
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

    \n\n\n\n\n \n \n
    [\">]
    \n
    \n
    \n \n
    \n \n \n \n \n \n [\">]\n \n \n \n (\">)\n
    \n
    \n \" id=\"id\">
    \n \n

    \">[top]

    \n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000080',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n\n\n\n

    \n
    \n\n\n\n

    \n\n\"> •\n\n\n\n\">\n\n\">\n\n\n•\n\n\n\n\">\n\n

    \n\n\n\n\n
    [\">]
    \n
    \n
    \n\n
    \n\n\n\n\n\n[\">]\n\n\n\n(\">)\n
    \n
    \n\" id=\"id\">
    \n\n

    \">[top]

    \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n\n \n \n \n \n \n \n \n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
    \">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\" style=\"text-align: center;\">\n \n \">\" border=\"0\" alt=\"\" />\n \n  \n \n oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">\">
    \n\n\n
    \n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000097',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n\n\n\n

    \n
    \n\n\n\n

    \n\n\">\n•\n\n\n\n\">\n\n\">\n\n•\n\n\">\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\" style=\"text-align: center;\">\n\n\">\" border=\"0\" alt=\"\" />\n\n \n\noddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">\">
    \n\n
    \n
    \n · · \n
    \n
    ',0,NULL,NULL),('\n\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n

    \n\n\n

    \n \n
    \n
    \n \n \n \n \n \n \">\n \n -\n \n \n - \n \n \n - \n \n \n - \n \n \n \n \n \">\" border=\"0\" alt=\"\" align=\"right\" />\n \n \n
    \n \">\n
    \n
    \n

    \n\n\n\n

    \n \n
    \n\n','Collaboration',1,1,'PBtmpl0000000000000112',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n\n

    \n\n\">\n•\n\n\n\n\">\n\n\">\n\n•\n\n\">\n

    \n

    \n\n

    \n\n
    \n
    \n\n\n\n\n\n\">\n\n-\n\n\n- \n\n\n- \n\n\n- \n\n\n\n\n\">\" border=\"0\" alt=\"\" align=\"right\" />\n\n\n
    \n\">\n
    \n
    \n

    \n\n\n

    \n\n
    \n',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n
    \n\n\n
    \n
    \n
    ()
    \n \n \n
    \n
    \n
    \n\n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000121',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n\n

    \n\n\">\n•\n\n\n\n\">\n\n\">\n\n•\n\n\">\n

    \n
    \n\n
    \n\n
    \n
    \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\" id=\"id\"> \n\n \n

    \n
    \n\n

    \n\n
    \n\n
    \n\" alt=\"\" />\n
    \n
    \n : \n \n \n \n \">\n \n
    \n :
    \n :
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n \n : [ \"> \"> ]
    \n \n \n :
    \n
    \n
    \n
    \n\n
    \n

    \n \n
    \n\n\n
    \n \n \n \n
    \n
    \n
    \n\n\n\n\n \n\n\n
    \n\n\n
    \n

    \n
    \n
    \n \n \">\n \n \">\n \n
    \n
    \n \n \n \n \n \n
    Current\">\n \">\n
    \n \n
    \n
    \n \n \n \n\n\n\n \n \n \n
    \n\" alt=\"\" />\n\n : \n \n \n \n \">\n \n
    \n : \n
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n :
    \n
    \n
    \n \n \n \n \n
    \n
    \n
    \n \n
    \n \n \n \n \n \n
    px;\">\n
    Current\">\n \">\n
    \n \n
    \n
    \n \n \n \n\n\n\n \n \n \n
    \n\" alt=\"\" />\n\n : \n \n \n \n \">\n \n
    \n : \n
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n :
    \n
    \n
    \n \n \n \n \n
    \n
    \n
    \n
    \n \n
    \n \n \n
    \n [ | | ]\n
    \n
    \n
    \n\n\n','Collaboration/Thread',1,1,'PBtmpl0000000000000067',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n

    \n
    \n\n
    \n\" alt=\"\" />\n
    \n
    \n:\n\n\n\n\">\n\n
    \n:
    \n:
    \n: \n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n\n: [ \"> \"> ]
    \n\n\n:
    \n
    \n
    \n
    \n
    \n

    \n\n
    \n\n
    \n\n\n\n
    \n
    \n
    \n\n\n\n
    \n\n
    \n

    \n
    \n
    \n\n\">\n\n\">\n\n
    \n
    \n\n\n\n\n
    Current\">\n\">\n
    \n\n
    \n
    \n\n\n\n\n\n\n\n\n\n
    \n\" alt=\"\" />\n\n:\n\n\n\n\">\n\n
    \n: \n
    \n: \n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n:
    \n
    \n
    \n\n\n\n\n
    \n
    \n
    \n\n
    \n\n\n\n\n
    px;\">\n
    Current\">\n\">\n
    \n\n
    \n
    \n\n\n\n\n\n\n\n\n\n
    \n\" alt=\"\" />\n\n:\n\n\n\n\">\n\n
    \n: \n
    \n: \n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n:
    \n
    \n
    \n\n\n\n\n
    \n
    \n
    \n
    \n\n
    \n\n
    \n[ | | ]\n
    \n
    \n
    \n',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
    \">\">\">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\n \">\n by\n \n \n \n \">\n \n on @ \n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000026',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n\n

    \n\n\">\n•\n\n\n\n\">\n\n\">\n\n•\n\n\">\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\">\">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\n\">\nby\n\n\n\n\">\n\non @ \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n
    \n\n\n
    \n
    \n \">
    \n ()\n \n \n \n
    \n \n
    \n
    \n\n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000128',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n\n

    \n\n\">\n•\n\n\n\n\">\n\n\">\n\n•\n\n\">\n

    \n
    \n\n
    \n\n\n
    \n
    \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n \n  [\">]\n \n

    \n\n\n \n \n \">\n \n \n \n \n \n \n \n \n \"> •\n \n \n \n (\">)\n
    \n

    \n \n

    \n\n\n\n

    \n · · \n
    \n\n','Collaboration',1,1,'PBtmpl0000000000000079',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n\n\n\n

    \n
    \n\n\n\n

    \n\n\"> •\n\n\n\n\">\n\n\">\n\n\n\n [\">]\n\n

    \n\n\n\n\">\n\n\n\n\n\n\n\n\n\"> •\n\n\n\n(\">)\n
    \n

    \n\n

    \n\n\n

    \n · · \n
    \n',0,NULL,NULL),('\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

    \n\n\n \n \n [\">] \n \n \n \n \n \n \n \n \n [\">]\n \n \n \n (\">)\n \n

    \n \" target=\"_blank\">\n \n - \n \n

    \n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000083',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n\n\n\n

    \n
    \n\n\n\n

    \n\n\"> •\n\n\n\n\">\n\n\">\n\n\n•\n\n\n\n\">\n\n

    \n\n\n\n[\">] \n\n\n\n\n\n\n\n\n[\">]\n\n\n\n(\">)\n\n

    \n\" target=\"_blank\">\n\n- \n\n

    \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n \n \n •\n \n \n \n \">\n \n

    \n\n\n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000082',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n\n\n\n

    \n
    \n\n\n\n

    \n\n\">\n•\n\n\n\n\">\n\n\">\n\n\n•\n\n\n\n\">\n\n

    \n\n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

    \n\n\n\n\n\n\n\n\n
    \n\n

    \n\n\n\n\n

    \n · · \n
    \n\n','Collaboration',1,1,'PBtmpl0000000000000133',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n\n\n\n

    \n
    \n\n\n\n

    \n\n\"> •\n\n\n\n\">\n\n\">\n\n\n•\n\n\n\n\">\n\n

    \n\n\n\n\n\n\n
    \n\n

    \n\n\n

    \n · · \n
    \n',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n

    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n\n\n

    \n \n
    \n\n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000029',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n

    \n\n
    ',0,NULL,NULL),('\n\n \n

    \n
    \n\n \n
    \n

    \">

    \n
    \n
    \n \n \">\n \n \">\n \n
    \n
    \n\n\n
    px;\">\n
    Current\">\n \">\n
    \n \n
    \n
    \n\n
    \n\" alt=\"\" />\n
    \n
    \n
    \n : \n \n \n \n \">\n \n
    \n :
    \n
    \n
    \n :
    \n : \n \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n
    \n \n : [ \"> \"> ]
    \n
    \n
    \n
    \n \n \n
    \n \n \"> •\n \n \n \"> • \n \">\n \n
    \n
    \n
    \n
    \n
    \n\n\n
    \n [ | | ]\n
    \n
    \n\n
    \n \n \"> •\n \n \n \"> • \n \n \n \"> •\n \n \n \n \"> •\n \n \"> •\n \n \n \"> •\n \n \"> •\n \n \n \n \n \">\n \n \">\n \n \n
    \n\n','Collaboration/Thread',1,1,'PBtmpl0000000000000032',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n

    \n
    \n
    \n

    \">

    \n
    \n
    \n\n\">\n\n\">\n\n
    \n
    \n\n
    px;\">\n
    Current\">\n\">\n
    \n\n
    \n
    \n\n
    \n\" alt=\"\" />\n
    \n
    \n
    \n:\n\n\n\n\">\n\n
    \n:
    \n
    \n
    \n:
    \n: \n\n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n
    \n\n: [ \"> \"> ]
    \n
    \n
    \n
    \n\n\n
    \n\n\"> •\n\n\n\"> •\n\">\n\n
    \n
    \n
    \n
    \n
    \n\n
    \n[ | | ]\n
    \n
    \n
    \n\n\"> •\n\n\n\"> •\n\n\n\"> •\n\n\n\n\"> •\n\n\"> •\n\n\n\"> •\n\n\"> •\n\n\n\n\n\">\n\n\">\n\n\n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n

    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    class=\"odd\">\">class=\"odd\">class=\"odd\">\">class=\"odd\"> @
    \n
    \n\n\n
    \n · · \n
    \n
    \n\n\n','Collaboration/Search',1,1,'PBtmpl0000000000000031',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    class=\"odd\">\">class=\"odd\">class=\"odd\">\">class=\"odd\"> @
    \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\n\n

    \n

    \n

    \n\n\n

    \n\n

    \n
    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n\n\n
    \n

    \n \n
    \n
    \n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000068',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n

    \n

    \n

    \n\n

    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n
    \n

    \n\n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\n\n

    \n

    \n\n\n

    \n\n

    \n
    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n\n\n
    \n

    \n \n
    \n
    \n\n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000099',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n

    \n

    \n\n

    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n
    \n

    \n\n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n\n\n

    \n\n

    \n
    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n\n\n \n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000114',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n\n

    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n\n',0,NULL,NULL),('\" id=\"id\"> \n\n \n

    \n
    \n\n

    \n\n\n
    \n :     [ \"> \"> ]
    \n
    \n
    \n\n\n ^International(job description,Asset_Collaboration);
    \n

    \n
    \n\n\n ^International(job requirements,Asset_Collaboration);
    \n

    \n
    \n\n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n
    ^International(date posted,Asset_Collaboration); 
    ^International(location,Asset_Collaboration); 
    ^International(compensation,Asset_Collaboration); 
    ^International(views,Asset_Collaboration); 
    \n\n\n
    \n \n \n \n
    \n
    \n
    \n\n\n
    \n \n \">\n •\n \n \n \">\n •\n \">\n \n
    \n
    \n\n\n\n
    \n

    \n
    \n
    \n \n \">\n \n \">\n \n
    \n
    \n \n \n \n \n \n
    Current\">\n \">\n
    \n \n
    \n
    \n
    \n : \n \n \n \n \">\n \n
    \n :
    \n
    \n
    \n :
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n \n :
    \n
    \n
    \n
    \n \n \n
    \n \n \">\n •\n \n \n \">\n •\n \">\n \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n \n \n \n
    px;\">\n
    Current\">\n \">\n
    \n \n
    \n
    \n
    \n : \n \n \n \n \">\n \n
    \n :
    \n
    \n
    \n :
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n \n :
    \n
    \n
    \n
    \n \n \n
    \n \n \">\n •\n \n \n \">\n •\n \">\n \n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n
    \n [ | | ]\n
    \n
    \n
    \n\n
    \n \n \"> \n •\n \n \"> \n \n •\n \"> \n \n \n •\n \">\n •\n \n \n \n \">\n •\n \n \">\n •\n \n \n \">\n •\n \n \">\n •\n \n \n \n \n \"> \n \n \">\n \n \n
    ','Collaboration/Thread',1,1,'PBtmpl0000000000000098',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n

    \n\n
    \n:     [ \"> \"> ]
    \n
    \n
    \n\n^International(job description,Asset_Collaboration);
    \n

    \n
    \n\n^International(job requirements,Asset_Collaboration);
    \n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(date posted,Asset_Collaboration); 
    ^International(location,Asset_Collaboration); 
    ^International(compensation,Asset_Collaboration); 
    ^International(views,Asset_Collaboration); 
    \n\n
    \n\n\n\n
    \n
    \n
    \n\n
    \n\n\">\n•\n\n\n\">\n•\n\">\n\n
    \n
    \n\n
    \n

    \n
    \n
    \n\n\">\n\n\">\n\n
    \n
    \n\n\n\n\n
    Current\">\n\">\n
    \n\n
    \n
    \n
    \n:\n\n\n\n\">\n\n
    \n:
    \n
    \n
    \n:
    \n: \n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n\n:
    \n
    \n
    \n
    \n\n\n
    \n\n\">\n•\n\n\n\">\n•\n\">\n\n
    \n
    \n
    \n
    \n
    \n\n
    \n\n\n\n\n
    px;\">\n
    Current\">\n\">\n
    \n\n
    \n
    \n
    \n:\n\n\n\n\">\n\n
    \n:
    \n
    \n
    \n:
    \n: \n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n\n:
    \n
    \n
    \n
    \n\n\n
    \n\n\">\n•\n\n\n\">\n•\n\">\n\n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n\n
    \n[ | | ]\n
    \n
    \n
    \n
    \n\n\">\n•\n\n\">\n\n•\n\">\n\n\n•\n\">\n•\n\n\n\n\">\n•\n\n\">\n•\n\n\n\">\n•\n\n\">\n•\n\n\n\n\n\">\n\n\">\n\n\n
    ',0,NULL,NULL),('\" id=\"id\">\n\n
    \n

    \n

    \n

    \n

    \n

    \n
    \n\n\n

    \n\n

    \n
    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n\n\n
    \n

    \n \n

    \n

    \n

    \n
    \n
    \n

    \n\n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000122',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n

    \n

    \n

    \n

    \n

    \n

    \n
    \n\n

    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n
    \n

    \n\n

    \n

    \n

    \n
    \n
    \n

    ',0,NULL,NULL),('\" id=\"id\">\n\n\n \n\n\n\n

    \n\n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \"> \n \n \">\n \n \n •\n \n \n \n \">\n \n

    \n\n
    \n\n
    \n
    \n \n \">\n \n \n \n\n \n \n \n \n \n \"> •\n \n \n \n (\">)\n\n \n
    \n
    Q
    \n
    \n
    A
    \n\n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000081',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n\n\n\n

    \n
    \n\n\n\n

    \n\n\"> •\n\n\n\n\">\n\n\">\n\n\n•\n\n\n\n\">\n\n

    \n
    \n\n
    \n
    \n\n\">\n\n\n\n\n\n\n\n\n\"> •\n\n\n\n(\">)\n\n
    \n
    Q
    \n
    \n
    A
    \n\n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

    \n\n
      \n \n
    1. \n \n \n [\">]\n \n \n \n \n \n \n \n \n [\">]\n \n \n \n (\">)\n \n \" target=\"_blank\">\n \n - \n \n
    2. \n
      \n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000101',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n\n\n\n

    \n
    \n\n\n\n

    \n\n\"> •\n\n\n\n\">\n\n\">\n\n\n•\n\n\n\n\">\n\n

    \n
      \n\n
    1. \n\n\n[\">]\n\n\n\n\n\n\n\n\n[\">]\n\n\n\n(\">)\n\n\" target=\"_blank\">\n\n- \n\n
    2. \n
      \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\" id=\"id\"> \n\n \n

    \n
    \n\n

    \n\n\n
    \n :     [ \"> \"> ]
    \n
    \n
    \n\n\n
    \n ^International(Link Description,Asset_Collaboration);

    \n
    \n \n ^International(Link URL,Asset_Collaboration);

    \n \">

    \n
    \n
    \n\n\n\n\n
    \n \n \n \n
    \n
    \n
    \n\n\n
    \n \n \">\n •\n \n \n \">\n •\n \">\n \n
    \n
    \n\n\n\n
    \n

    \n
    \n
    \n \n \">\n \n \">\n \n
    \n
    \n \n \n \n \n \n
    Current\">\n \" id=\"id\">\n
    \n \n
    \n
    \n
    \n : \n \n \n \n \">\n \n
    \n :
    \n
    \n
    \n :
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n \n :
    \n
    \n
    \n
    \n \n \n
    \n \n \"> • \n \n \n \"> •\n \">\n \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n \n \n \n
    px;\">\n
    Current\">\n \" id=\"id\">\n
    \n \n
    \n
    \n
    \n : \n \n \n \n \">\n \n
    \n :
    \n
    \n
    \n :
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n \n :
    \n
    \n
    \n
    \n \n \n
    \n \n \"> •\n \n \n \"> • \n \">\n \n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n
    \n [ | | ]\n
    \n
    \n
    \n\n
    \n \n \"> \n •\n \n \">^International(List All Links,Asset_Collaboration);\n \n •\n \"> \n \n \n •\n \">\n \n \n •\n \n \">\n •\n \n \">\n •\n \n \n \">\n •\n \n \">\n •\n \n \n \n \n \">\n \n \">\n \n \n
    ','Collaboration/Thread',1,1,'PBtmpl0000000000000113',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n

    \n\n
    \n:     [ \"> \"> ]
    \n
    \n
    \n\n
    \n^International(Link Description,Asset_Collaboration);

    \n
    \n^International(Link URL,Asset_Collaboration);

    \n\">

    \n
    \n
    \n\n
    \n\n\n\n
    \n
    \n
    \n\n
    \n\n\">\n•\n\n\n\">\n•\n\">\n\n
    \n
    \n\n
    \n

    \n
    \n
    \n\n\">\n\n\">\n\n
    \n
    \n\n\n\n\n
    Current\">\n\" id=\"id\">\n
    \n\n
    \n
    \n
    \n:\n\n\n\n\">\n\n
    \n:
    \n
    \n
    \n:
    \n: \n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n\n:
    \n
    \n
    \n
    \n\n\n
    \n\n\"> •\n\n\n\"> •\n\">\n\n
    \n
    \n
    \n
    \n
    \n\n
    \n\n\n\n\n
    px;\">\n
    Current\">\n\" id=\"id\">\n
    \n\n
    \n
    \n
    \n:\n\n\n\n\">\n\n
    \n:
    \n
    \n
    \n:
    \n: \n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n\n:
    \n
    \n
    \n
    \n\n\n
    \n\n\"> •\n\n\n\"> •\n\">\n\n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n\n
    \n[ | | ]\n
    \n
    \n
    \n
    \n\n\">\n•\n\n\">^International(List All Links,Asset_Collaboration);\n\n•\n\">\n\n\n•\n\">\n\n\n•\n\n\">\n•\n\n\">\n•\n\n\n\">\n•\n\n\">\n•\n\n\n\n\n\">\n\n\">\n\n\n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n\n \n \n\n \n\n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n\n \n\n \n \n \n \n \n\n\n
    \">\">\">\">\">\">
    oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\n \">\n by\n \n \n \n \">\n \n on @ \n
    \n\n\n
    \n · · \n
    \n
    \n\n','Collaboration',1,1,'PBtmpl0000000000000208',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n\n

    \n\n\">\n•\n\n\n\n\">\n\n\">\n\n•\n\n\">\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\">\">\">\">\">
    oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\n\">\nby\n\n\n\n\">\n\non @ \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\" id=\"id\"> \n\n \n

    \n
    \n\n

    \n\n
    \n\n
    \n\" alt=\"\" />\n
    \n
    \n : \n \n \n \n \">\n \n
    \n :
    \n :
    \n :
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n \n :     [ \">     [ \"> ]
    \n \n \n :
    \n
    \n
    \n\n :
    \n:\n\n
    \n
    \n\n
    \n \n
    \n\n\n
    \n \n \n \n
    \n
    \n
    \n\n\n
    \n \n \">\n •\n \n \n \">\n •\n \">\n \n
    \n
    \n\n
    \n\n\n
    \n

    \n
    \n
    \n \n \">\n \n \">\n \n
    \n
    \n \n \n \n \n \n
    Current\">\n \">\n
    \n \n
    \n
    \n \n \n \n\n\n\n \n \n \n
    \n\" alt=\"\" />\n\n : \n \n \n \n \">\n \n
    \n : \n
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n
    \n
    \n \n \n
    \n \n \">\n •\n \n \n \">\n •\n \">\n \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n \n \n \n
    px;\">\n
    Current\">\n \">\n
    \n \n
    \n
    \n \n \n \n\n\n\n \n \n \n
    \n\" alt=\"\" />\n\n : \n \n \n \n \">\n \n
    \n : \n
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n
    \n
    \n \n \n
    \n \n \">\n •\n \n \n \">\n •\n \">\n \n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n
    \n [ | | ]\n
    \n
    \n
    \n\n
    \n \n \"> \n •\n \n \">\n \n \n •\n \"> \n \n \n •\n \">\n •\n \n \n \n \">\n •\n \n \">\n •\n \n \n \">\n •\n \n \">\n •\n \n \n \n \n \">\n \n \">\n \n \n
    \n','Collaboration/Thread',1,1,'PBtmpl0000000000000209',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n

    \n
    \n\n
    \n\" alt=\"\" />\n
    \n
    \n:\n\n\n\n\">\n\n
    \n:
    \n:
    \n:
    \n: \n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n\n:     [ \">     [ \"> ]
    \n\n\n:
    \n
    \n
    \n\n:
    \n:\n\n
    \n
    \n
    \n\n
    \n\n
    \n\n\n\n
    \n
    \n
    \n\n
    \n\n\">\n•\n\n\n\">\n•\n\">\n\n
    \n
    \n
    \n\n
    \n

    \n
    \n
    \n\n\">\n\n\">\n\n
    \n
    \n\n\n\n\n
    Current\">\n\">\n
    \n\n
    \n
    \n\n\n\n\n\n\n\n\n\n
    \n\" alt=\"\" />\n\n:\n\n\n\n\">\n\n
    \n: \n
    \n: \n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n
    \n
    \n\n\n
    \n\n\">\n•\n\n\n\">\n•\n\">\n\n
    \n
    \n
    \n
    \n
    \n\n
    \n\n\n\n\n
    px;\">\n
    Current\">\n\">\n
    \n\n
    \n
    \n\n\n\n\n\n\n\n\n\n
    \n\" alt=\"\" />\n\n:\n\n\n\n\">\n\n
    \n: \n
    \n: \n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n
    \n
    \n\n\n
    \n\n\">\n•\n\n\n\">\n•\n\">\n\n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n\n
    \n[ | | ]\n
    \n
    \n
    \n
    \n\n\">\n•\n\n\">\n\n•\n\">\n\n\n•\n\">\n•\n\n\n\n\">\n•\n\n\">\n•\n\n\n\">\n•\n\n\">\n•\n\n\n\n\n\">\n\n\">\n\n\n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n

    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n
    \n\n\n\n

    \n \n
    \n','Collaboration/PostForm',1,1,'PBtmpl0000000000000210',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n\n\n

    \n\n
    ',0,NULL,NULL),('

    ^International(post received,Asset_Post);

    \">^International(493,WebGUI);

    ','Collaboration/PostReceived',1,1,'default_post_received1',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(post received,Asset_Post);

    \">^International(493,WebGUI);

    ',0,NULL,NULL),('

    ^International(Unsubscribe from %s,Asset_Collaboration,\'\">\');

    \n\n

    \n
    \n\n^International(480,WebGUI);
    \n^International(unsubscribe instructions,Asset_Collaboration);
    \n','Collaboration/Unsubscribe',1,1,'default_CS_unsubscribe',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(Unsubscribe from %s,Asset_Collaboration,\'\">\');

    \n\n

    \n
    \n\n^International(480,WebGUI);
    \n^International(unsubscribe instructions,Asset_Collaboration);
    \n',0,NULL,NULL),('

    ^International(\"choose username title\",\"Auth_Twitter\");

    \r\n

    \r\n
    \r\n\r\n\r\n\r\n\r\n
    \r\n\r\n','Auth/Twitter/ChooseUsername',1,1,'mfHGkp6t9gdclmzN33OEnw',1277868927,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(\"choose username title\",\"Auth_Twitter\");

    \n

    \n
    \n\n\n\n\n
    ',0,NULL,NULL),('\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n\n\n\n \n\n\n \n\n\n \n\n\n \n
    \n \">^International(label day,Asset_Calendar);\n \">^International(label week,Asset_Calendar);\n \">^International(label month,Asset_Calendar);\n ?type=list\">^International(486,WebGUI);\n \">^International(label search,Asset_Calendar);\n\n \n
    \n \n
    \n
    \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
    \n\n
    \" class=\"moreDisplay\">\n
    \n
      \n \n
    • \">
    • \n
      \n
    \n
    \n
    \n
    ','Calendar/Month',1,1,'CalendarMonth000000001',1279073449,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\">^International(label day,Asset_Calendar);\n\">^International(label week,Asset_Calendar);\n\">^International(label month,Asset_Calendar);\n?type=list\">^International(486,WebGUI);\n\">^International(label search,Asset_Calendar);\n\n
    \n\n
    \n
    \n \n
    \n
    \n\n\n\n\n\n\n\n\n\n\n
    \n
    \n\n
    \" class=\"moreDisplay\">\n
    \n\n
    \n
    \n
    ',0,NULL,NULL),('\n\n

    \n
    \n
    \n \n

    \n
    \n \n

    \n
    \n\n \n
      \n \n
    • \n
      \n
    \n
    \n\n\n \n \n \n \n
    \n \n \n
    \n ^International(comments,Asset_EMSSubmission);\n \n
    \n\n
    \n\n','EMS/Submission',1,1,'8tqyQx-LwYUHIWOlKPjJrA',1279073449,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n

    \n
    \n
    \n\n

    \n
    \n\n

    \n
    \n\n
      \n\n
    • \n
      \n
    \n
    \n\n\n\n\n\n
    \n\n\n
    \n^International(comments,Asset_EMSSubmission);\n\n
    \n
    ',0,NULL,NULL),('\n

    \n
    \n\n

    \n
    \n \n

    \n
    \n\n\n\n\n\n
    \n
    \n
      \n \n
    • class=\"selected\">\">
    • \n
      \n
    \n
    \n \n
    \">
    \n
    \n
    \n
    \n
    \n\n\">^International(schedule back link,Asset_EventManagementSystem);\n\n\n\n\n\n\n\n','EMS/SubmissionMain',1,1,'DoVNijm6lMDE0cYrtvEbDQ',1279073449,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n\n\n
    \n
    \n
      \n\n
    • class=\"selected\">\">
    • \n
      \n
    \n
    \n\n
    \">
    \n
    \n
    \n
    \n
    \n\">^International(schedule back link,Asset_EventManagementSystem);\n\n\n\n\n',0,NULL,NULL),(' \n\n \n \n \n \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n
    ^International(reply message label,Account_Inbox);^International(compose message label,Account_Inbox);
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(recipients label,Account_Inbox);^International(to label,Account_Inbox);:
    class=\"inbox_messageTo\"> [];
    ^International(subject label,Account_Inbox);:
    32\" class=\"send\">\n   \n \'\" />\n
    \n
    \n
    \n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n
    _name\"> []
    \n
    \n
    \n \n \n
    \n
    \n
    \n','Account/Inbox/SendMessage',1,1,'6uQEULvXFgCYlRWnYzZsuA',1279073450,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    \n^International(member since,Account_Inbox); ^D(%z,);\n
    ^International(reply message label,Account_Inbox);^International(compose message label,Account_Inbox);
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(recipients label,Account_Inbox);^International(to label,Account_Inbox);:
    class=\"inbox_messageTo\"> [];
    ^International(subject label,Account_Inbox);:
    32\" class=\"send\">\n  \n\'\" />\n
    \n
    \n
    \n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n
    \n
    \n\n\n\n\n\n\n\n\n\n
    _name\"> []
    \n
    \n
    \n\n\n
    \n
    \n
    \n',0,NULL,NULL),('
    \n\n
    \n
    \n
    \n
    \n
    \n\n
    \n\n\n','EMS/SubmissionQueue',1,1,'ktSvKU8riGimhcsxXwqvPQ',1279073450,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n
    \n
    \n
    \n
    \n
    \n',0,NULL,NULL),('\n
    \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n
    ^International(\'comparison label\',\'Asset_Matrix\');
    \n
    \n \n \n \n \n \n \n \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    \n','Matrix/Compare',1,1,'matrixtmpl000000000002',1281501162,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n
    \n
    \n\n\n\n\n\n\n\n\n\n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    ^International(\'comparison label\',\'Asset_Matrix\');
    \n
    \n\n\n\n\n\n\n
    \n
    \n
    \n
    \n
    \n
    \n
    ',0,NULL,'[]'),('\n

    \n
    \n\n

    \n\n\n
    \n \n
    \n
    \n\n\n\n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n
    \n
    \" enctype=\"multipart/form-data\" method=\"post\" name=\"doCompare\">

    \n
    \n
    \n
    \n
    \n\n
    \n
    \n \n
    \n
    \n
    \n\n
    \n
    \n
    \n \n
    \n
    \n \n ^International(\'add new listing text\',\'Asset_Matrix\');\n \n ^International(\'create account part1 text\',\'Asset_Matrix\'); ^International(\'create account part2 text\',\'Asset_Matrix\');\n \n
    \n \n \n
    \n \n
    \n
    ^International(\'listing statistics label\',\'Asset_Matrix\');
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(\'most clicks label\',\'Asset_Matrix\');\"> ()
    ^International(\'most views label\',\'Asset_Matrix\');\"> ()
    ^International(\'most compares label\',\'Asset_Matrix\');\"> ()
    \n \n
    ^International(\'most recently updated label\',\'Asset_Matrix\');
    \n \n \n \n \n \n \n \n
    \">
    \n \n
    ^International(\'best rated label\',\'Asset_Matrix\');
    \n \n \n \n \n \n \n \n
    \"> (/10)
    \n \n
    ^International(\'worst rated label\',\'Asset_Matrix\');
    \n \n \n \n \n \n \n \n
    \"> (/10)
    \n \n
    ^International(\'site statistics label\',\'Asset_Matrix\');
    \n \n \n \n \n \n
    ^International(\'listing count label\',\'Asset_Matrix\');
    \n \n\n \n
    ^International(\'pending listings label\',\'Asset_Matrix\');:
    \n \n \n \n \n \n \n \n \n
    \">
    \n
    \n
    \n\n
    \n\n
    \n
    \n
    \n\n','Matrix',1,1,'matrixtmpl000000000001',1281501162,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n

    \n\n
    \n\n
    \n
    \n\n
    \n
    \n\n\n
    \n
    \n\n\n\n\n\n\n\n\n
    \n
    \" enctype=\"multipart/form-data\" method=\"post\" name=\"doCompare\">

    \n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n^International(\'add new listing text\',\'Asset_Matrix\');\n\n^International(\'create account part1 text\',\'Asset_Matrix\'); ^International(\'create account part2 text\',\'Asset_Matrix\');\n\n
    \n\n
    \n
    \n
    ^International(\'listing statistics label\',\'Asset_Matrix\');
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\'most clicks label\',\'Asset_Matrix\');\"> ()
    ^International(\'most views label\',\'Asset_Matrix\');\"> ()
    ^International(\'most compares label\',\'Asset_Matrix\');\"> ()
    \n
    ^International(\'most recently updated label\',\'Asset_Matrix\');
    \n\n\n\n\n\n\n\n
    \">
    \n
    ^International(\'best rated label\',\'Asset_Matrix\');
    \n\n\n\n\n\n\n\n
    \"> (/10)
    \n
    ^International(\'worst rated label\',\'Asset_Matrix\');
    \n\n\n\n\n\n\n\n
    \"> (/10)
    \n
    ^International(\'site statistics label\',\'Asset_Matrix\');
    \n\n\n\n\n\n
    ^International(\'listing count label\',\'Asset_Matrix\');
    \n\n
    ^International(\'pending listings label\',\'Asset_Matrix\');:
    \n\n\n\n\n\n\n\n\n
    \">
    \n
    \n
    \n
    \n
    \n
    \n
    ',0,NULL,'[]'),('\n\n\n
    \n \n \n

    \n
    \n \n

    \n \n \n [\n ^AssetProxy(new-matrix/matrix-nav);\n blockblockblock\">\n \n • \">^International(\'edit label\',\'Asset_MatrixListing\');\n \n \n • \">^International(\'approve or deny label\',\'Asset_Matrix\');\n \n \n ]\n \n

    \n \n
    \n \n \n \n
    \n
    \n \n
    \n
    \n ^International(\'description label\',\'Asset_MatrixListing\');\n \n
    \n \n \n \n
    \n
      \n
    • ^International(\'web site label\',\'Asset_MatrixListing\');\')\" href=\"#\"> 
    • \n
    • ^International(\'version label\',\'Asset_MatrixListing\'); 
    • \n
    • ^International(\'manufacturer label\',\'Asset_MatrixListing\');\')\" href=\"#\"> 
    • \n
    • ^International(\'last updated label\',\'Asset_MatrixListing\');
    • \n
    • ^International(\'clicks label\',\'Asset_Matrix\');
    • \n
    • ^International(\'views label\',\'Asset_Matrix\');
    • \n
    • ^International(\'compares label\',\'Asset_Matrix\');
    • \n
    \n
    \n \n
    \n
    \n
    \n
    \n ^International(Comments,WebGUI);\n \n ^International(Send Creator a Message,Asset_MatrixListing);\n
    \n \n
    ^International(\'message sent message\',\'Asset_MatrixListing\');
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    ','Matrix/Detail',1,1,'matrixtmpl000000000003',1281501163,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n\n

    \n
    \n

    \n\n\n[\n^AssetProxy(new-matrix/matrix-nav);\nblockblockblock\">\n\n• \">^International(\'edit label\',\'Asset_MatrixListing\');\n\n\n• \">^International(\'approve or deny label\',\'Asset_Matrix\');\n\n\n]\n\n

    \n
    \n\n\n\n
    \n
    \n
    \n
    \n^International(\'description label\',\'Asset_MatrixListing\');\n\n
    \n\n\n\n
    \n
      \n
    • ^International(\'web site label\',\'Asset_MatrixListing\');\')\" href=\"#\"> 
    • \n
    • ^International(\'version label\',\'Asset_MatrixListing\'); 
    • \n
    • ^International(\'manufacturer label\',\'Asset_MatrixListing\');\')\" href=\"#\"> 
    • \n
    • ^International(\'last updated label\',\'Asset_MatrixListing\');
    • \n
    • ^International(\'clicks label\',\'Asset_Matrix\');
    • \n
    • ^International(\'views label\',\'Asset_Matrix\');
    • \n
    • ^International(\'compares label\',\'Asset_Matrix\');
    • \n
    \n
    \n\n
    \n
    \n
    \n
    \n^International(Comments,WebGUI);\n\n^International(Send Creator a Message,Asset_MatrixListing);\n
    \n\n
    ^International(\'message sent message\',\'Asset_MatrixListing\');
    \n
    \n\n
    \n
    \n
    \n
    \n
    \n
    ',0,NULL,'[]'),('

    ^International(\'edit matrix listing title\',\'Asset_MatrixListing\');

    \r\n\r\n','Matrix/EditListing',1,1,'matrixtmpl000000000004',1281501163,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(\'edit matrix listing title\',\'Asset_MatrixListing\');

    \n',0,NULL,'[]'),('\n\n
    \n
    \n \n
    \n
    \n \n
    \n
    \n
    \n\n
    \n
    ^International(search label,Asset_Matrix);
    \n
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n
    \n
    \n
    \n
    \n
    \n

    \">^International(Return to Matrix,Asset_Matrix);

    \n
    \n\n\n\n','Matrix/Search',1,1,'matrixtmpl000000000005',1281501163,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n
    \n\n
    \n
    \n\n
    \n
    \n
    \n
    \n
    ^International(search label,Asset_Matrix);
    \n
    \n\n
    \n\n\n\n\n\n\n\n\n\n\n
    \n
    \n
    \n
    \n
    \n

    \">^International(Return to Matrix,Asset_Matrix);

    \n
    ',0,NULL,'[]'),('\n\n\n\n \">^International(Return to Matrix,Asset_Matrix);\n\n\n','Navigation',1,1,'alraubvBu-YJJ614jAHD5w',1281501163,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\">^International(Return to Matrix,Asset_Matrix);\n\n',0,NULL,'[]'),('\r\n\r\n\r\n ?func=getScreenshots\r\n \r\n 400\r\n 300\r\n 0xDDDDEE\r\n 20\r\n 800\r\n 600 \r\n Verdana\r\n 12\r\n 0xFFFFFF\r\n\r\n 0x888888\r\n 0x000000\r\n true\r\n over \r\n 0\r\n\r\n 0xFFFFFF\r\n 0x888888\r\n 0x000000\r\n true\r\n\r\n 20\r\n 200\r\n\r\n 60\r\n 45\r\n 0x888888\r\n false\r\n true\r\n 100\r\n 8\r\n\r\n off \r\n false\r\n true\r\n false\r\n true\r\n \r\n \r\n\r\n rounded \r\n','Matrix/ScreenshotsConfig',1,1,'matrixtmpl000000000007',1281501163,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n?func=getScreenshots\n400\n300\n0xDDDDEE\n20\n800\n600\nVerdana\n12\n0xFFFFFF\n0x888888\n0x000000\ntrue\nover\n0\n0xFFFFFF\n0x888888\n0x000000\ntrue\n20\n200\n60\n45\n0x888888\nfalse\ntrue\n100\n8\noff\nfalse\ntrue\nfalse\ntrue\n\n\nrounded\n',0,NULL,'[]'),('\n\n\n Screenshots\n \n\n\n\n\n
    \n\n \n \n &width=800&height=600\" />\n \n \n &width=800&height=600\" />\n \n \n \"Get\n \n \n \n \n \n
    \n \n \n\n\n','Matrix/Screenshots',1,1,'matrixtmpl000000000006',1281501163,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\nScreenshots\n\n\n\n
    \n\n\n&width=800&height=600\" />\n\n\n&width=800&height=600\" />\n\n\n\"Get\n\n\n\n\n\n
    \n\n\n\n',0,NULL,'[]'),('
    \r\n \r\n
    \r\n\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n','Account/Layout',1,1,'N716tpSna0iIQTKxS4gTWA',1281501163,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n
    \n
    \n
    \n
    ',0,NULL,'[]'),(' ^International(new post,AssetAspect_Subscribable);\n\n\n\n\n','AssetAspect/Subscribable',1,1,'limMkk80fMB3fqNZVf162w',1281501163,'WebGUI::Asset::Template::HTMLTemplate',1,' ^International(new post,AssetAspect_Subscribable);\n\n',0,NULL,'[]'),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    ^International(\"99\",\"Asset\");^International(\"creation_date\",\"Asset_AssetReport\");^International(\"created_by\",\"Asset_AssetReport\");
    \">^D(\'%C %D, %y %h:%s %p\',);^User(\'username\',);
    \r\n\r\n\r\n

    \r\n \r\n
    \r\n
    \r\n','AssetReport',1,1,'sJtcUCfn0CVbKdb4QM61Yw',1283921584,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\"99\",\"Asset\");^International(\"creation_date\",\"Asset_AssetReport\");^International(\"created_by\",\"Asset_AssetReport\");
    \">^D(\'%C %D, %y %h:%s %p\',);^User(\'username\',);
    \n\n

    \n \n
    \n
    ',0,NULL,'[]'),('
    \" class=\"storyTopic\">\n\" id=\"id\">\n

    \n\n

    \n
    \n

    \">^International(rss,WebGUI); •\n\">Atom

    \n\n\n
    \n

    \">

    \n

    \n
    \n
    \n\n ','StoryTopic',1,1,'A16v-YjWAShXWvSACsraeg',1285124154,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"storyTopic\">\n\" id=\"id\">\n

    \n\n

    \n
    \n

    \">^International(rss,WebGUI); •\n\">Atom

    \n\n\n
    \n

    \">

    \n

    \n
    \n
    \n\n',0,NULL,NULL),('
    \r\n \r\n \r\n
    \r\n
    \r\n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n ^International(\'template search title\',\'Asset_Gallery\');\r\n
    \r\n\r\n \r\n\r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(\'template search field title\',\'Asset_Gallery\');
    ^International(\'template search field description\',\'Asset_Gallery\');
    ^International(\'template search field keywords\',\'Asset_Gallery\');
    ^International(\'template search field location\',\'Asset_Gallery\');
    ^International(\'template search field className\',\'Asset_Gallery\');\r\n \r\n
    ^International(\'template search field creationDate\',\'Asset_Gallery\');^International(\'template search to\',\'Asset_Gallery\');
     \r\n \r\n
    \r\n
    \r\n \r\n\r\n

    \r\n\r\n \r\n
    \r\n \r\n
    \r\n ^International(\'template search results for\',\'Asset_Gallery\'); \"\".\r\n
    \r\n\r\n

    Albums

    \r\n \r\n \r\n
    \r\n \" class=\"albumTitle\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n ?func=edit\">Add a Description\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n

    Pictures

    \r\n \r\n \r\n
    \r\n \" class=\"title\">\r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    ^International(\"template file creationDate\",\"Asset_GalleryAlbum\"); ^D(\"%M/%d/%Y\",);
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n\r\n
    \r\n
    ','Gallery/Search',1,1,'jME5BEDYVDlBZ8jIQA9-jQ',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n\n\n\n
    \n
    \n^International(\'template search title\',\'Asset_Gallery\');\n
    \n\n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\'template search field title\',\'Asset_Gallery\');
    ^International(\'template search field description\',\'Asset_Gallery\');
    ^International(\'template search field keywords\',\'Asset_Gallery\');
    ^International(\'template search field location\',\'Asset_Gallery\');
    ^International(\'template search field className\',\'Asset_Gallery\');\n\n
    ^International(\'template search field creationDate\',\'Asset_Gallery\');^International(\'template search to\',\'Asset_Gallery\');
     \n\n
    \n
    \n\n

    \n\n
    \n
    \n ^International(\'template search results for\',\'Asset_Gallery\'); \"\".\n
    \n

    Albums

    \n\n\n\n\n\n
    \n

    Pictures

    \n\n\n
    \n\" class=\"title\">\n\n\n\n\n
    \n
    \n\n
    \n
    \n
    \n
    \n\n
    ^International(\"template file creationDate\",\"Asset_GalleryAlbum\"); ^D(\"%M/%d/%Y\",);
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n
    \n
    ',0,NULL,NULL),('\r\n \r\n\r\n\r\n
    \r\n \r\n \r\n
    \r\n
    \r\n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n
    \r\n \r\n
    \r\n \" class=\"albumTitle\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n ?func=edit\">Add a Description\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n
    \r\n \r\n
    ','Gallery/ListAlbums',1,1,'azCqD0IjdQSlM3ar29k5Sg',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n',0,NULL,NULL),('\n \n\n\n','GalleryAlbum/View',1,1,'05FpjceLYhq4csF1Kww1KQ',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n',0,NULL,NULL),('\r\n \r\n\r\n\r\n
    \r\n \r\n\r\n
    \r\n
    \r\n \" class=\"current\">^International(template url_thumbnails,Asset_GalleryAlbum);  ·  \r\n \">^International(template url_slideshow,Asset_GalleryAlbum);  ·  \r\n \">^International(template url,Asset_GalleryAlbum);    \r\n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n ·\r\n ^International(template by,Asset_Gallery);: \">\r\n
    \r\n\r\n \r\n\r\n
    \r\n \" class=\"title\">\r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    ^International(\'template creationDate\',\'Asset_Photo\');: ^D(\"%z %Z\",);
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n \r\n \" class=\"thumb\">\r\n \" />\r\n \r\n \r\n
    \r\n
    \r\n
    \r\n
    ','GalleryAlbum/ViewThumbnails',1,1,'q5O62aH4pjUXsrQR3Pq4lw',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n',0,NULL,NULL),('\r\n \r\n\r\n\r\n
    \r\n \r\n \r\n
    \r\n
    \r\n \">^International(template url_thumbnails,Asset_GalleryAlbum);  ·  \r\n \" class=\"current\">^International(template url_slideshow,Asset_GalleryAlbum);  ·  \r\n \">^International(template url,Asset_GalleryAlbum);    \r\n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n ·\r\n ^International(template by,Asset_Gallery);: \"> \r\n
    \r\n\r\n \r\n\r\n
    \r\n
    \r\n \"Previous\r\n \r\n \"Next\r\n
    \r\n
    \r\n \r\n
    \r\n \r\n
    \r\n \">\" style=\"border: none\" /> \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    ','GalleryAlbum/ViewSlideshow',1,1,'KAMdiUdJykjN02CPHpyZOw',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n',0,NULL,NULL),('
    \n \n \n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n \n
    \n\n \n\n

    ^International(template listFilesForUser albums title,Asset_Gallery);

    \n \n \n \n \n \n
    \n \n

    ^International(template listFilesForUser pictures title,Asset_Gallery);

    \n \n \n
    \n \" class=\"title\">\n \n \n \n \n
    \n
    \n \n
    \n
    \n
    \n
    \n \n
    ^International(\'template file creationDate\',\'Asset_GalleryAlbum\'); ^D(\"%z\", );
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n
    ','Gallery/ListFilesForUser',1,1,'OkphOEdaSGTXnFGhK4GT5A',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n\n\n\n
    \n
    \n\n
    \n\n

    ^International(template listFilesForUser albums title,Asset_Gallery);

    \n\n\n\n
    \n

    ^International(template listFilesForUser pictures title,Asset_Gallery);

    \n\n
    \n\" class=\"title\">\n\n\n\n\n
    \n
    \n\n
    \n
    \n
    \n
    \n\n
    ^International(\'template file creationDate\',\'Asset_GalleryAlbum\'); ^D(\"%z\", );
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n
    ',0,NULL,NULL),('\n \n\n\n
    \n \n\n
    \n
    \n \">^International(\'template url_album\',\'Asset_Photo\');    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n ·\n ^International(\'template by\',\'Asset_Gallery\');: \">\n
    \n\n
    \n
    \n

    \n \" class=\"thumbnail\">\" alt=\"Image\" />\n \n
    \n \n
    \n
    \n \" class=\"fullSize\">^International(\'template fileUrl\',\'Asset_Photo\');\n
    \n
    \n\n
    \n \n \">\n \"first\n \n \n \"first\n \n \n \">\n \"first\n \n \n \"first\n \n \n \">\n \"first\n \n \n \"first\n \n \n \">\n \"first\n \n \n \"first\n \n
    \n\n
    \n\n
    \n
    \n ^International(template view details,Asset_Photo);\n
    \n \n ^International(\'template creationDate\',\'Asset_Photo\');:\n \n \n ^D(\"%z %Z\",);\n \n
    \n
    \n \n ^International(\'template views\',\'Asset_Photo\');:\n \n \n \n \n
    \n
    \n \n ^International(\'template by\',\'Asset_Gallery\');:\n \n \n \">\n (\">^International(\'template filesForUser\', \'Asset_Photo\');)\n \n
    \n
    \n \n ^International(\'template friendsOnly label\',\'Asset_Photo\');:\n \n \n ^International(\'template friendsOnly yes\',\'Asset_Photo\');^International(\'template friendsOnly no\',\'Asset_Photo\');\n \n
    \n
    \n \n ^International(\'template location\',\'Asset_Photo\');:\n \n \n \n \n
    \n
    \n \n ^International(template view available resolutions,Asset_Photo);\n \n \n \n \">\n \n \n
    \n
    \n \n
    \n ^International(\'template keywords\',\'Asset_Photo\');\n \n \">, \n \n
    \n
    \n
    \n ^International(more details,Asset_Photo);\n
    \n \n
    rowOnerowTwo\">\n \n :\n \n \n \n \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n ^International(\'template comments title\',\'Asset_Photo\'); [^International(post,Asset_Collaboration);]\n
    \n \n
    \n \n
    \n \n
    \n
    \n \n
    \n
    \n \n \n \n
    \n
    ','GalleryFile/View',1,1,'TEId5V-jEvUULsZA0wuRuA',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n
    \n\n
    \n
    \n\">^International(\'template url_album\',\'Asset_Photo\');    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n\n\n\n
    \n
    \n ·\n^International(\'template by\',\'Asset_Gallery\');: \">\n
    \n\n
    \n
    \n^International(template view details,Asset_Photo);\n
    \n\n^International(\'template creationDate\',\'Asset_Photo\');:\n\n\n^D(\"%z %Z\",);\n\n
    \n
    \n\n^International(\'template views\',\'Asset_Photo\');:\n\n\n\n\n
    \n
    \n\n^International(\'template by\',\'Asset_Gallery\');:\n\n\n\">\n(\">^International(\'template filesForUser\', \'Asset_Photo\');)\n\n
    \n
    \n\n^International(\'template friendsOnly label\',\'Asset_Photo\');:\n\n\n^International(\'template friendsOnly yes\',\'Asset_Photo\');^International(\'template friendsOnly no\',\'Asset_Photo\');\n\n
    \n
    \n\n^International(\'template location\',\'Asset_Photo\');:\n\n\n\n\n
    \n
    \n\n^International(template view available resolutions,Asset_Photo);\n\n\n\n\">\n\n\n
    \n
    \n\n
    \n^International(\'template keywords\',\'Asset_Photo\');\n\n\">, \n\n
    \n
    \n
    \n^International(more details,Asset_Photo);\n
    \n\n
    rowOnerowTwo\">\n\n:\n\n\n\n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n^International(\'template comments title\',\'Asset_Photo\'); [^International(post,Asset_Collaboration);]\n
    \n\n
    \n\n
    \n\n
    \n
    \n\n
    \n
    \n\n\n\n
    \n
    ',0,NULL,NULL),('\n\n\n
    \n \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n \n ^International(\'template add\',\'Asset_GalleryAlbum\');\n \n ^International(\'template edit\',\'Asset_GalleryAlbum\');\n \n
    \n\n

    \n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n
    ^International(\'editForm title label\',\'Asset_GalleryAlbum\');
    ^International(\'editForm description label\',\'Asset_GalleryAlbum\');
    ^International(\'editForm othersCanAdd label\',\'Asset_GalleryAlbum\');
    \n
    \n \n
      \n \n
    1. \" class=\"galleryOrg\">\n
      \n \" href=\"?func=edit;proceed=editParent\">\" alt=\"\" />\n
      \n

      \n
      \n
      \n \n
      \n
      \n
    2. \n
      \n
    \n
    \n
    \n\n
    \n \n
    \n \n
    ','GalleryAlbum/Edit',1,1,'6X-7Twabn5KKO_AbgK3PEw',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n
    \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n\n\n\n
    \n
    \n\n^International(\'template add\',\'Asset_GalleryAlbum\');\n\n^International(\'template edit\',\'Asset_GalleryAlbum\');\n\n
    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\'editForm title label\',\'Asset_GalleryAlbum\');
    ^International(\'editForm description label\',\'Asset_GalleryAlbum\');
    ^International(\'editForm othersCanAdd label\',\'Asset_GalleryAlbum\');
    \n
    \n\n
      \n\n
    1. \" class=\"galleryOrg\">\n
      \n\" href=\"?func=edit;proceed=editParent\">\" alt=\"\" />\n
      \n

      \n
      \n
      \n\n
      \n
      \n
    2. \n
      \n
    \n
    \n
    \n
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \n \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n \n ^International(\'template add\',\'Asset_GalleryAlbum\');\n \n ^International(\'template edit\',\'Asset_GalleryAlbum\');\n \n
    \n\n

    \n\n

    \n\n \n

    ^International(\'template error happened\',\'Asset_Photo\');

    \n
      \n \n
    • \n
      \n
    \n
    \n\n \n\n \n\n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(\'template upload type\',\'Asset_GalleryAlbum\');\n ^International(\'template upload single\',\'Asset_GalleryAlbum\');\n \" class=\"adminButton\">^International(\'template upload archive\',\'Asset_GalleryAlbum\');\n
    ^International(\'editForm title label\',\'Asset_Photo\');\n \n
    ^International(\'editForm synopsis label\',\'Asset_Photo\');\n \n
    ^International(\'editForm photo new\',\'Asset_Photo\'); ^International(\'editForm photo replace\',\'Asset_Photo\');\n \n
    ^International(\'editForm keywords\',\'Asset_Photo\');\n \n
    ^International(\'editForm location\',\'Asset_Photo\');\n \n
    ^International(\'editForm friendsOnly\',\'Asset_Photo\');\n \n
    \n\n \n\n \n\n
    ','GalleryFile/Edit',1,1,'7JCTAiu1U_bT9ldr655Blw',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n\n\n\n
    \n
    \n\n^International(\'template add\',\'Asset_GalleryAlbum\');\n\n^International(\'template edit\',\'Asset_GalleryAlbum\');\n\n
    \n

    \n

    \n\n

    ^International(\'template error happened\',\'Asset_Photo\');

    \n
      \n\n
    • \n
      \n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\'template upload type\',\'Asset_GalleryAlbum\');\n^International(\'template upload single\',\'Asset_GalleryAlbum\');\n\" class=\"adminButton\">^International(\'template upload archive\',\'Asset_GalleryAlbum\');\n
    ^International(\'editForm title label\',\'Asset_Photo\');\n\n
    ^International(\'editForm synopsis label\',\'Asset_Photo\');\n\n
    ^International(\'editForm photo new\',\'Asset_Photo\'); ^International(\'editForm photo replace\',\'Asset_Photo\');\n\n
    ^International(\'editForm keywords\',\'Asset_Photo\');\n\n
    ^International(\'editForm location\',\'Asset_Photo\');\n\n
    ^International(\'editForm friendsOnly\',\'Asset_Photo\');\n\n
    \n\n\n
    ',0,NULL,NULL),('
    \r\n

    ^International(\'template addArchive title\',\'Asset_GalleryAlbum\');

    \r\n\r\n

    ^International(\'template addArchive body\',\'Asset_GalleryAlbum\');

    \r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(\'template upload type\',\'Asset_GalleryAlbum\');\r\n \" class=\"adminButton\">^International(\'template upload single\',\'Asset_GalleryAlbum\');\r\n ^International(\'template upload archive\',\'Asset_GalleryAlbum\');\r\n
    ^International(\'addArchive file\',\'Asset_GalleryAlbum\');\r\n \r\n
    ^International(\'addArchive keywords\',\'Asset_GalleryAlbum\');\r\n \r\n
    ^International(\'addArchive location\',\'Asset_GalleryAlbum\');\r\n \r\n
    ^International(\'addArchive sortBy\',\'Asset_GalleryAlbum\');
    ^International(\'addArchive friendsOnly\',\'Asset_GalleryAlbum\');
    \r\n \r\n
    \r\n \r\n
    \r\n \r\n \r\n\r\n
    ','GalleryAlbum/AddArchive',1,1,'0X4Q3tBWUb_thsVbsYz9xQ',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n

    ^International(\'template addArchive title\',\'Asset_GalleryAlbum\');

    \n

    ^International(\'template addArchive body\',\'Asset_GalleryAlbum\');

    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\'template upload type\',\'Asset_GalleryAlbum\');\n\" class=\"adminButton\">^International(\'template upload single\',\'Asset_GalleryAlbum\');\n^International(\'template upload archive\',\'Asset_GalleryAlbum\');\n
    ^International(\'addArchive file\',\'Asset_GalleryAlbum\');\n\n
    ^International(\'addArchive keywords\',\'Asset_GalleryAlbum\');\n\n
    ^International(\'addArchive location\',\'Asset_GalleryAlbum\');\n\n
    ^International(\'addArchive sortBy\',\'Asset_GalleryAlbum\');
    ^International(\'addArchive friendsOnly\',\'Asset_GalleryAlbum\');
    \n
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \n \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n ^International(template makeShortcut title,Asset_Photo);\n
    \n\n

    \n\n
    \n\n \n \n \n \n \n \n \n \n \n \n
    ^International(template makeShortcut file,Asset_Photo);
    ^International(template makeShortcut album,Asset_Photo);
    \n\n
    \n \n
    \n\n \n
    \n
    ','GalleryFile/MakeShortcut',1,1,'m3IbBavqzuKDd2PGGhKPlA',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n\n\n\n
    \n
    \n^International(template makeShortcut title,Asset_Photo);\n
    \n

    \n
    \n\n\n\n\n\n\n\n\n\n\n
    ^International(template makeShortcut file,Asset_Photo);
    ^International(template makeShortcut album,Asset_Photo);
    \n
    \n \n
    \n\n
    \n
    ',0,NULL,NULL),('
    \n \n \n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n^International(template url_delete,Asset_GalleryAlbum);\n
    \n\n

    \n\n \n\n
    ','GalleryAlbum/Delete',1,1,'UTNFeV7B_aSCRmmaFCq4Vw',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL); -INSERT INTO `template` VALUES ('
    \n \n \n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n^International(template url_delete,Asset_Photo);\n
    \n\n

    \n\n \n
    ','GalleryFile/Delete',1,1,'zcX-wIUct0S_np14xxOA-A',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','GalleryAlbum/ViewRss',1,1,'mM3bjP_iG9sv5nQb4S17tQ',1285124158,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n<tmpl_var title>\n\n\n\n\n<tmpl_var title>\n\n\n\n\n\n\n\n',0,NULL,NULL),('\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','Gallery/ListAlbumsRss',1,1,'ilu5BrM-VGaOsec9Lm7M6Q',1285124158,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n<tmpl_var title>\n\n\n\n\n<tmpl_var title>\n\n\n\n\n\n\n\n',0,NULL,NULL),('\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','Gallery/ListFilesForUserRss',1,1,'-ANLpoTEP-n4POAdRxCzRw',1285124158,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n<tmpl_var title>\n\n\n\n\n<tmpl_var title>\n\n\n\n\n\n\n\n',0,NULL,NULL),('
    \n \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \"\"\n \n \"\"\n \"\"\n \n \"\"\n
    \n
    \n
    \n\n

    \n\n
    \n ^International(\"template comment add title\",\"Asset_Photo\");\n ^International(\"template comment edit title\",\"Asset_Photo\");\n \n \n
    \n
    \n \n
    \n \n
    \n
    \n \n
    \n
    ','GalleryFile/EditComment',1,1,'OxJWQgnGsgyGohP2L3zJPQ',1285124158,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n\n\"\"\n\n\"\"\n\"\"\n\n\"\"\n
    \n
    \n
    \n

    \n
    \n^International(\"template comment add title\",\"Asset_Photo\");\n^International(\"template comment edit title\",\"Asset_Photo\");\n\n\n
    \n
    \n\n
    \n\n
    \n
    \n\n
    \n
    ',0,NULL,NULL),('\r\n\r\n\r\n\r\n^Page(title); · ^c();\r\n\r\n\r\n\r\n\r\n\r\n^AdminBar();\r\n\r\n
    \r\n

    ^c();

    \r\n ^u();\r\n
    \r\n\r\n
    \r\n \r\n
    \r\n\r\n
    \r\n ©^D(%y); ^c();\r\n
    \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n','style',1,1,'PBtmpl0000000000000111',1286336607,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n^Page(title); · ^c();\n\n\n\n\n^AdminBar();\n
    \n

    ^c();

    \n^u();\n
    \n
    \n\n
    \n
    \n©^D(%y); ^c();\n
    \n\n\n\n\n',0,NULL,'[]'),('

    \r\n \r\n

    \r\n\r\n\r\n\r\n

    \r\n\r\n\r\n \r\n \r\n\r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n\r\n
    \r\n \r\n
    ','Auth/LDAP/Account',1,1,'PBtmpl0000000000000004',1287545014,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n

    \n\n\n

    \n\n\n\n\n\n
    \n\n\n\n
    \n
    \n
    \n\n
    ',0,NULL,NULL),('

    \n \n

    \n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n\n\n \n \n\n\n\n \n \n\n
    \n\n\n\n
    \n \n
    ','Auth/LDAP/Create',1,1,'PBtmpl0000000000000005',1287545014,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n\n
    ',0,NULL,NULL),('

    \n \n

    \n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n
    \n\n\n
    \n
      \n \n
    • \">
    • \n
      \n\n
    \n
    ','Auth/LDAP/Login',1,1,'PBtmpl0000000000000006',1287545014,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n\n
    ',0,NULL,NULL),('

    \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
    \r\n\r\n\r\n
    \r\n \r\n
    \r\n','Auth/WebGUI/Account',1,1,'PBtmpl0000000000000010',1287545014,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n\n
    ',0,NULL,NULL),('

    \n\n\n \n\n\n\n\n\n\n\n \n \n\n\n\n \n \n\n\n \n \n\n\n\n \n \n\n\n\n\n \n \n\n\n\n \n\n\n \n\n
     
    \n\n\n
    \n \n
    \n','Auth/WebGUI/Create',1,1,'PBtmpl0000000000000011',1287545014,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
     
    \n\n
    \n\n
    ',0,NULL,NULL),('^International(\'50\',\'WebGUI\');: \r\n^International(\'51\',\'WebGUI\');: \r\n\r\n','Auth/WebGUI/Welcome',1,1,'PBtmpl0000000000000015',1287545014,'WebGUI::Asset::Template::HTMLTemplate',1,'^International(\'50\',\'WebGUI\');: \n^International(\'51\',\'WebGUI\');: \n',0,NULL,NULL),('^International(\'email address validation email body\',\'AuthWebGUI\');\r\n\r\n','Auth/WebGUI/Activation',1,1,'PBtmpl0000000000000016',1287545014,'WebGUI::Asset::Template::HTMLTemplate',1,'^International(\'email address validation email body\',\'AuthWebGUI\');\n',0,NULL,NULL),('

    \n \n

    \n\n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n
    \n \n \n \n
    \n \n \n \n
    \n \n \n \n
    \n \n
    \n','Auth/WebGUI/Expired',1,1,'PBtmpl0000000000000012',1287545014,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n\n
    \n\n\n\n
    \n\n\n\n
    \n\n
    \n',0,NULL,NULL),('

    \n \n

    \n\n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n
    \n\n\n
    \n \n
    ','Auth/WebGUI/Login',1,1,'PBtmpl0000000000000013',1287545014,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n\n
    ',0,NULL,NULL),('

    \n\n

    \n
    \n\n\n\n\n\n\n\n\n \n \n\n\n \n \n\n\n\n\n \n \n\n\n\n\n \n \n\n\n\n\n \n \n\n
    \n\n\n
    \n \n
    \n','Auth/WebGUI/Recovery2',1,1,'PBtmpl0000000000000014',1287545015,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n\n
    ',0,NULL,NULL),('

    \r\n\r\n

    \r\n\r\n

    \r\n\r\n
    \r\n\r\n\">\r\n\r\n         \r\n\r\n\">\r\n\r\n
    \r\n','Auth/WebGUI/Deactivate',1,1,'zaHUYsE_PgKk8hnVd8ffEQ',1287545015,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n

    \n\n

    \n
    \n\">\n         \n\">\n
    ',0,NULL,NULL),('

    \r\n\r\n

    \r\n\r\n

    \r\n\r\n
    \r\n\r\n\">\r\n\r\n         \r\n\r\n\">\r\n\r\n
    \r\n','Auth/LDAP/Deactivate',1,1,'_P4PMiraGsLTfOjK4fYQPQ',1287545015,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n

    \n\n

    \n
    \n\">\n         \n\">\n
    ',0,NULL,NULL),('^International(recover password email text1,AuthWebGUI,^u;);\n\n^International(recover password email text2,AuthWebGUI);\n\n\n\n^International(recover password email text3,AuthWebGUI);','Auth/WebGUI/RecoveryEmail',1,1,'sK_0zVw4kwdJ1sqREIsSzA',1287545015,'WebGUI::Asset::Template::HTMLTemplate',1,'^International(recover password email text1,AuthWebGUI,^u;);\n^International(recover password email text2,AuthWebGUI);\n\n^International(recover password email text3,AuthWebGUI);',0,NULL,NULL),('\n\n\n\n\">','NotifyAboutVersionTag',1,1,'lYhMheuuLROK_iNjaQuPKg',1287545015,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n',0,NULL,'[]'),('

    \n\n\n \n \n \n \n \n \n\n
    :
    \n\n\n

    \n\n\n \n \n \n \n \n \n\n
    :
    \n
    ','DataForm',1,1,'PBtmpl0000000000000085',1288747840,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n\n\n\n\n\n\n\n
    :
    \n
    \n\n

    \n\n\n\n\n\n\n\n\n
    :
    \n
    \n
    ',0,NULL,NULL),('\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n','EMS',1,1,'2rC4ErZ3c77OJzJm7O5s3w',1288747841,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n\n',0,NULL,NULL),('

    Friends for

    \n

    \">^International(back to friend manager,Account_FriendManager);

    \n\n\n
    \n

    ^International(remove friends,Account_FriendManager);

    \n\n\n\n\n\n\n\n\n\n\n\n
    ^International(remove all,Account_FriendManager);
    \n
    \n
    \n
    \n

    ^International(add new friends,Account_FriendManager);

    \n\n

    ^International(group,WebGUI);: . \">^International(view users from all groups,Account_FriendManager);

    \n
    \n\n\n

    ^International(Add Friend Managers,Account_FriendManager);:

    \n
    \n
    \n
    \n\n','Account/FriendManager/Edit',1,1,'lG2exkH9FeYvn4pA63idNg',1289967962,'WebGUI::Asset::Template::HTMLTemplate',1,'

    Friends for

    \n

    \">^International(back to friend manager,Account_FriendManager);

    \n\n\n
    \n

    ^International(remove friends,Account_FriendManager);

    \n\n\n\n\n\n\n\n\n\n\n\n
    ^International(remove all,Account_FriendManager);
    \n
    \n
    \n
    \n

    ^International(add new friends,Account_FriendManager);

    \n\n

    ^International(group,WebGUI);: . \">^International(view users from all groups,Account_FriendManager);

    \n
    \n\n\n

    ^International(Add Friend Managers,Account_FriendManager);:

    \n
    \n
    \n
    \n\n',0,NULL,NULL),('\r\n

    \r\n

    \r\n\r\n\r\n

    \r\n \">^International(\"add entry\",\"Asset_DataForm\");\r\n • \">\r\n \r\n • \" onclick=\"\">\r\n \r\n \r\n • \">\r\n • \">\r\n \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
    ^International(Entry ID,Asset_DataForm);\r\n \r\n \r\n \r\n \r\n \r\n ^International(Submission Date,Asset_DataForm);
    \">
    \r\n\r\n
    \r\n [ | | ]\r\n
    \r\n
    \r\n','DataForm/List',1,1,'PBtmpl0000000000000021',1294721945,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n

    \n\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(Entry ID,Asset_DataForm);\n\n\n\n\n\n^International(Submission Date,Asset_DataForm);
    \">
    \n\n
    \n[ | | ]\n
    \n
    ',0,NULL,'[]'),('\n\n \n\n\n \n\n\n \n\n\n \n\n
    \n \">^International(label day,Asset_Calendar);\n \">^International(label week,Asset_Calendar);\n \">^International(label month,Asset_Calendar);\n \">^International(486,WebGUI);\n \">^International(label search,Asset_Calendar);\n \n \n
    \n \n \n
    \n ^International(event details,Asset_Event);\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n
    \n
    ^International(event title,Asset_Event);
    \n
    \n
    \n \n
    \n
    \n
    ^International(location,Asset_Event);
    \n
    \n
    \n \n
    \n
    \n
    ^International(description,Asset_Event);
    \n
    \n
    \n
    \n
    ^International(scheduled,Asset_Event);
    \n
    \n
    \n \n
    \n
    \n
    ^International(related material,Asset_Event);
    \n
    \n \n
    \n
    ^International(attachments,Asset_Event);
    \n
    \n
    \n
    ','Calendar/Event',1,1,'CalendarEvent000000001',1295931508,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\">^International(label day,Asset_Calendar);\n\">^International(label week,Asset_Calendar);\n\">^International(label month,Asset_Calendar);\n\">^International(486,WebGUI);\n\">^International(label search,Asset_Calendar);\n\n
    \n\n\n
    \n^International(event details,Asset_Event);\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    ^International(event title,Asset_Event);
    \n
    \n
    \n\n
    \n
    \n
    ^International(location,Asset_Event);
    \n
    \n
    \n\n
    \n
    \n
    ^International(description,Asset_Event);
    \n
    \n
    \n
    \n
    ^International(scheduled,Asset_Event);
    \n
    \n
    \n\n
    \n
    \n
    ^International(related material,Asset_Event);
    \n
    \n\n
    \n
    ^International(attachments,Asset_Event);
    \n
    \n
    \n
    ',0,NULL,NULL),('
    \n\n\n
    _pagination\">
    \n
    \">
    \n
    \n\n
    ','Account/FriendManager/View',1,1,'64tqS80D53Z0JoAs2cX2VQ',1295931508,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n\n
    \">
    \n
    \n\n
    ',0,NULL,NULL),('\n','Calendar/List',1,1,'kj3b-X3i6zRKnhLb4ZiCLw',1295931508,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,'[]'),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n\n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n\n\n
    oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000077',1298351263,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n\n

    \n\n\">\n•\n\n\n\n\">\n\n\">\n\n•\n\n\">\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('
    \n \n

    \n
    \n\n \n

    ^International(View,Icon);

    \n
    \n\n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n wgRowOnewgRowTwo\">\n \n \">\n \n \n \n
    \n
    \n\n
    \n','Thingy/ViewThing',1,1,'ThingyTmpl000000000002',1299559129,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('
    \" class=\"image\">\n\" id=\"id\">\n\n\n
    \n
    \n\n\" alt=\"\" />\n\n\n
    ','ImageAsset',1,1,'PBtmpl0000000000000088',1300763663,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"image\">\n\" id=\"id\">\n\n
    \n
    \n\" />\n\n
    ',0,NULL,NULL),('
    \n \" id=\"id\">\n \n \n \n \n \n \n \n
    \n
    ^International(hide new content list,Asset_Dashboard);
    \n \n
    \n
    \n
    \n \n \n \n \">\n \n \n \n \n
    \n
    _div\" class=\"dragable\">\n
    \n
    \n _span\">\n \n \n \n \n \',\'\')\">\n \"\"\n \n \n \n \n \"\"\n \n \n \n \',\'\')\">\n \"\"\n \n \n \n \',\'\');\">\n \"\"\n \n \n \n
    \n
    \n \n
    _div\">\n \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n \n \n \n \n \n
    \n
    ^International(Add New Content,Asset_Dashboard);
    \n
    \n \n

    \n
    \n \n \n

    \n
    \n \n \n

    \n
    \n \n
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n \n \">\n \n \n \n \n
    \n
    _div\" class=\"dragable\">\n \n
    \n
    \n _span\">\n \n \n \n \n \',\'\')\">\n \"\"\n \n \n \n \n \"\"\n \n \n \n \',\'\')\">\n \"\"\n \n \n \n \',\'\');\">\n \"\"\n \n \n
    \n
    \n
    \n
    \n \n
    _div\">\n \n
    \n \n
    \n
    \n
    \n \n \n \n \">\n \n \n \n \n
    \n
    _div\" class=\"dragable\">\n
    \n
    \n \n _span\">\n \n \n \n \n \n \n \',\'\')\">\n \"\"\n \n \n \n \n \n \"\"\n \n \n \n \n \',\'\')\">\n \"\"\n \n \n \n \n \',\'\');\">\n \"\"\n \n \n
    \n
    \n
    \n
    \n \n
    _div\">\n \n
    \n \n
    \n
    \n
    \n \n \n \n \">\n \n \n \n \n
    \n
    _div\" class=\"dragable\">\n
    \n
    \n \n _span\">\n \n \n \n \n \n \n \',\'\')\">\n \"\"\n \n \n \n \n \n \"\"\n \n \n \n \n \',\'\')\">\n \"\"\n \n \n \n \n \',\'\');\">\n \"\"\n \n \n
    \n
    \n
    \n
    \n \n
    _div\">\n \n
    \n \n
    \n
    \n
    \n
    \n \n \n \n \n \n \n
    \n
    \n
     
    \n
    \n
    \n \n \n
    \n
    ','Dashboard',1,1,'DashboardViewTmpl00001',1300763664,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\" id=\"id\">\n\n\n\n\n\n
    \n
    ^International(hide new content list,Asset_Dashboard);
    \n
    \n
    \n
    \n\n\n\n\">\n\n\n\n\n
    \n
    _div\" class=\"dragable\">\n
    \n
    \n_span\">\n\n\n\n\n\',\'\')\">\n\"\"\n\n\n\n\n\"\"\n\n\n\n\',\'\')\">\n\"\"\n\n\n
    \n\n\',\'\');\">\n\"\"\n\n\n
    \n
    \n
    \n\n
    _div\">\n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n\n\n\n\n
    \n
    ^International(Add New Content,Asset_Dashboard);
    \n
    \n\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n
    \n
    \n\n\n\n\n\n\n\n\n
    \n\n\n\n\">\n\n\n\n\n
    \n
    _div\" class=\"dragable\">\n
    \n
    \n_span\">\n\n\n\n\n\',\'\')\">\n\"\"\n\n\n\n\n\"\"\n\n\n\n\',\'\')\">\n\"\"\n\n\n\n\',\'\');\">\n\"\"\n\n\n
    \n
    \n
    \n
    \n
    _div\">\n\n
    \n
    \n
    \n
    \n\n\n\n\">\n\n\n\n\n
    \n
    _div\" class=\"dragable\">\n
    \n
    \n\n_span\">\n\n\n\n\n\n\',\'\')\">\n\"\"\n\n\n\n\n\"\"\n\n\n\n\',\'\')\">\n\"\"\n\n\n\n\',\'\');\">\n\"\"\n\n\n
    \n
    \n
    \n
    \n
    _div\">\n\n
    \n
    \n
    \n
    \n\n\n\n\">\n\n\n\n\n
    \n
    _div\" class=\"dragable\">\n
    \n
    \n\n_span\">\n\n\n\n\n\n\',\'\')\">\n\"\"\n\n\n\n\n\"\"\n\n\n\n\',\'\')\">\n\"\"\n\n\n\n\',\'\');\">\n\"\"\n\n\n
    \n
    \n
    \n
    \n
    _div\">\n\n
    \n
    \n
    \n
    \n
    \n\n\n\n\n\n
    \n
    \n
     
    \n
    \n
    \n\n
    \n
    ',0,NULL,'[]'),('\r\n\r\n\r\n\r\n^Page(title); - ^c;\r\n\r\n\r\n\r\n\r\n\r\n\r\n^AdminBar;\r\n\r\n
    \r\n\r\n \r\n
    \r\n ^AssetProxy(style-underground/top-navigation); \r\n
    \r\n \r\n
    \r\n \r\n
    yourname
    \r\n \r\n
    \r\n \r\n

    \r\n

    \r\n
    \r\n \r\n
    \r\n\r\n
    \r\n ^AssetProxy(style-underground/side-navigation);\r\n

    ^GroupText(\"Registered Users\",\"Hello, ^@;\",\"Login\");

    \r\n
    \r\n
      \r\n
    • ^LoginToggle();
    • \r\n ^a(\"View My Account\",\"style-underground/templates/view-my-account\");\r\n ^AdminToggle(\"\",\"\",\"style-underground/templates/admintoggle-underground-admin-toggle\");\r\n
    \r\n
    \r\n

    WebGUI Links

    \r\n \r\n
    \r\n \r\n
    \r\n\r\n
    \r\n \r\n\r\n
    \r\n \r\n

    \r\n © 2006 ^c;    \r\n Design by: styleshout |\r\n Valid XHTML |\r\n CSS\r\n       \r\n \r\n

    \r\n \r\n
    \r\n \r\n\r\n\r\n','style',1,1,'Qk24uXao2yowR6zxbVJ0xA',1301973997,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n^Page(title); - ^c;\n\n\n\n\n\n^AdminBar;\n\n
    \n\n
    \n^AssetProxy(style-underground/top-navigation);\n
    \n
    \n
    yourname
    \n
    \n\n

    \n

    \n
    \n
    \n
    \n^AssetProxy(style-underground/side-navigation);\n

    ^GroupText(\"Registered Users\",\"Hello, ^@;\",\"Login\");

    \n
    \n
      \n
    • ^LoginToggle();
    • \n^a(\"View My Account\",\"style-underground/templates/view-my-account\");\n^AdminToggle(\"\",\"\",\"style-underground/templates/admintoggle-underground-admin-toggle\");\n
    \n
    \n

    WebGUI Links

    \n\n
    \n
    \n\n
    \n\n
    \n

    \n© 2006 ^c;   \nDesign by: styleshout |\nValid XHTML |\nCSS\n      \n\n

    \n
    \n\n',0,'1riOzIrN9EgfdnGFyOq-_g','[]'),(' \n \n','Navigation',1,1,'39KNX53B4nYJAyIE1lu8ZQ',1301973997,'WebGUI::Asset::Template::HTMLTemplate',1,'\n',0,NULL,NULL),(' \r\n

    \r\n
    \r\n \r\n
    \r\n
    \r\n','Navigation',1,1,'ztfi__vHJLsQDsMenrEn-w',1301973997,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n
    ',0,NULL,NULL),('
  • \">
  • ','AdminToggle',1,1,'8qyrDCNeggB4dzKiOoRuiQ',1301973997,'WebGUI::Asset::Template::HTMLTemplate',1,'
  • \">
  • ',0,NULL,NULL),('
  • \">
  • ','Macro/a_account',1,1,'M1NyNeS5jpdIsiIWFiJprw',1301973997,'WebGUI::Asset::Template::HTMLTemplate',1,'
  • \">
  • ',0,NULL,NULL),('
    \r\n \r\n

    \r\n
    \r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n
    \r\n
    \r\n\r\n\r\n
    \">\r\n
      \r\n \r\n
    1. \" style=\"width:px; height:px;\">\r\n \r\n
    2. \r\n
      \r\n
    \r\n
    \r\n\r\n \r\n\r\n
    \r\n\r\n
    ','Carousel',1,1,'CarouselTmpl0000000001',1301973997,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n

    \n
    \n\n

    \n
    \n\n
    \n
    \n\n
    \">\n
      \n\n
    1. \" style=\"width:px; height:px;\">\n\n
    2. \n
      \n
    \n
    \n\n
    \n
    ',0,NULL,'[]'),('\n\n\n\n \n WebGUI - style Greenportal\n \n\n\n \n ^AdminBar;\n
    \n
    \n
    \n ^H(^c(););\n \n
    \n
    \n\n
    \n ^AssetProxy(greenportal_navigation);\n
    \n\n
    \n
    \n Currently viewing: ^AssetProxy(greenportal_navigationtop);\n
    \n\n
    \n \n
    \n
    \n\n
    \n © 2008 ^c; | Design from Joomla! Open Source\n
    \n
    \n\n\n','style',1,1,'KKt0VB_eoQxw9xEsHsAhag',1301973998,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\nWebGUI - style Greenportal\n\n\n\n^AdminBar;\n
    \n
    \n
    \n^H(^c(););\n\n
    \n
    \n
    \n^AssetProxy(greenportal_navigation);\n
    \n
    \n
    \nCurrently viewing: ^AssetProxy(greenportal_navigationtop);\n
    \n
    \n\n
    \n
    \n
    \n© 2008 ^c; | Design from Joomla! Open Source\n
    \n
    \n\n',0,'dHuYEH6gNfRu9NHXOVFa9g',NULL),('\r\n

    \r\n
    \r\n\r\n

    \r\n
    \r\n\r\n
    \r\n
    \r\n\r\n\r\n','Navigation',1,1,'_z3ukLCqvoaUygfsbbkBzw',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n
    \n
    \n
      \n
    • Main Menu
    • \n\n\n
    • \"indent1\"\"indent2\">\n\nstyle=\"color:white;\"\n\n\nonclick=\"window.open(\'\')\" href=\"#\"\n\nhref=\"\"\n>\n\n\n
    • \n
      \n
      \n
    • User Panel
    • \n
    • ^LoginToggle;
    • \n
    • ^a(Hello‚ ^@;˜);
    • \n
    • ^AdminToggle;
    • \n
    ',0,NULL,NULL),('\r\n \r\n\r\n\r\n\r\n onclick=\"window.open(\'\')\" href=\"#\" \r\n href=\"\"\r\n \r\n >\r\n \r\n \r\n\r\n » \r\n\r\n\r\n','Navigation',1,1,'Pt38T5_MWSue2e1N36MLdw',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\nonclick=\"window.open(\'\')\" href=\"#\"\nhref=\"\"\n>\n\n\n » \n',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n
      \r\n

      Registration failed because

      \r\n \r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n\r\n \r\n

    \r\n\r\n\r\n\r\n

    \r\n \">\r\n • \">\r\n\r\n \r\n \r\n • \" onclick=\"\">\r\n \r\n\r\n \r\n • \" onclick=\"\">\r\n \r\n • \">\r\n • \">\r\n \r\n
    \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n * required\r\n \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n','DataForm',1,1,'LDcM1Iop17nF2MoSa7zo_Q',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n
      \n

      Registration failed because

      \n\n
    • \n
      \n
    \n
    \n\n\n

    \n\n

    \n\">\n• \">\n\n\n• \" onclick=\"\">\n\n\n• \" onclick=\"\">\n\n• \">\n• \">\n\n
    \n\n\n\n\n\n\n\n\n\n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n* required\n\n
    \n\n
    \n
    \n
    \n\n',0,NULL,NULL),('\n

    \n

    \n\n

    Registration Database

    \n\n\n
    \n \">\n • \">\n \n \n • \" onclick=\"\">\n \n • \">\n • \">\n \n
    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Submission Date
    \" onclick=\"return confirm(\'Are you certain that you wish to delete this data entry?\')\">\"Delete\"
    \n\n','DataForm/List',1,1,'hVF1taXj4bfd7DuL4XDMYg',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n

    \n

    Registration Database

    \n
    \n\">\n• \">\n\n\n• \" onclick=\"\">\n\n• \">\n• \">\n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
      Submission Date
    \" onclick=\"return confirm(\'Are you certain that you wish to delete this data entry?\')\">\"Delete\"
    ',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n
    \r\n \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
    \r\n

    \r\n\">Change Info      \r\n\">\r\n\r\n\r\n','DataForm',1,1,'x4-2QYRSrIB_BJfnSKKj4w',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n
    \n\n
    \n\n\n\n\n\n\n\n
    \n

    \n\">Change Info      \n\">',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n\r\n\r\n

    \r\n\r\n \r\n \">\r\n •\r\n \r\n \r\n \r\n \">\r\n \r\n \">\r\n \r\n •\r\n \r\n \">\r\n

    \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
    \">\">\">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\r\n \">\r\n by\r\n \r\n \r\n \r\n \">\r\n \r\n on @ \r\n
    \r\n\r\n\r\n
    \r\n · · \r\n
    \r\n
    \r\n','Collaboration',1,1,'423R4Y6XIt3wUzlnLo-chg',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n\n

    \n\n\">\n•\n\n\n\n\">\n\n\">\n\n•\n\n\">\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\">\">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\n\">\nby\n\n\n\n\">\n\non @ \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n
    \r\n

    \">[Back]

    \r\n
    \r\n
    \r\n \r\n \">\r\n \r\n \">\r\n \r\n
    \r\n
    \r\n\r\n\r\n
    px;\">\r\n
    Current\">\r\n \">\r\n
    \r\n \r\n
    \r\n
    \r\n\r\n
    \r\n\" alt=\"\" />\r\n
    \r\n
    \r\n
    \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n :
    \r\n
    \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n
    \r\n [ | | ]\r\n
    \r\n
    \r\n\r\n
    \r\n \r\n \"> • \r\n \r\n \r\n \"> • \r\n \r\n \r\n \"> \r\n \r\n \r\n \r\n • \">\r\n \r\n • \">\r\n \r\n \r\n • \"> \r\n \r\n • \"> \r\n \r\n \r\n \r\n \r\n • \">\r\n \r\n • \">\r\n \r\n \r\n
    \r\n\r\n','Collaboration/Thread',1,1,'oZ1Mk-zExYUyD-JsjTvaHg',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n

    \n
    \n\n
    \n\n\">\n\n\">\n\n
    \n
    \n\n\n\n\n
    \n[ | | ]\n
    \n
    \n
    \n\n\"> •\n\n\n\"> •\n\n\n\">\n\n\n\n• \">\n\n• \">\n\n\n• \">\n\n• \">\n\n\n\n\n• \">\n\n• \">\n\n\n
    ',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n

    \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n\r\n\r\n\r\n

    \r\n \r\n
    \r\n\r\n\r\n','Collaboration/PostForm',1,1,'mYwS8CZaOLMt0raaKXGZcQ',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n

    \n\n
    ',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n

    \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    class=\"odd\">\">class=\"odd\">class=\"odd\">\">class=\"odd\"> @
    \r\n
    \r\n\r\n\r\n
    \r\n · · \r\n
    \r\n
    \r\n\r\n\r\n','Collaboration/Search',1,1,'kSGR4OHsKmhLQTuLkisOww',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    class=\"odd\">\">class=\"odd\">class=\"odd\">\">class=\"odd\"> @
    \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n\n\n\n \n\n\n \n\n\n\n \n
    \n \">Day\n \">Week\n \">Month\n \">Search\n \n
     
    \n\n
    \n \">Add Event\n \">Print\n \n \n
    \n
    \n \" style=\"font-size:7pt; margin-right:12px;\">« prev\n \n \" style=\"font-size:7pt; padding-left:12px\">next » \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    active current\">\n \n \">\n \n\n \n \n \n\n /wobject/Calendar/images/more.gif\" />\n \n \n \n
    \n
    \n\n
    \" class=\"moreDisplay\">\n
    \n
      \n \n
    • \">
    • \n
      \n
    \n
    \n
    \n
    \n\n\n','Calendar/Month',1,1,'U78V5IJHVljvRTb6ydsTHg',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\">Day\n\">Week\n\">Month\n\">Search\n
     
    \n
    \n\">Add Event\n\">Print\n\n\n
    \n
    \n\" style=\"font-size:7pt; margin-right:12px;\">« prev\n \n\" style=\"font-size:7pt; padding-left:12px\">next »\n
    \n\n\n\n\n\n\n\n\n\n\n
    active current\">\n\n\">\n\n\n\n\n/wobject/Calendar/images/more.gif\" />\n\n\n
    \n
    \n\n
    \" class=\"moreDisplay\">\n
    \n\n
    \n
    \n
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n\r\n
    \r\n \" class=\"tab\">Day \r\n \" class=\"tabWeek\">Week \r\n \" class=\"tab\">Month \r\n \" class=\"tab\">Search\r\n\r\n
     
    \r\n\r\n
    \r\n \">Add Event\r\n \">Print\r\n \r\n \r\n
    \r\n
    \r\n \" style=\"margin-right:66px;\">« prev week\r\n , ~ , \r\n \" style=\"margin-left:66px\">next week » \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    curDay\"> \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n','Calendar/Week',1,1,'Xqc3qPUXoFE8dt9qocdWig',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\" class=\"tab\">Day\n\" class=\"tabWeek\">Week\n\" class=\"tab\">Month\n\" class=\"tab\">Search\n
     
    \n
    \n\">Add Event\n\">Print\n\n\n
    \n
    \n\" style=\"margin-right:66px;\">« prev week\n , ~ , \n\" style=\"margin-left:66px\">next week »\n
    \n\n\n\n\n\n
    \n
    \n
    curDay\">\n\n\n
    \n
    \n
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n \" class=\"tabDay\">Day\r\n \" class=\"tab\">Week\r\n \" class=\"tab\">Month\r\n \" class=\"tab\">Search\r\n\r\n
     
    \r\n\r\n
    \r\n \">Add Event\r\n \">Print\r\n \r\n \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    :00
    \r\n
    \r\n
      \r\n
    • \r\n \">\r\n
    • \r\n
    \r\n
    \r\n
    \r\n\r\n','Calendar/Day',1,1,'IBTb7wllSt7RxFmmvm9pkQ',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n
    \n\" class=\"tabDay\">Day\n\" class=\"tab\">Week\n\" class=\"tab\">Month\n\" class=\"tab\">Search\n
     
    \n
    \n\">Add Event\n\">Print\n\n\n
    \n
    \n\n
    \n\n\n\n\n\n
    \n
    :00
    \n
    \n\n
    \n
    ',0,NULL,NULL),('\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n \" class=\"tab\">Day\r\n \" class=\"tab\">Week\r\n \" class=\"tab\">Month\r\n \" class=\"tab\">Search\r\n\r\n
     
    \r\n \r\n
    \r\n \r\n Edit \r\n • Delete • \r\n \r\n Print\r\n
    \r\n
    \r\n \" style=\"margin-right:106px;\">« prev event\r\n Event Details\r\n \" style=\"margin-left:106px\">next event »\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n
    \r\n
    Event Title
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    Location
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    Description
    \r\n
    \r\n
    \r\n
    \r\n
    Scheduled
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    Related Material
    \r\n
    \r\n \">
    \r\n
    \r\n
    \r\n
    Attachments
    \r\n
    \r\n \"> \" />
    \r\n
    \r\n
    \r\n
    \r\n','Calendar/Event',1,1,'Z1EM7JMI_4SkyfaZffSElw',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n
    \n\" class=\"tab\">Day\n\" class=\"tab\">Week\n\" class=\"tab\">Month\n\" class=\"tab\">Search\n
     
    \n
    \n\nEdit\n• Delete •\n\nPrint\n
    \n
    \n\" style=\"margin-right:106px;\">« prev event\nEvent Details\n\" style=\"margin-left:106px\">next event »\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    Event Title
    \n
    \n
    \n\n
    \n
    \n
    Location
    \n
    \n
    \n\n
    \n
    \n
    Description
    \n
    \n
    \n
    \n
    Scheduled
    \n
    \n
    \n\n
    \n
    \n
    Related Material
    \n
    \n\">
    \n
    \n
    \n
    Attachments
    \n
    \n
    \n
    ',0,NULL,NULL),('\n\n\n

    Errors!

    \n
      \n\n
    • \n
      \n
    \n
    \n\n\n\n \n\n
    \n Event\n Recurrence\n \n \n
     
    \n
    \n\n\n\n\n \n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Event Title
    Short Title
    Location
    Description
    Start Date
    End Date
    Time
     
    Related Links
    Group to View this Event
    Attachments for this Event
    \n
    \n \n \n\n\n\n\n\n \n \n\n\n \n \n\n\n
    Recurrence Pattern
    Recurrence Range\n

    Start:

    \n

    \n

    End:

    \n
    \n
    \n\n\n\n\n','Calendar/EventEdit',1,1,'fJg7SKpGZwzSNx3_ebki1A',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n

    Errors!

    \n
      \n\n
    • \n
      \n
    \n
    \n\n\n\n\n
    \nEvent\nRecurrence\n\n\n
     
    \n
    \n\n\n\n\n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    Event Title
    Short Title
    Location
    Description
    Start Date
    End Date
    Time
     
    Related Links
    Group to View this Event
    Attachments for this Event
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    Recurrence Pattern
    Recurrence Range\n

    Start:

    \n

    \n

    End:

    \n
    \n
    \n\n',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n \">^International(label search,Asset_Calendar);\r\n
    \r\n  \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n
    \r\n
    ^International(keyword,Asset_Calendar);
    \r\n
    \r\n
    \r\n
    ^International(start date,Asset_Calendar);
    \r\n
    \r\n
    \r\n
    ^International(end date,Asset_Calendar);
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n
    \r\n ^International(search results,Asset_Calendar);\r\n ^International(page x of x,Asset_Calendar,,);\r\n
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n \" style=\"padding-left:10px\">\r\n
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n','Calendar/Search',1,1,'ihf4Rx6p72xn_nVKaIeOaw',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\">^International(label day,Asset_Calendar);\n\">^International(label week,Asset_Calendar);\n\">^International(label month,Asset_Calendar);\n\">^International(label search,Asset_Calendar);\n
    \n \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    ^International(keyword,Asset_Calendar);
    \n
    \n
    \n
    ^International(start date,Asset_Calendar);
    \n
    \n
    \n
    ^International(end date,Asset_Calendar);
    \n
    \n
    \n
    \n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    \n^International(search results,Asset_Calendar);\n^International(page x of x,Asset_Calendar,,);\n
    \n
    \n
    \n\n\n\n
    \n
    \n\n\n\n\n\n
    \n
    \n
    \n\" style=\"padding-left:10px\">\n
    \n
    \n
    \n\n\n\n
    \n
    \n
    ',0,NULL,NULL),('\" id=\"id\"> \r\n\r\n \r\n

    \r\n
    \r\n\r\n

    \">[]

    \r\n\r\n
    \r\n\r\n
    \r\n\" alt=\"\" />\r\n
    \r\n
    \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n :
    \r\n :
    \r\n : \r\n \r\n     [

    \">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />

    |

    \">\" alt=\"-\" style=\"border: 0px;vertical-align:middle;\" />

    ]\r\n
    \r\n
    \r\n \r\n : [ \"> \"> ]
    \r\n \r\n \r\n :
    \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n

    \r\n \r\n
    \r\n\r\n\r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n
    \r\n \r\n \">\r\n \r\n \r\n •\r\n \">\r\n •\r\n \">\r\n \r\n
    \r\n
    \r\n\r\n
    \r\n\r\n\r\n
    \r\n

    \r\n
    \r\n
    \r\n \r\n \">\r\n \r\n \">\r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    Current\">\r\n \">\r\n
    \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
    \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n : \r\n
    \r\n : \r\n \r\n     [

    \">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />

    |

    \">\" alt=\"-\" style=\"border: 0px;vertical-align:middle;\" />

    ]\r\n
    \r\n
    \r\n :
    \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n \r\n \">\r\n \r\n \r\n •\r\n \">\r\n •\r\n \">\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    px;\">\r\n
    Current\">\r\n \">\r\n
    \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
    \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n : \r\n
    \r\n : \r\n \r\n     [

    \">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />

    |

    \">\" alt=\"-\" style=\"border: 0px;vertical-align:middle;\" />

    ]\r\n
    \r\n
    \r\n :
    \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n \r\n \">\r\n \r\n \r\n •\r\n \">\r\n •\r\n \">\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n \r\n
    \r\n [ | | ]\r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n \r\n \"> \r\n •\r\n \r\n \r\n \r\n \">\r\n • \r\n \r\n \r\n \">\r\n •\r\n \r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \">\r\n \r\n \r\n
    \r\n
    \r\n','Collaboration/Thread',1,1,'jrWJ6nHXkqgFbml7BZ9chw',1301974000,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n

    \">[]

    \n
    \n\n
    \n\" alt=\"\" />\n
    \n
    \n:\n\n\n\n\">\n\n
    \n:
    \n:
    \n: \n\n    [

    \">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />

    |

    \">\" alt=\"-\" style=\"border: 0px;vertical-align:middle;\" />

    ]\n
    \n
    \n\n: [ \"> \"> ]
    \n\n\n:
    \n
    \n
    \n
    \n
    \n

    \n\n
    \n\n
    \n\n\n\n
    \n
    \n
    \n\n
    \n\n\">\n\n\n•\n\">\n•\n\">\n\n
    \n
    \n
    \n\n
    \n

    \n
    \n
    \n\n\">\n\n\">\n\n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n[ | | ]\n
    \n
    \n
    \n
    \n\n\">\n•\n\n\n\">\n•\n\n\n\">\n•\n\n\n\n\">\n•\n\n\">\n•\n\n\n\">\n•\n\n\">\n•\n\n\n\n\n\">\n\n\">\n\n\n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n

    \r\n\r\n\r\n\r\n \">\r\n

    \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n class=\"even\">\r\n \">
    \r\n \r\n \r\n class=\"even\" align=\"center\">\r\n class=\"even\" align=\"center\">\r\n class=\"even\" align=\"center\">\r\n class=\"even\" align=\"center\">\r\n class=\"even\">\r\n \">\r\n by\r\n \r\n \r\n \r\n \">\r\n \r\n on @ \r\n \r\n
    \r\n \r\n
    \r\n\r\n

    \r\n \r\n
    \r\n
    \r\n \r\n

    \r\n \r\n\r\n\r\n\r\n','MessageBoard',1,1,'Ys6f3vpe0y1uRcaCJ2TlFw',1301974000,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n

    \n\n\n\">\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n class=\"even\">\n\">
    \n\n\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\">\n\">\nby\n\n\n\n\">\n\non @ \n\n
    \n\n
    \n\n

    \n\n
    \n
    \n\n

    \n\n',0,NULL,NULL),('

    \" class=\"search\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n
    \n
    \n \n \" size=\"30\" maxlength=\"255\" />\n \n
    \n
    \n\n\n \n
    \n ^International(\'resultsFeedback\',Asset_Search); \n ^International(\'page\',Asset_Search); ^International(\'of\',Asset_Search); \n \n
    \n \n

    \n
    \n\n
    \n \n
    );\">
    \n
    \n
    \n
    \n\n \n
      \n
    • \n \n class=\"active\">\n \">\n \n \n
    • \n
    \n
    \n\n
    \n\n\n
    \n','Search',1,1,'PBtmpl0000000000000200',1301974000,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"search\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n
    \n
    \n\n\" size=\"30\" maxlength=\"255\" />\n\n
    \n
    \n\n\n
    \n^International(\'resultsFeedback\',Asset_Search); \n^International(\'page\',Asset_Search); ^International(\'of\',Asset_Search); \n\n
    \n\n

    \n
    \n
    \n\n
    );\">
    \n
    \n
    \n
    \n\n
      \n
    • \n\n class=\"active\">\n\">\n\n\n
    • \n
    \n
    \n
    \n\n
    ',0,NULL,'[]'),('\n\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n

    \n\n\n\n \n \n \n \n \n \n
    \n
    \n \n \n \n \n \n
    ^International(Stock Watch,Asset_StockData);\n
    \">\n ^International(Last Update,Asset_StockData);: EDT
    \n \n
    \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n qmmt_cycleqmmt_main\'>\n \n \n \n \n \n \n \n
    Name SymbolLastTickChg
    \n \')\">\n \n /\" alt=\"\" />\n _up_down\" style=\"text-align: right;whitespace:nowrap;\">
    \n
    ','StockData',1,1,'StockDataTMPL000000001',1315877144,'WebGUI::Asset::Template::HTMLTemplate',1,'\">\n\n

    \n
    \n\n

    \n
    \n\n

    \n\n\n\n\n\n\n\n\n
    \n
    \n\n\n\n\n\n
    ^International(Stock Watch,Asset_StockData);\n
    \n^International(Last Update,Asset_StockData);: EDT
    \n\n
    \n
    \n
    \n\n\n\n\n\n\n\n\n\n\nqmmt_cycleqmmt_main\'>\n\n\n\n\n\n\n\n
    Name SymbolLastTickChg
    \n\')\">\n\n/\" alt=\"\" />\n_up_down\" style=\"text-align: right;whitespace:nowrap;\">
    \n
    ',0,NULL,NULL),('\r\n

    \" class=\"editStory\">\r\n
    \r\n\r\n\r\n\r\n
    \r\n \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n
    \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n \r\n \r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n \r\n \r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n
    ^International(photo,WebGUI);
    \">\" alt=\"\" style=\"border-style:none;vertical-align:middle;\" />
    ^International(or,WebGUI);
    \r\n
    \r\n\r\n
    \r\n \r\n
    \r\n\r\n\r\n
    \r\n\r\n\r\n
    \r\n','Story/Edit',1,1,'E3tzZjzhmYoNlAyP2VW33Q',1303183716,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"editStory\">\n
    \n\n\n
    \n \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(photo,WebGUI);
    \">\" alt=\"\" style=\"border-style:none;vertical-align:middle;\"/>
    ^International(or,WebGUI);
    \n
    \n
    \n \n
    \n\n
    \n
    ',0,NULL,'[]'),('\r\n\r\n\r\n\r\n\r\n','Map/View',1,1,'9j0_Z1j3Jd0QBbY2akb6qw',1304392055,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n',0,NULL,NULL),('\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    ','MapPoint/Edit',1,1,'oHh0UqAJeY7u2n--WD-BAA',1304392055,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ',0,NULL,'[]'),('
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n,\r\n\r\n


    \r\n
    \r\n\">
    \r\n^International(phone label,Asset_MapPoint);:
    \r\n^International(fax label,Asset_MapPoint);:
    \r\n\">
    \r\n);\" />\r\n
    ','MapPoint/View',1,1,'u9vfx33XDk5la1-QC5FK7g',1304392055,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n
    \n
    \n
    \n,\n\n


    \n
    \n
    \">
    \n^International(phone label,Asset_MapPoint);:
    \n^International(fax label,Asset_MapPoint);:
    \n\">
    \n);\" />\n
    ',0,NULL,'[]'),('

    ^International(has posted to one of your subscriptions,Asset_Collaboration);

    \n\n\n\n\n\n

    ^International(attachments, Asset_Article);\n
    \n
    \n\n\n\n
    \n \n
    \n
    \n\n
    \n \n
    \n
    \n\n
    \n \n
    \n
    \n\n
    \n \n
    \n
    \n\n
    \n \n
    \n
    \n\n\n

    \">

    \n

    \">View this message on the web site.

    \n','Collaboration/Notification',1,1,'PBtmpl0000000000000027',1311652541,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
     
    ^International(has posted to one of your subscriptions,Asset_Collaboration);
    #\">#
      
    \n

    \">

    ',0,NULL,NULL),('
    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\nalt\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n
     
    ^International(remove button,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(extended price,Shop);^International(per item shipping,Shop);
    \r\n \r\n \r\n
    \r\n \r\n \r\n ^International(not applicable,Shop);\r\n
    \r\n
    \r\n
     
     
      
    ^International(Billing Address,Shop); ^International(Shipping Address,Shop);
    ^International(use same shipping as billing,Shop);
     
      
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(label help,Shop);
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(label help,Shop);
    \r\n
      
     
    ^International(tax,Shop);
    ^International(shipping,Shop);\r\n \r\n
    ^International(payment methods,PayDriver);\r\n \r\n
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
    (^International(required minimum order amount,Shop); )
      
     
    ^International(order for,Shop);
     
    \r\n\r\n\r\n
    \r\n

    ^International(50,WebGUI);\r\n^International(51,WebGUI);
    \">^International(407,WebGUI);

    \r\n
    \r\n
    \r\n','Shop/Cart',1,1,'aIpCmr9Hi__vgdZnDTz1jw',1313542961,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nalt\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
     
    ^International(remove button,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(extended price,Shop);^International(per item shipping,Shop);
    \n\n\n
    \n\n\n^International(not applicable,Shop);\n
    \n
    \n
     
     
      
    ^International(Billing Address,Shop); ^International(Shipping Address,Shop);
    ^International(use same shipping as billing,Shop);
     
      
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(label help,Shop);
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(label help,Shop);
    \n
      
     
    ^International(tax,Shop);
    ^International(shipping,Shop);\n\n
    ^International(payment methods,PayDriver);\n\n
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
    (^International(required minimum order amount,Shop); )
      
     
    ^International(order for,Shop);
     
    \n\n\n
    \n

    ^International(50,WebGUI);\n^International(51,WebGUI);
    \">^International(407,WebGUI);

    \n
    \n
    ',0,NULL,'[{\"url\":\"^Extras(/yui/build/yahoo-dom-event/yahoo-dom-event.js);\",\"type\":\"headScript\"},{\"url\":\"^Extras(/yui/build/json/json-min.js);\",\"type\":\"headScript\"},{\"url\":\"^Extras(/yui/build/connection/connection-min.js);\",\"type\":\"headScript\"},{\"url\":\"^Extras(/underscore/underscore-min.js);\",\"type\":\"headScript\"},{\"url\":\"^Extras(/shop/cart.js);\",\"type\":\"bodyScript\"}]'),('
    \r\n

    Add Address

    \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(label help,Shop);
    \r\n \r\n\r\n
    \r\n','Shop/Address',1,1,'XNd7a_g_cTvJVYrVHcx2Mw',1313542961,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n

    Add Address

    \n\n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(label help,Shop);
    \n\n
    ',0,NULL,NULL),('

    ^International(thank you message,Shop);

    \n\n\n

    \">^International(order number,Shop);

    \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(date,Shop);
    ^International(amount,Shop);
    ^International(in shop credit used,Shop);
    ^International(taxes,Shop);
    ^International(shipping method,Shop);
    ^International(shipping amount,Shop);
    ^International(shipping address,Shop);
    ^International(payment method,Shop);
    ^International(status message,Shop);
    ^International(payment address,Shop);
    \n
    \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n
    ^International(date,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(shipping address,Shop);^International(order status,Shop);^International(tracking number,Shop);
    \">
    \n ','Shop/EmailReceipt',1,1,'bPz1yk6Y9uwMDMBcmMsSCg',1313542961,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(thank you message,Shop);

    \n

    \">^International(order number,Shop);

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(date,Shop);
    ^International(amount,Shop);
    ^International(in shop credit used,Shop);
    ^International(taxes,Shop);
    ^International(shipping method,Shop);
    ^International(shipping amount,Shop);
    ^International(shipping address,Shop);
    ^International(payment method,Shop);
    ^International(status message,Shop);
    ^International(payment address,Shop);
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(date,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(shipping address,Shop);^International(order status,Shop);^International(tracking number,Shop);
    \">
    ',0,NULL,NULL),('
    \r\n \" id=\"id\">\r\n\r\n \r\n
    \r\n
    \r\n\r\n \r\n

    \r\n
    \r\n\r\n\r\n \r\n
    \r\n
    ^ViewCart;
    \r\n \">^International(continue shopping button,Shop);\r\n \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n \r\n \r\n \r\n \r\n \r\n
    \r\n','Donation',1,1,'vrKXEtluIhbmAS9xmPukDA',1313542961,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\" id=\"id\">\n\n
    \n
    \n\n

    \n
    \n\n
    \n
    ^ViewCart;
    \n\">^International(continue shopping button,Shop);\n\n\n
    \n
    \n
    \n\n\n\n\n\n
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n

    \r\n

    \">^International(continue shopping button,Shop);\r\n\r\n\r\n\r\n\r\n','FlatDiscount',1,1,'63ix2-hU0FchXGIWkG3tow',1313542961,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n\n

    \n

    \">^International(continue shopping button,Shop);\n\n',0,NULL,NULL),('

    \r\n \" id=\"id\">\r\n\r\n \r\n
    \r\n
    \r\n
    \r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n \r\n \r\n
    \r\n \r\n
    \r\n
    \r\n \r\n
    (\">)
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \n','Subscription',1,1,'eqb9sWjFEVq0yHunGV8IGw',1313542961,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\" id=\"id\">\n\n
    \n
    \n
    \n\n

    \n
    \n\n\n\n
    \n\n
    \n
    \n
    (\">)
    \n\n\n\n
    \n
    \n
    ',0,NULL,NULL),('
    \n \n
    default\">\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n
    \n','Shop/AddressBook',1,1,'3womoo7Teyy2YKFa25-MZg',1313542961,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n
    default\">\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('
    \r\n

    Cart

    \r\n
    \r\n \r\n
    ) ()
    \r\n
    \r\n
    \r\n
    \r\n ^International(total,Shop);: \r\n
    \r\n
    \r\n ^ViewCart;\r\n
    \r\n
    \r\n','Shop/MiniCart',1,1,'EBlxJpZQ9o-8VBOaGQbChA',1313542961,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n

    Cart

    \n
    \n\n
    ) ()
    \n
    \n
    \n
    \n^International(total,Shop);: \n
    \n
    \n^ViewCart;\n
    \n
    ',0,NULL,NULL),('
    \n \n
    \n
    \n\n

    ^International(order number,Shop);

    \n \n \n \n \n\n
      \n
    • ^International(date,Shop);
    • \n
    • ^International(Status,Shop);^International(Success,Shop);^International(Failed,Shop);
    • \n
    • ^International(amount,Shop);
    • \n
    • ^International(in shop credit used,Shop);
    • \n
    • ^International(taxes,Shop);
    • \n
    • ^International(shipping method,Shop);
    • \n
    • ^International(shipping amount,Shop);
    • \n
    • ^International(payment method,Shop);
    • \n
    • ^International(status message,Shop);
    • \n
    \n
    \n \n
    \n
    ^International(payment address,Shop);
    \n
    \n
    \n \n
    \n
    ^International(shipping address,Shop);
    \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(date,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(shipping address,Shop);^International(order status,Shop);^International(tracking number,Shop);
    \n \n \">\n \n \n \n
    \n \n [\">] \n \n
    \n
    \n
    \n','Shop/MyPurchasesDetail',1,1,'g8W53Pd71uHB9pxaXhWf_A',1313542961,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n
    \n
    \n

    ^International(order number,Shop);

    \n\n\n\n
      \n
    • ^International(date,Shop);
    • \n
    • ^International(Status,Shop);^International(Success,Shop);^International(Failed,Shop);
    • \n
    • ^International(amount,Shop);
    • \n
    • ^International(in shop credit used,Shop);
    • \n
    • ^International(taxes,Shop);
    • \n
    • ^International(shipping method,Shop);
    • \n
    • ^International(shipping amount,Shop);
    • \n
    • ^International(payment method,Shop);
    • \n
    • ^International(status message,Shop);
    • \n
    \n
    \n
    \n
    ^International(payment address,Shop);
    \n
    \n
    \n
    \n
    ^International(shipping address,Shop);
    \n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(date,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(shipping address,Shop);^International(order status,Shop);^International(tracking number,Shop);
    \n\">\n
    \n\n[\">]\n\n
    \n
    \n
    ',0,NULL,NULL),('\nBatch: \n\n\n
    \n\n','Operation/RedeemSubscription',1,1,'PBtmpl0000000000000053',1313542961,'WebGUI::Asset::Template::HTMLTemplate',1,'\nBatch: \n\n
    \n',0,NULL,NULL),('
    \n \n
    \n
      \n
    • \n
    \n
    \n
    \n\n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n
    ','Shop/Credentials',1,1,'itransact_credentials1',1313542961,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n
    \n
      \n
    • \n
    \n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    ',0,NULL,NULL),('

    ^International(Enter VAT numbers,TaxDriver_EU);

    \n\n\n

    \n ^International(70,WebGUI);: \n

    \n
    \n\n\n\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n\n \n
    ^International(country,WebGUI);^International(vat number,TaxDriver_EU);^International(Approved for use,TaxDriver_EU);
    ^International(138,WebGUI);^Internation(139,WebGUI);\">^International(576,WebGUI);
    \n
    \n
    \n\n

    \n ^International(Add another VAT number,TaxDriver_EU);:
    \n \n

    ','TaxDriver/EU/User',1,1,'D6cJpRcey35aSkh9Q_FPUQ',1313542961,'WebGUI::Asset::Template::HTMLTemplate',1,'

    Enter VAT numbers

    \n\n

    \nError: \n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    CountryVAT NumberApproved for use
    yesno\">delete
    \n
    \n
    \n

    \nAdd another VAT Number:
    \n\n

    ',0,NULL,NULL),('\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    \n','Shop/Credentials',1,1,'30h5rHxzE_Q0CyI3Gg7EJw',1313542961,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    ',0,NULL,NULL),('\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    \n','Shop/Credentials',1,1,'jysVZeUR0Bx2NfrKs5sulg',1313542961,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    ',0,NULL,NULL),('\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    \n','Shop/Credentials',1,1,'300AozDaeveAjB_KN0ljlQ',1313542962,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    ',0,NULL,NULL),('\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    \n','Shop/Credentials',1,1,'GqnZPB0gLoZmqQzYFaq7bg',1313542962,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    ',0,NULL,NULL),('
    \r\n

    \r\n\r\n\r\n
    \r\n
    \r\n
    ','Shop/selectGateway',1,1,'2GxjjkRuRkdUg_PccRPjpA',1313542962,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n

    \n\n
    \n
    \n
    ',0,NULL,NULL),('
    \n \n
    \n
      \n
    • \n
    \n
    \n
    \n\n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n
    ','Shop/Credentials',1,1,'Rqwgh50A3gGcOKIrdi_kxw',1313542962,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n
    \n
      \n
    • \n
    \n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    ',0,NULL,NULL),('\n

    \n

    \n

    ^International(badge holder information,Asset_EventManagementSystem);

    \n\n\n

    \n
    \n\n\n \n \n \n \n \n \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(name,Shop);
    ^International(organization,Asset_EventManagementSystem);
    ^International(address,Shop);
     
     
    ^International(city,Shop);
    ^International(state,Shop);
    ^International(code,Shop);
    ^International(country,Shop);
    ^International(phone number,Shop);
    ^International(email address,Asset_EventManagementSystem);
     
    \n
    \n
    \n
    \n
    \n
     
    \n\n\n\n\n\n\n\n\n\n\n','EMSBadge',1,1,'PBEmsBadgeTemplate0000',1313542962,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n

    \n

    ^International(badge holder information,Asset_EventManagementSystem);

    \n\n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(name,Shop);
    ^International(organization,Asset_EventManagementSystem);
    ^International(address,Shop);
     
     
    ^International(city,Shop);
    ^International(state,Shop);
    ^International(code,Shop);
    ^International(country,Shop);
    ^International(phone number,Shop);
    ^International(email address,Asset_EventManagementSystem);
    \n\n',0,NULL,NULL),('
    \n

    ^International(my purchases,Shop); · ^a(^International(Return to Account,Account););

    \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(order number,Shop);^International(amount,Shop);^International(date,Shop);^International(Status,Shop);
    \">^International(Success,Shop);^International(Failed,Shop);
    \n
    \n','Shop/MyPurchases',1,1,'2gtFt7c0qAFNU3BG_uvNvg',1315877144,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n

    ^International(my purchases,Shop); · ^a(\"Return to Account\");

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(order number,Shop);^International(amount,Shop);^International(date,Shop);^International(Status,Shop);
    \">^International(Success,Shop);^International(Failed,Shop);
    \n
    ',0,NULL,NULL); +INSERT INTO `template` VALUES ('\">','Macro/AdminToggle',1,1,'PBtmpl0000000000000036',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1,'\">',0,NULL,NULL),('\">','Macro/a_account',1,1,'PBtmpl0000000000000037',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1,'\">',0,NULL,NULL),('\">','Macro/EditableToggle',1,1,'PBtmpl0000000000000038',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1,'\">',0,NULL,NULL),('\">','Macro/GroupAdd',1,1,'PBtmpl0000000000000040',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1,'\">',0,NULL,NULL),('\">','Macro/GroupDelete',1,1,'PBtmpl0000000000000041',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1,'\">',0,NULL,NULL),('\">','Macro/H_homeLink',1,1,'PBtmpl0000000000000042',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1,'\">',0,NULL,NULL),('\">','Macro/LoginToggle',1,1,'PBtmpl0000000000000043',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1,'\">',0,NULL,NULL),('\">','Macro/r_printable',1,1,'PBtmpl0000000000000045',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1,'\">',0,NULL,NULL),('\">','Macro/File',1,1,'PBtmpl0000000000000091',1129049189,'WebGUI::Asset::Template::HTMLTemplate',1,'\">',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n
    /opaque.gif);\">\n \n
    \n\n\n\n
    /opaque.gif);\">\n \n
    \n
    \n
    \n','Shortcut',1,1,'PBtmpl0000000000000140',1129573244,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n
    /opaque.gif);\">\n\n
    \n\n\n\n
    /opaque.gif);\">\n\n
    \n
    \n
    ',0,NULL,NULL),('

    \n\n\n
    \n \n
    \n
    \n
    :
    \n
    \n
    \n
    \n
    \n\n\n
    \n
    \n
    \n \n
    \n
    \n
    \n \n
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n','AdminConsole',1,1,'PBtmplHelp000000000001',1147642410,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n
    \n\n
    \n
    \n
    :
    \n
    \n
    \n
    \n
    \n\n
    \n
    \n
    \n\n
    \n
    \n
    \n\n
    \n
    \n
    \n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n

    \n\n\n\n \">\n

    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n class=\"even\">\n \">
    \n \n \n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\">\n \">\n by\n \n \n \n \">\n \n on @ \n \n
    \n \n
    \n\n

    \n \n
    \n
    \n \n

    \n \n\n\n\n','MessageBoard',1,1,'PBtmpl0000000000000047',1147642414,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n

    \n\n\n\">\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n class=\"even\">\n\">
    \n\n\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\">\n\">\nby\n\n\n\n\">\n\non @ \n\n
    \n\n
    \n\n

    \n\n
    \n
    \n\n

    \n\n',0,NULL,NULL),('\nThis is the Manager\'s View\n\n','TimeTracking_manager',1,1,'TimeTrackingTMPL000002',1147642417,'WebGUI::Asset::Template::HTMLTemplate',1,'This is the Manager\'s View',0,NULL,NULL),('

    \n\n

    \n\n

    \n\n
    \n\n\">\n\n          \n\n\">\n\n
    \n','prompt',1,1,'PBtmpl0000000000000057',1147642418,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n

    \n\n

    \n
    \n\">\n         \n\">\n
    ',0,NULL,NULL),('\">\" alt=\"\" style=\"border-style:none;vertical-align:middle;\" />()','Macro/File',1,1,'PBtmpl0000000000000107',1147642420,'WebGUI::Asset::Template::HTMLTemplate',1,'\">\" alt=\"\" style=\"border-style:none;vertical-align:middle;\" />()',0,NULL,NULL),('

    RandomThread macro debug output:

    \n
    \n
    approve.url:
    \n
    assetId:
    \n
    assetSize:
    \n\n
    <tmpl_loop attachment_loop>:
    \n
    \n
    filename:
    \n
    icon:
    \n
    isImage:
    \n
    thumbnail:
    \n
    url:
    \n</tmpl_loop>\n\n\n
    attachment.icon:
    \n
    attachment.thumbnail:
    \n
    attachment.url:
    \n
    className:
    \n
    content:
    \n
    contentType:
    \n
    createdBy:
    \n
    creationDate:
    \n
    dateSubmitted:
    \n
    dateSubmitted.human:
    \n
    dateUpdated:
    \n
    dateUpdated.human:
    \n
    delete.url:
    \n
    deny.url:
    \n
    edit.url:
    \n
    encryptPage:
    \n
    endDate:
    \n
    extraHeadTags:
    \n
    groupIdEdit:
    \n
    groupIdView:
    \n
    hasRated:
    \n
    image.url
    \n
    image.thumbnail
    \n
    isHidden:
    \n
    isLocked:
    \n
    isLockedBy:
    \n
    isMarkedRead:
    \n
    isPackage:
    \n
    isPrototype:
    \n
    isSticky:
    \n
    isSystem:
    \n
    lastPostDate:
    \n
    lastPostId:
    \n
    lineage:
    \n
    menuTitle:
    \n
    newWindow:
    \n
    ownerUserId:
    \n
    parentId:
    \n
    rate.url.1:
    \n
    rate.url.2:
    \n
    rate.url.3:
    \n
    rate.url.4:
    \n
    rate.url.5:
    \n
    rating:
    \n
    rating.value:
    \n
    replies:
    \n
    reply.url:
    \n
    reply.withquote.url:
    \n
    revisedBy:
    \n
    revisionDate:
    \n
    startDate:
    \n
    state:
    \n
    stateChanged:
    \n
    stateChangedBy:
    \n
    status:
    \n
    storageId:
    \n
    subscriptionGroupId:
    \n
    synopsis:
    \n
    tagId:
    \n
    threadId:
    \n
    title:
    \n
    title.short:
    \n
    url:
    \n
    user.canEdit:
    \n
    user.isPoster:
    \n
    userDefined1:
    \n
    userDefined2:
    \n
    userDefined3:
    \n
    userDefined4:
    \n
    userDefined5:
    \n
    userId:
    \n
    userProfile.url:
    \n
    username:
    \n
    views:
    \n
    \n','Macro/RandomThread',1,1,'WVtmpl0000000000000001',1147642426,'WebGUI::Asset::Template::HTMLTemplate',1,'

    RandomThread macro debug output:

    \n
    \n
    approve.url:
    \n
    assetId:
    \n
    assetSize:
    \n
    <tmpl_loop attachment_loop>:
    \n
    \n
    filename:
    \n
    icon:
    \n
    isImage:
    \n
    thumbnail:
    \n
    url:
    \n</tmpl_loop>\n\n
    attachment.icon:
    \n
    attachment.thumbnail:
    \n
    attachment.url:
    \n
    className:
    \n
    content:
    \n
    contentType:
    \n
    createdBy:
    \n
    creationDate:
    \n
    dateSubmitted:
    \n
    dateSubmitted.human:
    \n
    dateUpdated:
    \n
    dateUpdated.human:
    \n
    delete.url:
    \n
    deny.url:
    \n
    edit.url:
    \n
    encryptPage:
    \n
    endDate:
    \n
    extraHeadTags:
    \n
    groupIdEdit:
    \n
    groupIdView:
    \n
    hasRated:
    \n
    image.url
    \n
    image.thumbnail
    \n
    isHidden:
    \n
    isLocked:
    \n
    isLockedBy:
    \n
    isMarkedRead:
    \n
    isPackage:
    \n
    isPrototype:
    \n
    isSticky:
    \n
    isSystem:
    \n
    lastPostDate:
    \n
    lastPostId:
    \n
    lineage:
    \n
    menuTitle:
    \n
    newWindow:
    \n
    ownerUserId:
    \n
    parentId:
    \n
    rate.url.1:
    \n
    rate.url.2:
    \n
    rate.url.3:
    \n
    rate.url.4:
    \n
    rate.url.5:
    \n
    rating:
    \n
    rating.value:
    \n
    replies:
    \n
    reply.url:
    \n
    reply.withquote.url:
    \n
    revisedBy:
    \n
    revisionDate:
    \n
    startDate:
    \n
    state:
    \n
    stateChanged:
    \n
    stateChangedBy:
    \n
    status:
    \n
    storageId:
    \n
    subscriptionGroupId:
    \n
    synopsis:
    \n
    tagId:
    \n
    threadId:
    \n
    title:
    \n
    title.short:
    \n
    url:
    \n
    user.canEdit:
    \n
    user.isPoster:
    \n
    userDefined1:
    \n
    userDefined2:
    \n
    userDefined3:
    \n
    userDefined4:
    \n
    userDefined5:
    \n
    userId:
    \n
    userProfile.url:
    \n
    username:
    \n
    views:
    \n
    ',0,NULL,NULL),('\n

    \n
    \n \n\n

    \n
    \n \n\n \n \n \n       \n \n class=\"navOn\"
    class=\"navOn\">\n  \n \n onclick=\"window.open(\'\')\" href=\"#\" href=\"\"
    >\n \n  \n
    \n \n\n
    \n','Navigation',1,1,'stevenav00000000000001',1147642499,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n\n\n      \n\n class=\"navOn\"
    class=\"navOn\">\n \n\nonclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n\n \n
    \n
    \n
    ',0,NULL,NULL),('\n

    \n
    \n \n\n

    \n
    \n \n\n \n \n \n       \n \n \n class=\"navOn\" class=\"navOn\">\n  \n \n onclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n \n  \n \n \n \n','Navigation',1,1,'PBnav000000style01lvl2',1147642499,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n\n\n      \n\n\n class=\"navOn\" class=\"navOn\">\n \n\nonclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n\n \n\n\n',0,NULL,NULL),('
    \n\n \n
    \n
    \n
    \n
    \n \n \n \n

    \">

    \n
    \n\n \n \">.\n \">\n \n \n \n
    \n
    \n\n','Macro/L_loginBox',1,1,'PBtmpl0000000000000044',1148579524,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n\n
    \n
    \n
    \n
    \n\n\n\n

    \">

    \n
    \n\n\n \">.\n\">\n\n\n\n
    \n
    ',0,NULL,NULL),('
    \n\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \">\n \n\n \n \">.\n \">\n \n
    \n
    \n
    \n
    \n\n','Macro/L_loginBox',1,1,'PBtmpl0000000000000092',1148579524,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\">\n \n\n\n \">.\n\">\n\n
    \n
    \n
    \n
    ',0,NULL,NULL),('\">\" style=\"border-style:none;vertical-align:middle;\" alt=\"\" />\n','Macro/File',1,1,'PBtmpl0000000000000039',1154535073,'WebGUI::Asset::Template::HTMLTemplate',1,'\">\" style=\"border-style:none;vertical-align:middle;\" alt=\"\" />',0,NULL,NULL),('\n\n\n class=\"odd\">\n \n \n \n \n\n
    /\">\n \" />\n \n (\'\', \'\')\">/\" style=\"border-style:none;\" alt=\"\" title=\"\" />\n
    \n','ProjectManager_resourceList',1,1,'ProjectManagerTMPL0006',1157679165,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\nclass=\"odd\">\n\n\n\n\n\n
    /\">\n \" />\n\n(\'\', \'\')\">/\" style=\"border-style:none;\" alt=\"\" title=\"\" />\n
    ',0,NULL,NULL),('\n\n
    \n \n \n
    px;top:px;\">♦
    \n
    \n
    px;top:px;width:px;background-color:\">\n
    %;\">
    \n \n
    \n
    \n \n
    px;top:3px;margin-top:-3px;\">
    \n
    \n
    \n
    \n
    \n \" id=\"projectTableWidth\">\n \" id=\"projectScrollPercentWidth\">\n px;z-index:1;\">\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \" class=\"monthName\" style=\"height:20px;\">
    \" class=\"empty\" style=\"height:21px;\"> 
    \n
    \n
    \n\n','ProjectManager_gantt',1,1,'ProjectManagerTMPL0003',1159989349,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n\n\n
    px;top:px;\">♦
    \n
    \n
    px;top:px;width:px;background-color:\">\n
    %;\">
    \n\n
    \n
    \n\n
    px;top:3px;margin-top:-3px;\">
    \n
    \n
    \n
    \n
    \n\" id=\"projectTableWidth\">\n\" id=\"projectScrollPercentWidth\">\npx;z-index:1;\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \" class=\"monthName\" style=\"height:20px;\">
    \" class=\"empty\" style=\"height:21px;\"> 
    \n
    \n
    ',0,NULL,NULL),('

    \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
    \n
    \n\n\n\n','InOutBoard/Report',1,1,'IOB0000000000000000002',1166019641,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    \n
    ',0,NULL,NULL),('\n\n \n

    \n
    \n
    \n\n\n
      \n
    • \n
    \n
    \n\n\n \">\n\n \n \n \n \n \n \n','ZipArchiveAsset',1,1,'ZipArchiveTMPL00000001',1169738426,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n

    \n
    \n
    \n\n
      \n
    • \n
    \n
    \n\n\">\n\n\n\n\n\n\n',0,NULL,NULL),('\" id=\"id\">\n\n

    \n
    \n\n \n

    \n
    \n\n
    \n \n

    \n
    \n\n
    \n\n \">\n\n\n \n  · \n \n \">\n\n
    \n\n \n
    \n \n
    \n
    \n \n \n \n \n \n \n \n class=\"odd\">\n class=\"odd\">\n class=\"odd\">\n class=\"odd\">\n \n \n \n

    \n \n \n\n','InOutBoard',1,1,'IOB0000000000000000001',1169795123,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n
    \n\n

    \n
    \n
    \n\n\">\n\n\n\n · \n\n\">\n\n
    \n\n
    \n\n
    \n
    \n\n\n\n\n\n\n class=\"odd\">\n class=\"odd\">\n class=\"odd\">\n class=\"odd\">\n\n\n\n

    ',0,NULL,NULL),('\n\n\n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n\n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n','SQLReport/Download',1,1,'SQLReportDownload00001',1171466654,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\n\n\n\n\n\n
     \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\n\n\n\n\n\n
     \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\n\n\n\n\n\n
     \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\n\n\n\n\n\n
     \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('\n

    \n\n\n

    \n \">
    \n

    \n

    \n
    \n\n

    \n\n','newsletter',1,1,'newsletter000000000001',1185754569,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n

    \n\">
    \n

    \n

    \n
    \n

    ',0,NULL,NULL),('\n\n

    \n
    \n\n\n

    \n
    \n\n\n
    \n \n
    \n
    \n\n\n\n

    \">

    \n\n\n\n\n','TimeTracking_user',1,1,'TimeTrackingTMPL000001',1201205738,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n
    \n\n
    \n
    \n\n

    \">

    \n\n\n',0,NULL,NULL),('
    \r\n \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
    \r\n
      \r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n
    \r\n © Plain Black 2006\r\n
    \r\n','Calendar/Print/Month',1,1,'CalendarPrintMonth0001',1204890714,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n \n
    \n\n\n\n\n\n\n\n
    \n
      \n
    • \n
      \n
    \n
    \n
    \n© Plain Black 2006\n
    ',0,NULL,NULL),('
    \r\n   -   \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
    \r\n
      \r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n
    \r\n © Plain Black 2006\r\n
    \r\n','Calendar/Print/Week',1,1,'CalendarPrintWeek00001',1204890714,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n   -   \n
    \n\n\n\n\n\n\n\n
    \n
      \n
    • \n
      \n
    \n
    \n
    \n© Plain Black 2006\n
    ',0,NULL,NULL),('
    \r\n \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
    :00\r\n
      \r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n
    \r\n © Plain Black 2006\r\n
    \r\n','Calendar/Print/Day',1,1,'CalendarPrintDay000001',1204890714,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n \n
    \n\n\n\n\n\n\n\n
    :00\n
      \n
    • \n
      \n
    \n
    \n
    \n© Plain Black 2006\n
    ',0,NULL,NULL),('\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \" alt=\"\" />\r\n
    \r\n
     
    \r\n\r\n
    \r\n X\r\n
    \r\n
    \r\n
    \r\n
    °F
    \r\n

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\">\r\n
    \"The
    \r\n','WeatherData',1,1,'WeatherDataTmpl0000001',1210711353,'WebGUI::Asset::Template::HTMLTemplate',1,'\">\n\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n
    \" alt=\"\" />\n
    \n
     
    \n
    \nX\n
    \n
    \n
    \n
    °F
    \n

    \n
    \n\n\n\n\n\n
    \n\">\n
    \"The
    ',0,NULL,NULL),('
    \r\n \r\n
    \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
    \r\n
    ^International(location,Asset_Event);
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    ^International(description label,Asset_Event);
    \r\n
    \r\n
    \r\n
    \r\n
    ^International(scheduled,Asset_Event);
    \r\n
    \r\n
    \r\n ,\r\n \r\n \r\n : , \r\n \r\n \r\n : \r\n
    \r\n
    \r\n
    ^International(related material,Asset_Event);
    \r\n
    \r\n \">
    \r\n
    \r\n
    \r\n','Calendar/Print/Event',1,1,'CalendarPrintEvent0001',1215396964,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    ^International(location,Asset_Event);
    \n
    \n
    \n\n
    \n
    \n
    ^International(description label,Asset_Event);
    \n
    \n
    \n
    \n
    ^International(scheduled,Asset_Event);
    \n
    \n
    \n,\n\n\n: ,\n\n\n: \n
    \n
    \n
    ^International(related material,Asset_Event);
    \n
    \n\">
    \n
    \n
    ',0,NULL,NULL),('\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n\r\n\r\n\r\n
    \r\n\r\n \r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
    _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
    \r\n\r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n
     
    \r\n\r\n\r\n
    \r\n\r\n \r\n\r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
    _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
    \r\n\r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n \r\n\r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
    _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
    \r\n\r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n
     
    \r\n\r\n\r\n
    \r\n\r\n \r\n\r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
    _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
    \r\n\r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n
     
    \r\n \r\n
    \r\n','Layout',1,1,'PBtmpl0000000000000094',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n

    \n
    \n\n

    \n
    \n\n\n\n\n
    \n\n\n\n\n\n\">\n\n\n\n\n\n
    _div\" class=\"dragable uncommitted-asset\">\n\n
    \n\n
    \n
    \n
    \n\n
     
    \n\n
    \n\n\n\n\n\n\">\n\n\n\n\n\n
    _div\" class=\"dragable uncommitted-asset\">\n\n
    \n\n
    \n
    \n
    \n\n\n
    \n\n\n\n\n\n\">\n\n\n\n\n\n
    _div\" class=\"dragable uncommitted-asset\">\n\n
    \n\n
    \n
    \n
    \n\n
     
    \n\n
    \n\n\n\n\n\n\">\n\n\n\n\n\n
    _div\" class=\"dragable uncommitted-asset\">\n\n
    \n\n
    \n
    \n
    \n\n\n
     
    \n\n
    ',0,NULL,NULL),('
    \r\n
    \r\n
    Add/Edit Task
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
     
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
         
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n :

    \r\n \r\n \" href=\"\" target=\"_new\" onclick=\"taskEdit_searchPopup(this.href); return false;\">\" alt=\"\" src=\"/users.gif\" />     \r\n \" href=\"\" target=\"_new\" onclick=\"taskEdit_searchPopup(this.href); return false;\">\" alt=\"\" src=\"/groups.gif\" /> \r\n \r\n
    \r\n
    \r\n\r\n
    \r\n
    \n','ProjectManager_editTask',1,1,'ProjectManagerTMPL0004',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n
    Add/Edit Task
    \n
    \n\n
    \n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
     
    \n\n\n\n\n\n\n\n\n\n\n\n
      
    \n
    \n\n\n\n\n\n\n\n\n\n
         
    \n
    \n\n\n\n\n\n\n\n\n\n
      
    \n
    \n\n\n\n\n\n\n\n\n\n
    \n:

    \n\n\" href=\"\" target=\"_new\" onclick=\"taskEdit_searchPopup(this.href); return false;\">\" alt=\"\" src=\"/users.gif\" />     \n\" href=\"\" target=\"_new\" onclick=\"taskEdit_searchPopup(this.href); return false;\">\" alt=\"\" src=\"/groups.gif\" /> \n\n
    \n
    \n\n
    \n
    ',0,NULL,NULL),('
    \r\n\r\n\r\npx;\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
     Task NameDurationStartFinishPred\" valign=\"top\" id=\"scrolltd\" style=\"border-style:none;width:%;\">\r\n
    \r\n \r\n
    \r\n
     
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n
     
     
    \r\n\r\n\r\n\r\n
    \n','ProjectManager_project',1,1,'ProjectManagerTMPL0002',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n\npx;\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n
     Task NameDurationStartFinishPred\" valign=\"top\" id=\"scrolltd\" style=\"border-style:none;width:%;\">\n
    \n\n
    \n
     
    \n\n\n\n\n\n\n
     
     
    \n\n\n
    ',0,NULL,NULL),('\n

    ^International(my subscriptions,Asset_Newsletter);

    \n\n\n

    ^International(newsletter categories,Asset_Newsletter);

    \n\n


    \n

    \n \n
    \n
    \n

    \n
    \n\n\n\n','newsletter/mysubscriptions',1,1,'newslettersubscrip0001',1221692339,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(my subscriptions,Asset_Newsletter);

    \n\n

    ^International(newsletter categories,Asset_Newsletter);

    \n\n


    \n

    \n\n
    \n
    \n

    \n
    \n\n',0,NULL,NULL),('\r\n
    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n
    \r\n\r\n \r\n
    \" class=\"yuimenubar\">\r\n
    \r\n
      \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
  • onclick=\"window.open(this.href); return false;\" href=\"\">\r\n \r\n
    \r\n
    \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n
  • \r\n \r\n
    \r\n\r\n\r\n','Navigation',1,1,'stevecoolmenu000000001',1224116942,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n
    \n\n

    \n
    \n\n

    \n
    \n
    \n\n\n
    \" class=\"yuimenubar\">\n
    \n
      \n\n\n
    \n
    \n
    \n\n
    \n
  • onclick=\"window.open(this.href); return false;\" href=\"\">\n\n
    \n
    \n
      \n\n\n\n\n\n\n
    \n\n
  • \n\n
    \n\n',0,NULL,NULL),('
    \r\n \r\n

    \r\n
    \r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n
    \r\n
    \r\n\r\n \r\n \r\n\r\n \r\n
      \r\n \r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    wgRowOnewgRowTwo label\" valign=\"top\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n wgRowOnewgRowTwo\" valign=\"top\" colspan=\"2\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n *\r\n \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n\r\n','Thingy/EditThing',1,1,'ThingyTmpl000000000003',1224518002,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n

    \n
    \n\n

    \n
    \n\n
    \n
    \n\n\n
      \n\n
    • \n
      \n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    wgRowOnewgRowTwo label\" valign=\"top\">\n\n\n\n\n\n\nwgRowOnewgRowTwo\" valign=\"top\" colspan=\"2\">\n\n\n\n
    \n
    \n\n\n\n\n\n*\n\n\n
    \n
    \n
    \n
    \n\n
    \n
    ',0,NULL,NULL),('
    \r\n

    \r\n  :
    \r\n  
    \r\n  
    \r\n  \r\n

    \r\n\r\n \r\n

    \r\n  :
    \r\n \r\n \" title=\"Link to profile\">
    \r\n
    \r\n

    \r\n
    \r\n
    \r\n
    \r\n\r\n','Macro/UsersOnline',1,1,'h_T2xtOxGRQ9QJOR6ebLpQ',1224616545,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n

    \n :
    \n 
    \n 
    \n \n

    \n\n\n

    \n :
    \n\n\" title=\"Link to profile\">
    \n
    \n

    \n
    \n
    \n
    ',0,NULL,NULL),('
    \r\n

    \r\n  :
    \r\n  
    \r\n  
    \r\n  \r\n

    \r\n

    \r\n  :
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n
    \" alt=\"Avatar of \"/> \" title=\"Link to profile\">

    \r\n

    \r\n

    \r\n  :
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n

    \r\n

    \r\n
    \r\n\r\n','Macro/UsersOnline',1,1,'4Ekp0kJoJllRRRo_J1Rj6w',1224616672,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n

    \n :
    \n 
    \n 
    \n \n

    \n

    \n :
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \" alt=\"Avatar of \"/> \" title=\"Link to profile\">

    \n

    \n

    \n :
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n

    \n

    \n
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n

    \r\n\r\n\r\n\r\n\r\n\r\n\">\r\n\r\n\r\n | \r\n\r\n
    \r\n
    \r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\');\r\n\">\r\n\">\r\n\">
    \r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n
    ^International(\'No users message\',\'Asset_UserList\');
    \r\n\r\n

    \r\n · · \r\n
    \r\n
    ','UserList',1,1,'UserListTmpl0000000001',1228125743,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n

    \n\n\n\n\n\">\n\n\n | \n\n
    \n
    \n
    \n\n
    \n\n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\');\n\">\n\">\n\">
    \n\n^International(\'Field not public message\',\'Asset_UserList\');\n\n\n\n\n\n^International(\'Field not public message\',\'Asset_UserList\');\n\n\n\n\n\n^International(\'Field not public message\',\'Asset_UserList\');\n\n\n\n
    ^International(\'No users message\',\'Asset_UserList\');
    \n\n

    \n · · \n
    \n
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n

    \r\n\r\n\r\n
    \r\n
    \r\n\r\n:
    \r\n:
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\');\r\n\">\r\n\">\r\n\">\r\n\">
    \r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n
    ^International(\'No users message\',\'Asset_UserList\');
    \r\n\r\n

    \r\n · · \r\n
    \r\n
    ','UserList',1,1,'UserListTmpl0000000003',1228125758,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n

    \n\n
    \n
    \n\n:
    \n:
    \n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\');\n\">\n\">\n\">\n\">
    \n\n^International(\'Field not public message\',\'Asset_UserList\');\n\n\n\n\n\n^International(\'Field not public message\',\'Asset_UserList\');\n\n\n\n\n\n^International(\'Field not public message\',\'Asset_UserList\');\n\n\n\n\n\n^International(\'Field not public message\',\'Asset_UserList\');\n\n\n\n
    ^International(\'No users message\',\'Asset_UserList\');
    \n\n

    \n · · \n
    \n
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n

    \r\n\r\n\r\n
    \r\n
    \r\n\r\n\r\n
    \r\n^International(\'search in label\',\'Asset_UserList\');
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\');\r\n\">\r\n\">\r\n\">
    \r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n
    ^International(\'No users message\',\'Asset_UserList\');
    \r\n\r\n

    \r\n · · \r\n
    \r\n
    ','UserList',1,1,'UserListTmpl0000000002',1228125752,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n

    \n\n
    \n
    \n\n\n
    \n^International(\'search in label\',\'Asset_UserList\');
    \n
    \n
    \n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\');\n\">\n\">\n\">
    \n\n^International(\'Field not public message\',\'Asset_UserList\');\n\n\n\n\n\n^International(\'Field not public message\',\'Asset_UserList\');\n\n\n\n\n\n^International(\'Field not public message\',\'Asset_UserList\');\n\n\n\n
    ^International(\'No users message\',\'Asset_UserList\');
    \n\n

    \n · · \n
    \n
    ',0,NULL,NULL),('\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \">\n \n \n \n \n \n \n \n \n \n \n \n \n
     
    /delete.gif\" border=\"0\" onclick=\"removeRow(\'\')\" style=\"cursor:pointer\" alt=\"delete\" />
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    \" class=\"PM_blueLink\"> ^International(last week,Asset_TimeTracking);\" class=\"PM_blueLink\">^International(next week,Asset_TimeTracking);
     
    \n \n \n \" onclick=\"addRow();\" />   \" />\n
    \n
    \n\n\n\n \n \">\n \n \n \n \n \n \n \n \n
    /delete.gif\" border=\"0\" onclick=\"removeRow()\" style=\"cursor:pointer\" alt=\"delete\" />
    \n
    ','TimeTracking_row',1,1,'TimeTrackingTMPL000003',1229311434,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\">\n\n\n\n\n\n\n\n\n\n\n\n\n
     
    /delete.gif\" border=\"0\" onclick=\"removeRow(\'\')\" style=\"cursor:pointer\" alt=\"delete\" />
    \n\n\n\n\n\n\n\n\n\n\n\n\n
    \" class=\"PM_blueLink\"> ^International(last week,Asset_TimeTracking);\" class=\"PM_blueLink\">^International(next week,Asset_TimeTracking);
     
    \n\n\n\" onclick=\"addRow();\" />   \" />\n
    \n
    \n\n\n\n\">\n\n\n\n\n\n\n\n\n
    /delete.gif\" border=\"0\" onclick=\"removeRow()\" style=\"cursor:pointer\" alt=\"delete\" />
    \n
    ',0,NULL,NULL),('

    Calendar

    \r\n\r\n\r\n

    \r\n \r\n ^International(New Year,Asset_Calendar);,\r\n \r\n \r\n ^International(New Month,Asset_Calendar);,\r\n \r\n \r\n ^International(New Day,Asset_Calendar);\r\n \r\n

    \r\n\r\n

    \">

    \r\n \r\n

    \r\n\r\n
    \r\n\r\n\r\n \"><< ^International(previous page,Asset_Calendar);\r\n\r\n\r\n \">^International(next page,Asset_Calendar); >>\r\n','Calendar/Print/List',1,1,'uRL9qtk7Rb0YRJ41LmHOJw',1229311072,'WebGUI::Asset::Template::HTMLTemplate',1,'

    Calendar

    \n\n

    \n\n^International(New Year,Asset_Calendar);,\n\n\n^International(New Month,Asset_Calendar);,\n\n\n^International(New Day,Asset_Calendar);\n\n

    \n

    \">

    \n\n

    \n
    \n\n\"><< ^International(previous page,Asset_Calendar);\n\n\n\">^International(next page,Asset_Calendar); >>\n',0,NULL,NULL),('\n\n\n<tmpl_var title>\n\n\n/taskEdit.css\" />\n\n\n
    \">\n\" />\n\n\" />\n\" />\n
    \n
    \" size=\"20\" class=\"inputBox\" />\n\n
    \n\n

    \n

    \n','ProjectManager_resourcePopup',1,1,'ProjectManagerTMPL0005',1229579830,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n<tmpl_var title>\n\n\n/taskEdit.css\" />\n\n\n
    \">\n\" />\n\n\" />\n\" />\n
    \n
    \" size=\"20\" class=\"inputBox\" />\n\n
    \n

    \n

    \n',0,NULL,NULL),('\n

    \n
    \n\n\n

    \n
    \n\n\n
    \n \n
    \n
    \n\n\n\n\n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \"> \n
    \">
    \n \">\n \n
    \n
    %;\">
    \n
    %
    \n
    \n
    \n \n \">/edit.gif\" style=\"border-style:none;\" title=\"\" alt=\"^International(edit,Asset);\" /> \n \'));\">/delete.gif\" style=\"border-style:none;\" title=\"\" alt=\"^International(delete,Asset);\" />\n
    ','ProjectManager_dashboard',1,1,'ProjectManagerTMPL0001',1229579830,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n
    \n\n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\"> \n
    \">
    \n\">\n\n
    \n
    %;\">
    \n
    %
    \n
    \n
    \n\n\">/edit.gif\" style=\"border-style:none;\" title=\"\" alt=\"^International(edit,Asset);\" /> \n\'));\">/delete.gif\" style=\"border-style:none;\" title=\"\" alt=\"^International(delete,Asset);\" />\n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n

    \n\n\n\n \n \n \n \n \n ^International(Error: Search string,Asset_HttpProxy); ^International(not found in content,Asset_HttpProxy);.\n \n\n\n\n\n\n \n \n \n \n \n ^International(Warning: Ending search point,Asset_HttpProxy); ^International(not found in content,Asset_HttpProxy);.\n \n','HttpProxy',1,1,'PBtmpl0000000000000033',1230159454,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n

    \n\n\n\n\n\n\n\n^International(Error: Search string,Asset_HttpProxy); ^International(not found in content,Asset_HttpProxy);.\n\n\n\n\n\n\n\n\n\n^International(Warning: Ending search point,Asset_HttpProxy); ^International(not found in content,Asset_HttpProxy);.\n\n',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n

    \n\n\n\n \">^International(Download this data,Asset_SQLReport);\n\n\n\n

      \n \n
    • \n
      \n
    \n
    \n\n\n\n\n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n\n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n\n
    \n \n
    \n
    ','SQLReport',1,1,'PBtmpl0000000000000059',1229907401,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n

    \n\n\n\">^International(Download this data,Asset_SQLReport);\n\n\n

      \n\n
    • \n
      \n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\n\n\n\n\n\n
     \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\n\n\n\n\n\n
     \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\n\n\n\n\n\n
     \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\n\n\n\n\n\n
     \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n \n
    \n
    ',0,NULL,NULL),('\"> \n \n \n

    \n
    \n\n\n

    \n
    \n\n\n

    \n\n\n

    \n
    \n\n\n \n \n\n\n \n \n\n
    ^International(364,WebGUI);:\n \n
    ^International(For,WebGUI);: 
    \n
    \n
    ','MultiSearch',1,1,'MultiSearchTmpl0000001',1230269962,'WebGUI::Asset::Template::HTMLTemplate',1,'\">\n\n

    \n
    \n\n

    \n
    \n\n

    \n\n\n

    \n
    \n\n\n\n\n\n\n\n\n\n
    ^International(364,WebGUI);:\n\n
    ^International(For,WebGUI);: 
    \n
    \n
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n \r\n\r\n \r\n
    \r\n \r\n
    \r\n
    \r\n , , \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    :00
    \r\n
    \r\n
      \r\n
    • \r\n \">\r\n
    • \r\n
    \r\n
    \r\n
    ','Calendar/Day',1,1,'CalendarDay00000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\">^International(label day,Asset_Calendar);\n\">^International(label week,Asset_Calendar);\n\">^International(label month,Asset_Calendar);\n?type=list\">^International(486,WebGUI);\n\">^International(label search,Asset_Calendar);\n\n
    \n\n
    \n
    \n, , \n
    \n
    \n\n\n\n\n\n
    \n
    :00
    \n
    \n\n
    \n
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n\r\n \r\n
    \r\n \r\n
    \r\n
    \r\n , to , \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    curDay\"> \r\n \r\n \r\n
    \r\n
    \r\n
    ','Calendar/Week',1,1,'CalendarWeek0000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\">^International(label day,Asset_Calendar);\n\">^International(label week,Asset_Calendar);\n\">^International(label month,Asset_Calendar);\n?type=list\">^International(486,WebGUI);\n\">^International(label search,Asset_Calendar);\n\n
    \n\n
    \n
    \n , to , \n
    \n
    \n\n\n\n\n\n
    \n
    \n
    curDay\">\n\n\n
    \n
    \n
    ',0,NULL,NULL),('\n\n\n\n\n/tools.css\" />\n\n\n\n\n\n\n \n \n \n \n \n \n
    \n
    \n \n \n \n \n \n
    ()\n \n
    1:23 PM EDT
    \n \n
    \n
    \n
    \n
    \n \n \n \n \n \n \n
    \n &t=1d&q=l&l=off&z=s&p=s\" alt=\"chart\" />\n \n \n \n \n \n \n \n \n \n \n
    Today5d1m3m1y5y20y
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(stocks.last,Asset_StockData);
    ^International(Market Cap,Asset_StockData);
    ^International(Change,Asset_StockData); _up_down\" style=\"text-align: right; font-weight: bold;\">\n /\' alt=\"\" /> \n
    ^International(Open,Asset_StockData);
    ^International(Day High,Asset_StockData);
    ^International(stocks.bid,Asset_StockData);
    ^International(52 Wk High,Asset_StockData);
    ^International(EPS,Asset_StockData);
    ^International(stocks.ex_div,Asset_StockData);
    ^International(Yield,Asset_StockData);
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(Last Trade,Asset_StockData);
    ^International(Volume,Asset_StockData); m
    ^International(% Change,Asset_StockData); _up_down\" style=\"text-align: right; font-weight: bold;\">%
    ^International(Prev Close,Asset_StockData);
    ^International(Day Low,Asset_StockData);
    ^International(stocks.ask,Asset_StockData);
    ^International(52 Wk Low,Asset_StockData);
    ^International(stocks.pe,Asset_StockData);
    ^International(Dividend,Asset_StockData);
    ^International(Exchange,Asset_StockData);
    \n
    \n
    \n\n\n\n','StockData/Display',1,1,'StockDataTMPL000000002',1229494994,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n/tools.css\" />\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    \n\n\n\n\n\n
    ()\n\n
    1:23 PM EDT
    \n\n
    \n
    \n
    \n
    \n\n\n\n\n\n\n
    \n&t=1d&q=l&l=off&z=s&p=s\" alt=\"chart\" />\n\n\n\n\n\n\n\n\n\n\n
    Today5d1m3m1y5y20y
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(stocks.last,Asset_StockData);
    ^International(Market Cap,Asset_StockData);
    ^International(Change,Asset_StockData); _up_down\" style=\"text-align: right; font-weight: bold;\">\n/\' alt=\"\" /> \n
    ^International(Open,Asset_StockData);
    ^International(Day High,Asset_StockData);
    ^International(stocks.bid,Asset_StockData);
    ^International(52 Wk High,Asset_StockData);
    ^International(EPS,Asset_StockData);
    ^International(stocks.ex_div,Asset_StockData);
    ^International(Yield,Asset_StockData);
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(Last Trade,Asset_StockData);
    ^International(Volume,Asset_StockData); m
    ^International(% Change,Asset_StockData); _up_down\" style=\"text-align: right; font-weight: bold;\">%
    ^International(Prev Close,Asset_StockData);
    ^International(Day Low,Asset_StockData);
    ^International(stocks.ask,Asset_StockData);
    ^International(52 Wk Low,Asset_StockData);
    ^International(stocks.pe,Asset_StockData);
    ^International(Dividend,Asset_StockData);
    ^International(Exchange,Asset_StockData);
    \n
    \n
    \n\n\n',0,NULL,NULL),('
    \" class=\"dataTable\">\r\n\r\n\r\n \r\n\r\n\r\n\r\n

    \r\n
    \r\n\r\n
    \r\n \r\n
    \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    ','DataTable',1,1,'TuYPpHx7TUyk08639Pc8Bg',1233861621,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"dataTable\">\n\n\n\n\n

    \n
    \n
    \n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    ',0,NULL,NULL),('
    \" class=\"dataTable\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n
    ','DataTable',1,1,'3rjnBVJRO6ZSkxlFkYh_ug',1233861835,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"dataTable\">\n\n

    \n
    \n\n

    \n
    \n
    \n\n
    \n
    \n\n
    \n
    ',0,NULL,NULL),('

    \" />
    ','ImageAsset',1,1,'NBVSVNLp9X_bV7WrCprtCA',1237842096,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \" />
    ',0,NULL,NULL),('
    \r\n \r\n

    \r\n
    \r\n\r\n \r\n

    • ^International(manage things label,Asset_Thingy);

    \r\n
    \r\n\r\n \r\n
    \r\n
    \r\n\r\n \r\n \r\n \r\n\r\n \r\n
    \r\n \r\n
    rowOnerowTwo\">\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    ','Thingy',1,1,'ThingyTmpl000000000001',1237914005,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n

    \n
    \n\n

    • ^International(manage things label,Asset_Thingy);

    \n
    \n\n
    \n
    \n\n\n\n\n
    \n\n
    rowOnerowTwo\">\n \n
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n
    \r\n
    \r\n\r\n \r\n \r\n ','Carousel',1,1,'CarouselTmpl0000000002',1239475937,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n
    \n
    \n\n\n',0,NULL,NULL),('^International(inbox notification,Account_Inbox);','Account/Inbox/Notification',1,1,'b1316COmd9xRv4fCI3LLGA',1236956475,'WebGUI::Asset::Template::HTMLTemplate',1,'^International(inbox notification,Account_Inbox);',0,NULL,NULL),('
    \n
    \n \n
    \n
    \n
    ^International(Working...,WebGUI);
    \n
     
    \n
    \n
    \n \" style=\"border-style:none;height:48px;width:48px;\" title=\"\" alt=\"\" />\n
    \n
    \n \"*\"\n
    \n
    ','AdminConsole/ProgressBar',1,1,'YP9WaMPJHvCJl-YwrLVcPw',1245376837,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n\n
    \n
    \n
    ^International(Working...,WebGUI);
    \n
     
    \n
    \n
    \n\" style=\"border-style:none;height:48px;width:48px;\" title=\"\" alt=\"\" />\n
    \n
    \n\"*\"\n
    \n
    ',0,NULL,NULL),('\r\n \r\n

    \r\n
    \r\n
    \r\n\r\n
    \r\n \" style=\"height:auto;min-height:100px;width:100%;display:block;\">\r\n \" /> \r\n \r\n
    ','FileAsset',1,1,'pbtmpl0000000000000220',1247488979,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n

    \n
    \n
    \n
    \n\" style=\"height:auto;min-height:100px;width:100%;display:block;\">\n\" />\n\n
    ',0,NULL,NULL),('\n
    \n
    \n \n
    \n
    \n \n
    \n
    \n
    \n  \n
    \n \n \n \n \n \n
    \n  \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n \" >
    \n
    \n \n
    \n
    \n \n
    \n \n \">
    \n
    \n
    \n
    \n
    \n \">
    \n ^AdminToggle;
    \n ^LoginToggle;
    \n
    \n
    \n
    \n \n
    \n
    \n \n \')\">\"?\"\n \n
    \n
    \n \" style=\"border-style:none;height:48px;width:48px;\" title=\"\" alt=\"\" />\n
    \n
    \n\"*\"\n
    \n
    \n \" style=\"border-style:none;\" title=\"\" alt=\"\" />\n
    \n\n\n
    ','AdminConsole',1,1,'PBtmpl0000000000000001',1247535846,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n
    \n\n
    \n
    \n\n
    \n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n\n\n\" >
    \n
    \n\n
    \n
    \n\n
    \n\n\">
    \n
    \n
    \n
    \n
    \n\">
    \n^AdminToggle;
    \n^LoginToggle;
    \n
    \n
    \n
    \n\n
    \n
    \n\n\')\">\"?\"\n\n
    \n
    \n\" style=\"border-style:none;height:48px;width:48px;\" title=\"\" alt=\"\" />\n
    \n
    \n\"*\"\n
    \n
    \n\" style=\"border-style:none;\" title=\"\" alt=\"\" />\n
    \n\n
    ',0,NULL,NULL),('

    \r\n

    \r\n\r\n\" />\" quality=\"high\" width=\"800\" height=\"600\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />\r\n

    ','FileAsset',1,1,'pbtmpl0000000000000221',1247487940,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n

    \n\n\" />\" quality=\"high\" width=\"800\" height=\"600\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />\n

    ',0,NULL,NULL),('
    \n \n

    \n
    \n\n \n

    \n
    \n\n
    \n ^ViewCart(); (^CartItemCount;)\n
    \n\n \n
    \n
    \n \n\n \n
    \n ^International(subcategories,Asset_Shelf);: \n \n \n \">\n \n
    \n
    \n\n \n
    \n \n \n \" class=\"thumbnail\">\" alt=\"\" />\n \n \n
    \n \n ()\n
    \n \n
    \n \n
    \n
    \n
    \n \n \n \n \n
    \n ^International(this shelf is empty,Asset_Shelf);\n
    \n \n \n
    \n ^International(You do not have permission to view the products on this shelf,Asset_Shelf);\n
    \n
    \n
    \n
    \n
    ','Shelf',1,1,'nFen0xjkZn8WkpM93C9ceQ',1247864696,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n

    \n
    \n\n

    \n
    \n
    \n^ViewCart(); (^CartItemCount;)\n
    \n\n
    \n
    \n\n
    \n^International(subcategories,Asset_Shelf);:\n\n\n\">\n\n
    \n
    \n\n\n\n\n\n\n\n
    \n^International(this shelf is empty,Asset_Shelf);\n
    \n\n\n
    \n^International(You do not have permission to view the products on this shelf,Asset_Shelf);\n
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('
    \n\n\n
    \n );\'\"/>\n  \n );\'\"/>\n
    \n\n \n
    \n ^International(friends only,Account_Profile);^International(private profile,Account_Profile);^International(public profile,Account_Profile);\n
    \n\n
    \n\n\n

    ^International(error label,Account_Inbox);

    \n

    \n

    \">^International(back label,Account_Profile);

    \n\n \n \n \n \n \n \n \n \n \n \n \n \n
    colspan=2 class=\"bar\">\n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    32\" class=\"bar\">
    greenredblue;\">
    \n
    \n );\" class=\"WGphotostyle\"/>
    \n
    \n
    \n \n
    \n );\'\"/>\n  \n );\'\"/>\n
    \n\n
    \n','Account/Profile/View',1,1,'2CS-BErrjMmESOtGT90qOg',1248549087,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n);\'\"/>\n \n);\'\"/>\n
    \n\n
    \n^International(friends only,Account_Profile);^International(private profile,Account_Profile);^International(public profile,Account_Profile);\n
    \n
    \n\n

    ^International(error label,Account_Inbox);

    \n

    \n

    \">^International(back label,Account_Profile);

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    colspan=2 class=\"bar\">\n
    \n^International(member since,Account_Inbox); ^D(%z,);\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    32\" class=\"bar\">
    greenredblue;\">
    \n
    \n);\" class=\"WGphotostyle\"/>
    \n
    \n
    \n
    \n);\'\"/>\n \n);\'\"/>\n
    \n
    ',1,NULL,NULL),('
    \n
    \n
    \n
    \n
    \n

    ^International(error label,Account_Inbox);

    \n

    \n

    \">^International(back label,Account_Profile);

    \n
    \n
    \n
    \n
    \n
    ','Account/Profile/Error',1,1,'MBmWlA_YEA2I6D29OMGtRg',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n
    \n
    \n
    \n

    ^International(error label,Account_Inbox);

    \n

    \n

    \">^International(back label,Account_Profile);

    \n
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('\n\n
    \n','Account/Layout',1,1,'gfZOwaTWYjbSoVaQtHBBEw',1249407461,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n
    \n',0,NULL,NULL),('
    \n\n
    \n\n

    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n

    \n

    \n disabled onclick=\"location.href=\'\'\"/> \'\" /> \'\" />\n \'\" disabled/> >\" onclick=\"location.href=\'\'\" disabled/>\n

    \n
    \n

    \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(subject label,Account_Inbox);:
    ^International(from label,Account_Inbox);:
    ^International(received label,Account_Inbox);:^D(\"%z %Z\",);
    ^International(status label,Account_Inbox);:
    \n
    \n
    \n \n\n
    \n\n
    \n','Account/Inbox/ViewMessage',1,1,'0n4HtbXaWa_XJHkFjetnLQ',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n

    \n
    \n^International(member since,Account_Inbox); ^D(%z,);\n

    \n

    \ndisabled onclick=\"location.href=\'\'\"/> \'\" /> \'\" />\n\'\" disabled/> >\" onclick=\"location.href=\'\'\" disabled/>\n

    \n
    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(subject label,Account_Inbox);:
    ^International(from label,Account_Inbox);:
    ^International(received label,Account_Inbox);:^D(\"%z %Z\",);
    ^International(status label,Account_Inbox);:
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('

    ^International(error label,Account_Inbox);

    \n

    \n

    \">^International(back label,Account_Inbox);

    \n','Account/Inbox/Error',1,1,'ErEzulFiEKDkaCDVmxUavw',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(error label,Account_Inbox);

    \n

    \n

    \">^International(back label,Account_Inbox);

    ',0,NULL,NULL),('

    ^International(message sent label,Account_Inbox);

    \n

    ^International(message sent text,Account_Inbox);

    \n

    \">^International(back label,Account_Inbox);

    ','Account/Inbox/Confirm',1,1,'DUoxlTBXhVS-Zl3CFDpt9g',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(message sent label,Account_Inbox);

    \n

    ^International(message sent text,Account_Inbox);

    \n

    \">^International(back label,Account_Inbox);

    ',0,NULL,NULL),('\n
    \n
    \n\n

    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n

    \n\n

    \n \n \n\n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n WGoddThreadWGevenThread\">\n \n \n \n \n \n \n \n \n \n \n \n \n
    \">^International(from label,Account_Inbox);\">^International(invitation label,Account_Inbox);\">^International(date label,Account_Inbox);
    \" class=\"WGinbox_from\">\">^International(invitation message,Account_Inbox,);
    ^International(no invitations,Account_Inbox);
    \n \n

    \n \n \n\n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n \n \n \n

    \n\n

    \n ^International(invitation count,\'Account_Inbox\');\n

    \n\n
    \n
    \n','Account/Inbox/ManageInvitations',1,1,'1Q4Je3hKCJzeo0ZBB5YB8g',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n
    \n

    \n
    \n^International(member since,Account_Inbox); ^D(%z,);\n

    \n

    \n \n\n\n\" class=\"prevNext\">\"Previous\" \n\"> \n \" class=\"prevNext\">\"Next\"\n\n\n\n\n

    \n\n\n\n\n\n\n\n\n\nWGoddThreadWGevenThread\">\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">^International(from label,Account_Inbox);\">^International(invitation label,Account_Inbox);\">^International(date label,Account_Inbox);
    \" class=\"WGinbox_from\">\">^International(invitation message,Account_Inbox,);
    ^International(no invitations,Account_Inbox);
    \n

    \n \n\n\n\" class=\"prevNext\">\"Previous\" \n\"> \n \" class=\"prevNext\">\"Next\"\n\n\n\n\n

    \n

    \n ^International(invitation count,\'Account_Inbox\');\n

    \n
    \n
    \n',0,NULL,NULL),('

    ^International(invitation confirm label,Account_Inbox);

    \n

    ^International(invitation confirm message,Account_Inbox);

    \n\n \n \n \n \n \n
    ^International(\'you have not been added\',\'Friends\',);^International(\'you have been added\',\'Friends\',);
    \n

    \">^International(invitations back label,Account_Inbox);

    \n','Account/Inbox/Confirm',1,1,'5A8Hd9zXvByTDy4x-H28qw',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(invitation confirm label,Account_Inbox);

    \n

    ^International(invitation confirm message,Account_Inbox);

    \n\n\n\n\n\n\n
    ^International(\'you have not been added\',\'Friends\',);^International(\'you have been added\',\'Friends\',);
    \n

    \">^International(invitations back label,Account_Inbox);

    ',0,NULL,NULL),('\n
    \n \n
    \n\n

    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n

    \n
    \n \'\" /> \'\" disabled/> >\" onclick=\"location.href=\'\'\" disabled/>\n
    \n \n

    \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(from label,Account_Inbox);:
    ^International(received label,Account_Inbox);:
    ^D(\"%z %Z\",);
    \n
    \n\n
    \n\n
    \n','Account/Inbox/ViewInvitation',1,1,'VBkY05f-E3WJS50WpdKd1Q',1248549087,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n
    \n

    \n
    \n^International(member since,Account_Inbox); ^D(%z,);\n

    \n
    \n \'\" /> \'\" disabled/> >\" onclick=\"location.href=\'\'\" disabled/>\n
    \n

    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(from label,Account_Inbox);:
    ^International(received label,Account_Inbox);:
    ^D(\"%z %Z\",);
    \n
    \n
    \n
    \n',0,NULL,NULL),('

    \n

    \n','Account/Inbox/InviteUserMessage',1,1,'XgcsoDrbC0duVla7N7JAdw',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n

    ',0,NULL,NULL),(' \n
    \n \n
    \n\n

    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n

    \n\n

    \n ^International(invite a friend,Account_Inbox);\n

    \n \n\n

    \n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(to label,Account_Inbox);:
    ^International(subject label,Account_Inbox);:
    \n   \n \'\" />\n
    \n\n
    \n
    \n','Account/Inbox/InviteUser',1,1,'cR0UFm7I1qUI2Wbpj--08Q',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n
    \n

    \n
    \n^International(member since,Account_Inbox); ^D(%z,);\n

    \n

    \n^International(invite a friend,Account_Inbox);\n

    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(to label,Account_Inbox);:
    ^International(subject label,Account_Inbox);:
    \n  \n\'\" />\n
    \n
    \n
    \n',0,NULL,NULL),('

    ^International(invitation sent label,Account_Inbox);

    \n

    ^International(invitation sent text,Account_Inbox);

    \n

    \">^International(back label,Account_Inbox);

    ','Account/Inbox/InviteUserConfirm',1,1,'SVIhz68689hwUGgcDM-gWw',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(invitation sent label,Account_Inbox);

    \n

    ^International(invitation sent text,Account_Inbox);

    \n

    \">^International(back label,Account_Inbox);

    ',0,NULL,NULL),('\n\n
    \n\" class=\"WGprofile_displayView\">^International(\'friends as others label\',\'Account_Friends\');\" class=\"WGprofile_displayView\">^International(\'edit my friends\',\'Account_Friends\');\" class=\"WGprofile_displayView\">^International(\'back label\',\'Account_Friends\');\n
    \n
    \n
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    ','Account/Layout',1,1,'zrNpGbT3odfIkg6nFSUy8Q',1249407461,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n
    \n\" class=\"WGprofile_displayView\">^International(\'friends as others label\',\'Account_Friends\');\" class=\"WGprofile_displayView\">^International(\'edit my friends\',\'Account_Friends\');\" class=\"WGprofile_displayView\">^International(\'back label\',\'Account_Friends\');\n
    \n
    \n
    \n
    \n
    \n\n
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('\n
    \n\n\n

    \n
    \n ^International(member since,Account_Friends); ^D(%z,);\n

    \n\n \n\n
    \n\n
    \n\n

    \n \n \n \n

    \n \n \n \n

    \n\n \n
    class=\"bordered\">\n \n \n \n \n \n \n \n
    \">\"\"^Extras(account/images/no_photo.gif);\"/>\n \">
    \n \n ^International(member since,Account_Friends); ^D(%z,);
    \n
    \n
    \n
    \n
    \n \n

    \n \n \n \n

    \n \n \n \n

    \n\n
    \n','Account/Friends/View',1,1,'1Yn_zE_dSiNuaBGNLPbxtw',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n

    \n
    \n^International(member since,Account_Friends); ^D(%z,);\n

    \n\n
    \n
    \n

    \n \n\n\n

    \n\n\n\n

    \n\n
    class=\"bordered\">\n\n\n\n\n\n\n\n
    \">\"\"^Extras(account/images/no_photo.gif);\"/>\n\">
    \n\n^International(member since,Account_Friends); ^D(%z,);
    \n
    \n
    \n
    \n
    \n

    \n \n\n\n

    \n\n\n\n

    \n
    ',0,NULL,NULL),('
    \n\n
    \n\n
    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n
    \n\n \n\n
    \n\n
    \n\n

    \n \n \n \n

    \n \n \n \n

    \n\n \n \n \n \n \n \n
    class=\"WGbordered\" >\n \n \n \n \n \n \n \n \n
    \">\"Friend^Extras(account/images/no_photo.gif);\"/>
    ^International(online,Friends);^International(offline,Friends);
    \n \">
    \n \n ^International(member since,Account_Friends); ^D(%z,);
    \n ^User(homeCountry,);\n
    \n
    \n
    \n
    \n
    \n
    \n \n

    \n \n \n \n

    \n \n \n \n

    \n\n
    \n\n
    \n','Account/Friends/Edit',1,1,'AZFU33p0jpPJ-E6qLSWZng',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n
    \n
    \n^International(member since,Account_Inbox); ^D(%z,);\n
    \n\n
    \n
    \n

    \n \n\n\n

    \n\n\n\n

    \n\n\n\n\n\n\n
    class=\"WGbordered\" >\n\n\n\n\n\n\n\n\n
    \">\"Friend^Extras(account/images/no_photo.gif);\"/>
    ^International(online,Friends);^International(offline,Friends);
    \n\">
    \n\n^International(member since,Account_Friends); ^D(%z,);
    \n^User(homeCountry,);\n
    \n
    \n
    \n
    \n
    \n
    \n

    \n \n\n\n

    \n\n\n\n

    \n
    \n
    ',0,NULL,NULL),('\n\n
    \n \n

    \n
    \n ^International(member since,Account_Friends); ^D(%z,);\n

    \n \n

    ^International(add to network label,Account_Friends);

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(adding user message,Account_Friends,);
    ^International(sending to message,Account_Friends);
    \n\n
    \n\n','Account/Friends/SendRequest',1,1,'AGJBGviWGAwjnwziiPjvDg',1248549087,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n

    \n
    \n^International(member since,Account_Friends); ^D(%z,);\n

    \n

    ^International(add to network label,Account_Friends);

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(adding user message,Account_Friends,);
    ^International(sending to message,Account_Friends);
    \n
    \n',0,NULL,NULL),('

    \n

    ^International(error label,Account_Friends);

    \n

    \n

    \">^International(back label,Account_Inbox);

    \n

    \n','Account/Friends/Error',1,1,'7Ijdd8SW32lVgg2H8R-Aqw',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n

    ^International(error label,Account_Friends);

    \n

    \n

    \">^International(back label,Account_Inbox);

    \n

    ',0,NULL,NULL),('

    \n

    ^International(message sent label,Account_Friends);

    \n

    ^International(add to friends confirmation,Account_Friends,);

    \n

    \">^International(back to user profile,Account_Friends);

    \n

    ','Account/Friends/Confirm',1,1,'K8F0j_cq_jgo8dvWY_26Ag',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n

    ^International(message sent label,Account_Friends);

    \n

    ^International(add to friends confirmation,Account_Friends,);

    \n

    \">^International(back to user profile,Account_Friends);

    \n

    ',0,NULL,NULL),('

    \n

    ^International(remove confirm label,Account_Friends);

    \n

    ^International(remove confirm message,Account_Friends,);

    \n

    \n \">^International(remove confirm no,Account_Friends); · \n \">^International(remove confirm yes,Account_Friends);\n

    \n

    ','Account/Friends/Confirm',1,1,'G5V6neXIDiFXN05oL-U3AQ',1248549087,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n

    ^International(remove confirm label,Account_Friends);

    \n

    ^International(remove confirm message,Account_Friends,);

    \n

    \n\">^International(remove confirm no,Account_Friends); · \n\">^International(remove confirm yes,Account_Friends);\n

    \n

    ',0,NULL,NULL),('\n\n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    ','Account/Layout',1,1,'9ThW278DWLV0-Svf68ljFQ',1249407460,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('
    \n
    \n

    \n ^International(Payout Totals,Account_Shop);\n

    \n \n \n \n \n \n \n
    ^International(Paid,Account_Shop); :
    ^International(Scheduled for payment,Account_Shop); :
    ^International(Not yet scheduled,Account_Shop); : \n
    ^International(total,Shop); :
    \n \n

    ^International(my sales label,Account_Shop);

    \n \n \n \n \n \n \n \n \n \n \n \n \n WGoddThreadWGevenThread\">\n \n \n \n \n \n \n \n \n \n \n \n
    ^International(Product,Account_Shop);^International(quantity,Shop);^International(Payout,Account_Shop);
    \">
    ^International(no contributions,Account_Contributions);
    \n \n

    ^International(my sales label,Account_Shop); :: ^International(Products,Account_Shop);

    \n
    \n
    ','Shop/MySales',1,1,'-zxyB-O50W8YnL39Ouoc4Q',1248563425,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n

    \n^International(Payout Totals,Account_Shop);\n

    \n\n\n\n\n\n\n
    ^International(Paid,Account_Shop); :
    ^International(Scheduled for payment,Account_Shop); :
    ^International(Not yet scheduled,Account_Shop); : \n
    ^International(total,Shop); :
    \n

    ^International(my sales label,Account_Shop);

    \n\n\n\n\n\n\n\n\n\n\n\nWGoddThreadWGevenThread\">\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(Product,Account_Shop);^International(quantity,Shop);^International(Payout,Account_Shop);
    \">
    ^International(no contributions,Account_Contributions);
    \n

    ^International(my sales label,Account_Shop); :: ^International(Products,Account_Shop);

    \n
    \n
    ',0,NULL,NULL),('\n\n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    ','Account/Layout',1,1,'b4n3VyUIsAHyIvT-W-jziA',1249407461,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('
    \n \" id=\"id\">\n\n \n
    \n
    \n\n \n

    \n
    \n\n \n \n
    \n \n

    \n ^ViewCart();
    \n \">^International(continue shopping button,Shop);\n \n ^ViewCart(); (^CartItemCount;)\n

    \n \n \n \n \n \n \n \n \n \n\n \n \n \n
      \n ^International(variants,Asset_Product);\n \n
    • \n
      \n
    \n \n \n \n
    \n
    \n \n \n \n \n \n
      \n ^International(30,Asset_Product);\n \n
    • \n
      \n
    \n
    \n \n \n
      \n ^International(54,Asset_Product);\n \n
    • \n
      \n
    \n
    \n\n \n
      \n ^International(31,Asset_Product);\n \n
    • :
    • \n
      \n
    \n
    \n \n \n
      \n ^International(32,Asset_Product);\n \n
    • \">
    • \n
      \n
    \n
    \n \n \n
      \n ^International(33,Asset_Product);\n \n
    • \">
    • \n
      \n
    \n
    \n
    \n \n
    \n
    \n\n','Product',1,1,'PBtmpl0000000000000056',1248729559,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\" id=\"id\">\n\n
    \n
    \n\n

    \n
    \n\n
    \n\n

    \n^ViewCart();
    \n\">^International(continue shopping button,Shop);\n\n^ViewCart(); (^CartItemCount;)\n

    \n\n\n\n\n\n\n\n\n\n\n\n
      \n^International(variants,Asset_Product);\n\n
    • \n
      \n
    \n\n\n\n
    \n
    \n\n
      \n^International(30,Asset_Product);\n\n
    • \n
      \n
    \n
    \n\n
      \n^International(54,Asset_Product);\n\n
    • \n
      \n
    \n
    \n\n
      \n^International(31,Asset_Product);\n\n
    • :
    • \n
      \n
    \n
    \n\n
      \n^International(32,Asset_Product);\n\n
    • \">
    • \n
      \n
    \n
    \n\n
      \n^International(33,Asset_Product);\n\n
    • \">
    • \n
      \n
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('^International(inbox sms notification,Account_Inbox);','Account/Inbox/Notification',1,1,'i9-G00ALhJOr0gMh-vHbKA',1250408924,'WebGUI::Asset::Template::HTMLTemplate',1,'^International(inbox sms notification,Account_Inbox);',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n

    ^International(\"form manage title\",\"Asset_AdSku\");

    \n

    \'>^International(\"form purchase link\",\"Asset_AdSku\");

    \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n
    ^International(\"form manage table header title\",\"Asset_AdSku\");^International(\"form manage table header clicks\",\"Asset_AdSku\");^International(\"form manage table header impressions\",\"Asset_AdSku\");^International(\"form manage table header renew\",\"Asset_AdSku\");
    \">^International(\"form manage table value renew\",\"Asset_AdSku\");
    \n\n^ViewCart(); (^CartItemCount;)','AdSku/Manage',1,1,'ohjyzab5i-yW6GOWTeDUHg',1251425384,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n

    ^International(\"form manage title\",\"Asset_AdSku\");

    \n

    \'>^International(\"form purchase link\",\"Asset_AdSku\");

    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\"form manage table header title\",\"Asset_AdSku\");^International(\"form manage table header clicks\",\"Asset_AdSku\");^International(\"form manage table header impressions\",\"Asset_AdSku\");^International(\"form manage table header renew\",\"Asset_AdSku\");
    \">^International(\"form manage table value renew\",\"Asset_AdSku\");
    \n^ViewCart(); (^CartItemCount;)',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n
    \n
    \n\n

    ^International(form added to cart thanks,Asset_AdSku);

    \n\n

    \n

    \n

    \">^International(form manage link,Asset_AdSku);

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(form purchase ad title,Asset_AdSku);
    ^International(form purchase ad link,Asset_AdSku);
    ^International(form purchase ad image,Asset_AdSku);
    ^International(form purchase number of clicks,Asset_AdSku);^International(form purchase per click,Asset_AdSku, );\n
    \n
    ^International(minimum clicks,Asset_AdSku,);
    ^International(form purchase number of impressions,Asset_AdSku);^International(form purchase per click,Asset_AdSku, );\n
    \n
    ^International(minimum impressions,Asset_AdSku,);
    \n \n
    \n^ViewCart(); (^CartItemCount;)','AdSku/Purchase',1,1,'AldPGu0u-jm_5xK13atCSQ',1251419124,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n
    \n
    \n\n

    ^International(form added to cart thanks,Asset_AdSku);

    \n\n

    \n

    \n

    \">^International(form manage link,Asset_AdSku);

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(form purchase ad title,Asset_AdSku);
    ^International(form purchase ad link,Asset_AdSku);
    ^International(form purchase ad image,Asset_AdSku);
    ^International(form purchase number of clicks,Asset_AdSku);^International(form purchase per click,Asset_AdSku, );\n
    \n
    ^International(minimum clicks,Asset_AdSku,);
    ^International(form purchase number of impressions,Asset_AdSku);^International(form purchase per click,Asset_AdSku, );\n
    \n
    ^International(minimum impressions,Asset_AdSku,);
    \n\n
    \n^ViewCart(); (^CartItemCount;)',0,NULL,NULL),('

    \n\n\n\n
    \n
    \n\n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \" style=\"display:none;\">\n \n \n \n \n
    ^International(\'answer label\',\'Asset_Survey\');^International(\'response count label\',\'Asset_Survey\');^International(\'response percent label\',\'Asset_Survey\');
    \');\">^International(\'show comments label\',\'Asset_Survey\');
    \n \n

    \n
    \n
    \n \n
    \n \');\">^International(\'show responses label\',\'Asset_Survey\');\n
    \n
    \" style=\"display:none;\">\n \n

    \n \n
    \n
    \n
    \n
    \n
    \n


    \n
    \n\n\n
    \n · · \n
    \n
    \n','Survey/Overview',1,1,'PBtmpl0000000000000063',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\" style=\"display:none;\">\n\n\n\n\n
    ^International(\'answer label\',\'Asset_Survey\');^International(\'response count label\',\'Asset_Survey\');^International(\'response percent label\',\'Asset_Survey\');
    \');\">^International(\'show comments label\',\'Asset_Survey\');
    \n\n

    \n
    \n
    \n\n
    \n\');\">^International(\'show responses label\',\'Asset_Survey\');\n
    \n
    \" style=\"display:none;\">\n\n

    \n\n
    \n
    \n
    \n
    \n
    \n


    \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n

    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n
    ^International(\'user label\',\'Asset_Survey\');^International(\'start date\',\'Asset_Survey\');^International(\'end date\',\'Asset_Survey\');^International(\'score label\',\'Asset_Survey\');^International(\'percentage label\',\'Asset_Survey\');
    \">/%
    \r\n\r\n\r\n\r\n
    \r\n · · \r\n
    \r\n
    \r\n','Survey/Gradebook',1,1,'PBtmpl0000000000000062',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n

    \n\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\'user label\',\'Asset_Survey\');^International(\'start date\',\'Asset_Survey\');^International(\'end date\',\'Asset_Survey\');^International(\'score label\',\'Asset_Survey\');^International(\'percentage label\',\'Asset_Survey\');
    \">/%
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n

    \n\n\n

    \n\n\n','Survey',1,1,'PBtmpl0000000000000061',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n

    \n\n

    \n',0,NULL,NULL),('
    \n
    \n
    \n
    \n\n\n
    \n

    \n^International(\'restart message\',\'Asset_Survey\');\n

    \n
    \n
    \n\n\n
    \n out of \n
    \n
    \n\n
    \n minutes left\n
    \n
    \n
    \n\n
    \n\n\n
    \n

    required\'>

    \n\n \n\n \n\n \n \n\n\n \n \n \n \n \n \' id=\'\' size=\'50\' />\n \n \n verbatim\' >\n \n \n \n \n\n \n \n \' value=\'\'>\n \n \n\n \n \n \n \n \n \" id=\"\">
    \n
    \n \n verbatim\'>\n \n \n
    \n
    \n\n \n \n \n \n \n
    \n
    \n \n verbatim\'>\n \n \n
    \n
    \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n button\" value=\"\">\n \n \n button\">\n \n \" id=\"\" value=\"\">\n \n \n \n \n \n verbatim\' name=\'verbatim\'>\n
    \n \n \n \n
    \n button\" value=\"\">\n \n \n button\">\n \n \" id=\"\" value=\"\">\n \n verbatim\' name=\'verbatim\'>\n \n
    \n
    \n\n \n \n \n \' id=\'\'>\n \n \n ^International(\'year\', \'Asset_Survey\');\n -year\' id=\'-year\' type=text size=4>\n ^International(\'month\', \'Asset_Survey\');\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n \n \' id=\'\' type=text>\n button\'>\n
    container\'>
    \n \n
    \n
    \n
    \n\n \n \n\n \n \' name=\'\' value=0>\n \n \n \' name=\'\' value=\"\">\n \n\n \n

    \n
    \n \n show\'>0\n \n \n \n show\'>\n \n
    0  \n
    slider-bg\' tabindex=\'-1\' title=\'Slider\' class=slider-bg>\n \n
    slider-min-thumb\' class=slider-min-thumb>\n \n
    \n \n
    slider-max-thumb\' class=slider-max-thumb>\n \n
    \n
    \n \n \n
    \n \n
    \n\n \n\n \n \n \n\n \n

    \n
    \n | \' name=\'\'> | \n \n
      \n
    slider-bg\' tabindex=\'-1\' title=\'Slider\' class=slider-bg>\n
    slider-thumb\' class=slider-thumb>\n \n
    \n
    \n
    \n
    \n \n\n \n \n \n \n\n \n \n

    Comment:

    \n
    \n\n\n
    \n
    \n
    \n \n \n \n ^International(\'finish\', \'Asset_Survey\');^International(\'continue\', \'Asset_Survey\');\">\n
    \n
    \n\n
    \n\n
    \n\n\n\n\n\n\n','Survey/Take',1,1,'CxMpE_UPauZA3p8jdrOABw',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n
    \n
    \n\n
    \n

    \n^International(\'restart message\',\'Asset_Survey\');\n

    \n
    \n
    \n\n
    \n out of \n
    \n
    \n\n
    \n minutes left\n
    \n
    \n
    \n
    \n\n
    \n

    required\'>

    \n\n\n\n\n\n\n\n\n\n\' id=\'\' size=\'50\' />\n\n\n verbatim\'>\n\n\n\n\n\n\n\' value=\'\'>\n\n\n\n\n\n\n\n\" id=\"\">
    \n
    \n\nverbatim\'>\n\n\n
    \n
    \n\n\n\n\n\n
    \n
    \n\nverbatim\'>\n\n\n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \nbutton\" value=\"\">\n\n\nbutton\">\n\n\" id=\"\" value=\"\">\n\n\n\n\n\nverbatim\' name=\'verbatim\'>\n
    \n\n\n\n
    \nbutton\" value=\"\">\n\n\nbutton\">\n\n\" id=\"\" value=\"\">\n\nverbatim\' name=\'verbatim\'>\n\n
    \n
    \n\n\n\n\' id=\'\'>\n\n\n^International(\'year\', \'Asset_Survey\');\n-year\' id=\'-year\' type=text size=4>\n^International(\'month\', \'Asset_Survey\');\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n\n\' id=\'\' type=text>\nbutton\'>\n
    container\'>
    \n\n
    \n
    \n
    \n\n\n\n\' name=\'\' value=0>\n\n\n\' name=\'\' value=\"\">\n\n\n

    \n
    \n\nshow\'>0\n\n\n\nshow\'>\n\n
    0  \n
    slider-bg\' tabindex=\'-1\' title=\'Slider\' class=slider-bg>\n\n
    slider-min-thumb\' class=slider-min-thumb>\n\n
    \n\n
    slider-max-thumb\' class=slider-max-thumb>\n\n
    \n
    \n\n\n
    \n\n
    \n\n\n\n\n\n

    \n
    \n| \' name=\'\'> | \n\n
      \n
    slider-bg\' tabindex=\'-1\' title=\'Slider\' class=slider-bg>\n
    slider-thumb\' class=slider-thumb>\n\n
    \n
    \n
    \n
    \n\n\n\n\n\n\n

    Comment:

    \n
    \n
    \n
    \n
    \n\n\n\n^International(\'finish\', \'Asset_Survey\');^International(\'continue\', \'Asset_Survey\');\">\n
    \n
    \n
    \n
    ',0,NULL,NULL),('
    \n
    ^International(\'please enter section information\',\'Asset_Survey\');
    \n
    \n
    \n \'>\n \n \n \n
    \n\n

    \n

    ^International(\'section number\',\'Asset_Survey\');\n
    ^International(\'section number description\',\'Asset_Survey\');
    \n
    \n

    \n \n

    \n

    ^International(\'section name\',\'Asset_Survey\');\n
    ^International(\'section name description\',\'Asset_Survey\');
    \n
    \n \' type=text>\n

    \n \n

    \n

    ^International(\'section custom variable name\',\'Asset_Survey\');\n
    ^International(\'section custom variable name description\',\'Asset_Survey\');
    \n
    \n \' name=\'variable\' size=\'2\'>\n

    \n \n \n

    \n

    \n
    ^International(\'jump to\',\'Asset_Survey\');\n
    ^International(\'jump to description\',\'Asset_Survey\');
    \n
    \n
    \n \">\n
    \n
    \n
    \n

    \n\n

    \n

    ^International(\'jump expression\',\'Asset_Survey\');\n
    ^International(\'jump expression description\',\'Asset_Survey\');
    \n
    \n
    \n \n
    \n

    \n \n \n
    \n \n

    \n

    ^International(\'randomize questions\',\'Asset_Survey\');\n
    ^International(\'randomize questions description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n \n\n

    \n

    ^International(\'questions per page\',\'Asset_Survey\');\n
    ^International(\'questions per page description\',\'Asset_Survey\');
    \n
    \n \n

    \n

    \n

    ^International(\'questions on section page\',\'Asset_Survey\');\n
    ^International(\'questions on section page description\',\'Asset_Survey\');
    \n
    \n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n

    \n \n \n

    \n

    ^International(\'title on every page\',\'Asset_Survey\');\n
    ^International(\'title on every page description\',\'Asset_Survey\');
    \n
    \n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n

    \n \n

    \n

    ^International(\'text on every page\',\'Asset_Survey\');\n
    ^International(\'text on every page description\',\'Asset_Survey\');
    \n
    \n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n

    \n \n

    \n

    ^International(\'terminal section\',\'Asset_Survey\');\n
    ^International(\'terminal section description\',\'Asset_Survey\');
    \n
    \n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n

    \n \n

    \n

    ^International(\'terminal section url\',\'Asset_Survey\');\n
    ^International(\'terminal section url description\',\'Asset_Survey\');
    \n
    \n \'>\n

    \n\n

    \n

    ^International(\'logical section\',\'Asset_Survey\');\n
    ^International(\'logical section help\',\'Asset_Survey\');
    \n
    \n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n

    \n \n
    \n \n

    \n

    ^International(\'section text\',\'Asset_Survey\');\n
    ^International(\'section text description\',\'Asset_Survey\');
    \n
    \n

    \n
    \n \n
    \n \n
    \n
    \n
    ','Survey/Edit',1,1,'1oBRscNIcFOI-pETrCOspA',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    ^International(\'please enter section information\',\'Asset_Survey\');
    \n
    \n
    \n\'>\n\n\n
    \n

    \n

    ^International(\'section number\',\'Asset_Survey\');\n
    ^International(\'section number description\',\'Asset_Survey\');
    \n
    \n

    \n

    \n

    ^International(\'section name\',\'Asset_Survey\');\n
    ^International(\'section name description\',\'Asset_Survey\');
    \n
    \n\' type=text>\n

    \n

    \n

    ^International(\'section custom variable name\',\'Asset_Survey\');\n
    ^International(\'section custom variable name description\',\'Asset_Survey\');
    \n
    \n\' name=\'variable\' size=\'2\'>\n

    \n

    \n

    \n
    ^International(\'jump to\',\'Asset_Survey\');\n
    ^International(\'jump to description\',\'Asset_Survey\');
    \n
    \n
    \n\">\n
    \n
    \n
    \n

    \n

    \n

    ^International(\'jump expression\',\'Asset_Survey\');\n
    ^International(\'jump expression description\',\'Asset_Survey\');
    \n
    \n
    \n\n
    \n

    \n
    \n

    \n

    ^International(\'randomize questions\',\'Asset_Survey\');\n
    ^International(\'randomize questions description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n

    \n

    ^International(\'questions per page\',\'Asset_Survey\');\n
    ^International(\'questions per page description\',\'Asset_Survey\');
    \n
    \n\n

    \n

    \n

    ^International(\'questions on section page\',\'Asset_Survey\');\n
    ^International(\'questions on section page description\',\'Asset_Survey\');
    \n
    \n\n^International(\'yes\',\'Asset_Survey\');\n^International(\'no\',\'Asset_Survey\');\n\n^International(\'yes\',\'Asset_Survey\');\n^International(\'no\',\'Asset_Survey\');\n\n

    \n

    \n

    ^International(\'title on every page\',\'Asset_Survey\');\n
    ^International(\'title on every page description\',\'Asset_Survey\');
    \n
    \n\n^International(\'yes\',\'Asset_Survey\');\n^International(\'no\',\'Asset_Survey\');\n\n^International(\'yes\',\'Asset_Survey\');\n^International(\'no\',\'Asset_Survey\');\n\n

    \n

    \n

    ^International(\'text on every page\',\'Asset_Survey\');\n
    ^International(\'text on every page description\',\'Asset_Survey\');
    \n
    \n\n^International(\'yes\',\'Asset_Survey\');\n^International(\'no\',\'Asset_Survey\');\n\n^International(\'yes\',\'Asset_Survey\');\n^International(\'no\',\'Asset_Survey\');\n\n

    \n

    \n

    ^International(\'terminal section\',\'Asset_Survey\');\n
    ^International(\'terminal section description\',\'Asset_Survey\');
    \n
    \n\n^International(\'yes\',\'Asset_Survey\');\n^International(\'no\',\'Asset_Survey\');\n\n^International(\'yes\',\'Asset_Survey\');\n^International(\'no\',\'Asset_Survey\');\n\n

    \n

    \n

    ^International(\'terminal section url\',\'Asset_Survey\');\n
    ^International(\'terminal section url description\',\'Asset_Survey\');
    \n
    \n\'>\n

    \n

    \n

    ^International(\'logical section\',\'Asset_Survey\');\n
    ^International(\'logical section help\',\'Asset_Survey\');
    \n
    \n\n^International(\'yes\',\'Asset_Survey\');\n^International(\'no\',\'Asset_Survey\');\n\n^International(\'yes\',\'Asset_Survey\');\n^International(\'no\',\'Asset_Survey\');\n\n

    \n
    \n

    \n

    ^International(\'section text\',\'Asset_Survey\');\n
    ^International(\'section text description\',\'Asset_Survey\');
    \n
    \n

    \n
    \n\n
    \n
    \n
    \n
    ',0,NULL,NULL),('
    \n
    ^International(\'please enter question information\',\'Asset_Survey\');
    \n
    \n
    \n \'>\n \n \n \n \n \n
    \n \n

    \n

    ^International(\'question number\',\'Asset_Survey\');\n
    ^International(\'question number description\',\'Asset_Survey\');
    \n
    \n \n

    \n \n

    \n

    ^International(\'question variable name\',\'Asset_Survey\');\n
    ^International(\'question variable name description\',\'Asset_Survey\');
    \n
    \n \' name=\'variable\' size=\'2\'>\n

    \n \n

    \n

    ^International(\'question type\',\'Asset_Survey\');\n
    ^International(\'question type description\',\'Asset_Survey\');
    \n
    \n \n

    \n \n

    \n

    ^International(\'question score\',\'Asset_Survey\');\n
    ^International(\'question score description\',\'Asset_Survey\');
    \n
    \n \' name=\'value\'>\n

    \n \n

    \n

    ^International(\'required label\',\'Asset_Survey\');\n
    ^International(\'required description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n \n

    \n

    ^International(\'randomize answers\',\'Asset_Survey\');\n
    ^International(\'randomize answers description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n

    \n

    ^International(\'vertical display\',\'Asset_Survey\');\n
    ^International(\'vertical display description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n \n\n\n
    \n\n

    \n

    ^International(\'show text in button\',\'Asset_Survey\');\n
    ^International(\'show text in button description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n \n

    \n

    ^International(\'allow comment\',\'Asset_Survey\');\n
    ^International(\'allow comment description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n \n

    \n

    ^International(\'comment cols\',\'Asset_Survey\');\n
    ^International(\'cols description\',\'Asset_Survey\');
    \n
    \n \' name=\'commentCols\'>\n

    \n \n

    \n

    ^International(\'comment rows\',\'Asset_Survey\');\n
    ^International(\'rows description\',\'Asset_Survey\');
    \n
    \n \' name=\'commentRows\'> \n

    \n \n

    \n

    ^International(\'maximum number of answers\',\'Asset_Survey\');\n
    ^International(\'maximum number of answers description\',\'Asset_Survey\');
    \n
    \n \' name=\'maxAnswers\' size=\'2\'>\n

    \n\n\n
    \n\n

    \n

    \n
    ^International(\'jump to\',\'Asset_Survey\');\n
    ^International(\'jump to description\',\'Asset_Survey\');
    \n
    \n
    \n \">\n
    \n
    \n
    \n

    \n\n

    \n

    ^International(\'jump expression\',\'Asset_Survey\');\n
    ^International(\'jump expression description\',\'Asset_Survey\');
    \n
    \n
    \n \n
    \n

    \n\n \n
    \n \n

    \n

    ^International(\'question text\',\'Asset_Survey\');\n
    ^International(\'question text description\',\'Asset_Survey\');
    \n
    \n

    \n
    \n \n
    \n
    \n
    \n
    \n','Survey/Edit',1,1,'wAc4azJViVTpo-2NYOXWvg',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    ^International(\'please enter question information\',\'Asset_Survey\');
    \n
    \n
    \n\'>\n\n\n\n\n\n
    \n

    \n

    ^International(\'question number\',\'Asset_Survey\');\n
    ^International(\'question number description\',\'Asset_Survey\');
    \n
    \n\n

    \n

    \n

    ^International(\'question variable name\',\'Asset_Survey\');\n
    ^International(\'question variable name description\',\'Asset_Survey\');
    \n
    \n\' name=\'variable\' size=\'2\'>\n

    \n

    \n

    ^International(\'question type\',\'Asset_Survey\');\n
    ^International(\'question type description\',\'Asset_Survey\');
    \n
    \n\n

    \n

    \n

    ^International(\'question score\',\'Asset_Survey\');\n
    ^International(\'question score description\',\'Asset_Survey\');
    \n
    \n\' name=\'value\'>\n

    \n

    \n

    ^International(\'required label\',\'Asset_Survey\');\n
    ^International(\'required description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n

    \n

    ^International(\'randomize answers\',\'Asset_Survey\');\n
    ^International(\'randomize answers description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n

    \n

    ^International(\'vertical display\',\'Asset_Survey\');\n
    ^International(\'vertical display description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n
    \n

    \n

    ^International(\'show text in button\',\'Asset_Survey\');\n
    ^International(\'show text in button description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n

    \n

    ^International(\'allow comment\',\'Asset_Survey\');\n
    ^International(\'allow comment description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n

    \n

    ^International(\'comment cols\',\'Asset_Survey\');\n
    ^International(\'cols description\',\'Asset_Survey\');
    \n
    \n\' name=\'commentCols\'>\n

    \n

    \n

    ^International(\'comment rows\',\'Asset_Survey\');\n
    ^International(\'rows description\',\'Asset_Survey\');
    \n
    \n\' name=\'commentRows\'> \n

    \n

    \n

    ^International(\'maximum number of answers\',\'Asset_Survey\');\n
    ^International(\'maximum number of answers description\',\'Asset_Survey\');
    \n
    \n\' name=\'maxAnswers\' size=\'2\'>\n

    \n
    \n

    \n

    \n
    ^International(\'jump to\',\'Asset_Survey\');\n
    ^International(\'jump to description\',\'Asset_Survey\');
    \n
    \n
    \n\">\n
    \n
    \n
    \n

    \n

    \n

    ^International(\'jump expression\',\'Asset_Survey\');\n
    ^International(\'jump expression description\',\'Asset_Survey\');
    \n
    \n
    \n\n
    \n

    \n
    \n

    \n

    ^International(\'question text\',\'Asset_Survey\');\n
    ^International(\'question text description\',\'Asset_Survey\');
    \n
    \n

    \n
    \n\n
    \n
    \n
    \n
    ',0,NULL,NULL),('
    \n
    ^International(\'please enter answer information\',\'Asset_Survey\');
    \n
    \n
    \n \'>\n \n \n \n \n \n
    \n \n

    \n

    ^International(\'answer number\',\'Asset_Survey\');\n
    ^International(\'answer number description\',\'Asset_Survey\');
    \n
    \n \n

    \n \n

    \n

    ^International(\'recorded answer\',\'Asset_Survey\');\n
    ^International(\'recorded answer description\',\'Asset_Survey\');
    \n
    \n \' name=\'recordedAnswer\'>\n

    \n \n

    \n

    ^International(\'answer score\',\'Asset_Survey\');\n
    ^International(\'answer score description\',\'Asset_Survey\');
    \n
    \n \' name=\'value\'>\n

    \n \n

    \n

    ^International(\'verbatim label\',\'Asset_Survey\');\n
    ^International(\'verbatim description\',\'Asset_Survey\');
    \n
    \n ^International(\'checked\',\'Asset_Survey\');>^International(\'yes\',\'Asset_Survey\');\n ^International(\'checked\',\'Asset_Survey\');>^International(\'no\',\'Asset_Survey\');\n

    \n \n

    \n

    ^International(\'min label\',\'Asset_Survey\');\n
    ^International(\'min description\',\'Asset_Survey\');
    \n
    \n \' name=\'min\' size=\'2\'>\n

    \n \n

    \n

    ^International(\'max label\',\'Asset_Survey\');\n
    ^International(\'max description\',\'Asset_Survey\');
    \n
    \n \' name=\'max\' size=\'2\'>\n

    \n \n

    \n

    ^International(\'step label\',\'Asset_Survey\');\n
    ^International(\'step description\',\'Asset_Survey\');
    \n
    \n \' name=\'step\' size=\'2\'>\n

    \n\n
    \n \n \n

    \n

    ^International(\'textCols label\',\'Asset_Survey\');\n
    ^International(\'cols description\',\'Asset_Survey\');
    \n
    \n \' name=\'textCols\'>\n

    \n \n

    \n

    ^International(\'textRows label\',\'Asset_Survey\');\n
    ^International(\'rows description\',\'Asset_Survey\');
    \n
    \n \' name=\'textRows\'>\n

    \n \n

    \n

    ^International(\'is this the correct answer\',\'Asset_Survey\');\n
    ^International(\'is this the correct answer description\',\'Asset_Survey\');
    \n
    \n checked>^International(\'yes\',\'Asset_Survey\');\n checked>^International(\'no\',\'Asset_Survey\');\n

    \n \n

    \n

    \n
    ^International(\'jump to\',\'Asset_Survey\');\n
    ^International(\'jump to description\',\'Asset_Survey\');
    \n
    \n
    \n \">\n
    \n
    \n
    \n

    \n \n

    \n

    ^International(\'jump expression\',\'Asset_Survey\');\n
    ^International(\'jump expression description\',\'Asset_Survey\');
    \n
    \n
    \n \n
    \n

    \n \n
    \n \n

    \n

    ^International(\'answer text\',\'Asset_Survey\');\n
    ^International(\'answer text description\',\'Asset_Survey\');
    \n
    \n

    \n
    \n \n
    \n \n
    \n
    \n
    \n','Survey/Edit',1,1,'AjhlNO3wZvN5k4i4qioWcg',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    ^International(\'please enter answer information\',\'Asset_Survey\');
    \n
    \n
    \n\'>\n\n\n\n\n
    \n

    \n

    ^International(\'answer number\',\'Asset_Survey\');\n
    ^International(\'answer number description\',\'Asset_Survey\');
    \n
    \n\n

    \n

    \n

    ^International(\'recorded answer\',\'Asset_Survey\');\n
    ^International(\'recorded answer description\',\'Asset_Survey\');
    \n
    \n\' name=\'recordedAnswer\'>\n

    \n

    \n

    ^International(\'answer score\',\'Asset_Survey\');\n
    ^International(\'answer score description\',\'Asset_Survey\');
    \n
    \n\' name=\'value\'>\n

    \n

    \n

    ^International(\'verbatim label\',\'Asset_Survey\');\n
    ^International(\'verbatim description\',\'Asset_Survey\');
    \n
    \n^International(\'checked\',\'Asset_Survey\');>^International(\'yes\',\'Asset_Survey\');\n^International(\'checked\',\'Asset_Survey\');>^International(\'no\',\'Asset_Survey\');\n

    \n

    \n

    ^International(\'min label\',\'Asset_Survey\');\n
    ^International(\'min description\',\'Asset_Survey\');
    \n
    \n\' name=\'min\' size=\'2\'>\n

    \n

    \n

    ^International(\'max label\',\'Asset_Survey\');\n
    ^International(\'max description\',\'Asset_Survey\');
    \n
    \n\' name=\'max\' size=\'2\'>\n

    \n

    \n

    ^International(\'step label\',\'Asset_Survey\');\n
    ^International(\'step description\',\'Asset_Survey\');
    \n
    \n\' name=\'step\' size=\'2\'>\n

    \n
    \n

    \n

    ^International(\'textCols label\',\'Asset_Survey\');\n
    ^International(\'cols description\',\'Asset_Survey\');
    \n
    \n\' name=\'textCols\'>\n

    \n

    \n

    ^International(\'textRows label\',\'Asset_Survey\');\n
    ^International(\'rows description\',\'Asset_Survey\');
    \n
    \n\' name=\'textRows\'>\n

    \n

    \n

    ^International(\'is this the correct answer\',\'Asset_Survey\');\n
    ^International(\'is this the correct answer description\',\'Asset_Survey\');
    \n
    \nchecked>^International(\'yes\',\'Asset_Survey\');\nchecked>^International(\'no\',\'Asset_Survey\');\n

    \n

    \n

    \n
    ^International(\'jump to\',\'Asset_Survey\');\n
    ^International(\'jump to description\',\'Asset_Survey\');
    \n
    \n
    \n\">\n
    \n
    \n
    \n

    \n

    \n

    ^International(\'jump expression\',\'Asset_Survey\');\n
    ^International(\'jump expression description\',\'Asset_Survey\');
    \n
    \n
    \n\n
    \n

    \n
    \n

    \n

    ^International(\'answer text\',\'Asset_Survey\');\n
    ^International(\'answer text description\',\'Asset_Survey\');
    \n
    \n

    \n
    \n\n
    \n
    \n
    \n
    ',0,NULL,NULL),('Dear ,\r\n\r\nYour responses for the Survey have expired and have been deleted. \r\n\r\nSincerely,\r\n\r\n','ExpireIncompleteSurveyResponses',1,1,'ExpireIncResptmpl00001',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'Dear ,\nYour responses for the Survey have expired and have been deleted.\nSincerely,\n',0,NULL,NULL),('
    \r\n \r\n

    \r\n Survey Summary Total Sections: Total Questions: Total Answers: \r\n

    \r\n

    \r\n Total Correct: Total Incorrect: \r\n

    \r\n

    \r\n

    \r\n

    \r\n \r\n
    \r\n
    \r\n Section: Correct: Incorrect: \r\n chart\'>\r\n
    \r\n
    datatable\'>
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n','Survey/Summary',1,1,'7F-BuEHi7t9bPi008H8xZQ',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n

    \nSurvey Summary Total Sections: Total Questions: Total Answers: \n

    \n

    \nTotal Correct: Total Incorrect: \n

    \n

    \n

    \n

    \n\n
    \n
    \nSection: Correct: Incorrect: \nchart\'>\n
    \n
    datatable\'>
    \n
    \n
    \n\n\n\n
    \n
    ',0,NULL,NULL),('\n\n\n

    failpass\">^International(\'test results\', \'Asset_Survey\'); - \n ^International(\'fail\', \'Asset_Survey\');^International(\'pass\', \'Asset_Survey\');

    \n

    Tests=, Passed=, Failed=,

    \n \n \n \n \n \n \n \n failpass \">\n \n \n \n \n \n \n \n \n \n
    ^International(\'test name\', \'Asset_Survey\');^International(\'tests run\', \'Asset_Survey\');^International(\'tests passed\', \'Asset_Survey\');^International(\'tests failed\', \'Asset_Survey\');^International(\'test result\', \'Asset_Survey\');
    ^International(\'fail\', \'Asset_Survey\');^International(\'pass\', \'Asset_Survey\');\">^International(\'575\', \'WebGUI\');\">^International(\'run test\', \'Asset_Survey\');
    \n\n

    ^International(\'details\', \'Asset_Survey\');

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    all_passed
    get_status
    failed
    parse_errors
    passed
    skipped
    todo
    todo_passed
    wait
    exit
    total
    has_problems
    has_errors
    \n\n\n\n

    failpass\">^International(\'test results\', \'Asset_Survey\'); - \n ^International(\'fail\', \'Asset_Survey\');^International(\'pass\', \'Asset_Survey\');

    \n \n \n \n passfail \">\n \n \n
    \n
    \n \n

    ^International(\'details\', \'Asset_Survey\');

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    passed
    failed
    actual_passed
    actual_failed
    todo
    todo_passed
    skipped
    plan
    tests_planned
    tests_run
    skip_all
    has_problems
    exit
    wait
    \n\n
    ','Survey/TestResults',1,1,'S3zpVitAmhy58CAioH359Q',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    failpass\">^International(\'test results\', \'Asset_Survey\'); -\n^International(\'fail\', \'Asset_Survey\');^International(\'pass\', \'Asset_Survey\');

    \n

    Tests=, Passed=, Failed=,

    \n\n\n\n\n\n\n\nfailpass \">\n\n\n\n\n\n\n\n\n\n
    ^International(\'test name\', \'Asset_Survey\');^International(\'tests run\', \'Asset_Survey\');^International(\'tests passed\', \'Asset_Survey\');^International(\'tests failed\', \'Asset_Survey\');^International(\'test result\', \'Asset_Survey\');
    ^International(\'fail\', \'Asset_Survey\');^International(\'pass\', \'Asset_Survey\');\">^International(\'575\', \'WebGUI\');\">^International(\'run test\', \'Asset_Survey\');
    \n

    ^International(\'details\', \'Asset_Survey\');

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    all_passed
    get_status
    failed
    parse_errors
    passed
    skipped
    todo
    todo_passed
    wait
    exit
    total
    has_problems
    has_errors
    \n\n

    failpass\">^International(\'test results\', \'Asset_Survey\'); -\n^International(\'fail\', \'Asset_Survey\');^International(\'pass\', \'Asset_Survey\');

    \n\n\npassfail \">\n\n\n
    \n
    \n

    ^International(\'details\', \'Asset_Survey\');

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    passed
    failed
    actual_passed
    actual_failed
    todo
    todo_passed
    skipped
    plan
    tests_planned
    tests_run
    skip_all
    has_problems
    exit
    wait
    \n
    ',0,NULL,NULL),('
    \n\n \n ^International(\'response complete\', \'Asset_Survey\'); on \n \n\n \n ^International(\'response restart\', \'Asset_Survey\'); on \n \n\n \n ^International(\'response timeout\', \'Asset_Survey\'); on \n \n\n \n ^International(\'response timeout restart\', \'Asset_Survey\'); on \n \n\n
    \n\n','Survey/Feedback',1,1,'nWNVoMLrMo059mDRmfOp9g',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n^International(\'response complete\', \'Asset_Survey\'); on \n\n\n^International(\'response restart\', \'Asset_Survey\'); on \n\n\n^International(\'response timeout\', \'Asset_Survey\'); on \n\n\n^International(\'response timeout restart\', \'Asset_Survey\'); on \n\n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n |\n \n \n \">^International(my subscriptions,Asset_Newsletter);\n |\n \n \">\n

    \n\n

    \n\n\n

    \">
    \n

    \n
    \n\n\n
    \n \n
    \n
    \n','Collaboration',1,1,'newslettercs0000000001',1252682678,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n\n

    \n\n\">\n|\n\n\n\">^International(my subscriptions,Asset_Newsletter);\n|\n\n\">\n

    \n

    \n\n

    \">
    \n

    \n\n\n
    \n\n
    \n
    ',0,NULL,NULL),('
    \n
    \n\n

    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n

    \n \n

    \n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n WGoddThreadWGevenThread\">\n \n \n \n \n \n \n \n \n \n \n \n
    \">^International(title label,Account_Contributions);\">^International(type label,Account_Contributions);\">^International(date label,Account_Contributions);
    \">^D(,);
    ^International(no contributions,Account_Contributions);
    \n \n

    \n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n

    \n \n \n

    ^International(contribution count,\'Account_Contributions\');

    \n
    \n
    ','Account/Contrib/View',1,1,'1IzRpX0tgW7iuCfaU2Kk0A',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n

    \n
    \n^International(member since,Account_Inbox); ^D(%z,);\n

    \n

    \n\n\n\" class=\"prevNext\">\"Previous\" \n\"> \n \" class=\"prevNext\">\"Next\"\n\n\n\n

    \n\n\n\n\n\n\n\n\n\n\n\nWGoddThreadWGevenThread\">\n\n\n\n\n\n\n\n\n\n\n\n
    \">^International(title label,Account_Contributions);\">^International(type label,Account_Contributions);\">^International(date label,Account_Contributions);
    \">^D(,);
    ^International(no contributions,Account_Contributions);
    \n

    \n\n\n\" class=\"prevNext\">\"Previous\" \n\"> \n \" class=\"prevNext\">\"Next\"\n\n\n\n

    \n

    ^International(contribution count,\'Account_Contributions\');

    \n
    \n
    ',0,NULL,NULL),('','StoryArchive/KeywordList',1,1,'0EAJ9EYb9ap2XwfrcXfdLQ',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('\r\n\r\n\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n\r\n\r\n
    \r\n\">^International(continue shopping button,Shop);
    \r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n
    (add $)
    Hide?
    \r\n\r\n\r\n\r\n
    \r\n','ThingyRecord/View',1,1,'TKmhv8boP3TD2xwSwUBq0g',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n

    \n
    \n\n\n
    \n\">^International(continue shopping button,Shop);
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    (add $)
    Hide?
    \n\n\n
    ',0,NULL,NULL),('\n
    \">\n
    \n\n
    \n
    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n
    \n\n \n

    \n
    \n \n \n \n \n \n \n
    *
    \n \n \n
    \n\n
    \n
    \n
    ','Account/Profile/Edit',1,1,'75CmQgpcCSkdsL-oawdn3Q',1253555614,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \">\n
    \n
    \n
    \n
    \n^International(member since,Account_Inbox); ^D(%z,);\n
    \n\n

    \n
    \n\n\n\n\n\n\n
    *
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('
    \n

    \n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n\n
    \n
    \n\n >\n >\n\n
    ','Survey/Take',1,1,'d8jMMMRddSQ7twP4l1ZSIw',1253555614,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    \n>\n>\n
    ',0,NULL,NULL),('\" id=\"id\">\n

    \n
    \n

    \n\n\n\n\n\">\n\n>\n\n

    \n


    \n\n

    \n

    \n

    ^International(last updated,Asset); ^International(ago,Asset_Story);

    \n

    ^International(by,Asset_Collaboration);

    \n


    \n\n \n \n \n
    \n \">\" alt=\"\" title=\"\" />

    \n ^International(Source,Asset_Story);: \n \n \n

      \n \n
    1. style=\"width:px;\">\n
      \n \">\" alt=\"\" title=\"\" />
      \n ^International(Source,Asset_Story);: \n
    2. \n
      \n
    \n \n \n \n\n

    \n

    ^International(keywords,Asset); \">

    \n
    ','Story',1,1,'3QpYtHrq_jmAk1FNutQM5A',1253636379,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n

    \n
    \n

    \n\n\n\n\n\">\n\n>\n\n

    \n


    \n\n

    \n

    \n

    ^International(last updated,Asset); ^International(ago,Asset_Story);

    \n

    ^International(by,Asset_Collaboration);

    \n


    \n\n\n\n\n
    \n\">\" alt=\"\" title=\"\" />

    \n^International(Source,Asset_Story);: \n\n\n

      \n\n
    1. style=\"width:px;\">\n
      \n\">\" alt=\"\" title=\"\" />
      \n^International(Source,Asset_Story);: \n
    2. \n
      \n
    \n\n\n\n\n

    \n

    ^International(keywords,Asset); \">

    \n
    ',0,NULL,NULL),('
    \" class=\"storyArchive\">\n\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n
    \n
    \n\n\n\n
      \n

      ^D(%c %D %y,);

      \n \n
    • \"> ^D(%Z,);
    • \n
      \n
    \n\n\n
      \n
    • \n\n class=\"active\">\n \">\n \n\n
    • \n
    \n
    \n\n\n
    ','StoryArchive',1,1,'yxD5ka7XHebPLD-LXBwJqw',1253635396,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"storyArchive\">\n\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n
    \n
    \n\n
      \n

      ^D(%c %D %y,);

      \n\n
    • \"> ^D(%Z,);
    • \n
      \n
    \n\n
      \n
    • \n\n class=\"active\">\n\">\n\n\n
    • \n
    \n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"viewStoryTopic\">\n\" id=\"id\">\n

    \n

    \n\n\n\n\n\">\n\n>\n\n

    \n

    \n

    \n

    ^International(last updated,Asset); ^International(ago,Asset_Story);

    \n
    \n
    \n\n \n \n \n
    \n \">\" alt=\"\" title=\"\" />

    \n ^International(Source,Asset_Story);: \n \n \n
      \n \n
    1. style=\"width:px;\">\n
      \n \">\" alt=\"\" title=\"\" />
      \n ^International(Source,Asset_Story);: \n
    2. \n
      \n
    \n \n
    \n \n\n
    \n

    ^International(by,Asset_Collaboration);

    \n \n \n
    \n

    ^International(keywords,Asset); \">

    \n
    \n','Story',1,1,'TbDcVLbbznPi0I0rxQf2CQ',1253636379,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"viewStoryTopic\">\n\" id=\"id\">\n

    \n

    \n\n\n\n\n\">\n\n>\n\n

    \n

    \n

    \n

    ^International(last updated,Asset); ^International(ago,Asset_Story);

    \n
    \n
    \n\n\n\n\n
    \n\">\" alt=\"\" title=\"\" />

    \n^International(Source,Asset_Story);: \n\n\n
      \n\n
    1. style=\"width:px;\">\n
      \n\">\" alt=\"\" title=\"\" />
      \n^International(Source,Asset_Story);: \n
    2. \n
      \n
    \n\n
    \n\n\n
    \n

    ^International(by,Asset_Collaboration);

    \n\n\n
    \n

    ^International(keywords,Asset); \">

    \n
    ',0,NULL,NULL),('\n\n\n
    \n\" class=\"WGprofile_displayView\">^International(\'back to profile label\',\'Account_Profile\');\n
    \n
    \n
    \n \n
    \n \n \n
    \n
    \n \n
    * -  ^International(\'required field\',Account_Profile);
    † - ^International(\'set by admin\',Account_Profile);
    \n
    \n
    \n
    \n
    \n
    \n','Account/Layout',1,1,'FJbUTvZ2nUTn65LpW6gjsA',1256092369,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n
    \n\" class=\"WGprofile_displayView\">^International(\'back to profile label\',\'Account_Profile\');\n
    \n
    \n
    \n\n
    \n\n\n
    \n
    \n\n
    * -  ^International(\'required field\',Account_Profile);
    † - ^International(\'set by admin\',Account_Profile);
    \n
    \n
    \n
    \n
    \n
    \n',0,NULL,NULL),('\n\n\n\n','EMS/LookupRegistrant',1,1,'OOyMH33plAy6oCj_QWrxtg',1257311886,'WebGUI::Asset::Template::HTMLTemplate',1,'\n',0,NULL,NULL),('\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n \r\n \r\n , \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n\r\n\r\n','EMS/PrintBadge',1,1,'PsFn7dJt4wMwBa8hiE3hOA',1257311886,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n
    \n
    \n\n
    \n
    \n\n\n, \n
    \n
    \n\n
    \n
    \n\n',0,NULL,NULL),('\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
    \r\n
    \r\n : \r\n
    \r\n
    \r\n \r\n / \r\n
    \r\n
    \r\n : \r\n
    \r\n
    \r\n\r\n\r\n','EMS/PrintTicket',1,1,'yBwydfooiLvhEFawJb0VTQ',1257311887,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n
    \n
    \n: \n
    \n
    \n\n / \n
    \n
    \n: \n
    \n
    \n\n',0,NULL,NULL),('\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n\n\n
    \n
    \n
    \n
    \n
    \n
    \n\n\">^International(schedule back link,Asset_EventManagementSystem);\n\n\n','EMS/Schedule',1,1,'S2_LsvVa95OSqc66ITAoig',1257311887,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\">^International(schedule back link,Asset_EventManagementSystem);\n',0,NULL,NULL),('\r\n\r\n\r\n \r\n\r\n\r\n\r\n
    \r\n\r\n
    \r\n
    \r\n : \r\n
    \r\n
    \r\n \r\n / \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n','EMS/PrintRemainingTickets',1,1,'hreA_bgxiTX-EzWCSZCZJw',1257311887,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n
    \n\n
    \n
    \n: \n
    \n
    \n\n / \n
    \n
    \n
    \n
    \n\n',0,NULL,NULL),('\" id=\"id\">\n\n

    \n
    \n\n\n

    \n
    \n\n\n
      \n\n
    • \n\n
    \n
    \n\n\n
    \n \n
    \n
    \n\n\n
    \n \">\n • \">\n \n • \">\n \n \n • \">\n • \">\n \n
    \n
    \n\n\n\n\n \n \n \n\n\n \n \n \n \n\n\n
    \n \n \n *\n \n \n \n \n \n \n
    \n
    ^International(template captcha label,Asset_DataForm);
    \n\n\n','DataForm',1,1,'PBtmpl0000000000000020',1257311887,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n
      \n\n
    • \n\n
    \n
    \n\n
    \n\n
    \n
    \n\n
    \n\">\n• \">\n\n• \">\n\n\n• \">\n• \">\n\n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n*\n\n\n\n\n\n\n
    \n
    ^International(template captcha label,Asset_DataForm);
    \n',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n
    \n \n
    \n\n\n\n\n \n \n\n\n
    \n

    \n\" class=\"backLabel\">\n\n\n','DataForm',1,1,'PBtmpl0000000000000104',1257311888,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n\n
    \n\n
    \n\n\n\n\n\n\n\n
    \n

    \n\" class=\"backLabel\">',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n\n\n\n

    \n
    \n\n\n
      \n \n
    • \n
      \n
    \n
    \n\n\n
    \n \n
    \n
    \n\n\n
    \n \">\n • \">\n \n • \">\n \n \n • \">\n • \">\n \n
    \n
    \n\n\n
    \n \n )\" id=\"tab\" class=\"tab\">\n \n \n \n \n \n \n \n
    \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n \n \n \n \n *\n \n \n \n \n \n \n \n
    \n \n
    \n
    \n \n
    \n
    \n \n
    \n^International(template captcha label,Asset_DataForm);
    \n\n\n\n','DataForm',1,1,'PBtmpl0000000000000116',1257311888,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n
      \n\n
    • \n
      \n
    \n
    \n\n
    \n\n
    \n
    \n\n
    \n\">\n• \">\n\n• \">\n\n\n• \">\n• \">\n\n
    \n
    \n\n
    \n\n)\" id=\"tab\" class=\"tab\">\n\n\n\n\n\n\n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n\n\n\n\n*\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n\n
    \n
    \n\n
    \n^International(template captcha label,Asset_DataForm);
    \n\n\n',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n
      \n \n
    • \n
      \n
    \n
    \n\n\n \n

    \n\n\n\n

    \n \">\n • \">\n \n • \" onclick=\"\">\n \n \n • \" onclick=\"\">\n \n \n • \">\n • \">\n \n
    \n
    \n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n \n \n \n \n *\n \n \n \n \n \n \n \n
    \n \n
    \n
    ^International(template captcha label,Asset_DataForm);
    \n
    \n\n\n\n','DataForm',1,1,'PBtmpl0000000000000141',1257311888,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n
      \n\n
    • \n
      \n
    \n
    \n\n\n

    \n\n\n

    \n\">\n• \">\n\n• \" onclick=\"\">\n\n\n• \" onclick=\"\">\n\n\n• \">\n• \">\n\n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n\n\n\n\n*\n\n\n\n\n\n\n\n
    \n\n
    \n
    ^International(template captcha label,Asset_DataForm);
    \n
    \n\n',0,NULL,NULL),('\r\n \">\r\n\r\n\">\r\n','Macro/PickLanguage',1,1,'_aE16Rr1-bXBf8SIaLZjCg',1257311888,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\">\n\n\">',0,NULL,NULL),('\r\n\r\n\r\n \r\n ^Page(\"title\"); - WebGUI\r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n ^AdminBar;\r\n
    \r\n\r\n ^AssetProxy(flexmenu);\r\n\r\n
    \r\n \r\n\r\n
      \r\n
    • ^H;
    • \r\n
    • ^a(^@;);
    • \r\n
    • ^LoginToggle;
    • \r\n ^GroupText(Turn Admin On,
    • ^AdminToggle;
    • );\r\n
    \r\n\r\n \r\n
    \r\n\r\n \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','style',0,1,'PBtmpl0000000000000060',1258524916,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n^Page(\"title\"); - WebGUI\n\n\n\n\n\n\n\n\n^AdminBar;\n
    \n^AssetProxy(flexmenu);\n
    \n\n
      \n
    • ^H;
    • \n
    • ^a(^@;);
    • \n
    • ^LoginToggle;
    • \n^GroupText(Turn Admin On,
    • ^AdminToggle;
    • );\n
    \n\n
    \n\n
    \n\n\n\n\n\n',0,NULL,NULL),('\r\n\r\n\r\n WebGUI <tmpl_var session.webgui.version>-<tmpl_var session.webgui.status> ^International(admin console,AdminConsole);\r\n \r\n \r\n \r\n\r\n\r\n \r\n\r\n','style',1,0,'PBtmpl0000000000000137',1258524916,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\nWebGUI <tmpl_var session.webgui.version>-<tmpl_var session.webgui.status> ^International(admin console,AdminConsole);\n\n\n\n\n\n\n\n',0,NULL,NULL),('','style',0,0,'PBtmpl0000000000000132',1258524916,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('\r\n\r\n\r\n \r\n ^Page(title); - ^c();\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n ^AdminBar();\r\n\r\n \r\n\r\n ^AdminToggle();\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','style',1,1,'PBtmplBlankStyle000001',1258524916,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n^Page(title); - ^c();\n\n\n\n\n\n\n\n\n\n^AdminBar();\n\n^AdminToggle();\n\n\n\n\n\n',0,NULL,NULL),('
    \" class=\"nav dropMenu\">\n\n\" id=\"id\">\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n
    \n\n

    \n\n

    \n
    \n\n\n\n\n
    \n','Navigation',1,1,'PBtmpl0000000000000117',1259133274,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav dropMenu\">\n\" id=\"id\">\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n
    \n\n

    \n\n

    \n
    \n\n\n
    ',0,NULL,NULL),('
    \" class=\"nav synopsisMenu\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n
    \n \n
    current\">\">
    \n
    \">
    \n
    \n
    \n
    \n\n\n
    \n','Navigation',1,1,'PBtmpl0000000000000136',1259133274,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav synopsisMenu\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
    \n\n
    current\">\">
    \n
    \">
    \n
    \n
    \n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"nav crumbTrail\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n \n \n \"> >\n \n \n\n\n\n
    \n','Navigation',1,1,'PBtmpl0000000000000093',1259133274,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav crumbTrail\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n\n\n\"> >\n\n\n\n\n
    ',0,NULL,NULL),('
    \" class=\"syndicated articles\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n

    \">

    \n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n \n\n\n\n
    \n','SyndicatedContent',1,1,'GNvjCFQWjY2AF2uf0aCM8Q',1259133274,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"syndicated articles\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n

    \">

    \n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n\n\n\n
    ',0,NULL,NULL),('
    \" class=\"layout oneovertwo\">\n \n \" id=\"id\">\n\n \n \n \n\n \n

    \n \n

    \n
    \n\n \n
    \n \n \n
    \n
    \n \n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n\n \n
    \n
    \n
    \n\n \n
    \n\n
    \n\n \n \n \n \n \n
    \n
     
    \n
    \n \n
    \n\n\n
    \n','Layout',1,1,'-PkdI8l1idu-8gDX3iOdcw',1259133274,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"layout oneovertwo\">\n\" id=\"id\">\n\n\n\n\n

    \n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n
    \n\n\n\n\n\n
    \n
     
    \n
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"article withImage\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n
    \n\n\n
    \n \" alt=\"\" />\n \n
    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n \n
    \n

    \">

    \n \n
    \n
    \n
    \n\n\n
    \n\n
    \n\n\n
    \n','Article',1,1,'PBtmpl0000000000000103',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"article withImage\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n
    \n\n
    \n\" alt=\"\" />\n\n
    \n
    \n\n
    \n\n\n
    \n
    \n\n\n
    \n

    \">

    \n\n
    \n
    \n
    \n\n
    \n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"file\">\n\" id=\"id\">\n\n\n \n\n\n\" alt=\"\" class=\"wg-icon\" />\n\">\n\n\n
    \n','FileAsset',1,1,'PBtmpl0000000000000024',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"file\">\n\" id=\"id\">\n\n\n\n\" alt=\"\" class=\"wg-icon\" />\n\">\n\n
    ',0,NULL,NULL),('
    \" class=\"article withPagination\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n
    \n\n\n
    \n \n \n
    \n
    \n\n\n \n \n
    \n

    \">

    \n \n
    \n
    \n
    \n
    \n\n\n
    \n\n\n \n
    \n
      \n \n
    • \n \" alt=\"\" class=\"wg-icon\" />\n \">\n
    • \n
      \n
    \n \n
    \n
    \n
    \n\n
    \n\n\n
      \n
    • \n \n class=\"active\">\n \">\n \n \n
    • \n
    \n
    \n\n\n
    \n','Article',1,1,'XdlKhCDvArs40uqBhvzR3w',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"article withPagination\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n
    \n\n
    \n\n\n
    \n
    \n\n\n\n
    \n

    \">

    \n\n
    \n
    \n
    \n
    \n\n
    \n\n\n
    \n
      \n\n
    • \n\" alt=\"\" class=\"wg-icon\" />\n\">\n
    • \n
      \n
    \n\n
    \n
    \n
    \n
    \n\n
      \n
    • \n\n class=\"active\">\n\">\n\n\n
    • \n
    \n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"navigation indentMenu\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n \n\n \n \"\n class=\"level current ancestor\"\n onclick=\"window.open(this.href);return false;\">\n \n\n\n\n
    \n','Navigation',1,1,'PBnav00000000indentnav',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"navigation indentMenu\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n\n\"\nclass=\"level current ancestor\"\nonclick=\"window.open(this.href);return false;\">\n\n\n\n
    ',0,NULL,NULL),('
    \" class=\"nav tabsMenu\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n
      \n \n class=\"current\" class=\"ancestor\">\n \">\n \n \n
    \n
    \n\n\n
    \n','Navigation',1,1,'PBtmpl0000000000000124',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav tabsMenu\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
      \n\n class=\"current\" class=\"ancestor\">\n\">\n\n\n
    \n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"layout rightcolumn\">\n\n \" id=\"id\">\n\n \n \n \n\n \n

    \n \n

    \n
    \n\n \n
    \n \n \n
    \n
    \n \n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n\n \n
    \n
    \n
    \n\n \n
    \n\n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n\n \n
    \n
    \n
    \n\n \n
    \n\n
    \n \n \n \n \n \n \n
    \n
     
    \n
    \n \n
    \n\n\n
    \n','Layout',1,1,'PBtmpl0000000000000131',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"layout rightcolumn\">\n\" id=\"id\">\n\n\n\n\n

    \n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n
    \n\n\n\n\n\n
    \n
     
    \n
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"nav topNav\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n
    \n\n \n
    \n
    \n
      \n \n \n
    \n
    \n
    \n \n
    \n
  • onclick=\"window.open(this.href); return false;\" href=\"\">\n \n
    \n
    \n
      \n \n \n \n \n \n \n
    \n \n
  • \n \n\n\n\n\n\n','Navigation',1,1,'PBtmpl0000000000000134',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav topNav\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n
    \n\n\n
    \n
    \n
      \n\n\n
    \n
    \n
    \n\n
    \n
  • onclick=\"window.open(this.href); return false;\" href=\"\">\n\n
    \n
    \n
      \n\n\n\n\n\n\n
    \n\n
  • \n\n\n\n\n',0,NULL,NULL),('
    \" class=\"folder\">\n\n\" id=\"id\">\n\n\n \n\n \n\n

    \n
    \n \n\n
    \n \n\n
    \n
    \n \n\n

    \">

    \n
    \n\n \n\n \n\n \n \n\n\n\n\n \n\n\n \n \n \n \n\n\n\n
    \n \n \" class=\"wg-icon\" alt=\"\" />\n \">\n \n \" class=\"wg-icon\" alt=\"\" />\n \n \n \n \n
    \n \n \n \n \n \n \n \" class=\"wg-icon\" alt=\"\" />\n \">\n \n \" class=\"wg-icon\" alt=\"\" />\n \n \n \n \n \n ^D(\"%z %Z\",);\n \n \n
    \n\n\n
    \n','Folder',1,1,'PBtmpl0000000000000078',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"folder\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n

    \">

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\" class=\"wg-icon\" alt=\"\" />\n\">\n\n\" class=\"wg-icon\" alt=\"\" />\n\n\n\n\n
    \n\n\n\n\n\n\n\" class=\"wg-icon\" alt=\"\" />\n\">\n\n\" class=\"wg-icon\" alt=\"\" />\n\n\n\n\n\n^D(\"%z %Z\",);\n\n\n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"poll\">\n\n\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n
    \n

    \n\n\n \n
    \n \n
    \n
    \n
    \n
    \n \n
    \n \n\n \n \" alt=\"graph\" />\n \n \n
    \n \n \n \n \n \n
    \" class=\"pollColor\">^Spacer(1,1); % ()
    \n
    \n

    :

    \n
    \n
    \n
    \n\n\n
    \n','Poll',1,1,'PBtmpl0000000000000055',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"poll\">\n\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n
    \n\n\n
    \n
    \n
    \n

    \n\n\n
    \n\n
    \n
    \n
    \n
    \n\n
    \n\n\n\n\" alt=\"graph\" />\n\n\n
    \n\n\n\n\n\n
    \" class=\"pollColor\">^Spacer(1,1); % ()
    \n
    \n

    :

    \n
    \n
    \n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"syndicated default\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n

    \">

    \n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n
      \n \n
    • \n \">\n - \n
    • \n
      \n
    \n
    \n\n\n
    \n','SyndicatedContent',1,1,'PBtmpl0000000000000065',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"syndicated default\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n

    \">

    \n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
      \n\n
    • \n\">\n- \n
    • \n
      \n
    \n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"layout default\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n
    \n\n \n \n \n \n \n \n \n \">\n \n \n \n \n \n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n \n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n
    \n\n\n \n \n \n \n
    \n
     
    \n
    \n\n
    \n\n\n
    \n','Layout',1,1,'PBtmpl0000000000000054',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"layout default\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n
    \n\n\n\n\n\n
    \n
     
    \n
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"nav horizontalMenu\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n \n\n\n\n
    \n','Navigation',1,1,'PBtmpl0000000000000108',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav horizontalMenu\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n\n\n\n
    ',0,NULL,NULL),('
    \" class=\"article linkedImage\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n
    \n\n\n
    \n \n \">\" alt=\"\" />\n \n \" class=\"caption\">\n \n \n \" alt=\"\" />\n \n
    \n \n
    \n\n\n
    \n \n
    \n \n
    \n\n
    \n\n\n
    \n\n\n
    \n','Article',1,1,'PBtmpl0000000000000115',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"article linkedImage\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n
    \n\n
    \n\n\">\" alt=\"\" />\n\n\" class=\"caption\">\n\n\n\" alt=\"\" />\n\n
    \n\n
    \n\n
    \n\n
    \n\n
    \n
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"layout oneoverthree\">\n \n \" id=\"id\">\n\n \n \n \n\n \n

    \n \n

    \n
    \n\n \n
    \n \n \n
    \n
    \n \n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n
    \n\n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n\n \n
    \n
    \n
    \n\n \n
    \n\n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n
    \n\n \n \n \n \n \n
    \n
     
    \n
    \n \n
    \n\n\n
    \n','Layout',1,1,'PBtmpl0000000000000109',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"layout oneoverthree\">\n\" id=\"id\">\n\n\n\n\n

    \n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n
    \n\n\n\n\n\n
    \n
     
    \n
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"layout threeColumns\">\n\n \" id=\"id\">\n\n \n \n \n\n \n

    \n
    \n\n \n
    \n \n \n
    \n
    \n\n \n
    \n\n \n \n \n \n\n \n \n \">\n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n\n \n
    \n
    \n
    \n\n \n
    \n\n \n
    \n\n \n \n \n \n\n \n \n \">\n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n\n \n
    \n
    \n
    \n\n \n
    \n\n \n
    \n\n \n \n \n \n\n \n \n \">\n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n\n \n
    \n
    \n
    \n\n \n
    \n\n
    \n\n \n \n \n \n \n
     
    \n \n
    \n\n\n
    \n\n','Layout',1,1,'VCFhB9WOsDsH2Apj3c6DpQ',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"layout threeColumns\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n
    \n\n\n\n\n\n
     
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"article default\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n
    \n\n\n
    \n \n \n
    \n
    \n\n\n \n
    \n

    \">

    \n \n
    \n
    \n
    \n\n\n
    \n\n\n
    \n
      \n \n
    • \n \" alt=\"\" class=\"wg-icon\" />\n \">\n
    • \n
      \n
    \n \n
    \n
    \n\n
    \n\n\n
    \n','Article',1,1,'PBtmpl0000000000000002',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"article default\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n
    \n\n
    \n\n\n
    \n
    \n\n\n
    \n

    \">

    \n\n
    \n
    \n
    \n\n
    \n\n
    \n
      \n\n
    • \n\" alt=\"\" class=\"wg-icon\" />\n\">\n
    • \n
      \n
    \n\n
    \n
    \n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"article item\">\n\n \" id=\"id\">\n\n \n \n \n \n

    \n \n \n \">\n \n \n \n \n \n \n

    \n \n \n
    \n \n
    \n \n
    \n \n \n
    \n
      \n \n
    • \n \" alt=\"\" class=\"wg-icon\" />\n \">\n
    • \n
      \n
    \n \n
    \n
    \n\n
    \n\n\n
    \n','Article',1,1,'PBtmpl0000000000000123',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"article item\">\n\" id=\"id\">\n\n\n\n

    \n\n\n\">\n\n\n\n\n\n\n

    \n\n
    \n\n
    \n\n
    \n\n
    \n
      \n\n
    • \n\" alt=\"\" class=\"wg-icon\" />\n\">\n
    • \n
      \n
    \n\n
    \n
    \n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"layout sidebyside\">\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n
    \n\n \n \n \n \n \n \n \n \">\n \n \n \n \n \n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n \n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n\n
    \n\n \n \n \n \n \n \n \n \">\n \n \n \n \n \n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n \n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n
    \n\n\n \n \n \n \n
    \n
     
    \n
    \n\n
    \n\n\n
    \n','Layout',1,1,'PBtmpl0000000000000135',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"layout sidebyside\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n\n
    \n\n\n\n\n\n\n\">\n\n\n\n\n\n\n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n\n\n\n\n
    \n
    \n
    \n\n
    \n
    \n\n\n\n\n\n
    \n
     
    \n
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"nav bulletedList\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n
      \n\n\n\n
    \n \n\n\n class=\"current\" class=\"ancestor\"
    >\n onclick=\"window.open(this.href);return false;\" href=\"\">\n\n\n
      \">\n\n \n\n\n\n \n
    \n \n \n
    \n\n\n\n\n\n\n
    \n','Navigation',1,1,'PBnav00000000000bullet',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav bulletedList\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
      \n\n\n
    \n\n\n class=\"current\" class=\"ancestor\"
    >\nonclick=\"window.open(this.href);return false;\" href=\"\">\n\n
      \">\n\n\n\n\n\n
    \n\n\n
    \n\n\n\n\n
    ',0,NULL,NULL),('
    \" class=\"file swfobject\">\n\" id=\"id\">\n\n\n \n\n\n
    \n\n \" />\n \n \" width=\"400\" height=\"300\">\n \n \n \"Get\n \n \n \n \n\n
    \n\n\n
    \n','FileAsset',1,1,'MK4fCNoyrx5SE8eyDfOpxg',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"file swfobject\">\n\" id=\"id\">\n\n\n\n
    \n\n\" />\n\n\" width=\"400\" height=\"300\">\n\n\n\"Get\n\n\n\n\n\n
    \n\n
    ',0,NULL,NULL),('
    \" class=\"nav treeNav\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n
    \">\n
      \n\n\n \n
    \n \n \n\n class=\"expanded\" class=\"expanded\">\n \">\n\n \n
      \">\n \n \n \n\n \n \n
    \n \n \n
    \n\n\n\n
    \n\n\n\n
    \n\n\n
    \n\n','Navigation',1,1,'PBtmpl0000000000000130',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav treeNav\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n\n
    \">\n
      \n\n\n
    \n\n\n class=\"expanded\" class=\"expanded\">\n\">\n\n
      \">\n\n\n\n\n\n
    \n\n\n
    \n\n\n
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n\r\n\r\n\r\n \r\n\r\n \r\n
    \r\n\r\n

    \r\n \">^International(add a ticket,Asset_EventManagementSystem);\r\n •\r\n \">^International(meta fields,Asset_EventManagementSystem);\r\n •\r\n \">^International(import,Asset_EventManagementSystem);\r\n •\r\n \">^International(export,Asset_EventManagementSystem);\r\n •\r\n \">^International(print remaining tickets,Asset_EventManagementSystem);\r\n

    \r\n
    \r\n


    \r\n

    \r\n

    \r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\r\n\r\n \r\n\r\n \r\n
    \r\n\r\n

    \">^International(add a ribbon,Asset_EventManagementSystem);

    \r\n
    \r\n

    \r\n
    \r\n\r\n\r\n\r\n
    \r\n \r\n\r\n\r\n\r\n\r\n \r\n \r\n
    \r\n\r\n

    \">^International(add a token,Asset_EventManagementSystem);

    \r\n
    \r\n

    \r\n
    \r\n\r\n\r\n\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n^ViewCart;\r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n\r\n \r\n\r\n\r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n','EMS/BadgeBuilder',1,1,'BMybD3cEnmXVk2wQ_qEsRQ',1263962529,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n
    \n
    \n\n
    \n\n
    \n\n

    \n\">^International(add a ticket,Asset_EventManagementSystem);\n•\n\">^International(meta fields,Asset_EventManagementSystem);\n•\n\">^International(import,Asset_EventManagementSystem);\n•\n\">^International(export,Asset_EventManagementSystem);\n•\n\">^International(print remaining tickets,Asset_EventManagementSystem);\n

    \n
    \n


    \n

    \n

    \n
    \n\n
    \n\n
    \n\n

    \">^International(add a ribbon,Asset_EventManagementSystem);

    \n
    \n

    \n
    \n\n
    \n\n
    \n\n

    \">^International(add a token,Asset_EventManagementSystem);

    \n
    \n

    \n
    \n\n
    \n
    \n
    \n
    \n
    \n\n\n^ViewCart;\n
    \n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n\n\n\n
    \n
    \n
    \n',0,NULL,NULL),('

    \" />','ImageAsset',1,1,'mRtqRuVikSe82BQsYBlD0A',1263962529,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \" />',0,NULL,NULL),('\n\n
    \n','Account/Layout',1,1,'aUDsJ-vB9RgP-AYvPOy8FQ',1263962529,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n
    \n',0,NULL,NULL),('
    \r\n\r\n\r\n\r\n

    ^International(errors,Asset_Event);

    \r\n
      \r\n\r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n\r\n\r\n \r\n\r\n
    \r\n ^International(tab event,Asset_Event);\r\n ^International(recurrence,Asset_Event);\r\n \r\n \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(event title,Asset_Event);
    ^International(short title,Asset_Event);
    ^International(location,Asset_Event);
    ^International(description,Asset_Event);
    ^International(start date,Asset_Event);
    ^International(end date,Asset_Event);
    ^International(time,Asset_Event);
     
    ^International(related material,Asset_Event);\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \'>\r\n \r\n \r\n \r\n \r\n \r\n\r\n
    \r\n\r\n
    \' type=\'button\' name=\'\' value=\'DEL\' onClick=\"return delete_link(\'\',\'\');\">\r\n \' value=\'\'>\r\n \' value=\"\">\r\n
    \'>\r\n\' name=\'\' value=\'\'>\r\n\' name=\'rel_delconfirm_\' value=\'0\'>\r\n
    \r\n
    \r\n
    ^International(group to view,Asset_Event);
    ^International(attachments for event,Asset_Event);
    \r\n
    \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n
    ^International(recurrence pattern,Asset_Event);
    ^International(recurrence range,Asset_Event);\r\n

    ^International(start,Asset_Event);:

    \r\n

    \r\n

    ^International(end,Asset_Event);:

    \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n','Calendar/EventEdit',1,1,'CalendarEventEdit00001',1269401468,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n\n

    ^International(errors,Asset_Event);

    \n
      \n\n
    • \n
      \n
    \n
    \n\n\n\n\n
    \n^International(tab event,Asset_Event);\n^International(recurrence,Asset_Event);\n\n\n
    \n\n\n\n\n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(event title,Asset_Event);
    ^International(short title,Asset_Event);
    ^International(location,Asset_Event);
    ^International(description,Asset_Event);
    ^International(start date,Asset_Event);
    ^International(end date,Asset_Event);
    ^International(time,Asset_Event);
     
    ^International(related material,Asset_Event);\n\n\n\n\n\n\n\n\n\n\'>\n\n\n\n\n\n\n
    \n\n
    \' type=\'button\' name=\'\' value=\'DEL\' onClick=\"return delete_link(\'\',\'\');\">\n\' value=\'\'>\n\' value=\"\">\n
    \'>\n\' name=\'\' value=\'\'>\n\' name=\'rel_delconfirm_\' value=\'0\'>\n
    \n
    \n
    ^International(group to view,Asset_Event);
    ^International(attachments for event,Asset_Event);
    \n
    \n\n\n\n\n\n\n\n\n\n\n
    ^International(recurrence pattern,Asset_Event);
    ^International(recurrence range,Asset_Event);\n

    ^International(start,Asset_Event);:

    \n

    \n

    ^International(end,Asset_Event);:

    \n
    \n
    \n
    \n\n',0,NULL,NULL),('\n \n WebGUI ^International(assetName,Asset_Survey);\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\n\n
    \n
    \n
    \n
    \n ^International(Loading...,WebGUI);\n
    \n
    \n
    \n\n\n \" id=\"id\">\n \n \n \n
    \n

    ^International(warnings,Asset_Survey);

    \n
    \n
    \n \n
    \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n','Survey/Edit',1,1,'GRUNFctldUgop-qRLuo_DA',1269401469,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\nWebGUI ^International(assetName,Asset_Survey);\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    \n
    \n
    \n^International(Loading...,WebGUI);\n
    \n
    \n
    \n\" id=\"id\">\n\n
    \n

    ^International(warnings,Asset_Survey);

    \n
    \n
    \n
    \n
    \n
    \n\n\n\n
    \n
    \n
    \n
    \n',0,NULL,NULL),('\n\n\n\n \n ^Page(title); - ^c;\n \n\n\n\n ^AdminBar;\n
    \n
     
    \n
    \n
    ^H(^c(););
    \n
    \n ^AssetProxy(crystalx/site-search);\n
    \n
    \n\n
    \n ^AssetProxy(crystalx/crystalx_navigation);\n
    \n\n
    \n
    \n
    \n
    You are here: ^AssetProxy(crystalx/crystalx_navigationtrail);
    \n
    ^D(\"%W, %D/%C/%y\");
    \n
    \n
    \n
    \n
    \n\n
    \n
    \n
    \n ^LoginToggle;  \n ^GroupText(\"Registered Users\",^a(^@;););  \n ^AdminToggle;\n
    \n
    \n\n
    \n

    © 2009 ^c; | Empowered by WebGUI

    \n

    Created by Nuvio | Webdesign

    \n

    \n
    \n
    \n\n\n\n','style',1,1,'OiJNwP1gAlcva8_yOtL4gA',1273032718,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n^Page(title); - ^c;\n\n\n\n^AdminBar;\n
    \n
     
    \n
    \n
    ^H(^c(););
    \n
    \n^AssetProxy(crystalx/site-search);\n
    \n
    \n
    \n^AssetProxy(crystalx/crystalx_navigation);\n
    \n
    \n
    \n
    \n
    You are here: ^AssetProxy(crystalx/crystalx_navigationtrail);
    \n
    ^D(\"%W, %D/%C/%y\");
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n^LoginToggle;  \n^GroupText(\"Registered Users\",^a(^@;););  \n^AdminToggle;\n
    \n
    \n
    \n

    © 2009 ^c; | Empowered by WebGUI

    \n

    Created by Nuvio | Webdesign

    \n

    \n
    \n
    \n\n',0,'pl9xiFGzrqfAgRzqwJ8xPg',NULL),('\n
    \n
    \n\n

    \n
    \n\n

    \n
    \n
    \n \n\n \n \n
    \" class=\"yuimenubar\">\n
    \n
      \n \n\n \n
    \n
    \n
    \n \n
    \n\n \n \n \n \n
  • \n onclick=\"window.open(this.href); return false;\"href=\"\">\n \n \n
  • \n onclick=\"window.open(this.href); return false;\"href=\"\">\n \n
  • \n onclick=\"window.open(this.href); return false;\" href=\"\">\n \n \n \n \n \n \n \n
  • \n \n
  • \n \n onclick=\"window.open(this.href); return false;\"href=\"\">\n \n \n
  • \n \n
  • \n \n onclick=\"window.open(this.href); return false;\" href=\"\">\n \n \n\n \n
    \n
    \n
      \n \n \n \n\n \n \n \n \n \n \n \n \n
    \n
    \n
    \n
  • \n \n \n
    \n \n \n\n \n\n\n\n','Navigation',1,1,'gaIOm5cr2TkT9Fk6QmZWug',1273032718,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n
    \n\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n',0,NULL,NULL),('\r\n \r\n\r\n\r\n\r\n id=\"currentpage\"\r\n \r\n\r\n onclick=\"window.open(\'\')\" href=\"#\" \r\n href=\"\"\r\n \r\n >\r\n \r\n \r\n\r\n > \r\n\r\n\r\n','Navigation',1,1,'hpCk0B3vQzgc-QJhSol41w',1273032718,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\nid=\"currentpage\"\n\nonclick=\"window.open(\'\')\" href=\"#\"\nhref=\"\"\n>\n\n\n > \n',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n
    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n
    Go back to ^H(Home);
    \r\n\r\n \r\n
    \r\n \r\n
    id=\"odd\" >\r\n
    );\">
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n
    \r\n
    \r\n\r\n \r\n
    \r\n · · \r\n
    \r\n
    \r\n\r\n
    \r\n\r\n','Search',1,0,'OfKbvK7CrfMnfc8WDoF4Rg',1273032718,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n
    \n
    \n\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n
    Go back to ^H(Home);
    \n\n
    \n\n
    id=\"odd\">\n
    );\">
    \n
    \n
    \n
    \n
    \n\n
    \n\n
    \n
    \n\n
    \n · · \n
    \n
    \n
    ',0,NULL,'[]'),('\r\n\r\n\r\n\r\n \r\n ^c; - ^Page(title);\r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n^AdminBar();\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n
    \r\n
    \r\n
    ^H(^c;);
    \r\n
    ^c;
    \r\n
    \r\n
    \r\n

    ^Page(title);

    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n \"plain\"webgui\"
    \r\n
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n ^AssetProxy(flexmenu);\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n ^L(\"\",\"\",\"PBtmpl0000000000000044\");\r\n ^AdminToggle;\r\n
    \r\n
    \r\n © ^D(%y); ^c;\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','style',1,1,'stevestyle000000000002',1273032718,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n^c; - ^Page(title);\n\n\n\n\n\n\n\n\n\n\n^AdminBar();\n\n\n\n\n\n\n\n\n
    \n
    \n
    ^H(^c;);
    \n
    ^c;
    \n
    \n
    \n

    ^Page(title);

    \n
    \n
    \n
    \n\n
    \n
    \n
    \n
    \n\"plain\"webgui\"
    \n
    \n
    \n
    \n\n\n\n\n\n
    \n
    \n^AssetProxy(flexmenu);\n
    \n\n\n\n\n\n
    \n
    \n^L(\"\",\"\",\"PBtmpl0000000000000044\");\n^AdminToggle;\n
    \n
    \n© ^D(%y); ^c;\n
    \n\n\n\n\n\n',0,'ahKL5Wl1XmeUUCB32OzSbA',NULL),('

    \n\n
      \n
    • \n \n \"> - on by \n \n - on by \n \n ( \"> )\n \n \n
    • \n
    \n\n
    \"> | \"> | \">
    \n\n\n','WikiMaster_recentChanges',1,1,'WikiRCTmpl000000000001',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n
      \n
    • \n\n\"> - on by \n\n - on by \n\n( \"> )\n\n\n
    • \n
    \n
    \"> | \"> | \">
    ',0,NULL,NULL),('

    \n\n

    \n\n\n

    \n\n
    \n\n

    ^International(categories label,Asset_Matrix);

    \n\n
    \n

    \n\n\n\"> ()
    \n
    \n
    \n

    \n
    \n
    \n\n

    Featured Article: \">

    \n\n
    \n\n
    \n

    \">

    \n
      \n
    • \n \n \">\n \n ()\n \n
    • \n
    \n
    \n
    \n

    \">

    \n
      \n
    1. \">
    2. \n
    \n\n
    \n
    \n\n
    \n\n\n','WikiMaster_front',1,1,'WikiFrontTmpl000000001',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n

    \n\n

    \n\n
    \n\n

    ^International(categories label,Asset_Matrix);

    \n\n
    \n

    \n\n\n\"> ()
    \n
    \n
    \n

    \n
    \n
    \n\n

    Featured Article: \">

    \n\n
    \n
    \n

    \">

    \n
      \n
    • \n\n\">\n\n ()\n\n
    • \n
    \n
    \n
    \n

    \">

    \n
      \n
    1. \">
    2. \n
    \n
    \n
    \n
    ',0,NULL,NULL),('\n

    \n\n\n\n\n

    \n \n \n \n
    \n · · \n
    \n
    \n

    \n

    \">

    \n \n

    \n

    \">

    \n
    \n
    \n
    \"> | \"> | \">
    \n','WikiMaster_search',1,1,'WikiSearchTmpl00000001',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n\n

    \n\n\n\n
    \n · · \n
    \n
    \n

    \n

    \">

    \n\n

    \n

    \">

    \n
    \n
    \n
    \"> | \"> | \">
    ',0,NULL,NULL),('\n
      \n\n
    • at () by
    • \n
      \n
    \n','WikiPage_pageHistory',1,1,'WikiPHTmpl000000000001',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'
      \n\n
    • at () by
    • \n
      \n
    ',0,NULL,NULL),('

    \n

    \n\n
    \n
      \n
    • \n
    • \n
    \n
    \n
    \n
    ^International(locked,Asset_WikiPage);
    \n
    \n

    ^International(keywords,Asset);: \">

    \n
    \n
    \n
    \n
    \n
    \n\n\n\n
    \"> | \"> | \"> | \">
    ','WikiPage',1,1,'WikiPageTmpl0000000001',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n

    \n
    \n
      \n
    • \n
    • \n
    \n
    \n
    \n
    ^International(locked,Asset_WikiPage);
    \n
    \n

    ^International(keywords,Asset);: \">

    \n
    \n
    \n
    \n
    \n
    \n\n\n\n
    \"> | \"> | \"> | \">
    ',0,NULL,NULL),('\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
    \r\n\r\n\r\n\r\n\r\n \r\n\r\n','WikiPage_edit',1,1,'WikiPageEditTmpl000001',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n\n\n',0,NULL,NULL),('

    \n\n
      \n
    1. \">
    2. \n
    \n\n
    \"> | \"> | \">
    \n\n','WikiMaster_mostPopular',1,1,'WikiMPTmpl000000000001',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n
      \n
    1. \">
    2. \n
    \n
    \"> | \"> | \">
    ',0,NULL,NULL),('\r\n\r\n\r\n \r\n ^c; - ^Page(title);\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n^AdminBar();\r\n\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n ^L(\"\",\"\",\"PBtmpl0000000000000092\"); · ^AdminToggle;\r\n
    \r\n
    \r\n

    ^H(^c;);

    \r\n

    ^Page(title);

    \r\n
    \r\n \"webgui\"
    \r\n
    \r\n
    \r\n
    \r\n ^AssetProxy(style3_coolmenu);\r\n \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n
    \r\n © ^D(%y); ^c;\r\n
    \r\n \"plain
    \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','style',1,1,'stevestyle000000000003',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n^c; - ^Page(title);\n\n\n\n\n\n\n\n\n\n\n\n^AdminBar();\n
    \n
    \n
    \n
    \n
    \n^L(\"\",\"\",\"PBtmpl0000000000000092\"); · ^AdminToggle;\n
    \n
    \n

    ^H(^c;);

    \n

    ^Page(title);

    \n
    \n\"webgui\"
    \n
    \n
    \n
    \n^AssetProxy(style3_coolmenu);\n
    \n
    \n\n
    \n
    \n
    \n
    \n
    \n© ^D(%y); ^c;\n
    \n\"plain
    \n
    \n
    \n
    \n\n\n\n\n\n',0,'Xr1JhO16oSMIEvCjcZILZQ',NULL),('\r\n\r\n\r\n \r\n ^Page(title);\r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n ^AdminBar();\r\n
    \r\n
    \r\n
    \r\n ^H(^c(););\r\n
    \r\n \r\n
    \r\n © ^D(%y); ^c;\r\n
    \r\n
    \r\n\r\n
    \r\n
    \r\n ^AssetProxy(roottab_level0);\r\n
    \r\n
    \r\n
    \r\n ^AssetProxy(roottab_level1);\r\n
    \r\n
    \r\n ^AssetProxy(crumbtrail); \r\n
    \r\n
     
    \r\n
    \r\n \r\n
    \r\n
     
    \r\n
    \r\n \r\n
    \r\n ^L(\"\",\"\",\"PBtmpl0000000000000044\");\r\n
    ^AdminToggle;
    \r\n ^AssetProxy(style1/gui_bottom.jpg);
    \r\n \"WebGUI\r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n \r\n','style',1,1,'stevestyle000000000001',1273032722,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n^Page(title);\n\n\n\n\n\n\n\n\n\n\n^AdminBar();\n
    \n
    \n
    \n^H(^c(););\n
    \n
    \n© ^D(%y); ^c;\n
    \n
    \n
    \n
    \n^AssetProxy(roottab_level0);\n
    \n
    \n
    \n^AssetProxy(roottab_level1);\n
    \n
    \n^AssetProxy(crumbtrail);\n
    \n
     
    \n
    \n\n
    \n
     
    \n
    \n
    \n^L(\"\",\"\",\"PBtmpl0000000000000044\");\n
    ^AdminToggle;
    \n^AssetProxy(style1/gui_bottom.jpg);
    \n\"WebGUI\n
    \n
    \n\n\n\n\n\n',0,'RE3ugPDieP57zCI6J_uJqw',NULL),('\n
    \n\n
    \n

    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n

    \n \n

    \n location.href=\'\'alert(\'^International(no friends hover,Account_Inbox);\');\" />\n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n WGoddThreadWGevenThread\">\n \n \n \n \n \n \n \n \n
     \">^International(from label,Account_Inbox);\">^International(subject label,Account_Inbox);\">^International(date label,Account_Inbox);\">^International(status label,Account_Inbox);
    old.pngnew.png);\" />\" class=\"inbox_from\">\">^D(,);
    \n \n

    \n location.href=\'\'alert(\'^International(no friends hover,Account_Inbox);\');\" />\n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n

    \n\n

    \n ^International(message count,\'Account_Inbox\');\n

    \n \n
    \n\n
    \n','Account/Inbox/View',1,1,'c8xrwVuu5QE0XtF9DiVzLw',1273032723,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n
    \n

    \n
    \n^International(member since,Account_Inbox); ^D(%z,);\n

    \n

    \n location.href=\'\'alert(\'^International(no friends hover,Account_Inbox);\');\" />\n\n\n\" class=\"prevNext\">\"Previous\" \n\"> \n \" class=\"prevNext\">\"Next\"\n\n\n \n

    \n\n\n\n\n\n\n\n\n\n\nWGoddThreadWGevenThread\">\n\n\n\n\n\n\n\n\n
     \">^International(from label,Account_Inbox);\">^International(subject label,Account_Inbox);\">^International(date label,Account_Inbox);\">^International(status label,Account_Inbox);
    old.pngnew.png);\" />\" class=\"inbox_from\">\">^D(,);
    \n

    \n location.href=\'\'alert(\'^International(no friends hover,Account_Inbox);\');\" />\n\n\n\" class=\"prevNext\">\"Previous\" \n\"> \n \" class=\"prevNext\">\"Next\"\n\n\n \n

    \n

    \n ^International(message count,\'Account_Inbox\');\n

    \n
    \n
    \n',0,NULL,NULL),('\n

    \n\n\n\n
    ^International(Sub-keywords,Asset_WikiMaster);
    \n\n
    \n\n\n

    ^International(categories label,Asset_Matrix);

    \n

    \n\n\n\"> ()
    \n
    \n
    \n

    \n
    \n\n\n

    ^International(Related Pages,Asset_WikiMaster);

    \n\n
    \n\n\n
    \n · · \n
    \n
    \n\n\n\n','WikiMaster_byKeyword',1,1,'WikiKeyword00000000001',1274238756,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n\n
    ^International(Sub-keywords,Asset_WikiMaster);
    \n\n
    \n\n

    ^International(categories label,Asset_Matrix);

    \n

    \n\n\n\"> ()
    \n
    \n
    \n

    \n
    \n\n

    ^International(Related Pages,Asset_WikiMaster);

    \n\n
    \n\n
    \n · · \n
    \n
    \n',0,NULL,NULL),('
    \n \n

    \n
    \n\n \n

    \n
    \n\n \n
    \n
    \n \n\n \n \n \n \n \n\n

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n
    \n \n \n \n \n \n \n \n \n \n
    \">
    \n \n
    \n\n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n wgRowOnewgRowTwo\">\n \n \n \n \n \n
    \">\n

    Search Results

    \n
    \n \">\n
    \n \n \n \n \n \">\n \n \n \n
    \n
    \n
    \n \n \n
    \n · · \n
    \n
    \n
    \n','Thingy/SearchThing',1,1,'ThingyTmpl000000000004',1277868920,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n

    \n
    \n\n

    \n
    \n\n
    \n
    \n\n\n\n\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n\n\n\n\n\n\n\n\n\n
    \">
    \n\n
    \n\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nwgRowOnewgRowTwo\">\n\n\n\n\n\n
    \">\n

    Search Results

    \n
    \n\">\n
    \n\n\n\n\n\">\n\n\n\n
    \n
    \n
    \n\n
    \n · · \n
    \n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n\n \n \n \n \n \n \n\n\n\n \n \n \n \n \n \n \n \n \n \n\n\n
    \">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">\">
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000066',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n\n\n\n

    \n
    \n\n\n\n

    \n\n\">\n•\n\n\n\n\">\n\n\">\n\n•\n\n\">\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">\">
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

    \n\n\n\n\n \n \n
    [\">]
    \n
    \n
    \n \n
    \n \n \n \n \n \n [\">]\n \n \n \n (\">)\n
    \n
    \n \" id=\"id\">
    \n \n

    \">[top]

    \n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000080',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n\n\n\n

    \n
    \n\n\n\n

    \n\n\"> •\n\n\n\n\">\n\n\">\n\n\n•\n\n\n\n\">\n\n

    \n\n\n\n\n
    [\">]
    \n
    \n
    \n\n
    \n\n\n\n\n\n[\">]\n\n\n\n(\">)\n
    \n
    \n\" id=\"id\">
    \n\n

    \">[top]

    \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n\n \n \n \n \n \n \n \n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
    \">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\" style=\"text-align: center;\">\n \n \">\" border=\"0\" alt=\"\" />\n \n  \n \n oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">\">
    \n\n\n
    \n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000097',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n\n\n\n

    \n
    \n\n\n\n

    \n\n\">\n•\n\n\n\n\">\n\n\">\n\n•\n\n\">\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\" style=\"text-align: center;\">\n\n\">\" border=\"0\" alt=\"\" />\n\n \n\noddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">\">
    \n\n
    \n
    \n · · \n
    \n
    ',0,NULL,NULL),('\n\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n

    \n\n\n

    \n \n
    \n
    \n \n \n \n \n \n \">\n \n -\n \n \n - \n \n \n - \n \n \n - \n \n \n \n \n \">\" border=\"0\" alt=\"\" align=\"right\" />\n \n \n
    \n \">\n
    \n
    \n

    \n\n\n\n

    \n \n
    \n\n','Collaboration',1,1,'PBtmpl0000000000000112',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n\n

    \n\n\">\n•\n\n\n\n\">\n\n\">\n\n•\n\n\">\n

    \n

    \n\n

    \n\n
    \n
    \n\n\n\n\n\n\">\n\n-\n\n\n- \n\n\n- \n\n\n- \n\n\n\n\n\">\" border=\"0\" alt=\"\" align=\"right\" />\n\n\n
    \n\">\n
    \n
    \n

    \n\n\n

    \n\n
    \n',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n
    \n\n\n
    \n
    \n
    ()
    \n \n \n
    \n
    \n
    \n\n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000121',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n\n

    \n\n\">\n•\n\n\n\n\">\n\n\">\n\n•\n\n\">\n

    \n
    \n\n
    \n\n
    \n
    \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\" id=\"id\"> \n\n \n

    \n
    \n\n

    \n\n
    \n\n
    \n\" alt=\"\" />\n
    \n
    \n : \n \n \n \n \">\n \n
    \n :
    \n :
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n \n : [ \"> \"> ]
    \n \n \n :
    \n
    \n
    \n
    \n\n
    \n

    \n \n
    \n\n\n
    \n \n \n \n
    \n
    \n
    \n\n\n\n\n \n\n\n
    \n\n\n
    \n

    \n
    \n
    \n \n \">\n \n \">\n \n
    \n
    \n \n \n \n \n \n
    Current\">\n \">\n
    \n \n
    \n
    \n \n \n \n\n\n\n \n \n \n
    \n\" alt=\"\" />\n\n : \n \n \n \n \">\n \n
    \n : \n
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n :
    \n
    \n
    \n \n \n \n \n
    \n
    \n
    \n \n
    \n \n \n \n \n \n
    px;\">\n
    Current\">\n \">\n
    \n \n
    \n
    \n \n \n \n\n\n\n \n \n \n
    \n\" alt=\"\" />\n\n : \n \n \n \n \">\n \n
    \n : \n
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n :
    \n
    \n
    \n \n \n \n \n
    \n
    \n
    \n
    \n \n
    \n \n \n
    \n [ | | ]\n
    \n
    \n
    \n\n\n','Collaboration/Thread',1,1,'PBtmpl0000000000000067',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n

    \n
    \n\n
    \n\" alt=\"\" />\n
    \n
    \n:\n\n\n\n\">\n\n
    \n:
    \n:
    \n: \n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n\n: [ \"> \"> ]
    \n\n\n:
    \n
    \n
    \n
    \n
    \n

    \n\n
    \n\n
    \n\n\n\n
    \n
    \n
    \n\n\n\n
    \n\n
    \n

    \n
    \n
    \n\n\">\n\n\">\n\n
    \n
    \n\n\n\n\n
    Current\">\n\">\n
    \n\n
    \n
    \n\n\n\n\n\n\n\n\n\n
    \n\" alt=\"\" />\n\n:\n\n\n\n\">\n\n
    \n: \n
    \n: \n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n:
    \n
    \n
    \n\n\n\n\n
    \n
    \n
    \n\n
    \n\n\n\n\n
    px;\">\n
    Current\">\n\">\n
    \n\n
    \n
    \n\n\n\n\n\n\n\n\n\n
    \n\" alt=\"\" />\n\n:\n\n\n\n\">\n\n
    \n: \n
    \n: \n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n:
    \n
    \n
    \n\n\n\n\n
    \n
    \n
    \n
    \n\n
    \n\n
    \n[ | | ]\n
    \n
    \n
    \n',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
    \">\">\">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\n \">\n by\n \n \n \n \">\n \n on @ \n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000026',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n\n

    \n\n\">\n•\n\n\n\n\">\n\n\">\n\n•\n\n\">\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\">\">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\n\">\nby\n\n\n\n\">\n\non @ \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n
    \n\n\n
    \n
    \n \">
    \n ()\n \n \n \n
    \n \n
    \n
    \n\n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000128',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n\n

    \n\n\">\n•\n\n\n\n\">\n\n\">\n\n•\n\n\">\n

    \n
    \n\n
    \n\n\n
    \n
    \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n \n  [\">]\n \n

    \n\n\n \n \n \">\n \n \n \n \n \n \n \n \n \"> •\n \n \n \n (\">)\n
    \n

    \n \n

    \n\n\n\n

    \n · · \n
    \n\n','Collaboration',1,1,'PBtmpl0000000000000079',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n\n\n\n

    \n
    \n\n\n\n

    \n\n\"> •\n\n\n\n\">\n\n\">\n\n\n\n [\">]\n\n

    \n\n\n\n\">\n\n\n\n\n\n\n\n\n\"> •\n\n\n\n(\">)\n
    \n

    \n\n

    \n\n\n

    \n · · \n
    \n',0,NULL,NULL),('\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

    \n\n\n \n \n [\">] \n \n \n \n \n \n \n \n \n [\">]\n \n \n \n (\">)\n \n

    \n \" target=\"_blank\">\n \n - \n \n

    \n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000083',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n\n\n\n

    \n
    \n\n\n\n

    \n\n\"> •\n\n\n\n\">\n\n\">\n\n\n•\n\n\n\n\">\n\n

    \n\n\n\n[\">] \n\n\n\n\n\n\n\n\n[\">]\n\n\n\n(\">)\n\n

    \n\" target=\"_blank\">\n\n- \n\n

    \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n \n \n •\n \n \n \n \">\n \n

    \n\n\n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000082',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n\n\n\n

    \n
    \n\n\n\n

    \n\n\">\n•\n\n\n\n\">\n\n\">\n\n\n•\n\n\n\n\">\n\n

    \n\n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

    \n\n\n\n\n\n\n\n\n
    \n\n

    \n\n\n\n\n

    \n · · \n
    \n\n','Collaboration',1,1,'PBtmpl0000000000000133',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n\n\n\n

    \n
    \n\n\n\n

    \n\n\"> •\n\n\n\n\">\n\n\">\n\n\n•\n\n\n\n\">\n\n

    \n\n\n\n\n\n\n
    \n\n

    \n\n\n

    \n · · \n
    \n',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n

    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n\n\n

    \n \n
    \n\n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000029',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n

    \n\n
    ',0,NULL,NULL),('\n\n \n

    \n
    \n\n \n
    \n

    \">

    \n
    \n
    \n \n \">\n \n \">\n \n
    \n
    \n\n\n
    px;\">\n
    Current\">\n \">\n
    \n \n
    \n
    \n\n
    \n\" alt=\"\" />\n
    \n
    \n
    \n : \n \n \n \n \">\n \n
    \n :
    \n
    \n
    \n :
    \n : \n \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n
    \n \n : [ \"> \"> ]
    \n
    \n
    \n
    \n \n \n
    \n \n \"> •\n \n \n \"> • \n \">\n \n
    \n
    \n
    \n
    \n
    \n\n\n
    \n [ | | ]\n
    \n
    \n\n
    \n \n \"> •\n \n \n \"> • \n \n \n \"> •\n \n \n \n \"> •\n \n \"> •\n \n \n \"> •\n \n \"> •\n \n \n \n \n \">\n \n \">\n \n \n
    \n\n','Collaboration/Thread',1,1,'PBtmpl0000000000000032',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n

    \n
    \n
    \n

    \">

    \n
    \n
    \n\n\">\n\n\">\n\n
    \n
    \n\n
    px;\">\n
    Current\">\n\">\n
    \n\n
    \n
    \n\n
    \n\" alt=\"\" />\n
    \n
    \n
    \n:\n\n\n\n\">\n\n
    \n:
    \n
    \n
    \n:
    \n: \n\n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n
    \n\n: [ \"> \"> ]
    \n
    \n
    \n
    \n\n\n
    \n\n\"> •\n\n\n\"> •\n\">\n\n
    \n
    \n
    \n
    \n
    \n\n
    \n[ | | ]\n
    \n
    \n
    \n\n\"> •\n\n\n\"> •\n\n\n\"> •\n\n\n\n\"> •\n\n\"> •\n\n\n\"> •\n\n\"> •\n\n\n\n\n\">\n\n\">\n\n\n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n

    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    class=\"odd\">\">class=\"odd\">class=\"odd\">\">class=\"odd\"> @
    \n
    \n\n\n
    \n · · \n
    \n
    \n\n\n','Collaboration/Search',1,1,'PBtmpl0000000000000031',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    class=\"odd\">\">class=\"odd\">class=\"odd\">\">class=\"odd\"> @
    \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\n\n

    \n

    \n

    \n\n\n

    \n\n

    \n
    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n\n\n
    \n

    \n \n
    \n
    \n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000068',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n

    \n

    \n

    \n\n

    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n
    \n

    \n\n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\n\n

    \n

    \n\n\n

    \n\n

    \n
    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n\n\n
    \n

    \n \n
    \n
    \n\n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000099',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n

    \n

    \n\n

    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n
    \n

    \n\n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n\n\n

    \n\n

    \n
    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n\n\n \n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000114',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n\n

    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n\n',0,NULL,NULL),('\" id=\"id\"> \n\n \n

    \n
    \n\n

    \n\n\n
    \n :     [ \"> \"> ]
    \n
    \n
    \n\n\n ^International(job description,Asset_Collaboration);
    \n

    \n
    \n\n\n ^International(job requirements,Asset_Collaboration);
    \n

    \n
    \n\n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n
    ^International(date posted,Asset_Collaboration); 
    ^International(location,Asset_Collaboration); 
    ^International(compensation,Asset_Collaboration); 
    ^International(views,Asset_Collaboration); 
    \n\n\n
    \n \n \n \n
    \n
    \n
    \n\n\n
    \n \n \">\n •\n \n \n \">\n •\n \">\n \n
    \n
    \n\n\n\n
    \n

    \n
    \n
    \n \n \">\n \n \">\n \n
    \n
    \n \n \n \n \n \n
    Current\">\n \">\n
    \n \n
    \n
    \n
    \n : \n \n \n \n \">\n \n
    \n :
    \n
    \n
    \n :
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n \n :
    \n
    \n
    \n
    \n \n \n
    \n \n \">\n •\n \n \n \">\n •\n \">\n \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n \n \n \n
    px;\">\n
    Current\">\n \">\n
    \n \n
    \n
    \n
    \n : \n \n \n \n \">\n \n
    \n :
    \n
    \n
    \n :
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n \n :
    \n
    \n
    \n
    \n \n \n
    \n \n \">\n •\n \n \n \">\n •\n \">\n \n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n
    \n [ | | ]\n
    \n
    \n
    \n\n
    \n \n \"> \n •\n \n \"> \n \n •\n \"> \n \n \n •\n \">\n •\n \n \n \n \">\n •\n \n \">\n •\n \n \n \">\n •\n \n \">\n •\n \n \n \n \n \"> \n \n \">\n \n \n
    ','Collaboration/Thread',1,1,'PBtmpl0000000000000098',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n

    \n\n
    \n:     [ \"> \"> ]
    \n
    \n
    \n\n^International(job description,Asset_Collaboration);
    \n

    \n
    \n\n^International(job requirements,Asset_Collaboration);
    \n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(date posted,Asset_Collaboration); 
    ^International(location,Asset_Collaboration); 
    ^International(compensation,Asset_Collaboration); 
    ^International(views,Asset_Collaboration); 
    \n\n
    \n\n\n\n
    \n
    \n
    \n\n
    \n\n\">\n•\n\n\n\">\n•\n\">\n\n
    \n
    \n\n
    \n

    \n
    \n
    \n\n\">\n\n\">\n\n
    \n
    \n\n\n\n\n
    Current\">\n\">\n
    \n\n
    \n
    \n
    \n:\n\n\n\n\">\n\n
    \n:
    \n
    \n
    \n:
    \n: \n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n\n:
    \n
    \n
    \n
    \n\n\n
    \n\n\">\n•\n\n\n\">\n•\n\">\n\n
    \n
    \n
    \n
    \n
    \n\n
    \n\n\n\n\n
    px;\">\n
    Current\">\n\">\n
    \n\n
    \n
    \n
    \n:\n\n\n\n\">\n\n
    \n:
    \n
    \n
    \n:
    \n: \n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n\n:
    \n
    \n
    \n
    \n\n\n
    \n\n\">\n•\n\n\n\">\n•\n\">\n\n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n\n
    \n[ | | ]\n
    \n
    \n
    \n
    \n\n\">\n•\n\n\">\n\n•\n\">\n\n\n•\n\">\n•\n\n\n\n\">\n•\n\n\">\n•\n\n\n\">\n•\n\n\">\n•\n\n\n\n\n\">\n\n\">\n\n\n
    ',0,NULL,NULL),('\" id=\"id\">\n\n
    \n

    \n

    \n

    \n

    \n

    \n
    \n\n\n

    \n\n

    \n
    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n\n\n
    \n

    \n \n

    \n

    \n

    \n
    \n
    \n

    \n\n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000122',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n

    \n

    \n

    \n

    \n

    \n

    \n
    \n\n

    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n
    \n

    \n\n

    \n

    \n

    \n
    \n
    \n

    ',0,NULL,NULL),('\" id=\"id\">\n\n\n \n\n\n\n

    \n\n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \"> \n \n \">\n \n \n •\n \n \n \n \">\n \n

    \n\n
    \n\n
    \n
    \n \n \">\n \n \n \n\n \n \n \n \n \n \"> •\n \n \n \n (\">)\n\n \n
    \n
    Q
    \n
    \n
    A
    \n\n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000081',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n\n\n\n

    \n
    \n\n\n\n

    \n\n\"> •\n\n\n\n\">\n\n\">\n\n\n•\n\n\n\n\">\n\n

    \n
    \n\n
    \n
    \n\n\">\n\n\n\n\n\n\n\n\n\"> •\n\n\n\n(\">)\n\n
    \n
    Q
    \n
    \n
    A
    \n\n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

    \n\n
      \n \n
    1. \n \n \n [\">]\n \n \n \n \n \n \n \n \n [\">]\n \n \n \n (\">)\n \n \" target=\"_blank\">\n \n - \n \n
    2. \n
      \n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000101',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n\n\n\n

    \n
    \n\n\n\n

    \n\n\"> •\n\n\n\n\">\n\n\">\n\n\n•\n\n\n\n\">\n\n

    \n
      \n\n
    1. \n\n\n[\">]\n\n\n\n\n\n\n\n\n[\">]\n\n\n\n(\">)\n\n\" target=\"_blank\">\n\n- \n\n
    2. \n
      \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\" id=\"id\"> \n\n \n

    \n
    \n\n

    \n\n\n
    \n :     [ \"> \"> ]
    \n
    \n
    \n\n\n
    \n ^International(Link Description,Asset_Collaboration);

    \n
    \n \n ^International(Link URL,Asset_Collaboration);

    \n \">

    \n
    \n
    \n\n\n\n\n
    \n \n \n \n
    \n
    \n
    \n\n\n
    \n \n \">\n •\n \n \n \">\n •\n \">\n \n
    \n
    \n\n\n\n
    \n

    \n
    \n
    \n \n \">\n \n \">\n \n
    \n
    \n \n \n \n \n \n
    Current\">\n \" id=\"id\">\n
    \n \n
    \n
    \n
    \n : \n \n \n \n \">\n \n
    \n :
    \n
    \n
    \n :
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n \n :
    \n
    \n
    \n
    \n \n \n
    \n \n \"> • \n \n \n \"> •\n \">\n \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n \n \n \n
    px;\">\n
    Current\">\n \" id=\"id\">\n
    \n \n
    \n
    \n
    \n : \n \n \n \n \">\n \n
    \n :
    \n
    \n
    \n :
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n \n :
    \n
    \n
    \n
    \n \n \n
    \n \n \"> •\n \n \n \"> • \n \">\n \n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n
    \n [ | | ]\n
    \n
    \n
    \n\n
    \n \n \"> \n •\n \n \">^International(List All Links,Asset_Collaboration);\n \n •\n \"> \n \n \n •\n \">\n \n \n •\n \n \">\n •\n \n \">\n •\n \n \n \">\n •\n \n \">\n •\n \n \n \n \n \">\n \n \">\n \n \n
    ','Collaboration/Thread',1,1,'PBtmpl0000000000000113',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n

    \n\n
    \n:     [ \"> \"> ]
    \n
    \n
    \n\n
    \n^International(Link Description,Asset_Collaboration);

    \n
    \n^International(Link URL,Asset_Collaboration);

    \n\">

    \n
    \n
    \n\n
    \n\n\n\n
    \n
    \n
    \n\n
    \n\n\">\n•\n\n\n\">\n•\n\">\n\n
    \n
    \n\n
    \n

    \n
    \n
    \n\n\">\n\n\">\n\n
    \n
    \n\n\n\n\n
    Current\">\n\" id=\"id\">\n
    \n\n
    \n
    \n
    \n:\n\n\n\n\">\n\n
    \n:
    \n
    \n
    \n:
    \n: \n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n\n:
    \n
    \n
    \n
    \n\n\n
    \n\n\"> •\n\n\n\"> •\n\">\n\n
    \n
    \n
    \n
    \n
    \n\n
    \n\n\n\n\n
    px;\">\n
    Current\">\n\" id=\"id\">\n
    \n\n
    \n
    \n
    \n:\n\n\n\n\">\n\n
    \n:
    \n
    \n
    \n:
    \n: \n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n\n:
    \n
    \n
    \n
    \n\n\n
    \n\n\"> •\n\n\n\"> •\n\">\n\n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n\n
    \n[ | | ]\n
    \n
    \n
    \n
    \n\n\">\n•\n\n\">^International(List All Links,Asset_Collaboration);\n\n•\n\">\n\n\n•\n\">\n\n\n•\n\n\">\n•\n\n\">\n•\n\n\n\">\n•\n\n\">\n•\n\n\n\n\n\">\n\n\">\n\n\n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n\n \n \n\n \n\n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n\n \n\n \n \n \n \n \n\n\n
    \">\">\">\">\">\">
    oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\n \">\n by\n \n \n \n \">\n \n on @ \n
    \n\n\n
    \n · · \n
    \n
    \n\n','Collaboration',1,1,'PBtmpl0000000000000208',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n\n

    \n\n\">\n•\n\n\n\n\">\n\n\">\n\n•\n\n\">\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\">\">\">\">\">
    oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\n\">\nby\n\n\n\n\">\n\non @ \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\" id=\"id\"> \n\n \n

    \n
    \n\n

    \n\n
    \n\n
    \n\" alt=\"\" />\n
    \n
    \n : \n \n \n \n \">\n \n
    \n :
    \n :
    \n :
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n \n :     [ \">     [ \"> ]
    \n \n \n :
    \n
    \n
    \n\n :
    \n:\n\n
    \n
    \n\n
    \n \n
    \n\n\n
    \n \n \n \n
    \n
    \n
    \n\n\n
    \n \n \">\n •\n \n \n \">\n •\n \">\n \n
    \n
    \n\n
    \n\n\n
    \n

    \n
    \n
    \n \n \">\n \n \">\n \n
    \n
    \n \n \n \n \n \n
    Current\">\n \">\n
    \n \n
    \n
    \n \n \n \n\n\n\n \n \n \n
    \n\" alt=\"\" />\n\n : \n \n \n \n \">\n \n
    \n : \n
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n
    \n
    \n \n \n
    \n \n \">\n •\n \n \n \">\n •\n \">\n \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n \n \n \n
    px;\">\n
    Current\">\n \">\n
    \n \n
    \n
    \n \n \n \n\n\n\n \n \n \n
    \n\" alt=\"\" />\n\n : \n \n \n \n \">\n \n
    \n : \n
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n
    \n
    \n \n \n
    \n \n \">\n •\n \n \n \">\n •\n \">\n \n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n
    \n [ | | ]\n
    \n
    \n
    \n\n
    \n \n \"> \n •\n \n \">\n \n \n •\n \"> \n \n \n •\n \">\n •\n \n \n \n \">\n •\n \n \">\n •\n \n \n \">\n •\n \n \">\n •\n \n \n \n \n \">\n \n \">\n \n \n
    \n','Collaboration/Thread',1,1,'PBtmpl0000000000000209',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n

    \n
    \n\n
    \n\" alt=\"\" />\n
    \n
    \n:\n\n\n\n\">\n\n
    \n:
    \n:
    \n:
    \n: \n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n\n:     [ \">     [ \"> ]
    \n\n\n:
    \n
    \n
    \n\n:
    \n:\n\n
    \n
    \n
    \n\n
    \n\n
    \n\n\n\n
    \n
    \n
    \n\n
    \n\n\">\n•\n\n\n\">\n•\n\">\n\n
    \n
    \n
    \n\n
    \n

    \n
    \n
    \n\n\">\n\n\">\n\n
    \n
    \n\n\n\n\n
    Current\">\n\">\n
    \n\n
    \n
    \n\n\n\n\n\n\n\n\n\n
    \n\" alt=\"\" />\n\n:\n\n\n\n\">\n\n
    \n: \n
    \n: \n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n
    \n
    \n\n\n
    \n\n\">\n•\n\n\n\">\n•\n\">\n\n
    \n
    \n
    \n
    \n
    \n\n
    \n\n\n\n\n
    px;\">\n
    Current\">\n\">\n
    \n\n
    \n
    \n\n\n\n\n\n\n\n\n\n
    \n\" alt=\"\" />\n\n:\n\n\n\n\">\n\n
    \n: \n
    \n: \n\n    [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n
    \n
    \n\n\n
    \n\n\">\n•\n\n\n\">\n•\n\">\n\n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n\n
    \n[ | | ]\n
    \n
    \n
    \n
    \n\n\">\n•\n\n\">\n\n•\n\">\n\n\n•\n\">\n•\n\n\n\n\">\n•\n\n\">\n•\n\n\n\">\n•\n\n\">\n•\n\n\n\n\n\">\n\n\">\n\n\n
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n

    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n
    \n\n\n\n

    \n \n
    \n','Collaboration/PostForm',1,1,'PBtmpl0000000000000210',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n\n\n

    \n\n
    ',0,NULL,NULL),('

    ^International(post received,Asset_Post);

    \">^International(493,WebGUI);

    ','Collaboration/PostReceived',1,1,'default_post_received1',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(post received,Asset_Post);

    \">^International(493,WebGUI);

    ',0,NULL,NULL),('

    ^International(Unsubscribe from %s,Asset_Collaboration,\'\">\');

    \n\n

    \n
    \n\n^International(480,WebGUI);
    \n^International(unsubscribe instructions,Asset_Collaboration);
    \n','Collaboration/Unsubscribe',1,1,'default_CS_unsubscribe',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(Unsubscribe from %s,Asset_Collaboration,\'\">\');

    \n\n

    \n
    \n\n^International(480,WebGUI);
    \n^International(unsubscribe instructions,Asset_Collaboration);
    \n',0,NULL,NULL),('

    ^International(\"choose username title\",\"Auth_Twitter\");

    \r\n

    \r\n
    \r\n\r\n\r\n\r\n\r\n
    \r\n\r\n','Auth/Twitter/ChooseUsername',1,1,'mfHGkp6t9gdclmzN33OEnw',1277868927,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(\"choose username title\",\"Auth_Twitter\");

    \n

    \n
    \n\n\n\n\n
    ',0,NULL,NULL),('\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n\n\n\n \n\n\n \n\n\n \n\n\n \n
    \n \">^International(label day,Asset_Calendar);\n \">^International(label week,Asset_Calendar);\n \">^International(label month,Asset_Calendar);\n ?type=list\">^International(486,WebGUI);\n \">^International(label search,Asset_Calendar);\n\n \n
    \n \n
    \n
    \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
    \n\n
    \" class=\"moreDisplay\">\n
    \n
      \n \n
    • \">
    • \n
      \n
    \n
    \n
    \n
    ','Calendar/Month',1,1,'CalendarMonth000000001',1279073449,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\">^International(label day,Asset_Calendar);\n\">^International(label week,Asset_Calendar);\n\">^International(label month,Asset_Calendar);\n?type=list\">^International(486,WebGUI);\n\">^International(label search,Asset_Calendar);\n\n
    \n\n
    \n
    \n \n
    \n
    \n\n\n\n\n\n\n\n\n\n\n
    \n
    \n\n
    \" class=\"moreDisplay\">\n
    \n\n
    \n
    \n
    ',0,NULL,NULL),('\n\n

    \n
    \n
    \n \n

    \n
    \n \n

    \n
    \n\n \n
      \n \n
    • \n
      \n
    \n
    \n\n\n \n \n \n \n
    \n \n \n
    \n ^International(comments,Asset_EMSSubmission);\n \n
    \n\n
    \n\n','EMS/Submission',1,1,'8tqyQx-LwYUHIWOlKPjJrA',1279073449,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n

    \n
    \n
    \n\n

    \n
    \n\n

    \n
    \n\n
      \n\n
    • \n
      \n
    \n
    \n\n\n\n\n\n
    \n\n\n
    \n^International(comments,Asset_EMSSubmission);\n\n
    \n
    ',0,NULL,NULL),('\n

    \n
    \n\n

    \n
    \n \n

    \n
    \n\n\n\n\n\n
    \n
    \n
      \n \n
    • class=\"selected\">\">
    • \n
      \n
    \n
    \n \n
    \">
    \n
    \n
    \n
    \n
    \n\n\">^International(schedule back link,Asset_EventManagementSystem);\n\n\n\n\n\n\n\n','EMS/SubmissionMain',1,1,'DoVNijm6lMDE0cYrtvEbDQ',1279073449,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n\n\n
    \n
    \n
      \n\n
    • class=\"selected\">\">
    • \n
      \n
    \n
    \n\n
    \">
    \n
    \n
    \n
    \n
    \n\">^International(schedule back link,Asset_EventManagementSystem);\n\n\n\n\n',0,NULL,NULL),(' \n\n \n \n \n \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n
    ^International(reply message label,Account_Inbox);^International(compose message label,Account_Inbox);
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(recipients label,Account_Inbox);^International(to label,Account_Inbox);:
    class=\"inbox_messageTo\"> [];
    ^International(subject label,Account_Inbox);:
    32\" class=\"send\">\n   \n \'\" />\n
    \n
    \n
    \n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n
    _name\"> []
    \n
    \n
    \n \n \n
    \n
    \n
    \n','Account/Inbox/SendMessage',1,1,'6uQEULvXFgCYlRWnYzZsuA',1279073450,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    \n^International(member since,Account_Inbox); ^D(%z,);\n
    ^International(reply message label,Account_Inbox);^International(compose message label,Account_Inbox);
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(recipients label,Account_Inbox);^International(to label,Account_Inbox);:
    class=\"inbox_messageTo\"> [];
    ^International(subject label,Account_Inbox);:
    32\" class=\"send\">\n  \n\'\" />\n
    \n
    \n
    \n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n
    \n
    \n\n\n\n\n\n\n\n\n\n
    _name\"> []
    \n
    \n
    \n\n\n
    \n
    \n
    \n',0,NULL,NULL),('
    \n\n
    \n
    \n
    \n
    \n
    \n\n
    \n\n\n','EMS/SubmissionQueue',1,1,'ktSvKU8riGimhcsxXwqvPQ',1279073450,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n
    \n
    \n
    \n
    \n
    \n',0,NULL,NULL),('\n
    \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n
    ^International(\'comparison label\',\'Asset_Matrix\');
    \n
    \n \n \n \n \n \n \n \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    \n','Matrix/Compare',1,1,'matrixtmpl000000000002',1281501162,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n
    \n
    \n\n\n\n\n\n\n\n\n\n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    ^International(\'comparison label\',\'Asset_Matrix\');
    \n
    \n\n\n\n\n\n\n
    \n
    \n
    \n
    \n
    \n
    \n
    ',0,NULL,'[]'),('\n

    \n
    \n\n

    \n\n\n
    \n \n
    \n
    \n\n\n\n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n
    \n
    \" enctype=\"multipart/form-data\" method=\"post\" name=\"doCompare\">

    \n
    \n
    \n
    \n
    \n\n
    \n
    \n \n
    \n
    \n
    \n\n
    \n
    \n
    \n \n
    \n
    \n \n ^International(\'add new listing text\',\'Asset_Matrix\');\n \n ^International(\'create account part1 text\',\'Asset_Matrix\'); ^International(\'create account part2 text\',\'Asset_Matrix\');\n \n
    \n \n \n
    \n \n
    \n
    ^International(\'listing statistics label\',\'Asset_Matrix\');
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(\'most clicks label\',\'Asset_Matrix\');\"> ()
    ^International(\'most views label\',\'Asset_Matrix\');\"> ()
    ^International(\'most compares label\',\'Asset_Matrix\');\"> ()
    \n \n
    ^International(\'most recently updated label\',\'Asset_Matrix\');
    \n \n \n \n \n \n \n \n
    \">
    \n \n
    ^International(\'best rated label\',\'Asset_Matrix\');
    \n \n \n \n \n \n \n \n
    \"> (/10)
    \n \n
    ^International(\'worst rated label\',\'Asset_Matrix\');
    \n \n \n \n \n \n \n \n
    \"> (/10)
    \n \n
    ^International(\'site statistics label\',\'Asset_Matrix\');
    \n \n \n \n \n \n
    ^International(\'listing count label\',\'Asset_Matrix\');
    \n \n\n \n
    ^International(\'pending listings label\',\'Asset_Matrix\');:
    \n \n \n \n \n \n \n \n \n
    \">
    \n
    \n
    \n\n
    \n\n
    \n
    \n
    \n\n','Matrix',1,1,'matrixtmpl000000000001',1281501162,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n

    \n\n
    \n\n
    \n
    \n\n
    \n
    \n\n\n
    \n
    \n\n\n\n\n\n\n\n\n
    \n
    \" enctype=\"multipart/form-data\" method=\"post\" name=\"doCompare\">

    \n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n^International(\'add new listing text\',\'Asset_Matrix\');\n\n^International(\'create account part1 text\',\'Asset_Matrix\'); ^International(\'create account part2 text\',\'Asset_Matrix\');\n\n
    \n\n
    \n
    \n
    ^International(\'listing statistics label\',\'Asset_Matrix\');
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\'most clicks label\',\'Asset_Matrix\');\"> ()
    ^International(\'most views label\',\'Asset_Matrix\');\"> ()
    ^International(\'most compares label\',\'Asset_Matrix\');\"> ()
    \n
    ^International(\'most recently updated label\',\'Asset_Matrix\');
    \n\n\n\n\n\n\n\n
    \">
    \n
    ^International(\'best rated label\',\'Asset_Matrix\');
    \n\n\n\n\n\n\n\n
    \"> (/10)
    \n
    ^International(\'worst rated label\',\'Asset_Matrix\');
    \n\n\n\n\n\n\n\n
    \"> (/10)
    \n
    ^International(\'site statistics label\',\'Asset_Matrix\');
    \n\n\n\n\n\n
    ^International(\'listing count label\',\'Asset_Matrix\');
    \n\n
    ^International(\'pending listings label\',\'Asset_Matrix\');:
    \n\n\n\n\n\n\n\n\n
    \">
    \n
    \n
    \n
    \n
    \n
    \n
    ',0,NULL,'[]'),('\n\n\n
    \n \n \n

    \n
    \n \n

    \n \n \n [\n ^AssetProxy(new-matrix/matrix-nav);\n blockblockblock\">\n \n • \">^International(\'edit label\',\'Asset_MatrixListing\');\n \n \n • \">^International(\'approve or deny label\',\'Asset_Matrix\');\n \n \n ]\n \n

    \n \n
    \n \n \n \n
    \n
    \n \n
    \n
    \n ^International(\'description label\',\'Asset_MatrixListing\');\n \n
    \n \n \n \n
    \n
      \n
    • ^International(\'web site label\',\'Asset_MatrixListing\');\')\" href=\"#\"> 
    • \n
    • ^International(\'version label\',\'Asset_MatrixListing\'); 
    • \n
    • ^International(\'manufacturer label\',\'Asset_MatrixListing\');\')\" href=\"#\"> 
    • \n
    • ^International(\'last updated label\',\'Asset_MatrixListing\');
    • \n
    • ^International(\'clicks label\',\'Asset_Matrix\');
    • \n
    • ^International(\'views label\',\'Asset_Matrix\');
    • \n
    • ^International(\'compares label\',\'Asset_Matrix\');
    • \n
    \n
    \n \n
    \n
    \n
    \n
    \n ^International(Comments,WebGUI);\n \n ^International(Send Creator a Message,Asset_MatrixListing);\n
    \n \n
    ^International(\'message sent message\',\'Asset_MatrixListing\');
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    ','Matrix/Detail',1,1,'matrixtmpl000000000003',1281501163,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n\n

    \n
    \n

    \n\n\n[\n^AssetProxy(new-matrix/matrix-nav);\nblockblockblock\">\n\n• \">^International(\'edit label\',\'Asset_MatrixListing\');\n\n\n• \">^International(\'approve or deny label\',\'Asset_Matrix\');\n\n\n]\n\n

    \n
    \n\n\n\n
    \n
    \n
    \n
    \n^International(\'description label\',\'Asset_MatrixListing\');\n\n
    \n\n\n\n
    \n
      \n
    • ^International(\'web site label\',\'Asset_MatrixListing\');\')\" href=\"#\"> 
    • \n
    • ^International(\'version label\',\'Asset_MatrixListing\'); 
    • \n
    • ^International(\'manufacturer label\',\'Asset_MatrixListing\');\')\" href=\"#\"> 
    • \n
    • ^International(\'last updated label\',\'Asset_MatrixListing\');
    • \n
    • ^International(\'clicks label\',\'Asset_Matrix\');
    • \n
    • ^International(\'views label\',\'Asset_Matrix\');
    • \n
    • ^International(\'compares label\',\'Asset_Matrix\');
    • \n
    \n
    \n\n
    \n
    \n
    \n
    \n^International(Comments,WebGUI);\n\n^International(Send Creator a Message,Asset_MatrixListing);\n
    \n\n
    ^International(\'message sent message\',\'Asset_MatrixListing\');
    \n
    \n\n
    \n
    \n
    \n
    \n
    \n
    ',0,NULL,'[]'),('

    ^International(\'edit matrix listing title\',\'Asset_MatrixListing\');

    \r\n\r\n','Matrix/EditListing',1,1,'matrixtmpl000000000004',1281501163,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(\'edit matrix listing title\',\'Asset_MatrixListing\');

    \n',0,NULL,'[]'),('\n\n
    \n
    \n \n
    \n
    \n \n
    \n
    \n
    \n\n
    \n
    ^International(search label,Asset_Matrix);
    \n
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n
    \n
    \n
    \n
    \n
    \n

    \">^International(Return to Matrix,Asset_Matrix);

    \n
    \n\n\n\n','Matrix/Search',1,1,'matrixtmpl000000000005',1281501163,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n
    \n\n
    \n
    \n\n
    \n
    \n
    \n
    \n
    ^International(search label,Asset_Matrix);
    \n
    \n\n
    \n\n\n\n\n\n\n\n\n\n\n
    \n
    \n
    \n
    \n
    \n

    \">^International(Return to Matrix,Asset_Matrix);

    \n
    ',0,NULL,'[]'),('\n\n\n\n \">^International(Return to Matrix,Asset_Matrix);\n\n\n','Navigation',1,1,'alraubvBu-YJJ614jAHD5w',1281501163,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\">^International(Return to Matrix,Asset_Matrix);\n\n',0,NULL,'[]'),('\r\n\r\n\r\n ?func=getScreenshots\r\n \r\n 400\r\n 300\r\n 0xDDDDEE\r\n 20\r\n 800\r\n 600 \r\n Verdana\r\n 12\r\n 0xFFFFFF\r\n\r\n 0x888888\r\n 0x000000\r\n true\r\n over \r\n 0\r\n\r\n 0xFFFFFF\r\n 0x888888\r\n 0x000000\r\n true\r\n\r\n 20\r\n 200\r\n\r\n 60\r\n 45\r\n 0x888888\r\n false\r\n true\r\n 100\r\n 8\r\n\r\n off \r\n false\r\n true\r\n false\r\n true\r\n \r\n \r\n\r\n rounded \r\n','Matrix/ScreenshotsConfig',1,1,'matrixtmpl000000000007',1281501163,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n?func=getScreenshots\n400\n300\n0xDDDDEE\n20\n800\n600\nVerdana\n12\n0xFFFFFF\n0x888888\n0x000000\ntrue\nover\n0\n0xFFFFFF\n0x888888\n0x000000\ntrue\n20\n200\n60\n45\n0x888888\nfalse\ntrue\n100\n8\noff\nfalse\ntrue\nfalse\ntrue\n\n\nrounded\n',0,NULL,'[]'),('\n\n\n Screenshots\n \n\n\n\n\n
    \n\n \n \n &width=800&height=600\" />\n \n \n &width=800&height=600\" />\n \n \n \"Get\n \n \n \n \n \n
    \n \n \n\n\n','Matrix/Screenshots',1,1,'matrixtmpl000000000006',1281501163,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\nScreenshots\n\n\n\n
    \n\n\n&width=800&height=600\" />\n\n\n&width=800&height=600\" />\n\n\n\"Get\n\n\n\n\n\n
    \n\n\n\n',0,NULL,'[]'),('
    \r\n \r\n
    \r\n\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n','Account/Layout',1,1,'N716tpSna0iIQTKxS4gTWA',1281501163,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n
    \n
    \n
    \n
    ',0,NULL,'[]'),(' ^International(new post,AssetAspect_Subscribable);\n\n\n\n\n','AssetAspect/Subscribable',1,1,'limMkk80fMB3fqNZVf162w',1281501163,'WebGUI::Asset::Template::HTMLTemplate',1,' ^International(new post,AssetAspect_Subscribable);\n\n',0,NULL,'[]'),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    ^International(\"99\",\"Asset\");^International(\"creation_date\",\"Asset_AssetReport\");^International(\"created_by\",\"Asset_AssetReport\");
    \">^D(\'%C %D, %y %h:%s %p\',);^User(\'username\',);
    \r\n\r\n\r\n

    \r\n \r\n
    \r\n
    \r\n','AssetReport',1,1,'sJtcUCfn0CVbKdb4QM61Yw',1283921584,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\"99\",\"Asset\");^International(\"creation_date\",\"Asset_AssetReport\");^International(\"created_by\",\"Asset_AssetReport\");
    \">^D(\'%C %D, %y %h:%s %p\',);^User(\'username\',);
    \n\n

    \n \n
    \n
    ',0,NULL,'[]'),('
    \" class=\"storyTopic\">\n\" id=\"id\">\n

    \n\n

    \n
    \n

    \">^International(rss,WebGUI); •\n\">Atom

    \n\n\n
    \n

    \">

    \n

    \n
    \n
    \n\n ','StoryTopic',1,1,'A16v-YjWAShXWvSACsraeg',1285124154,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"storyTopic\">\n\" id=\"id\">\n

    \n\n

    \n
    \n

    \">^International(rss,WebGUI); •\n\">Atom

    \n\n\n
    \n

    \">

    \n

    \n
    \n
    \n\n',0,NULL,NULL),('
    \r\n \r\n \r\n
    \r\n
    \r\n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n ^International(\'template search title\',\'Asset_Gallery\');\r\n
    \r\n\r\n \r\n\r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(\'template search field title\',\'Asset_Gallery\');
    ^International(\'template search field description\',\'Asset_Gallery\');
    ^International(\'template search field keywords\',\'Asset_Gallery\');
    ^International(\'template search field location\',\'Asset_Gallery\');
    ^International(\'template search field className\',\'Asset_Gallery\');\r\n \r\n
    ^International(\'template search field creationDate\',\'Asset_Gallery\');^International(\'template search to\',\'Asset_Gallery\');
     \r\n \r\n
    \r\n
    \r\n \r\n\r\n

    \r\n\r\n \r\n
    \r\n \r\n
    \r\n ^International(\'template search results for\',\'Asset_Gallery\'); \"\".\r\n
    \r\n\r\n

    Albums

    \r\n \r\n \r\n
    \r\n \" class=\"albumTitle\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n ?func=edit\">Add a Description\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n

    Pictures

    \r\n \r\n \r\n
    \r\n \" class=\"title\">\r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    ^International(\"template file creationDate\",\"Asset_GalleryAlbum\"); ^D(\"%M/%d/%Y\",);
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n\r\n
    \r\n
    ','Gallery/Search',1,1,'jME5BEDYVDlBZ8jIQA9-jQ',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n\n\n\n
    \n
    \n^International(\'template search title\',\'Asset_Gallery\');\n
    \n\n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\'template search field title\',\'Asset_Gallery\');
    ^International(\'template search field description\',\'Asset_Gallery\');
    ^International(\'template search field keywords\',\'Asset_Gallery\');
    ^International(\'template search field location\',\'Asset_Gallery\');
    ^International(\'template search field className\',\'Asset_Gallery\');\n\n
    ^International(\'template search field creationDate\',\'Asset_Gallery\');^International(\'template search to\',\'Asset_Gallery\');
     \n\n
    \n
    \n\n

    \n\n
    \n
    \n ^International(\'template search results for\',\'Asset_Gallery\'); \"\".\n
    \n

    Albums

    \n\n\n\n\n\n
    \n

    Pictures

    \n\n\n
    \n\" class=\"title\">\n\n\n\n\n
    \n
    \n\n
    \n
    \n
    \n
    \n\n
    ^International(\"template file creationDate\",\"Asset_GalleryAlbum\"); ^D(\"%M/%d/%Y\",);
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n
    \n
    ',0,NULL,NULL),('\r\n \r\n\r\n\r\n
    \r\n \r\n \r\n
    \r\n
    \r\n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n
    \r\n \r\n
    \r\n \" class=\"albumTitle\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n ?func=edit\">Add a Description\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n
    \r\n \r\n
    ','Gallery/ListAlbums',1,1,'azCqD0IjdQSlM3ar29k5Sg',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n',0,NULL,NULL),('\n \n\n\n','GalleryAlbum/View',1,1,'05FpjceLYhq4csF1Kww1KQ',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n',0,NULL,NULL),('\r\n \r\n\r\n\r\n
    \r\n \r\n\r\n
    \r\n
    \r\n \" class=\"current\">^International(template url_thumbnails,Asset_GalleryAlbum);  ·  \r\n \">^International(template url_slideshow,Asset_GalleryAlbum);  ·  \r\n \">^International(template url,Asset_GalleryAlbum);    \r\n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n ·\r\n ^International(template by,Asset_Gallery);: \">\r\n
    \r\n\r\n \r\n\r\n
    \r\n \" class=\"title\">\r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    ^International(\'template creationDate\',\'Asset_Photo\');: ^D(\"%z %Z\",);
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n \r\n \" class=\"thumb\">\r\n \" />\r\n \r\n \r\n
    \r\n
    \r\n
    \r\n
    ','GalleryAlbum/ViewThumbnails',1,1,'q5O62aH4pjUXsrQR3Pq4lw',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n',0,NULL,NULL),('\r\n \r\n\r\n\r\n
    \r\n \r\n \r\n
    \r\n
    \r\n \">^International(template url_thumbnails,Asset_GalleryAlbum);  ·  \r\n \" class=\"current\">^International(template url_slideshow,Asset_GalleryAlbum);  ·  \r\n \">^International(template url,Asset_GalleryAlbum);    \r\n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n ·\r\n ^International(template by,Asset_Gallery);: \"> \r\n
    \r\n\r\n \r\n\r\n
    \r\n
    \r\n \"Previous\r\n \r\n \"Next\r\n
    \r\n
    \r\n \r\n
    \r\n \r\n
    \r\n \">\" style=\"border: none\" /> \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    ','GalleryAlbum/ViewSlideshow',1,1,'KAMdiUdJykjN02CPHpyZOw',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n',0,NULL,NULL),('
    \n \n \n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n \n
    \n\n \n\n

    ^International(template listFilesForUser albums title,Asset_Gallery);

    \n \n \n \n \n \n
    \n \n

    ^International(template listFilesForUser pictures title,Asset_Gallery);

    \n \n \n
    \n \" class=\"title\">\n \n \n \n \n
    \n
    \n \n
    \n
    \n
    \n
    \n \n
    ^International(\'template file creationDate\',\'Asset_GalleryAlbum\'); ^D(\"%z\", );
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n
    ','Gallery/ListFilesForUser',1,1,'OkphOEdaSGTXnFGhK4GT5A',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n\n\n\n
    \n
    \n\n
    \n\n

    ^International(template listFilesForUser albums title,Asset_Gallery);

    \n\n\n\n
    \n

    ^International(template listFilesForUser pictures title,Asset_Gallery);

    \n\n
    \n\" class=\"title\">\n\n\n\n\n
    \n
    \n\n
    \n
    \n
    \n
    \n\n
    ^International(\'template file creationDate\',\'Asset_GalleryAlbum\'); ^D(\"%z\", );
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n
    ',0,NULL,NULL),('\n \n\n\n
    \n \n\n
    \n
    \n \">^International(\'template url_album\',\'Asset_Photo\');    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n ·\n ^International(\'template by\',\'Asset_Gallery\');: \">\n
    \n\n
    \n
    \n

    \n \" class=\"thumbnail\">\" alt=\"Image\" />\n \n
    \n \n
    \n
    \n \" class=\"fullSize\">^International(\'template fileUrl\',\'Asset_Photo\');\n
    \n
    \n\n
    \n \n \">\n \"first\n \n \n \"first\n \n \n \">\n \"first\n \n \n \"first\n \n \n \">\n \"first\n \n \n \"first\n \n \n \">\n \"first\n \n \n \"first\n \n
    \n\n
    \n\n
    \n
    \n ^International(template view details,Asset_Photo);\n
    \n \n ^International(\'template creationDate\',\'Asset_Photo\');:\n \n \n ^D(\"%z %Z\",);\n \n
    \n
    \n \n ^International(\'template views\',\'Asset_Photo\');:\n \n \n \n \n
    \n
    \n \n ^International(\'template by\',\'Asset_Gallery\');:\n \n \n \">\n (\">^International(\'template filesForUser\', \'Asset_Photo\');)\n \n
    \n
    \n \n ^International(\'template friendsOnly label\',\'Asset_Photo\');:\n \n \n ^International(\'template friendsOnly yes\',\'Asset_Photo\');^International(\'template friendsOnly no\',\'Asset_Photo\');\n \n
    \n
    \n \n ^International(\'template location\',\'Asset_Photo\');:\n \n \n \n \n
    \n
    \n \n ^International(template view available resolutions,Asset_Photo);\n \n \n \n \">\n \n \n
    \n
    \n \n
    \n ^International(\'template keywords\',\'Asset_Photo\');\n \n \">, \n \n
    \n
    \n
    \n ^International(more details,Asset_Photo);\n
    \n \n
    rowOnerowTwo\">\n \n :\n \n \n \n \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n ^International(\'template comments title\',\'Asset_Photo\'); [^International(post,Asset_Collaboration);]\n
    \n \n
    \n \n
    \n \n
    \n
    \n \n
    \n
    \n \n \n \n
    \n
    ','GalleryFile/View',1,1,'TEId5V-jEvUULsZA0wuRuA',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n
    \n\n
    \n
    \n\">^International(\'template url_album\',\'Asset_Photo\');    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n\n\n\n
    \n
    \n ·\n^International(\'template by\',\'Asset_Gallery\');: \">\n
    \n\n
    \n
    \n^International(template view details,Asset_Photo);\n
    \n\n^International(\'template creationDate\',\'Asset_Photo\');:\n\n\n^D(\"%z %Z\",);\n\n
    \n
    \n\n^International(\'template views\',\'Asset_Photo\');:\n\n\n\n\n
    \n
    \n\n^International(\'template by\',\'Asset_Gallery\');:\n\n\n\">\n(\">^International(\'template filesForUser\', \'Asset_Photo\');)\n\n
    \n
    \n\n^International(\'template friendsOnly label\',\'Asset_Photo\');:\n\n\n^International(\'template friendsOnly yes\',\'Asset_Photo\');^International(\'template friendsOnly no\',\'Asset_Photo\');\n\n
    \n
    \n\n^International(\'template location\',\'Asset_Photo\');:\n\n\n\n\n
    \n
    \n\n^International(template view available resolutions,Asset_Photo);\n\n\n\n\">\n\n\n
    \n
    \n\n
    \n^International(\'template keywords\',\'Asset_Photo\');\n\n\">, \n\n
    \n
    \n
    \n^International(more details,Asset_Photo);\n
    \n\n
    rowOnerowTwo\">\n\n:\n\n\n\n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n^International(\'template comments title\',\'Asset_Photo\'); [^International(post,Asset_Collaboration);]\n
    \n\n
    \n\n
    \n\n
    \n
    \n\n
    \n
    \n\n\n\n
    \n
    ',0,NULL,NULL),('\n\n\n
    \n \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n \n ^International(\'template add\',\'Asset_GalleryAlbum\');\n \n ^International(\'template edit\',\'Asset_GalleryAlbum\');\n \n
    \n\n

    \n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n
    ^International(\'editForm title label\',\'Asset_GalleryAlbum\');
    ^International(\'editForm description label\',\'Asset_GalleryAlbum\');
    ^International(\'editForm othersCanAdd label\',\'Asset_GalleryAlbum\');
    \n
    \n \n
      \n \n
    1. \" class=\"galleryOrg\">\n
      \n \" href=\"?func=edit;proceed=editParent\">\" alt=\"\" />\n
      \n

      \n
      \n
      \n \n
      \n
      \n
    2. \n
      \n
    \n
    \n
    \n\n
    \n \n
    \n \n
    ','GalleryAlbum/Edit',1,1,'6X-7Twabn5KKO_AbgK3PEw',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n
    \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n\n\n\n
    \n
    \n\n^International(\'template add\',\'Asset_GalleryAlbum\');\n\n^International(\'template edit\',\'Asset_GalleryAlbum\');\n\n
    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\'editForm title label\',\'Asset_GalleryAlbum\');
    ^International(\'editForm description label\',\'Asset_GalleryAlbum\');
    ^International(\'editForm othersCanAdd label\',\'Asset_GalleryAlbum\');
    \n
    \n\n
      \n\n
    1. \" class=\"galleryOrg\">\n
      \n\" href=\"?func=edit;proceed=editParent\">\" alt=\"\" />\n
      \n

      \n
      \n
      \n\n
      \n
      \n
    2. \n
      \n
    \n
    \n
    \n
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \n \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n \n ^International(\'template add\',\'Asset_GalleryAlbum\');\n \n ^International(\'template edit\',\'Asset_GalleryAlbum\');\n \n
    \n\n

    \n\n

    \n\n \n

    ^International(\'template error happened\',\'Asset_Photo\');

    \n
      \n \n
    • \n
      \n
    \n
    \n\n \n\n \n\n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(\'template upload type\',\'Asset_GalleryAlbum\');\n ^International(\'template upload single\',\'Asset_GalleryAlbum\');\n \" class=\"adminButton\">^International(\'template upload archive\',\'Asset_GalleryAlbum\');\n
    ^International(\'editForm title label\',\'Asset_Photo\');\n \n
    ^International(\'editForm synopsis label\',\'Asset_Photo\');\n \n
    ^International(\'editForm photo new\',\'Asset_Photo\'); ^International(\'editForm photo replace\',\'Asset_Photo\');\n \n
    ^International(\'editForm keywords\',\'Asset_Photo\');\n \n
    ^International(\'editForm location\',\'Asset_Photo\');\n \n
    ^International(\'editForm friendsOnly\',\'Asset_Photo\');\n \n
    \n\n \n\n \n\n
    ','GalleryFile/Edit',1,1,'7JCTAiu1U_bT9ldr655Blw',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n\n\n\n
    \n
    \n\n^International(\'template add\',\'Asset_GalleryAlbum\');\n\n^International(\'template edit\',\'Asset_GalleryAlbum\');\n\n
    \n

    \n

    \n\n

    ^International(\'template error happened\',\'Asset_Photo\');

    \n
      \n\n
    • \n
      \n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\'template upload type\',\'Asset_GalleryAlbum\');\n^International(\'template upload single\',\'Asset_GalleryAlbum\');\n\" class=\"adminButton\">^International(\'template upload archive\',\'Asset_GalleryAlbum\');\n
    ^International(\'editForm title label\',\'Asset_Photo\');\n\n
    ^International(\'editForm synopsis label\',\'Asset_Photo\');\n\n
    ^International(\'editForm photo new\',\'Asset_Photo\'); ^International(\'editForm photo replace\',\'Asset_Photo\');\n\n
    ^International(\'editForm keywords\',\'Asset_Photo\');\n\n
    ^International(\'editForm location\',\'Asset_Photo\');\n\n
    ^International(\'editForm friendsOnly\',\'Asset_Photo\');\n\n
    \n\n\n
    ',0,NULL,NULL),('
    \r\n

    ^International(\'template addArchive title\',\'Asset_GalleryAlbum\');

    \r\n\r\n

    ^International(\'template addArchive body\',\'Asset_GalleryAlbum\');

    \r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(\'template upload type\',\'Asset_GalleryAlbum\');\r\n \" class=\"adminButton\">^International(\'template upload single\',\'Asset_GalleryAlbum\');\r\n ^International(\'template upload archive\',\'Asset_GalleryAlbum\');\r\n
    ^International(\'addArchive file\',\'Asset_GalleryAlbum\');\r\n \r\n
    ^International(\'addArchive keywords\',\'Asset_GalleryAlbum\');\r\n \r\n
    ^International(\'addArchive location\',\'Asset_GalleryAlbum\');\r\n \r\n
    ^International(\'addArchive sortBy\',\'Asset_GalleryAlbum\');
    ^International(\'addArchive friendsOnly\',\'Asset_GalleryAlbum\');
    \r\n \r\n
    \r\n \r\n
    \r\n \r\n \r\n\r\n
    ','GalleryAlbum/AddArchive',1,1,'0X4Q3tBWUb_thsVbsYz9xQ',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n

    ^International(\'template addArchive title\',\'Asset_GalleryAlbum\');

    \n

    ^International(\'template addArchive body\',\'Asset_GalleryAlbum\');

    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\'template upload type\',\'Asset_GalleryAlbum\');\n\" class=\"adminButton\">^International(\'template upload single\',\'Asset_GalleryAlbum\');\n^International(\'template upload archive\',\'Asset_GalleryAlbum\');\n
    ^International(\'addArchive file\',\'Asset_GalleryAlbum\');\n\n
    ^International(\'addArchive keywords\',\'Asset_GalleryAlbum\');\n\n
    ^International(\'addArchive location\',\'Asset_GalleryAlbum\');\n\n
    ^International(\'addArchive sortBy\',\'Asset_GalleryAlbum\');
    ^International(\'addArchive friendsOnly\',\'Asset_GalleryAlbum\');
    \n
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \n \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n ^International(template makeShortcut title,Asset_Photo);\n
    \n\n

    \n\n
    \n\n \n \n \n \n \n \n \n \n \n \n
    ^International(template makeShortcut file,Asset_Photo);
    ^International(template makeShortcut album,Asset_Photo);
    \n\n
    \n \n
    \n\n \n
    \n
    ','GalleryFile/MakeShortcut',1,1,'m3IbBavqzuKDd2PGGhKPlA',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n\n\n\n
    \n
    \n^International(template makeShortcut title,Asset_Photo);\n
    \n

    \n
    \n\n\n\n\n\n\n\n\n\n\n
    ^International(template makeShortcut file,Asset_Photo);
    ^International(template makeShortcut album,Asset_Photo);
    \n
    \n \n
    \n\n
    \n
    ',0,NULL,NULL),('
    \n \n \n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n^International(template url_delete,Asset_GalleryAlbum);\n
    \n\n

    \n\n \n\n
    ','GalleryAlbum/Delete',1,1,'UTNFeV7B_aSCRmmaFCq4Vw',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('
    \n \n \n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n^International(template url_delete,Asset_Photo);\n
    \n\n

    \n\n \n
    ','GalleryFile/Delete',1,1,'zcX-wIUct0S_np14xxOA-A',1285124155,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','GalleryAlbum/ViewRss',1,1,'mM3bjP_iG9sv5nQb4S17tQ',1285124158,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n<tmpl_var title>\n\n\n\n\n<tmpl_var title>\n\n\n\n\n\n\n\n',0,NULL,NULL),('\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','Gallery/ListAlbumsRss',1,1,'ilu5BrM-VGaOsec9Lm7M6Q',1285124158,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n<tmpl_var title>\n\n\n\n\n<tmpl_var title>\n\n\n\n\n\n\n\n',0,NULL,NULL),('\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','Gallery/ListFilesForUserRss',1,1,'-ANLpoTEP-n4POAdRxCzRw',1285124158,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n<tmpl_var title>\n\n\n\n\n<tmpl_var title>\n\n\n\n\n\n\n\n',0,NULL,NULL); +INSERT INTO `template` VALUES ('
    \n \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \"\"\n \n \"\"\n \"\"\n \n \"\"\n
    \n
    \n
    \n\n

    \n\n
    \n ^International(\"template comment add title\",\"Asset_Photo\");\n ^International(\"template comment edit title\",\"Asset_Photo\");\n \n \n
    \n
    \n \n
    \n \n
    \n
    \n \n
    \n
    ','GalleryFile/EditComment',1,1,'OxJWQgnGsgyGohP2L3zJPQ',1285124158,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n\n\"\"\n\n\"\"\n\"\"\n\n\"\"\n
    \n
    \n
    \n

    \n
    \n^International(\"template comment add title\",\"Asset_Photo\");\n^International(\"template comment edit title\",\"Asset_Photo\");\n\n\n
    \n
    \n\n
    \n\n
    \n
    \n\n
    \n
    ',0,NULL,NULL),('\r\n\r\n\r\n\r\n^Page(title); · ^c();\r\n\r\n\r\n\r\n\r\n\r\n^AdminBar();\r\n\r\n
    \r\n

    ^c();

    \r\n ^u();\r\n
    \r\n\r\n
    \r\n \r\n
    \r\n\r\n
    \r\n ©^D(%y); ^c();\r\n
    \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n','style',1,1,'PBtmpl0000000000000111',1286336607,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n^Page(title); · ^c();\n\n\n\n\n^AdminBar();\n
    \n

    ^c();

    \n^u();\n
    \n
    \n\n
    \n
    \n©^D(%y); ^c();\n
    \n\n\n\n\n',0,NULL,'[]'),('

    \r\n \r\n

    \r\n\r\n\r\n\r\n

    \r\n\r\n\r\n \r\n \r\n\r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n\r\n
    \r\n \r\n
    ','Auth/LDAP/Account',1,1,'PBtmpl0000000000000004',1287545014,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n

    \n\n\n

    \n\n\n\n\n\n
    \n\n\n\n
    \n
    \n
    \n\n
    ',0,NULL,NULL),('

    \n \n

    \n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n\n\n \n \n\n\n\n \n \n\n
    \n\n\n\n
    \n \n
    ','Auth/LDAP/Create',1,1,'PBtmpl0000000000000005',1287545014,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n\n
    ',0,NULL,NULL),('

    \n \n

    \n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n
    \n\n\n
    \n
      \n \n
    • \">
    • \n
      \n\n
    \n
    ','Auth/LDAP/Login',1,1,'PBtmpl0000000000000006',1287545014,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n\n
    ',0,NULL,NULL),('

    \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
    \r\n\r\n\r\n
    \r\n \r\n
    \r\n','Auth/WebGUI/Account',1,1,'PBtmpl0000000000000010',1287545014,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n\n
    ',0,NULL,NULL),('

    \n\n\n \n\n\n\n\n\n\n\n \n \n\n\n\n \n \n\n\n \n \n\n\n\n \n \n\n\n\n\n \n \n\n\n\n \n\n\n \n\n
     
    \n\n\n
    \n \n
    \n','Auth/WebGUI/Create',1,1,'PBtmpl0000000000000011',1287545014,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
     
    \n\n
    \n\n
    ',0,NULL,NULL),('^International(\'50\',\'WebGUI\');: \r\n^International(\'51\',\'WebGUI\');: \r\n\r\n','Auth/WebGUI/Welcome',1,1,'PBtmpl0000000000000015',1287545014,'WebGUI::Asset::Template::HTMLTemplate',1,'^International(\'50\',\'WebGUI\');: \n^International(\'51\',\'WebGUI\');: \n',0,NULL,NULL),('^International(\'email address validation email body\',\'AuthWebGUI\');\r\n\r\n','Auth/WebGUI/Activation',1,1,'PBtmpl0000000000000016',1287545014,'WebGUI::Asset::Template::HTMLTemplate',1,'^International(\'email address validation email body\',\'AuthWebGUI\');\n',0,NULL,NULL),('

    \n \n

    \n\n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n
    \n \n \n \n
    \n \n \n \n
    \n \n \n \n
    \n \n
    \n','Auth/WebGUI/Expired',1,1,'PBtmpl0000000000000012',1287545014,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n\n
    \n\n\n\n
    \n\n\n\n
    \n\n
    \n',0,NULL,NULL),('

    \n \n

    \n\n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n
    \n\n\n
    \n \n
    ','Auth/WebGUI/Login',1,1,'PBtmpl0000000000000013',1287545014,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n\n
    ',0,NULL,NULL),('

    \n\n

    \n
    \n\n\n\n\n\n\n\n\n \n \n\n\n \n \n\n\n\n\n \n \n\n\n\n\n \n \n\n\n\n\n \n \n\n
    \n\n\n
    \n \n
    \n','Auth/WebGUI/Recovery2',1,1,'PBtmpl0000000000000014',1287545015,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n\n
    ',0,NULL,NULL),('

    \r\n\r\n

    \r\n\r\n

    \r\n\r\n
    \r\n\r\n\">\r\n\r\n         \r\n\r\n\">\r\n\r\n
    \r\n','Auth/WebGUI/Deactivate',1,1,'zaHUYsE_PgKk8hnVd8ffEQ',1287545015,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n

    \n\n

    \n
    \n\">\n         \n\">\n
    ',0,NULL,NULL),('

    \r\n\r\n

    \r\n\r\n

    \r\n\r\n
    \r\n\r\n\">\r\n\r\n         \r\n\r\n\">\r\n\r\n
    \r\n','Auth/LDAP/Deactivate',1,1,'_P4PMiraGsLTfOjK4fYQPQ',1287545015,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n

    \n\n

    \n
    \n\">\n         \n\">\n
    ',0,NULL,NULL),('^International(recover password email text1,AuthWebGUI,^u;);\n\n^International(recover password email text2,AuthWebGUI);\n\n\n\n^International(recover password email text3,AuthWebGUI);','Auth/WebGUI/RecoveryEmail',1,1,'sK_0zVw4kwdJ1sqREIsSzA',1287545015,'WebGUI::Asset::Template::HTMLTemplate',1,'^International(recover password email text1,AuthWebGUI,^u;);\n^International(recover password email text2,AuthWebGUI);\n\n^International(recover password email text3,AuthWebGUI);',0,NULL,NULL),('\n\n\n\n\">','NotifyAboutVersionTag',1,1,'lYhMheuuLROK_iNjaQuPKg',1287545015,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n',0,NULL,'[]'),('

    \n\n\n \n \n \n \n \n \n\n
    :
    \n\n\n

    \n\n\n \n \n \n \n \n \n\n
    :
    \n
    ','DataForm',1,1,'PBtmpl0000000000000085',1288747840,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n\n\n\n\n\n\n\n\n
    :
    \n
    \n\n

    \n\n\n\n\n\n\n\n\n
    :
    \n
    \n
    ',0,NULL,NULL),('\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n','EMS',1,1,'2rC4ErZ3c77OJzJm7O5s3w',1288747841,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n\n',0,NULL,NULL),('

    Friends for

    \n

    \">^International(back to friend manager,Account_FriendManager);

    \n\n\n
    \n

    ^International(remove friends,Account_FriendManager);

    \n\n\n\n\n\n\n\n\n\n\n\n
    ^International(remove all,Account_FriendManager);
    \n
    \n
    \n
    \n

    ^International(add new friends,Account_FriendManager);

    \n\n

    ^International(group,WebGUI);: . \">^International(view users from all groups,Account_FriendManager);

    \n
    \n\n\n

    ^International(Add Friend Managers,Account_FriendManager);:

    \n
    \n
    \n
    \n\n','Account/FriendManager/Edit',1,1,'lG2exkH9FeYvn4pA63idNg',1289967962,'WebGUI::Asset::Template::HTMLTemplate',1,'

    Friends for

    \n

    \">^International(back to friend manager,Account_FriendManager);

    \n\n\n
    \n

    ^International(remove friends,Account_FriendManager);

    \n\n\n\n\n\n\n\n\n\n\n\n
    ^International(remove all,Account_FriendManager);
    \n
    \n
    \n
    \n

    ^International(add new friends,Account_FriendManager);

    \n\n

    ^International(group,WebGUI);: . \">^International(view users from all groups,Account_FriendManager);

    \n
    \n\n\n

    ^International(Add Friend Managers,Account_FriendManager);:

    \n
    \n
    \n
    \n\n',0,NULL,NULL),('\r\n

    \r\n

    \r\n\r\n\r\n

    \r\n \">^International(\"add entry\",\"Asset_DataForm\");\r\n • \">\r\n \r\n • \" onclick=\"\">\r\n \r\n \r\n • \">\r\n • \">\r\n \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
    ^International(Entry ID,Asset_DataForm);\r\n \r\n \r\n \r\n \r\n \r\n ^International(Submission Date,Asset_DataForm);
    \">
    \r\n\r\n
    \r\n [ | | ]\r\n
    \r\n
    \r\n','DataForm/List',1,1,'PBtmpl0000000000000021',1294721945,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n

    \n\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(Entry ID,Asset_DataForm);\n\n\n\n\n\n^International(Submission Date,Asset_DataForm);
    \">
    \n\n
    \n[ | | ]\n
    \n
    ',0,NULL,'[]'),('\n\n \n\n\n \n\n\n \n\n\n \n\n
    \n \">^International(label day,Asset_Calendar);\n \">^International(label week,Asset_Calendar);\n \">^International(label month,Asset_Calendar);\n \">^International(486,WebGUI);\n \">^International(label search,Asset_Calendar);\n \n \n
    \n \n \n
    \n ^International(event details,Asset_Event);\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n
    \n
    ^International(event title,Asset_Event);
    \n
    \n
    \n \n
    \n
    \n
    ^International(location,Asset_Event);
    \n
    \n
    \n \n
    \n
    \n
    ^International(description,Asset_Event);
    \n
    \n
    \n
    \n
    ^International(scheduled,Asset_Event);
    \n
    \n
    \n \n
    \n
    \n
    ^International(related material,Asset_Event);
    \n
    \n \n
    \n
    ^International(attachments,Asset_Event);
    \n
    \n
    \n
    ','Calendar/Event',1,1,'CalendarEvent000000001',1295931508,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\">^International(label day,Asset_Calendar);\n\">^International(label week,Asset_Calendar);\n\">^International(label month,Asset_Calendar);\n\">^International(486,WebGUI);\n\">^International(label search,Asset_Calendar);\n\n
    \n\n\n
    \n^International(event details,Asset_Event);\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    ^International(event title,Asset_Event);
    \n
    \n
    \n\n
    \n
    \n
    ^International(location,Asset_Event);
    \n
    \n
    \n\n
    \n
    \n
    ^International(description,Asset_Event);
    \n
    \n
    \n
    \n
    ^International(scheduled,Asset_Event);
    \n
    \n
    \n\n
    \n
    \n
    ^International(related material,Asset_Event);
    \n
    \n\n
    \n
    ^International(attachments,Asset_Event);
    \n
    \n
    \n
    ',0,NULL,NULL),('
    \n\n\n
    _pagination\">
    \n
    \">
    \n
    \n\n
    ','Account/FriendManager/View',1,1,'64tqS80D53Z0JoAs2cX2VQ',1295931508,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n\n
    \">
    \n
    \n\n
    ',0,NULL,NULL),('\n','Calendar/List',1,1,'kj3b-X3i6zRKnhLb4ZiCLw',1295931508,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,'[]'),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n\n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n\n\n
    oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000077',1298351263,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n\n

    \n\n\">\n•\n\n\n\n\">\n\n\">\n\n•\n\n\">\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('
    \n \n

    \n
    \n\n \n

    ^International(View,Icon);

    \n
    \n\n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n wgRowOnewgRowTwo\">\n \n \">\n \n \n \n
    \n
    \n\n
    \n','Thingy/ViewThing',1,1,'ThingyTmpl000000000002',1299559129,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('
    \" class=\"image\">\n\" id=\"id\">\n\n\n
    \n
    \n\n\" alt=\"\" />\n\n\n
    ','ImageAsset',1,1,'PBtmpl0000000000000088',1300763663,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"image\">\n\" id=\"id\">\n\n
    \n
    \n\" />\n\n
    ',0,NULL,NULL),('
    \n \" id=\"id\">\n \n \n \n \n \n \n \n
    \n
    ^International(hide new content list,Asset_Dashboard);
    \n \n
    \n
    \n
    \n \n \n \n \">\n \n \n \n \n
    \n
    _div\" class=\"dragable\">\n
    \n
    \n _span\">\n \n \n \n \n \',\'\')\">\n \"\"\n \n \n \n \n \"\"\n \n \n \n \',\'\')\">\n \"\"\n \n \n \n \',\'\');\">\n \"\"\n \n \n \n
    \n
    \n \n
    _div\">\n \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n \n \n \n \n \n
    \n
    ^International(Add New Content,Asset_Dashboard);
    \n
    \n \n

    \n
    \n \n \n

    \n
    \n \n \n

    \n
    \n \n
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n \n \">\n \n \n \n \n
    \n
    _div\" class=\"dragable\">\n \n
    \n
    \n _span\">\n \n \n \n \n \',\'\')\">\n \"\"\n \n \n \n \n \"\"\n \n \n \n \',\'\')\">\n \"\"\n \n \n \n \',\'\');\">\n \"\"\n \n \n
    \n
    \n
    \n
    \n \n
    _div\">\n \n
    \n \n
    \n
    \n
    \n \n \n \n \">\n \n \n \n \n
    \n
    _div\" class=\"dragable\">\n
    \n
    \n \n _span\">\n \n \n \n \n \n \n \',\'\')\">\n \"\"\n \n \n \n \n \n \"\"\n \n \n \n \n \',\'\')\">\n \"\"\n \n \n \n \n \',\'\');\">\n \"\"\n \n \n
    \n
    \n
    \n
    \n \n
    _div\">\n \n
    \n \n
    \n
    \n
    \n \n \n \n \">\n \n \n \n \n
    \n
    _div\" class=\"dragable\">\n
    \n
    \n \n _span\">\n \n \n \n \n \n \n \',\'\')\">\n \"\"\n \n \n \n \n \n \"\"\n \n \n \n \n \',\'\')\">\n \"\"\n \n \n \n \n \',\'\');\">\n \"\"\n \n \n
    \n
    \n
    \n
    \n \n
    _div\">\n \n
    \n \n
    \n
    \n
    \n
    \n \n \n \n \n \n \n
    \n
    \n
     
    \n
    \n
    \n \n \n
    \n
    ','Dashboard',1,1,'DashboardViewTmpl00001',1300763664,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\" id=\"id\">\n\n\n\n\n\n
    \n
    ^International(hide new content list,Asset_Dashboard);
    \n
    \n
    \n
    \n\n\n\n\">\n\n\n\n\n
    \n
    _div\" class=\"dragable\">\n
    \n
    \n_span\">\n\n\n\n\n\',\'\')\">\n\"\"\n\n\n\n\n\"\"\n\n\n\n\',\'\')\">\n\"\"\n\n\n
    \n\n\',\'\');\">\n\"\"\n\n\n
    \n
    \n
    \n\n
    _div\">\n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n\n\n\n\n
    \n
    ^International(Add New Content,Asset_Dashboard);
    \n
    \n\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n
    \n
    \n\n\n\n\n\n\n\n\n
    \n\n\n\n\">\n\n\n\n\n
    \n
    _div\" class=\"dragable\">\n
    \n
    \n_span\">\n\n\n\n\n\',\'\')\">\n\"\"\n\n\n\n\n\"\"\n\n\n\n\',\'\')\">\n\"\"\n\n\n\n\',\'\');\">\n\"\"\n\n\n
    \n
    \n
    \n
    \n
    _div\">\n\n
    \n
    \n
    \n
    \n\n\n\n\">\n\n\n\n\n
    \n
    _div\" class=\"dragable\">\n
    \n
    \n\n_span\">\n\n\n\n\n\n\',\'\')\">\n\"\"\n\n\n\n\n\"\"\n\n\n\n\',\'\')\">\n\"\"\n\n\n\n\',\'\');\">\n\"\"\n\n\n
    \n
    \n
    \n
    \n
    _div\">\n\n
    \n
    \n
    \n
    \n\n\n\n\">\n\n\n\n\n
    \n
    _div\" class=\"dragable\">\n
    \n
    \n\n_span\">\n\n\n\n\n\n\',\'\')\">\n\"\"\n\n\n\n\n\"\"\n\n\n\n\',\'\')\">\n\"\"\n\n\n\n\',\'\');\">\n\"\"\n\n\n
    \n
    \n
    \n
    \n
    _div\">\n\n
    \n
    \n
    \n
    \n
    \n\n\n\n\n\n
    \n
    \n
     
    \n
    \n
    \n\n
    \n
    ',0,NULL,'[]'),('\r\n\r\n\r\n\r\n^Page(title); - ^c;\r\n\r\n\r\n\r\n\r\n\r\n\r\n^AdminBar;\r\n\r\n
    \r\n\r\n \r\n
    \r\n ^AssetProxy(style-underground/top-navigation); \r\n
    \r\n \r\n
    \r\n \r\n
    yourname
    \r\n \r\n
    \r\n \r\n

    \r\n

    \r\n
    \r\n \r\n
    \r\n\r\n
    \r\n ^AssetProxy(style-underground/side-navigation);\r\n

    ^GroupText(\"Registered Users\",\"Hello, ^@;\",\"Login\");

    \r\n
    \r\n
      \r\n
    • ^LoginToggle();
    • \r\n ^a(\"View My Account\",\"style-underground/templates/view-my-account\");\r\n ^AdminToggle(\"\",\"\",\"style-underground/templates/admintoggle-underground-admin-toggle\");\r\n
    \r\n
    \r\n

    WebGUI Links

    \r\n \r\n
    \r\n \r\n
    \r\n\r\n
    \r\n \r\n\r\n
    \r\n \r\n

    \r\n © 2006 ^c;    \r\n Design by: styleshout |\r\n Valid XHTML |\r\n CSS\r\n       \r\n \r\n

    \r\n \r\n
    \r\n \r\n\r\n\r\n','style',1,1,'Qk24uXao2yowR6zxbVJ0xA',1301973997,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n^Page(title); - ^c;\n\n\n\n\n\n^AdminBar;\n\n
    \n\n
    \n^AssetProxy(style-underground/top-navigation);\n
    \n
    \n
    yourname
    \n
    \n\n

    \n

    \n
    \n
    \n
    \n^AssetProxy(style-underground/side-navigation);\n

    ^GroupText(\"Registered Users\",\"Hello, ^@;\",\"Login\");

    \n
    \n
      \n
    • ^LoginToggle();
    • \n^a(\"View My Account\",\"style-underground/templates/view-my-account\");\n^AdminToggle(\"\",\"\",\"style-underground/templates/admintoggle-underground-admin-toggle\");\n
    \n
    \n

    WebGUI Links

    \n\n
    \n
    \n\n
    \n\n
    \n

    \n© 2006 ^c;   \nDesign by: styleshout |\nValid XHTML |\nCSS\n      \n\n

    \n
    \n\n',0,'1riOzIrN9EgfdnGFyOq-_g','[]'),(' \n \n','Navigation',1,1,'39KNX53B4nYJAyIE1lu8ZQ',1301973997,'WebGUI::Asset::Template::HTMLTemplate',1,'\n',0,NULL,NULL),(' \r\n

    \r\n
    \r\n \r\n
    \r\n
    \r\n','Navigation',1,1,'ztfi__vHJLsQDsMenrEn-w',1301973997,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n
    ',0,NULL,NULL),('
  • \">
  • ','AdminToggle',1,1,'8qyrDCNeggB4dzKiOoRuiQ',1301973997,'WebGUI::Asset::Template::HTMLTemplate',1,'
  • \">
  • ',0,NULL,NULL),('
  • \">
  • ','Macro/a_account',1,1,'M1NyNeS5jpdIsiIWFiJprw',1301973997,'WebGUI::Asset::Template::HTMLTemplate',1,'
  • \">
  • ',0,NULL,NULL),('
    \r\n \r\n

    \r\n
    \r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n
    \r\n
    \r\n\r\n\r\n
    \">\r\n
      \r\n \r\n
    1. \" style=\"width:px; height:px;\">\r\n \r\n
    2. \r\n
      \r\n
    \r\n
    \r\n\r\n \r\n\r\n
    \r\n\r\n
    ','Carousel',1,1,'CarouselTmpl0000000001',1301973997,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n

    \n
    \n\n

    \n
    \n\n
    \n
    \n\n
    \">\n
      \n\n
    1. \" style=\"width:px; height:px;\">\n\n
    2. \n
      \n
    \n
    \n\n
    \n
    ',0,NULL,'[]'),('\n\n\n\n \n WebGUI - style Greenportal\n \n\n\n \n ^AdminBar;\n
    \n
    \n
    \n ^H(^c(););\n \n
    \n
    \n\n
    \n ^AssetProxy(greenportal_navigation);\n
    \n\n
    \n
    \n Currently viewing: ^AssetProxy(greenportal_navigationtop);\n
    \n\n
    \n \n
    \n
    \n\n
    \n © 2008 ^c; | Design from Joomla! Open Source\n
    \n
    \n\n\n','style',1,1,'KKt0VB_eoQxw9xEsHsAhag',1301973998,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\nWebGUI - style Greenportal\n\n\n\n^AdminBar;\n
    \n
    \n
    \n^H(^c(););\n\n
    \n
    \n
    \n^AssetProxy(greenportal_navigation);\n
    \n
    \n
    \nCurrently viewing: ^AssetProxy(greenportal_navigationtop);\n
    \n
    \n\n
    \n
    \n
    \n© 2008 ^c; | Design from Joomla! Open Source\n
    \n
    \n\n',0,'dHuYEH6gNfRu9NHXOVFa9g',NULL),('\r\n

    \r\n
    \r\n\r\n

    \r\n
    \r\n\r\n
    \r\n
    \r\n\r\n\r\n','Navigation',1,1,'_z3ukLCqvoaUygfsbbkBzw',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n
    \n
    \n
      \n
    • Main Menu
    • \n\n\n
    • \"indent1\"\"indent2\">\n\nstyle=\"color:white;\"\n\n\nonclick=\"window.open(\'\')\" href=\"#\"\n\nhref=\"\"\n>\n\n\n
    • \n
      \n
      \n
    • User Panel
    • \n
    • ^LoginToggle;
    • \n
    • ^a(Hello‚ ^@;˜);
    • \n
    • ^AdminToggle;
    • \n
    ',0,NULL,NULL),('\r\n \r\n\r\n\r\n\r\n onclick=\"window.open(\'\')\" href=\"#\" \r\n href=\"\"\r\n \r\n >\r\n \r\n \r\n\r\n » \r\n\r\n\r\n','Navigation',1,1,'Pt38T5_MWSue2e1N36MLdw',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\nonclick=\"window.open(\'\')\" href=\"#\"\nhref=\"\"\n>\n\n\n » \n',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n
      \r\n

      Registration failed because

      \r\n \r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n\r\n \r\n

    \r\n\r\n\r\n\r\n

    \r\n \">\r\n • \">\r\n\r\n \r\n \r\n • \" onclick=\"\">\r\n \r\n\r\n \r\n • \" onclick=\"\">\r\n \r\n • \">\r\n • \">\r\n \r\n
    \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n * required\r\n \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n','DataForm',1,1,'LDcM1Iop17nF2MoSa7zo_Q',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n
      \n

      Registration failed because

      \n\n
    • \n
      \n
    \n
    \n\n\n

    \n\n

    \n\">\n• \">\n\n\n• \" onclick=\"\">\n\n\n• \" onclick=\"\">\n\n• \">\n• \">\n\n
    \n\n\n\n\n\n\n\n\n\n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n* required\n\n
    \n\n
    \n
    \n
    \n\n',0,NULL,NULL),('\n

    \n

    \n\n

    Registration Database

    \n\n\n
    \n \">\n • \">\n \n \n • \" onclick=\"\">\n \n • \">\n • \">\n \n
    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Submission Date
    \" onclick=\"return confirm(\'Are you certain that you wish to delete this data entry?\')\">\"Delete\"
    \n\n','DataForm/List',1,1,'hVF1taXj4bfd7DuL4XDMYg',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n

    \n

    Registration Database

    \n
    \n\">\n• \">\n\n\n• \" onclick=\"\">\n\n• \">\n• \">\n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
      Submission Date
    \" onclick=\"return confirm(\'Are you certain that you wish to delete this data entry?\')\">\"Delete\"
    ',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n
    \r\n \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
    \r\n

    \r\n\">Change Info      \r\n\">\r\n\r\n\r\n','DataForm',1,1,'x4-2QYRSrIB_BJfnSKKj4w',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n
    \n\n
    \n\n\n\n\n\n\n\n
    \n

    \n\">Change Info      \n\">',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n\r\n\r\n

    \r\n\r\n \r\n \">\r\n •\r\n \r\n \r\n \r\n \">\r\n \r\n \">\r\n \r\n •\r\n \r\n \">\r\n

    \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
    \">\">\">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\r\n \">\r\n by\r\n \r\n \r\n \r\n \">\r\n \r\n on @ \r\n
    \r\n\r\n\r\n
    \r\n · · \r\n
    \r\n
    \r\n','Collaboration',1,1,'423R4Y6XIt3wUzlnLo-chg',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n\n

    \n\n\">\n•\n\n\n\n\">\n\n\">\n\n•\n\n\">\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\">\">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\n\">\nby\n\n\n\n\">\n\non @ \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n
    \r\n

    \">[Back]

    \r\n
    \r\n
    \r\n \r\n \">\r\n \r\n \">\r\n \r\n
    \r\n
    \r\n\r\n\r\n
    px;\">\r\n
    Current\">\r\n \">\r\n
    \r\n \r\n
    \r\n
    \r\n\r\n
    \r\n\" alt=\"\" />\r\n
    \r\n
    \r\n
    \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n :
    \r\n
    \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n
    \r\n [ | | ]\r\n
    \r\n
    \r\n\r\n
    \r\n \r\n \"> • \r\n \r\n \r\n \"> • \r\n \r\n \r\n \"> \r\n \r\n \r\n \r\n • \">\r\n \r\n • \">\r\n \r\n \r\n • \"> \r\n \r\n • \"> \r\n \r\n \r\n \r\n \r\n • \">\r\n \r\n • \">\r\n \r\n \r\n
    \r\n\r\n','Collaboration/Thread',1,1,'oZ1Mk-zExYUyD-JsjTvaHg',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n

    \n
    \n\n
    \n\n\">\n\n\">\n\n
    \n
    \n\n\n\n\n
    \n[ | | ]\n
    \n
    \n
    \n\n\"> •\n\n\n\"> •\n\n\n\">\n\n\n\n• \">\n\n• \">\n\n\n• \">\n\n• \">\n\n\n\n\n• \">\n\n• \">\n\n\n
    ',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n

    \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n\r\n\r\n\r\n

    \r\n \r\n
    \r\n\r\n\r\n','Collaboration/PostForm',1,1,'mYwS8CZaOLMt0raaKXGZcQ',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n

    \n\n
    ',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n

    \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    class=\"odd\">\">class=\"odd\">class=\"odd\">\">class=\"odd\"> @
    \r\n
    \r\n\r\n\r\n
    \r\n · · \r\n
    \r\n
    \r\n\r\n\r\n','Collaboration/Search',1,1,'kSGR4OHsKmhLQTuLkisOww',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    class=\"odd\">\">class=\"odd\">class=\"odd\">\">class=\"odd\"> @
    \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n\n\n\n \n\n\n \n\n\n\n \n
    \n \">Day\n \">Week\n \">Month\n \">Search\n \n
     
    \n\n
    \n \">Add Event\n \">Print\n \n \n
    \n
    \n \" style=\"font-size:7pt; margin-right:12px;\">« prev\n \n \" style=\"font-size:7pt; padding-left:12px\">next » \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    active current\">\n \n \">\n \n\n \n \n \n\n /wobject/Calendar/images/more.gif\" />\n \n \n \n
    \n
    \n\n
    \" class=\"moreDisplay\">\n
    \n
      \n \n
    • \">
    • \n
      \n
    \n
    \n
    \n
    \n\n\n','Calendar/Month',1,1,'U78V5IJHVljvRTb6ydsTHg',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\">Day\n\">Week\n\">Month\n\">Search\n
     
    \n
    \n\">Add Event\n\">Print\n\n\n
    \n
    \n\" style=\"font-size:7pt; margin-right:12px;\">« prev\n \n\" style=\"font-size:7pt; padding-left:12px\">next »\n
    \n\n\n\n\n\n\n\n\n\n\n
    active current\">\n\n\">\n\n\n\n\n/wobject/Calendar/images/more.gif\" />\n\n\n
    \n
    \n\n
    \" class=\"moreDisplay\">\n
    \n\n
    \n
    \n
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n\r\n
    \r\n \" class=\"tab\">Day \r\n \" class=\"tabWeek\">Week \r\n \" class=\"tab\">Month \r\n \" class=\"tab\">Search\r\n\r\n
     
    \r\n\r\n
    \r\n \">Add Event\r\n \">Print\r\n \r\n \r\n
    \r\n
    \r\n \" style=\"margin-right:66px;\">« prev week\r\n , ~ , \r\n \" style=\"margin-left:66px\">next week » \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    curDay\"> \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n','Calendar/Week',1,1,'Xqc3qPUXoFE8dt9qocdWig',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\" class=\"tab\">Day\n\" class=\"tabWeek\">Week\n\" class=\"tab\">Month\n\" class=\"tab\">Search\n
     
    \n
    \n\">Add Event\n\">Print\n\n\n
    \n
    \n\" style=\"margin-right:66px;\">« prev week\n , ~ , \n\" style=\"margin-left:66px\">next week »\n
    \n\n\n\n\n\n
    \n
    \n
    curDay\">\n\n\n
    \n
    \n
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n \" class=\"tabDay\">Day\r\n \" class=\"tab\">Week\r\n \" class=\"tab\">Month\r\n \" class=\"tab\">Search\r\n\r\n
     
    \r\n\r\n
    \r\n \">Add Event\r\n \">Print\r\n \r\n \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    :00
    \r\n
    \r\n
      \r\n
    • \r\n \">\r\n
    • \r\n
    \r\n
    \r\n
    \r\n\r\n','Calendar/Day',1,1,'IBTb7wllSt7RxFmmvm9pkQ',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n
    \n\" class=\"tabDay\">Day\n\" class=\"tab\">Week\n\" class=\"tab\">Month\n\" class=\"tab\">Search\n
     
    \n
    \n\">Add Event\n\">Print\n\n\n
    \n
    \n\n
    \n\n\n\n\n\n
    \n
    :00
    \n
    \n\n
    \n
    ',0,NULL,NULL),('\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n \" class=\"tab\">Day\r\n \" class=\"tab\">Week\r\n \" class=\"tab\">Month\r\n \" class=\"tab\">Search\r\n\r\n
     
    \r\n \r\n
    \r\n \r\n Edit \r\n • Delete • \r\n \r\n Print\r\n
    \r\n
    \r\n \" style=\"margin-right:106px;\">« prev event\r\n Event Details\r\n \" style=\"margin-left:106px\">next event »\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n
    \r\n
    Event Title
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    Location
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    Description
    \r\n
    \r\n
    \r\n
    \r\n
    Scheduled
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    Related Material
    \r\n
    \r\n \">
    \r\n
    \r\n
    \r\n
    Attachments
    \r\n
    \r\n \"> \" />
    \r\n
    \r\n
    \r\n
    \r\n','Calendar/Event',1,1,'Z1EM7JMI_4SkyfaZffSElw',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n
    \n\" class=\"tab\">Day\n\" class=\"tab\">Week\n\" class=\"tab\">Month\n\" class=\"tab\">Search\n
     
    \n
    \n\nEdit\n• Delete •\n\nPrint\n
    \n
    \n\" style=\"margin-right:106px;\">« prev event\nEvent Details\n\" style=\"margin-left:106px\">next event »\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    Event Title
    \n
    \n
    \n\n
    \n
    \n
    Location
    \n
    \n
    \n\n
    \n
    \n
    Description
    \n
    \n
    \n
    \n
    Scheduled
    \n
    \n
    \n\n
    \n
    \n
    Related Material
    \n
    \n\">
    \n
    \n
    \n
    Attachments
    \n
    \n
    \n
    ',0,NULL,NULL),('\n\n\n

    Errors!

    \n
      \n\n
    • \n
      \n
    \n
    \n\n\n\n \n\n
    \n Event\n Recurrence\n \n \n
     
    \n
    \n\n\n\n\n \n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Event Title
    Short Title
    Location
    Description
    Start Date
    End Date
    Time
     
    Related Links
    Group to View this Event
    Attachments for this Event
    \n
    \n \n \n\n\n\n\n\n \n \n\n\n \n \n\n\n
    Recurrence Pattern
    Recurrence Range\n

    Start:

    \n

    \n

    End:

    \n
    \n
    \n\n\n\n\n','Calendar/EventEdit',1,1,'fJg7SKpGZwzSNx3_ebki1A',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n

    Errors!

    \n
      \n\n
    • \n
      \n
    \n
    \n\n\n\n\n
    \nEvent\nRecurrence\n\n\n
     
    \n
    \n\n\n\n\n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    Event Title
    Short Title
    Location
    Description
    Start Date
    End Date
    Time
     
    Related Links
    Group to View this Event
    Attachments for this Event
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    Recurrence Pattern
    Recurrence Range\n

    Start:

    \n

    \n

    End:

    \n
    \n
    \n\n',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n \">^International(label search,Asset_Calendar);\r\n
    \r\n  \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n
    \r\n
    ^International(keyword,Asset_Calendar);
    \r\n
    \r\n
    \r\n
    ^International(start date,Asset_Calendar);
    \r\n
    \r\n
    \r\n
    ^International(end date,Asset_Calendar);
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n
    \r\n ^International(search results,Asset_Calendar);\r\n ^International(page x of x,Asset_Calendar,,);\r\n
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n \" style=\"padding-left:10px\">\r\n
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n','Calendar/Search',1,1,'ihf4Rx6p72xn_nVKaIeOaw',1301973999,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\">^International(label day,Asset_Calendar);\n\">^International(label week,Asset_Calendar);\n\">^International(label month,Asset_Calendar);\n\">^International(label search,Asset_Calendar);\n
    \n \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    ^International(keyword,Asset_Calendar);
    \n
    \n
    \n
    ^International(start date,Asset_Calendar);
    \n
    \n
    \n
    ^International(end date,Asset_Calendar);
    \n
    \n
    \n
    \n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    \n^International(search results,Asset_Calendar);\n^International(page x of x,Asset_Calendar,,);\n
    \n
    \n
    \n\n\n\n
    \n
    \n\n\n\n\n\n
    \n
    \n
    \n\" style=\"padding-left:10px\">\n
    \n
    \n
    \n\n\n\n
    \n
    \n
    ',0,NULL,NULL),('\" id=\"id\"> \r\n\r\n \r\n

    \r\n
    \r\n\r\n

    \">[]

    \r\n\r\n
    \r\n\r\n
    \r\n\" alt=\"\" />\r\n
    \r\n
    \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n :
    \r\n :
    \r\n : \r\n \r\n     [

    \">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />

    |

    \">\" alt=\"-\" style=\"border: 0px;vertical-align:middle;\" />

    ]\r\n
    \r\n
    \r\n \r\n : [ \"> \"> ]
    \r\n \r\n \r\n :
    \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n

    \r\n \r\n
    \r\n\r\n\r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n
    \r\n \r\n \">\r\n \r\n \r\n •\r\n \">\r\n •\r\n \">\r\n \r\n
    \r\n
    \r\n\r\n
    \r\n\r\n\r\n
    \r\n

    \r\n
    \r\n
    \r\n \r\n \">\r\n \r\n \">\r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    Current\">\r\n \">\r\n
    \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
    \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n : \r\n
    \r\n : \r\n \r\n     [

    \">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />

    |

    \">\" alt=\"-\" style=\"border: 0px;vertical-align:middle;\" />

    ]\r\n
    \r\n
    \r\n :
    \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n \r\n \">\r\n \r\n \r\n •\r\n \">\r\n •\r\n \">\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    px;\">\r\n
    Current\">\r\n \">\r\n
    \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
    \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n : \r\n
    \r\n : \r\n \r\n     [

    \">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />

    |

    \">\" alt=\"-\" style=\"border: 0px;vertical-align:middle;\" />

    ]\r\n
    \r\n
    \r\n :
    \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n \r\n \">\r\n \r\n \r\n •\r\n \">\r\n •\r\n \">\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n \r\n
    \r\n [ | | ]\r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n \r\n \"> \r\n •\r\n \r\n \r\n \r\n \">\r\n • \r\n \r\n \r\n \">\r\n •\r\n \r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \">\r\n \r\n \r\n
    \r\n
    \r\n','Collaboration/Thread',1,1,'jrWJ6nHXkqgFbml7BZ9chw',1301974000,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n

    \">[]

    \n
    \n\n
    \n\" alt=\"\" />\n
    \n
    \n:\n\n\n\n\">\n\n
    \n:
    \n:
    \n: \n\n    [

    \">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />

    |

    \">\" alt=\"-\" style=\"border: 0px;vertical-align:middle;\" />

    ]\n
    \n
    \n\n: [ \"> \"> ]
    \n\n\n:
    \n
    \n
    \n
    \n
    \n

    \n\n
    \n\n
    \n\n\n\n
    \n
    \n
    \n\n
    \n\n\">\n\n\n•\n\">\n•\n\">\n\n
    \n
    \n
    \n\n
    \n

    \n
    \n
    \n\n\">\n\n\">\n\n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n[ | | ]\n
    \n
    \n
    \n
    \n\n\">\n•\n\n\n\">\n•\n\n\n\">\n•\n\n\n\n\">\n•\n\n\">\n•\n\n\n\">\n•\n\n\">\n•\n\n\n\n\n\">\n\n\">\n\n\n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n

    \r\n\r\n\r\n\r\n \">\r\n

    \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n class=\"even\">\r\n \">
    \r\n \r\n \r\n class=\"even\" align=\"center\">\r\n class=\"even\" align=\"center\">\r\n class=\"even\" align=\"center\">\r\n class=\"even\" align=\"center\">\r\n class=\"even\">\r\n \">\r\n by\r\n \r\n \r\n \r\n \">\r\n \r\n on @ \r\n \r\n
    \r\n \r\n
    \r\n\r\n

    \r\n \r\n
    \r\n
    \r\n \r\n

    \r\n \r\n\r\n\r\n\r\n','MessageBoard',1,1,'Ys6f3vpe0y1uRcaCJ2TlFw',1301974000,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n

    \n\n\n\">\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n class=\"even\">\n\">
    \n\n\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\">\n\">\nby\n\n\n\n\">\n\non @ \n\n
    \n\n
    \n\n

    \n\n
    \n
    \n\n

    \n\n',0,NULL,NULL),('

    \" class=\"search\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n
    \n
    \n \n \" size=\"30\" maxlength=\"255\" />\n \n
    \n
    \n\n\n \n
    \n ^International(\'resultsFeedback\',Asset_Search); \n ^International(\'page\',Asset_Search); ^International(\'of\',Asset_Search); \n \n
    \n \n

    \n
    \n\n
    \n \n
    );\">
    \n
    \n
    \n
    \n\n \n
      \n
    • \n \n class=\"active\">\n \">\n \n \n
    • \n
    \n
    \n\n
    \n\n\n
    \n','Search',1,1,'PBtmpl0000000000000200',1301974000,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"search\">\n\" id=\"id\">\n\n\n\n\n

    \n
    \n\n
    \n\n\n
    \n
    \n
    \n
    \n\n\" size=\"30\" maxlength=\"255\" />\n\n
    \n
    \n\n\n
    \n^International(\'resultsFeedback\',Asset_Search); \n^International(\'page\',Asset_Search); ^International(\'of\',Asset_Search); \n\n
    \n\n

    \n
    \n
    \n\n
    );\">
    \n
    \n
    \n
    \n\n
      \n
    • \n\n class=\"active\">\n\">\n\n\n
    • \n
    \n
    \n
    \n\n
    ',0,NULL,'[]'),('\n\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n

    \n\n\n\n \n \n \n \n \n \n
    \n
    \n \n \n \n \n \n
    ^International(Stock Watch,Asset_StockData);\n
    \">\n ^International(Last Update,Asset_StockData);: EDT
    \n \n
    \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n qmmt_cycleqmmt_main\'>\n \n \n \n \n \n \n \n
    Name SymbolLastTickChg
    \n \')\">\n \n /\" alt=\"\" />\n _up_down\" style=\"text-align: right;whitespace:nowrap;\">
    \n
    ','StockData',1,1,'StockDataTMPL000000001',1315877144,'WebGUI::Asset::Template::HTMLTemplate',1,'\">\n\n

    \n
    \n\n

    \n
    \n\n

    \n\n\n\n\n\n\n\n\n
    \n
    \n\n\n\n\n\n
    ^International(Stock Watch,Asset_StockData);\n
    \n^International(Last Update,Asset_StockData);: EDT
    \n\n
    \n
    \n
    \n\n\n\n\n\n\n\n\n\n\nqmmt_cycleqmmt_main\'>\n\n\n\n\n\n\n\n
    Name SymbolLastTickChg
    \n\')\">\n\n/\" alt=\"\" />\n_up_down\" style=\"text-align: right;whitespace:nowrap;\">
    \n
    ',0,NULL,NULL),('\r\n

    \" class=\"editStory\">\r\n
    \r\n\r\n\r\n\r\n
    \r\n \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n
    \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n \r\n \r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n \r\n \r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n
    ^International(photo,WebGUI);
    \">\" alt=\"\" style=\"border-style:none;vertical-align:middle;\" />
    ^International(or,WebGUI);
    \r\n
    \r\n\r\n
    \r\n \r\n
    \r\n\r\n\r\n
    \r\n\r\n\r\n
    \r\n','Story/Edit',1,1,'E3tzZjzhmYoNlAyP2VW33Q',1303183716,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"editStory\">\n
    \n\n\n
    \n \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(photo,WebGUI);
    \">\" alt=\"\" style=\"border-style:none;vertical-align:middle;\"/>
    ^International(or,WebGUI);
    \n
    \n
    \n \n
    \n\n
    \n
    ',0,NULL,'[]'),('\r\n\r\n\r\n\r\n\r\n','Map/View',1,1,'9j0_Z1j3Jd0QBbY2akb6qw',1304392055,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n',0,NULL,NULL),('\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    ','MapPoint/Edit',1,1,'oHh0UqAJeY7u2n--WD-BAA',1304392055,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ',0,NULL,'[]'),('
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n,\r\n\r\n


    \r\n
    \r\n\">
    \r\n^International(phone label,Asset_MapPoint);:
    \r\n^International(fax label,Asset_MapPoint);:
    \r\n\">
    \r\n);\" />\r\n
    ','MapPoint/View',1,1,'u9vfx33XDk5la1-QC5FK7g',1304392055,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n
    \n
    \n
    \n,\n\n


    \n
    \n
    \">
    \n^International(phone label,Asset_MapPoint);:
    \n^International(fax label,Asset_MapPoint);:
    \n\">
    \n);\" />\n
    ',0,NULL,'[]'),('

    ^International(has posted to one of your subscriptions,Asset_Collaboration);

    \n\n\n\n\n\n

    ^International(attachments, Asset_Article);\n
    \n
    \n\n\n\n
    \n \n
    \n
    \n\n
    \n \n
    \n
    \n\n
    \n \n
    \n
    \n\n
    \n \n
    \n
    \n\n
    \n \n
    \n
    \n\n\n

    \">

    \n

    \">View this message on the web site.

    \n','Collaboration/Notification',1,1,'PBtmpl0000000000000027',1311652541,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
     
    ^International(has posted to one of your subscriptions,Asset_Collaboration);
    #\">#
      
    \n

    \">

    ',0,NULL,NULL),('\n

    \n

    \n

    ^International(badge holder information,Asset_EventManagementSystem);

    \n\n\n

    \n
    \n\n\n \n \n \n \n \n \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(name,Shop);
    ^International(organization,Asset_EventManagementSystem);
    ^International(address,Shop);
     
     
    ^International(city,Shop);
    ^International(state,Shop);
    ^International(code,Shop);
    ^International(country,Shop);
    ^International(phone number,Shop);
    ^International(email address,Asset_EventManagementSystem);
     
    \n
    \n
    \n
    \n
    \n
     
    \n\n\n\n\n\n\n\n\n\n\n','EMSBadge',1,1,'PBEmsBadgeTemplate0000',1313542962,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n

    \n

    ^International(badge holder information,Asset_EventManagementSystem);

    \n\n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(name,Shop);
    ^International(organization,Asset_EventManagementSystem);
    ^International(address,Shop);
     
     
    ^International(city,Shop);
    ^International(state,Shop);
    ^International(code,Shop);
    ^International(country,Shop);
    ^International(phone number,Shop);
    ^International(email address,Asset_EventManagementSystem);
    \n\n',0,NULL,NULL),('
    \n\n
    \n\n\n\n\n \n\n\n \n\n\n \n \n \n \n \n \n\n\nalt\">\n \n \n \n \n \n \n\n\n\n \n\n\n \n\n\n \n\n\n\n \n \n \n\n\n \n \n \n \n\n\n \n \n \n \n\n\n \n \n\n\n \n \n \n\n\n \n\n\n \n \n \n \n \n\n\n \n \n \n \n\n\n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n\n\n \n \n \n\n\n \n \n \n \n \n\n\n \n\n\n\n\n \n \n\n\n \n\n\n
     
    ^International(remove button,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(extended price,Shop);^International(per item shipping,Shop);
    \n \n \n
    \n \n \n ^International(not applicable,Shop);\n
    \n
    \n
     
     
      
    ^International(Billing Address,Shop); ^International(Shipping Address,Shop);
    ^International(use same shipping as billing,Shop);
     
      
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(label help,Shop);
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(label help,Shop);
    \n
      
     
    ^International(tax,Shop);
    ^International(shipping,Shop);\n \n
    ^International(payment methods,PayDriver);\n \n
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
    (^International(required minimum order amount,Shop); )
      
     
    ^International(order for,Shop);
     
    \n\n\n
    \n

    ^International(50,WebGUI);\n^International(51,WebGUI);
    \">^International(407,WebGUI);

    \n
    \n
    \n','Shop/Cart',1,1,'aIpCmr9Hi__vgdZnDTz1jw',1326776036,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nalt\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
     
    ^International(remove button,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(extended price,Shop);^International(per item shipping,Shop);
    \n\n\n
    \n\n\n^International(not applicable,Shop);\n
    \n
    \n
     
     
      
    ^International(Billing Address,Shop); ^International(Shipping Address,Shop);
    ^International(use same shipping as billing,Shop);
     
      
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(label help,Shop);
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(label help,Shop);
    \n
      
     
    ^International(tax,Shop);
    ^International(shipping,Shop);\n\n
    ^International(payment methods,PayDriver);\n\n
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
    (^International(required minimum order amount,Shop); )
      
     
    ^International(order for,Shop);
     
    \n\n\n
    \n

    ^International(50,WebGUI);\n^International(51,WebGUI);
    \">^International(407,WebGUI);

    \n
    \n
    ',0,NULL,'[{\"url\":\"^Extras(/yui/build/yahoo-dom-event/yahoo-dom-event.js);\",\"type\":\"headScript\"},{\"url\":\"^Extras(/yui/build/json/json-min.js);\",\"type\":\"headScript\"},{\"url\":\"^Extras(/yui/build/connection/connection-min.js);\",\"type\":\"headScript\"},{\"url\":\"^Extras(/underscore/underscore-min.js);\",\"type\":\"headScript\"},{\"url\":\"^Extras(/shop/cart.js);\",\"type\":\"bodyScript\"}]'),('
    \r\n

    Add Address

    \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(label help,Shop);
    \r\n \r\n\r\n
    \r\n','Shop/Address',1,1,'XNd7a_g_cTvJVYrVHcx2Mw',1326776037,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n

    Add Address

    \n\n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(label help,Shop);
    \n\n
    ',0,NULL,NULL),('
    \n

    ^International(my purchases,Shop); · ^International(Return to Account,Account);

    \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(order number,Shop);^International(amount,Shop);^International(date,Shop);^International(Status,Shop);
    \">^International(Success,Shop);^International(Failed,Shop);
    \n
    \n','Shop/MyPurchases',1,1,'2gtFt7c0qAFNU3BG_uvNvg',1326776037,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n

    ^International(my purchases,Shop); · ^a(\"Return to Account\");

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(order number,Shop);^International(amount,Shop);^International(date,Shop);^International(Status,Shop);
    \">^International(Success,Shop);^International(Failed,Shop);
    \n
    ',0,NULL,NULL),('

    ^International(thank you message,Shop);

    \n\n\n

    \">^International(order number,Shop);

    \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(date,Shop);
    ^International(amount,Shop);
    ^International(in shop credit used,Shop);
    ^International(taxes,Shop);
    ^International(shipping method,Shop);
    ^International(shipping amount,Shop);
    ^International(shipping address,Shop);
    ^International(payment method,Shop);
    ^International(status message,Shop);
    ^International(payment address,Shop);
    \n
    \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n
    ^International(date,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(shipping address,Shop);^International(order status,Shop);^International(tracking number,Shop);
    \">
    \n ','Shop/EmailReceipt',1,1,'bPz1yk6Y9uwMDMBcmMsSCg',1326776037,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(thank you message,Shop);

    \n

    \">^International(order number,Shop);

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(date,Shop);
    ^International(amount,Shop);
    ^International(in shop credit used,Shop);
    ^International(taxes,Shop);
    ^International(shipping method,Shop);
    ^International(shipping amount,Shop);
    ^International(shipping address,Shop);
    ^International(payment method,Shop);
    ^International(status message,Shop);
    ^International(payment address,Shop);
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(date,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(shipping address,Shop);^International(order status,Shop);^International(tracking number,Shop);
    \">
    ',0,NULL,NULL),('
    \r\n \" id=\"id\">\r\n\r\n \r\n
    \r\n
    \r\n\r\n \r\n

    \r\n
    \r\n\r\n\r\n \r\n
    \r\n
    ^ViewCart;
    \r\n \">^International(continue shopping button,Shop);\r\n \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n \r\n \r\n \r\n \r\n \r\n
    \r\n','Donation',1,1,'vrKXEtluIhbmAS9xmPukDA',1326776037,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\" id=\"id\">\n\n
    \n
    \n\n

    \n
    \n\n
    \n
    ^ViewCart;
    \n\">^International(continue shopping button,Shop);\n\n\n
    \n
    \n
    \n\n\n\n\n\n
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n

    \r\n

    \">^International(continue shopping button,Shop);\r\n\r\n\r\n\r\n\r\n','FlatDiscount',1,1,'63ix2-hU0FchXGIWkG3tow',1326776037,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n\n

    \n

    \">^International(continue shopping button,Shop);\n\n',0,NULL,NULL),('

    \r\n \" id=\"id\">\r\n\r\n \r\n
    \r\n
    \r\n
    \r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n \r\n \r\n
    \r\n \r\n
    \r\n
    \r\n \r\n
    (\">)
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \n','Subscription',1,1,'eqb9sWjFEVq0yHunGV8IGw',1326776037,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\" id=\"id\">\n\n
    \n
    \n
    \n\n

    \n
    \n\n\n\n
    \n\n
    \n
    \n
    (\">)
    \n\n\n\n
    \n
    \n
    ',0,NULL,NULL),('
    \n \n
    default\">\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n
    \n','Shop/AddressBook',1,1,'3womoo7Teyy2YKFa25-MZg',1326776037,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n
    default\">\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    ',0,NULL,NULL),('
    \r\n

    Cart

    \r\n
    \r\n \r\n
    ) ()
    \r\n
    \r\n
    \r\n
    \r\n ^International(total,Shop);: \r\n
    \r\n
    \r\n ^ViewCart;\r\n
    \r\n
    \r\n','Shop/MiniCart',1,1,'EBlxJpZQ9o-8VBOaGQbChA',1326776037,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n

    Cart

    \n
    \n\n
    ) ()
    \n
    \n
    \n
    \n^International(total,Shop);: \n
    \n
    \n^ViewCart;\n
    \n
    ',0,NULL,NULL),('
    \n \n
    \n
    \n\n

    ^International(order number,Shop);

    \n \n \n \n \n\n
      \n
    • ^International(date,Shop);
    • \n
    • ^International(Status,Shop);^International(Success,Shop);^International(Failed,Shop);
    • \n
    • ^International(amount,Shop);
    • \n
    • ^International(in shop credit used,Shop);
    • \n
    • ^International(taxes,Shop);
    • \n
    • ^International(shipping method,Shop);
    • \n
    • ^International(shipping amount,Shop);
    • \n
    • ^International(payment method,Shop);
    • \n
    • ^International(status message,Shop);
    • \n
    \n
    \n \n
    \n
    ^International(payment address,Shop);
    \n
    \n
    \n \n
    \n
    ^International(shipping address,Shop);
    \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(date,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(shipping address,Shop);^International(order status,Shop);^International(tracking number,Shop);
    \n \n \">\n \n \n \n
    \n \n [\">] \n \n
    \n
    \n
    \n','Shop/MyPurchasesDetail',1,1,'g8W53Pd71uHB9pxaXhWf_A',1326776037,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n
    \n
    \n

    ^International(order number,Shop);

    \n\n\n\n
      \n
    • ^International(date,Shop);
    • \n
    • ^International(Status,Shop);^International(Success,Shop);^International(Failed,Shop);
    • \n
    • ^International(amount,Shop);
    • \n
    • ^International(in shop credit used,Shop);
    • \n
    • ^International(taxes,Shop);
    • \n
    • ^International(shipping method,Shop);
    • \n
    • ^International(shipping amount,Shop);
    • \n
    • ^International(payment method,Shop);
    • \n
    • ^International(status message,Shop);
    • \n
    \n
    \n
    \n
    ^International(payment address,Shop);
    \n
    \n
    \n
    \n
    ^International(shipping address,Shop);
    \n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(date,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(shipping address,Shop);^International(order status,Shop);^International(tracking number,Shop);
    \n\">\n
    \n\n[\">]\n\n
    \n
    \n
    ',0,NULL,NULL),('\nBatch: \n\n\n
    \n\n','Operation/RedeemSubscription',1,1,'PBtmpl0000000000000053',1326776037,'WebGUI::Asset::Template::HTMLTemplate',1,'\nBatch: \n\n
    \n',0,NULL,NULL),('
    \n \n
    \n
      \n
    • \n
    \n
    \n
    \n\n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n
    ','Shop/Credentials',1,1,'itransact_credentials1',1326776037,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n
    \n
      \n
    • \n
    \n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    ',0,NULL,NULL),('

    ^International(Enter VAT numbers,TaxDriver_EU);

    \n\n\n

    \n ^International(70,WebGUI);: \n

    \n
    \n\n\n\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n\n \n
    ^International(country,WebGUI);^International(vat number,TaxDriver_EU);^International(Approved for use,TaxDriver_EU);
    ^International(138,WebGUI);^Internation(139,WebGUI);\">^International(576,WebGUI);
    \n
    \n
    \n\n

    \n ^International(Add another VAT number,TaxDriver_EU);:
    \n \n

    ','TaxDriver/EU/User',1,1,'D6cJpRcey35aSkh9Q_FPUQ',1326776037,'WebGUI::Asset::Template::HTMLTemplate',1,'

    Enter VAT numbers

    \n\n

    \nError: \n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    CountryVAT NumberApproved for use
    yesno\">delete
    \n
    \n
    \n

    \nAdd another VAT Number:
    \n\n

    ',0,NULL,NULL),('\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    \n','Shop/Credentials',1,1,'30h5rHxzE_Q0CyI3Gg7EJw',1326776037,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    ',0,NULL,NULL),('\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    \n','Shop/Credentials',1,1,'jysVZeUR0Bx2NfrKs5sulg',1326776037,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    ',0,NULL,NULL),('\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    \n','Shop/Credentials',1,1,'300AozDaeveAjB_KN0ljlQ',1326776037,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    ',0,NULL,NULL),('\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    \n','Shop/Credentials',1,1,'GqnZPB0gLoZmqQzYFaq7bg',1326776037,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    ',0,NULL,NULL),('
    \r\n

    \r\n\r\n\r\n
    \r\n
    \r\n
    ','Shop/selectGateway',1,1,'2GxjjkRuRkdUg_PccRPjpA',1326776038,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n

    \n\n
    \n
    \n
    ',0,NULL,NULL),('
    \n \n
    \n
      \n
    • \n
    \n
    \n
    \n\n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n
    ','Shop/Credentials',1,1,'Rqwgh50A3gGcOKIrdi_kxw',1326776038,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n
    \n
      \n
    • \n
    \n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    ',0,NULL,NULL),('\n

    \n
    \n\n\n \n\n\n\n\n\n\n \n\n\n \n\n\n \n\n\n \n\n
    \n ?type=day\">^International(label day,Asset_Calendar);\n ?type=week\">^International(label week,Asset_Calendar);\n ?type=month\">^International(label month,Asset_Calendar);\n ?type=list\">^International(486,WebGUI);\n \">^International(label search,Asset_Calendar);\n
    \n  \n
    \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n\n
    \n
    ^International(keyword,Asset_Calendar);
    \n
    \n
    \n
    ^International(start date,Asset_Calendar);
    \n
    \n
    \n
    ^International(end date,Asset_Calendar);
    \n
    \n
    \n
    \n \n
    \n\n\n\n\n\n\n\n \n\n\n \n\n\n \n\n\n \n\n
    \n
    \n ^International(search results,Asset_Calendar);\n ^International(page x of x,Asset_Calendar,,);\n
    \n
    \n
    \n \n \n \n
    \n
    \n \n \n \n \n \n
    \n
    \n
    \n \" style=\"padding-left:10px\">\n
    \n
    \n
    \n \n \n \n
    \n
    \n
    ','Calendar/Search',1,1,'CalendarSearch00000001',1326776038,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n?type=day\">^International(label day,Asset_Calendar);\n?type=week\">^International(label week,Asset_Calendar);\n?type=month\">^International(label month,Asset_Calendar);\n?type=list\">^International(486,WebGUI);\n\">^International(label search,Asset_Calendar);\n
    \n \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    ^International(keyword,Asset_Calendar);
    \n
    \n
    \n
    ^International(start date,Asset_Calendar);
    \n
    \n
    \n
    ^International(end date,Asset_Calendar);
    \n
    \n
    \n
    \n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    \n^International(search results,Asset_Calendar);\n^International(page x of x,Asset_Calendar,,);\n
    \n
    \n
    \n\n\n\n
    \n
    \n\n\n\n\n\n
    \n
    \n
    \n\" style=\"padding-left:10px\">\n
    \n
    \n
    \n\n\n\n
    \n
    \n
    ',0,NULL,NULL); ALTER TABLE `template` ENABLE KEYS; ALTER TABLE `userProfileCategory` DISABLE KEYS; INSERT INTO `userProfileCategory` VALUES ('1','WebGUI::International::get(449,\"WebGUI\");','WebGUI::International::get(\"misc info short\",\"WebGUI\");',6,1,1,1),('2','WebGUI::International::get(440,\"WebGUI\");','WebGUI::International::get(\"contact info short\",\"WebGUI\");',2,1,1,1),('3','WebGUI::International::get(439,\"WebGUI\");','WebGUI::International::get(\"personal info short\",\"WebGUI\");',1,1,1,1),('4','WebGUI::International::get(445,\"WebGUI\");','WebGUI::International::get(\"preferences short\",\"WebGUI\");',7,0,1,1),('5','WebGUI::International::get(443,\"WebGUI\");','WebGUI::International::get(\"home info short\",\"WebGUI\");',3,1,1,1),('6','WebGUI::International::get(442,\"WebGUI\");','WebGUI::International::get(\"work info short\",\"WebGUI\");',4,1,1,1),('7','WebGUI::International::get(444,\"WebGUI\");','WebGUI::International::get(\"demographic info short\",\"WebGUI\");',5,1,1,1); @@ -2702,9 +2712,9 @@ ALTER TABLE `vendor` DISABLE KEYS; INSERT INTO `vendor` VALUES ('defaultvendor000000000','2008-06-12 19:43:10','Default Vendor','3',NULL,NULL,NULL,NULL); ALTER TABLE `vendor` ENABLE KEYS; ALTER TABLE `wobject` DISABLE KEYS; -INSERT INTO `wobject` VALUES (0,'This is the latest news from Plain Black and WebGUI pulled directly from the site every hour.','fK-HMSboA3uu0c1KYkYspA','stevestyle000000000003','PBtmpl0000000000000111',1124395696,'stevestyle000000000003'),(1,NULL,'PBasset000000000000002','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'7-0-style0000000000026','PBtmpl0000000000000060','',1147642499,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000001','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000014','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000015','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000016','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000017','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000018','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000019','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000020','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000021','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000002','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000006','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000007','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000008','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000009','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000010','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000011','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000012','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000013','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'7-0-style0000000000070','PBtmpl0000000000000060','PBtmpl0000000000000060',1147642510,'PBtmpl0000000000000060'),(1,NULL,'7-0-style0000000000001','PBtmpl0000000000000060','',1147642492,'PBtmpl0000000000000060'),(1,NULL,'7-0-style0000000000031','PBtmpl0000000000000060','',1147642500,'PBtmpl0000000000000060'),(0,NULL,'7-0-style0000000000025','PBtmpl0000000000000060','',1147642498,'PBtmpl0000000000000060'),(1,NULL,'PBasset000000000000003','PBtmpl0000000000000060','PBtmpl0000000000000111',1147642437,'PBtmpl0000000000000060'),(1,NULL,'nbSrhXZQuxIjhWFaFPSuVA','PBtmpl0000000000000060','',1147642465,'PBtmpl0000000000000060'),(1,NULL,'N13SD1Fpqk00UgBt1Z8ivQ','PBtmpl0000000000000060','',1147642470,'PBtmpl0000000000000060'),(1,NULL,'-WM2dt0ZGpDasuL2wWocxg','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803056,'PBtmpl0000000000000060'),(1,NULL,'3uuBf8cYuj1sew2OJXl9tg','PBtmpl0000000000000060','',1147642470,'PBtmpl0000000000000060'),(1,NULL,'cj2y4papTVGZRFdwTI-_fw','PBtmpl0000000000000060','',1147642475,'PBtmpl0000000000000060'),(1,NULL,'bBzO4CWjqU_ile3gf5Iypw','PBtmpl0000000000000060','',1147642475,'PBtmpl0000000000000060'),(1,NULL,'Da6KWn805L4B5e4HFgQRQA','PBtmpl0000000000000060','',1147642479,'PBtmpl0000000000000060'),(1,NULL,'bbiA9Zq5Gy2oCFBlILO3QA','PBtmpl0000000000000060','',1147642480,'PBtmpl0000000000000060'),(1,NULL,'Efe2W0UgrSRDltNJ87jlfg','PBtmpl0000000000000060','',1147642480,'PBtmpl0000000000000060'),(1,NULL,'9wKWdum0_8z-OhhquWLtSQ','PBtmpl0000000000000060','',1147642483,'PBtmpl0000000000000060'),(1,NULL,'CSN-ZON7Uwv8kxf3F1fh5Q','PBtmpl0000000000000060','',1147642484,'PBtmpl0000000000000060'),(1,NULL,'TCtybxdqmdwdvRn555zpCQ','PBtmpl0000000000000060','',1147642484,'PBtmpl0000000000000060'),(1,NULL,'pbproto000000000000002','PBtmpl0000000000000060','',1163019036,'PBtmpl0000000000000060'),(1,NULL,'tempspace0000000000000','PBtmpl0000000000000060','PBtmpl0000000000000060',1185754574,'PBtmpl0000000000000060'),(1,NULL,'Tsg7xmPYv782j6IVz7yHFg','PBtmpl0000000000000060','PBtmpl0000000000000111',1213244777,'PBtmpl0000000000000060'),(1,NULL,'TYo2Bwl7aafzTtdHlS-arQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1211664878,'PBtmpl0000000000000060'),(1,NULL,'6tK47xsaIH-ELw0IBo0uRQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1210777115,'PBtmpl0000000000000060'),(1,NULL,'gbnRhcWNk1iQe32LFEB5eQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1212086102,'PBtmpl0000000000000060'),(1,NULL,'6D4Z-oruXPS6OlH_Kx8pBg','PBtmpl0000000000000060','PBtmpl0000000000000111',1209509389,'PBtmpl0000000000000060'),(1,NULL,'C5fPz-Wg85vkYRvCdl-Xqw','PBtmpl0000000000000060','PBtmpl0000000000000111',1212160830,'PBtmpl0000000000000060'),(1,NULL,'jnYdqDkUR8x7Pv2eGR1qTA','PBtmpl0000000000000060','PBtmpl0000000000000111',1216250666,'PBtmpl0000000000000060'),(1,NULL,'2OcUWHVsu_L1sDFzIMWYqw','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803070,'PBtmpl0000000000000060'),(1,NULL,'zyWi26q9na-iiZqL4yedog','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803114,'PBtmpl0000000000000060'),(1,NULL,'tBL7BWiQRZFed2Y-Zjo9tQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803200,'PBtmpl0000000000000060'),(1,NULL,'GdkQpvjRtJqtzOUbwIIQRA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803205,'PBtmpl0000000000000060'),(1,NULL,'tnc5iYyynX2hfdEs9D3P8w','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803213,'PBtmpl0000000000000060'),(1,NULL,'vgXdBcFTqU7h4wBG1ewdBw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803217,'PBtmpl0000000000000060'),(1,NULL,'hcFlqnXlsmC1ujN6Id0F0A','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803234,'PBtmpl0000000000000060'),(1,NULL,'eRJR52fvlaxfetv3DQkQYw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803238,'PBtmpl0000000000000060'),(1,NULL,'5HIDHq5lAWHV5gpYGS0zLg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803244,'PBtmpl0000000000000060'),(1,NULL,'rYEFwXXo0tkGhQTcbDibvg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803249,'PBtmpl0000000000000060'),(1,NULL,'V3l5S5TtI7wMm1WpIMhvOA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803253,'PBtmpl0000000000000060'),(1,NULL,'nqNbSUAhk9Vd1zda2SCz9A','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803258,'PBtmpl0000000000000060'),(1,NULL,'y8XkRdxIperLKkJ3bL5sSQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803264,'PBtmpl0000000000000060'),(1,NULL,'vTymIDYL2YqEh6PV50F7ew','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803302,'PBtmpl0000000000000060'),(1,NULL,'lo1ac3BsoJx3ijGQ3gR-bQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803309,'PBtmpl0000000000000060'),(1,NULL,'huASapWvFDzqwOSbcN-JFQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803313,'PBtmpl0000000000000060'),(1,NULL,'9A-mg2gwWmaYi9o_1C7ArQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803338,'PBtmpl0000000000000060'),(1,NULL,'yD1SMHelczihzjEmx6eXBA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803342,'PBtmpl0000000000000060'),(1,NULL,'pV7GnZdpjR3XpZaSINIoeg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803347,'PBtmpl0000000000000060'),(1,NULL,'71e17KeduiXgODLMlUxiow','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803352,'PBtmpl0000000000000060'),(1,NULL,'Ik9HHky10DIyFTKehUD1dw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803478,'PBtmpl0000000000000060'),(1,NULL,'NywJYmGWe1f6EBXJnWg9Xg','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803638,'PBtmpl0000000000000060'),(1,NULL,'AgyFhx3eXlfZXNp2MkrsiQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803665,'PBtmpl0000000000000060'),(1,NULL,'F7MAQ-cpuvQ1KuC7J4P5zQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803673,'PBtmpl0000000000000060'),(1,NULL,'BmLaN4rmAANkCglXUViEbg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803871,'PBtmpl0000000000000060'),(1,NULL,'X7DrzUcj8pOKFa_6k9D5iw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222804045,'PBtmpl0000000000000060'),(1,NULL,'UL-ItI4L1Z6-WSuhuXVvsQ','stevestyle000000000003','PBtmpl0000000000000111',1225139673,'stevestyle000000000003'),(1,NULL,'7-0-style0000000000049','PBtmpl0000000000000060','PBtmpl0000000000000060',1224117144,'PBtmpl0000000000000060'),(0,NULL,'jVKLVakT_iA2010_oEuAwg','PBtmpl0000000000000060','PBtmpl0000000000000060',1224116526,'PBtmpl0000000000000060'),(1,'

     

    ','QpmlAiYZz6VsKBM-_0wXaw','stevestyle000000000003','PBtmpl0000000000000111',1224616691,'stevestyle000000000003'),(1,NULL,'HPDOcsj4gBme8D4svHodBw','PBtmpl0000000000000060','PBtmpl0000000000000111',1225404573,'PBtmpl0000000000000060'),(1,NULL,'IZkrow_zwvbf4FCH-taVTQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1226011853,'PBtmpl0000000000000060'),(1,NULL,'K0YjxqOqr7RupSo6sIdcAg','PBtmpl0000000000000060','PBtmpl0000000000000111',1227074310,'PBtmpl0000000000000060'),(1,NULL,'_ilRXNR3s8F2vGJ_k9ePcg','PBtmpl0000000000000060','PBtmpl0000000000000111',1226643205,'PBtmpl0000000000000060'),(1,NULL,'qaVcU0FFzzraMX_bzELqzw','PBtmpl0000000000000060','PBtmpl0000000000000111',1227074362,'PBtmpl0000000000000060'),(1,NULL,'QHn6T9rU7KsnS3Y70KCNTg','PBtmpl0000000000000060','PBtmpl0000000000000111',1233173545,'PBtmpl0000000000000060'),(1,NULL,'HW-sPoDDZR8wBZ0YgFgPtg','PBtmpl0000000000000060','PBtmpl0000000000000111',1227634350,'PBtmpl0000000000000060'),(1,NULL,'AOjPG2NHgfL9Cq6dDJ7mew','PBtmpl0000000000000060','PBtmpl0000000000000111',1236960881,'PBtmpl0000000000000060'),(1,NULL,'jmlI9IK-lV8n2WMYmmPhAA','PBtmpl0000000000000060','PBtmpl0000000000000111',1238106173,'PBtmpl0000000000000060'),(1,NULL,'6uvSLY-ak_w4p_wS8q33cA','PBtmpl0000000000000060','PBtmpl0000000000000111',1239213092,'PBtmpl0000000000000060'),(1,NULL,'GaBAW-2iVhLMJaZQzVLE5A','stevestyle000000000003','PBtmpl0000000000000111',1240103565,'stevestyle000000000003'),(1,'

    Templates for the Friend Manager

    ','lo1rpxn3t8YPyKGers5eQg','PBtmpl0000000000000060','PBtmpl0000000000000111',1238625621,'PBtmpl0000000000000060'),(1,NULL,'aNNC62qLAS6TB-0_MCYjsw','PBtmpl0000000000000060','PBtmpl0000000000000060',1246969327,'PBtmpl0000000000000060'),(1,NULL,'BFfNj5wA9bDw8H3cnr8pTw','PBtmpl0000000000000060','PBtmpl0000000000000060',1247046273,'PBtmpl0000000000000060'),(1,NULL,'f_tn9FfoSfKWX43F83v_3w','PBtmpl0000000000000060','PBtmpl0000000000000060',1247053009,'PBtmpl0000000000000060'),(1,NULL,'oGfxez5sksyB_PcaAsEm_Q','PBtmpl0000000000000060','PBtmpl0000000000000060',1247053097,'PBtmpl0000000000000060'),(1,NULL,'tPagC0AQErZXjLFZQ6OI1g','PBtmpl0000000000000060','PBtmpl0000000000000060',1246966459,'PBtmpl0000000000000060'),(1,NULL,'GYaFxnMu9UsEG8oanwB6TA','PBtmpl0000000000000060','PBtmpl0000000000000060',1246965871,'PBtmpl0000000000000060'),(1,NULL,'VZK3CRgiMb8r4dBjUmCTgQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1247046242,'PBtmpl0000000000000060'),(1,NULL,'tXwf1zaOXTvsqPn6yu-GSw','PBtmpl0000000000000060','PBtmpl0000000000000060',1246965607,'PBtmpl0000000000000060'),(1,NULL,'5bnNzteN7w3NnK9mF4XiCg','PBtmpl0000000000000060','PBtmpl0000000000000060',1250243000,'PBtmpl0000000000000060'),(1,NULL,'RSAMkc6WQmfRE3TOr1_3Mw','PBtmpl0000000000000060','PBtmpl0000000000000111',1250243000,'PBtmpl0000000000000060'),(1,NULL,'fowHfgOkJtAxdst7rugTog','PBtmpl0000000000000060','PBtmpl0000000000000111',1252595993,'PBtmpl0000000000000060'),(1,NULL,'TvOZs8U1kRXLtwtmyW75pg','PBtmpl0000000000000060','PBtmpl0000000000000060',1256092368,'PBtmpl0000000000000060'),(1,NULL,'4qh0kIsFUdd4Ox-Iu1JZgg','PBtmpl0000000000000060','PBtmpl0000000000000111',1257311886,'PBtmpl0000000000000060'),(1,'

     

    ','-K8Hj45mbelljN9-0CXZxg','PBtmpl0000000000000060','PBtmpl0000000000000060',1257311887,'PBtmpl0000000000000060'),(1,NULL,'P_4uog81vSUK4KxuW_4GUA','PBtmpl0000000000000060','PBtmpl0000000000000111',1258524916,'PBtmpl0000000000000060'),(0,NULL,'t87D1138NhPHhA23-hozBA','PBtmpl0000000000000060','PBtmpl0000000000000060',1273032716,'PBtmpl0000000000000060'),(0,NULL,'QtBumey5ffc-xffRp1-7Aw','PBtmpl0000000000000060','PBtmpl0000000000000060',1273032716,'PBtmpl0000000000000060'),(1,NULL,'x_hiUi1XZloBvV47Obnu8Q','OiJNwP1gAlcva8_yOtL4gA','PBtmpl0000000000000111',1273032718,'PBtmpl0000000000000060'),(0,NULL,'UUwEL6hLEPdrnkZnKRzFYQ','OiJNwP1gAlcva8_yOtL4gA','PBtmpl0000000000000111',1273032718,'PBtmpl0000000000000060'),(1,NULL,'Q4uX_C557arTp6D_jwB1jQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1273032720,'PBtmpl0000000000000060'),(1,NULL,'GNOAsX98vCsl0JRwfwL-gg','PBtmpl0000000000000060','PBtmpl0000000000000060',1277868921,'PBtmpl0000000000000060'),(1,NULL,'_iHetEvMQUOoxS-T2CM0sQ','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1273172789,'stevestyle000000000003'),(0,'

    \nCongratulations on successfully installing the WebGUI Content Engine®. If you used the Site Starter to select a set of default pages, you will see those pages in the site navigation. You will also notice that a number of additional pages appear, such as this page. These are default pages added for your convenience to help you get started with WebGUI and find the resources you need. Feel free to remove these extra pages whenever you are ready.

    \n

    To get started managing content, download the PDF document below. This document provides a basic introduction to the WebGUI user interface. 

    \n

    WebGUI Basics (PDF)

    \n

    Once you have read this document, you may want to head over to the Documentation section where you can find more WebGUI resources.

    ','bX5rYxb6tZ9docY6sUhBlw','Qk24uXao2yowR6zxbVJ0xA','stevestyle000000000003',1278013772,'stevestyle000000000003'),(1,'

    Plain Black® created the WebGUI Content Engine® and is here to answer \nyour questions and provide you with services to make sure your WebGUI \nimplementation is entirely successful. We bend over backwards to make \nsure you\'re a success. Contact us today to \nsee how we can help you.

    ','8Bb8gu-me2mhL3ljFyiWLg','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1271359194,'stevestyle000000000003'),(1,'

    Plain Black provides support packages to fit any budget or need. Start out with online support which costs only $500 per year, or work with Plain Black to build a custom support package tailored to your specific needs. No matter what level of support you purchase, you will get personalized and friendly service in a timely manner.

    ','ix1p0AbwKAz8QWB-T-HHfg','Qk24uXao2yowR6zxbVJ0xA','stevestyle000000000003',1271359087,'stevestyle000000000003'),(1,'

    Plain Black\'s professionally trained WebGUI experts can handle the task\nof hosting your web site, intranet, or extranet. Let us deal with upgrades, security, and server management so you focus on building your WebGUI site, which is where your time and expertise should be spent. And when you sign up with hosting, online support is included!

    ','iCYOjohB9SKvAPr6bXElKA','Qk24uXao2yowR6zxbVJ0xA','stevestyle000000000003',1271445525,'stevestyle000000000003'),(1,'

    WebGUI\'s robust API allows for easy customization. Plain Black\'s team of developers can create any features you need for your site. We\'ve built hundreds of custom applications for people. From simple macros, to custom single sign on systems, to applications that will manage your entire company, our team will leverage the power of WebGUI to your advantage.

    ','4Yfz9hqBqM8OYMGuQK8oLw','Qk24uXao2yowR6zxbVJ0xA','stevestyle000000000003',1271352537,'stevestyle000000000003'),(1,'

    Branding and visual appeal are powerful marketing tools. Don\'t let your site become a wallflower. Plain Black\'s professional design team can create a custom design to make your site stand out. Our team is fast, easy to work with, and can even migrate your existing content into your new WebGUI site.

    ','Wl8WZ43g2rK5AYr9o4zY7w','Qk24uXao2yowR6zxbVJ0xA','stevestyle000000000003',1271445539,'stevestyle000000000003'),(1,'

    Let our team of professional translators bring your site to new customers by translating your content into additional languages. Our translation services are never machine automated. They\'re always done by professional translators that have years of experience reading, writing, and speaking many languages.

    ','LBuiKzg2mWwmOPS9AgV3bg','Qk24uXao2yowR6zxbVJ0xA','stevestyle000000000003',1271348789,'stevestyle000000000003'),(1,'

    Now that you have a brilliant WebGUI site, you need to get people to visit it. We can help there too. Our marketing specialists can work with you to develop and execute the right combination of search engine placement, advertising buys, and affilliate programs to ensure your site gets the traffic it needs.

    ','jTNggl7AoVSUc_ZzrvuCmw','Qk24uXao2yowR6zxbVJ0xA','stevestyle000000000003',1271348789,'stevestyle000000000003'),(1,'

    With any large system, having the right documentation to get you started is mandatory. The good news is that WebGUI has abundant documentation.

    ','mTOiwwk3q4k9g5-XykXhPA','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1271349647,'stevestyle000000000003'),(1,'

    The WebGUI project community is a diverse and talented group. If you \nwould like to contribute back to the project there are many ways to \nbecome involved.

    ','2TqQc4OISddWCZmRY1_m8A','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1271357565,'stevestyle000000000003'),(1,'

    You can find members of the community on the #webgui chat channel on the Freenode IRC network. If you\'re not \nfamiliar with IRC, it\'s essentially like a chat room. A few things you\'ll need to know:

    \n
      \n
    \n
      \n
    • You need an IRC client program. There are many available that \ncan be downloaded free of charge.
    • \n
    • The IRC network we use is Freenode
    • \n
    • Our channel is #webgui.
    • \n
    • Channel operators have an @ next to their name. All channel operators in #webgui are Plain Black employees.
    • \n
    • Someone with a + next to their name is a recognized contributor in the WebGUI community. People who have been recognized as one of the People Behind WebGUI are often given this designation.
    • \n
    \n
      \n\n\n
    \n

    If you\'re looking for a mentor, recognized contributors are a good place\n to start.

    ','k2Qj03FrAOXYra8kDJYYXw','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1271357513,'PBtmpl0000000000000060'),(1,'

    An annual event, this is the one time a year when WebGUI users and Plain\n Black\'s staff come together to do all things WebGUI.  This is by far \nthe best way to get involved with the community as nothing can replace \nface to face interaction and mentoring. The conference is usually held \nin the fall of each year and more information on attending can be found \non the WebGUI Users \nConference website as details become available.

    ','ksSfkZdsr0uC62NwIk6hFQ','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1271356973,'PBtmpl0000000000000060'),(1,'

    WebGUI \nForums are available for WebGUI related\n discussion and community support. Bounce around ideas, discuss \nimportant issues, and ask community members for help and advice. WebGUI \nForums are broken up into:

    \n','nWxS5jnA3o3DgPEwBeR7yQ','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1271357239,'PBtmpl0000000000000060'),(0,NULL,'x3OFY6OJh_qsXkZfPwug4A','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1271348790,'stevestyle000000000003'),(0,NULL,'pJd5TLAjfWMVXD6sCRLwUg','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1271348790,'stevestyle000000000003'),(0,'

    The WebGUI Content Engine® is a powerful, easy to use web application framework and content management system. WebGUI contains dozens of built-in features, and allows for full customization through its rich API. It\'s easy enough for the average business user to use, but powerful enough for any large enterprise.

    \n

    WebGUI serves thousands of small and large businesses, schools, universities, governments, associations, churches, projects and communities throughout the world. For examples of who is using WebGUI, visit the WebGUI Sightings page. Shouldn\'t your site be on this list?

    \n

    If you\'re new to WebGUI, visit the Getting Started section. Once you feel comfortable, explore some of the professional services available for your new WebGUI site. No matter what level you\'re at, tell your friends about WebGUI.

    ','OhdaFLE7sXOzo_SIP2ZUgA','Qk24uXao2yowR6zxbVJ0xA','stevestyle000000000003',1271445348,'stevestyle000000000003'),(1,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n

    Rich User Interface

    \n
    \n

    Powerful API

    \n
    \n

    WebGUI has a rich user experience that allows users to place their \ncontent\nthrough a drag-n-drop interface; helps users pick dates, colors, and\nmore; and has a highly customizable rich editor to allow users to \nquickly and easily format\ncontent.

    \n
    \n

    WebGUI allows developers to quickly plug-in new functionality to\nget the most from a site. In addition, WebGUI\'s standardized plug-in\npoints maintain the upgrade path even with customizations.

    \n
    \n

    Short Friendly URLs

    \n
    \n

    Internationalization

    \n
    \n

    Never worry about ugly numeric \nID\'s or other things in URL\'s that\nmake it hard for search engines and people to use a site.

    \n
    \n

    Users can work in an interface in their native language, and content can\n be published in as many languages as necessary.

    \n
    \n

    Personalization

    \n
    \n

    Easy To Install

    \n
    \n

    Users see their own view of the site through dynamically\ngenerated navigation and content. In addition, content can be displayed \nbased upon users\' viewing habits.

    \n
    \n

    With the use of the WebGUI Runtime Environment (Unix, Mac OS X, Linux, \nBSD) and VMWare Appliance (Windows) setup takes minutes rather than\nhours.

    \n
    ','IWFxZDyGhQ3-SLZhELa3qw','Qk24uXao2yowR6zxbVJ0xA','stevestyle000000000003',1277737686,'stevestyle000000000003'),(1,NULL,'LdiozcIUciWuvt3Z-na5Ww','PBtmpl0000000000000060','PBtmpl0000000000000060',1281501162,'PBtmpl0000000000000060'),(1,NULL,'Vch1Ww7G_JpBhOhXX07RDg','PBtmpl0000000000000060','PBtmpl0000000000000111',1281501163,'PBtmpl0000000000000060'),(1,NULL,'AssetReportFolder00001','PBtmpl0000000000000060','PBtmpl0000000000000060',1281501163,'PBtmpl0000000000000060'),(1,'

    You don\'t have to be a developer to become a project contributor. Examples of how you can contribute include:\n

    \n
      \n
    • Translators - Visit i18n.webgui.org\n and either help translate a few items in an existing language, or \ncreate a new translation.

    • \n
    • Graphic Designers - Create WebGUI style themes, icons, or fix UI\n bugs. You can contribute your items to WebGUI\'s Addons and Plugins area for others to download and use.

    • \n
    • Usability Experts - Help make WebGUI more accessable and \neasier to use by submitting RFEs. Even better, submit an RFE that\'s ready to implement by including the code!

    • \n
    • Doc Writers - Write documents in WebGUI\'s wiki, help\n out on the boards, improve WebGUI\'s built in documentation.

    • \n
    • Testers - Validate WebGUI\'s features against its \ndocumentation, search for errors, and report bugs.

    • \n
    • Test writers - If you have some Perl abilities, you can help \ndevelop unit tests to make sure the WebGUI API is behaving as \ndocumented.

    • \n
    • Developers - Write a new feature for WebGUI like a macro, \nasset, wobject, auth module or workflow activity and contribute it to \nthe Addons and Plugins. If you\'re interested in developing for WebGUI, be sure to check out the Development Best Practices wiki article.

    • \n
    • Bug Fixers - Cruise the bug list and submit patches to \ncorrect the problem.

    • \n
    • Core Developers - Becoming a core developer is a privilege. To earn it, you have to demonstrate through bug fixes and/or \ncontributions that you can make sound programming decisions without the \nneed for someone to scrutinize everything you check in. WebGUI is a \nvery large and complex application so getting to this level can take \nsome time. Core developers are developers with commit privileges to the\n subversion repository.

    • \n
    • Advocate - Spread the word about WebGUI, tell people about \nhow you use it and how it\'s helped you.Encourage people to try it out.

    • \n
    • Marketing and Promotion - If you have a talent for marketing,\n advertising, or promotion you can be a super advocate! Have a marketing\n idea? Contact tavis AT plainblack DOT com.  Make a WebGUI banner or \nprint ad and contribute it!  Maybe you have a design for a cool \nwallpaper or t-shirt, anything to get the word out.
    • \n
    ','l0guT3vTR3B8cL6vtP-g3A','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1285124369,'PBtmpl0000000000000060'),(1,NULL,'N7uMnnicbyTEulcuRi1sSg','PBtmpl0000000000000060','PBtmpl0000000000000111',1283900195,'PBtmpl0000000000000060'),(1,'

     

    ','gI_TxK-5S4DNuv42wpImmw','PBtmpl0000000000000060','PBtmpl0000000000000111',1285124155,'PBtmpl0000000000000060'),(1,NULL,'kaPRSaf8UKiskiGEgJgLAw','PBtmpl0000000000000060','PBtmpl0000000000000111',1285124155,'2p9ygcqH_Z11qOUvQ1uBvw'),(1,NULL,'RrV4aAPnn4dM0ZcU3OXnlw','PBtmpl0000000000000060','PBtmpl0000000000000060',1286336607,'PBtmpl0000000000000060'),(0,'

    \nTo begin managing content, you should log in and click the Turn Admin On! link. The default username is \"admin\" and the default password is \"123qwe\", but you probably customized both of those when you visited this site for the very first time.\n

    \n

    \nNow that you\'re logged in, we recommend that you add a new user for yourself with admin privileges just in case you forget the login information for your primary admin account. Don\'t worry if you lock yourself out, you can always contact Plain Black® support to get instructions to get back in.\n

    \n

    NOTE: If you appear to get logged out while moving between pages, this is most likely your browser displaying a cached version of the page. Click on your browser\'s refresh button to correct the problem.

    \n

     

    \n

    \nFor more information about services related to WebGUI click here.\n

    \n

    \nEnjoy your new WebGUI site!\n

    ','NK8bqlwVRILJknqeCDPBHg','Qk24uXao2yowR6zxbVJ0xA','stevestyle000000000003',1285796040,'stevestyle000000000003'),(1,'

    Plain Black has created a line of commercial books which total over 1500 pages of detailed documentation about WebGUI. Both black and white and full color editions of these books are available. Visit the book store today to stock your WebGUI library. Other than hands on training, there is no better way to hone your WebGUI skills. No matter what your need, Plain Black has created a book that\'s right for you and is creating new books each year.

    \n

    In the fall of 2010, Plain Black announced that these books will be converted into free wikis. You can now access all WebGUI user guides for free on the WebGUI User Guides page on www.webgui.org.

    \n

    *These books are available for WebGUI version 7.7 and earlier. For later documentation, see the free resources available on the WebGUI project website.

    ','diZvW4bSgZWwyyGP3qXi1g','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1285610019,'stevestyle000000000003'),(1,NULL,'68sKwDgf9cGH58-NZcU4lg','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1286336676,'stevestyle000000000003'),(0,NULL,'Am1J-meNBmhqFfEIWy6Gag','OiJNwP1gAlcva8_yOtL4gA','PBtmpl0000000000000111',1287545014,'PBtmpl0000000000000060'),(1,NULL,'1z9J1O08n_7gVVlBwSRBJQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1287545014,'PBtmpl0000000000000060'),(1,NULL,'xSmREZO3GNzK3M5PaueOOQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1287545014,'PBtmpl0000000000000060'),(1,NULL,'0bx-xoL8TSXXubFuqKAoVQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1287545014,'PBtmpl0000000000000060'),(1,NULL,'taX2UYkFF21ALpFZY2rhMw','PBtmpl0000000000000060','PBtmpl0000000000000060',1287545014,'PBtmpl0000000000000060'),(1,NULL,'K0q_N885Httqev1VCqUWxg','PBtmpl0000000000000060','PBtmpl0000000000000060',1287545014,'PBtmpl0000000000000060'),(1,NULL,'fq1ZkYhH24R5tb96kuT10Q','PBtmpl0000000000000060','PBtmpl0000000000000060',1287545014,'PBtmpl0000000000000060'),(1,NULL,'oHk7fAFhEEkB7dHzi0QOQA','PBtmpl0000000000000060','PBtmpl0000000000000060',1287545014,'PBtmpl0000000000000060'),(1,NULL,'9M-lrlPQWeeNWfvnDnK_Xg','PBtmpl0000000000000060','PBtmpl0000000000000060',1287545014,'PBtmpl0000000000000060'),(1,NULL,'_gBYAdTcbkiyamnqi2Xskg','PBtmpl0000000000000060','PBtmpl0000000000000060',1287545014,'PBtmpl0000000000000060'),(1,NULL,'0iMMbGN3BevuCBHjjLiQNA','PBtmpl0000000000000060','PBtmpl0000000000000111',1287545015,'PBtmpl0000000000000060'),(1,NULL,'6A4yIjWwJfIE0Ep-I0jutg','PBtmpl0000000000000060','PBtmpl0000000000000111',1287545015,'PBtmpl0000000000000060'),(1,'

    Folder for holding Workflow Activity templates.

    ','_cD6DLM_Fs5IlrLeWUjrjg','PBtmpl0000000000000060','PBtmpl0000000000000111',1287545015,'PBtmpl0000000000000060'),(1,NULL,'f2EktltCvwQpl_3-B1yR7g','PBtmpl0000000000000060','PBtmpl0000000000000111',1288748251,'PBtmpl0000000000000060'),(1,NULL,'S1A9iAwKcQQ6P20uTqw-Ew','PBtmpl0000000000000060','PBtmpl0000000000000060',1300763664,'PBtmpl0000000000000060'),(1,'

    There are hundreds of pages of free documentation available for WebGUI, provided by both Plain Black and the community at large. The following list is by no means comprehensive, but it should get you started in the right direction.

    \n

     

    \n
      \n
    • Primer - A downloadable PDF that shows you the basics of publishing content in WebGUI.
    • \n
    • WebGUI User Guides: all commercial user guides previously published by Plain Black are in the process of being converted into wikis. You can find these wikis on the WebGUI User Guides page of www.webgui.org. This is an ongoing process; until all books have been converted, remaining books are being made available as free PDF downloads.
    • \n
    • Wiki - Hundreds of pages of WebGUI community contributed content featuring a variety of tutorials.
    • \n
    • Worldwide - A collection of WebGUI related web sites from all over the world that have documentation and other resources for WebGUI.
    • \n
    • API Docs - The documentation of all of the WebGUI source code.
    • \n
    • Template Help - The documentation of all of WebGUI\'s template variables.
    • \n
    ','j_1qEqM6iLfQLiR6VKy0aA','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1299872071,'stevestyle000000000003'),(1,'

    Templates and images for the \"Underground\" style from StyleShout.com

    ','CQp-RFA2pMh5lFSggPPPYg','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1301973995,'PBtmpl0000000000000060'),(1,NULL,'_Mi_NTd3x8UB96LWezWHnw','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1301973995,'PBtmpl0000000000000060'),(1,NULL,'g3JH1PRq6m6Bj_PnGpcrSQ','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1301973996,'PBtmpl0000000000000060'),(1,'

    This folder holds prototype WebGUI assets with the correct templates pre-selected.

    ','G0hl4VilbFKipToyxKqFrg','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1301973997,'PBtmpl0000000000000060'),(1,NULL,'GWU2qZqe6yEuAKG-5HtBdg','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1301973997,'PBtmpl0000000000000060'),(1,NULL,'AsfpsOpsGzZCb9m7MyxPuw','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1301973997,'PBtmpl0000000000000060'),(1,NULL,'jmqLxnoWb6p92Cr12lf1hw','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1301973997,'PBtmpl0000000000000060'),(1,NULL,'8E2UOnj_XPEghTj7nfVM0g','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1301973997,'PBtmpl0000000000000060'),(1,NULL,'1qFjOEiILIwr1xB5_ebppQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1301973998,'PBtmpl0000000000000060'),(1,NULL,'xD76UfQ_JnSgTLBNvytcpQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1301973998,'PBtmpl0000000000000060'),(0,NULL,'h0bOzz7WvdaVZXsjpwtkww','KKt0VB_eoQxw9xEsHsAhag','PBtmpl0000000000000111',1301973998,'PBtmpl0000000000000060'),(1,NULL,'qFOfW1sKyOTnGNcP6BXbwg','6D98D8TIuhExiSoo2U1eqw','PBtmpl0000000000000111',1301973999,'PBtmpl0000000000000060'),(1,NULL,'G5DgNizuG3jXkjPp6UaGrA','PBtmpl0000000000000060','PBtmpl0000000000000060',1301973999,'PBtmpl0000000000000060'),(1,NULL,'brxm_faNdZX5tRo3p50g3g','PBtmpl0000000000000060','PBtmpl0000000000000111',1304392055,'PBtmpl0000000000000060'),(1,NULL,'n-Vr_wgxOkwiHGt1nJto9w','OiJNwP1gAlcva8_yOtL4gA','PBtmpl0000000000000111',1309236774,'PBtmpl0000000000000060'),(1,NULL,'aNmgn0cd6tldmC1FpW4KbA','PBtmpl0000000000000060','PBtmpl0000000000000060',1313542960,'PBtmpl0000000000000060'),(1,NULL,'jEz8iTGNWEt2I05IhVV19Q','PBtmpl0000000000000060','PBtmpl0000000000000060',1313542961,'PBtmpl0000000000000060'); +INSERT INTO `wobject` VALUES (0,'This is the latest news from Plain Black and WebGUI pulled directly from the site every hour.','fK-HMSboA3uu0c1KYkYspA','stevestyle000000000003','PBtmpl0000000000000111',1124395696,'stevestyle000000000003'),(1,NULL,'PBasset000000000000002','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'7-0-style0000000000026','PBtmpl0000000000000060','',1147642499,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000001','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000014','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000015','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000016','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000017','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000018','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000019','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000020','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000021','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000002','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000006','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000007','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000008','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000009','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000010','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000011','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000012','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000013','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'7-0-style0000000000070','PBtmpl0000000000000060','PBtmpl0000000000000060',1147642510,'PBtmpl0000000000000060'),(1,NULL,'7-0-style0000000000001','PBtmpl0000000000000060','',1147642492,'PBtmpl0000000000000060'),(1,NULL,'7-0-style0000000000031','PBtmpl0000000000000060','',1147642500,'PBtmpl0000000000000060'),(0,NULL,'7-0-style0000000000025','PBtmpl0000000000000060','',1147642498,'PBtmpl0000000000000060'),(1,NULL,'PBasset000000000000003','PBtmpl0000000000000060','PBtmpl0000000000000111',1147642437,'PBtmpl0000000000000060'),(1,NULL,'nbSrhXZQuxIjhWFaFPSuVA','PBtmpl0000000000000060','',1147642465,'PBtmpl0000000000000060'),(1,NULL,'N13SD1Fpqk00UgBt1Z8ivQ','PBtmpl0000000000000060','',1147642470,'PBtmpl0000000000000060'),(1,NULL,'-WM2dt0ZGpDasuL2wWocxg','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803056,'PBtmpl0000000000000060'),(1,NULL,'3uuBf8cYuj1sew2OJXl9tg','PBtmpl0000000000000060','',1147642470,'PBtmpl0000000000000060'),(1,NULL,'cj2y4papTVGZRFdwTI-_fw','PBtmpl0000000000000060','',1147642475,'PBtmpl0000000000000060'),(1,NULL,'bBzO4CWjqU_ile3gf5Iypw','PBtmpl0000000000000060','',1147642475,'PBtmpl0000000000000060'),(1,NULL,'Da6KWn805L4B5e4HFgQRQA','PBtmpl0000000000000060','',1147642479,'PBtmpl0000000000000060'),(1,NULL,'bbiA9Zq5Gy2oCFBlILO3QA','PBtmpl0000000000000060','',1147642480,'PBtmpl0000000000000060'),(1,NULL,'Efe2W0UgrSRDltNJ87jlfg','PBtmpl0000000000000060','',1147642480,'PBtmpl0000000000000060'),(1,NULL,'9wKWdum0_8z-OhhquWLtSQ','PBtmpl0000000000000060','',1147642483,'PBtmpl0000000000000060'),(1,NULL,'CSN-ZON7Uwv8kxf3F1fh5Q','PBtmpl0000000000000060','',1147642484,'PBtmpl0000000000000060'),(1,NULL,'TCtybxdqmdwdvRn555zpCQ','PBtmpl0000000000000060','',1147642484,'PBtmpl0000000000000060'),(1,NULL,'pbproto000000000000002','PBtmpl0000000000000060','',1163019036,'PBtmpl0000000000000060'),(1,NULL,'tempspace0000000000000','PBtmpl0000000000000060','PBtmpl0000000000000060',1185754574,'PBtmpl0000000000000060'),(1,NULL,'Tsg7xmPYv782j6IVz7yHFg','PBtmpl0000000000000060','PBtmpl0000000000000111',1213244777,'PBtmpl0000000000000060'),(1,NULL,'TYo2Bwl7aafzTtdHlS-arQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1211664878,'PBtmpl0000000000000060'),(1,NULL,'6tK47xsaIH-ELw0IBo0uRQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1210777115,'PBtmpl0000000000000060'),(1,NULL,'gbnRhcWNk1iQe32LFEB5eQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1212086102,'PBtmpl0000000000000060'),(1,NULL,'6D4Z-oruXPS6OlH_Kx8pBg','PBtmpl0000000000000060','PBtmpl0000000000000111',1209509389,'PBtmpl0000000000000060'),(1,NULL,'C5fPz-Wg85vkYRvCdl-Xqw','PBtmpl0000000000000060','PBtmpl0000000000000111',1212160830,'PBtmpl0000000000000060'),(1,NULL,'jnYdqDkUR8x7Pv2eGR1qTA','PBtmpl0000000000000060','PBtmpl0000000000000111',1216250666,'PBtmpl0000000000000060'),(1,NULL,'2OcUWHVsu_L1sDFzIMWYqw','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803070,'PBtmpl0000000000000060'),(1,NULL,'zyWi26q9na-iiZqL4yedog','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803114,'PBtmpl0000000000000060'),(1,NULL,'tBL7BWiQRZFed2Y-Zjo9tQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803200,'PBtmpl0000000000000060'),(1,NULL,'GdkQpvjRtJqtzOUbwIIQRA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803205,'PBtmpl0000000000000060'),(1,NULL,'tnc5iYyynX2hfdEs9D3P8w','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803213,'PBtmpl0000000000000060'),(1,NULL,'vgXdBcFTqU7h4wBG1ewdBw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803217,'PBtmpl0000000000000060'),(1,NULL,'hcFlqnXlsmC1ujN6Id0F0A','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803234,'PBtmpl0000000000000060'),(1,NULL,'eRJR52fvlaxfetv3DQkQYw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803238,'PBtmpl0000000000000060'),(1,NULL,'5HIDHq5lAWHV5gpYGS0zLg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803244,'PBtmpl0000000000000060'),(1,NULL,'rYEFwXXo0tkGhQTcbDibvg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803249,'PBtmpl0000000000000060'),(1,NULL,'V3l5S5TtI7wMm1WpIMhvOA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803253,'PBtmpl0000000000000060'),(1,NULL,'nqNbSUAhk9Vd1zda2SCz9A','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803258,'PBtmpl0000000000000060'),(1,NULL,'y8XkRdxIperLKkJ3bL5sSQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803264,'PBtmpl0000000000000060'),(1,NULL,'vTymIDYL2YqEh6PV50F7ew','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803302,'PBtmpl0000000000000060'),(1,NULL,'lo1ac3BsoJx3ijGQ3gR-bQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803309,'PBtmpl0000000000000060'),(1,NULL,'huASapWvFDzqwOSbcN-JFQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803313,'PBtmpl0000000000000060'),(1,NULL,'9A-mg2gwWmaYi9o_1C7ArQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803338,'PBtmpl0000000000000060'),(1,NULL,'yD1SMHelczihzjEmx6eXBA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803342,'PBtmpl0000000000000060'),(1,NULL,'pV7GnZdpjR3XpZaSINIoeg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803347,'PBtmpl0000000000000060'),(1,NULL,'71e17KeduiXgODLMlUxiow','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803352,'PBtmpl0000000000000060'),(1,NULL,'Ik9HHky10DIyFTKehUD1dw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803478,'PBtmpl0000000000000060'),(1,NULL,'NywJYmGWe1f6EBXJnWg9Xg','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803638,'PBtmpl0000000000000060'),(1,NULL,'AgyFhx3eXlfZXNp2MkrsiQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803665,'PBtmpl0000000000000060'),(1,NULL,'F7MAQ-cpuvQ1KuC7J4P5zQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803673,'PBtmpl0000000000000060'),(1,NULL,'BmLaN4rmAANkCglXUViEbg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803871,'PBtmpl0000000000000060'),(1,NULL,'X7DrzUcj8pOKFa_6k9D5iw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222804045,'PBtmpl0000000000000060'),(1,NULL,'UL-ItI4L1Z6-WSuhuXVvsQ','stevestyle000000000003','PBtmpl0000000000000111',1225139673,'stevestyle000000000003'),(1,NULL,'7-0-style0000000000049','PBtmpl0000000000000060','PBtmpl0000000000000060',1224117144,'PBtmpl0000000000000060'),(0,NULL,'jVKLVakT_iA2010_oEuAwg','PBtmpl0000000000000060','PBtmpl0000000000000060',1224116526,'PBtmpl0000000000000060'),(1,'

     

    ','QpmlAiYZz6VsKBM-_0wXaw','stevestyle000000000003','PBtmpl0000000000000111',1224616691,'stevestyle000000000003'),(1,NULL,'HPDOcsj4gBme8D4svHodBw','PBtmpl0000000000000060','PBtmpl0000000000000111',1225404573,'PBtmpl0000000000000060'),(1,NULL,'IZkrow_zwvbf4FCH-taVTQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1226011853,'PBtmpl0000000000000060'),(1,NULL,'K0YjxqOqr7RupSo6sIdcAg','PBtmpl0000000000000060','PBtmpl0000000000000111',1227074310,'PBtmpl0000000000000060'),(1,NULL,'_ilRXNR3s8F2vGJ_k9ePcg','PBtmpl0000000000000060','PBtmpl0000000000000111',1226643205,'PBtmpl0000000000000060'),(1,NULL,'qaVcU0FFzzraMX_bzELqzw','PBtmpl0000000000000060','PBtmpl0000000000000111',1227074362,'PBtmpl0000000000000060'),(1,NULL,'QHn6T9rU7KsnS3Y70KCNTg','PBtmpl0000000000000060','PBtmpl0000000000000111',1233173545,'PBtmpl0000000000000060'),(1,NULL,'HW-sPoDDZR8wBZ0YgFgPtg','PBtmpl0000000000000060','PBtmpl0000000000000111',1227634350,'PBtmpl0000000000000060'),(1,NULL,'AOjPG2NHgfL9Cq6dDJ7mew','PBtmpl0000000000000060','PBtmpl0000000000000111',1236960881,'PBtmpl0000000000000060'),(1,NULL,'jmlI9IK-lV8n2WMYmmPhAA','PBtmpl0000000000000060','PBtmpl0000000000000111',1238106173,'PBtmpl0000000000000060'),(1,NULL,'6uvSLY-ak_w4p_wS8q33cA','PBtmpl0000000000000060','PBtmpl0000000000000111',1239213092,'PBtmpl0000000000000060'),(1,NULL,'GaBAW-2iVhLMJaZQzVLE5A','stevestyle000000000003','PBtmpl0000000000000111',1240103565,'stevestyle000000000003'),(1,'

    Templates for the Friend Manager

    ','lo1rpxn3t8YPyKGers5eQg','PBtmpl0000000000000060','PBtmpl0000000000000111',1238625621,'PBtmpl0000000000000060'),(1,NULL,'aNNC62qLAS6TB-0_MCYjsw','PBtmpl0000000000000060','PBtmpl0000000000000060',1246969327,'PBtmpl0000000000000060'),(1,NULL,'BFfNj5wA9bDw8H3cnr8pTw','PBtmpl0000000000000060','PBtmpl0000000000000060',1247046273,'PBtmpl0000000000000060'),(1,NULL,'f_tn9FfoSfKWX43F83v_3w','PBtmpl0000000000000060','PBtmpl0000000000000060',1247053009,'PBtmpl0000000000000060'),(1,NULL,'oGfxez5sksyB_PcaAsEm_Q','PBtmpl0000000000000060','PBtmpl0000000000000060',1247053097,'PBtmpl0000000000000060'),(1,NULL,'tPagC0AQErZXjLFZQ6OI1g','PBtmpl0000000000000060','PBtmpl0000000000000060',1246966459,'PBtmpl0000000000000060'),(1,NULL,'GYaFxnMu9UsEG8oanwB6TA','PBtmpl0000000000000060','PBtmpl0000000000000060',1246965871,'PBtmpl0000000000000060'),(1,NULL,'VZK3CRgiMb8r4dBjUmCTgQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1247046242,'PBtmpl0000000000000060'),(1,NULL,'tXwf1zaOXTvsqPn6yu-GSw','PBtmpl0000000000000060','PBtmpl0000000000000060',1246965607,'PBtmpl0000000000000060'),(1,NULL,'5bnNzteN7w3NnK9mF4XiCg','PBtmpl0000000000000060','PBtmpl0000000000000060',1250243000,'PBtmpl0000000000000060'),(1,NULL,'RSAMkc6WQmfRE3TOr1_3Mw','PBtmpl0000000000000060','PBtmpl0000000000000111',1250243000,'PBtmpl0000000000000060'),(1,NULL,'fowHfgOkJtAxdst7rugTog','PBtmpl0000000000000060','PBtmpl0000000000000111',1252595993,'PBtmpl0000000000000060'),(1,NULL,'TvOZs8U1kRXLtwtmyW75pg','PBtmpl0000000000000060','PBtmpl0000000000000060',1256092368,'PBtmpl0000000000000060'),(1,NULL,'4qh0kIsFUdd4Ox-Iu1JZgg','PBtmpl0000000000000060','PBtmpl0000000000000111',1257311886,'PBtmpl0000000000000060'),(1,'

     

    ','-K8Hj45mbelljN9-0CXZxg','PBtmpl0000000000000060','PBtmpl0000000000000060',1257311887,'PBtmpl0000000000000060'),(1,NULL,'P_4uog81vSUK4KxuW_4GUA','PBtmpl0000000000000060','PBtmpl0000000000000111',1258524916,'PBtmpl0000000000000060'),(0,NULL,'t87D1138NhPHhA23-hozBA','PBtmpl0000000000000060','PBtmpl0000000000000060',1273032716,'PBtmpl0000000000000060'),(0,NULL,'QtBumey5ffc-xffRp1-7Aw','PBtmpl0000000000000060','PBtmpl0000000000000060',1273032716,'PBtmpl0000000000000060'),(1,NULL,'x_hiUi1XZloBvV47Obnu8Q','OiJNwP1gAlcva8_yOtL4gA','PBtmpl0000000000000111',1273032718,'PBtmpl0000000000000060'),(0,NULL,'UUwEL6hLEPdrnkZnKRzFYQ','OiJNwP1gAlcva8_yOtL4gA','PBtmpl0000000000000111',1273032718,'PBtmpl0000000000000060'),(1,NULL,'Q4uX_C557arTp6D_jwB1jQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1273032720,'PBtmpl0000000000000060'),(1,NULL,'GNOAsX98vCsl0JRwfwL-gg','PBtmpl0000000000000060','PBtmpl0000000000000060',1277868921,'PBtmpl0000000000000060'),(1,NULL,'_iHetEvMQUOoxS-T2CM0sQ','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1273172789,'stevestyle000000000003'),(0,'

    \nCongratulations on successfully installing the WebGUI Content Engine®. If you used the Site Starter to select a set of default pages, you will see those pages in the site navigation. You will also notice that a number of additional pages appear, such as this page. These are default pages added for your convenience to help you get started with WebGUI and find the resources you need. Feel free to remove these extra pages whenever you are ready.

    \n

    To get started managing content, download the PDF document below. This document provides a basic introduction to the WebGUI user interface. 

    \n

    WebGUI Basics (PDF)

    \n

    Once you have read this document, you may want to head over to the Documentation section where you can find more WebGUI resources.

    ','bX5rYxb6tZ9docY6sUhBlw','Qk24uXao2yowR6zxbVJ0xA','stevestyle000000000003',1278013772,'stevestyle000000000003'),(1,'

    Plain Black® created the WebGUI Content Engine® and is here to answer \nyour questions and provide you with services to make sure your WebGUI \nimplementation is entirely successful. We bend over backwards to make \nsure you\'re a success. Contact us today to \nsee how we can help you.

    ','8Bb8gu-me2mhL3ljFyiWLg','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1271359194,'stevestyle000000000003'),(1,'

    Plain Black provides support packages to fit any budget or need. Start out with online support which costs only $500 per year, or work with Plain Black to build a custom support package tailored to your specific needs. No matter what level of support you purchase, you will get personalized and friendly service in a timely manner.

    ','ix1p0AbwKAz8QWB-T-HHfg','Qk24uXao2yowR6zxbVJ0xA','stevestyle000000000003',1271359087,'stevestyle000000000003'),(1,'

    Plain Black\'s professionally trained WebGUI experts can handle the task\nof hosting your web site, intranet, or extranet. Let us deal with upgrades, security, and server management so you focus on building your WebGUI site, which is where your time and expertise should be spent. And when you sign up with hosting, online support is included!

    ','iCYOjohB9SKvAPr6bXElKA','Qk24uXao2yowR6zxbVJ0xA','stevestyle000000000003',1271445525,'stevestyle000000000003'),(1,'

    WebGUI\'s robust API allows for easy customization. Plain Black\'s team of developers can create any features you need for your site. We\'ve built hundreds of custom applications for people. From simple macros, to custom single sign on systems, to applications that will manage your entire company, our team will leverage the power of WebGUI to your advantage.

    ','4Yfz9hqBqM8OYMGuQK8oLw','Qk24uXao2yowR6zxbVJ0xA','stevestyle000000000003',1271352537,'stevestyle000000000003'),(1,'

    Branding and visual appeal are powerful marketing tools. Don\'t let your site become a wallflower. Plain Black\'s professional design team can create a custom design to make your site stand out. Our team is fast, easy to work with, and can even migrate your existing content into your new WebGUI site.

    ','Wl8WZ43g2rK5AYr9o4zY7w','Qk24uXao2yowR6zxbVJ0xA','stevestyle000000000003',1271445539,'stevestyle000000000003'),(1,'

    Let our team of professional translators bring your site to new customers by translating your content into additional languages. Our translation services are never machine automated. They\'re always done by professional translators that have years of experience reading, writing, and speaking many languages.

    ','LBuiKzg2mWwmOPS9AgV3bg','Qk24uXao2yowR6zxbVJ0xA','stevestyle000000000003',1271348789,'stevestyle000000000003'),(1,'

    Now that you have a brilliant WebGUI site, you need to get people to visit it. We can help there too. Our marketing specialists can work with you to develop and execute the right combination of search engine placement, advertising buys, and affilliate programs to ensure your site gets the traffic it needs.

    ','jTNggl7AoVSUc_ZzrvuCmw','Qk24uXao2yowR6zxbVJ0xA','stevestyle000000000003',1271348789,'stevestyle000000000003'),(1,'

    With any large system, having the right documentation to get you started is mandatory. The good news is that WebGUI has abundant documentation.

    ','mTOiwwk3q4k9g5-XykXhPA','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1271349647,'stevestyle000000000003'),(1,'

    The WebGUI project community is a diverse and talented group. If you \nwould like to contribute back to the project there are many ways to \nbecome involved.

    ','2TqQc4OISddWCZmRY1_m8A','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1271357565,'stevestyle000000000003'),(1,'

    You can find members of the community on the #webgui chat channel on the Freenode IRC network. If you\'re not \nfamiliar with IRC, it\'s essentially like a chat room. A few things you\'ll need to know:

    \n
      \n
    \n
      \n
    • You need an IRC client program. There are many available that \ncan be downloaded free of charge.
    • \n
    • The IRC network we use is Freenode
    • \n
    • Our channel is #webgui.
    • \n
    • Channel operators have an @ next to their name. All channel operators in #webgui are Plain Black employees.
    • \n
    • Someone with a + next to their name is a recognized contributor in the WebGUI community. People who have been recognized as one of the People Behind WebGUI are often given this designation.
    • \n
    \n
      \n\n\n
    \n

    If you\'re looking for a mentor, recognized contributors are a good place\n to start.

    ','k2Qj03FrAOXYra8kDJYYXw','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1271357513,'PBtmpl0000000000000060'),(1,'

    An annual event, this is the one time a year when WebGUI users and Plain\n Black\'s staff come together to do all things WebGUI.  This is by far \nthe best way to get involved with the community as nothing can replace \nface to face interaction and mentoring. The conference is usually held \nin the fall of each year and more information on attending can be found \non the WebGUI Users \nConference website as details become available.

    ','ksSfkZdsr0uC62NwIk6hFQ','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1271356973,'PBtmpl0000000000000060'),(1,'

    WebGUI \nForums are available for WebGUI related\n discussion and community support. Bounce around ideas, discuss \nimportant issues, and ask community members for help and advice. WebGUI \nForums are broken up into:

    \n','nWxS5jnA3o3DgPEwBeR7yQ','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1271357239,'PBtmpl0000000000000060'),(0,NULL,'x3OFY6OJh_qsXkZfPwug4A','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1271348790,'stevestyle000000000003'),(0,NULL,'pJd5TLAjfWMVXD6sCRLwUg','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1271348790,'stevestyle000000000003'),(0,'

    The WebGUI Content Engine® is a powerful, easy to use web application framework and content management system. WebGUI contains dozens of built-in features, and allows for full customization through its rich API. It\'s easy enough for the average business user to use, but powerful enough for any large enterprise.

    \n

    WebGUI serves thousands of small and large businesses, schools, universities, governments, associations, churches, projects and communities throughout the world. For examples of who is using WebGUI, visit the WebGUI Sightings page. Shouldn\'t your site be on this list?

    \n

    If you\'re new to WebGUI, visit the Getting Started section. Once you feel comfortable, explore some of the professional services available for your new WebGUI site. No matter what level you\'re at, tell your friends about WebGUI.

    ','OhdaFLE7sXOzo_SIP2ZUgA','Qk24uXao2yowR6zxbVJ0xA','stevestyle000000000003',1271445348,'stevestyle000000000003'),(1,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n

    Rich User Interface

    \n
    \n

    Powerful API

    \n
    \n

    WebGUI has a rich user experience that allows users to place their \ncontent\nthrough a drag-n-drop interface; helps users pick dates, colors, and\nmore; and has a highly customizable rich editor to allow users to \nquickly and easily format\ncontent.

    \n
    \n

    WebGUI allows developers to quickly plug-in new functionality to\nget the most from a site. In addition, WebGUI\'s standardized plug-in\npoints maintain the upgrade path even with customizations.

    \n
    \n

    Short Friendly URLs

    \n
    \n

    Internationalization

    \n
    \n

    Never worry about ugly numeric \nID\'s or other things in URL\'s that\nmake it hard for search engines and people to use a site.

    \n
    \n

    Users can work in an interface in their native language, and content can\n be published in as many languages as necessary.

    \n
    \n

    Personalization

    \n
    \n

    Easy To Install

    \n
    \n

    Users see their own view of the site through dynamically\ngenerated navigation and content. In addition, content can be displayed \nbased upon users\' viewing habits.

    \n
    \n

    With the use of the WebGUI Runtime Environment (Unix, Mac OS X, Linux, \nBSD) and VMWare Appliance (Windows) setup takes minutes rather than\nhours.

    \n
    ','IWFxZDyGhQ3-SLZhELa3qw','Qk24uXao2yowR6zxbVJ0xA','stevestyle000000000003',1277737686,'stevestyle000000000003'),(1,NULL,'LdiozcIUciWuvt3Z-na5Ww','PBtmpl0000000000000060','PBtmpl0000000000000060',1281501162,'PBtmpl0000000000000060'),(1,NULL,'Vch1Ww7G_JpBhOhXX07RDg','PBtmpl0000000000000060','PBtmpl0000000000000111',1281501163,'PBtmpl0000000000000060'),(1,NULL,'AssetReportFolder00001','PBtmpl0000000000000060','PBtmpl0000000000000060',1281501163,'PBtmpl0000000000000060'),(1,'

    You don\'t have to be a developer to become a project contributor. Examples of how you can contribute include:\n

    \n
      \n
    • Translators - Visit i18n.webgui.org\n and either help translate a few items in an existing language, or \ncreate a new translation.

    • \n
    • Graphic Designers - Create WebGUI style themes, icons, or fix UI\n bugs. You can contribute your items to WebGUI\'s Addons and Plugins area for others to download and use.

    • \n
    • Usability Experts - Help make WebGUI more accessable and \neasier to use by submitting RFEs. Even better, submit an RFE that\'s ready to implement by including the code!

    • \n
    • Doc Writers - Write documents in WebGUI\'s wiki, help\n out on the boards, improve WebGUI\'s built in documentation.

    • \n
    • Testers - Validate WebGUI\'s features against its \ndocumentation, search for errors, and report bugs.

    • \n
    • Test writers - If you have some Perl abilities, you can help \ndevelop unit tests to make sure the WebGUI API is behaving as \ndocumented.

    • \n
    • Developers - Write a new feature for WebGUI like a macro, \nasset, wobject, auth module or workflow activity and contribute it to \nthe Addons and Plugins. If you\'re interested in developing for WebGUI, be sure to check out the Development Best Practices wiki article.

    • \n
    • Bug Fixers - Cruise the bug list and submit patches to \ncorrect the problem.

    • \n
    • Core Developers - Becoming a core developer is a privilege. To earn it, you have to demonstrate through bug fixes and/or \ncontributions that you can make sound programming decisions without the \nneed for someone to scrutinize everything you check in. WebGUI is a \nvery large and complex application so getting to this level can take \nsome time. Core developers are developers with commit privileges to the\n subversion repository.

    • \n
    • Advocate - Spread the word about WebGUI, tell people about \nhow you use it and how it\'s helped you.Encourage people to try it out.

    • \n
    • Marketing and Promotion - If you have a talent for marketing,\n advertising, or promotion you can be a super advocate! Have a marketing\n idea? Contact tavis AT plainblack DOT com.  Make a WebGUI banner or \nprint ad and contribute it!  Maybe you have a design for a cool \nwallpaper or t-shirt, anything to get the word out.
    • \n
    ','l0guT3vTR3B8cL6vtP-g3A','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1285124369,'PBtmpl0000000000000060'),(1,NULL,'N7uMnnicbyTEulcuRi1sSg','PBtmpl0000000000000060','PBtmpl0000000000000111',1283900195,'PBtmpl0000000000000060'),(1,'

     

    ','gI_TxK-5S4DNuv42wpImmw','PBtmpl0000000000000060','PBtmpl0000000000000111',1285124155,'PBtmpl0000000000000060'),(1,NULL,'kaPRSaf8UKiskiGEgJgLAw','PBtmpl0000000000000060','PBtmpl0000000000000111',1285124155,'2p9ygcqH_Z11qOUvQ1uBvw'),(1,NULL,'RrV4aAPnn4dM0ZcU3OXnlw','PBtmpl0000000000000060','PBtmpl0000000000000060',1286336607,'PBtmpl0000000000000060'),(0,'

    \nTo begin managing content, you should log in and click the Turn Admin On! link. The default username is \"admin\" and the default password is \"123qwe\", but you probably customized both of those when you visited this site for the very first time.\n

    \n

    \nNow that you\'re logged in, we recommend that you add a new user for yourself with admin privileges just in case you forget the login information for your primary admin account. Don\'t worry if you lock yourself out, you can always contact Plain Black® support to get instructions to get back in.\n

    \n

    NOTE: If you appear to get logged out while moving between pages, this is most likely your browser displaying a cached version of the page. Click on your browser\'s refresh button to correct the problem.

    \n

     

    \n

    \nFor more information about services related to WebGUI click here.\n

    \n

    \nEnjoy your new WebGUI site!\n

    ','NK8bqlwVRILJknqeCDPBHg','Qk24uXao2yowR6zxbVJ0xA','stevestyle000000000003',1285796040,'stevestyle000000000003'),(1,'

    Plain Black has created a line of commercial books which total over 1500 pages of detailed documentation about WebGUI. Both black and white and full color editions of these books are available. Visit the book store today to stock your WebGUI library. Other than hands on training, there is no better way to hone your WebGUI skills. No matter what your need, Plain Black has created a book that\'s right for you and is creating new books each year.

    \n

    In the fall of 2010, Plain Black announced that these books will be converted into free wikis. You can now access all WebGUI user guides for free on the WebGUI User Guides page on www.webgui.org.

    \n

    *These books are available for WebGUI version 7.7 and earlier. For later documentation, see the free resources available on the WebGUI project website.

    ','diZvW4bSgZWwyyGP3qXi1g','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1285610019,'stevestyle000000000003'),(1,NULL,'68sKwDgf9cGH58-NZcU4lg','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1286336676,'stevestyle000000000003'),(0,NULL,'Am1J-meNBmhqFfEIWy6Gag','OiJNwP1gAlcva8_yOtL4gA','PBtmpl0000000000000111',1287545014,'PBtmpl0000000000000060'),(1,NULL,'1z9J1O08n_7gVVlBwSRBJQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1287545014,'PBtmpl0000000000000060'),(1,NULL,'xSmREZO3GNzK3M5PaueOOQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1287545014,'PBtmpl0000000000000060'),(1,NULL,'0bx-xoL8TSXXubFuqKAoVQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1287545014,'PBtmpl0000000000000060'),(1,NULL,'taX2UYkFF21ALpFZY2rhMw','PBtmpl0000000000000060','PBtmpl0000000000000060',1287545014,'PBtmpl0000000000000060'),(1,NULL,'K0q_N885Httqev1VCqUWxg','PBtmpl0000000000000060','PBtmpl0000000000000060',1287545014,'PBtmpl0000000000000060'),(1,NULL,'fq1ZkYhH24R5tb96kuT10Q','PBtmpl0000000000000060','PBtmpl0000000000000060',1287545014,'PBtmpl0000000000000060'),(1,NULL,'oHk7fAFhEEkB7dHzi0QOQA','PBtmpl0000000000000060','PBtmpl0000000000000060',1287545014,'PBtmpl0000000000000060'),(1,NULL,'9M-lrlPQWeeNWfvnDnK_Xg','PBtmpl0000000000000060','PBtmpl0000000000000060',1287545014,'PBtmpl0000000000000060'),(1,NULL,'_gBYAdTcbkiyamnqi2Xskg','PBtmpl0000000000000060','PBtmpl0000000000000060',1287545014,'PBtmpl0000000000000060'),(1,NULL,'0iMMbGN3BevuCBHjjLiQNA','PBtmpl0000000000000060','PBtmpl0000000000000111',1287545015,'PBtmpl0000000000000060'),(1,NULL,'6A4yIjWwJfIE0Ep-I0jutg','PBtmpl0000000000000060','PBtmpl0000000000000111',1287545015,'PBtmpl0000000000000060'),(1,'

    Folder for holding Workflow Activity templates.

    ','_cD6DLM_Fs5IlrLeWUjrjg','PBtmpl0000000000000060','PBtmpl0000000000000111',1287545015,'PBtmpl0000000000000060'),(1,NULL,'f2EktltCvwQpl_3-B1yR7g','PBtmpl0000000000000060','PBtmpl0000000000000111',1288748251,'PBtmpl0000000000000060'),(1,NULL,'S1A9iAwKcQQ6P20uTqw-Ew','PBtmpl0000000000000060','PBtmpl0000000000000060',1300763664,'PBtmpl0000000000000060'),(1,'

    There are hundreds of pages of free documentation available for WebGUI, provided by both Plain Black and the community at large. The following list is by no means comprehensive, but it should get you started in the right direction.

    \n

     

    \n
      \n
    • Primer - A downloadable PDF that shows you the basics of publishing content in WebGUI.
    • \n
    • WebGUI User Guides: all commercial user guides previously published by Plain Black are in the process of being converted into wikis. You can find these wikis on the WebGUI User Guides page of www.webgui.org. This is an ongoing process; until all books have been converted, remaining books are being made available as free PDF downloads.
    • \n
    • Wiki - Hundreds of pages of WebGUI community contributed content featuring a variety of tutorials.
    • \n
    • Worldwide - A collection of WebGUI related web sites from all over the world that have documentation and other resources for WebGUI.
    • \n
    • API Docs - The documentation of all of the WebGUI source code.
    • \n
    • Template Help - The documentation of all of WebGUI\'s template variables.
    • \n
    ','j_1qEqM6iLfQLiR6VKy0aA','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1299872071,'stevestyle000000000003'),(1,'

    Templates and images for the \"Underground\" style from StyleShout.com

    ','CQp-RFA2pMh5lFSggPPPYg','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1301973995,'PBtmpl0000000000000060'),(1,NULL,'_Mi_NTd3x8UB96LWezWHnw','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1301973995,'PBtmpl0000000000000060'),(1,NULL,'g3JH1PRq6m6Bj_PnGpcrSQ','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1301973996,'PBtmpl0000000000000060'),(1,'

    This folder holds prototype WebGUI assets with the correct templates pre-selected.

    ','G0hl4VilbFKipToyxKqFrg','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1301973997,'PBtmpl0000000000000060'),(1,NULL,'GWU2qZqe6yEuAKG-5HtBdg','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1301973997,'PBtmpl0000000000000060'),(1,NULL,'AsfpsOpsGzZCb9m7MyxPuw','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1301973997,'PBtmpl0000000000000060'),(1,NULL,'jmqLxnoWb6p92Cr12lf1hw','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1301973997,'PBtmpl0000000000000060'),(1,NULL,'8E2UOnj_XPEghTj7nfVM0g','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1301973997,'PBtmpl0000000000000060'),(1,NULL,'1qFjOEiILIwr1xB5_ebppQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1301973998,'PBtmpl0000000000000060'),(1,NULL,'xD76UfQ_JnSgTLBNvytcpQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1301973998,'PBtmpl0000000000000060'),(0,NULL,'h0bOzz7WvdaVZXsjpwtkww','KKt0VB_eoQxw9xEsHsAhag','PBtmpl0000000000000111',1301973998,'PBtmpl0000000000000060'),(1,NULL,'qFOfW1sKyOTnGNcP6BXbwg','6D98D8TIuhExiSoo2U1eqw','PBtmpl0000000000000111',1301973999,'PBtmpl0000000000000060'),(1,NULL,'G5DgNizuG3jXkjPp6UaGrA','PBtmpl0000000000000060','PBtmpl0000000000000060',1301973999,'PBtmpl0000000000000060'),(1,NULL,'brxm_faNdZX5tRo3p50g3g','PBtmpl0000000000000060','PBtmpl0000000000000111',1304392055,'PBtmpl0000000000000060'),(1,NULL,'n-Vr_wgxOkwiHGt1nJto9w','OiJNwP1gAlcva8_yOtL4gA','PBtmpl0000000000000111',1309236774,'PBtmpl0000000000000060'),(1,NULL,'aNmgn0cd6tldmC1FpW4KbA','PBtmpl0000000000000060','PBtmpl0000000000000060',1326776036,'PBtmpl0000000000000060'),(1,NULL,'jEz8iTGNWEt2I05IhVV19Q','PBtmpl0000000000000060','PBtmpl0000000000000060',1326776037,'PBtmpl0000000000000060'); ALTER TABLE `wobject` ENABLE KEYS; -INSERT INTO webguiVersion (webguiVersion,versionType,dateApplied) VALUES ('7.10.23','Initial Install',UNIX_TIMESTAMP()); +INSERT INTO webguiVersion (webguiVersion,versionType,dateApplied) VALUES ('7.10.24','Initial Install',UNIX_TIMESTAMP()); SET CHARACTER_SET_CLIENT = @OLD_CHARACTER_SET_CLIENT; SET CHARACTER_SET_RESULTS = @OLD_CHARACTER_SET_RESULTS; SET CHARACTER_SET_CONNECTION = @OLD_CHARACTER_SET_CONNECTION; diff --git a/t/Asset/EMSSubmissionForm.t b/t/Asset/EMSSubmissionForm.t index 1a3db94de7..f81a6b2d26 100644 --- a/t/Asset/EMSSubmissionForm.t +++ b/t/Asset/EMSSubmissionForm.t @@ -428,7 +428,7 @@ my $expected = { }, 'description' => undef, '_isValid' => 1, - 'deleteCreatedItems' => '0', + 'deleteCreatedItems' => 0, 'canSubmitGroupId' => '2', 'assetId' => 'new', 'url' => '', diff --git a/t/Asset/Template.t b/t/Asset/Template.t index 45d43942f0..22c796dd56 100644 --- a/t/Asset/Template.t +++ b/t/Asset/Template.t @@ -14,8 +14,6 @@ use WebGUI::Test; use WebGUI::Session; use WebGUI::Asset::Template; use Exception::Class; - -use Test::More tests => 62; # increment this value for each test you create use Test::Deep; use Data::Dumper; use Test::Exception; @@ -344,4 +342,16 @@ throws_ok 'Parser not in config dies'; isa_ok $class->getParser( $session, 'WebGUI::Asset::Template::HTMLTemplateExpr'), 'WebGUI::Asset::Template::HTMLTemplateExpr', 'parser in config is created'; +{ +use Test::MockObject::Extends; +my $mockparser = Test::MockObject->new->mock( process => sub { $@ = "failed" } ); +my $mockTemplate = Test::MockObject::Extends->new( $class ) + ->mock( get => sub { return '' } ) + ->mock( session => sub { return $session } ) + ->mock( getParser => sub { return $mockparser } ) + ; +is $mockTemplate->process, 'failed', 'handle non-reference exceeption'; +} + done_testing; + diff --git a/t/Asset/Wobject/Calendar.t b/t/Asset/Wobject/Calendar.t index 8b3c49760a..e1a0506755 100644 --- a/t/Asset/Wobject/Calendar.t +++ b/t/Asset/Wobject/Calendar.t @@ -55,8 +55,6 @@ use Data::Dumper; use WebGUI::Asset::Wobject::Calendar; use WebGUI::Asset::Event; -plan tests => 14 + scalar @icalWrapTests; - my $session = WebGUI::Test->session; # Do our work in the import node @@ -553,6 +551,9 @@ cmp_deeply( '... correct set of events in list view' ); +ok(exists $listVars->{events}->[0]->{new_year} && $listVars->{events}->[0]->{new_year}, 'first event has new_year set'); +ok(exists $listVars->{events}->[0]->{new_month} && $listVars->{events}->[0]->{new_month}, 'first event has new_month set'); +ok(exists $listVars->{events}->[0]->{new_day} && $listVars->{events}->[0]->{new_day}, 'first event has new_day set'); ###################################################################### # @@ -580,3 +581,5 @@ cmp_deeply( [], 'but getFeeds still returns a data structure.' ); + +done_testing; diff --git a/t/Asset/Wobject/Survey/package.t b/t/Asset/Wobject/Survey/package.t new file mode 100644 index 0000000000..8d161d1ec8 --- /dev/null +++ b/t/Asset/Wobject/Survey/package.t @@ -0,0 +1,67 @@ +# Tests WebGUI::Asset::Wobject::Survey Reporting +# +# + +use strict; +use warnings; +use FindBin; +use lib "$FindBin::Bin/../../../lib"; +use Test::More; +use Test::Deep; +use Data::Dumper; +use Clone qw/clone/; +use WebGUI::Test; # Must use this before any other WebGUI modules +use WebGUI::Session; +WebGUI::Error->Trace(1); # Turn on tracing of uncaught Exception::Class exceptions + +#---------------------------------------------------------------------------- +# Init +my $session = WebGUI::Test->session; + +#---------------------------------------------------------------------------- +# put your tests here + +my $import_node = WebGUI::Asset->getImportNode($session); + +# Create a Survey +my $survey = $import_node->addChild( { className => 'WebGUI::Asset::Wobject::Survey', } ); +WebGUI::Test->addToCleanup($survey); + +my $sJSON = $survey->surveyJSON; + +# Load bare-bones survey, containing a single section (S0) +$sJSON->update([0], { variable => 'S0' }); + +# Add 1 question to S0 +$sJSON->newObject([0]); # S0Q0 +$sJSON->update([0,0], { variable => 'toes', questionType => 'Multiple Choice' }); +$sJSON->update([0,0,0], { text => 'one',}); +$sJSON->update([0,0,1], { text => 'two',}); +$sJSON->update([0,0,2], { text => 'more than two',}); +$sJSON->update([0,1], { variable => 'name', questionType => 'Text' }); + +$survey->addType('toes', [0,0]); + +$survey->persistSurveyJSON; ##This does not update the SurveyJSON object cacched in the Survey object +$survey=$survey->cloneFromDb; + +my $asset_data = $survey->exportAssetData(); + +ok exists $asset_data->{question_types}, 'question_types entry exists in asset data to package'; +ok exists $asset_data->{question_types}->{toes}, 'the toes type in a question type' or + explain $asset_data; +ok !exists $asset_data->{question_types}->{name}, 'name question not in question types'; + +$asset_data->{question_types}->{fingers} = clone $asset_data->{question_types}->{toes}; + +$survey->importAssetCollateralData($asset_data); + +$survey = $survey->cloneFromDb; +my $multipleChoiceTypes = $survey->surveyJSON->multipleChoiceTypes; + +ok exists $multipleChoiceTypes->{fingers}, 'fingers type imported as package collateral data'; +ok exists $multipleChoiceTypes->{toes}, 'still have toes, too'; + +done_testing(); + +#vim:ft=perl diff --git a/t/Macro/L_loginBox.t b/t/Macro/L_loginBox.t index 3886f5c27f..544203b0b6 100644 --- a/t/Macro/L_loginBox.t +++ b/t/Macro/L_loginBox.t @@ -33,7 +33,7 @@ $env->{'QUERY_STRING'} = 'func=search'; my $i18n = WebGUI::International->new($session,'Macro_L_loginBox'); -plan tests => 30; +plan tests => 31; my $output = WebGUI::Macro::L_loginBox::process($session,'','',$template->getId); my %vars = simpleTextParser($output); @@ -150,6 +150,12 @@ $output = WebGUI::Macro::L_loginBox::process($session,'','',$template->getId); %vars = simpleTextParser($output); like($vars{'form.header'}, qr{https://}, 'form.header action set to use SSL by encryptLogin'); +WebGUI::Test->originalConfig('webServerPort'); +$session->config->set('webServerPort', 8081); +$output = WebGUI::Macro::L_loginBox::process($session,'','',$template->getId); +%vars = simpleTextParser($output); +unlike($vars{'form.header'}, qr{:8081}, '... when setting, remove the port'); + ##Finally, a test that the default Template exists $output = WebGUI::Macro::L_loginBox::process($session,'','',''); diff --git a/t/Workflow/Activity/BucketPassiveAnalytics.t b/t/Workflow/Activity/BucketPassiveAnalytics.t index c2d32b20cf..87865296cf 100644 --- a/t/Workflow/Activity/BucketPassiveAnalytics.t +++ b/t/Workflow/Activity/BucketPassiveAnalytics.t @@ -3,20 +3,22 @@ use strict; #use DB; use WebGUI::Test; -use WebGUI::Asset; use WebGUI::PassiveAnalytics::Rule; -use WebGUI::Workflow::Activity::BucketPassiveAnalytics; -use WebGUI::Text; use Test::More; +use Test::Deep; +use Data::Dumper; -plan tests => 1; # increment this value for each test you create +plan tests => 2; # increment this value for each test you create my $session = WebGUI::Test->session; $session->user({userId => 3}); WebGUI::Test->addToCleanup(SQL => 'delete from passiveLog'); +WebGUI::Test->addToCleanup(SQL => 'delete from deltaLog'); +WebGUI::Test->addToCleanup(SQL => 'delete from bucketLog'); WebGUI::Test->addToCleanup(SQL => 'delete from analyticRule'); +WebGUI::Test->addToCleanup(SQL => 'delete from PA_lastLog'); my $workflow = WebGUI::Workflow->new($session, 'PassiveAnalytics000001'); my $activities = $workflow->getActivities(); @@ -63,7 +65,8 @@ while (my $spec = shift @url2) { } my @urls = map {$_->[1]} @ruleSets; -loadLogData($session, @urls); +#loadLogData($session, @urls); +repeatableLogData($session, 'passiveAnalyticsLog'); ##Build rulesets @@ -76,7 +79,28 @@ PAUSE: while (my $retval = $instance->run()) { } #DB::disable_profile(); -ok(1, 'One test'); +cmp_ok $counter, '<', 16, 'Successful completion of PA'; + +my $get_line = $session->db->read('select userId, Bucket, duration from bucketLog'); + +my @database_dump = (); +ROW: while ( 1 ) { + my @datum = $get_line->array(); + last ROW unless @datum; + push @database_dump, [ @datum ]; +} + +cmp_bag( + [ @database_dump ], + [ + ['user1', 'one', 10], + ['user1', 'two', 15], + ['user2', 'zero', 2], + ['user2', 'uno', 3], + ['user2', 'Other', 5], + ], + 'PA analysis completed, and calculated correctly' +) or diag Dumper(\@database_dump); sub loadLogData { my ($session, @urls) = @_; @@ -96,4 +120,24 @@ sub loadLogData { } } +sub repeatableLogData { + my ($session, $dataLogName) = @_; + $session->db->write('delete from passiveLog'); + my $insert = $session->db->prepare( + q!insert into passiveLog (userId, sessionId, timeStamp, url, assetId) VALUES (?,?,?,?,'assetId')! + ); + my $data_name = WebGUI::Test::collateral('passiveAnalyticsLog'); + open my $log_data, '<', $data_name or + die "Unable to open $data_name for reading: $!"; + local $_; + while (<$log_data>) { + next if /^\s*#/; + s/#\.*$//; + chomp; + my @data = split; + $insert->execute([@data]); + } + $insert->finish; +} + #vim:ft=perl diff --git a/t/Workflow/Activity/DeleteExpiredSessions.t b/t/Workflow/Activity/DeleteExpiredSessions.t index c1ec581916..89468637c6 100644 --- a/t/Workflow/Activity/DeleteExpiredSessions.t +++ b/t/Workflow/Activity/DeleteExpiredSessions.t @@ -43,7 +43,7 @@ $retVal = $instance1->run(); is($retVal, 'complete', 'cleanup: activity complete'); $retVal = $instance1->run(); is($retVal, 'done', 'cleanup: activity is done'); -$instance1->delete; +$instance1->delete('skipNotify'); my $origSessionTimeout = $session->setting->get('sessionTimeout'); @@ -77,6 +77,7 @@ my $instance2 = WebGUI::Workflow::Instance->create($session, skipSpectreNotification => 1, } ); +WebGUI::Test->addToCleanup($instance2); my $counter = 0; PAUSE: while ($retVal = $instance2->run()) { diff --git a/t/supporting_collateral/passiveAnalyticsLog b/t/supporting_collateral/passiveAnalyticsLog new file mode 100644 index 0000000000..9da0ea61ad --- /dev/null +++ b/t/supporting_collateral/passiveAnalyticsLog @@ -0,0 +1,9 @@ +#user session timestamp url +user1 session11 100 /one +user1 session11 110 /two +user1 session11 125 /three +user2 session21 200 /yelnats +user2 session21 202 /one/uno +user2 session21 205 /whatever +user2 session21 210 /something_else +user2 session21 610 /something_else diff --git a/www/extras/yui/tests/animation/tests/animation.html b/www/extras/yui/tests/animation/tests/animation.html deleted file mode 100644 index e4e479b697..0000000000 --- a/www/extras/yui/tests/animation/tests/animation.html +++ /dev/null @@ -1,111 +0,0 @@ - - - -Animation Test Suite - - - - - - - - - - - - - - - - - -
    -
    foo
    -
    bar
    -
    - - diff --git a/www/extras/yui/tests/autocomplete/tests/autocomplete.html b/www/extras/yui/tests/autocomplete/tests/autocomplete.html deleted file mode 100644 index ae20cc74fe..0000000000 --- a/www/extras/yui/tests/autocomplete/tests/autocomplete.html +++ /dev/null @@ -1,283 +0,0 @@ - - -YUI AutoComplete Tests - - - - - - - - - - - - - -

    AutoComplete Tests

    -

    - - - - diff --git a/www/extras/yui/tests/button/tests/button-activeelement-test.html b/www/extras/yui/tests/button/tests/button-activeelement-test.html deleted file mode 100644 index 7ea17b8c43..0000000000 --- a/www/extras/yui/tests/button/tests/button-activeelement-test.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - Button activeElement Test - - - - - - - - - - - - - - - - - - - - - - -

    Button activeElement Test

    -

    Test case for bug 2528245.

    -

    -Clicking on the text box when the Button's Menu is open should result in the Menu closing, -the Button blurring and the text box being focused and becoming the activeElement. -After mousing down on the text box, it should have a black outline and -should fire key events. -

    - -
    - - - - - - -
    - - - \ No newline at end of file diff --git a/www/extras/yui/tests/button/tests/label-click-test.html b/www/extras/yui/tests/button/tests/label-click-test.html deleted file mode 100644 index 9fe68b7c73..0000000000 --- a/www/extras/yui/tests/button/tests/label-click-test.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - Button Click Label Test - - - - - - - - - - - - - - -

    Button Click Label Test

    -

    Test case for bug 2527640.

    -

    Clicking on the <label> for each Button instance should both focus and check or uncheck the Button.

    - -
    - -
    - Checkboxes - - - - - - - - -
    - -
    - Radio Buttons - - - - - - - - - - -
    -
    - -
    - -
    - - - diff --git a/www/extras/yui/tests/button/tests/label-replace-test.html b/www/extras/yui/tests/button/tests/label-replace-test.html deleted file mode 100644 index 6a4fa85b18..0000000000 --- a/www/extras/yui/tests/button/tests/label-replace-test.html +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - Button Label Replace Test - - - - - - - - - - - - - - -

    Button Label Replace Test

    -

    Test case for bug 1897085.

    -

    The text label for each Button should be the text of its corresponding <label<.

    - -
    - -
    - Checkboxes - - - - - - - - -
    - -
    - Radio Buttons - - - - - - - - -
    - - - -
    - - - diff --git a/www/extras/yui/tests/button/tests/preventoverlap.html b/www/extras/yui/tests/button/tests/preventoverlap.html deleted file mode 100644 index a6c719ab13..0000000000 --- a/www/extras/yui/tests/button/tests/preventoverlap.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - Button - - - - - - - - - - - - - - - - - - -
    -
    - Menu Alignment Controls - - - - - - - - -
    - - - \ No newline at end of file diff --git a/www/extras/yui/tests/button/tests/selected-menuitem-change-test.html b/www/extras/yui/tests/button/tests/selected-menuitem-change-test.html deleted file mode 100644 index 0d1e0891b6..0000000000 --- a/www/extras/yui/tests/button/tests/selected-menuitem-change-test.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - YUI Button Test Case - - - - - - - - - - - - - - -

    YUI Button Test Case

    - -

    Test case for Bug 2527968. Clicking on the Menu Button below should NOT result in an alert popping up when the Menu is made visible.

    - - - - - - - - \ No newline at end of file diff --git a/www/extras/yui/tests/button/tests/submit-twice-test.html b/www/extras/yui/tests/button/tests/submit-twice-test.html deleted file mode 100644 index 6936df8331..0000000000 --- a/www/extras/yui/tests/button/tests/submit-twice-test.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - YUI Button + Connection Manager Test Page - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - -
    - -
    - -
    - - - -
    -

    Form Data

    - -
    - - - \ No newline at end of file diff --git a/www/extras/yui/tests/button/tests/yui-prefix-test.html b/www/extras/yui/tests/button/tests/yui-prefix-test.html deleted file mode 100644 index bcc93d53d0..0000000000 --- a/www/extras/yui/tests/button/tests/yui-prefix-test.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - Button YUI Prefix Test - - - - - - - - - - - - - - - - - - - - - -Yahoo! - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - diff --git a/www/extras/yui/tests/calendar/tests/calendar.html b/www/extras/yui/tests/calendar/tests/calendar.html deleted file mode 100644 index 3fd243405a..0000000000 --- a/www/extras/yui/tests/calendar/tests/calendar.html +++ /dev/null @@ -1,1336 +0,0 @@ - - - - YUI Calendar Tests - - - - - - - - - - - - - - - - -

    Calendar Tests

    -

    The YUI Calendar Suite is split into 6 test cases:

    - -
    -
      -
    1. API Tests: These tests are intended to test the API, without going through the DOM Element or Event layers -
        -
      • Calendar API (CALENDAR_API)
      • -
      • CalendarGroup API (CALENDARGROUP_API)
      • -
      -
    2. -
    3. DOM Tests: These tests are intended to test the DOM Element and Event layers -
        -
      • Calendar DOM (CALENDAR_DOM)
      • -
      • CalendarGroup DOM (CALENDARGROUP_DOM)
      • -
      -
    4. -
    5. CFG Tests: These tests are intended to test the set of Calendar configuration properties -
        -
      • Calendar Config (CALENDAR_CFG)
      • -
      • CalendarGroup Config (CALENDARGROUP_CFG)
      • -
      -
    6. -
    -
    - -

    (runs default suite [API, CFG] if none selected)

    - - diff --git a/www/extras/yui/tests/carousel/tests/AllTests.html b/www/extras/yui/tests/carousel/tests/AllTests.html deleted file mode 100644 index 8ddfd25f64..0000000000 --- a/www/extras/yui/tests/carousel/tests/AllTests.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - YUI Carousel Unit Tests - - - - - - - - - - - - - - - - - - - -
    - -
    -
    -
    -
      -
    • Test
    • -
    -
    -
    -
    - - diff --git a/www/extras/yui/tests/carousel/tests/markupTests.js b/www/extras/yui/tests/carousel/tests/markupTests.js deleted file mode 100644 index 9bbf64193d..0000000000 --- a/www/extras/yui/tests/carousel/tests/markupTests.js +++ /dev/null @@ -1,242 +0,0 @@ -(function () { - var ArrayAssert = YAHOO.util.ArrayAssert, - Assert = YAHOO.util.Assert, - carousel, carousel3, - carouselEl, carouselEl3, - Dom = YAHOO.util.Dom, - initFromMarkupTest, - ObjectAssert = YAHOO.util.ObjectAssert; - - YAHOO.namespace("CarouselTests"); - - initFromMarkupTest = new YAHOO.tool.TestCase({ - name: "Initialize from markup test", - - testCreation: function () { - return Assert.areEqual(true, - Dom.hasClass(carouselEl, "yui-carousel-element")); - }, - - testCreationFromUl: function () { - return Assert.areEqual(true, - Dom.hasClass(carouselEl3, "yui-carousel-element")); - }, - - testNumItems: function () { - return Assert.areEqual(5, carousel.get("numItems")); - }, - - testNumItemsInTable: function () { - return Assert.areEqual(5, carousel._itemsTable.numItems); - }, - - testitemsInTable: function () { - return Assert.areEqual(5, carousel._itemsTable.items.length); - }, - - testgetElementForItem: function () { - var actual = [], expected = [], i; - - for (i = 0; i < 5; i++) { - expected.push(Dom.get("item" + (i+1))); - actual.push(carousel.getElementForItem(i)); - } - return ArrayAssert.itemsAreEqual(expected, actual); - }, - - testgetElementForItems: function () { - var expected = [], i; - - for (i = 0; i < 5; i++) { - expected.push(Dom.get("item" + (i+1))); - } - return ArrayAssert.itemsAreEqual(expected, - carousel.getElementForItems()); - }, - - testgetVisibleItems: function () { - var expected = [], i; - - for (i = 0; i < 3; i++) { - expected.push(Dom.get("item" + (i+1))); - } - return ArrayAssert.itemsAreEqual(expected, - carousel.getVisibleItems()); - }, - - testClearItems: function () { - carousel.clearItems(); - return Assert.areEqual(0, carousel.get("numItems")) && - Assert.areEqual(0, carousel._itemsTable.numItems) && - ArrayAssert.itemsAreEqual([], - carousel._itemsTable.items); - }, - - testAddItem: function () { - carousel.addItem("Six"); - carousel.addItem("Seven", 0); - return Assert.areEqual("Six", carousel.getItem(1).item) && - Assert.areEqual("Seven", carousel.getItem(0).item); - }, - - testAddItems: function () { - carousel.addItems([["Eight",0],["Nine",0]]); - return Assert.areEqual("Six", carousel.getItem(3).item) && - Assert.areEqual("Seven", carousel.getItem(2).item) && - Assert.areEqual("Eight", carousel.getItem(1).item) && - Assert.areEqual("Nine", carousel.getItem(0).item); - }, - - testgetItem: function () { - var children = Dom.getChildrenBy(carouselEl, - function (node) { - return node.nodeName.toUpperCase() == "LI"; - }), - els = [], i; - - for (i in children) { - els.push(children[i]); - } - - return ObjectAssert.propertiesAreEqual({ className: "", - id: els[2].id, - item: "Seven" }, - carousel.getItem(2)); - }, - - testgetItems: function () { - var children = Dom.getChildrenBy(carouselEl, - function (node) { - return node.nodeName.toUpperCase() == "LI"; - }), - expected = [], i; - - function compareItems(a, b) { - return a.className === b.className && - a.id === b.id && a.item === b.item; - } - - for (i in children) { - expected.push({ className: "", id: children[i].id, - item: children[i].innerHTML }); - } - - return ArrayAssert.itemsAreEquivalent(expected, - carousel.getItems(), - compareItems); - }, - - testgetItemPositionById: function () { - var children = Dom.getChildrenBy(carouselEl, - function (node) { - return node.nodeName.toUpperCase() == "LI"; - }); - - return Assert.areEqual(2, - carousel.getItemPositionById(children[2].id)); - }, - - testremoveItem: function () { - var children = Dom.getChildrenBy(carouselEl, - function (node) { - return node.nodeName.toUpperCase() == "LI"; - }), - item; - - item = children[2]; - carousel.removeItem(2); - return Assert.areEqual(null, Dom.get(item.id)) && - Assert.areEqual(3, carousel.get("numItems")) && - Assert.areEqual(3, carousel._itemsTable.numItems); - }, - - testScrollForward: function () { - carousel.set("firstVisible", 0); - carousel.addItems([["Ten",0],["Eleven",0],["Twelve",0]]); - carousel.scrollForward(); - Assert.areEqual("-100px", carouselEl.style.left); - }, - - testScrollPageForward: function () { - carousel.set("firstVisible", 0); - carousel.scrollPageForward(); - Assert.areEqual("-300px", carouselEl.style.left); - }, - - testScrollBackward: function () { - carousel.set("firstVisible", 3); - carousel.scrollBackward(); - Assert.areEqual("-200px", carouselEl.style.left); - }, - - testScrollPageBackward: function () { - carousel.set("firstVisible", 3); - carousel.scrollPageBackward(); - Assert.areEqual("0px", carouselEl.style.left); - }, - - testScrollTo: function () { - Dom.setStyle(carouselEl, "left", ""); - carousel.scrollTo(3); - Assert.areEqual("-300px", carouselEl.style.left); - }, - - testSetNumVisible: function () { - var contentEl = carouselEl.parentNode, - num = carousel.get("numItems"); - - function isSameWidth(el, w) { - return parseInt(el.offsetWidth, 10) == w; - } - - if (carousel.get("numVisible") != 3 || - !isSameWidth(contentEl, 300)) { - return Assert.fail("numVisible should be 3 by default"); - } - carousel.set("numVisible", 1); - if (carousel.get("numVisible") != 1 || - !isSameWidth(contentEl, 100)) { - return Assert.fail("numVisible should be 1 by default"); - } - carousel.set("numVisible", num); - if (carousel.get("numVisible") != num || - !isSameWidth(contentEl, num * 100)) { - return Assert.fail("numVisible should have been " + num); - } - carousel.set("numVisible", 1); - if (carousel.get("numVisible") != 1 || - !isSameWidth(contentEl, 100)) { - return Assert.fail("numVisible should have been 1"); - } - carousel.set("numVisible", 3); - return Assert.areEqual(3, carousel.get("numVisible")) && - Assert.areEqual(true, areSameWidth(contentEl, 300)); - } - }); - - YAHOO.CarouselTests.markupTests = new YAHOO.tool.TestSuite({ - name: "Carousel (from Markup) Tests", - - setUp: function () { - carousel = new YAHOO.widget.Carousel("container"); - carouselEl = Dom.get("carousel"); - carousel.render(); - carousel3 = new YAHOO.widget.Carousel("container3", { - carouselEl: "UL" }); - carouselEl3 = Dom.get("carousel3"); - carousel3.render(); - }, - - tearDown : function () { - delete carousel; - } - }); - - YAHOO.CarouselTests.markupTests.add(initFromMarkupTest); -})(); -/* -;; Local variables: ** -;; mode: js2 ** -;; indent-tabs-mode: nil ** -;; End: ** -*/ diff --git a/www/extras/yui/tests/carousel/tests/protectedMethodTests.js b/www/extras/yui/tests/carousel/tests/protectedMethodTests.js deleted file mode 100644 index 5e41f435e6..0000000000 --- a/www/extras/yui/tests/carousel/tests/protectedMethodTests.js +++ /dev/null @@ -1,63 +0,0 @@ -(function () { - var ArrayAssert = YAHOO.util.ArrayAssert, - Assert = YAHOO.util.Assert, - carousel, - protectedMethods, - ObjectAssert = YAHOO.util.ObjectAssert; - - YAHOO.namespace("CarouselTests"); - - protectedMethods = new YAHOO.tool.TestCase({ - testGetValidIndex: function () { - carousel.set("numItems", 9); - Assert.areEqual(0, carousel._getValidIndex(0), - "_getValidIndex(0) should have returned 0"); - Assert.areEqual(3, carousel._getValidIndex(3), - "_getValidIndex(3) should have returned 3"); - Assert.areEqual(6, carousel._getValidIndex(6), - "_getValidIndex(6) should have returned 6"); - Assert.areEqual(8, carousel._getValidIndex(9), - "_getValidIndex(9) should have returned 8"); - Assert.areEqual(0, carousel._getValidIndex(-3), - "_getValidIndex(-3) should have returned 0"); - - carousel.set("numItems", 8); - carousel.set("isCircular", true); - }, - - testGetValidIndexForCircularCarousel: function () { - carousel.set("numItems", 8); - carousel.set("isCircular", true); - Assert.areEqual(0, carousel._getValidIndex(0), - "_getValidIndex(0) should have returned 0"); - Assert.areEqual(3, carousel._getValidIndex(3), - "_getValidIndex(3) should have returned 3"); - Assert.areEqual(6, carousel._getValidIndex(6), - "_getValidIndex(6) should have returned 6"); - Assert.areEqual(0, carousel._getValidIndex(9), - "_getValidIndex(9) should have returned 0"); - Assert.areEqual(6, carousel._getValidIndex(-3), - "_getValidIndex(-3) should have returned 6"); - } - }); - - YAHOO.CarouselTests.protectedMethodTests = new YAHOO.tool.TestSuite({ - name: "Carousel (protected methods) Tests", - - setUp: function () { - carousel = new YAHOO.widget.Carousel("container5"); - }, - - tearDown : function () { - delete carousel; - } - }); - - YAHOO.CarouselTests.protectedMethodTests.add(protectedMethods); -})(); -/* -;; Local variables: ** -;; mode: js2 ** -;; indent-tabs-mode: nil ** -;; End: ** -*/ diff --git a/www/extras/yui/tests/carousel/tests/scriptTests.js b/www/extras/yui/tests/carousel/tests/scriptTests.js deleted file mode 100644 index 0ec2115034..0000000000 --- a/www/extras/yui/tests/carousel/tests/scriptTests.js +++ /dev/null @@ -1,285 +0,0 @@ -(function () { - var ArrayAssert = YAHOO.util.ArrayAssert, - Assert = YAHOO.util.Assert, - carousel, carousel4, - carouselEl, carouselEl4, - Dom = YAHOO.util.Dom, - initFromScriptTest, - ObjectAssert = YAHOO.util.ObjectAssert; - - YAHOO.namespace("CarouselTests"); - - initFromScriptTest = new YAHOO.tool.TestCase({ - name: "Initialize from script test", - - testCreation: function () { - return Assert.areEqual(true, - Dom.hasClass(carouselEl, "yui-carousel-element")); - }, - - testCreationFromUl: function () { - return Assert.areEqual(true, - Dom.hasClass(carouselEl4, "yui-carousel-element")); - }, - - testNumItems: function () { - return Assert.areEqual(4, carousel.get("numItems")); - }, - - testNumItemsInTable: function () { - return Assert.areEqual(4, carousel._itemsTable.numItems); - }, - - testitemsInTable: function () { - return Assert.areEqual(4, carousel._itemsTable.items.length); - }, - - testgetElementForItem: function () { - var actual = [], expected = [], i, items; - - items = Dom.getChildrenBy(carouselEl, function (node) { - return node.nodeName.toUpperCase() == "LI"; - }); - if (!items || items.length != 4) { - Assert.fail(); - } - - for (i = 0; i < items.length; i++) { - actual.push(carousel.getElementForItem(i)); - expected.push(items[i]); - } - - return ArrayAssert.itemsAreEqual(expected, actual); - }, - - testgetElementForItems: function () { - var expected = [], i, items; - - items = Dom.getChildrenBy(carouselEl, function (node) { - return node.nodeName.toUpperCase() == "LI"; - }); - if (!items || items.length != 4) { - Assert.fail(); - } - - for (i in items) { - if (items.hasOwnProperty(i)) { - expected.push(items[i]); - } - } - - return ArrayAssert.itemsAreEqual(expected, - carousel.getElementForItems()); - }, - - testgetVisibleItems: function () { - var expected = [], i, j, items; - - items = Dom.getChildrenBy(carouselEl, function (node) { - return node.nodeName.toUpperCase() == "LI"; - }); - if (!items || items.length != 4) { - Assert.fail(); - } - - j = 0; - for (i in items) { - j++; - if (j > 3) { - break; - } - if (items.hasOwnProperty(i)) { - expected.push(items[i]); - } - } - - return ArrayAssert.itemsAreEqual(expected, - carousel.getVisibleItems()); - }, - - testClearItems: function () { - carousel.clearItems(); - return Assert.areEqual(0, carousel.get("numItems")) && - Assert.areEqual(0, carousel._itemsTable.numItems) && - ArrayAssert.itemsAreEqual([], - carousel._itemsTable.items); - }, - - testAddItem: function () { - carousel.addItem("Six"); - carousel.addItem("Seven", 0); - return Assert.areEqual("Six", carousel.getItem(1).item) && - Assert.areEqual("Seven", carousel.getItem(0).item); - }, - - testAddItems: function () { - carousel.addItems([["Eight",0],["Nine",0]]); - return Assert.areEqual("Six", carousel.getItem(3).item) && - Assert.areEqual("Seven", carousel.getItem(2).item) && - Assert.areEqual("Eight", carousel.getItem(1).item) && - Assert.areEqual("Nine", carousel.getItem(0).item); - }, - - testgetItem: function () { - var children = Dom.getChildrenBy(carouselEl, - function (node) { - return node.nodeName.toUpperCase() == "LI"; - }), - els = [], i; - - for (i in children) { - els.push(children[i]); - } - - return ObjectAssert.propertiesAreEqual({ className: "", - id: els[2].id, - item: "Seven" }, - carousel.getItem(2)); - }, - - testgetItems: function () { - var children = Dom.getChildrenBy(carouselEl, - function (node) { - return node.nodeName.toUpperCase() == "LI"; - }), - expected = [], i; - - function compareItems(a, b) { - return a.className === b.className && - a.id === b.id && a.item === b.item; - } - - for (i in children) { - expected.push({ className: "", id: children[i].id, - item: children[i].innerHTML }); - } - - return ArrayAssert.itemsAreEquivalent(expected, - carousel.getItems(), - compareItems); - }, - - testgetItemPositionById: function () { - var children = Dom.getChildrenBy(carouselEl, - function (node) { - return node.nodeName.toUpperCase() == "LI"; - }); - - return Assert.areEqual(2, - carousel.getItemPositionById(children[2].id)); - }, - - testremoveItem: function () { - var children = Dom.getChildrenBy(carouselEl, - function (node) { - return node.nodeName.toUpperCase() == "LI"; - }), - item; - - item = children[2]; - carousel.removeItem(2); - return Assert.areEqual(null, Dom.get(item.id)) && - Assert.areEqual(3, carousel.get("numItems")) && - Assert.areEqual(3, carousel._itemsTable.numItems); - }, - - testScrollForward: function () { - carousel.addItems([["Ten",0],["Eleven",0],["Twelve",0]]); - carousel.scrollForward(); - Assert.areEqual("-100px", carouselEl.style.left); - }, - - testScrollPageForward: function () { - carousel.set("firstVisible", 0); - carousel.scrollPageForward(); - Assert.areEqual("-300px", carouselEl.style.left); - }, - - testScrollBackward: function () { - carousel.set("firstVisible", 3); - carousel.scrollBackward(); - Assert.areEqual("-200px", carouselEl.style.left); - }, - - testScrollPageBackward: function () { - carousel.set("firstVisible", 3); - carousel.scrollPageBackward(); - Assert.areEqual("0px", carouselEl.style.left); - }, - - testScrollTo: function () { - Dom.setStyle(carouselEl, "left", ""); - carousel.scrollTo(3); - Assert.areEqual("-300px", carouselEl.style.left); - }, - - testSetNumVisible: function () { - var contentEl = carouselEl.parentNode, - num = carousel.get("numItems"); - - function isSameWidth(el, w) { - return parseInt(Dom.getStyle(el, "width"), 10) == w; - } - - if (carousel.get("numVisible") != 3 || - !isSameWidth(contentEl, 300)) { - return Assert.fail("numVisible should be 3 by default"); - } - carousel.set("numVisible", 1); - if (carousel.get("numVisible") != 1 || - !isSameWidth(contentEl, 100)) { - return Assert.fail("numVisible should be 1 by default"); - } - carousel.set("numVisible", num); - if (carousel.get("numVisible") != num || - !isSameWidth(contentEl, num * 100)) { - return Assert.fail("numVisible should have been " + num); - } - carousel.set("numVisible", 1); - if (carousel.get("numVisible") != 1 || - !isSameWidth(contentEl, 100)) { - return Assert.fail("numVisible should have been 1"); - } - carousel.set("numVisible", 3); - return Assert.areEqual(3, carousel.get("numVisible")) && - Assert.areEqual(true, areSameWidth(carouselEl, 300)); - } - }); - - YAHOO.CarouselTests.scriptTests = new YAHOO.tool.TestSuite({ - name: "Carousel (from Script) Tests", - - setUp: function () { - var items; - - carousel = new YAHOO.widget.Carousel("container2"); - carousel.addItems([["One"], ["Two"], ["Three"], ["Four"]]); - carousel.render(); - items = Dom.getElementsByClassName("yui-carousel-element", - "OL", carousel.get("element")); - if (YAHOO.lang.isArray(items) && items.length == 1) { - carouselEl = items[0]; - } - carousel4 = new YAHOO.widget.Carousel("container4", { - carouselEl: "UL" }); - carousel4.render(); - items = Dom.getElementsByClassName("yui-carousel-element", - "UL", carousel4.get("element")); - if (YAHOO.lang.isArray(items) && items.length == 1) { - carouselEl4 = items[0]; - } - }, - - tearDown : function () { - delete carousel; - } - }); - - YAHOO.CarouselTests.scriptTests.add(initFromScriptTest); -})(); -/* -;; Local variables: ** -;; mode: js2 ** -;; indent-tabs-mode: nil ** -;; End: ** -*/ diff --git a/www/extras/yui/tests/colorpicker/tests/colorpicker.html b/www/extras/yui/tests/colorpicker/tests/colorpicker.html deleted file mode 100644 index 350d5ea71f..0000000000 --- a/www/extras/yui/tests/colorpicker/tests/colorpicker.html +++ /dev/null @@ -1,167 +0,0 @@ - - - -Slider/ColorPicker Test Suite - - - - - - - - - -
    -
    picker
    -
    picker #2
    -
    - - - - - - - - - - - - - - - diff --git a/www/extras/yui/tests/common/tests/YUI.html b/www/extras/yui/tests/common/tests/YUI.html deleted file mode 100644 index 08b43f4e0f..0000000000 --- a/www/extras/yui/tests/common/tests/YUI.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - YUI Library Master Test Page - - - - - - - - - - - - - - - -

    YUI Library Master Test Page

    - - -
    - - - diff --git a/www/extras/yui/tests/connection/tests/setForm.html b/www/extras/yui/tests/connection/tests/setForm.html deleted file mode 100644 index 3eeffdf4f9..0000000000 --- a/www/extras/yui/tests/connection/tests/setForm.html +++ /dev/null @@ -1,635 +0,0 @@ - - - - Test Page - - - - - - - -

    Tests

    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - diff --git a/www/extras/yui/tests/connection/tests/submitReporter.php b/www/extras/yui/tests/connection/tests/submitReporter.php deleted file mode 100644 index f884cbe148..0000000000 --- a/www/extras/yui/tests/connection/tests/submitReporter.php +++ /dev/null @@ -1,8 +0,0 @@ - $_POST, - GET => $_GET -))); -?> diff --git a/www/extras/yui/tests/container/tests/config.html b/www/extras/yui/tests/container/tests/config.html deleted file mode 100644 index 44b67ebeb3..0000000000 --- a/www/extras/yui/tests/container/tests/config.html +++ /dev/null @@ -1,243 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/www/extras/yui/tests/container/tests/module.html b/www/extras/yui/tests/container/tests/module.html deleted file mode 100644 index 3e2d4067e8..0000000000 --- a/www/extras/yui/tests/container/tests/module.html +++ /dev/null @@ -1,443 +0,0 @@ - - - - - YAHOO.widget.Module Tests - - - - - - - - - - - - - - - - - - - - -
    -
    The body of the module1
    -
    - - - diff --git a/www/extras/yui/tests/cookie/tests/cookie.html b/www/extras/yui/tests/cookie/tests/cookie.html deleted file mode 100644 index 3891cd6fa9..0000000000 --- a/www/extras/yui/tests/cookie/tests/cookie.html +++ /dev/null @@ -1,1701 +0,0 @@ - - -cookie tests - - - - - - - - - - -

    cookie tests

    -

    - - - diff --git a/www/extras/yui/tests/datasource/tests/datasource.html b/www/extras/yui/tests/datasource/tests/datasource.html deleted file mode 100644 index 7becdb5737..0000000000 --- a/www/extras/yui/tests/datasource/tests/datasource.html +++ /dev/null @@ -1,687 +0,0 @@ - - -YUI DataSource Tests - - - - - - -

    DataSource Tests

    -

    - - - - - - - - - - - - - - - - - diff --git a/www/extras/yui/tests/datasource/tests/date.php b/www/extras/yui/tests/datasource/tests/date.php deleted file mode 100644 index bfebf02282..0000000000 --- a/www/extras/yui/tests/datasource/tests/date.php +++ /dev/null @@ -1,306 +0,0 @@ - - - - - - - - - - - -

    Testing: ( - -)

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    format US English UK English French Canadian French Swiss French German Swiss German Hindi Hangul
    PHP Javascript PHP Javascript PHP Javascript PHP Javascript PHP Javascript PHP Javascript PHP Javascript PHP Javascript PHP Javascript
    - - - - - - - - - - - - - - - - - - - -
    - - - - array(), - "A" => array(), - "b" => array(), - "B" => array(), - "c" => "%Y %m %d (%a) %r", - "p" => array(), - "P" => array(), - "r" => "%p %I %M %S %p %Z", - "x" => "%Y %m %d", - "X" => "%H %M %S" -); -$lc['c'] = strftime("%c"); -$lc['r'] = strftime("%r"); -$lc['x'] = strftime("%X"); -$lc['X'] = strftime("%X"); -for($i=6; $i<13; $i++) -{ - $d = strtotime("2008/01/$i"); - $lc['a'][] = strftime("%a", $d); - $lc['A'][] = strftime("%A", $d); -} -for($i=1; $i<13; $i++) -{ - $d = strtotime("2008/$i/1"); - $lc['b'][] = strftime("%b", $d); - $lc['B'][] = strftime("%B", $d); -} - -$d = strtotime("2008/01/01 10:00:00"); -$lc['p'][] = strftime("%p", $d); -$lc['P'][] = strftime("%p", $d); -$d = strtotime("2008/01/01 22:00:00"); -$lc['p'][] = strftime("%p", $d); -$lc['P'][] = strftime("%p", $d); - -echo ""; -?> - - diff --git a/www/extras/yui/tests/datasource/tests/php/proxy_ylocal.php b/www/extras/yui/tests/datasource/tests/php/proxy_ylocal.php deleted file mode 100644 index c80bb8aafa..0000000000 --- a/www/extras/yui/tests/datasource/tests/php/proxy_ylocal.php +++ /dev/null @@ -1,45 +0,0 @@ - $value) { - if(($key == "output") && ($value == "json")) { - $type = "application/json"; - } - $query .= urlencode($key)."=".urlencode($value)."&"; -} - -foreach ($_POST as $key => $value) { - if(($key == "output") && ($value == "json")) { - $type = "application/json"; - } - $query .= $key."=".$value."&"; -} -$query .= "appid=YahooDemo"; -$url = PATH.$query; - - -// Open the Curl session -$session = curl_init($url); - -// Don't return HTTP headers. Do return the contents of the call -curl_setopt($session, CURLOPT_HEADER, false); -curl_setopt($session, CURLOPT_RETURNTRANSFER, true); - -// Make the call -$response = curl_exec($session); - -header("Content-Type: ".$type); -echo $response; -curl_close($session); - -?> diff --git a/www/extras/yui/tests/datasource/tests/php/xhr_table.php b/www/extras/yui/tests/datasource/tests/php/xhr_table.php deleted file mode 100644 index 160983e0a6..0000000000 --- a/www/extras/yui/tests/datasource/tests/php/xhr_table.php +++ /dev/null @@ -1,49 +0,0 @@ - 0) { - $rows = $_GET['rows']; -} - -// How many columns -if(strlen($_GET['cols']) > 0) { - $cols = $_GET['cols']; -} - -// Return the data -returnMarkup($rows, $cols); - -function returnMarkup($rows, $cols) { - // start the table - $markup = ""; - - // build the thead - for($i=0; $i<$cols; $i++) { - $markup = $markup.""; - } - $markup = $markup.""; - - // build the tbody - for($j=0; $j<$rows; $j++) { - $markup = $markup.""; - for($i=0; $i<$cols; $i++) { - $markup = $markup.""; - } - $markup = $markup.""; - } - // end the table - $markup = $markup."
    header ".$i."
    data cell ".$j."-".$i."
    "; - - echo $markup; -} -?> diff --git a/www/extras/yui/tests/datasource/tests/xmlparsing.html b/www/extras/yui/tests/datasource/tests/xmlparsing.html deleted file mode 100644 index 9286173c4b..0000000000 --- a/www/extras/yui/tests/datasource/tests/xmlparsing.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - -Test - - - - - - - - - - - - - - - - - - - - -
    - -
    - -
    - - - - - - - - - - diff --git a/www/extras/yui/tests/datatable/tests/2099844.html b/www/extras/yui/tests/datatable/tests/2099844.html deleted file mode 100644 index 26c5f3dddb..0000000000 --- a/www/extras/yui/tests/datatable/tests/2099844.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - Test Page - - - - - - - -

    Tests

    -
    - - - - - - - - - - - - diff --git a/www/extras/yui/tests/datatable/tests/datatable.html b/www/extras/yui/tests/datatable/tests/datatable.html deleted file mode 100644 index 72807c6b67..0000000000 --- a/www/extras/yui/tests/datatable/tests/datatable.html +++ /dev/null @@ -1,56 +0,0 @@ - - -YUI DataTable Tests - - - - - - - - - - - - - - - - - - - - - -

    DataTable Tests

    -

    - - - - diff --git a/www/extras/yui/tests/datatable/tests/datatable/ColumnSet.js b/www/extras/yui/tests/datatable/tests/datatable/ColumnSet.js deleted file mode 100644 index 16d92bf6b5..0000000000 --- a/www/extras/yui/tests/datatable/tests/datatable/ColumnSet.js +++ /dev/null @@ -1,152 +0,0 @@ -(function() { - var gCount = -1; - - var Dom=YAHOO.util.Dom, - Assert=YAHOO.util.Assert, - ObjectAssert=YAHOO.util.ObjectAssert, - ArrayAssert=YAHOO.util.ArrayAssert, - DateAssert=YAHOO.util.DateAssert, - UserAction=YAHOO.util.UserAction, - TestCase = YAHOO.tool.TestCase, - TestLogger = YAHOO.tool.TestLogger, - TestRunner = YAHOO.tool.TestRunner, - TestSuite = YAHOO.tool.TestSuite, - - DataSource = YAHOO.util.DataSource, - DataTable = YAHOO.widget.DataTable, - ColumnSet = YAHOO.widget.ColumnSet, - RecordSet = YAHOO.widget.RecordSet; - - /** - * - * - * Base DataTable test template. Sets up values for a DataTable instance. - * - * - */ - var dtBaseTemplate = { - name: "DataTable Base Tests", - - dsData: [ - {a:"0a",b:"0b",c:"0c"}, - {a:"1a",b:"1b",c:"1c"}, - {a:"2a",b:"2b",c:"2c"}, - {a:"3a",b:"3b",c:"3c"} - ], - - dsConfig: { - responseType:YAHOO.util.DataSource.TYPE_JSARRAY, - responseSchema:{fields:["a","b","c"]} - }, - - columns: [{key:"a"},{key:"b"},{key:"c"}] - }; - - /** - * - * - * Base DataTable test case. - * - * - */ - function DataTableTestCase(template) { - DataTableTestCase.superclass.constructor.call(this, template); - }; - YAHOO.lang.extend(DataTableTestCase, TestCase); - - DataTableTestCase.prototype.setUp = function() { - // Create container anew - this.container = document.createElement("div"); - ///this.container.id = "testDTContainer"; // Is this necessary? - document.body.appendChild(this.container); - - // Create DataSource anew - this.datasource = new YAHOO.util.DataSource(this.dsData, this.dsConfig); - }; - - DataTableTestCase.prototype.tearDown = function() { - // Destroy DataTable - this.datatable.destroy(); - this.datatable = null; - - // Destroy container - if(this.container !== null) { - YAHOO.util.Event.purgeElement(this.container, true); - document.body.removeChild(this.container); - this.container = null; - } - - // TODO: need a destroy method - this.datasource = null; - }; - - DataTableTestCase.prototype.createInstance = function(oDT, oConfig) { - oDT = oDT || DataTable; - this.datatable = new oDT(this.container, this.columns, this.datasource, oConfig); - gCount++; - return this.datatable; - }; - - /** - * - * - * Tests ColumnSet APIs. - * - * - */ - var csColumnSetTemplate = YAHOO.lang.merge(dtBaseTemplate, { - name: "DataTable ColumnSet Tests", - - testGetColumnSet: function() { - var dt = this.createInstance(); - var cs = dt.getColumnSet(); - - Assert.isInstanceOf(ColumnSet, cs, "Expected a ColumnSet"); - }, - - testGetColumn: function() { - var dt = this.createInstance(); - //dt.subscribe("initEvent", function() { - var cs = dt.getColumnSet(); - var oColumn = cs.keys[0]; - var sColId = oColumn.getId(); - - var el = dt.getTheadEl().rows[0].cells[0]; - var oTestColumn = dt.getColumn(el); - Assert.areSame(oColumn, oTestColumn, "Expected to get Column by el reference"); - - //TODO: get column by el reference child - - // Removed col elements - //el = Dom.get(dt.getId()+"-col"+sColId); - //oTestColumn = dt.getColumn(el); - //Assert.areSame(oColumn, oTestColumn, "Expected to get Column by DOM ID"); - - oTestColumn = dt.getColumn(0); - Assert.areSame(oColumn, oTestColumn, "Expected to get Column by key index"); - - oTestColumn = cs.getColumn("a"); - Assert.areSame(oColumn, oTestColumn, "Expected to get Column by key (ColumnSet method)"); - - oTestColumn = cs.getColumnById(sColId); - Assert.areSame(oColumn, oTestColumn, "Expected to get Column by Column ID (ColumnSet method)"); - //}); - } - - //TODO: More ColumnSet APIs - }); - var csColumnSetTest = new DataTableTestCase(csColumnSetTemplate); - /** - * - * - * Runs tests. - * - * - */ - YAHOO.util.Event.addListener(window, "load", function() { - var columnsetsuite = new TestSuite("ColumnSet Test Suite"); - columnsetsuite.add(csColumnSetTest); - - TestRunner.add(columnsetsuite); - }); -})(); diff --git a/www/extras/yui/tests/datatable/tests/datatable/DataTable.js b/www/extras/yui/tests/datatable/tests/datatable/DataTable.js deleted file mode 100644 index 0df8ad8ee6..0000000000 --- a/www/extras/yui/tests/datatable/tests/datatable/DataTable.js +++ /dev/null @@ -1,1930 +0,0 @@ -(function() { - - var gCount = -1; - - var Dom=YAHOO.util.Dom, - Assert=YAHOO.util.Assert, - ObjectAssert=YAHOO.util.ObjectAssert, - ArrayAssert=YAHOO.util.ArrayAssert, - DateAssert=YAHOO.util.DateAssert, - UserAction=YAHOO.util.UserAction, - TestCase = YAHOO.tool.TestCase, - TestLogger = YAHOO.tool.TestLogger, - TestRunner = YAHOO.tool.TestRunner, - TestSuite = YAHOO.tool.TestSuite, - - DataSource = YAHOO.util.DataSource, - DataTable = YAHOO.widget.DataTable, - ColumnSet = YAHOO.widget.ColumnSet, - RecordSet = YAHOO.widget.RecordSet; - - /** - * - * - * DataTable assertions. - * - * - */ - var DataTableAssert = { - areSameRow: function(elTr, oRecord, dt, msg) { - Assert.areSame("tr", elTr.tagName.toLowerCase(), "Expected a TR element: " + msg); - Assert.areSame(elTr.id, oRecord.getId(), "TR ID and Record IDs don't match: " + msg); - }, - - areSameCell: function(elTd, oRecord, oColumn, dt, msg) { - Assert.areSame("td", elTd.tagName.toLowerCase(), "Expected a TD element: " + msg); - Assert.areSame(elTd.cellIndex, oColumn.getKeyIndex(), "TR index and Column key index don't match: " + msg); - this.areSameRow(elTd.parentNode, oRecord, dt, msg); - } - }; - - /** - * - * - * Base DataTable test case. - * - * - */ - function DataTableTestCase(template) { - DataTableTestCase.superclass.constructor.call(this, template); - }; - YAHOO.lang.extend(DataTableTestCase, TestCase); - - DataTableTestCase.prototype.setUp = function() { - // Create container anew - this.container = document.createElement("div"); - document.body.appendChild(this.container); - - // Create DataSource anew - this.datasource = new YAHOO.util.DataSource(this.dsData, this.dsConfig); - }; - - DataTableTestCase.prototype.tearDown = function() { - // Destroy DataTable - this.datatable.destroy(); - this.datatable = null; - - // Destroy container - if(this.container !== null) { - YAHOO.util.Event.purgeElement(this.container, true); - document.body.removeChild(this.container); - this.container = null; - } - - // TODO: need a destroy method - this.datasource = null; - }; - - DataTableTestCase.prototype.createInstance = function(oDT, oConfig) { - oDT = oDT || DataTable; - this.datatable = new oDT(this.container, this.columns, this.datasource, oConfig); - gCount++; - return this.datatable; - }; - - /** - * - * - * Base DataTable test template. Sets up values for a DataTable instance. - * - * - */ - var dtBaseTemplate = { - name: "DataTable Base Tests", - - dsData: [ - {a:"0a",b:"0b",c:"0c"}, - {a:"1a",b:"1b",c:"1c"}, - {a:"2a",b:"2b",c:"2c"}, - {a:"3a",b:"3b",c:"3c"} - ], - - dsConfig: { - responseType:YAHOO.util.DataSource.TYPE_JSARRAY, - responseSchema:{fields:["a","b","c"]} - }, - - columns: [{key:"a"},{key:"b"},{key:"c"}] - }; - - /** - * - * - * Tests various construction use cases. - * - * - */ - var dtConstructionTemplate = YAHOO.lang.merge(dtBaseTemplate, { - name: "DataTable Construction Tests", - - testConstruction: function() { - var dt = this.createInstance(); - - Assert.isInstanceOf(DataTable, this.datatable, "Failed to create DataTable instance"); - Assert.isInstanceOf(ColumnSet, this.datatable.getColumnSet(), "Failed to create ColumnSet instance"); - Assert.isInstanceOf(RecordSet, this.datatable.getRecordSet(), "Failed to create RecordSet instance"); - Assert.areSame(this.dsData.length, this.datatable.getRecordSet().getLength(), "Unexpected RecordSet length"); - - }, - - testNestedHeaders: function() { - //TODO - var dt = this.createInstance(); - }, - - testMultipleInstances: function() { - var multiple = 3; // Set how many instances (total) to create for this test case - - // Create first instance - var dt = this.createInstance(); - var cs = dt.getColumnSet(); - var oColumn = cs.keys[0]; - - // Create more instances - for(var i=1; i - - YUI DateMath Tests - - - - - - - - - - - - - -

    YAHOO.widget.DateMath Tests

    -

    - - - diff --git a/www/extras/yui/tests/dom/tests/dom.html b/www/extras/yui/tests/dom/tests/dom.html deleted file mode 100644 index e92a2a63e2..0000000000 --- a/www/extras/yui/tests/dom/tests/dom.html +++ /dev/null @@ -1,594 +0,0 @@ - - - -DOM Test Suite - - - - - - - - - - - - - - - - lorem - ipsum - dolor -
    -
    test computed style
    -
    -
    -
    -

    Page Header

    -
    -
    -
    -

    Section Header

    - lorem ipsum -
    -
    -

    Module Header

    -
    -
    -

    Fusce feugiat diam. Vestibulum elementum dui in augue. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Mauris pulvinar.

    -
    - -
    -
    -
    -

    Module Header

    -
    -
    - -
    - -
    -
    -
    -
    -

    In hac habitasse platea dictumst. Sed sit amet ligula vitae justo consequat facilisis. Integer tortor. Integer erat. In hac habitasse platea dictumst. Phasellus convallis quam vitae turpis aliquam lobortis. Aliquam scelerisque condimentum lectus. Proin semper adipiscing leo. Nulla facilisi.

    -
    -
    - - - diff --git a/www/extras/yui/tests/dragdrop/tests/index.html b/www/extras/yui/tests/dragdrop/tests/index.html deleted file mode 100644 index 142bd5ca0a..0000000000 --- a/www/extras/yui/tests/dragdrop/tests/index.html +++ /dev/null @@ -1,274 +0,0 @@ - - - -YUI Tests - - - - - - - - - - - - - - -
    -
    dd1
    -
    dd2
    -
    way down
    -
    -
    way down
    - -

    Drag and Drop Test Page

    - - - diff --git a/www/extras/yui/tests/editor/tests/index.html b/www/extras/yui/tests/editor/tests/index.html deleted file mode 100644 index 5b15bbde2a..0000000000 --- a/www/extras/yui/tests/editor/tests/index.html +++ /dev/null @@ -1,45 +0,0 @@ - - - -Editor Test Suite - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - -
    This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test.

    This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test.
    -
    This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test.

    This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test.
    -
    - - diff --git a/www/extras/yui/tests/editor/tests/tests.js b/www/extras/yui/tests/editor/tests/tests.js deleted file mode 100644 index ac289b9061..0000000000 --- a/www/extras/yui/tests/editor/tests/tests.js +++ /dev/null @@ -1,403 +0,0 @@ -var editor = null; -(function() { - var Dom = YAHOO.util.Dom, - Event = YAHOO.util.Event, - Tool = YAHOO.tool, - Suite = new Tool.TestSuite('yuisuite'), - Assert = YAHOO.util.Assert, - eFocus = null; - - - - Event.onDOMReady(function() { - editor = new YAHOO.widget.Editor('editor', { - dompath: true, - nodeChangeDelay: false, - removeLineBreaks: true, - animate: true, - width: '700px', - resize: true, - drag: true - }); - editor.render(); - - var logger = new Tool.TestLogger(null, { height: '80%' }); - editor.on('windowRender', function() { //We have to wait until the all windows render before we can start testing it.. - Suite.add( new Tool.TestCase({ - name: 'YAHOO.widget.Editor', - test_render: function() { - Assert.areEqual(Dom.get('editor_container'), editor.get('element_cont').get('element'), 'Could not find Editors container'); - Assert.areEqual(Dom.get('editor_toolbar'), editor.toolbar.get('element'), 'Could not find Editors Toolbar'); - Assert.isInstanceOf(YAHOO.widget.Toolbar, editor.toolbar, 'Could not find Toolbars Instance'); - Assert.areEqual(Dom.getStyle('editor', 'display'), editor.getStyle('display'), 'Textarea is visible..'); - Assert.isInstanceOf(YAHOO.widget.Overlay, editor.get('panel'), 'Could not find Overlay Instance'); - }, - test_content: function() { - var t_data = Dom.get('editor').value; - var e_data = editor.getEditorHTML(); - Assert.areEqual(t_data, e_data, 'Editor data is different than text area'); - }, - test_window: function() { - Assert.areEqual(document.getElementById('editor_editor').contentWindow, editor._getWindow(), 'Window object is not right'); - }, - test_doc: function() { - Assert.areEqual(document.getElementById('editor_editor').contentWindow.document, editor._getDoc(), 'Document object is not right'); - }, - test_focus: function() { - YAHOO.util.UserAction.click(document); - - editor.on('editorWindowFocus', function() { - eFocus = true; - }); - editor.focus(); - editor.afterElement.focus(); - - Assert.areEqual(true, eFocus, 'Editor focus event FAILED'); - }, - test_ol_list_create_inline: function() { - var html = 'Item1
    Item2
    Item3
    Item4
    '; - editor.setEditorHTML(html); - editor.execCommand('selectall'); - editor.execCommand('insertorderedlist', ''); - var ol = editor._getDoc().getElementsByTagName('ol'); - Assert.areEqual(ol.length, 1, 'Failed to create list from source'); - var lis = editor._getDoc().getElementsByTagName('li'); - Assert.areEqual(lis.length, 4, 'Failed to create list items from source'); - editor.execCommand('selectall'); - editor.execCommand('insertorderedlist', ''); - var lis = editor._getDoc().getElementsByTagName('li'); - Assert.areEqual(lis.length, 0, 'Failed to remove list items from source'); - }, - test_ul_list_create_inline: function() { - var html = 'Item1
    Item2
    Item3
    Item4
    Item5
    Item6
    Item7'; - editor.setEditorHTML(html); - editor.execCommand('selectall'); - editor.execCommand('insertunorderedlist', ''); - var ul = editor._getDoc().getElementsByTagName('ul'); - Assert.areEqual(ul.length, 1, 'Failed to create list from source'); - var lis = editor._getDoc().getElementsByTagName('li'); - Assert.areEqual(lis.length, 7, 'Failed to create list items from source'); - editor.execCommand('selectall'); - editor.execCommand('insertunorderedlist', ''); - var lis = editor._getDoc().getElementsByTagName('li'); - Assert.areEqual(lis.length, 0, 'Failed to remove list items from source'); - }, - test_regex: function() { - editor.setEditorHTML(Dom.get('testRegEx').innerHTML); - //editor._getDoc().body.innerHTML = Dom.get('testRegEx').innerHTML; - var e_data = (editor.cleanHTML()).toLowerCase().replace(/;"/g, '"'); - var real_data = editor.filter_all_rgb(Dom.get('testRegEx2').innerHTML.toLowerCase()).replace(/;"/g, '"'); - Assert.areEqual(real_data, e_data, 'Regex save routine failed'); - }, - - test_blank_image: function() { - editor.toolbar.resetAllButtons(); - var picURL = editor.get('blankimage'); - editor._focusWindow(); - editor.toolbar.getButtonByValue('insertimage').fireEvent('mousedown', { ev: 'mousedown' }); - var pic = editor._getDoc().getElementsByTagName('img')[0]; - - Assert.areEqual(picURL, pic.getAttribute('src', 2), 'Image source and string do not match'); - Assert.isInstanceOf(YAHOO.widget.EditorWindow, editor.currentWindow, 'Editor Window Failed to Open'); - editor.closeWindow(); - Assert.areEqual(null, editor.currentWindow, 'Editor Window Failed to Close'); - editor.toolbar.resetAllButtons(); - Assert.areEqual(null, pic.parentNode, 'Image is still inside the editor'); - - }, - test_selected_element: function() { - - editor.setEditorHTML('This is a test element'); - var em = editor._getDoc().getElementById('test'); - editor._selectNode(em); - - Assert.areEqual(editor._getDoc().getElementById('test'), editor._getSelectedElement(), 'Selected Element is not em#test'); - Assert.areEqual(true, editor.toolbar.getButtonByValue('italic').hasClass('yui-button-selected'), 'Italic button is not selected'); - editor.toolbar.resetAllButtons(); - - }, - test_dom_path: function() { - editor.setEditorHTML('

    This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test.

    This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test.

    This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test.

    '); - var em = editor._getDoc().getElementById('test'); - editor._selectNode(em); - //Editor timing is out here, force a DomPath write.. - editor._writeDomPath(); - Assert.areEqual('body < p < em < strong#tes...', editor.dompath.innerHTML.toLowerCase().replace(/"/g, ''), 'Dom path is not correct..'); - Assert.areEqual(true, editor.toolbar.getButtonByValue('bold').hasClass('yui-button-selected'), 'Bold button is not selected'); - Assert.areEqual(true, editor.toolbar.getButtonByValue('italic').hasClass('yui-button-selected'), 'Italic button is not selected'); - editor.toolbar.resetAllButtons(); - }, - test_insertimage: function() { - var picURL = 'http:/'+'/farm1.static.flickr.com/171/379031784_e4ba36a375_t_d.jpg'; - editor._focusWindow(); - editor.execCommand('insertimage', picURL); - var pic = editor._getDoc().getElementsByTagName('img')[0]; - - Assert.areEqual(picURL, pic.getAttribute('src', 2)); - }, - test_image_props: function() { - var pic = editor._getDoc().getElementsByTagName('img')[0]; - YAHOO.util.UserAction.dblclick(pic); - Assert.isInstanceOf(YAHOO.widget.EditorWindow, editor.currentWindow, 'Editor Window Failed to Open'); - }, - test_close_window: function() { - editor.closeWindow(); - Assert.areEqual(null, editor.currentWindow, 'Editor Window Failed to Close'); - editor.toolbar.resetAllButtons(); - }, - test_hidden_elements: function() { - editor.toolbar.getButtonByValue('hiddenelements').fireEvent('mousedown', { ev: 'mousedown' }); - Assert.areEqual(true, Dom.hasClass(editor._getDoc().body, 'yui-hidden'), 'hidden class is not on the body'); - editor.toolbar.getButtonByValue('hiddenelements').fireEvent('mousedown', { ev: 'mousedown' }); - Assert.areEqual(false, Dom.hasClass(editor._getDoc().body, 'yui-hidden'), 'hidden class is on the body'); - }, - test_event_before_mouseup: function() { - var event = false; - editor.on('beforeEditorMouseUp', function() { - event = true; - }); - YAHOO.util.UserAction.mouseup(editor._getDoc().body); - Assert.areEqual(true, event, 'BeforeMouseUP Event failed to Fired'); - }, - test_event_mouseup: function() { - var event = false; - editor.on('editorMouseUp', function() { - event = true; - }); - YAHOO.util.UserAction.mouseup(editor._getDoc().body); - Assert.areEqual(true, event, 'MouseUP Event failed to Fired'); - }, - test_event_before_mousedown: function() { - var event = false; - editor.on('beforeEditorMouseDown', function() { - event = true; - }); - YAHOO.util.UserAction.mousedown(editor._getDoc().body); - Assert.areEqual(true, event, 'BeforeMouseDsaveown Event failed to Fired'); - }, - test_event_mousedown: function() { - var event = false; - editor.on('editorMouseDown', function() { - event = true; - }); - YAHOO.util.UserAction.mousedown(editor._getDoc().body); - Assert.areEqual(true, event, 'MouseDown Event failed to Fired'); - }, - test_event_before_click: function() { - var event = false; - editor.on('beforeEditorClick', function() { - event = true; - }); - YAHOO.util.UserAction.click(editor._getDoc().body); - Assert.areEqual(true, event, 'BeforeClick Event failed to Fired'); - }, - test_event_click: function() { - var event = false; - editor.on('editorClick', function() { - event = true; - }); - YAHOO.util.UserAction.click(editor._getDoc().body); - Assert.areEqual(true, event, 'Click Event failed to Fired'); - }, - test_event_before_double_click: function() { - var event = false; - editor.on('beforeEditorDoubleClick', function() { - event = true; - }); - YAHOO.util.UserAction.dblclick(editor._getDoc().body); - Assert.areEqual(true, event, 'BeforeDoubleClick Event failed to Fired'); - }, - test_event_double_click: function() { - var event = false; - editor.on('editorDoubleClick', function() { - event = true; - }); - YAHOO.util.UserAction.dblclick(editor._getDoc().body); - Assert.areEqual(true, event, 'DoubleClick Event failed to Fired'); - }, - test_event_before_keyup: function() { - var event = false; - editor.on('beforeEditorKeyUp', function() { - event = true; - }); - YAHOO.util.UserAction.keyup(editor._getDoc().body); - Assert.areEqual(true, event, 'beforeKeyUp Event failed to Fired'); - }, - test_event_keyup: function() { - var event = false; - editor.on('editorKeyUp', function() { - event = true; - }); - YAHOO.util.UserAction.keyup(editor._getDoc().body); - Assert.areEqual(true, event, 'KeyUp Event failed to Fired'); - }, - test_event_before_keydown: function() { - var event = false; - editor.on('beforeEditorKeyDown', function() { - event = true; - }); - YAHOO.util.UserAction.keydown(editor._getDoc().body); - Assert.areEqual(true, event, 'BeforeKeyDown Event failed to Fired'); - }, - test_event_keydown: function() { - var event = false; - editor.on('editorKeyDown', function() { - event = true; - }); - YAHOO.util.UserAction.keydown(editor._getDoc().body); - Assert.areEqual(true, event, 'KeyDown Event failed to Fired'); - }, - test_event_before_keypress: function() { - var event = false; - editor.on('beforeEditorKeyPress', function() { - event = true; - }); - YAHOO.util.UserAction.keypress(editor._getDoc().body); - Assert.areEqual(true, event, 'BeforeKeyPress Event failed to Fired'); - }, - test_event_keypress: function() { - var event = false; - editor.on('editorKeyPress', function() { - event = true; - }); - YAHOO.util.UserAction.keypress(editor._getDoc().body); - Assert.areEqual(true, event, 'KeyPress Event failed to Fired'); - }, - test_createlink: function() { - editor.toolbar.resetAllButtons(); - editor.setEditorHTML('test'); - var e_data = editor.getEditorHTML(); - Assert.areEqual('test', e_data, 'Editor data is different than what was injected'); - editor.execCommand('selectall', ''); //FF 3.5 doesn't like this when contentEditable is used - editor.toolbar.getButtonByValue('createlink').fireEvent('mousedown', { ev: 'mousedown' }); - - Assert.isInstanceOf(YAHOO.widget.EditorWindow, editor.currentWindow, 'Editor Window Failed to Open'); - Dom.get(editor.get('id') + '_createlink_url').value = 'http:/'+'/www.yahoo.com'; - - editor.closeWindow(); - Assert.areEqual(null, editor.currentWindow, 'Editor Window Failed to Close'); - - var link = editor._getDoc().getElementsByTagName('a')[0]; - var linkURL = link.getAttribute('href', 2); - - Assert.areEqual('http:/'+'/www.yahoo.com', linkURL, 'Link url does not match what was set'); - editor.toolbar.resetAllButtons(); - }, - test_content_after: function() { - var t_data = Dom.get('editor').value; - editor.setEditorHTML(t_data); - var e_data = editor.getEditorHTML(); - Assert.areEqual(t_data, e_data, 'Editor data is different than text area'); - }, - test_dd: function() { - Assert.isInstanceOf(YAHOO.util.DD, editor.dd, 'DD not instantiated'); - }, - test_resize: function() { - Assert.isInstanceOf(YAHOO.util.Resize, editor.resize, 'Resize not instantiated'); - }, - test_headers: function() { - for (var i = 1; i < 6; i++) { - editor.setEditorHTML('This is a test header #' + i); - editor.execCommand('selectall', ''); - editor.execCommand('heading', 'h' + i); - var h1 = editor._getDoc().body.getElementsByTagName('h' + i); - Assert.areEqual(h1.length, 1, 'Did not find one H' + i + ' tag'); - } - }, - test_forecolor: function() { - editor.setEditorHTML('TEST'); - editor.execCommand('selectall', ''); - editor.execCommand('forecolor', '#bebebe'); - var el = editor._getDoc().body.firstChild; - var color = editor.filter_rgb(el.style.color); - Assert.areEqual(color, '#bebebe', 'Fore Colors do not match'); - }, - test_backcolor: function() { - editor.setEditorHTML('TEST'); - editor.execCommand('selectall', ''); - editor.execCommand('backcolor', '#bebebe'); - var el = editor._getDoc().body.firstChild; - var color = editor.filter_rgb(el.style.backgroundColor); - Assert.areEqual(color, '#bebebe', 'Back Colors do not match'); - }, - test_forecolor_font: function() { - editor.setEditorHTML('TEST'); - editor.execCommand('selectall', ''); - editor.execCommand('fontname', 'Verdana'); - editor.execCommand('selectall', ''); - editor.execCommand('forecolor', '#bebebe'); - var el = editor._getDoc().body.firstChild; - var color = editor.filter_rgb(el.style.color); - Assert.areEqual(color, '#bebebe', 'Fore Colors do not match'); - Assert.areEqual(el.style.fontFamily, 'Verdana', 'Font Names do not match'); - }, - test_forecolor_font_el: function() { - editor.setEditorHTML('TEST'); - editor.execCommand('selectall', ''); - editor.execCommand('fontname', 'Verdana'); - editor.execCommand('selectall', ''); - editor.execCommand('forecolor', '#bebebe'); - var el = editor._getDoc().body.firstChild, - testel = el; - - if (Dom.getFirstChild(el)) { - testel = el.firstChild; - } - var color = editor.filter_rgb(testel.style.color); - Assert.areEqual(color, '#bebebe', 'Fore Colors do not match'); - Assert.areEqual(testel.style.fontFamily, 'Verdana', 'Font Names do not match'); - Assert.areEqual(el.tagName.toLowerCase(), 'b', 'Elements do not match'); - }, - test_disable: function() { - editor.set('disabled', true); - Assert.isInstanceOf(YAHOO.util.Element, editor.get('disabled_iframe'), 'No Disabled Iframe'); - Assert.isInstanceOf(YAHOO.util.Element, editor._orgIframe, 'No Org Iframe'); - Assert.areEqual(editor.get('iframe'), editor.get('disabled_iframe'), 'Current iframe and disabled iframe are not the same'); - Assert.isNotNull(editor._mask, 'Mask is null'); - editor.set('disabled', false); - Assert.areEqual(editor.get('iframe'), editor._orgIframe, 'Current iframe and orginal iframe are not the same'); - Assert.isNull(editor._mask, 'Mask is not null'); - - }, - test_destroy: function() { - //More Tests Here - var panel = editor.get('panel').element; - editor.destroy(); - Assert.isNull(panel.offsetParent, 'Panel offsetParent is not null') - }, - test_render_node: function() { - var el = document.getElementById('editor'); - editor = new YAHOO.widget.SimpleEditor(el); - editor.render(); - Assert.areEqual(true, editor._rendered, 'Editor failed to render with HTML element passed to constructor'); - window.setTimeout(function() { - editor.destroy(); - }, 2000); - }, - test_no_textarea: function() { - var div = document.createElement('div'); - div.id = 'editor_div'; - div.style.height = '300px'; - div.style.width = '700px'; - div.innerHTML = 'This is a new div'; - document.body.appendChild(div); - - editor2 = new YAHOO.widget.SimpleEditor('editor_div'); - editor2.render(); - window.setTimeout(function() { - editor2.destroy(); - }, 3000); - Assert.areEqual('div', editor2._configs.element.value.tagName.toLowerCase(), 'Editor failed to render with HTML element (non TEXTAREA) passed to constructor'); - } - })); - Tool.TestRunner.add(Suite); - - if (parent && parent != window) { - YAHOO.tool.TestManager.load(); - } else { - YAHOO.tool.TestRunner.run(); - } - }); - }); -})(); - diff --git a/www/extras/yui/tests/element/tests/element.html b/www/extras/yui/tests/element/tests/element.html deleted file mode 100644 index ef0441577b..0000000000 --- a/www/extras/yui/tests/element/tests/element.html +++ /dev/null @@ -1,230 +0,0 @@ - - - -Element Test Suite - - - - - - - - - - - - - - - - - - -
    -
    foo
    - foo -
    - - - diff --git a/www/extras/yui/tests/element/tests/mouseenter.html b/www/extras/yui/tests/element/tests/mouseenter.html deleted file mode 100644 index 710a68c707..0000000000 --- a/www/extras/yui/tests/element/tests/mouseenter.html +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - MouseEnter and MouseLeave Event Tests - - - - - - - - - - - - - - - - - - -

    MouseEnter and MouseLeave Event Tests

    - -
      -
    • The background color of the div element should turn - orange and have a red outline when you move the mouse over it.
    • -
    • The background color of each li should change to yellow - when you mouse over it and have a red outline.
    • -
    - -
    -
      -
    • Item Type One
    • -
    • Item Type Two
    • -
    • Item Type Three
    • -
    -
    - - - - - - - diff --git a/www/extras/yui/tests/event-delegate/tests/delegation.html b/www/extras/yui/tests/event-delegate/tests/delegation.html deleted file mode 100644 index 2dd5163cd9..0000000000 --- a/www/extras/yui/tests/event-delegate/tests/delegation.html +++ /dev/null @@ -1,342 +0,0 @@ - - - - YUI Event Delegate Tests - - - - - - - - - - - - - - - - - -
    - -
    -

    H3 - Title

    -
    -

    simple paragraph with a link simple link

    -

    another paragraph with a complex link strong within linkfake image - complex link

    -
    -
    - -
    - - - -` \ No newline at end of file diff --git a/www/extras/yui/tests/event-delegate/tests/delegation2.html b/www/extras/yui/tests/event-delegate/tests/delegation2.html deleted file mode 100644 index f57f4b2740..0000000000 --- a/www/extras/yui/tests/event-delegate/tests/delegation2.html +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - Event Delegation Test - - - - - - - - - diff --git a/www/extras/yui/tests/event-mouseenter/tests/mouseenter.html b/www/extras/yui/tests/event-mouseenter/tests/mouseenter.html deleted file mode 100644 index 5697f35d69..0000000000 --- a/www/extras/yui/tests/event-mouseenter/tests/mouseenter.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - MouseEnter and MouseLeave Event Tests - - - - - - - - - - - - - - - - - - -

    MouseEnter and MouseLeave Event Tests

    - -
      -
    • The background color of the div element should turn - orange and have a red outline when you move the mouse over it.
    • -
    • The background color of each li should change to yellow - when you mouse over it and have a red outline.
    • -
    - -
    -
      -
    • Item Type One
    • -
    • Item Type Two
    • -
    • Item Type Three
    • -
    -
    - - - - - diff --git a/www/extras/yui/tests/event-mouseenter/tests/mouseenter2.html b/www/extras/yui/tests/event-mouseenter/tests/mouseenter2.html deleted file mode 100644 index d782e7cc5d..0000000000 --- a/www/extras/yui/tests/event-mouseenter/tests/mouseenter2.html +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - MouseEnter Event Test - - - - - - - - - diff --git a/www/extras/yui/tests/event-mouseenter/tests/mouseenter3.html b/www/extras/yui/tests/event-mouseenter/tests/mouseenter3.html deleted file mode 100644 index 02cb2a22fb..0000000000 --- a/www/extras/yui/tests/event-mouseenter/tests/mouseenter3.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - MouseEnter and MouseLeave Event Tests - - - - - - - - - - - - - - - - - -

    MouseEnter and MouseLeave Event Tests

    - -

    Using this test:

    - -
      -
    • Purging mouseover and mouseout listeners shouldn't stop mouseenter and mouseleave events from firing.
    • -
    • Purging mouseenter and mouseleave listeners shouldn't stop mouseover and mouseout events from firing.
    • -
    - -

    Event listeners are added to the following list:

    - -
    -
      -
    • Item Type One
    • -
    • Item Type Two
    • -
    • Item Type Three
    • -
    -
    - - - - - - - - diff --git a/www/extras/yui/tests/event/tests/focusblur.html b/www/extras/yui/tests/event/tests/focusblur.html deleted file mode 100644 index 6615b66868..0000000000 --- a/www/extras/yui/tests/event/tests/focusblur.html +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - Focus and Blur Test - - - - - - - - - - - - - - -

    Focus and Blur Test

    - -
      -
    • Test subscribing to the capture mode-based focus and blur event - using the built-in onAvailable (this didn't work in YUI 2.7 and - versions prior)
    • -
    • For Opera: Test being able to use capture mode-based focus and - blur event handlers to listen for focus and blur events on a single - element (this didn't work in YUI 2.7 and versions prior)
    • -
    - -
    - -
    - - - diff --git a/www/extras/yui/tests/event/tests/focusin-focusout.html b/www/extras/yui/tests/event/tests/focusin-focusout.html deleted file mode 100644 index 7b37aa9ae8..0000000000 --- a/www/extras/yui/tests/event/tests/focusin-focusout.html +++ /dev/null @@ -1,254 +0,0 @@ - - - - YUI Event Delegate Tests - - - - - - - - - - - - - - - - -
    - - Click Me! - -
    - - - -` \ No newline at end of file diff --git a/www/extras/yui/tests/imageloader/tests/imageloader.html b/www/extras/yui/tests/imageloader/tests/imageloader.html deleted file mode 100644 index 18b90f23d3..0000000000 --- a/www/extras/yui/tests/imageloader/tests/imageloader.html +++ /dev/null @@ -1,310 +0,0 @@ - - - - - - - - - - - - -
    -
    -
    -
    - -
    -
    - -
    -
    -
    - -
    -
    -
    -
    - -
    -
    - -
    -
    -
    - - - - - - - - - - - - - - diff --git a/www/extras/yui/tests/json/tests/json.html b/www/extras/yui/tests/json/tests/json.html deleted file mode 100644 index fa1bedd646..0000000000 --- a/www/extras/yui/tests/json/tests/json.html +++ /dev/null @@ -1,989 +0,0 @@ - - - - Test Page - - - - - - -

    Tests

    -
    -
    -

    Form used for field value extraction, stringification

    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - diff --git a/www/extras/yui/tests/logger/tests/logger.html b/www/extras/yui/tests/logger/tests/logger.html deleted file mode 100644 index 24d6166244..0000000000 --- a/www/extras/yui/tests/logger/tests/logger.html +++ /dev/null @@ -1,189 +0,0 @@ - - -YUI Logger Tests - - - - - - - - - - -

    Logger Tests

    -

    - - - - diff --git a/www/extras/yui/tests/menu/tests/keep-open-fix.html b/www/extras/yui/tests/menu/tests/keep-open-fix.html deleted file mode 100644 index 11dd9fe12d..0000000000 --- a/www/extras/yui/tests/menu/tests/keep-open-fix.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - Menu keepopen Configuration Property Test - - - - - - - - - - - - - - -

    Menu keepopen Configuration Property Test

    -

    Test case to demonstrate fix for bug 2512349.

    - - - -
    - - - diff --git a/www/extras/yui/tests/menu/tests/keep-open-repo.html b/www/extras/yui/tests/menu/tests/keep-open-repo.html deleted file mode 100644 index d8060a400a..0000000000 --- a/www/extras/yui/tests/menu/tests/keep-open-repo.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - Menu keepopen Configuration Property Test - - - - - - - - - - - - - - -

    Menu keepopen Configuration Property Test

    -

    Test case to reproduce bug 2512349.

    - - - -
    - - - diff --git a/www/extras/yui/tests/menu/tests/menu-activeelement-test.html b/www/extras/yui/tests/menu/tests/menu-activeelement-test.html deleted file mode 100644 index d6923a49cc..0000000000 --- a/www/extras/yui/tests/menu/tests/menu-activeelement-test.html +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - Button activeElement Test - - - - - - - - - - - - - - - - - - - - - - -

    Button activeElement Test

    -

    Test case for bug 2528245.

    -

    -Clicking on the text box when the Button's Menu is open should result in the Menu closing, -the Button blurring and the text box being focused and becoming the activeElement. -After mousing down on the text box, it should have a black outline and -should fire key events. -

    - -
    - - - -
    - - - \ No newline at end of file diff --git a/www/extras/yui/tests/menu/tests/menu-right-click-test.html b/www/extras/yui/tests/menu/tests/menu-right-click-test.html deleted file mode 100644 index dbd0f60ab9..0000000000 --- a/www/extras/yui/tests/menu/tests/menu-right-click-test.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - Menu Right Click Test - - - - - - - - - - - - - - - - -

    Menu Right Click Test

    - -

    - This is a test case for bug 2527869. -

    -

    - Right click on the Menu using Firefox for Windows. - The Menu should remain visible, and the browser's context menu should - appear. If an alert pops up, the bug is not fixed. -

    - - - - - - - \ No newline at end of file diff --git a/www/extras/yui/tests/menu/tests/menu-unsubscribe.html b/www/extras/yui/tests/menu/tests/menu-unsubscribe.html deleted file mode 100644 index 7441cec004..0000000000 --- a/www/extras/yui/tests/menu/tests/menu-unsubscribe.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - YUI MenuBar test - - - - -
    -
    - -
    -
    - -
    -

    - -

    - -

    - - - -

    -
    - - - - - - - - - \ No newline at end of file diff --git a/www/extras/yui/tests/menu/tests/menu.html b/www/extras/yui/tests/menu/tests/menu.html deleted file mode 100644 index 1b2a1ba9a7..0000000000 --- a/www/extras/yui/tests/menu/tests/menu.html +++ /dev/null @@ -1,1752 +0,0 @@ -' - - - - YAHOO.widget.Menu Tests - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/www/extras/yui/tests/menu/tests/visited-link-test.html b/www/extras/yui/tests/menu/tests/visited-link-test.html deleted file mode 100644 index f4f1a5f648..0000000000 --- a/www/extras/yui/tests/menu/tests/visited-link-test.html +++ /dev/null @@ -1,242 +0,0 @@ - - - - - Example: Website Top Nav With Submenus Built From Markup (YUI Library) - - - - - - - - - - - - - - - -
    -
    - - -

    Example: Website Top Nav With Submenus Built From Markup (YUI Library)

    - - -
    -
    - - -
    -
    - - - - -

    NOTE: This example demonstrates how to add submenus to a menu bar using existing markup.

    - -
    - -
    - -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sit amet metus. Nunc quam elit, posuere nec, auctor in, rhoncus quis, dui. Aliquam erat volutpat. Ut dignissim, massa sit amet dignissim cursus, quam lacus feugiat dolor, id aliquam leo tortor eget odio. Pellentesque orci arcu, eleifend at, iaculis sit amet, posuere eu, lorem. Aliquam erat volutpat. Phasellus vulputate. Vivamus id erat. Nulla facilisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Nunc gravida. Ut euismod, tortor eget convallis ullamcorper, arcu odio egestas pede, ut ornare urna elit vitae mauris. Aenean ullamcorper eros a lacus. Curabitur egestas tempus lectus. Donec et lectus et purus dapibus feugiat. Sed sit amet diam. Etiam ipsum leo, facilisis ac, rutrum nec, dignissim quis, tellus. Sed eleifend.

    -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sit amet metus. Nunc quam elit, posuere nec, auctor in, rhoncus quis, dui. Aliquam erat volutpat. Ut dignissim, massa sit amet dignissim cursus, quam lacus feugiat dolor, id aliquam leo tortor eget odio. Pellentesque orci arcu, eleifend at, iaculis sit amet, posuere eu, lorem. Aliquam erat volutpat. Phasellus vulputate. Vivamus id erat. Nulla facilisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Nunc gravida. Ut euismod, tortor eget convallis ullamcorper, arcu odio egestas pede, ut ornare urna elit vitae mauris. Aenean ullamcorper eros a lacus. Curabitur egestas tempus lectus. Donec et lectus et purus dapibus feugiat. Sed sit amet diam. Etiam ipsum leo, facilisis ac, rutrum nec, dignissim quis, tellus. Sed eleifend.

    - - -
    -
    - - - -
    - -

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sit amet metus. Nunc quam elit, posuere nec, auctor in, rhoncus quis, dui. Aliquam erat volutpat. Ut dignissim, massa sit amet dignissim cursus, quam lacus feugiat dolor, id aliquam leo tortor eget odio. Pellentesque orci arcu, eleifend at, iaculis sit amet, posuere eu, lorem. Aliquam erat volutpat. Phasellus vulputate. Vivamus id erat. Nulla facilisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Nunc gravida. Ut euismod, tortor eget convallis ullamcorper, arcu odio egestas pede, ut ornare urna elit vitae mauris. Aenean ullamcorper eros a lacus. Curabitur egestas tempus lectus. Donec et lectus et purus dapibus feugiat. Sed sit amet diam. Etiam ipsum leo, facilisis ac, rutrum nec, dignissim quis, tellus. Sed eleifend.

    - -
    - -
    -
    - -

    FOOTER: Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sit amet metus. Nunc quam elit, posuere nec, auctor in, rhoncus quis, dui. Aliquam erat volutpat. Ut dignissim, massa sit amet dignissim cursus, quam lacus feugiat.

    - -
    -
    - - - \ No newline at end of file diff --git a/www/extras/yui/tests/paginator/tests/basic.html b/www/extras/yui/tests/paginator/tests/basic.html deleted file mode 100644 index f045f03541..0000000000 --- a/www/extras/yui/tests/paginator/tests/basic.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - Paginator Test Page - - - - - - - -

    Paginator Tests

    - - - -
    -
    -
    - - - - - - - - - - - - - diff --git a/www/extras/yui/tests/paginator/tests/example.html b/www/extras/yui/tests/paginator/tests/example.html deleted file mode 100644 index 2a5711b0b0..0000000000 --- a/www/extras/yui/tests/paginator/tests/example.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - Paginator Test Page - - - - - -

    Paginator Examples

    -

    rpp:10, tot:93

    -
    - -

    rpp:10, tot:3

    -
    - -

    rpp:10, tot:93, pageLinks: 5

    -
    - -

    rpp:10, tot:93, recOff: 20, template: RPP

    -
    - -

    rpp:10, tot:133, template: (custom)

    -
    - -

    rpp:10, tot:93, ui.* manual render only

    -
    - -

    rpp:10, tot:93, render() + ui.* manual render

    -
    -
    - -

    rpp:10, tot:93, progressive enhance container and specific el

    -
    - - - - - - - - - - - - diff --git a/www/extras/yui/tests/profiler/tests/profiler.html b/www/extras/yui/tests/profiler/tests/profiler.html deleted file mode 100644 index f4e708f145..0000000000 --- a/www/extras/yui/tests/profiler/tests/profiler.html +++ /dev/null @@ -1,513 +0,0 @@ - - -profiler tests - - - - - - - - - - - - -

    profile tests

    -

    - - - diff --git a/www/extras/yui/tests/progressbar/tests/index.html b/www/extras/yui/tests/progressbar/tests/index.html deleted file mode 100644 index 1b2ebe4b23..0000000000 --- a/www/extras/yui/tests/progressbar/tests/index.html +++ /dev/null @@ -1,920 +0,0 @@ - - - -Progress Bar Tests - - - - - - - - - - - - - - - - - - - -
    -
    - - - - \ No newline at end of file diff --git a/www/extras/yui/tests/selector/tests/selector.html b/www/extras/yui/tests/selector/tests/selector.html deleted file mode 100644 index 360bf30556..0000000000 --- a/www/extras/yui/tests/selector/tests/selector.html +++ /dev/null @@ -1,329 +0,0 @@ - - - -Selector Test Suite - - - - - - - - - - - - - - - - - -
    -

    lorem ipsum

    -

    lorem ipsum

    -

    lorem ipsum

    -
    - -
    -
    child of demo2
    -
    - -
    -
    -

    grandchild of demo3

    -
    -
    - - -
    - -
    -
      -
    1. foo
    2. -
    3. foo
    4. -
    5. foo
    6. -
    7. foo
    8. -
    9. foo
    10. -
    11. foo
    12. -
    13. foo
    14. -
    15. foo
    16. -
    17. foo
    18. -
    19. foo
    20. -
    -
    - foo - foo - foo -
    - - - - - - -
    -
    - - diff --git a/www/extras/yui/tests/slider/tests/background.html b/www/extras/yui/tests/slider/tests/background.html deleted file mode 100644 index 332699848f..0000000000 --- a/www/extras/yui/tests/slider/tests/background.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - Test Page - - - - - - -
    -
    -
    -
    slider thumb
    -
    -
    - - - - - - - - - - - - - diff --git a/www/extras/yui/tests/slider/tests/base.html b/www/extras/yui/tests/slider/tests/base.html deleted file mode 100644 index 3b94fec593..0000000000 --- a/www/extras/yui/tests/slider/tests/base.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - Test Page - - - - - - -
    -
    - -
    -

    Horizontal

    -

    - - - - - - 0 -

    -
    -
    - slider thumb -
    -
    -
    - -
    -

    Graduated Horizontal

    -

    - - - - - - 0 -

    -
    -
    - slider thumb -
    -
    -
    - -
    -

    Vertical

    -

    - - - - - - 0 -

    -
    -
    - slider thumb -
    -
    -
    - -
    -

    Graduated Vertical

    -

    - - - - - - 0 -

    -
    -
    - slider thumb -
    -
    -
    - -
    -

    Region

    -

    - - - - - - 0,0 -

    -
    -
    - slider thumb -
    -
    -
    - -
    -

    Graduated Region

    -

    - - - - - - 0,0 -

    -
    -
    - slider thumb -
    -
    -
    -
    - - - - - - - - - - - - - - diff --git a/www/extras/yui/tests/slider/tests/base_animated.html b/www/extras/yui/tests/slider/tests/base_animated.html deleted file mode 100644 index 5f481d2656..0000000000 --- a/www/extras/yui/tests/slider/tests/base_animated.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - Test Page - - - - - - -
    -
    -
    -
    - slider thumb -
    -
    -
    - - - - - - - - - - - - - diff --git a/www/extras/yui/tests/slider/tests/base_dual.html b/www/extras/yui/tests/slider/tests/base_dual.html deleted file mode 100644 index 0820c069d7..0000000000 --- a/www/extras/yui/tests/slider/tests/base_dual.html +++ /dev/null @@ -1,79 +0,0 @@ - - - - Test Page - - - - - - -
    -

    MIN: 0 MAX: 0

    -
    -
    -
    - slider thumb -
    -
    - slider thumb -
    -
    -
    - - - - - - - - - - - - - diff --git a/www/extras/yui/tests/slider/tests/base_graduated.html b/www/extras/yui/tests/slider/tests/base_graduated.html deleted file mode 100644 index ecd533e3f1..0000000000 --- a/www/extras/yui/tests/slider/tests/base_graduated.html +++ /dev/null @@ -1,43 +0,0 @@ - - - - Test Page - - - - - - -
    -
    -
    -
    - slider thumb -
    -
    -
    - - - - - - - - - - - - diff --git a/www/extras/yui/tests/slider/tests/base_graduated_region.html b/www/extras/yui/tests/slider/tests/base_graduated_region.html deleted file mode 100644 index 3b22d5b82d..0000000000 --- a/www/extras/yui/tests/slider/tests/base_graduated_region.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - Test Page - - - - - - -
    -
    -
    -
    - slider thumb -
    -
    -
    - - - - - - - - - - - - - diff --git a/www/extras/yui/tests/slider/tests/base_region.html b/www/extras/yui/tests/slider/tests/base_region.html deleted file mode 100644 index f528f5de76..0000000000 --- a/www/extras/yui/tests/slider/tests/base_region.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - Test Page - - - - - - -
    -
    -
    -
    - slider thumb -
    -
    -
    - - - - - - - - - - - - - diff --git a/www/extras/yui/tests/slider/tests/grad_win_resize.html b/www/extras/yui/tests/slider/tests/grad_win_resize.html deleted file mode 100644 index 0d7e0b7b65..0000000000 --- a/www/extras/yui/tests/slider/tests/grad_win_resize.html +++ /dev/null @@ -1,71 +0,0 @@ - - - - Test Page - - - - - - -
    -
    -
    -
    - slider thumb -
    -
    -
    -
    - - - - - - - - - - - - - diff --git a/www/extras/yui/tests/slider/tests/move_setval.html b/www/extras/yui/tests/slider/tests/move_setval.html deleted file mode 100644 index 0bfd0fbef6..0000000000 --- a/www/extras/yui/tests/slider/tests/move_setval.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - Test Page - - - - - - -
    -
    -
    -
    -
    - slider thumb -
    -
    - -
    - -
    - - - - - - - - - - - - - diff --git a/www/extras/yui/tests/slider/tests/offscreen.html b/www/extras/yui/tests/slider/tests/offscreen.html deleted file mode 100644 index 574d1e7b32..0000000000 --- a/www/extras/yui/tests/slider/tests/offscreen.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - Test Page - - - - - - -
    -
    -
    -
    -
    - slider thumb -
    -
    -
    - -
    - - - - - - - - - - - - - diff --git a/www/extras/yui/tests/storage/tests/storage.html b/www/extras/yui/tests/storage/tests/storage.html deleted file mode 100644 index 9cb6e7c114..0000000000 --- a/www/extras/yui/tests/storage/tests/storage.html +++ /dev/null @@ -1,218 +0,0 @@ - - - -Selector Test Suite - - - - - - - - - - - - - - - - - -
    - - - - - \ No newline at end of file diff --git a/www/extras/yui/tests/storage/tests/testvalues.js b/www/extras/yui/tests/storage/tests/testvalues.js deleted file mode 100644 index e16d69156d..0000000000 --- a/www/extras/yui/tests/storage/tests/testvalues.js +++ /dev/null @@ -1,7318 +0,0 @@ -var textShort = 'short text', - textMedium = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam ultrices sem tincidunt ligula fringilla vestibulum. Proin fringilla iaculis orci, et pellentesque odio cursus et. Nam laoreet venenatis lorem, id pharetra arcu lacinia et. Sed vulputate odio vel sapien mollis a bibendum magna lacinia. Phasellus posuere velit et purus porttitor ac bibendum metus viverra. Cras at magna massa, non pretium metus. Aliquam erat tortor, aliquet feugiat dapibus vitae, adipiscing ac nibh. Etiam non erat nec purus iaculis pulvinar. Suspendisse eu nulla a tortor convallis egestas. Nullam tellus mi, dignissim et accumsan nec, gravida hendrerit orci. Integer convallis tempus diam, quis imperdiet mauris bibendum nec. Integer adipiscing metus dolor, et porttitor eros. Aliquam ac ipsum ipsum. Nullam congue nulla sit amet ligula fringilla accumsan venenatis ipsum tempor.\ -\ -Donec quis est et nisi rutrum posuere eget commodo justo. Vestibulum neque neque, suscipit elementum placerat in, tempus ut sapien. Nulla blandit, enim convallis semper facilisis, orci augue vehicula nisi, id elementum lectus dui a nunc. Nam mollis tempus lobortis. Duis non metus id enim euismod luctus. Praesent non velit sed nunc egestas aliquam id et velit. Proin porttitor convallis dapibus. Nullam id orci at neque tempus sagittis sed eu purus. Aenean venenatis tortor vel ipsum gravida ultricies. Phasellus interdum, neque non consequat malesuada, augue neque scelerisque mi, a imperdiet nibh augue posuere nunc. Nullam lobortis massa vel neque volutpat a ultrices ipsum volutpat. Duis non purus nisi, nec fringilla massa.\ -\ -In et ante ipsum. Nam a lectus libero, quis condimentum orci. Mauris volutpat consectetur feugiat. Praesent non leo tellus. Donec luctus tempus ultrices. Nunc vitae ante metus, a commodo nibh. Maecenas eget lacus massa, dapibus venenatis felis. Ut sit amet turpis a lectus tristique placerat et sed lectus. Aenean in diam vitae orci molestie malesuada. Nam vel leo purus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed sit amet tellus lacus. Nulla congue egestas libero, vel tristique purus molestie vel.\ -\ -Mauris adipiscing, ligula quis dignissim sodales, dui massa laoreet ipsum, sit amet interdum sem dui et nunc. In at cursus velit. Mauris ut turpis tortor, at bibendum enim. Phasellus posuere lectus orci, id dignissim diam. Sed commodo, purus venenatis malesuada euismod, dolor augue semper diam, quis feugiat orci est tempor sem. Morbi quis lobortis orci. Nullam non arcu nec magna volutpat vulputate sit amet non lectus. Nullam gravida dictum quam, quis ultricies odio tempus quis. Sed sed elit ante. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris fermentum, neque a eleifend molestie, mauris eros convallis libero, sit amet mollis orci urna in velit. Integer ac est dui. Nunc ac suscipit lorem. Nunc nec erat sed nibh adipiscing posuere.\ -\ -Proin semper dui at turpis volutpat eget varius ante porta. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed congue justo tellus. Aenean eleifend, risus vel imperdiet hendrerit, massa erat convallis lacus, ac condimentum augue eros at massa. Nam libero felis, consequat sit amet suscipit ut, consequat sed nunc. Mauris in nulla tellus. Mauris vulputate velit in elit congue vehicula. Donec eget nibh quam. Curabitur quam nunc, tristique ac egestas nec, lobortis et metus. Aliquam lobortis malesuada erat, vitae pharetra nisi congue non. Mauris lacus turpis, vestibulum eu fermentum non, porttitor sed leo. Mauris egestas blandit sem non blandit. Nam laoreet orci vel metus varius luctus. Suspendisse fermentum, nisl sit amet fermentum porta, dolor eros rutrum mi, id aliquam nulla orci at lorem. Aliquam erat volutpat. Nullam tristique elementum purus eget euismod. Sed lectus purus, mattis eu fermentum sed, laoreet in metus. Maecenas volutpat sagittis eros eu laoreet. ", - textLong = "The Project Gutenberg EBook of Faust, by Goethe\ -\ -This eBook is for the use of anyone anywhere at no cost and with\ -almost no restrictions whatsoever. You may copy it, give it away or\ -re-use it under the terms of the Project Gutenberg License included\ -with this eBook or online at www.gutenberg.net\ -\ -\ -Title: Faust\ -\ -Author: Goethe\ -\ -Release Date: December 25, 2004 [EBook #14460]\ -\ -Language: English\ -\ -Character set encoding: ISO-8859-1\ -\ -*** START OF THIS PROJECT GUTENBERG EBOOK FAUST ***\ -\ -\ -\ -\ -Produced by Juliet Sutherland, Charles Bidwell and the PG Online\ -Distributed Proofreading Team\ -\ -\ -\ -\ -\ -\ -FAUST\ -\ -\ -A TRAGEDY\ -\ -TRANSLATED FROM THE GERMAN\ -\ -OF\ -\ -GOETHE\ -\ -\ -WITH NOTES\ -\ -BY\ -\ -CHARLES T BROOKS\ -\ -\ -SEVENTH EDITION.\ -\ -BOSTON\ -TICKNOR AND FIELDS\ -\ -MDCCCLXVIII.\ -\ -\ -\ -Entered according to Act of Congress, in the year 1856,\ -by CHARLES T. BROOKS,\ -In the Clerk's Office of the District Court\ -of the District of Rhode Island.\ -\ -UNIVERSITY PRESS:\ -WELCH, BIGELOW, AND COMPANY,\ -CAMBRIDGE.\ -\ -\ -\ -\ -TRANSLATOR'S PREFACE.\ -\ -\ -Perhaps some apology ought to be given to English scholars, that is, those\ -who do not know German, (to those, at least, who do not know what sort of\ -a thing Faust is in the original,) for offering another translation to the\ -public, of a poem which has been already translated, not only in a literal\ -prose form, but also, twenty or thirty times, in metre, and sometimes with\ -great spirit, beauty, and power.\ -\ -The author of the present version, then, has no knowledge that a rendering\ -of this wonderful poem into the exact and ever-changing metre of the\ -original has, until now, been so much as attempted. To name only one\ -defect, the very best versions which he has seen neglect to follow the\ -exquisite artist in the evidently planned and orderly intermixing of\ -_male_ and _female_ rhymes, _i.e._ rhymes which fall on the last syllable\ -and those which fall on the last but one. Now, every careful student of\ -the versification of Faust must feel and see that Goethe did not\ -intersperse the one kind of rhyme with the other, at random, as those\ -translators do; who, also, give the female rhyme (on which the vivacity of\ -dialogue and description often so much depends,) in so small a proportion.\ -\ -A similar criticism might be made of their liberty in neglecting Goethe's\ -method of alternating different measures with each other.\ -\ -It seems as if, in respect to metre, at least, they had asked themselves,\ -how would Goethe have written or shaped this in English, had that been his\ -native language, instead of seeking _con amore_ (and _con fidelità_) as\ -they should have done, to reproduce, both in spirit and in form, the\ -movement, so free and yet orderly, of the singularly endowed and\ -accomplished poet whom they undertook to represent.\ -\ -As to the objections which Hayward and some of his reviewers have\ -instituted in advance against the possibility of a good and faithful\ -metrical translation of a poem like Faust, they seem to the present\ -translator full of paradox and sophistry. For instance, take this\ -assertion of one of the reviewers: \"The sacred and mysterious union of\ -thought with verse, twin-born and immortally wedded from the moment of\ -their common birth, can never be understood by those who desire verse\ -translations of good poetry.\" If the last part of this statement had read\ -\"by those who can be contented with _prose_ translations of good poetry,\"\ -the position would have been nearer the truth. This much we might well\ -admit, that, if the alternative were either to have a poem like Faust in a\ -metre different and glaringly different from the original, or to have it\ -in simple and strong prose, then the latter alternative would be the one\ -every tasteful and feeling scholar would prefer; but surely to every one\ -who can read the original or wants to know how this great song _sung\ -itself_ (as Carlyle says) out of Goethe's soul, a mere prose rendering\ -must be, comparatively, a _corpus mortuum._\ -\ -The translator most heartily dissents from Hayward's assertion that a\ -translator of Faust \"must sacrifice either metre or meaning.\" At least he\ -flatters himself that he has made, in the main, (not a compromise between\ -meaning and melody, though in certain instances he may have fallen into\ -that, but) a combination of the meaning with the melody, which latter is\ -so important, so vital a part of the lyric poem's meaning, in any worthy\ -sense. \"No poetic translation,\" says Hayward's reviewer, already quoted,\ -\"can give the rhythm and rhyme of the original; it can only substitute the\ -rhythm and rhyme of the translator.\" One might just as well say \"no\ -_prose_ translation can give the _sense and spirit_ of the original; it\ -can only substitute the _sense and spirit of the words and phrases of the\ -translator's language_;\" and then, these two assertions balancing each\ -other, there will remain in the metrical translator's favor, that he may\ -come as near to giving both the letter and the spirit, as the effects of\ -the Babel dispersion will allow.\ -\ -As to the original creation, which he has attempted here to reproduce, the\ -translator might say something, but prefers leaving his readers to the\ -poet himself, as revealed in the poem, and to the various commentaries of\ -which we have some accounts, at least, in English. A French translator of\ -the poem speaks in his introduction as follows: \"This Faust, conceived by\ -him in his youth, completed in ripe age, the idea of which he carried with\ -him through all the commotions of his life, as Camoens bore his poem with\ -him through the waves, this Faust contains him entire. The thirst for\ -knowledge and the martyrdom of doubt, had they not tormented his early\ -years? Whence came to him the thought of taking refuge in a supernatural\ -realm, of appealing to invisible powers, which plunged him, for a\ -considerable time, into the dreams of Illuminati and made him even invent\ -a religion? This irony of Mephistopheles, who carries on so audacious a\ -game with the weakness and the desires of man, is it not the mocking,\ -scornful side of the poet's spirit, a leaning to sullenness, which can be\ -traced even into the earliest years of his life, a bitter leaven thrown\ -into a strong soul forever by early satiety? The character of Faust\ -especially, the man whose burning, untiring heart can neither enjoy\ -fortune nor do without it, who gives himself unconditionally and watches\ -himself with mistrust, who unites the enthusiasm of passion and the\ -dejectedness of despair, is not this an eloquent opening up of the most\ -secret and tumultuous part of the poet's soul? And now, to complete the\ -image of his inner life, he has added the transcendingly sweet person of\ -Margaret, an exalted reminiscence of a young girl, by whom, at the age of\ -fourteen, he thought himself beloved, whose image ever floated round him,\ -and has contributed some traits to each of his heroines. This heavenly\ -surrender of a simple, good, and tender heart contrasts wonderfully with\ -the sensual and gloomy passion of the lover, who, in the midst of his\ -love-dreams, is persecuted by the phantoms of his imagination and by the\ -nightmares of thought, with those sorrows of a soul, which is crushed, but\ -not extinguished, which is tormented by the invincible want of happiness\ -and the bitter feeling, how hard a thing it is to receive or to bestow.\"\ -\ -\ -\ -\ -DEDICATION.[1]\ -\ -Once more ye waver dreamily before me,\ -Forms that so early cheered my troubled eyes!\ -To hold you fast doth still my heart implore me?\ -Still bid me clutch the charm that lures and flies?\ -Ye crowd around! come, then, hold empire o'er me,\ -As from the mist and haze of thought ye rise;\ -The magic atmosphere, your train enwreathing,\ -Through my thrilled bosom youthful bliss is breathing.\ -\ -Ye bring with you the forms of hours Elysian,\ -And shades of dear ones rise to meet my gaze;\ -First Love and Friendship steal upon my vision\ -Like an old tale of legendary days;\ -Sorrow renewed, in mournful repetition,\ -Runs through life's devious, labyrinthine ways;\ -And, sighing, names the good (by Fortune cheated\ -Of blissful hours!) who have before me fleeted.\ -\ -These later songs of mine, alas! will never\ -Sound in their ears to whom the first were sung!\ -Scattered like dust, the friendly throng forever!\ -Mute the first echo that so grateful rung!\ -To the strange crowd I sing, whose very favor\ -Like chilling sadness on my heart is flung;\ -And all that kindled at those earlier numbers\ -Roams the wide earth or in its bosom slumbers.\ -\ -And now I feel a long-unwonted yearning\ -For that calm, pensive spirit-realm, to-day;\ -Like an Aeolian lyre, (the breeze returning,)\ -Floats in uncertain tones my lisping lay;\ -Strange awe comes o'er me, tear on tear falls burning,\ -The rigid heart to milder mood gives way!\ -What I possess I see afar off lying,\ -And what I lost is real and undying.\ -\ -\ -\ -\ -PRELUDE\ -\ -IN THE THEATRE.\ -\ -\ - Manager. Dramatic Poet. Merry Person.\ -\ -_Manager_. You who in trouble and distress\ -Have both held fast your old allegiance,\ -What think ye? here in German regions\ -Our enterprise may hope success?\ -To please the crowd my purpose has been steady,\ -Because they live and let one live at least.\ -The posts are set, the boards are laid already,\ -And every one is looking for a feast.\ -They sit, with lifted brows, composed looks wearing,\ -Expecting something that shall set them staring.\ -I know the public palate, that's confest;\ -Yet never pined so for a sound suggestion;\ -True, they are not accustomed to the best,\ -But they have read a dreadful deal, past question.\ -How shall we work to make all fresh and new,\ -Acceptable and profitable, too?\ -For sure I love to see the torrent boiling,\ -When towards our booth they crowd to find a place,\ -Now rolling on a space and then recoiling,\ -Then squeezing through the narrow door of grace:\ -Long before dark each one his hard-fought station\ -In sight of the box-office window takes,\ -And as, round bakers' doors men crowd to escape starvation,\ -For tickets here they almost break their necks.\ -This wonder, on so mixed a mass, the Poet\ -Alone can work; to-day, my friend, O, show it!\ -\ -_Poet_. Oh speak not to me of that motley ocean,\ -Whose roar and greed the shuddering spirit chill!\ -Hide from my sight that billowy commotion\ -That draws us down the whirlpool 'gainst our will.\ -No, lead me to that nook of calm devotion,\ -Where blooms pure joy upon the Muses' hill;\ -Where love and friendship aye create and cherish,\ -With hand divine, heart-joys that never perish.\ -Ah! what, from feeling's deepest fountain springing,\ -Scarce from the stammering lips had faintly passed,\ -Now, hopeful, venturing forth, now shyly clinging,\ -To the wild moment's cry a prey is cast.\ -Oft when for years the brain had heard it ringing\ -It comes in full and rounded shape at last.\ -What shines, is born but for the moment's pleasure;\ -The genuine leaves posterity a treasure.\ -\ -_Merry Person_. Posterity! I'm sick of hearing of it;\ -Supposing I the future age would profit,\ -Who then would furnish ours with fun?\ -For it must have it, ripe and mellow;\ -The presence of a fine young fellow,\ -Is cheering, too, methinks, to any one.\ -Whoso can pleasantly communicate,\ -Will not make war with popular caprices,\ -For, as the circle waxes great,\ -The power his word shall wield increases.\ -Come, then, and let us now a model see,\ -Let Phantasy with all her various choir,\ -Sense, reason, passion, sensibility,\ -But, mark me, folly too! the scene inspire.\ -\ -_Manager_. But the great point is action! Every one\ -Comes as spectator, and the show's the fun.\ -Let but the plot be spun off fast and thickly,\ -So that the crowd shall gape in broad surprise,\ -Then have you made a wide impression quickly,\ -You are the man they'll idolize.\ -The mass can only be impressed by masses;\ -Then each at last picks out his proper part.\ -Give much, and then to each one something passes,\ -And each one leaves the house with happy heart.\ -Have you a piece, give it at once in pieces!\ -Such a ragout your fame increases;\ -It costs as little pains to play as to invent.\ -But what is gained, if you a whole present?\ -Your public picks it presently to pieces.\ -\ -_Poet_. You do not feel how mean a trade like that must be!\ -In the true Artist's eyes how false and hollow!\ -Our genteel botchers, well I see,\ -Have given the maxims that you follow.\ -\ -_Manager_. Such charges pass me like the idle wind;\ -A man who has right work in mind\ -Must choose the instruments most fitting.\ -Consider what soft wood you have for splitting,\ -And keep in view for whom you write!\ -If this one from _ennui_ seeks flight,\ -That other comes full from the groaning table,\ -Or, the worst case of all to cite,\ -From reading journals is for thought unable.\ -Vacant and giddy, all agog for wonder,\ -As to a masquerade they wing their way;\ -The ladies give themselves and all their precious plunder\ -And without wages help us play.\ -On your poetic heights what dream comes o'er you?\ -What glads a crowded house? Behold\ -Your patrons in array before you!\ -One half are raw, the other cold.\ -One, after this play, hopes to play at cards,\ -One a wild night to spend beside his doxy chooses,\ -Poor fools, why court ye the regards,\ -For such a set, of the chaste muses?\ -I tell you, give them more and ever more and more,\ -And then your mark you'll hardly stray from ever;\ -To mystify be your endeavor,\ -To satisfy is labor sore....\ -What ails you? Are you pleased or pained? What notion----\ -\ -_Poet_. Go to, and find thyself another slave!\ -What! and the lofty birthright Nature gave,\ -The noblest talent Heaven to man has lent,\ -Thou bid'st the Poet fling to folly's ocean!\ -How does he stir each deep emotion?\ -How does he conquer every element?\ -But by the tide of song that from his bosom springs,\ -And draws into his heart all living things?\ -When Nature's hand, in endless iteration,\ -The thread across the whizzing spindle flings,\ -When the complex, monotonous creation\ -Jangles with all its million strings:\ -Who, then, the long, dull series animating,\ -Breaks into rhythmic march the soulless round?\ -And, to the law of All each member consecrating,\ -Bids one majestic harmony resound?\ -Who bids the tempest rage with passion's power?\ -The earnest soul with evening-redness glow?\ -Who scatters vernal bud and summer flower\ -Along the path where loved ones go?\ -Who weaves each green leaf in the wind that trembles\ -To form the wreath that merit's brow shall crown?\ -Who makes Olympus fast? the gods assembles?\ -The power of manhood in the Poet shown.\ -\ -_Merry Person_. Come, then, put forth these noble powers,\ -And, Poet, let thy path of flowers\ -Follow a love-adventure's winding ways.\ -One comes and sees by chance, one burns, one stays,\ -And feels the gradual, sweet entangling!\ -The pleasure grows, then comes a sudden jangling,\ -Then rapture, then distress an arrow plants,\ -And ere one dreams of it, lo! _there_ is a romance.\ -Give us a drama in this fashion!\ -Plunge into human life's full sea of passion!\ -Each lives it, few its meaning ever guessed,\ -Touch where you will, 'tis full of interest.\ -Bright shadows fleeting o'er a mirror,\ -A spark of truth and clouds of error,\ -By means like these a drink is brewed\ -To cheer and edify the multitude.\ -The fairest flower of the youth sit listening\ -Before your play, and wait the revelation;\ -Each melancholy heart, with soft eyes glistening,\ -Draws sad, sweet nourishment from your creation;\ -This passion now, now that is stirred, by turns,\ -And each one sees what in his bosom burns.\ -Open alike, as yet, to weeping and to laughter,\ -They still admire the flights, they still enjoy the show;\ -Him who is formed, can nothing suit thereafter;\ -The yet unformed with thanks will ever glow.\ -\ -_Poet_. Ay, give me back the joyous hours,\ -When I myself was ripening, too,\ -When song, the fount, flung up its showers\ -Of beauty ever fresh and new.\ -When a soft haze the world was veiling,\ -Each bud a miracle bespoke,\ -And from their stems a thousand flowers I broke,\ -Their fragrance through the vales exhaling.\ -I nothing and yet all possessed,\ -Yearning for truth and in illusion blest.\ -Give me the freedom of that hour,\ -The tear of joy, the pleasing pain,\ -Of hate and love the thrilling power,\ -Oh, give me back my youth again!\ -\ -_Merry Person_. Youth, my good friend, thou needest certainly\ -When ambushed foes are on thee springing,\ -When loveliest maidens witchingly\ -Their white arms round thy neck are flinging,\ -When the far garland meets thy glance,\ -High on the race-ground's goal suspended,\ -When after many a mazy dance\ -In drink and song the night is ended.\ -But with a free and graceful soul\ -To strike the old familiar lyre,\ -And to a self-appointed goal\ -Sweep lightly o'er the trembling wire,\ -There lies, old gentlemen, to-day\ -Your task; fear not, no vulgar error blinds us.\ -Age does not make us childish, as they say,\ -But we are still true children when it finds us.\ -\ -_Manager_. Come, words enough you two have bandied,\ -Now let us see some deeds at last;\ -While you toss compliments full-handed,\ -The time for useful work flies fast.\ -Why talk of being in the humor?\ -Who hesitates will never be.\ -If you are poets (so says rumor)\ -Now then command your poetry.\ -You know full well our need and pleasure,\ -We want strong drink in brimming measure;\ -Brew at it now without delay!\ -To-morrow will not do what is not done to-day.\ -Let not a day be lost in dallying,\ -But seize the possibility\ -Right by the forelock, courage rallying,\ -And forth with fearless spirit sallying,--\ -Once in the yoke and you are free.\ - Upon our German boards, you know it,\ -What any one would try, he may;\ -Then stint me not, I beg, to-day,\ -In scenery or machinery, Poet.\ -With great and lesser heavenly lights make free,\ -Spend starlight just as you desire;\ -No want of water, rocks or fire\ -Or birds or beasts to you shall be.\ -So, in this narrow wooden house's bound,\ -Stride through the whole creation's round,\ -And with considerate swiftness wander\ -From heaven, through this world, to the world down yonder.\ -\ -\ -\ -\ - PROLOGUE\ -\ -\ - IN HEAVEN.\ -\ -\ -[THE LORD. THE HEAVENLY HOSTS _afterward_ MEPHISTOPHELES.\ -_The three archangels_, RAPHAEL, GABRIEL, _and_ MICHAEL, _come forward_.]\ -\ -_Raphael_. The sun, in ancient wise, is sounding,\ - With brother-spheres, in rival song;\ -And, his appointed journey rounding,\ - With thunderous movement rolls along.\ -His look, new strength to angels lending,\ - No creature fathom can for aye;\ -The lofty works, past comprehending,\ - Stand lordly, as on time's first day.\ -\ -_Gabriel_. And swift, with wondrous swiftness fleeting,\ - The pomp of earth turns round and round,\ -The glow of Eden alternating\ - With shuddering midnight's gloom profound;\ -Up o'er the rocks the foaming ocean\ - Heaves from its old, primeval bed,\ -And rocks and seas, with endless motion,\ - On in the spheral sweep are sped.\ -\ -_Michael_. And tempests roar, glad warfare waging,\ - From sea to land, from land to sea,\ -And bind round all, amidst their raging,\ - A chain of giant energy.\ -There, lurid desolation, blazing,\ - Foreruns the volleyed thunder's way:\ -Yet, Lord, thy messengers[2] are praising\ - The mild procession of thy day.\ -\ -_All Three_. The sight new strength to angels lendeth,\ - For none thy being fathom may,\ -The works, no angel comprehendeth,\ - Stand lordly as on time's first day.\ -\ -_Mephistopheles_. Since, Lord, thou drawest near us once again,\ -And how we do, dost graciously inquire,\ -And to be pleased to see me once didst deign,\ -I too among thy household venture nigher.\ -Pardon, high words I cannot labor after,\ -Though the whole court should look on me with scorn;\ -My pathos certainly would stir thy laughter,\ -Hadst thou not laughter long since quite forsworn.\ -Of sun and worlds I've nought to tell worth mention,\ -How men torment themselves takes my attention.\ -The little God o' the world jogs on the same old way\ -And is as singular as on the world's first day.\ -A pity 'tis thou shouldst have given\ -The fool, to make him worse, a gleam of light from heaven;\ -He calls it reason, using it\ -To be more beast than ever beast was yet.\ -He seems to me, (your grace the word will pardon,)\ -Like a long-legg'd grasshopper in the garden,\ -Forever on the wing, and hops and sings\ -The same old song, as in the grass he springs;\ -Would he but stay there! no; he needs must muddle\ -His prying nose in every puddle.\ -\ -_The Lord_. Hast nothing for our edification?\ -Still thy old work of accusation?\ -Will things on earth be never right for thee?\ -\ -_Mephistopheles_. No, Lord! I find them still as bad as bad can be.\ -Poor souls! their miseries seem so much to please 'em,\ -I scarce can find it in my heart to tease 'em.\ -\ -_The Lord_. Knowest thou Faust?\ -\ -_Mephistopheles_. The Doctor?\ -\ -_The Lord_. Ay, my servant!\ -\ -_Mephistopheles_. He!\ -Forsooth! he serves you in a famous fashion;\ -No earthly meat or drink can feed his passion;\ -Its grasping greed no space can measure;\ -Half-conscious and half-crazed, he finds no rest;\ -The fairest stars of heaven must swell his treasure.\ -Each highest joy of earth must yield its zest,\ -Not all the world--the boundless azure--\ -Can fill the void within his craving breast.\ -\ -_The Lord_. He serves me somewhat darkly, now, I grant,\ -Yet will he soon attain the light of reason.\ -Sees not the gardener, in the green young plant,\ -That bloom and fruit shall deck its coming season?\ -\ -_Mephistopheles_. What will you bet? You'll surely lose your wager!\ -If you will give me leave henceforth,\ -To lead him softly on, like an old stager.\ -\ -_The Lord_. So long as he shall live on earth,\ -Do with him all that you desire.\ -Man errs and staggers from his birth.\ -\ -_Mephistopheles_. Thank you; I never did aspire\ -To have with dead folk much transaction.\ -In full fresh cheeks I take the greatest satisfaction.\ -A corpse will never find me in the house;\ -I love to play as puss does with the mouse.\ -\ -_The Lord_. All right, I give thee full permission!\ -Draw down this spirit from its source,\ -And, canst thou catch him, to perdition\ -Carry him with thee in thy course,\ -But stand abashed, if thou must needs confess,\ -That a good man, though passion blur his vision,\ -Has of the right way still a consciousness.\ -\ -_Mephistopheles_. Good! but I'll make it a short story.\ -About my wager I'm by no means sorry.\ -And if I gain my end with glory\ -Allow me to exult from a full breast.\ -Dust shall he eat and that with zest,\ -Like my old aunt, the snake, whose fame is hoary.\ -\ -_The Lord_. Well, go and come, and make thy trial;\ -The like of thee I never yet did hate.\ -Of all the spirits of denial\ -The scamp is he I best can tolerate.\ -Man is too prone, at best, to seek the way that's easy,\ -He soon grows fond of unconditioned rest;\ -And therefore such a comrade suits him best,\ -Who spurs and works, true devil, always busy.\ -But you, true sons of God, in growing measure,\ -Enjoy rich beauty's living stores of pleasure!\ -The Word[3] divine that lives and works for aye,\ -Fold you in boundless love's embrace alluring,\ -And what in floating vision glides away,\ -That seize ye and make fast with thoughts enduring.\ -\ -[_Heaven closes, the archangels disperse._]\ -\ -_Mephistopheles. [Alone.]_ I like at times to exchange with him a word,\ -And take care not to break with him. 'Tis civil\ -In the old fellow[4] and so great a Lord\ -To talk so kindly with the very devil.\ -\ -\ -\ -\ - FAUST.\ -\ -\ - _Night. In a narrow high-arched Gothic room_,\ - FAUST _sitting uneasy at his desk_.\ -\ -_Faust_. Have now, alas! quite studied through\ -Philosophy and Medicine,\ -And Law, and ah! Theology, too,\ -With hot desire the truth to win!\ -And here, at last, I stand, poor fool!\ -As wise as when I entered school;\ -Am called Magister, Doctor, indeed,--\ -Ten livelong years cease not to lead\ -Backward and forward, to and fro,\ -My scholars by the nose--and lo!\ -Just nothing, I see, is the sum of our learning,\ -To the very core of my heart 'tis burning.\ -'Tis true I'm more clever than all the foplings,\ -Doctors, Magisters, Authors, and Popelings;\ -Am plagued by no scruple, nor doubt, nor cavil,\ -Nor lingering fear of hell or devil--\ -What then? all pleasure is fled forever;\ -To know one thing I vainly endeavor,\ -There's nothing wherein one fellow-creature\ -Could be mended or bettered with me for a teacher.\ -And then, too, nor goods nor gold have I,\ -Nor fame nor worldly dignity,--\ -A condition no dog could longer live in!\ -And so to magic my soul I've given,\ -If, haply, by spirits' mouth and might,\ -Some mysteries may not be brought to light;\ -That to teach, no longer may be my lot,\ -With bitter sweat, what I need to be taught;\ -That I may know what the world contains\ -In its innermost heart and finer veins,\ -See all its energies and seeds\ -And deal no more in words but in deeds.\ - O full, round Moon, didst thou but thine\ -For the last time on this woe of mine!\ -Thou whom so many a midnight I\ -Have watched, at this desk, come up the sky:\ -O'er books and papers, a dreary pile,\ -Then, mournful friend! uprose thy smile!\ -Oh that I might on the mountain-height,\ -Walk in the noon of thy blessed light,\ -Round mountain-caverns with spirits hover,\ -Float in thy gleamings the meadows over,\ -And freed from the fumes of a lore-crammed brain,\ -Bathe in thy dew and be well again!\ - Woe! and these walls still prison me?\ -Dull, dismal hole! my curse on thee!\ -Where heaven's own light, with its blessed beams,\ -Through painted panes all sickly gleams!\ -Hemmed in by these old book-piles tall,\ -Which, gnawed by worms and deep in must,\ -Rise to the roof against a wall\ -Of smoke-stained paper, thick with dust;\ -'Mid glasses, boxes, where eye can see,\ -Filled with old, obsolete instruments,\ -Stuffed with old heirlooms of implements--\ -That is thy world! There's a world for thee!\ - And still dost ask what stifles so\ -The fluttering heart within thy breast?\ -By what inexplicable woe\ -The springs of life are all oppressed?\ -Instead of living nature, where\ -God made and planted men, his sons,\ -Through smoke and mould, around thee stare\ -Grim skeletons and dead men's bones.\ - Up! Fly! Far out into the land!\ -And this mysterious volume, see!\ -By Nostradamus's[5] own hand,\ -Is it not guide enough for thee?\ -Then shalt thou thread the starry skies,\ -And, taught by nature in her walks,\ -The spirit's might shall o'er thee rise,\ -As ghost to ghost familiar talks.\ -Vain hope that mere dry sense should here\ -Explain the holy signs to thee.\ -I feel you, spirits, hovering near;\ -Oh, if you hear me, answer me!\ - [_He opens the book and beholds the sign of the Macrocosm.[_6]]\ -Ha! as I gaze, what ecstasy is this,\ -In one full tide through all my senses flowing!\ -I feel a new-born life, a holy bliss\ -Through nerves and veins mysteriously glowing.\ -Was it a God who wrote each sign?\ -Which, all my inner tumult stilling,\ -And this poor heart with rapture filling,\ -Reveals to me, by force divine,\ -Great Nature's energies around and through me thrilling?\ -Am I a God? It grows so bright to me!\ -Each character on which my eye reposes\ -Nature in act before my soul discloses.\ -The sage's word was truth, at last I see:\ -\"The spirit-world, unbarred, is waiting;\ -Thy sense is locked, thy heart is dead!\ -Up, scholar, bathe, unhesitating,\ -The earthly breast in morning-red!\"\ - [_He contemplates the sign._]\ -How all one whole harmonious weaves,\ -Each in the other works and lives!\ -See heavenly powers ascending and descending,\ -The golden buckets, one long line, extending!\ -See them with bliss-exhaling pinions winging\ -Their way from heaven through earth--their singing\ -Harmonious through the universe is ringing!\ - Majestic show! but ah! a show alone!\ -Nature! where find I thee, immense, unknown?\ -Where you, ye breasts? Ye founts all life sustaining,\ -On which hang heaven and earth, and where\ -Men's withered hearts their waste repair--\ -Ye gush, ye nurse, and I must sit complaining?\ - [_He opens reluctantly the book and sees the sign of the earth-spirit._]\ -How differently works on me this sign!\ -Thou, spirit of the earth, art to me nearer;\ -I feel my powers already higher, clearer,\ -I glow already as with new-pressed wine,\ -I feel the mood to brave life's ceaseless clashing,\ -To bear its frowning woes, its raptures flashing,\ -To mingle in the tempest's dashing,\ -And not to tremble in the shipwreck's crashing;\ -Clouds gather o'er my head--\ -Them moon conceals her light--\ -The lamp goes out!\ -It smokes!--Red rays are darting, quivering\ -Around my head--comes down\ -A horror from the vaulted roof\ -And seizes me!\ -Spirit that I invoked, thou near me art,\ -Unveil thyself!\ -Ha! what a tearing in my heart!\ -Upheaved like an ocean\ -My senses toss with strange emotion!\ -I feel my heart to thee entirely given!\ -Thou must! and though the price were life--were heaven!\ - [_He seizes the book and pronounces mysteriously the sign of the spirit.\ - A ruddy flame darts out, the spirit appears in the flame._]\ -\ -_Spirit_. Who calls upon me?\ -\ -_Faust. [Turning away.]_ Horrid sight!\ -\ -_Spirit_. Long have I felt the mighty action,\ -Upon my sphere, of thy attraction,\ -And now--\ -\ -_Faust_. Away, intolerable sprite!\ -\ -_Spirit_. Thou breath'st a panting supplication\ -To hear my voice, my face to see;\ -Thy mighty prayer prevails on me,\ -I come!--what miserable agitation\ -Seizes this demigod! Where is the cry of thought?\ -Where is the breast? that in itself a world begot,\ -And bore and cherished, that with joy did tremble\ -And fondly dream us spirits to resemble.\ -Where art thou, Faust? whose voice rang through my ear,\ -Whose mighty yearning drew me from my sphere?\ -Is this thing thou? that, blasted by my breath,\ -Through all life's windings shuddereth,\ -A shrinking, cringing, writhing worm!\ -\ -_Faust_. Thee, flame-born creature, shall I fear?\ -'Tis I, 'tis Faust, behold thy peer!\ -\ -_Spirit_. In life's tide currents, in action's storm,\ -Up and down, like a wave,\ -Like the wind I sweep!\ -Cradle and grave--\ -A limitless deep---\ -An endless weaving\ -To and fro,\ -A restless heaving\ -Of life and glow,--\ -So shape I, on Destiny's thundering loom,\ -The Godhead's live garment, eternal in bloom.\ -\ -_Faust_. Spirit that sweep'st the world from end to end,\ -How near, this hour, I feel myself to thee!\ -\ -_Spirit_. Thou'rt like the spirit thou canst comprehend,\ -Not me! [_Vanishes._]\ -\ -_Faust_. [_Collapsing_.] Not thee?\ - Whom then?\ - I, image of the Godhead,\ - And no peer for thee!\ - [_A knocking_.]\ -O Death! I know it!--'tis my Famulus--\ -Good-bye, ye dreams of bliss Elysian!\ -Shame! that so many a glowing vision\ -This dried-up sneak must scatter thus!\ -\ - [WAGNER, _in sleeping-gown and night-cap, a lamp in his hand._\ - FAUST _turns round with an annoyed look_.]\ -\ -_Wagner_. Excuse me! you're engaged in declamation;\ -'Twas a Greek tragedy no doubt you read?\ -I in this art should like initiation,\ -For nowadays it stands one well instead.\ -I've often heard them boast, a preacher\ -Might profit with a player for his teacher.\ -\ -_Faust_. Yes, when the preacher is a player, granted:\ -As often happens in our modern ways.\ -\ -_Wagner_. Ah! when one with such love of study's haunted,\ -And scarcely sees the world on holidays,\ -And takes a spy-glass, as it were, to read it,\ -How can one by persuasion hope to lead it?\ -\ -_Faust_. What you don't feel, you'll never catch by hunting,\ -It must gush out spontaneous from the soul,\ -And with a fresh delight enchanting\ -The hearts of all that hear control.\ -Sit there forever! Thaw your glue-pot,--\ -Blow up your ash-heap to a flame, and brew,\ -With a dull fire, in your stew-pot,\ -Of other men's leavings a ragout!\ -Children and apes will gaze delighted,\ -If their critiques can pleasure impart;\ -But never a heart will be ignited,\ -Comes not the spark from the speaker's heart.\ -\ -_Wagner_. Delivery makes the orator's success;\ -There I'm still far behindhand, I confess.\ -\ -_Faust_. Seek honest gains, without pretence!\ -Be not a cymbal-tinkling fool!\ -Sound understanding and good sense\ -Speak out with little art or rule;\ -And when you've something earnest to utter,\ -Why hunt for words in such a flutter?\ -Yes, your discourses, that are so refined'\ -In which humanity's poor shreds you frizzle,\ -Are unrefreshing as the mist and wind\ -That through the withered leaves of autumn whistle!\ -\ -_Wagner_. Ah God! well, art is long!\ -And life is short and fleeting.\ -What headaches have I felt and what heart-beating,\ -When critical desire was strong.\ -How hard it is the ways and means to master\ -By which one gains each fountain-head!\ -\ -And ere one yet has half the journey sped,\ -The poor fool dies--O sad disaster!\ -\ -_Faust_. Is parchment, then, the holy well-spring, thinkest,\ -A draught from which thy thirst forever slakes?\ -No quickening element thou drinkest,\ -Till up from thine own soul the fountain breaks.\ -\ -_Wagner_. Excuse me! in these olden pages\ -We catch the spirit of the by-gone ages,\ -We see what wisest men before our day have thought,\ -And to what glorious heights we their bequests have brought.\ -\ -_Faust_. O yes, we've reached the stars at last!\ -My friend, it is to us,--the buried past,--\ -A book with seven seals protected;\ -Your spirit of the times is, then,\ -At bottom, your own spirit, gentlemen,\ -In which the times are seen reflected.\ -And often such a mess that none can bear it;\ -At the first sight of it they run away.\ -A dust-bin and a lumber-garret,\ -At most a mock-heroic play[8]\ -With fine, pragmatic maxims teeming,\ -The mouths of puppets well-beseeming!\ -\ -_Wagner_. But then the world! the heart and mind of man!\ -To know of these who would not pay attention?\ -\ -_Faust_. To know them, yes, as weaklings can!\ -Who dares the child's true name outright to mention?\ -The few who any thing thereof have learned,\ -Who out of their heart's fulness needs must gabble,\ -And show their thoughts and feelings to the rabble,\ -Have evermore been crucified and burned.\ -I pray you, friend, 'tis wearing into night,\ -Let us adjourn here, for the present.\ -\ -_Wagner_. I had been glad to stay till morning light,\ -This learned talk with you has been so pleasant,\ -But the first day of Easter comes to-morrow.\ -And then an hour or two I'll borrow.\ -With zeal have I applied myself to learning,\ -True, I know much, yet to know all am burning.\ - [_Exit_.]\ -\ -_Faust_. [_Alone_.] See how in _his_ head only, hope still lingers,\ -Who evermore to empty rubbish clings,\ -With greedy hand grubs after precious things,\ -And leaps for joy when some poor worm he fingers!\ - That such a human voice should dare intrude,\ -Where all was full of ghostly tones and features!\ -Yet ah! this once, my gratitude\ -Is due to thee, most wretched of earth's creatures.\ -Thou snatchedst me from the despairing state\ -In which my senses, well nigh crazed, were sunken.\ -The apparition was so giant-great,\ -That to a very dwarf my soul had shrunken.\ - I, godlike, who in fancy saw but now\ -Eternal truth's fair glass in wondrous nearness,\ -Rejoiced in heavenly radiance and clearness,\ -Leaving the earthly man below;\ -I, more than cherub, whose free force\ -Dreamed, through the veins of nature penetrating,\ -To taste the life of Gods, like them creating,\ -Behold me this presumption expiating!\ -A word of thunder sweeps me from my course.\ - Myself with thee no longer dare I measure;\ -Had I the power to draw thee down at pleasure;\ -To hold thee here I still had not the force.\ -Oh, in that blest, ecstatic hour,\ -I felt myself so small, so great;\ -Thou drovest me with cruel power\ -Back upon man's uncertain fate\ -What shall I do? what slum, thus lonely?\ -That impulse must I, then, obey?\ -Alas! our very deeds, and not our sufferings only,\ -How do they hem and choke life's way!\ - To all the mind conceives of great and glorious\ -A strange and baser mixture still adheres;\ -Striving for earthly good are we victorious?\ -A dream and cheat the better part appears.\ -The feelings that could once such noble life inspire\ -Are quenched and trampled out in passion's mire.\ - Where Fantasy, erewhile, with daring flight\ -Out to the infinite her wings expanded,\ -A little space can now suffice her quite,\ -When hope on hope time's gulf has wrecked and stranded.\ -Care builds her nest far down the heart's recesses,\ -There broods o'er dark, untold distresses,\ -Restless she sits, and scares thy joy and peace away;\ -She puts on some new mask with each new day,\ -Herself as house and home, as wife and child presenting,\ -As fire and water, bane and blade;\ -What never hits makes thee afraid,\ -And what is never lost she keeps thee still lamenting.\ - Not like the Gods am I! Too deep that truth is thrust!\ -But like the worm, that wriggles through the dust;\ -Who, as along the dust for food he feels,\ -Is crushed and buried by the traveller's heels.\ - Is it not dust that makes this lofty wall\ -Groan with its hundred shelves and cases;\ -The rubbish and the thousand trifles all\ -That crowd these dark, moth-peopled places?\ -Here shall my craving heart find rest?\ -Must I perchance a thousand books turn over,\ -To find that men are everywhere distrest,\ -And here and there one happy one discover?\ -Why grin'st thou down upon me, hollow skull?\ -But that thy brain, like mine, once trembling, hoping,\ -Sought the light day, yet ever sorrowful,\ -Burned for the truth in vain, in twilight groping?\ -Ye, instruments, of course, are mocking me;\ -Its wheels, cogs, bands, and barrels each one praises.\ -I waited at the door; you were the key;\ -Your ward is nicely turned, and yet no bolt it raises.\ -Unlifted in the broadest day,\ -Doth Nature's veil from prying eyes defend her,\ -And what (he chooses not before thee to display,\ -Not all thy screws and levers can force her to surrender.\ -Old trumpery! not that I e'er used thee, but\ -Because my father used thee, hang'st thou o'er me,\ -Old scroll! thou hast been stained with smoke and smut\ -Since, on this desk, the lamp first dimly gleamed before me.\ -Better have squandered, far, I now can clearly see,\ -My little all, than melt beneath it, in this Tophet!\ -That which thy fathers have bequeathed to thee,\ -Earn and become possessor of it!\ -What profits not a weary load will be;\ -What it brings forth alone can yield the moment profit.\ - Why do I gaze as if a spell had bound me\ -Up yonder? Is that flask a magnet to the eyes?\ -What lovely light, so sudden, blooms around me?\ -As when in nightly woods we hail the full-moon-rise.\ - I greet thee, rarest phial, precious potion!\ -As now I take thee down with deep devotion,\ -In thee I venerate man's wit and art.\ -Quintessence of all soporific flowers,\ -Extract of all the finest deadly powers,\ -Thy favor to thy master now impart!\ -I look on thee, the sight my pain appeases,\ -I handle thee, the strife of longing ceases,\ -The flood-tide of the spirit ebbs away.\ -Far out to sea I'm drawn, sweet voices listening,\ -The glassy waters at my feet are glistening,\ -To new shores beckons me a new-born day.\ - A fiery chariot floats, on airy pinions,\ -To where I sit! Willing, it beareth me,\ -On a new path, through ether's blue dominions,\ -To untried spheres of pure activity.\ -This lofty life, this bliss elysian,\ -Worm that thou waft erewhile, deservest thou?\ -Ay, on this earthly sun, this charming vision,\ -Turn thy back resolutely now!\ -Boldly draw near and rend the gates asunder,\ -By which each cowering mortal gladly steals.\ -Now is the time to show by deeds of wonder\ -That manly greatness not to godlike glory yields;\ -Before that gloomy pit to stand, unfearing,\ -Where Fantasy self-damned in its own torment lies,\ -Still onward to that pass-way steering,\ -Around whose narrow mouth hell-flames forever rise;\ -Calmly to dare the step, serene, unshrinking,\ -Though into nothingness the hour should see thee sinking.\ - Now, then, come down from thy old case, I bid thee,\ -Where thou, forgotten, many a year hast hid thee,\ -Into thy master's hand, pure, crystal glass!\ -The joy-feasts of the fathers thou hast brightened,\ -The hearts of gravest guests were lightened,\ -When, pledged, from hand to hand they saw thee pass.\ -Thy sides, with many a curious type bedight,\ -Which each, as with one draught he quaffed the liquor\ -Must read in rhyme from off the wondrous beaker,\ -Remind me, ah! of many a youthful night.\ -I shall not hand thee now to any neighbor,\ -Not now to show my wit upon thy carvings labor;\ -Here is a juice of quick-intoxicating might.\ -The rich brown flood adown thy sides is streaming,\ -With my own choice ingredients teeming;\ -Be this last draught, as morning now is gleaming,\ -Drained as a lofty pledge to greet the festal light!\ - [_He puts the goblet to his lips_.\ -\ -_Ringing of bells and choral song_.\ -\ -_Chorus of Angels_. Christ hath arisen!\ - Joy to humanity!\ - No more shall vanity,\ - Death and inanity\ - Hold thee in prison!\ -\ -_Faust_. What hum of music, what a radiant tone,\ -Thrills through me, from my lips the goblet stealing!\ -Ye murmuring bells, already make ye known\ -The Easter morn's first hour, with solemn pealing?\ -Sing you, ye choirs, e'en now, the glad, consoling song,\ -That once, from angel-lips, through gloom sepulchral rung,\ -A new immortal covenant sealing?\ -\ -_Chorus of Women_. Spices we carried,\ - Laid them upon his breast;\ - Tenderly buried\ - Him whom we loved the best;\ -\ - Cleanly to bind him\ - Took we the fondest care,\ - Ah! and we find him\ - Now no more there.\ -\ -_Chorus of Angels_. Christ hath ascended!\ - Reign in benignity!\ - Pain and indignity,\ - Scorn and malignity,\ - _Their_ work have ended.\ -\ -_Faust_. Why seek ye me in dust, forlorn,\ -Ye heavenly tones, with soft enchanting?\ -Go, greet pure-hearted men this holy morn!\ -Your message well I hear, but faith to me is wanting;\ -Wonder, its dearest child, of Faith is born.\ -To yonder spheres I dare no more aspire,\ -Whence the sweet tidings downward float;\ -And yet, from childhood heard, the old, familiar note\ -Calls back e'en now to life my warm desire.\ -Ah! once how sweetly fell on me the kiss\ -Of heavenly love in the still Sabbath stealing!\ -Prophetically rang the bells with solemn pealing;\ -A prayer was then the ecstasy of bliss;\ -A blessed and mysterious yearning\ -Drew me to roam through meadows, woods, and skies;\ -And, midst a thousand tear-drops burning,\ -I felt a world within me rise\ -That strain, oh, how it speaks youth's gleesome plays and feelings,\ -Joys of spring-festivals long past;\ -Remembrance holds me now, with childhood's fond appealings,\ -Back from the fatal step, the last.\ -Sound on, ye heavenly strains, that bliss restore me!\ -Tears gush, once more the spell of earth is o'er me\ -\ -_Chorus of Disciples_. Has the grave's lowly one\ - Risen victorious?\ - Sits he, God's Holy One,\ - High-throned and glorious?\ - He, in this blest new birth,\ - Rapture creative knows;[9]\ - Ah! on the breast of earth\ - Taste we still nature's woes.\ - Left here to languish\ - Lone in a world like this,\ - Fills us with anguish\ - Master, thy bliss!\ -\ -_Chorus of Angels_. Christ has arisen\ - Out of corruption's gloom.\ - Break from your prison,\ - Burst every tomb!\ - Livingly owning him,\ - Lovingly throning him,\ - Feasting fraternally,\ - Praying diurnally,\ - Bearing his messages,\ - Sharing his promises,\ - Find ye your master near,\ - Find ye him here![10]\ -\ -\ -\ -\ - BEFORE THE GATE.\ -\ - _Pedestrians of all descriptions stroll forth_.\ -\ -_Mechanics' Apprentices_. Where are you going to carouse?\ -\ -_Others_. We're all going out to the Hunter's House.\ -\ -_The First_. We're going, ourselves, out to the Mill-House, brothers.\ -\ -_An Apprentice_. The Fountain-House I rather recommend.\ -\ -_Second_. 'Tis not a pleasant road, my friend.\ -\ -_The second group_. What will you do, then?\ -\ -_A Third_. I go with the others.\ -\ -_Fourth_. Come up to Burgdorf, there you're sure to find good cheer,\ -The handsomest of girls and best of beer,\ -And rows, too, of the very first water.\ -\ -_Fifth_. You monstrous madcap, does your skin\ -Itch for the third time to try that inn?\ -I've had enough for _my_ taste in that quarter.\ -\ -_Servant-girl_. No! I'm going back again to town for one.\ -\ -_Others_. Under those poplars we are sure to meet him.\ -\ -_First Girl_. But that for me is no great fun;\ -For you are always sure to get him,\ -He never dances with any but you.\ -Great good to me your luck will do!\ -\ -_Others_. He's not alone, I heard him say,\ -The curly-head would be with him to-day.\ -\ -_Scholar_. Stars! how the buxom wenches stride there!\ -Quick, brother! we must fasten alongside there.\ -Strong beer, good smart tobacco, and the waist\ -Of a right handsome gall, well rigg'd, now that's my taste.\ -\ -_Citizen's Daughter_. Do see those fine, young fellows yonder!\ -'Tis, I declare, a great disgrace;\ -When they might have the very best, I wonder,\ -After these galls they needs must race!\ -\ -_Second scholar_ [_to the first_].\ -Stop! not so fast! there come two more behind,\ -My eyes! but ain't they dressed up neatly?\ -One is my neighbor, or I'm blind;\ -I love the girl, she looks so sweetly.\ -Alone all quietly they go,\ -You'll find they'll take us, by and bye, in tow.\ -\ -_First_. No, brother! I don't like these starched up ways.\ -Make haste! before the game slips through our fingers.\ -The hand that swings the broom o' Saturdays\ -On Sundays round thy neck most sweetly lingers.\ -\ -_Citizen_. No, I don't like at all this new-made burgomaster!\ -His insolence grows daily ever faster.\ -No good from him the town will get!\ -Will things grow better with him? Never!\ -We're under more constraint than ever,\ -And pay more tax than ever yet.\ -\ -_Beggar_. [_Sings_.] Good gentlemen, and you, fair ladies,\ - With such red cheeks and handsome dress,\ - Think what my melancholy trade is,\ - And see and pity my distress!\ - Help the poor harper, sisters, brothers!\ - Who loves to give, alone is gay.\ - This day, a holiday to others,\ - Make it for me a harvest day.\ -\ -_Another citizen_.\ -Sundays and holidays, I like, of all things, a good prattle\ -Of war and fighting, and the whole array,\ -When back in Turkey, far away,\ -The peoples give each other battle.\ -One stands before the window, drinks his glass,\ -And sees the ships with flags glide slowly down the river;\ -Comes home at night, when out of sight they pass,\ -And sings with joy, \"Oh, peace forever!\"\ -\ -_Third citizen_. So I say, neighbor! let them have their way,\ -Crack skulls and in their crazy riot\ -Turn all things upside down they may,\ -But leave us here in peace and quiet.\ -\ -_Old Woman_ [_to the citizen's daughter_].\ -Heyday, brave prinking this! the fine young blood!\ -Who is not smitten that has met you?--\ -But not so proud! All very good!\ -And what you want I'll promise soon to get you.\ -\ -_Citizen's Daughter_. Come, Agatha! I dread in public sight\ -To prattle with such hags; don't stay, O, Luddy!\ -'Tis true she showed me, on St. Andrew's night,\ -My future sweetheart in the body.\ -\ -_The other_. She showed me mine, too, in a glass,\ -Right soldierlike, with daring comrades round him.\ -I look all round, I study all that pass,\ -But to this hour I have not found him.\ -\ -_Soldiers_. Castles with lowering\ - Bulwarks and towers,\ - Maidens with towering\ - Passions and powers,\ - Both shall be ours!\ - Daring the venture,\ - Glorious the pay!\ -\ - When the brass trumpet\ - Summons us loudly,\ - Joy-ward or death-ward,\ - On we march proudly.\ - That is a storming!\ -\ - Life in its splendor!\ - Castles and maidens\ - Both must surrender.\ - Daring the venture,\ - Glorious the pay.\ - There go the soldiers\ - Marching away!\ -\ -\ - FAUST _and_ WAGNER.\ -\ -_Faust_. Spring's warm look has unfettered the fountains,\ -Brooks go tinkling with silvery feet;\ -Hope's bright blossoms the valley greet;\ -Weakly and sickly up the rough mountains\ -Pale old Winter has made his retreat.\ -Thence he launches, in sheer despite,\ -Sleet and hail in impotent showers,\ -O'er the green lawn as he takes his flight;\ -But the sun will suffer no white,\ -Everywhere waking the formative powers,\ -Living colors he yearns to spread;\ -Yet, as he finds it too early for flowers,\ -Gayly dressed people he takes instead.\ -Look from this height whereon we find us\ -Back to the town we have left behind us,\ -Where from the dark and narrow door\ -Forth a motley multitude pour.\ -They sun themselves gladly and all are gay,\ -They celebrate Christ's resurrection to-day.\ -For have not they themselves arisen?\ -From smoky huts and hovels and stables,\ -From labor's bonds and traffic's prison,\ -From the confinement of roofs and gables,\ -From many a cramping street and alley,\ -From churches full of the old world's night,\ -All have come out to the day's broad light.\ -See, only see! how the masses sally\ -Streaming and swarming through gardens and fields\ -How the broad stream that bathes the valley\ -Is everywhere cut with pleasure boats' keels,\ -And that last skiff, so heavily laden,\ -Almost to sinking, puts off in the stream;\ -Ribbons and jewels of youngster and maiden\ -From the far paths of the mountain gleam.\ -How it hums o'er the fields and clangs from the steeple!\ -This is the real heaven of the people,\ -Both great and little are merry and gay,\ -I am a man, too, I can be, to-day.\ -\ -_Wagner_. With you, Sir Doctor, to go out walking\ -Is at all times honor and gain enough;\ -But to trust myself here alone would be shocking,\ -For I am a foe to all that is rough.\ -Fiddling and bowling and screams and laughter\ -To me are the hatefullest noises on earth;\ -They yell as if Satan himself were after,\ -And call it music and call it mirth.\ -\ - [_Peasants (under the linden). Dance and song._]\ -\ -The shepherd prinked him for the dance,\ -With jacket gay and spangle's glance,\ -And all his finest quiddle.\ -And round the linden lass and lad\ -They wheeled and whirled and danced like mad.\ -Huzza! huzza!\ -Huzza! Ha, ha, ha!\ -And tweedle-dee went the fiddle.\ -\ -And in he bounded through the whirl,\ -And with his elbow punched a girl,\ -Heigh diddle, diddle!\ -The buxom wench she turned round quick,\ -\"Now that I call a scurvy trick!\"\ -Huzza! huzza!\ -Huzza! ha, ha, ha!\ -Tweedle-dee, tweedle-dee went the fiddle.\ -\ -And petticoats and coat-tails flew\ -As up and down they went, and through,\ -Across and down the middle.\ -They all grew red, they all grew warm,\ -And rested, panting, arm in arm,\ -Huzza! huzza!\ -Ta-ra-la!\ -Tweedle-dee went the fiddle!\ -\ -\"And don't be so familiar there!\ -How many a one, with speeches fair,\ -His trusting maid will diddle!\"\ -But still he flattered her aside--\ -And from the linden sounded wide:\ -Huzza! huzza!\ -Huzza! huzza! ha! ha! ha!\ -And tweedle-dee the fiddle.\ -\ -_Old Peasant._ Sir Doctor, this is kind of you,\ -That with us here you deign to talk,\ -And through the crowd of folk to-day\ -A man so highly larned, walk.\ -So take the fairest pitcher here,\ -Which we with freshest drink have filled,\ -I pledge it to you, praying aloud\ -That, while your thirst thereby is stilled,\ -So many days as the drops it contains\ -May fill out the life that to you remains.\ -\ -_Faust._ I take the quickening draught and call\ -For heaven's best blessing on one and all.\ -\ - [_The people form a circle round him._]\ -\ -_Old Peasant._ Your presence with us, this glad day,\ -We take it very kind, indeed!\ -In truth we've found you long ere this\ -In evil days a friend in need!\ -Full many a one stands living here,\ -Whom, at death's door already laid,\ -Your father snatched from fever's rage,\ -When, by his skill, the plague he stayed.\ -You, a young man, we daily saw\ -Go with him to the pest-house then,\ -And many a corpse was carried forth,\ -But you came out alive again.\ -With a charmed life you passed before us,\ -Helped by the Helper watching o'er us.\ -\ -_All._ The well-tried man, and may he live,\ -Long years a helping hand to give!\ -\ -_Faust._ Bow down to Him on high who sends\ -His heavenly help and helping friends!\ - [_He goes on with_ WAGNER.]\ -\ -_Wagner._ What feelings, O great man, thy heart must swell\ -Thus to receive a people's veneration!\ -O worthy all congratulation,\ -Whose gifts to such advantage tell.\ -The father to his son shows thee with exultation,\ -All run and crowd and ask, the circle closer draws,\ -The fiddle stops, the dancers pause,\ -Thou goest--the lines fall back for thee.\ -They fling their gay-decked caps on high;\ -A little more and they would bow the knee\ -As if the blessed Host came by.\ -\ -_Faust._ A few steps further on, until we reach that stone;\ -There will we rest us from our wandering.\ -How oft in prayer and penance there alone,\ -Fasting, I sate, on holy mysteries pondering.\ -There, rich in hope, in faith still firm,\ -I've wept, sighed, wrung my hands and striven\ -This plague's removal to extort (poor worm!)\ -From the almighty Lord of Heaven.\ -The crowd's applause has now a scornful tone;\ -O couldst thou hear my conscience tell its story,\ -How little either sire or son\ -Has done to merit such a glory!\ -My father was a worthy man, confused\ -And darkened with his narrow lucubrations,\ -Who with a whimsical, though well-meant patience,\ -On Nature's holy circles mused.\ -Shut up in his black laboratory,\ -Experimenting without end,\ -'Midst his adepts, till he grew hoary,\ -He sought the opposing powers to blend.\ -Thus, a red lion,[11] a bold suitor, married\ -The silver lily, in the lukewarm bath,\ -And, from one bride-bed to another harried,\ -The two were seen to fly before the flaming wrath.\ -If then, with colors gay and splendid,\ -The glass the youthful queen revealed,\ -Here was the physic, death the patients' sufferings ended,\ -And no one asked, who then was healed?\ -Thus, with electuaries so satanic,\ -Worse than the plague with all its panic,\ -We rioted through hill and vale;\ -Myself, with my own hands, the drug to thousands giving,\ -They passed away, and I am living\ -To hear men's thanks the murderers hail!\ -\ -_Wagner._ Forbear! far other name that service merits!\ -Can a brave man do more or less\ -Than with nice conscientiousness\ -To exercise the calling he inherits?\ -If thou, as youth, thy father honorest,\ -To learn from him thou wilt desire;\ -If thou, as man, men with new light hast blest,\ -Then may thy son to loftier heights aspire.\ -\ -_Faust._ O blest! who hopes to find repose,\ -Up from this mighty sea of error diving!\ -Man cannot use what he already knows,\ -To use the unknown ever striving.\ -But let not such dark thoughts a shadow throw\ -O'er the bright joy this hour inspires!\ -See how the setting sun, with ruddy glow,\ -The green-embosomed hamlet fires!\ -He sinks and fades, the day is lived and gone,\ -He hastens forth new scenes of life to waken.\ -O for a wing to lift and bear me on,\ -And on, to where his last rays beckon!\ -Then should I see the world's calm breast\ -In everlasting sunset glowing,\ -The summits all on fire, each valley steeped in rest,\ -The silver brook to golden rivers flowing.\ -No savage mountain climbing to the skies\ -Should stay the godlike course with wild abysses;\ -And now the sea, with sheltering, warm recesses\ -Spreads out before the astonished eyes.\ -At last it seems as if the God were sinking;\ -But a new impulse fires the mind,\ -Onward I speed, his endless glory drinking,\ -The day before me and the night behind,\ -The heavens above my head and under me the ocean.\ -A lovely dream,--meanwhile he's gone from sight.\ -Ah! sure, no earthly wing, in swiftest flight,\ -May with the spirit's wings hold equal motion.\ -Yet has each soul an inborn feeling\ -Impelling it to mount and soar away,\ -When, lost in heaven's blue depths, the lark is pealing\ -High overhead her airy lay;\ -When o'er the mountain pine's black shadow,\ -With outspread wing the eagle sweeps,\ -And, steering on o'er lake and meadow,\ -The crane his homeward journey keeps.\ -\ -_Wagner._ I've had myself full many a wayward hour,\ -But never yet felt such a passion's power.\ -One soon grows tired of field and wood and brook,\ -I envy not the fowl of heaven his pinions.\ -Far nobler joy to soar through thought's dominions\ -From page to page, from book to book!\ -Ah! winter nights, so dear to mind and soul!\ -Warm, blissful life through all the limbs is thrilling,\ -And when thy hands unfold a genuine ancient scroll,\ -It seems as if all heaven the room were filling.\ -\ -_Faust_. One passion only has thy heart possessed;\ -The other, friend, O, learn it never!\ -Two souls, alas! are lodged in my wild breast,\ -Which evermore opposing ways endeavor,\ -The one lives only on the joys of time,\ -Still to the world with clamp-like organs clinging;\ -The other leaves this earthly dust and slime,\ -To fields of sainted sires up-springing.\ -O, are there spirits in the air,\ -That empire hold 'twixt earth's and heaven's dominions,\ -Down from your realm of golden haze repair,\ -Waft me to new, rich life, upon your rosy pinions!\ -Ay! were a magic mantle only mine,\ -To soar o'er earth's wide wildernesses,\ -I would not sell it for the costliest dresses,\ -Not for a royal robe the gift resign.\ -\ -_Wagner_. O, call them not, the well known powers of air,\ -That swarm through all the middle kingdom, weaving\ -Their fairy webs, with many a fatal snare\ -The feeble race of men deceiving.\ -First, the sharp spirit-tooth, from out the North,\ -And arrowy tongues and fangs come thickly flying;\ -Then from the East they greedily dart forth,\ -Sucking thy lungs, thy life-juice drying;\ -If from the South they come with fever thirst,\ -Upon thy head noon's fiery splendors heaping;\ -The Westwind brings a swarm, refreshing first,\ -Then all thy world with thee in stupor steeping.\ -They listen gladly, aye on mischief bent,\ -Gladly draw near, each weak point to espy,\ -They make believe that they from heaven are sent,\ -Whispering like angels, while they lie.\ -But let us go! The earth looks gray, my friend,\ -The air grows cool, the mists ascend!\ -At night we learn our homes to prize.--\ -Why dost thou stop and stare with all thy eyes?\ -What can so chain thy sight there, in the gloaming?\ -\ -_Faust_. Seest thou that black dog through stalks and stubble roaming?\ -\ -_Wagner_. I saw him some time since, he seemed not strange to me.\ -\ -_Faust_. Look sharply! What dost take the beast to be?\ -\ -_Wagner_. For some poor poodle who has lost his master,\ -And, dog-like, scents him o'er the ground.\ -\ -_Faust_. Markst thou how, ever nearer, ever faster,\ -Towards us his spiral track wheels round and round?\ -And if my senses suffer no confusion,\ -Behind him trails a fiery glare.\ -\ -_Wagner_. 'Tis probably an optical illusion;\ -I still see only a black poodle there.\ -\ -_Faust_. He seems to me as he were tracing slyly\ -His magic rings our feet at last to snare.\ -\ -_Wagner_. To me he seems to dart around our steps so shyly,\ -As if he said: is one of them my master there?\ -\ -_Faust_. The circle narrows, he is near!\ -\ -_Wagner_. Thou seest! a dog we have, no spectre, here!\ -He growls and stops, crawls on his belly, too,\ -And wags his tail,--as all dogs do.\ -\ -_Faust_. Come here, sir! come, our comrade be!\ -\ -_Wagner_. He has a poodle's drollery.\ -Stand still, and he, too, waits to see;\ -Speak to him, and he jumps on thee;\ -Lose something, drop thy cane or sling it\ -Into the stream, he'll run and bring it.\ -\ -_Faust_. I think you're right; I trace no spirit here,\ -'Tis all the fruit of training, that is clear.\ -\ -_Wagner_. A well-trained dog is a great treasure,\ -Wise men in such will oft take pleasure.\ -And he deserves your favor and a collar,\ -He, of the students the accomplished scholar.\ -\ - [_They go in through the town gate._]\ -\ -\ -\ -\ - STUDY-CHAMBER.\ -\ - _Enter_ FAUST _with the_ POODLE.\ -\ -\ -I leave behind me field and meadow\ -Veiled in the dusk of holy night,\ -Whose ominous and awful shadow\ -Awakes the better soul to light.\ -To sleep are lulled the wild desires,\ -The hand of passion lies at rest;\ -The love of man the bosom fires,\ -The love of God stirs up the breast.\ -\ -Be quiet, poodle! what worrisome fiend hath possest thee,\ -Nosing and snuffling so round the door?\ -Go behind the stove there and rest thee,\ -There's my best pillow--what wouldst thou more?\ -As, out on the mountain-paths, frisking and leaping,\ -Thou, to amuse us, hast done thy best,\ -So now in return lie still in my keeping,\ -A quiet, contented, and welcome guest.\ -\ -When, in our narrow chamber, nightly,\ -The friendly lamp begins to burn,\ -Then in the bosom thought beams brightly,\ -Homeward the heart will then return.\ -Reason once more bids passion ponder,\ -Hope blooms again and smiles on man;\ -Back to life's rills he yearns to wander,\ -Ah! to the source where life began.\ -\ -Stop growling, poodle! In the music Elysian\ -That laps my soul at this holy hour,\ -These bestial noises have jarring power.\ -We know that men will treat with derision\ -Whatever they cannot understand,\ -At goodness and truth and beauty's vision\ -Will shut their eyes and murmur and howl at it;\ -And must the dog, too, snarl and growl at it?\ -\ -But ah, with the best will, I feel already,\ -No peace will well up in me, clear and steady.\ -But why must hope so soon deceive us,\ -And the dried-up stream in fever leave us?\ -For in this I have had a full probation.\ -And yet for this want a supply is provided,\ -To a higher than earth the soul is guided,\ -We are ready and yearn for revelation:\ -And where are its light and warmth so blent\ -As here in the New Testament?\ -I feel, this moment, a mighty yearning\ -To expound for once the ground text of all,\ -The venerable original\ -Into my own loved German honestly turning.\ - [_He opens the volume, and applies himself to the task_.]\ -\"In the beginning was the _Word_.\" I read.\ -But here I stick! Who helps me to proceed?\ -The _Word_--so high I cannot--dare not, rate it,\ -I must, then, otherwise translate it,\ -If by the spirit I am rightly taught.\ -It reads: \"In the beginning was the _thought_.\"\ -But study well this first line's lesson,\ -Nor let thy pen to error overhasten!\ -Is it the _thought_ does all from time's first hour?\ -\"In the beginning,\" read then, \"was the _power_.\"\ -Yet even while I write it down, my finger\ -Is checked, a voice forbids me there to linger.\ -The spirit helps! At once I dare to read\ -And write: \"In the beginning was the _deed_.\"\ -\ -If I with thee must share my chamber,\ -Poodle, now, remember,\ -No more howling,\ -No more growling!\ -I had as lief a bull should bellow,\ -As have for a chum such a noisy fellow.\ -Stop that yell, now,\ -One of us must quit this cell now!\ -'Tis hard to retract hospitality,\ -But the door is open, thy way is free.\ -But what ails the creature?\ -Is this in the course of nature?\ -Is it real? or one of Fancy's shows?\ -\ -How long and broad my poodle grows!\ -He rises from the ground;\ -That is no longer the form of a hound!\ -Heaven avert the curse from us!\ -He looks like a hippopotamus,\ -With his fiery eyes and the terrible white\ -Of his grinning teeth! oh what a fright\ -Have I brought with me into the house! Ah now,\ -No mystery art thou!\ -Methinks for such half hellish brood\ -The key of Solomon were good.\ -\ -_Spirits_ [_in the passage_]. Softly! a fellow is caught there!\ - Keep back, all of you, follow him not there!\ - Like the fox in the trap,\ - Mourns the old hell-lynx his mishap.\ - But give ye good heed!\ - This way hover, that way hover,\ - Over and over,\ - And he shall right soon be freed.\ - Help can you give him,\ - O do not leave him!\ - Many good turns he's done us,\ - Many a fortune won us.\ -\ -_Faust_. First, to encounter the creature\ -By the spell of the Four, says the teacher:\ - Salamander shall glisten,[12]\ - Undina lapse lightly,\ - Sylph vanish brightly,\ - Kobold quick listen.\ -\ -He to whom Nature\ -Shows not, as teacher,\ -Every force\ -And secret source,\ -Over the spirits\ -No power inherits.\ -\ - Vanish in glowing\ - Flame, Salamander!\ - Inward, spirally flowing,\ - Gurgle, Undine!\ - Gleam in meteoric splendor,\ - Airy Queen!\ - Thy homely help render,\ - Incubus! Incubus!\ - Forth and end the charm for us!\ -\ -No kingdom of Nature\ -Resides in the creature.\ -He lies there grinning--'tis clear, my charm\ -Has done the monster no mite of harm.\ -I'll try, for thy curing,\ -Stronger adjuring.\ -\ - Art thou a jail-bird,\ - A runaway hell-bird?\ - This sign,[13] then--adore it!\ - They tremble before it\ - All through the dark dwelling.\ -\ -His hair is bristling--his body swelling.\ -\ - Reprobate creature!\ - Canst read his nature?\ - The Uncreated,\ - Ineffably Holy,\ - With Deity mated,\ - Sin's victim lowly?\ -\ -Driven behind the stove by my spells,\ -Like an elephant he swells;\ -He fills the whole room, so huge he's grown,\ -He waxes shadowy faster and faster.\ -Rise not up to the ceiling--down!\ -Lay thyself at the feet of thy master!\ -Thou seest, there's reason to dread my ire.\ -I'll scorch thee with the holy fire!\ -Wait not for the sight\ -Of the thrice-glowing light!\ -Wait not to feel the might\ -Of the potentest spell in all my treasure!\ -\ -\ - MEPHISTOPHELES.\ - [_As the mist sinks, steps forth from behind the stove,\ - dressed as a travelling scholasticus_.]\ -Why all this noise? What is your worship's pleasure?\ -\ -_Faust_. This was the poodle's essence then!\ -A travelling clark? Ha! ha! The casus is too funny.\ -\ -_Mephistopheles_. I bow to the most learned among men!\ -'Faith you did sweat me without ceremony.\ -\ -_Faust_. What is thy name?\ -\ -_Mephistopheles_. The question seems too small\ -For one who holds the _word_ so very cheaply,\ -Who, far removed from shadows all,\ -For substances alone seeks deeply.\ -\ -_Faust_. With gentlemen like him in my presence,\ -The name is apt to express the essence,\ -Especially if, when you inquire,\ -You find it God of flies,[14] Destroyer, Slanderer, Liar.\ -Well now, who art thou then?\ -\ -_Mephistopheles_. A portion of that power,\ -Which wills the bad and works the good at every hour.\ -\ -_Faust_. Beneath thy riddle-word what meaning lies?\ -\ -_Mephistopheles_. I am the spirit that denies!\ -And justly so; for all that time creates,\ -He does well who annihilates!\ -Better, it ne'er had had beginning;\ -And so, then, all that you call sinning,\ -Destruction,--all you pronounce ill-meant,--\ -Is my original element.\ -\ -_Faust_. Thou call'st thyself a part, yet lookst complete to me.\ -\ -_Mephistopheles_. I speak the modest truth to thee.\ -A world of folly in one little soul,\ -_Man_ loves to think himself a whole;\ -Part of the part am I, which once was all, the Gloom\ -That brought forth Light itself from out her mighty womb,\ -The upstart proud, that now with mother Night\ -Disputes her ancient rank and space and right,\ -Yet never shall prevail, since, do whate'er he will,\ -He cleaves, a slave, to bodies still;\ -From bodies flows, makes bodies fair to sight;\ -A body in his course can check him,\ -His doom, I therefore hope, will soon o'ertake him,\ -With bodies merged in nothingness and night.\ -\ -_Faust_. Ah, now I see thy high vocation!\ -In gross thou canst not harm creation,\ -And so in small hast now begun.\ -\ -_Mephistopheles_. And, truth to tell, e'en here, not much have done.\ -That which at nothing the gauntlet has hurled,\ -This, what's its name? this clumsy world,\ -So far as I have undertaken,\ -I have to own, remains unshaken\ -By wave, storm, earthquake, fiery brand.\ -Calm, after all, remain both sea and land.\ -And the damn'd living fluff, of man and beast the brood,\ -It laughs to scorn my utmost power.\ -I've buried myriads by the hour,\ -And still there circulates each hour a new, fresh blood.\ -It were enough to drive one to distraction!\ -Earth, water, air, in constant action,\ -Through moist and dry, through warm and cold,\ -Going forth in endless germination!\ -Had I not claimed of fire a reservation,\ -Not one thing I alone should hold.\ -\ -_Faust_. Thus, with the ever-working power\ -Of good dost thou in strife persist,\ -And in vain malice, to this hour,\ -Clenchest thy cold and devilish fist!\ -Go try some other occupation,\ -Singular son of Chaos, thou!\ -\ -_Mephistopheles_. We'll give the thing consideration,\ -When next we meet again! But now\ -Might I for once, with leave retire?\ -\ -_Faust_. Why thou shouldst ask I do not see.\ -Now that I know thee, when desire\ -Shall prompt thee, freely visit me.\ -Window and door give free admission.\ -At least there's left the chimney flue.\ -\ -_Mephistopheles_. Let me confess there's one small prohibition\ -\ -Lies on thy threshold, 'gainst my walking through,\ -The wizard-foot--[15]\ -\ -_Faust_. Does that delay thee?\ -The Pentagram disturbs thee? Now,\ -Come tell me, son of hell, I pray thee,\ -If that spell-binds thee, then how enteredst thou?\ -_Thou_ shouldst proceed more circumspectly!\ -\ -_Mephistopheles_. Mark well! the figure is not drawn correctly;\ -One of the angles, 'tis the outer one,\ -Is somewhat open, dost perceive it?\ -\ -_Faust_. That was a lucky hit, believe it!\ -And I have caught thee then? Well done!\ -'Twas wholly chance--I'm quite astounded!\ -\ -_Mephistopheles_. The _poodle_ took no heed,\ -as through the door he bounded;\ -The case looks differently now;\ -The _devil_ can leave the house no-how.\ -\ -_Faust_. The window offers free emission.\ -\ -_Mephistopheles_. Devils and ghosts are bound by this condition:\ -\ -The way they entered in, they must come out. Allow\ -In the first clause we're free, yet not so in the second.\ -\ -_Faust_. In hell itself, then, laws are reckoned?\ -Now that I like; so then, one may, in fact,\ -Conclude a binding compact with you gentry?\ -\ -_Mephistopheles_. Whatever promise on our books finds entry,\ -We strictly carry into act.\ -But hereby hangs a grave condition,\ -Of this we'll talk when next we meet;\ -But for the present I entreat\ -Most urgently your kind dismission.\ -\ -_Faust_. Do stay but just one moment longer, then,\ -Tell me good news and I'll release thee.\ -\ -_Mephistopheles_. Let me go now! I'll soon come back again,\ -Then may'st thou ask whate'er shall please thee.\ -\ -_Faust_. I laid no snare for thee, old chap!\ -Thou shouldst have watched and saved thy bacon.\ -Who has the devil in his trap\ -Must hold him fast, next time he'll not so soon be taken.\ -\ -_Mephistopheles_. Well, if it please thee, I'm content to stay\ -For company, on one condition,\ -That I, for thy amusement, may\ -To exercise my arts have free permission.\ -\ -_Faust_. I gladly grant it, if they be\ -Not disagreeable to me.\ -\ -_Mephistopheles_. Thy senses, friend, in this one hour\ -Shall grasp the world with clearer power\ -Than in a year's monotony.\ -The songs the tender spirits sing thee,\ -The lovely images they bring thee\ -Are not an idle magic play.\ -Thou shalt enjoy the daintiest savor,\ -Then feast thy taste on richest flavor,\ -Then thy charmed heart shall melt away.\ -Come, all are here, and all have been\ -Well trained and practised, now begin!\ -\ -_Spirits_. Vanish, ye gloomy\ - Vaulted abysses!\ - Tenderer, clearer,\ - Friendlier, nearer,\ - Ether, look through!\ - O that the darkling\ - Cloud-piles were riven!\ - Starlight is sparkling,\ - Purer is heaven,\ - Holier sunshine\ - Softens the blue.\ - Graces, adorning\ - Sons of the morning--\ - Shadowy wavings--\ - Float along over;\ - Yearnings and cravings\ - After them hover.\ - Garments ethereal,\ - Tresses aerial,\ - Float o'er the flowers,\ - Float o'er the bowers,\ - Where, with deep feeling,\ - Thoughtful and tender,\ - Lovers, embracing,\ - Life-vows are sealing.\ - Bowers on bowers!\ - Graceful and slender\ - Vines interlacing!\ - Purple and blushing,\ - Under the crushing\ - Wine-presses gushing,\ - Grape-blood, o'erflowing,\ - Down over gleaming\ - Precious stones streaming,\ - Leaves the bright glowing\ - Tops of the mountains,\ - Leaves the red fountains,\ - Widening and rushing,\ - Till it encloses\ - Green hills all flushing,\ - Laden with roses.\ - Happy ones, swarming,\ - Ply their swift pinions,\ - Glide through the charming\ - Airy dominions,\ - Sunward still fleering,\ - Onward, where peering\ - Far o'er the ocean,\ - Islets are dancing\ - With an entrancing,\ - Magical motion;\ - Hear them, in chorus,\ - Singing high o'er us;\ - Over the meadows\ - Flit the bright shadows;\ - Glad eyes are glancing,\ - Tiny feet dancing.\ - Up the high ridges\ - Some of them clamber,\ - Others are skimming\ - Sky-lakes of amber,\ - Others are swimming\ - Over the ocean;--\ - All are in motion,\ - Life-ward all yearning,\ - Longingly turning\ - To the far-burning\ - Star-light of bliss.\ -\ -_Mephistopheles_. He sleeps! Ye airy, tender youths, your numbers\ -Have sung him into sweetest slumbers!\ -You put me greatly in your debt by this.\ -Thou art not yet the man that shall hold fast the devil!\ -Still cheat his senses with your magic revel,\ -Drown him in dreams of endless youth;\ -But this charm-mountain on the sill to level,\ -I need, O rat, thy pointed tooth!\ -Nor need I conjure long, they're near me,\ -E'en now comes scampering one, who presently will hear me.\ -\ -The sovereign lord of rats and mice,\ -Of flies and frogs and bugs and lice,\ -Commands thee to come forth this hour,\ -And gnaw this threshold with great power,\ -As he with oil the same shall smear--\ -Ha! with a skip e'en now thou'rt here!\ -But brisk to work! The point by which I'm cowered,\ -Is on the ledge, the farthest forward.\ -Yet one more bite, the deed is done.--\ -Now, Faust, until we meet again, dream on!\ -\ -_Faust_. [_Waking_.] Again has witchcraft triumphed o'er me?\ -Was it a ghostly show, so soon withdrawn?\ -I dream, the devil stands himself before me--wake, to find a poodle gone!\ -\ -\ -\ -\ - STUDY-CHAMBER.\ -\ - FAUST. MEPHISTOPHELES.\ -\ -\ -_Faust_. A knock? Walk in! Who comes again to tease me?\ -\ -_Mephistopheles_. 'Tis I.\ -\ -_Faust_. Come in!\ -\ -_Mephistopheles_. Must say it thrice, to please me.\ -\ -_Faust_. Come in then!\ -\ -_Mephistopheles_. That I like to hear.\ -We shall, I hope, bear with each other;\ -For to dispel thy crotchets, brother,\ -As a young lord, I now appear,\ -In scarlet dress, trimmed with gold lacing,\ -A stiff silk cloak with stylish facing,\ -A tall cock's feather in my hat,\ -A long, sharp rapier to defend me,\ -And I advise thee, short and flat,\ -In the same costume to attend me;\ -If thou wouldst, unembarrassed, see\ -What sort of thing this life may be.\ -\ -_Faust_. In every dress I well may feel the sore\ -Of this low earth-life's melancholy.\ -I am too old to live for folly,\ -Too young, to wish for nothing more.\ -Am I content with all creation?\ -Renounce! renounce! Renunciation--\ -Such is the everlasting song\ -That in the ears of all men rings,\ -Which every hour, our whole life long,\ -With brazen accents hoarsely sings.\ -With terror I behold each morning's light,\ -With bitter tears my eyes are filling,\ -To see the day that shall not in its flight\ -Fulfil for me one wish, not one, but killing\ -Every presentiment of zest\ -With wayward skepticism, chases\ -The fair creations from my breast\ -With all life's thousand cold grimaces.\ -And when at night I stretch me on my bed\ -And darkness spreads its shadow o'er me;\ -No rest comes then anigh my weary head,\ -Wild dreams and spectres dance before me.\ -The God who dwells within my soul\ -Can heave its depths at any hour;\ -Who holds o'er all my faculties control\ -Has o'er the outer world no power;\ -Existence lies a load upon my breast,\ -Life is a curse and death a long'd-for rest.\ -\ -_Mephistopheles_. And yet death never proves a wholly welcome guest.\ -\ -_Faust_. O blest! for whom, when victory's joy fire blazes,\ -Death round his brow the bloody laurel windeth,\ -Whom, weary with the dance's mazes,\ -He on a maiden's bosom findeth.\ -O that, beneath the exalted spirit's power,\ -I had expired, in rapture sinking!\ -\ -_Mephistopheles_. And yet I knew one, in a midnight hour,\ -Who a brown liquid shrank from drinking.\ -\ -_Faust_. Eaves-dropping seems a favorite game with thee.\ -\ -_Mephistopheles_. Omniscient am I not; yet much is known to me.\ -\ -_Faust_. Since that sweet tone, with fond appealing,\ -Drew me from witchcraft's horrid maze,\ -And woke the lingering childlike feeling\ -With harmonies of happier days;\ -My curse on all the mock-creations\ -That weave their spell around the soul,\ -And bind it with their incantations\ -And orgies to this wretched hole!\ -Accursed be the high opinion\ -Hugged by the self-exalting mind!\ -Accursed all the dream-dominion\ -That makes the dazzled senses blind!\ -Curs'd be each vision that befools us,\ -Of fame, outlasting earthly life!\ -Curs'd all that, as possession, rules us,\ -As house and barn, as child and wife!\ -Accurs'd be mammon, when with treasure\ -He fires our hearts for deeds of might,\ -When, for a dream of idle pleasure,\ -He makes our pillow smooth and light!\ -Curs'd be the grape-vine's balsam-juices!\ -On love's high grace my curses fall!\ -On faith! On hope that man seduces,\ -On patience last, not least, of all!\ -\ -_Choir of spirits_. [_Invisible_.] Woe! Woe!\ - Thou hast ground it to dust,\ - The beautiful world,\ - With mighty fist;\ - To ruins 'tis hurled;\ - A demi-god's blow hath done it!\ - A moment we look upon it,\ - Then carry (sad duty!)\ - The fragments over into nothingness,\ - With tears unavailing\ - Bewailing\ - All the departed beauty.\ - Lordlier\ - Than all sons of men,\ - Proudlier\ - Build it again,\ - Build it up in thy breast anew!\ - A fresh career pursue,\ - Before thee\ - A clearer view,\ - And, from the Empyréan,\ - A new-born Paean\ - Shall greet thee, too!\ -\ -_Mephistopheles_. Be pleased to admire\ - My juvenile choir!\ - Hear how they counsel in manly measure\ - Action and pleasure!\ - Out into life,\ - Its joy and strife,\ - Away from this lonely hole,\ - Where senses and soul\ - Rot in stagnation,\ - Calls thee their high invitation.\ -\ -Give over toying with thy sorrow\ -Which like a vulture feeds upon thy heart;\ -Thou shalt, in the worst company, to-morrow\ -Feel that with men a man thou art.\ -Yet I do not exactly intend\ -Among the canaille to plant thee.\ -I'm none of your magnates, I grant thee;\ -Yet if thou art willing, my friend,\ -Through life to jog on beside me,\ -Thy pleasure in all things shall guide me,\ -To thee will I bind me,\ -A friend thou shalt find me,\ -And, e'en to the grave,\ -Shalt make me thy servant, make me thy slave!\ -\ -_Faust_. And in return what service shall I render?\ -\ -_Mephistopheles_. There's ample grace--no hurry, not the least.\ -\ -_Faust_. No, no, the devil is an egotist,\ -And does not easily \"for God's sake\" tender\ -That which a neighbor may assist.\ -Speak plainly the conditions, come!\ -'Tis dangerous taking such a servant home.\ -\ -_Mephistopheles_. I to thy service _here_ agree to bind me,\ -To run and never rest at call of thee;\ -When _over yonder_ thou shalt find me,\ -Then thou shalt do as much for me.\ -\ -_Faust_. I care not much what's over yonder:\ -When thou hast knocked this world asunder,\ -Come if it will the other may!\ -Up from this earth my pleasures all are streaming,\ -Down on my woes this earthly sun is beaming;\ -Let me but end this fit of dreaming,\ -Then come what will, I've nought to say.\ -I'll hear no more of barren wonder\ -If in that world they hate and love,\ -And whether in that future yonder\ -There's a Below and an Above.\ -\ -_Mephistopheles._ In such a mood thou well mayst venture.\ -Bind thyself to me, and by this indenture\ -Thou shalt enjoy with relish keen\ -Fruits of my arts that man had never seen.\ -\ -_Faust_. And what hast thou to give, poor devil?\ -Was e'er a human mind, upon its lofty level,\ -Conceived of by the like of thee?\ -Yet hast thou food that brings satiety,\ -Not satisfaction; gold that reftlessly,\ -Like quicksilver, melts down within\ -The hands; a game in which men never win;\ -A maid that, hanging on my breast,\ -Ogles a neighbor with her wanton glances;\ -Of fame the glorious godlike zest,\ -That like a short-lived meteor dances--\ -Show me the fruit that, ere it's plucked, will rot,\ -And trees from which new green is daily peeping!\ -\ -_Mephistopheles_. Such a requirement scares me not;\ -Such treasures have I in my keeping.\ -Yet shall there also come a time, good friend,\ -When we may feast on good things at our leisure.\ -\ -_Faust_. If e'er I lie content upon a lounge of pleasure--\ -Then let there be of me an end!\ -When thou with flattery canst cajole me,\ -Till I self-satisfied shall be,\ -When thou with pleasure canst befool me,\ -Be that the last of days for me!\ -I lay the wager!\ -\ -_Mephistopheles_. Done!\ -\ -_Faust_. And heartily!\ -Whenever to the passing hour\ -I cry: O stay! thou art so fair!\ -To chain me down I give thee power\ -To the black bottom of despair!\ -Then let my knell no longer linger,\ -Then from my service thou art free,\ -Fall from the clock the index-finger,\ -Be time all over, then, for me!\ -\ -_Mephistopheles_. Think well, for we shall hold you to the letter.\ -\ -_Faust_. Full right to that just now I gave;\ -I spoke not as an idle braggart better.\ -Henceforward I remain a slave,\ -What care I who puts on the setter?\ -\ -_Mephistopheles_. I shall this very day, at Doctor's-feast,[16]\ -My bounden service duly pay thee.\ -But one thing!--For insurance' sake, I pray thee,\ -Grant me a line or two, at least.\ -\ -_Faust_. Pedant! will writing gain thy faith, alone?\ -In all thy life, no man, nor man's word hast thou known?\ -Is't not enough that I the fatal word\ -That passes on my future days have spoken?\ -The world-stream raves and rushes (hast not heard?)\ -And shall a promise hold, unbroken?\ -Yet this delusion haunts the human breast,\ -Who from his soul its roots would sever?\ -Thrice happy in whose heart pure truth finds rest.\ -No sacrifice shall he repent of ever!\ -But from a formal, written, sealed attest,\ -As from a spectre, all men shrink forever.\ -The word and spirit die together,\ -Killed by the sight of wax and leather.\ -What wilt thou, evil sprite, from me?\ -Brass, marble, parchment, paper, shall it be?\ -Shall I subscribe with pencil, pen or graver?\ -Among them all thy choice is free.\ -\ -_Mephistopheles_. This rhetoric of thine to me\ -Hath a somewhat bombastic savor.\ -Any small scrap of paper's good.\ -Thy signature will need a single drop of blood.[17]\ -\ -_Faust_. If this will satisfy thy mood,\ -I will consent thy whim to favor.\ -\ -_Mephistopheles._ Quite a peculiar juice is blood.\ -\ -_Faust_. Fear not that I shall break this bond; O, never!\ -My promise, rightly understood,\ -Fulfils my nature's whole endeavor.\ -I've puffed myself too high, I see;\ -To _thy_ rank only I belong.\ -The Lord of Spirits scorneth me,\ -Nature, shut up, resents the wrong.\ -The thread of thought is snapt asunder,\ -All science to me is a stupid blunder.\ -Let us in sensuality's deep\ -Quench the passions within us blazing!\ -And, the veil of sorcery raising,\ -Wake each miracle from its long sleep!\ -Plunge we into the billowy dance,\ -The rush and roll of time and chance!\ -Then may pleasure and distress,\ -Disappointment and success,\ -Follow each other as fast as they will;\ -Man's restless activity flourishes still.\ -\ -_Mephistopheles_. No bound or goal is set to you;\ -Where'er you like to wander sipping,\ -And catch a tit-bit in your skipping,\ -Eschew all coyness, just fall to,\ -And may you find a good digestion!\ -\ -_Faust_. Now, once for all, pleasure is not the question.\ -I'm sworn to passion's whirl, the agony of bliss,\ -The lover's hate, the sweets of bitterness.\ -My heart, no more by pride of science driven,\ -Shall open wide to let each sorrow enter,\ -And all the good that to man's race is given,\ -I will enjoy it to my being's centre,\ -Through life's whole range, upward and downward sweeping,\ -Their weal and woe upon my bosom heaping,\ -Thus in my single self their selves all comprehending\ -And with them in a common shipwreck ending.\ -\ -_Mephistopheles_. O trust me, who since first I fell from heaven,\ -Have chewed this tough meat many a thousand year,\ -No man digests the ancient leaven,\ -No mortal, from the cradle to the bier.\ -Trust one of _us_--the _whole_ creation\ -To God alone belongs by right;\ -_He_ has in endless day his habitation,\ -_Us_ He hath made for utter night,\ -_You_ for alternate dark and light.\ -\ -_Faust_. But then I _will!\ -\ -_Mephistopheles_. Now that's worth hearing!\ -But one thing haunts me, the old song,\ -That time is short and art is long.\ -You need some slight advice, I'm fearing.\ -Take to you one of the poet-feather,\ -Let the gentleman's thought, far-sweeping,\ -Bring all the noblest traits together,\ -On your one crown their honors heaping,\ -The lion's mood\ -The stag's rapidity,\ -The fiery blood of Italy,\ -The Northman's hardihood.\ -Bid him teach thee the art of combining\ -Greatness of soul with fly designing,\ -And how, with warm and youthful passion,\ -To fall in love by plan and fashion.\ -Should like, myself, to come across 'm,\ -Would name him Mr. Microcosm.\ -\ -_Faust_. What am I then? if that for which my heart\ -Yearns with invincible endeavor,\ -The crown of man, must hang unreached forever?\ -\ -_Mephistopheles_. Thou art at last--just what thou art.\ -Pile perukes on thy head whose curls cannot be counted,\ -On yard-high buskins let thy feet be mounted,\ -Still thou art only what thou art.\ -\ -_Faust_. Yes, I have vainly, let me not deny it,\ -Of human learning ransacked all the stores,\ -And when, at last, I set me down in quiet,\ -There gushes up within no new-born force;\ -I am not by a hair's-breadth higher,\ -Am to the Infinite no nigher.\ -\ -_Mephistopheles_. My worthy sir, you see the matter\ -As people generally see;\ -But we must learn to take things better,\ -Before life pleasures wholly flee.\ -The deuce! thy head and all that's in it,\ -Hands, feet and ------ are thine;\ -What I enjoy with zest each minute,\ -Is surely not the less mine?\ -If I've six horses in my span,\ -Is it not mine, their every power?\ -I fly along as an undoubted man,\ -On four and twenty legs the road I scour.\ -Cheer up, then! let all thinking be,\ -And out into the world with me!\ -I tell thee, friend, a speculating churl\ -Is like a beast, some evil spirit chases\ -Along a barren heath in one perpetual whirl,\ -While round about lie fair, green pasturing places.\ -\ -_Faust_. But how shall we begin?\ -\ -_Mephistopheles_. We sally forth e'en now.\ -What martyrdom endurest thou!\ -What kind of life is this to be living,\ -Ennui to thyself and youngsters giving?\ -Let Neighbor Belly that way go!\ -To stay here threshing straw why car'st thou?\ -The best that thou canst think and know\ -To tell the boys not for the whole world dar'st thou.\ -E'en now I hear one in the entry.\ -\ -_Faust_. I have no heart the youth to see.\ -\ -_Mephistopheles_. The poor boy waits there like a sentry,\ -He shall not want a word from me.\ -Come, give me, now, thy robe and bonnet;\ -This mask will suit me charmingly.\ - [_He puts them on_.]\ -Now for my wit--rely upon it!\ -'Twill take but fifteen minutes, I am sure.\ -Meanwhile prepare thyself to make the pleasant tour!\ -\ - [_Exit_ FAUST.]\ -\ -_Mephistopheles [in_ FAUST'S _long gown_].\ -Only despise all human wit and lore,\ -The highest flights that thought can soar--\ -Let but the lying spirit blind thee,\ -And with his spells of witchcraft bind thee,\ -Into my snare the victim creeps.--\ -To him has destiny a spirit given,\ -That unrestrainedly still onward sweeps,\ -To scale the skies long since hath striven,\ -And all earth's pleasures overleaps.\ -He shall through life's wild scenes be driven,\ -And through its flat unmeaningness,\ -I'll make him writhe and stare and stiffen,\ -And midst all sensual excess,\ -His fevered lips, with thirst all parched and riven,\ -Insatiably shall haunt refreshment's brink;\ -And had he not, himself, his soul to Satan given,\ -Still must he to perdition sink!\ -\ - [_Enter_ A SCHOLAR.]\ -\ -_Scholar_. I have but lately left my home,\ -And with profound submission come,\ -To hold with one some conversation\ -Whom all men name with veneration.\ -\ -_Mephistopheles._ Your courtesy greatly flatters me\ -A man like many another you see.\ -Have you made any applications elsewhere?\ -\ -_Scholar_. Let me, I pray, your teachings share!\ -With all good dispositions I come,\ -A fresh young blood and money some;\ -My mother would hardly hear of my going;\ -But I long to learn here something worth knowing.\ -\ -_Mephistopheles_. You've come to the very place for it, then.\ -\ -_Scholar_. Sincerely, could wish I were off again:\ -My soul already has grown quite weary\ -Of walls and halls, so dark and dreary,\ -The narrowness oppresses me.\ -One sees no green thing, not a tree.\ -On the lecture-seats, I know not what ails me,\ -Sight, hearing, thinking, every thing fails me.\ -\ -_Mephistopheles_. 'Tis all in use, we daily see.\ -The child takes not the mother's breast\ -In the first instance willingly,\ -But soon it feeds itself with zest.\ -So you at wisdom's breast your pleasure\ -Will daily find in growing measure.\ -\ -_Scholar_. I'll hang upon her neck, a raptured wooer,\ -But only tell me, who shall lead me to her?\ -\ -_Mephistopheles_. Ere you go further, give your views\ -As to which faculty you choose?\ -\ -_Scholar_. To be right learn'd I've long desired,\ -And of the natural world aspired\ -To have a perfect comprehension\ -In this and in the heavenly sphere.\ -\ -_Mephistopheles_. I see you're on the right track here;\ -But you'll have to give undivided attention.\ -\ -_Scholar_. My heart and soul in the work'll be found;\ -Only, of course, it would give me pleasure,\ -When summer holidays come round,\ -To have for amusement a little leisure.\ -\ -_Mephistopheles_. Use well the precious time, it flips away so,\ -Yet method gains you time, if I may say so.\ -I counsel you therefore, my worthy friend,\ -The logical leisures first to attend.\ -Then is your mind well trained and cased\ -In Spanish boots,[18] all snugly laced,\ -So that henceforth it can creep ahead\ -On the road of thought with a cautious tread.\ -And not at random shoot and strike,\ -Zig-zagging Jack-o'-lanthorn-like.\ -Then will you many a day be taught\ -That what you once to do had thought\ -Like eating and drinking, extempore,\ -Requires the rule of one, two, three.\ -It is, to be sure, with the fabric of thought,\ -As with the _chef d'œuvre_ by weavers wrought,\ -Where a thousand threads one treadle plies,\ -Backward and forward the shuttles keep going,\ -Invisibly the threads keep flowing,\ -One stroke a thousand fastenings ties:\ -Comes the philosopher and cries:\ -I'll show you, it could not be otherwise:\ -The first being so, the second so,\ -The third and fourth must of course be so;\ -And were not the first and second, you see,\ -The third and fourth could never be.\ -The scholars everywhere call this clever,\ -But none have yet become weavers ever.\ -Whoever will know a live thing and expound it,\ -First kills out the spirit it had when he found it,\ -And then the parts are all in his hand,\ -Minus only the spiritual band!\ -Encheiresin naturæ's[19] the chemical name,\ -By which dunces themselves unwittingly shame.\ -\ -_Scholar_. Cannot entirely comprehend you.\ -\ -_Mephistopheles_. Better success will shortly attend you,\ -When you learn to analyze all creation\ -And give it a proper classification.\ -\ -_Scholar_. I feel as confused by all you've said,\ -As if 'twere a mill-wheel going round in my head!\ -\ -_Mephistopheles_. The next thing most important to mention,\ -Metaphysics will claim your attention!\ -There see that you can clearly explain\ -What fits not into the human brain:\ -For that which will not go into the head,\ -A pompous word will stand you in stead.\ -But, this half-year, at least, observe\ -From regularity never to swerve.\ -You'll have five lectures every day;\ -Be in at the stroke of the bell I pray!\ -And well prepared in every part;\ -Study each paragraph by heart,\ -So that you scarce may need to look\ -To see that he says no more than's in the book;\ -And when he dictates, be at your post,\ -As if you wrote for the Holy Ghost!\ -\ -_Scholar_. That caution is unnecessary!\ -I know it profits one to write,\ -For what one has in black and white,\ -He to his home can safely carry.\ -\ -_Mephistopheles_. But choose some faculty, I pray!\ -\ -_Scholar_. I feel a strong dislike to try the legal college.\ -\ -_Mephistopheles_. I cannot blame you much, I must acknowledge.\ -I know how this profession stands to-day.\ -Statutes and laws through all the ages\ -Like a transmitted malady you trace;\ -In every generation still it rages\ -And softly creeps from place to place.\ -Reason is nonsense, right an impudent suggestion;\ -Alas for thee, that thou a grandson art!\ -Of inborn law in which each man has part,\ -Of that, unfortunately, there's no question.\ -\ -_Scholar_. My loathing grows beneath your speech.\ -O happy he whom you shall teach!\ -To try theology I'm almost minded.\ -\ -_Mephistopheles_. I must not let you by zeal be blinded.\ -This is a science through whose field\ -Nine out of ten in the wrong road will blunder,\ -And in it so much poison lies concealed,\ -That mould you this mistake for physic, no great wonder.\ -Here also it were best, if only one you heard\ -And swore to that one master's word.\ -Upon the whole--words only heed you!\ -These through the temple door will lead you\ -Safe to the shrine of certainty.\ -\ -_Scholar_. Yet in the word a thought must surely be.\ -\ -_Mephistopheles_. All right! But one must not perplex himself about it;\ -For just where one must go without it,\ -The word comes in, a friend in need, to thee.\ -With words can one dispute most featly,\ -With words build up a system neatly,\ -In words thy faith may stand unshaken,\ -From words there can be no iota taken.\ -\ -_Scholar_. Forgive my keeping you with many questions,\ -Yet must I trouble you once more,\ -Will you not give me, on the score\ -Of medicine, some brief suggestions?\ -Three years are a short time, O God!\ -And then the field is quite too broad.\ -If one had only before his nose\ -Something else as a hint to follow!--\ -\ -_Mephistopheles_ [_aside_]. I'm heartily tired of this dry prose,\ -Must play the devil again out hollow.\ - [_Aloud_.]\ -The healing art is quickly comprehended;\ -Through great and little world you look abroad,\ -And let it wag, when all is ended,\ -As pleases God.\ -Vain is it that your science sweeps the skies,\ -Each, after all, learns only what he can;\ -Who grasps the moment as it flies\ -He is the real man.\ -Your person somewhat takes the eye,\ -Boldness you'll find an easy science,\ -And if you on yourself rely,\ -Others on you will place reliance.\ -In the women's good graces seek first to be seated;\ -Their oh's and ah's, well known of old,\ -So thousand-fold,\ -Are all from a single point to be treated;\ -Be decently modest and then with ease\ -You may get the blind side of them when you please.\ -A title, first, their confidence must waken,\ -That _your_ art many another art transcends,\ -Then may you, lucky man, on all those trifles reckon\ -For which another years of groping spends:\ -Know how to press the little pulse that dances,\ -And fearlessly, with sly and fiery glances,\ -Clasp the dear creatures round the waist\ -To see how tightly they are laced.\ -\ -_Scholar_. This promises! One loves the How and Where to see!\ -\ -_Mephistopheles_. Gray, worthy friend, is all your theory\ -And green the golden tree of life.\ -\ -_Scholar_. I seem,\ -I swear to you, like one who walks in dream.\ -Might I another time, without encroaching,\ -Hear you the deepest things of wisdom broaching?\ -\ -_Mephistopheles_. So far as I have power, you may.\ -\ -_Scholar_. I cannot tear myself away,\ -Till I to you my album have presented.\ -Grant me one line and I'm contented!\ -\ -_Mephistopheles_. With pleasure.\ - [_Writes and returns it_.]\ -\ -_Scholar [reads]._ Eritis sicut Deus, scientes bonum et malum.\ - [_Shuts it reverently, and bows himself out_.]\ -\ -_Mephistopheles_.\ -Let but the brave old saw and my aunt, the serpent, guide thee,\ -And, with thy likeness to God, shall woe one day betide thee!\ -\ -_Faust [enters_]. Which way now shall we go?\ -\ -_Mephistopheles_. Which way it pleases thee.\ -The little world and then the great we see.\ -O with what gain, as well as pleasure,\ -Wilt thou the rollicking cursus measure!\ -\ -_Faust_. I fear the easy life and free\ -With my long beard will scarce agree.\ -'Tis vain for me to think of succeeding,\ -I never could learn what is called good-breeding.\ -In the presence of others I feel so small;\ -I never can be at my ease at all.\ -\ -_Mephistopheles_. Dear friend, vain trouble to yourself you're giving;\ -Whence once you trust yourself, you know the art of living.\ -\ -_Faust_. But how are we to start, I pray?\ -Where are thy servants, coach and horses?\ -\ -_Mephistopheles_. We spread the mantle, and away\ -It bears us on our airy courses.\ -But, on this bold excursion, thou\ -Must take no great portmanteau now.\ -A little oxygen, which I will soon make ready,\ -From earth uplifts us, quick and steady.\ -And if we're light, we'll soon surmount the sphere;\ -I give thee hearty joy in this thy new career.\ -\ -\ -\ -\ - AUERBACH'S CELLAR IN LEIPSIC.[20]\ -\ - _Carousal of Jolly Companions_.\ -\ -\ -_Frosch_.[21] Will nobody drink? Stop those grimaces!\ -I'll teach you how to be cutting your faces!\ -Laugh out! You're like wet straw to-day,\ -And blaze, at other times, like dry hay.\ -\ -_Brander_. 'Tis all your fault; no food for fun you bring,\ -Not a nonsensical nor nasty thing.\ -\ -_Frosch [dashes a glass of wine over his bead_]. There you have both!\ -\ -_Brander_. You hog twice o'er!\ -\ -_Frosch_. You wanted it, what would you more?\ -\ -_Siebel_ Out of the door with them that brawl!\ -Strike up a round; swill, shout there, one and all!\ -Wake up! Hurra!\ -\ -_Altmayer_. Woe's me, I'm lost! Bring cotton!\ -The rascal splits my ear-drum.\ -\ -_Siebel_. Only shout on!\ -When all the arches ring and yell,\ -Then does the base make felt its true ground-swell.\ -\ -_Frosch_. That's right, just throw him out, who undertakes to fret!\ -A! tara! lara da!\ -\ -_Altmayer_. A! tara! lara da!\ -\ -_Frosch_. Our whistles all are wet.\ - [_Sings_.]\ - The dear old holy Romish realm,\ - What holds it still together?\ -\ -_Brander_. A sorry song! Fie! a political song!\ -A tiresome song! Thank God each morning therefor,\ -That you have not the Romish realm to care for!\ -At least I count it a great gain that He\ -Kaiser nor chancellor has made of me.\ -E'en we can't do without a head, however;\ -To choose a pope let us endeavour.\ -You know what qualification throws\ -The casting vote and the true man shows.\ -\ -_Frosch [sings_].\ - Lady Nightingale, upward soar,\ - Greet me my darling ten thousand times o'er.\ -\ -_Siebel_. No greetings to that girl! Who does so, I resent it!\ -\ -_Frosch_. A greeting and a kiss! And you will not prevent it!\ - [_Sings.]_\ - Draw the bolts! the night is clear.\ - Draw the bolts! Love watches near.\ - Close the bolts! the dawn is here.\ -\ -_Siebel_. Ay, sing away and praise and glorify your dear!\ -Soon I shall have my time for laughter.\ -The jade has jilted me, and will you too hereafter;\ -May Kobold, for a lover, be her luck!\ -At night may he upon the cross-way meet her;\ -Or, coming from the Blocksberg, some old buck\ -May, as he gallops by, a good-night bleat her!\ -A fellow fine of real flesh and blood\ -Is for the wench a deal too good.\ -She'll get from me but one love-token,\ -That is to have her window broken!\ -\ -_Brander [striking on the table_]. Attend! attend! To me give ear!\ -I know what's life, ye gents, confess it:\ -We've lovesick people sitting near,\ -And it is proper they should hear\ -A good-night strain as well as I can dress it.\ -Give heed! And hear a bran-new song!\ -Join in the chorus loud and strong!\ - [_He sings_.]\ - A rat in the cellar had built his nest,\ - He daily grew sleeker and smoother,\ - He lined his paunch from larder and chest,\ - And was portly as Doctor Luther.\ - The cook had set him poison one day;\ - From that time forward he pined away\ - As if he had love in his body.\ -\ -_Chorus [flouting_]. As if he had love in his body.\ -\ -_Brander_. He raced about with a terrible touse,\ - From all the puddles went swilling,\ - He gnawed and he scratched all over the house,\ - His pain there was no stilling;\ - He made full many a jump of distress,\ - And soon the poor beast got enough, I guess,\ - As if he had love in his body.\ -\ -_Chorus_. As if he had love in his body.\ -\ -_Brander_. With pain he ran, in open day,\ - Right up into the kitchen;\ - He fell on the hearth and there he lay\ - Gasping and moaning and twitchin'.\ - Then laughed the poisoner: \"He! he! he!\ - He's piping on the last hole,\" said she,\ - \"As if he had love in his body.\"\ -\ -_Chorus_. As if he had love in his body.\ -\ -_Siebel_. Just hear now how the ninnies giggle!\ -That's what I call a genuine art,\ -To make poor rats with poison wriggle!\ -\ -_Brander_. You take their case so much to heart?\ -\ -_Altmayer_. The bald pate and the butter-belly!\ -The sad tale makes him mild and tame;\ -He sees in the swollen rat, poor fellow!\ -His own true likeness set in a frame.\ -\ -\ - FAUST _and_ MEPHISTOPHELES.\ -\ -_Mephistopheles_. Now, first of all, 'tis necessary\ -To show you people making merry,\ -That you may see how lightly life can run.\ -Each day to this small folk's a feast of fun;\ -Not over-witty, self-contented,\ -Still round and round in circle-dance they whirl,\ -As with their tails young kittens twirl.\ -If with no headache they're tormented,\ -Nor dunned by landlord for his pay,\ -They're careless, unconcerned, and gay.\ -\ -_Brander_. They're fresh from travel, one might know it,\ -Their air and manner plainly show it;\ -They came here not an hour ago.\ -\ -_Frosch_. Thou verily art right! My Leipsic well I know!\ -Paris in small it is, and cultivates its people.\ -\ -_Siebel_. What do the strangers seem to thee?\ -\ -_Frosch_. Just let me go! When wine our friendship mellows,\ -Easy as drawing a child's tooth 'twill be\ -To worm their secrets out of these two fellows.\ -They're of a noble house, I dare to swear,\ -They have a proud and discontented air.\ -\ -_Brander_. They're mountebanks, I'll bet a dollar!\ -\ -_Altmayer_. Perhaps.\ -\ -_Frosch_. I'll smoke them, mark you that!\ -\ -_Mephistopheles_ [_to Faust_]. These people never smell the old rat,\ -E'en when he has them by the collar.\ -\ -_Faust_. Fair greeting to you, sirs!\ -\ -_Siebel_. The same, and thanks to boot.\ - [_In a low tone, faking a side look at MEPHISTOPHELES_.]\ -Why has the churl one halting foot?\ -\ -_Mephistopheles_. With your permission, shall we make one party?\ -Instead of a good drink, which get here no one can,\ -Good company must make us hearty.\ -\ -_Altmayer_. You seem a very fastidious man.\ -\ -_Frosch_. I think you spent some time at Rippach[22] lately?\ -You supped with Mister Hans not long since, I dare say?\ -\ -_Mephistopheles_. We passed him on the road today!\ -Fine man! it grieved us parting with him, greatly.\ -He'd much to say to us about his cousins,\ -And sent to each, through us, his compliments by dozens.\ - [_He bows to_ FROSCH.]\ -\ -_Altmayer_ [_softly_]. You've got it there! he takes!\ -\ -_Siebel_. The chap don't want for wit!\ -\ -_Frosch_. I'll have him next time, wait a bit!\ -\ -_Mephistopheles_. If I mistook not, didn't we hear\ -Some well-trained voices chorus singing?\ -'Faith, music must sound finely here.\ -From all these echoing arches ringing!\ -\ -_Frosch_. You are perhaps a connoisseur?\ -\ -_Mephistopheles_. O no! my powers are small, I'm but an amateur.\ -\ -_Altmayer_. Give us a song!\ -\ -_Mephistopheles_. As many's you desire.\ -\ -_Siebel_. But let it be a bran-new strain!\ -\ -_Mephistopheles_. No fear of that! We've just come back from Spain,\ -The lovely land of wine and song and lyre.\ - [_Sings_.]\ - There was a king, right stately,\ - Who had a great, big flea,--\ -\ -_Frosch_. Hear him! A flea! D'ye take there, boys? A flea!\ -I call that genteel company.\ -\ -_Mephistopheles_ [_resumes_]. There was a king, right stately,\ - Who had a great, big flea,\ - And loved him very greatly,\ - As if his own son were he.\ - He called the knight of stitches;\ - The tailor came straightway:\ - Ho! measure the youngster for breeches,\ - And make him a coat to-day!\ -\ -_Brander_. But don't forget to charge the knight of stitches,\ -The measure carefully to take,\ -And, as he loves his precious neck,\ -To leave no wrinkles in the breeches.\ -\ -_Mephistopheles_. In silk and velvet splendid\ - The creature now was drest,\ - To his coat were ribbons appended,\ - A cross was on his breast.\ - He had a great star on his collar,\ - Was a minister, in short;\ - And his relatives, greater and smaller,\ - Became great people at court.\ -\ - The lords and ladies of honor\ - Fared worse than if they were hung,\ - The queen, she got them upon her,\ - And all were bitten and stung,\ - And did not dare to attack them,\ - Nor scratch, but let them stick.\ - We choke them and we crack them\ - The moment we feel one prick.\ -\ -_Chorus_ [_loud_]. We choke 'em and we crack 'em\ -The moment we feel one prick.\ -\ -_Frosch_. Bravo! Bravo! That was fine!\ -\ -_Siebel_. So shall each flea his life resign!\ -\ -_Brander_. Point your fingers and nip them fine!\ -\ -_Altmayer_. Hurra for Liberty! Hurra for Wine!\ -\ -_Mephistopheles_. I'd pledge the goddess, too, to show how high I set her,\ -Right gladly, if your wines were just a trifle better.\ -\ -_Siebel_. Don't say that thing again, you fretter!\ -\ -_Mephistopheles_. Did I not fear the landlord to affront;\ -I'd show these worthy guests this minute\ -What kind of stuff our stock has in it.\ -\ -_Siebel_. Just bring it on! I'll bear the brunt.\ -\ -_Frosch_. Give us a brimming glass, our praise shall then be ample,\ -But don't dole out too small a sample;\ -For if I'm to judge and criticize,\ -I need a good mouthful to make me wise.\ -\ -_Altmayer_ [_softly_]. They're from the Rhine, as near as I can make it.\ -\ -_Mephistopheles_. Bring us a gimlet here!\ -\ -_Brander_. What shall be done with that?\ -You've not the casks before the door, I take it?\ -\ -_Altmayer_. The landlord's tool-chest there is easily got at.\ -\ -_Mephistopheles_ [_takes the gimlet_] (_to Frosch_).\ -What will you have? It costs but speaking.\ -\ -_Frosch_. How do you mean? Have you so many kinds?\ -\ -_Mephistopheles_. Enough to suit all sorts of minds.\ -\ -_Altmayer_. Aha! old sot, your lips already licking!\ -\ -_Frosch_. Well, then! if I must choose, let Rhine-wine fill my beaker,\ -Our fatherland supplies the noblest liquor.\ -\ - MEPHISTOPHELES\ - [_boring a hole in the rim of the table near the place\ - where_ FROSCH _sits_].\ -Get us a little wax right off to make the stoppers!\ -\ -_Altmayer_. Ah, these are jugglers' tricks, and whappers!\ -\ -_Mephistopheles_ [_to Brander_]. And you?\ -\ -_Brander_. Champaigne's the wine for me,\ -But then right sparkling it must be!\ -\ - [MEPHISTOPHELES _bores; meanwhile one of them has made\ - the wax-stoppers and stopped the holes_.]\ -\ -_Brander_. Hankerings for foreign things will sometimes haunt you,\ -The good so far one often finds;\ -Your real German man can't bear the French, I grant you,\ -And yet will gladly drink their wines.\ -\ -_Siebel_ [_while Mephistopheles approaches his seat_].\ -I don't like sour, it sets my mouth awry,\ -Let mine have real sweetness in it!\ -\ -_Mephistopheles_ [_bores_]. Well, you shall have Tokay this minute.\ -\ -_Altmayer_. No, sirs, just look me in the eye!\ -I see through this, 'tis what the chaps call smoking.\ -\ -_Mephistopheles_. Come now! That would be serious joking,\ -To make so free with worthy men.\ -But quickly now! Speak out again!\ -With what description can I serve you?\ -\ -_Altmayer_. Wait not to ask; with any, then.\ -\ - [_After all the holes are bored and stopped_.]\ -\ -_Mephistopheles_ [_with singular gestures_].\ -From the vine-stock grapes we pluck;\ -Horns grow on the buck;\ -Wine is juicy, the wooden table,\ -Like wooden vines, to give wine is able.\ -An eye for nature's depths receive!\ -Here is a miracle, only believe!\ -Now draw the plugs and drink your fill!\ -\ - ALL\ - [_drawing the stoppers, and catching each in his glass\ - the wine he had desired_].\ -Sweet spring, that yields us what we will!\ -\ -_Mephistopheles_. Only be careful not a drop to spill!\ - [_They drink repeatedly_.]\ -\ -_All_ [_sing_]. We're happy all as cannibals,\ - Five hundred hogs together.\ -\ -_Mephistopheles_. Look at them now, they're happy as can be!\ -\ -_Faust_. To go would suit my inclination.\ -\ -_Mephistopheles_. But first give heed, their bestiality\ -Will make a glorious demonstration.\ -\ - SIEBEL\ - [_drinks carelessly; the wine is spilt upon the ground\ - and turns to flame_].\ -Help! fire! Ho! Help! The flames of hell!\ -\ -_Mephistopheles [_conjuring the flame_].\ -Peace, friendly element, be still!\ - [_To the Toper_.]\ -This time 'twas but a drop of fire from purgatory.\ -\ -_Siebel_. What does this mean? Wait there, or you'll be sorry!\ -It seems you do not know us well.\ -\ -_Frosch_. Not twice, in this way, will it do to joke us!\ -\ -_Altmayer_. I vote, we give him leave himself here _scarce_ to make.\ -\ -_Siebel_. What, sir! How dare you undertake\ -To carry on here your old hocus-pocus?\ -\ -_Mephistopheles_. Be still, old wine-cask!\ -\ -_Siebel_. Broomstick, you!\ -Insult to injury add? Confound you!\ -\ -_Brander_. Stop there! Or blows shall rain down round you!\ -\ - ALTMAYER\ - [_draws a stopper out of the table; fire flies at him_].\ -I burn! I burn!\ -\ -_Siebel_. Foul sorcery! Shame!\ -Lay on! the rascal is fair game!\ -\ - [_They draw their knives and rush at_ MEPHISTOPHELES.]\ -\ -_Mephistopheles_ [_with a serious mien_].\ -Word and shape of air!\ -Change place, new meaning wear!\ -Be here--and there!\ -\ - [_They stand astounded and look at each other_.]\ -\ -_Altmayer_. Where am I? What a charming land!\ -\ -_Frosch_. Vine hills! My eyes! Is't true?\ -\ -_Siebel_. And grapes, too, close at hand!\ -\ -_Brander_. Beneath this green see what a stem is growing!\ -See what a bunch of grapes is glowing!\ - [_He seizes_ SIEBEL _by the nose. The rest do the same to each\ - other and raise their knives._]\ -\ -_Mephistopheles_ [_as above_]. Loose, Error, from their eyes the band!\ -How Satan plays his tricks, you need not now be told of.\ - [_He vanishes with_ FAUST, _the companions start back from each\ - other_.]\ -\ -_Siebel_. What ails me?\ -\ -_Altmayer_. How?\ -\ -_Frosch_. Was that thy nose, friend, I had hold of?\ -\ -_Brander_ [_to Siebel_]. And I have thine, too, in my hand!\ -\ -_Altmayer_. O what a shock! through all my limbs 'tis crawling!\ -Get me a chair, be quick, I'm falling!\ -\ -_Frosch_. No, say what was the real case?\ -\ -_Siebel_. O show me where the churl is hiding!\ -Alive he shall not leave the place!\ -\ -_Altmayer_. Out through the cellar-door I saw him riding--\ -Upon a cask--he went full chase.--\ -Heavy as lead my feet are growing.\ -\ - [_Turning towards the table_.]\ -\ -My! If the wine should yet be flowing.\ -\ -_Siebel_. 'Twas all deception and moonshine.\ -\ -_Frosch_. Yet I was sure I did drink wine.\ -\ -_Brander_. But how about the bunches, brother?\ -\ -_Altmayer_. After such miracles, I'll doubt no other!\ -\ -\ -\ -\ - WITCHES' KITCHEN.\ -\ - [_On a low hearth stands a great kettle over the fire. In the smoke,\ -which rises from it, are seen various forms. A female monkey[28] sits by\ -the kettle and skims it, and takes care that it does not run over. The\ -male monkey with the young ones sits close by, warming himself. Walls and\ -ceiling are adorned 'with the most singular witch-household stuff_.]\ -\ -\ - FAUST. MEPHISTOPHELES.\ -\ -_Faust_. Would that this vile witch-business were well over!\ -Dost promise me I shall recover\ -In this hodge-podge of craziness?\ -From an old hag do I advice require?\ -And will this filthy cooked-up mess\ -My youth by thirty years bring nigher?\ -Woe's me, if that's the best you know!\ -Already hope is from my bosom banished.\ -Has not a noble mind found long ago\ -Some balsam to restore a youth that's vanished?\ -\ -_Mephistopheles_. My friend, again thou speakest a wise thought!\ -I know a natural way to make thee young,--none apter!\ -But in another book it must be sought,\ -And is a quite peculiar chapter.\ -\ -_Faust_. I beg to know it.\ -\ -_Mephistopheles_. Well! here's one that needs no pay,\ -No help of physic, nor enchanting.\ -Out to the fields without delay,\ -And take to hacking, digging, planting;\ -Run the same round from day to day,\ -A treadmill-life, contented, leading,\ -With simple fare both mind and body feeding,\ -Live with the beast as beast, nor count it robbery\ -Shouldst thou manure, thyself, the field thou reapest;\ -Follow this course and, trust to me,\ -For eighty years thy youth thou keepest!\ -\ -_Faust_. I am not used to that, I ne'er could bring me to it,\ -To wield the spade, I could not do it.\ -The narrow life befits me not at all.\ -\ -_Mephistopheles_. So must we on the witch, then, call.\ -\ -_Faust_. But why just that old hag? Canst thou\ -Not brew thyself the needful liquor?\ -\ -_Mephistopheles_. That were a pretty pastime now\ -I'd build about a thousand bridges quicker.\ -Science and art alone won't do,\ -The work will call for patience, too;\ -Costs a still spirit years of occupation:\ -Time, only, strengthens the fine fermentation.\ -To tell each thing that forms a part\ -Would sound to thee like wildest fable!\ -The devil indeed has taught the art;\ -To make it not the devil is able.\ - [_Espying the animals_.]\ -See, what a genteel breed we here parade!\ -This is the house-boy! that's the maid!\ - [_To the animals_.]\ -Where's the old lady gone a mousing?\ -\ -_The animals_. Carousing;\ -Out she went\ -By the chimney-vent!\ -\ -_Mephistopheles_. How long does she spend in gadding and storming?\ -\ -_The animals_. While we are giving our paws a warming.\ -\ -_Mephistopheles_ [_to Faust_]. How do you find the dainty creatures?\ -\ -_Faust_. Disgusting as I ever chanced to see!\ -\ -_Mephistopheles_. No! a discourse like this to me,\ -I own, is one of life's most pleasant features;\ - [_To the animals_.]\ -Say, cursed dolls, that sweat, there, toiling!\ -What are you twirling with the spoon?\ -\ -_Animals_. A common beggar-soup we're boiling.\ -\ -_Mephistopheles_. You'll have a run of custom soon.\ -\ - THE HE-MONKEY\ - [_Comes along and fawns on_ MEPHISTOPHELES].\ - O fling up the dice,\ - Make me rich in a trice,\ - Turn fortune's wheel over!\ - My lot is right bad,\ - If money I had,\ - My wits would recover.\ -\ -_Mephistopheles_. The monkey'd be as merry as a cricket,\ -Would somebody give him a lottery-ticket!\ -\ - [_Meanwhile the young monkeys have been playing with a great\ - ball, which they roll backward and forward_.]\ -\ -_The monkey_. 'The world's the ball;\ - See't rise and fall,\ - Its roll you follow;\ - Like glass it rings:\ - Both, brittle things!\ - Within 'tis hollow.\ - There it shines clear,\ - And brighter here,--\ - I live--by 'Pollo!--\ - Dear son, I pray,\ - Keep hands away!\ - _Thou_ shalt fall so!\ - 'Tis made of clay,\ - Pots are, also.\ -\ -_Mephistopheles_. What means the sieve?\ -\ -_The monkey [takes it down_]. Wert thou a thief,\ - 'Twould show the thief and shame him.\ - [_Runs to his mate and makes her look through_.]\ - Look through the sieve!\ - Discern'st thou the thief,\ - And darest not name him?\ -\ -_Mephistopheles [approaching the fire_]. And what's this pot?\ -\ -_The monkeys_. The dunce! I'll be shot!\ - He knows not the pot,\ - He knows not the kettle!\ -\ -_Mephistopheles_. Impertinence! Hush!\ -\ -_The monkey_. Here, take you the brush,\ - And sit on the settle!\ - [_He forces_ MEPHISTOPHELES _to sit down_.]\ -\ - FAUST\ - [_who all this time has been standing before a looking-glass,\ - now approaching and now receding from it_].\ -\ -What do I see? What heavenly face\ -Doth, in this magic glass, enchant me!\ -O love, in mercy, now, thy swiftest pinions grant me!\ -And bear me to her field of space!\ -Ah, if I seek to approach what doth so haunt me,\ -If from this spot I dare to stir,\ -Dimly as through a mist I gaze on her!--\ -The loveliest vision of a woman!\ -Such lovely woman can there be?\ -Must I in these reposing limbs naught human.\ -But of all heavens the finest essence see?\ -Was such a thing on earth seen ever?\ -\ -_Mephistopheles_. Why, when you see a God six days in hard work spend,\ -And then cry bravo at the end,\ -Of course you look for something clever.\ -Look now thy fill; I have for thee\ -Just such a jewel, and will lead thee to her;\ -And happy, whose good fortune it shall be,\ -To bear her home, a prospered wooer!\ -\ -[FAUST _keeps on looking into the mirror_. MEPHISTOPHELES\ -_stretching himself out on the settle and playing with the brush,\ -continues speaking_.]\ -Here sit I like a king upon his throne,\ -The sceptre in my hand,--I want the crown alone.\ -\ - THE ANIMALS\ - [_who up to this time have been going through all sorts of queer antics\ - with each other, bring_ MEPHISTOPHELES _a crown with a loud cry_].\ - O do be so good,--\ - With sweat and with blood,\ - To take it and lime it;\ - [_They go about clumsily with the crown and break it into two pieces,\ - with which they jump round_.]\ - 'Tis done now! We're free!\ - We speak and we see,\ - We hear and we rhyme it;\ -\ -_Faust [facing the mirror_]. Woe's me! I've almost lost my wits.\ -\ -_Mephistopheles [pointing to the animals_].\ -My head, too, I confess, is very near to spinning.\ -\ -_The animals_. And then if it hits\ - And every thing fits,\ - We've thoughts for our winning.\ -\ -_Faust [as before_]. Up to my heart the flame is flying!\ -Let us begone--there's danger near!\ -\ -_Mephistopheles [in the former position_].\ -Well, this, at least, there's no denying,\ -That we have undissembled poets here.\ -\ -[The kettle, which the she-monkey has hitherto left unmatched, begins to\ -run over; a great flame breaks out, which roars up the chimney. The_ WITCH\ -_comes riding down through the flame with a terrible outcry_.]\ -\ -_Witch_. Ow! Ow! Ow! Ow!\ - The damned beast! The cursed sow!\ - Neglected the kettle, scorched the Frau!\ - The cursed crew!\ - [_Seeing_ FAUST _and_ MEPHISTOPHELES.]\ - And who are you?\ - And what d'ye do?\ - And what d'ye want?\ - And who sneaked in?\ - The fire-plague grim\ - Shall light on him\ - In every limb!\ -\ - [_She makes a dive at the kettle with the skimmer and spatters flames\ - at _FAUST, MEPHISTOPHELES_, and the creatures. These last whimper_.]\ -\ - MEPHISTOPHELES\ - [_inverting the brush which he holds in his hand, and striking\ - among the glasses and pots_].\ -\ - In two! In two!\ - There lies the brew!\ - There lies the glass!\ - This joke must pass;\ - For time-beat, ass!\ - To thy melody, 'twill do.\ - [_While the_ WITCH _starts back full of wrath and horror.]\ -Skeleton! Scarcecrow! Spectre! Know'st thou me,\ -Thy lord and master? What prevents my dashing\ -Right in among thy cursed company,\ -Thyself and all thy monkey spirits smashing?\ -Has the red waistcoat thy respect no more?\ -Has the cock's-feather, too, escaped attention?\ -Hast never seen this face before?\ -My name, perchance, wouldst have me mention?\ -\ -_The witch_. Pardon the rudeness, sir, in me!\ -But sure no cloven foot I see.\ -Nor find I your two ravens either.\ -\ -_Mephistopheles_. I'll let thee off for this once so;\ -For a long while has passed, full well I know,\ -Since the last time we met together.\ -The culture, too, which licks the world to shape,\ -The devil himself cannot escape;\ -The phantom of the North men's thoughts have left behind them,\ -Horns, tail, and claws, where now d'ye find them?\ -And for the foot, with which dispense I nowise can,\ -'Twould with good circles hurt my standing;\ -And so I've worn, some years, like many a fine young man,\ -False calves to make me more commanding.\ -\ -_The witch [dancing_]. O I shall lose my wits, I fear,\ -Do I, again, see Squire Satan here!\ -\ -_Mephistopheles_. Woman, the name offends my ear!\ -\ -_The witch_. Why so? What has it done to you?\ -\ -_Mephistopheles_. It has long since to fable-books been banished;\ -But men are none the better for it; true,\ -The wicked _one_, but not the wicked _ones_, has vanished.\ -Herr Baron callst thou me, then all is right and good;\ -I am a cavalier, like others. Doubt me?\ -Doubt for a moment of my noble blood?\ -See here the family arms I bear about me!\ - [_He makes an indecent gesture.]\ -\ -The witch [laughs immoderately_]. Ha! ha! full well I know you, sir!\ -You are the same old rogue you always were!\ -\ -_Mephistopheles [to Faust_]. I pray you, carefully attend,\ -This is the way to deal with witches, friend.\ -\ -_The witch_. Now, gentles, what shall I produce?\ -\ -_Mephistopheles_. A right good glassful of the well-known juice!\ -And pray you, let it be the oldest;\ -Age makes it doubly strong for use.\ -\ -_The witch_. Right gladly! Here I have a bottle,\ -From which, at times, I wet my throttle;\ -Which now, not in the slightest, stinks;\ -A glass to you I don't mind giving;\ - [_Softly_.]\ -But if this man, without preparing, drinks,\ -He has not, well you know, another hour for living.\ -\ -_Mephistopheles_.\ -'Tis a good friend of mine, whom it shall straight cheer up;\ -Thy kitchen's best to give him don't delay thee.\ -Thy ring--thy spell, now, quick, I pray thee,\ -And give him then a good full cup.\ -\ -[_The_ WITCH, _with strange gestures, draws a circle, and places singular\ -things in it; mean-while the glasses begin to ring, the kettle to sound\ -and make music. Finally, she brings a great book and places the monkeys in\ -the circle, whom she uses as a reading-desk and to hold the torches. She\ -beckons_ FAUST _to come to her_.]\ -\ -_Faust [to Mephistopheles_].\ -Hold! what will come of this? These creatures,\ -These frantic gestures and distorted features,\ -And all the crazy, juggling fluff,\ -I've known and loathed it long enough!\ -\ -_Mephistopheles_. Pugh! that is only done to smoke us;\ -Don't be so serious, my man!\ -She must, as Doctor, play her hocus-pocus\ -To make the dose work better, that's the plan.\ - [_He constrains_ FAUST _to step into the circle_.]\ -\ - THE WITCH\ - [_beginning with great emphasis to declaim out of the book_]\ -\ - Remember then!\ - Of One make Ten,\ - The Two let be,\ - Make even Three,\ - There's wealth for thee.\ - The Four pass o'er!\ - Of Five and Six,\ - (The witch so speaks,)\ - Make Seven and Eight,\ - The thing is straight:\ - And Nine is One\ - And Ten is none--\ - This is the witch's one-time-one![24]\ -\ -_Faust_. The old hag talks like one delirious.\ -\ -_Mephistopheles_. There's much more still, no less mysterious,\ -I know it well, the whole book sounds just so!\ -I've lost full many a year in poring o'er it,\ -For perfect contradiction, you must know,\ -A mystery stands, and fools and wise men bow before it,\ -The art is old and new, my son.\ -Men, in all times, by craft and terror,\ -With One and Three, and Three and One,\ -For truth have propagated error.\ -They've gone on gabbling so a thousand years;\ -Who on the fools would waste a minute?\ -Man generally thinks, if words he only hears,\ -Articulated noise must have some meaning in it.\ -\ -_The witch [goes on_]. Deep wisdom's power\ - Has, to this hour,\ - From all the world been hidden!\ - Whoso thinks not,\ - To him 'tis brought,\ - To him it comes unbidden.\ -\ -_Faust_. What nonsense is she talking here?\ -My heart is on the point of cracking.\ -In one great choir I seem to hear\ -A hundred thousand ninnies clacking.\ -\ -_Mephistopheles_. Enough, enough, rare Sibyl, sing us\ -These runes no more, thy beverage bring us,\ -And quickly fill the goblet to the brim;\ -This drink may by my friend be safely taken:\ -Full many grades the man can reckon,\ -Many good swigs have entered him.\ -\ - [_The_ WITCH, _with many ceremonies, pours the drink into a cup;\ - as she puts it to_ FAUST'S _lips, there rises a light flame_.]\ -\ -_Mephistopheles_. Down with it! Gulp it down! 'Twill prove\ -All that thy heart's wild wants desire.\ -Thou, with the devil, hand and glove,[25]\ -And yet wilt be afraid of fire?\ -\ - [_The_ WITCH _breaks the circle_; FAUST _steps out_.]\ -\ -_Mephistopheles_. Now briskly forth! No rest for thee!\ -\ -_The witch_. Much comfort may the drink afford you!\ -\ -_Mephistopheles [to the witch_]. And any favor you may ask of me,\ -I'll gladly on Walpurgis' night accord you.\ -\ -_The witch_. Here is a song, which if you sometimes sing,\ -'Twill stir up in your heart a special fire.\ -\ -_Mephistopheles [to Faust_]. Only make haste; and even shouldst thou tire,\ -Still follow me; one must perspire,\ -That it may set his nerves all quivering.\ -I'll teach thee by and bye to prize a noble leisure,\ -And soon, too, shalt thou feel with hearty pleasure,\ -How busy Cupid stirs, and shakes his nimble wing.\ -\ -_Faust_. But first one look in yonder glass, I pray thee!\ -Such beauty I no more may find!\ -\ -_Mephistopheles_. Nay! in the flesh thine eyes shall soon display thee\ -The model of all woman-kind.\ - [_Softly_.]\ -Soon will, when once this drink shall heat thee,\ -In every girl a Helen meet thee!\ -\ -\ -\ -\ - A STREET.\ -\ - FAUST. MARGARET [_passing over_].\ -\ -_Faust_. My fair young lady, will it offend her\ -If I offer my arm and escort to lend her?\ -\ -_Margaret_. Am neither lady, nor yet am fair!\ -Can find my way home without any one's care.\ - [_Disengages herself and exit_.]\ -\ -_Faust_. By heavens, but then the child _is_ fair!\ -I've never seen the like, I swear.\ -So modest is she and so pure,\ -And somewhat saucy, too, to be sure.\ -The light of the cheek, the lip's red bloom,\ -I shall never forget to the day of doom!\ -How me cast down her lovely eyes,\ -Deep in my soul imprinted lies;\ -How she spoke up, so curt and tart,\ -Ah, that went right to my ravished heart!\ - [_Enter_ MEPHISTOPHELES.]\ -\ -_Faust_. Hark, thou shalt find me a way to address her!\ -\ -_Mephistopheles_. Which one?\ -\ -_Faust_. She just went by.\ -\ -_Mephistopheles_. What! She?\ -She came just now from her father confessor,\ -Who from all sins pronounced her free;\ -I stole behind her noiselessly,\ -'Tis an innocent thing, who, for nothing at all,\ -Must go to the confessional;\ -O'er such as she no power I hold!\ -\ -_Faust_. But then she's over fourteen years old.\ -\ -_Mephistopheles_. Thou speak'st exactly like Jack Rake,\ -Who every fair flower his own would make.\ -And thinks there can be no favor nor fame,\ -But one may straightway pluck the same.\ -But 'twill not always do, we see.\ -\ -_Faust_. My worthy Master Gravity,\ -Let not a word of the Law be spoken!\ -One thing be clearly understood,--\ -Unless I clasp the sweet, young blood\ -This night in my arms--then, well and good:\ -When midnight strikes, our bond is broken.\ -\ -_Mephistopheles_. Reflect on all that lies in the way!\ -I need a fortnight, at least, to a day,\ -For finding so much as a way to reach her.\ -\ -_Faust_. Had I seven hours, to call my own,\ -Without the devil's aid, alone\ -I'd snare with ease so young a creature.\ -\ -_Mephistopheles_. You talk quite Frenchman-like to-day;\ -But don't be vexed beyond all measure.\ -What boots it thus to snatch at pleasure?\ -'Tis not so great, by a long way,\ -As if you first, with tender twaddle,\ -And every sort of fiddle-faddle,\ -Your little doll should mould and knead,\ -As one in French romances may read.\ -\ -_Faust_. My appetite needs no such spur.\ -\ -_Mephistopheles_. Now, then, without a jest or slur,\ -I tell you, once for all, such speed\ -With the fair creature won't succeed.\ -Nothing will here by storm be taken;\ -We must perforce on intrigue reckon.\ -\ -_Faust_. Get me some trinket the angel has blest!\ -Lead me to her chamber of rest!\ -Get me a 'kerchief from her neck,\ -A garter get me for love's sweet sake!\ -\ -_Mephistopheles_. To prove to you my willingness\ -To aid and serve you in this distress;\ -You shall visit her chamber, by me attended,\ -Before the passing day is ended.\ -\ -_Faust_. And see her, too? and have her?\ -\ -_Mephistopheles_. Nay!\ -She will to a neighbor's have gone away.\ -Meanwhile alone by yourself you may,\ -There in her atmosphere, feast at leisure\ -And revel in dreams of future pleasure.\ -\ -_Faust_. Shall we start at once?\ -\ -_Mephistopheles_. 'Tis too early yet.\ -\ -_Faust_. Some present to take her for me you must get.\ -\ - [_Exit_.]\ -\ -_Mephistopheles_. Presents already! Brave! He's on the right foundation!\ -Full many a noble place I know,\ -And treasure buried long ago;\ -Must make a bit of exploration.\ -\ - [_Exit_.]\ -\ -\ -\ -\ - EVENING.\ -\ - _A little cleanly Chamber_.\ -\ -MARGARET [_braiding and tying up her hair_.]\ -I'd give a penny just to say\ -What gentleman that was to-day!\ -How very gallant he seemed to be,\ -He's of a noble family;\ -That I could read from his brow and bearing--\ -And he would not have otherwise been so daring.\ - [_Exit_.]\ -\ - FAUST. MEPHISTOPHELES.\ -\ -_Mephistopheles_. Come in, step softly, do not fear!\ -\ -_Faust [after a pause_]. Leave me alone, I prithee, here!\ -\ -_Mephistopheles [peering round_]. Not every maiden keeps so neat.\ - [_Exit_.]\ -\ -_Faust [gazing round_]. Welcome this hallowed still retreat!\ -Where twilight weaves its magic glow.\ -Seize on my heart, love-longing, sad and sweet,\ -That on the dew of hope dost feed thy woe!\ -How breathes around the sense of stillness,\ -Of quiet, order, and content!\ -In all this poverty what fulness!\ -What blessedness within this prison pent!\ - [_He throws himself into a leathern chair by the bed_.]\ -Take me, too! as thou hast, in years long flown,\ -In joy and grief, so many a generation!\ -Ah me! how oft, on this ancestral throne,\ -Have troops of children climbed with exultation!\ -Perhaps, when Christmas brought the Holy Guest,\ -My love has here, in grateful veneration\ -The grandsire's withered hand with child-lips prest.\ -I feel, O maiden, circling me,\ -Thy spirit of grace and fulness hover,\ -Which daily like a mother teaches thee\ -The table-cloth to spread in snowy purity,\ -And even, with crinkled sand the floor to cover.\ -Dear, godlike hand! a touch of thine\ -Makes this low house a heavenly kingdom slime!\ -And here!\ - [_He lifts a bed-curtain_.]\ -What blissful awe my heart thrills through!\ -Here for long hours could I linger.\ -Here, Nature! in light dreams, thy airy finger\ -The inborn angel's features drew!\ -Here lay the child, when life's fresh heavings\ -Its tender bosom first made warm,\ -And here with pure, mysterious weavings\ -The spirit wrought its godlike form!\ - And thou! What brought thee here? what power\ -Stirs in my deepest soul this hour?\ -What wouldst thou here? What makes thy heart so sore?\ -Unhappy Faust! I know thee thus no more.\ - Breathe I a magic atmosphere?\ -The will to enjoy how strong I felt it,--\ -And in a dream of love am now all melted!\ -Are we the sport of every puff of air?\ - And if she suddenly should enter now,\ -How would she thy presumptuous folly humble!\ -Big John-o'dreams! ah, how wouldst thou\ -Sink at her feet, collapse and crumble!\ -\ -_Mephistopheles_. Quick, now! She comes! I'm looking at her.\ -\ -_Faust_. Away! Away! O cruel fate!\ -\ -_Mephistopheles_. Here is a box of moderate weight;\ -I got it somewhere else--no matter!\ -Just shut it up, here, in the press,\ -I swear to you, 'twill turn her senses;\ -I meant the trifles, I confess,\ -To scale another fair one's fences.\ -True, child is child and play is play.\ -\ -_Faust_. Shall I? I know not.\ -\ -_Mephistopheles_. Why delay?\ -You mean perhaps to keep the bauble?\ -If so, I counsel you to spare\ -From idle passion hours so fair,\ -And me, henceforth, all further trouble.\ -I hope you are not avaricious!\ -I rub my hands, I scratch my head--\ - [_He places the casket in the press and locks it up again_.]\ - (Quick! Time we sped!)--\ -That the dear creature may be led\ -And moulded by your will and wishes;\ -And you stand here as glum,\ -As one at the door of the auditorium,\ -As if before your eyes you saw\ -In bodily shape, with breathless awe,\ -Metaphysics and physics, grim and gray!\ -Away!\ - [_Exit_.]\ -\ -_Margaret [with a lamp_]. It seems so close, so sultry here.\ - [_She opens the window_.]\ -Yet it isn't so very warm out there,\ -I feel--I know not how--oh dear!\ -I wish my mother 'ld come home, I declare!\ -I feel a shudder all over me crawl--\ -I'm a silly, timid thing, that's all!\ - [_She begins to sing, while undressing_.]\ - There was a king in Thulè,\ - To whom, when near her grave,\ - The mistress he loved so truly\ - A golden goblet gave.\ -\ - He cherished it as a lover,\ - He drained it, every bout;\ - His eyes with tears ran over,\ - As oft as he drank thereout.\ -\ - And when he found himself dying,\ - His towns and cities he told;\ - Naught else to his heir denying\ - Save only the goblet of gold.\ -\ - His knights he straightway gathers\ - And in the midst sate he,\ - In the banquet hall of the fathers\ - In the castle over the sea.\ -\ - There stood th' old knight of liquor,\ - And drank the last life-glow,\ - Then flung the holy beaker\ - Into the flood below.\ -\ - He saw it plunging, drinking\ - And sinking in the roar,\ - His eyes in death were sinking,\ - He never drank one drop more.\ - [_She opens the press, to put away her clothes,\ - and discovers the casket_.]\ -\ -How in the world came this fine casket here?\ -I locked the press, I'm very clear.\ -I wonder what's inside! Dear me! it's very queer!\ -Perhaps 'twas brought here as a pawn,\ -In place of something mother lent.\ -Here is a little key hung on,\ -A single peep I shan't repent!\ -What's here? Good gracious! only see!\ -I never saw the like in my born days!\ -On some chief festival such finery\ -Might on some noble lady blaze.\ -How would this chain become my neck!\ -Whose may this splendor be, so lonely?\ - [_She arrays herself in it, and steps before the glass_.]\ -Could I but claim the ear-rings only!\ -A different figure one would make.\ -What's beauty worth to thee, young blood!\ -May all be very well and good;\ -What then? 'Tis half for pity's sake\ -They praise your pretty features.\ -Each burns for gold,\ -All turns on gold,--\ -Alas for us! poor creatures!\ -\ -\ -\ -\ - PROMENADE.\ -\ -\ - FAUST [_going up and down in thought_.] MEPHISTOPHELES _to him_.\ -\ -_Mephistopheles_. By all that ever was jilted! By all the infernal fires!\ -I wish I knew something worse, to curse as my heart desires!\ -\ -_Faust_. What griping pain has hold of thee?\ -Such grins ne'er saw I in the worst stage-ranter!\ -\ -_Mephistopheles_. Oh, to the devil I'd give myself instanter,\ -If I were not already he!\ -\ -_Faust_. Some pin's loose in your head, old fellow!\ -That fits you, like a madman thus to bellow!\ -\ -_Mephistopheles_. Just think, the pretty toy we got for Peg,\ -A priest has hooked, the cursed plague I--\ -The thing came under the eye of the mother,\ -And caused her a dreadful internal pother:\ -The woman's scent is fine and strong;\ -Snuffles over her prayer-book all day long,\ -And knows, by the smell of an article, plain,\ -Whether the thing is holy or profane;\ -And as to the box she was soon aware\ -There could not be much blessing there.\ -\"My child,\" she cried, \"unrighteous gains\ -Ensnare the soul, dry up the veins.\ -We'll consecrate it to God's mother,\ -She'll give us some heavenly manna or other!\"\ -Little Margaret made a wry face; \"I see\ -'Tis, after all, a gift horse,\" said she;\ -\"And sure, no godless one is he\ -Who brought it here so handsomely.\"\ -The mother sent for a priest (they're cunning);\ -Who scarce had found what game was running,\ -When he rolled his greedy eyes like a lizard,\ -And, \"all is rightly disposed,\" said he,\ -\"Who conquers wins, for a certainty.\ -The church has of old a famous gizzard,\ -She calls it little whole lands to devour,\ -Yet never a surfeit got to this hour;\ -The church alone, dear ladies; _sans_ question,\ -Can give unrighteous gains digestion.\"\ -\ -_Faust_. That is a general pratice, too,\ -Common alike with king and Jew.\ -\ -_Mephistopheles_. Then pocketed bracelets and chains and rings\ -As if they were mushrooms or some such things,\ -With no more thanks, (the greedy-guts!)\ -Than if it had been a basket of nuts,\ -Promised them all sorts of heavenly pay--\ -And greatly edified were they.\ -\ -_Faust_. And Margery?\ -\ -_Mephistopheles_. Sits there in distress,\ -And what to do she cannot guess,\ -The jewels her daily and nightly thought,\ -And he still more by whom they were brought.\ -\ -_Faust._ My heart is troubled for my pet.\ -Get her at once another set!\ -The first were no great things in their way.\ -\ -_Mephistopheles._ O yes, my gentleman finds all child's play!\ -\ -_Faust._ And what I wish, that mind and do!\ -Stick closely to her neighbor, too.\ -Don't be a devil soft as pap,\ -And fetch me some new jewels, old chap!\ -\ -_Mephistopheles._ Yes, gracious Sir, I will with pleasure.\ - [_Exit_ FAUST.]\ -Such love-sick fools will puff away\ -Sun, moon, and stars, and all in the azure,\ -To please a maiden's whimsies, any day.\ - [_Exit._]\ -\ -\ -\ -\ - THE NEIGHBOR'S HOUSE.\ -\ -\ - MARTHA [_alone]._\ -My dear good man--whom God forgive!\ -He has not treated me well, as I live!\ -Right off into the world he's gone\ -And left me on the straw alone.\ -I never did vex him, I say it sincerely,\ -I always loved him, God knows how dearly.\ - [_She weeps_.]\ -Perhaps he's dead!--O cruel fate!--\ -If I only had a certificate!\ -\ - _Enter_ MARGARET.\ -Dame Martha!\ -\ -_Martha_. What now, Margery?\ -\ -_Margaret_. I scarce can keep my knees from sinking!\ -Within my press, again, not thinking,\ -I find a box of ebony,\ -With things--can't tell how grand they are,--\ -More splendid than the first by far.\ -\ -_Martha_. You must not tell it to your mother,\ -She'd serve it as she did the other.\ -\ -_Margaret_. Ah, only look! Behold and see!\ -\ -_Martha [puts them on her_]. Fortunate thing! I envy thee!\ -\ -_Margaret._ Alas, in the street or at church I never\ -Could be seen on any account whatever.\ -\ -_Martha._ Come here as often as you've leisure,\ -And prink yourself quite privately;\ -Before the looking-glass walk up and down at pleasure,\ -Fine times for both us 'twill be;\ -Then, on occasions, say at some great feast,\ -Can show them to the world, one at a time, at least.\ -A chain, and then an ear-pearl comes to view;\ -Your mother may not see, we'll make some pretext, too.\ -\ -_Margaret._ Who could have brought both caskets in succession?\ -There's something here for just suspicion!\ - [_A knock._ ]\ -Ah, God! If that's my mother--then!\ -\ -_Martha_ [_peeping through the blind_].\ -'Tis a strange gentleman--come in!\ -\ - [_Enter_ MEPHISTOPHELES.]\ -Must, ladies, on your kindness reckon\ -To excuse the freedom I have taken;\ - [_Steps back with profound respect at seeing_ MARGARET.]\ -I would for Dame Martha Schwerdtlein inquire!\ -\ -_Martha._ I'm she, what, sir, is your desire?\ -\ -_Mephistopheles_ [_aside to her_]. I know your face, for now 'twill do;\ -A distinguished lady is visiting you.\ -For a call so abrupt be pardon meted,\ -This afternoon it shall be repeated.\ -\ -_Martha [aloud]._ For all the world, think, child! my sakes!\ -The gentleman you for a lady takes.\ -\ -_Margaret_. Ah, God! I am a poor young blood;\ -The gentleman is quite too good;\ -The jewels and trinkets are none of my own.\ -\ -_Mephistopheles_. Ah, 'tis not the jewels and trinkets alone;\ -Her look is so piercing, so _distinguè_!\ -How glad I am to be suffered to stay.\ -\ -_Martha_. What bring you, sir? I long to hear--\ -\ -_Mephistopheles_. Would I'd a happier tale for your ear!\ -I hope you'll forgive me this one for repeating:\ -Your husband is dead and sends you a greeting.\ -\ -_Martha_. Is dead? the faithful heart! Woe! Woe!\ -My husband dead! I, too, shall go!\ -\ -_Margaret_. Ah, dearest Dame, despair not thou!\ -\ -_Mephistopheles_ Then, hear the mournful story now!\ -\ -_Margaret_. Ah, keep me free from love forever,\ -I should never survive such a loss, no, never!\ -\ -_Mephistopheles_. Joy and woe, woe and joy, must have each other.\ -\ -_Martha_. Describe his closing hours to me!\ -\ -_Mephistopheles_. In Padua lies our departed brother,\ -In the churchyard of St. Anthony,\ -In a cool and quiet bed lies sleeping,\ -In a sacred spot's eternal keeping.\ -\ -_Martha_. And this was all you had to bring me?\ -\ -_Mephistopheles_. All but one weighty, grave request!\ -\"Bid her, when I am dead, three hundred masses sing me!\"\ -With this I have made a clean pocket and breast.\ -\ -_Martha_. What! not a medal, pin nor stone?\ -Such as, for memory's sake, no journeyman will lack,\ -Saved in the bottom of his sack,\ -And sooner would hunger, be a pauper--\ -\ -_Mephistopheles_. Madam, your case is hard, I own!\ -But blame him not, he squandered ne'er a copper.\ -He too bewailed his faults with penance sore,\ -Ay, and his wretched luck bemoaned a great deal more.\ -\ -_Margaret_. Alas! that mortals so unhappy prove!\ -I surely will for him pray many a requiem duly.\ -\ -_Mephistopheles_. You're worthy of a spouse this moment; truly\ -You are a child a man might love.\ -\ -_Margaret_. It's not yet time for that, ah no!\ -\ -_Mephistopheles_. If not a husband, say, meanwhile a beau.\ -It is a choice and heavenly blessing,\ -Such a dear thing to one's bosom pressing.\ -\ -_Margaret_. With us the custom is not so.\ -\ -_Mephistopheles_. Custom or not! It happens, though.\ -\ -_Martha_. Tell on!\ -\ -_Mephistopheles_. I slood beside his bed, as he lay dying,\ -Better than dung it was somewhat,--\ -Half-rotten straw; but then, he died as Christian ought,\ -And found an unpaid score, on Heaven's account-book lying.\ -\"How must I hate myself,\" he cried, \"inhuman!\ -So to forsake my business and my woman!\ -Oh! the remembrance murders me!\ -Would she might still forgive me this side heaven!\"\ -\ -_Martha_ [_weeping_]. The dear good man! he has been long forgiven.\ -\ -_Mephistopheles_. \"But God knows, I was less to blame than she.\"\ -\ -_Martha_. A lie! And at death's door! abominable!\ -\ -_Mephistopheles_. If I to judge of men half-way am able,\ -He surely fibbed while passing hence.\ -\"Ways to kill time, (he said)--be sure, I did not need them;\ -First to get children--and then bread to feed them,\ -And bread, too, in the widest sense,\ -And even to eat my bit in peace could not be thought on.\"\ -\ -_Martha_. Has he all faithfulness, all love, so far forgotten,\ -The drudgery by day and night!\ -\ -_Mephistopheles_. Not so, he thought of you with all his might.\ -He said: \"When I from Malta went away,\ -For wife and children my warm prayers ascended;\ -And Heaven so far our cause befriended,\ -Our ship a Turkish cruiser took one day,\ -Which for the mighty Sultan bore a treasure.\ -Then valor got its well-earned pay,\ -And I too, who received but my just measure,\ -A goodly portion bore away.\"\ -\ -_Martha_. How? Where? And he has left it somewhere buried?\ -\ -_Mephistopheles_. Who knows which way by the four winds 'twas carried?\ -He chanced to take a pretty damsel's eye,\ -As, a strange sailor, he through Naples jaunted;\ -All that she did for him so tenderly,\ -E'en to his blessed end the poor man haunted.\ -\ -_Martha_. The scamp! his children thus to plunder!\ -And could not all his troubles sore\ -Arrest his vile career, I wonder?\ -\ -_Mephistopheles_. But mark! his death wipes off the score.\ -Were I in your place now, good lady;\ -One year I'd mourn him piously\ -And look about, meanwhiles, for a new flame already.\ -\ -_Martha_. Ah, God! another such as he\ -I may not find with ease on this side heaven!\ -Few such kind fools as this dear spouse of mine.\ -Only to roving he was too much given,\ -And foreign women and foreign wine,\ -And that accursed game of dice.\ -\ -_Mephistopheles_. Mere trifles these; you need not heed 'em,\ -If he, on his part, not o'er-nice,\ -Winked at, in you, an occasional freedom.\ -I swear, on that condition, too,\ -I would, myself, 'change rings with you!\ -\ -_Martha_. The gentleman is pleased to jest now!\ -\ -_Mephistopheles [aside_]. I see it's now high time I stirred!\ -She'd take the very devil at his word.\ - [_To_ MARGERY.]\ -How is it with your heart, my best, now?\ -\ -_Margaret_. What means the gentleman?\ -\ -_Mephistopheles. [aside_]. Thou innocent young heart!\ - [_Aloud_.]\ -Ladies, farewell!\ -\ -_Margaret_. Farewell!\ -\ -_Martha_. But quick, before we part!--\ -I'd like some witness, vouching truly\ -Where, how and when my love died and was buried duly.\ -I've always paid to order great attention,\ -Would of his death read some newspaper mention.\ -\ -_Mephistopheles_. Ay, my dear lady, in the mouths of two\ -Good witnesses each word is true;\ -I've a friend, a fine fellow, who, when you desire,\ -Will render on oath what you require.\ -I'll bring him here.\ -\ -_Martha_. O pray, sir, do!\ -\ -_Mephistopheles_. And this young lady 'll be there too?\ -Fine boy! has travelled everywhere,\ -And all politeness to the fair.\ -\ -_Margaret_. Before him shame my face must cover.\ -\ -_Mephistopheles_. Before no king the wide world over!\ -\ -_Martha_. Behind the house, in my garden, at leisure,\ -We'll wait this eve the gentlemen's pleasure.\ -\ -\ -\ -\ - STREET.\ -\ - FAUST. MEPHISTOPHELES.\ -\ -_Faust_. How now? What progress? Will 't come right?\ -\ -_Mephistopheles_. Ha, bravo? So you're all on fire?\ -Full soon you'll see whom you desire.\ -In neighbor Martha's grounds we are to meet tonight.\ -That woman's one of nature's picking\ -For pandering and gipsy-tricking!\ -\ -_Faust_. So far, so good!\ -\ -_Mephistopheles_. But one thing we must do.\ -\ -_Faust_. Well, one good turn deserves another, true.\ -\ -_Mephistopheles_. We simply make a solemn deposition\ -That her lord's bones are laid in good condition\ -In holy ground at Padua, hid from view.\ -\ -_Faust_. That's wise! But then we first must make the journey thither?\ -\ -_Mephistopheles. Sancta simplicitas_! no need of such to-do;\ -Just swear, and ask not why or whether.\ -\ -_Faust_. If that's the best you have, the plan's not worth a feather.\ -\ -_Mephistopheles_. O holy man! now that's just you!\ -In all thy life hast never, to this hour,\ -To give false witness taken pains?\ -Have you of God, the world, and all that it contains,\ -Of man, and all that stirs within his heart and brains,\ -Not given definitions with great power,\ -Unscrupulous breast, unblushing brow?\ -And if you search the matter clearly,\ -Knew you as much thereof, to speak sincerely,\ -As of Herr Schwerdtlein's death? Confess it now!\ -\ -_Faust_. Thou always wast a sophist and a liar.\ -\ -_Mephistopheles_. Ay, if one did not look a little nigher.\ -For will you not, in honor, to-morrow\ -Befool poor Margery to her sorrow,\ -And all the oaths of true love borrow?\ -\ -_Faust_. And from the heart, too.\ -\ -_Mephistopheles_. Well and fair!\ -Then there'll be talk of truth unending,\ -Of love o'ermastering, all transcending--\ -Will every word be heart-born there?\ -\ -_Faust_. Enough! It will!--If, for the passion\ -That fills and thrills my being's frame,\ -I find no name, no fit expression,\ -Then, through the world, with all my senses, ranging,\ -Seek what most strongly speaks the unchanging.\ -And call this glow, within me burning,\ -Infinite--endless--endless yearning,\ -Is that a devilish lying game?\ -\ -_Mephistopheles_. I'm right, nathless!\ -\ -_Faust_. Now, hark to me--\ -This once, I pray, and spare my lungs, old fellow--\ -Whoever _will_ be right, and has a tongue to bellow,\ -Is sure to be.\ -But come, enough of swaggering, let's be quit,\ -For thou art right, because I must submit.\ -\ -\ -\ -\ - GARDEN.\ -\ - MARGARET _on_ FAUST'S _arm_. MARTHA _with_ MEPHISTOPHELES.\ - [_Promenading up and down_.]\ -\ -_Margaret_. The gentleman but makes me more confused\ -\ -With all his condescending goodness.\ -Men who have travelled wide are used\ -To bear with much from dread of rudeness;\ -I know too well, a man of so much mind\ -In my poor talk can little pleasure find.\ -\ -_Faust_. One look from thee, one word, delights me more\ -Than this world's wisdom o'er and o'er.\ - [_Kisses her hand_.]\ -\ -_Margaret_. Don't take that trouble, sir! How could you bear to kiss it?\ -A hand so ugly, coarse, and rough!\ -How much I've had to do! must I confess it--\ -Mother is more than close enough.\ - [_They pass on_.]\ -\ -_Martha_. And you, sir, are you always travelling so?\ -\ -_Mephistopheles_. Alas, that business forces us to do it!\ -With what regret from many a place we go,\ -Though tenderest bonds may bind us to it!\ -\ -_Martha_. 'Twill do in youth's tumultuous maze\ -To wander round the world, a careless rover;\ -But soon will come the evil days,\ -And then, a lone dry stick, on the grave's brink to hover,\ -For that nobody ever prays.\ -\ -_Mephistopheles_. The distant prospect shakes my reason.\ -\ -_Martha_. Then, worthy sir, bethink yourself in season.\ - [_They pass on_.]\ -\ -_Margaret_. Yes, out of sight and out of mind!\ -Politeness you find no hard matter;\ -But you have friends in plenty, better\ -Than I, more sensible, more refined.\ -\ -_Faust_. Dear girl, what one calls sensible on earth,\ -Is often vanity and nonsense.\ -\ -_Margaret_. How?\ -\ -_Faust_. Ah, that the pure and simple never know\ -Aught of themselves and all their holy worth!\ -That meekness, lowliness, the highest measure\ -Of gifts by nature lavished, full and free--\ -\ -_Margaret_. One little moment, only, think of me,\ -I shall to think of you have ample time and leisure.\ -\ -_Faust_. You're, may be, much alone?\ -\ -_Margaret_. Our household is but small, I own,\ -And yet needs care, if truth were known.\ -We have no maid; so I attend to cooking, sweeping,\ -Knit, sew, do every thing, in fact;\ -And mother, in all branches of housekeeping,\ -Is so exact!\ -Not that she need be tied so very closely down;\ -We might stand higher than some others, rather;\ -A nice estate was left us by my father,\ -A house and garden not far out of town.\ -Yet, after all, my life runs pretty quiet;\ -My brother is a soldier,\ -My little sister's dead;\ -With the dear child indeed a wearing life I led;\ -And yet with all its plagues again would gladly try it,\ -The child was such a pet.\ -\ -_Faust_. An angel, if like thee!\ -\ -_Margaret_. I reared her and she heartily loved me.\ -She and my father never saw each other,\ -He died before her birth, and mother\ -Was given up, so low she lay,\ -But me, by slow degrees, recovered, day by day.\ -Of course she now, long time so feeble,\ -To nurse the poor little worm was unable,\ -And so I reared it all alone,\ -With milk and water; 'twas my own.\ -Upon my bosom all day long\ -It smiled and sprawled and so grew strong.\ -\ -_Faust_. Ah! thou hast truly known joy's fairest flower.\ -\ -_Margaret_. But no less truly many a heavy hour.\ -The wee thing's cradle stood at night\ -Close to my bed; did the least thing awake her,\ -My sleep took flight;\ -'Twas now to nurse her, now in bed to take her,\ -Then, if she was not still, to rise,\ -Walk up and down the room, and dance away her cries,\ -And at the wash-tub stand, when morning streaked the skies;\ -Then came the marketing and kitchen-tending,\ -Day in, day out, work never-ending.\ -One cannot always, sir, good temper keep;\ -But then it sweetens food and sweetens sleep.\ - [_They pass on_.]\ -\ -_Martha_. But the poor women suffer, you must own:\ -A bachelor is hard of reformation.\ -\ -_Mephistopheles_. Madam, it rests with such as you, alone,\ -To help me mend my situation.\ -\ -_Martha_. Speak plainly, sir, has none your fancy taken?\ -Has none made out a tender flame to waken?\ -\ -_Mephistopheles_. The proverb says: A man's own hearth,\ -And a brave wife, all gold and pearls are worth.\ -\ -_Martha_. I mean, has ne'er your heart been smitten slightly?\ -\ -_Mephistopheles_. I have, on every hand, been entertained politely.\ -\ -_Martha_. Have you not felt, I mean, a serious intention?\ -\ -_Mephistopheles_.\ -Jesting with women, that's a thing one ne'er should mention.\ -\ -_Martha_. Ah, you misunderstand!\ -\ -_Mephistopheles_. It grieves me that I should!\ -But this I understand--that you are good.\ - [_They pass on_.]\ -\ -_Faust_. So then, my little angel recognized me,\ -As I came through the garden gate?\ -\ -_Margaret_. Did not my downcast eyes show you surprised me?\ -\ -_Faust_. And thou forgav'st that liberty, of late?\ -That impudence of mine, so daring,\ -As thou wast home from church repairing?\ -\ -_Margaret_. I was confused, the like was new to me;\ -No one could say a word to my dishonor.\ -Ah, thought I, has he, haply, in thy manner\ -Seen any boldness--impropriety?\ -It seemed as if the feeling seized him,\ -That he might treat this girl just as it pleased him.\ -Let me confess! I knew not from what cause,\ -Some flight relentings here began to threaten danger;\ -I know, right angry with myself I was,\ -That I could not be angrier with the stranger.\ -\ -_Faust_. Sweet darling!\ -\ -_Margaret_. Let me once!\ -\ - [_She plucks a china-aster and picks off the leaves one after another_.]\ -\ -_Faust_. What's that for? A bouquet?\ -\ -_Margaret_. No, just for sport.\ -\ -_Faust_. How?\ -\ -_Margaret_. Go! you'll laugh at me; away!\ - [_She picks and murmurs to herself_.]\ -\ -_Faust_. What murmurest thou?\ -\ -_Margaret [half aloud_]. He loves me--loves me not.\ -\ -_Faust_. Sweet face! from heaven that look was caught!\ -\ -_Margaret [goes on_]. Loves me--not--loves me--not--\ - [_picking off the last leaf with tender joy_]\ -He loves me!\ -\ -_Faust_. Yes, my child! And be this floral word\ -An oracle to thee. He loves thee!\ -Knowest thou all it mean? He loves thee!\ - [_Clasping both her hands_.]\ -\ -_Margaret_. What thrill is this!\ -\ -_Faust_. O, shudder not! This look of mine.\ -This pressure of the hand shall tell thee\ -What cannot be expressed:\ -Give thyself up at once and feel a rapture,\ -An ecstasy never to end!\ -Never!--It's end were nothing but blank despair.\ -No, unending! unending!\ -\ - [MARGARET _presses his hands, extricates herself, and runs away.\ - He stands a moment in thought, then follows her_].\ -\ -_Martha [coming_]. The night falls fast.\ -\ -_Mephistopheles_. Ay, and we must away.\ -\ -_Martha_. If it were not for one vexation,\ -I would insist upon your longer stay.\ -Nobody seems to have no occupation,\ -No care nor labor,\ -Except to play the spy upon his neighbor;\ -And one becomes town-talk, do whatsoe'er they may.\ -But where's our pair of doves?\ -\ -_Mephistopheles_. Flown up the alley yonder.\ -Light summer-birds!\ -\ -_Martha_. He seems attached to her.\ -\ -_Mephistopheles_. No wonder.\ -And she to him. So goes the world, they say.\ -\ -\ -\ -\ - A SUMMER-HOUSE.\ -\ - MARGARET [_darts in, hides behind the door, presses the tip of\ - her finger to her lips, and peeps through the crack_].\ -\ -_Margaret_. He comes!\ -\ - _Enter_ FAUST.\ -\ -_Faust_. Ah rogue, how sly thou art!\ -I've caught thee!\ - [_Kisses her_.]\ -\ -_Margaret [embracing him and returning the kiss_].\ -Dear good man! I love thee from my heart!\ -\ - [MEPHISTOPHELES _knocks_.]\ -\ -_Faust [stamping_]. Who's there?\ -\ -_Mephistopheles_. A friend!\ -\ -_Faust_. A beast!\ -\ -_Mephistopheles_. Time flies, I don't offend you?\ -\ -_Martha [entering_]. Yes, sir, 'tis growing late.\ -\ -_Faust_. May I not now attend you?\ -\ -_Margaret_. Mother would--Fare thee well!\ -\ -_Faust_. And must I leave thee then? Farewell!\ -\ -_Martha_. Adé!\ -\ -_Margaret_. Till, soon, we meet again!\ -\ - [_Exeunt_ FAUST _and_ MEPHISTOPHELES.]\ -\ -_Margaret_. Good heavens! what such a man's one brain\ -Can in itself alone contain!\ -I blush my rudeness to confess,\ -And answer all he says with yes.\ -Am a poor, ignorant child, don't see\ -What he can possibly find in me.\ -\ - [_Exit_.]\ -\ -\ -\ -\ - WOODS AND CAVERN.\ -\ -_Faust_ [_alone_]. Spirit sublime, thou gav'st me, gav'st me all\ -For which I prayed. Thou didst not lift in vain\ -Thy face upon me in a flame of fire.\ -Gav'st me majestic nature for a realm,\ -The power to feel, enjoy her. Not alone\ -A freezing, formal visit didst thou grant;\ -Deep down into her breast invitedst me\ -To look, as if she were a bosom-friend.\ -The series of animated things\ -Thou bidst pass by me, teaching me to know\ -My brothers in the waters, woods, and air.\ -And when the storm-swept forest creaks and groans,\ -The giant pine-tree crashes, rending off\ -The neighboring boughs and limbs, and with deep roar\ -The thundering mountain echoes to its fall,\ -To a safe cavern then thou leadest me,\ -Showst me myself; and my own bosom's deep\ -Mysterious wonders open on my view.\ -And when before my sight the moon comes up\ -With soft effulgence; from the walls of rock,\ -From the damp thicket, slowly float around\ -The silvery shadows of a world gone by,\ -And temper meditation's sterner joy.\ - O! nothing perfect is vouchsafed to man:\ -I feel it now! Attendant on this bliss,\ -Which brings me ever nearer to the Gods,\ -Thou gav'st me the companion, whom I now\ -No more can spare, though cold and insolent;\ -He makes me hate, despise myself, and turns\ -Thy gifts to nothing with a word--a breath.\ -He kindles up a wild-fire in my breast,\ -Of restless longing for that lovely form.\ -Thus from desire I hurry to enjoyment,\ -And in enjoyment languish for desire.\ -\ - _Enter_ MEPHISTOPHELES.\ -\ -_Mephistopheles_. Will not this life have tired you by and bye?\ -I wonder it so long delights you?\ -'Tis well enough for once the thing to try;\ -Then off to where a new invites you!\ -\ -_Faust_. Would thou hadst something else to do,\ -That thus to spoil my joy thou burnest.\ -\ -_Mephistopheles_. Well! well! I'll leave thee, gladly too!--\ -Thou dar'st not tell me that in earnest!\ -'Twere no great loss, a fellow such as you,\ -So crazy, snappish, and uncivil.\ -One has, all day, his hands full, and more too;\ -To worm out from him what he'd have one do,\ -Or not do, puzzles e'en the very devil.\ -\ -_Faust_. Now, that I like! That's just the tone!\ -Wants thanks for boring me till I'm half dead!\ -\ -_Mephistopheles_. Poor son of earth, if left alone,\ -What sort of life wouldst thou have led?\ -How oft, by methods all my own,\ -I've chased the cobweb fancies from thy head!\ -And but for me, to parts unknown\ -Thou from this earth hadst long since fled.\ -What dost thou here through cave and crevice groping?\ -Why like a hornèd owl sit moping?\ -And why from dripping stone, damp moss, and rotten wood\ -Here, like a toad, suck in thy food?\ -Delicious pastime! Ah, I see,\ -Somewhat of Doctor sticks to thee.\ -\ -_Faust_. What new life-power it gives me, canst thou guess--\ -This conversation with the wilderness?\ -Ay, couldst thou dream how sweet the employment,\ -Thou wouldst be devil enough to grudge me my enjoyment.\ -\ -_Mephistopheles_. Ay, joy from super-earthly fountains!\ -By night and day to lie upon the mountains,\ -To clasp in ecstasy both earth and heaven,\ -Swelled to a deity by fancy's leaven,\ -Pierce, like a nervous thrill, earth's very marrow,\ -Feel the whole six days' work for thee too narrow,\ -To enjoy, I know not what, in blest elation,\ -Then with thy lavish love o'erflow the whole creation.\ -Below thy sight the mortal cast,\ -And to the glorious vision give at last--\ - [_with a gesture_]\ -I must not say what termination!\ -\ -_Faust_. Shame on thee!\ -\ -_Mephistopheles_. This displeases thee; well, surely,\ -Thou hast a right to say \"for shame\" demurely.\ -One must not mention that to chaste ears--never,\ -Which chaste hearts cannot do without, however.\ -And, in one word, I grudge you not the pleasure\ -Of lying to yourself in moderate measure;\ -But 'twill not hold out long, I know;\ -Already thou art fast recoiling,\ -And soon, at this rate, wilt be boiling\ -With madness or despair and woe.\ -Enough of this! Thy sweetheart sits there lonely,\ -And all to her is close and drear.\ -Her thoughts are on thy image only,\ -She holds thee, past all utterance, dear.\ -At first thy passion came bounding and rushing\ -Like a brooklet o'erflowing with melted snow and rain;\ -Into her heart thou hast poured it gushing:\ -And now thy brooklet's dry again.\ -Methinks, thy woodland throne resigning,\ -'Twould better suit so great a lord\ -The poor young monkey to reward\ -For all the love with which she's pining.\ -She finds the time dismally long;\ -Stands at the window, sees the clouds on high\ -Over the old town-wall go by.\ -\"Were I a little bird!\"[26] so runneth her song\ -All the day, half the night long.\ -At times she'll be laughing, seldom smile,\ -At times wept-out she'll seem,\ -Then again tranquil, you'd deem,--\ -Lovesick all the while.\ -\ -_Faust_. Viper! Viper!\ -\ -_Mephistopheles_ [_aside_]. Ay! and the prey grows riper!\ -\ -_Faust_. Reprobate! take thee far behind me!\ -No more that lovely woman name!\ -Bid not desire for her sweet person flame\ -Through each half-maddened sense, again to blind me!\ -\ -_Mephistopheles_. What then's to do? She fancies thou hast flown,\ -And more than half she's right, I own.\ -\ -_Faust_. I'm near her, and, though far away, my word,\ -I'd not forget her, lose her; never fear it!\ -I envy e'en the body of the Lord,\ -Oft as those precious lips of hers draw near it.\ -\ -_Mephistopheles_. No doubt; and oft my envious thought reposes\ -On the twin-pair that feed among the roses.\ -\ -_Faust_. Out, pimp!\ -\ -_Mephistopheles_. Well done! Your jeers I find fair game for laughter.\ -The God, who made both lad and lass,\ -Unwilling for a bungling hand to pass,\ -Made opportunity right after.\ -But come! fine cause for lamentation!\ -Her chamber is your destination,\ -And not the grave, I guess.\ -\ -_Faust_. What are the joys of heaven while her fond arms enfold me?\ -O let her kindling bosom hold me!\ -Feel I not always her distress?\ -The houseless am I not? the unbefriended?\ -The monster without aim or rest?\ -That, like a cataract, from rock to rock descended\ -To the abyss, with maddening greed possest:\ -She, on its brink, with childlike thoughts and lowly,--\ -Perched on the little Alpine field her cot,--\ -This narrow world, so still and holy\ -Ensphering, like a heaven, her lot.\ -And I, God's hatred daring,\ -Could not be content\ -The rocks all headlong bearing,\ -By me to ruins rent,--\ -Her, yea her peace, must I o'erwhelm and bury!\ -This victim, hell, to thee was necessary!\ -Help me, thou fiend, the pang soon ending!\ -What must be, let it quickly be!\ -And let her fate upon my head descending,\ -Crush, at one blow, both her and me.\ -\ -_Mephistopheles_. Ha! how it seethes again and glows!\ -Go in and comfort her, thou dunce!\ -Where such a dolt no outlet sees or knows,\ -He thinks he's reached the end at once.\ -None but the brave deserve the fair!\ -Thou _hast_ had devil enough to make a decent show of.\ -For all the world a devil in despair\ -Is just the insipidest thing I know of.\ -\ -\ -\ -\ - MARGERY'S ROOM.\ -\ - MARGERY [_at the spinning-wheel alone_].\ - My heart is heavy,\ - My peace is o'er;\ - I never--ah! never--\ - Shall find it more.\ - While him I crave,\ - Each place is the grave,\ - The world is all\ - Turned into gall.\ - My wretched brain\ - Has lost its wits,\ - My wretched sense\ - Is all in bits.\ - My heart is heavy,\ - My peace is o'er;\ - I never--ah! never--\ - Shall find it more.\ - Him only to greet, I\ - The street look down,\ - Him only to meet, I\ - Roam through town.\ - His lofty step,\ - His noble height,\ - His smile of sweetness,\ - His eye of might,\ - His words of magic,\ - Breathing bliss,\ - His hand's warm pressure\ - And ah! his kiss.\ - My heart is heavy,\ - My peace is o'er,\ - I never--ah! never--\ - Shall find it more.\ - My bosom yearns\ - To behold him again.\ - Ah, could I find him\ - That best of men!\ - I'd tell him then\ - How I did miss him,\ - And kiss him\ - As much as I could,\ - Die on his kisses\ - I surely should!\ -\ -\ -\ -\ - MARTHA'S GARDEN.\ -\ - MARGARET. FAUST.\ -\ -_Margaret_. Promise me, Henry.\ -\ -_Faust_. What I can.\ -\ -_Margaret_. How is it now with thy religion, say?\ -I know thou art a dear good man,\ -But fear thy thoughts do not run much that way.\ -\ -_Faust_. Leave that, my child! Enough, thou hast my heart;\ -For those I love with life I'd freely part;\ -I would not harm a soul, nor of its faith bereave it.\ -\ -_Margaret_. That's wrong, there's one true faith--one must believe it?\ -\ -_Faust_. Must one?\ -\ -_Margaret_. Ah, could I influence thee, dearest!\ -The holy sacraments thou scarce reverest.\ -\ -_Faust_. I honor them.\ -\ -_Margaret_. But yet without desire.\ -Of mass and confession both thou'st long begun to tire.\ -Believest thou in God?\ -\ -_Faust_. My. darling, who engages\ -To say, I do believe in God?\ -The question put to priests or sages:\ -Their answer seems as if it sought\ -To mock the asker.\ -\ -_Margaret_. Then believ'st thou not?\ -\ -_Faust_. Sweet face, do not misunderstand my thought!\ -Who dares express him?\ -And who confess him,\ -Saying, I do believe?\ -A man's heart bearing,\ -What man has the daring\ -To say: I acknowledge him not?\ -The All-enfolder,\ -The All-upholder,\ -Enfolds, upholds He not\ -Thee, me, Himself?\ -Upsprings not Heaven's blue arch high o'er thee?\ -Underneath thee does not earth stand fast?\ -See'st thou not, nightly climbing,\ -Tenderly glancing eternal stars?\ -Am I not gazing eye to eye on thee?\ -Through brain and bosom\ -Throngs not all life to thee,\ -Weaving in everlasting mystery\ -Obscurely, clearly, on all sides of thee?\ -Fill with it, to its utmost stretch, thy breast,\ -And in the consciousness when thou art wholly blest,\ -Then call it what thou wilt,\ -Joy! Heart! Love! God!\ -I have no name to give it!\ -All comes at last to feeling;\ -Name is but sound and smoke,\ -Beclouding Heaven's warm glow.\ -\ -_Margaret_. That is all fine and good, I know;\ -And just as the priest has often spoke,\ -Only with somewhat different phrases.\ -\ -_Faust_. All hearts, too, in all places,\ -Wherever Heaven pours down the day's broad blessing,\ -Each in its way the truth is confessing;\ -And why not I in mine, too?\ -\ -_Margaret_. Well, all have a way that they incline to,\ -But still there is something wrong with thee;\ -Thou hast no Christianity.\ -\ -_Faust_. Dear child!\ -\ -_Margaret_. It long has troubled me\ -That thou shouldst keep such company.\ -\ -_Faust_. How so?\ -\ -_Margaret_. The man whom thou for crony hast,\ -Is one whom I with all my soul detest.\ -Nothing in all my life has ever\ -Stirred up in my heart such a deep disfavor\ -As the ugly face that man has got.\ -\ -_Faust_. Sweet plaything; fear him not!\ -\ -_Margaret_. His presence stirs my blood, I own.\ -I can love almost all men I've ever known;\ -But much as thy presence with pleasure thrills me,\ -That man with a secret horror fills me.\ -And then for a knave I've suspected him long!\ -God pardon me, if I do him wrong!\ -\ -_Faust_. To make up a world such odd sticks are needed.\ -\ -_Margaret_. Shouldn't like to live in the house where he did!\ -Whenever I see him coming in,\ -He always wears such a mocking grin.\ -Half cold, half grim;\ -One sees, that naught has interest for him;\ -'Tis writ on his brow and can't be mistaken,\ -No soul in him can love awaken.\ -I feel in thy arms so happy, so free,\ -I yield myself up so blissfully,\ -He comes, and all in me is closed and frozen now.\ -\ -_Faust_. Ah, thou mistrustful angel, thou!\ -\ -_Margaret_. This weighs on me so sore,\ -That when we meet, and he is by me,\ -I feel, as if I loved thee now no more.\ -Nor could I ever pray, if he were nigh me,\ -That eats the very heart in me;\ -Henry, it must be so with thee.\ -\ -_Faust_. 'Tis an antipathy of thine!\ -\ -_Margaret_. Farewell!\ -\ -_Faust_. Ah, can I ne'er recline\ -One little hour upon thy bosom, pressing\ -My heart to thine and all my soul confessing?\ -\ -_Margaret_. Ah, if my chamber were alone,\ -This night the bolt should give thee free admission;\ -But mother wakes at every tone,\ -And if she had the least suspicion,\ -Heavens! I should die upon the spot!\ -\ -_Faust_. Thou angel, need of that there's not.\ -Here is a flask! Three drops alone\ -Mix with her drink, and nature\ -Into a deep and pleasant sleep is thrown.\ -\ -_Margaret_. Refuse thee, what can I, poor creature?\ -I hope, of course, it will not harm her!\ -\ -_Faust_. Would I advise it then, my charmer?\ -\ -_Margaret_. Best man, when thou dost look at me,\ -I know not what, moves me to do thy will;\ -I have already done so much for thee,\ -Scarce any thing seems left me to fulfil.\ - [_Exit_.]\ -\ - Enter_ MEPHISTOPHELES.\ -\ -_Mephtftopheles_. The monkey! is she gone?\ -\ -_Faust_. Hast played the spy again?\ -\ -_Mephistopheles_. I overheard it all quite fully.\ -The Doctor has been well catechized then?\ -Hope it will sit well on him truly.\ -The maidens won't rest till they know if the men\ -Believe as good old custom bids them do.\ -They think: if there he yields, he'll follow our will too.\ -\ -_Faust_. Monster, thou wilt not, canst not see,\ -How this true soul that loves so dearly,\ -Yet hugs, at every cost,\ -The faith which she\ -Counts Heaven itself, is horror-struck sincerely\ -To think of giving up her dearest man for lost.\ -\ -_Mephistopheles_. Thou supersensual, sensual wooer,\ -A girl by the nose is leading thee.\ -\ -_Faust_. Abortion vile of fire and sewer!\ -\ -_Mephistopheles_. In physiognomy, too, her skill is masterly.\ -When I am near she feels she knows not how,\ -My little mask some secret meaning shows;\ -She thinks, I'm certainly a genius, now,\ -Perhaps the very devil--who knows?\ -To-night then?--\ -\ -_Faust_. Well, what's that to you?\ -\ -_Mephistopheles_. I find my pleasure in it, too!\ -\ -\ -\ -\ - AT THE WELL.\ -\ - MARGERY _and_ LIZZY _with Pitchers.\ -\ -_Lizzy_. Hast heard no news of Barbara to-day?\ -\ -_Margery_. No, not a word. I've not been out much lately.\ -\ -_Lizzy_. It came to me through Sybill very straightly.\ -She's made a fool of herself at last, they say.\ -That comes of taking airs!\ -\ -_Margery_. What meanst thou?\ -\ -_Lizzy_. Pah!\ -She daily eats and drinks for two now.\ -\ -_Margery_. Ah!\ -\ -_Lizzy_. It serves the jade right for being so callow.\ -How long she's been hanging upon the fellow!\ -Such a promenading!\ -To fair and dance parading!\ -Everywhere as first she must shine,\ -He was treating her always with tarts and wine;\ -She began to think herself something fine,\ -And let her vanity so degrade her\ -That she even accepted the presents he made her.\ -There was hugging and smacking, and so it went on--\ -And lo! and behold! the flower is gone!\ -\ -_Margery_. Poor thing!\ -\ -_Lizzy_. Canst any pity for her feel!\ -When such as we spun at the wheel,\ -Our mothers kept us in-doors after dark;\ -While she stood cozy with her spark,\ -Or sate on the door-bench, or sauntered round,\ -And never an hour too long they found.\ -But now her pride may let itself down,\ -To do penance at church in the sinner's gown!\ -\ -_Margery_. He'll certainly take her for his wife.\ -\ -_Lizzy_. He'd be a fool! A spruce young blade\ -Has room enough to ply his trade.\ -Besides, he's gone.\ -\ -_Margery_. Now, that's not fair!\ -\ -_Lizzy_. If she gets him, her lot'll be hard to bear.\ -The boys will tear up her wreath, and what's more,\ -We'll strew chopped straw before her door.\ -\ - [_Exit._]\ -\ -_Margery [going home]_. Time was when I, too, instead of bewailing,\ -Could boldly jeer at a poor girl's failing!\ -When my scorn could scarcely find expression\ -At hearing of another's transgression!\ -How black it seemed! though black as could be,\ -It never was black enough for me.\ -I blessed my soul, and felt so high,\ -And now, myself, in sin I lie!\ -Yet--all that led me to it, sure,\ -O God! it was so dear, so pure!\ -\ -\ -\ -\ - DONJON.[27]\ -\ - [_In a niche a devotional image of the Mater Dolorosa,\ - before it pots of flowers._]\ -\ -MARGERY [_puts fresh flowers into the pots_].\ - Ah, hear me,\ - Draw kindly near me,\ - Mother of sorrows, heal my woe!\ -\ - Sword-pierced, and stricken\ - With pangs that sicken,\ - Thou seest thy son's last life-blood flow!\ -\ - Thy look--thy sighing---\ - To God are crying,\ - Charged with a son's and mother's woe!\ -\ - Sad mother!\ - What other\ - Knows the pangs that eat me to the bone?\ - What within my poor heart burneth,\ - How it trembleth, how it yearneth,\ - Thou canst feel and thou alone!\ -\ - Go where I will, I never\ - Find peace or hope--forever\ - Woe, woe and misery!\ -\ - Alone, when all are sleeping,\ - I'm weeping, weeping, weeping,\ - My heart is crushed in me.\ -\ - The pots before my window,\ - In the early morning-hours,\ - Alas, my tears bedewed them,\ - As I plucked for thee these flowers,\ -\ - When the bright sun good morrow\ - In at my window said,\ - Already, in my anguish,\ - I sate there in my bed.\ -\ - From shame and death redeem me, oh!\ - Draw near me,\ - And, pitying, hear me,\ - Mother of sorrows, heal my woe!\ -\ -\ -\ -\ - NIGHT.\ -\ - _Street before_ MARGERY'S _Door._\ -\ -\ - VALENTINE [_soldier,_ MARGERY'S _brother_].\ -\ -When at the mess I used to sit,\ -Where many a one will show his wit,\ -And heard my comrades one and all\ -The flower of the sex extol,\ -Drowning their praise with bumpers high,\ -Leaning upon my elbows, I\ -Would hear the braggadocios through,\ -And then, when it came my turn, too,\ -Would stroke my beard and, smiling, say,\ -A brimming bumper in my hand:\ -All very decent in their way!\ -But is there one, in all the land,\ -With my sweet Margy to compare,\ -A candle to hold to my sister fair?\ -Bravo! Kling! Klang! it echoed round!\ -One party cried: 'tis truth he speaks,\ -She is the jewel of the sex!\ -And the braggarts all in silence were bound.\ -And now!--one could pull out his hair with vexation,\ -And run up the walls for mortification!--\ -Every two-legged creature that goes in breeches\ -Can mock me with sneers and stinging speeches!\ -And I like a guilty debtor sitting,\ -For fear of each casual word am sweating!\ -And though I could smash them in my ire,\ -I dare not call a soul of them liar.\ -\ -What's that comes yonder, sneaking along?\ -There are two of them there, if I see not wrong.\ -Is't he, I'll give him a dose that'll cure him,\ -He'll not leave the spot alive, I assure him!\ -\ -\ - FAUST. MEPHISTOPHELES.\ -\ -_Faust_. How from yon window of the sacristy\ -The ever-burning lamp sends up its glimmer,\ -And round the edge grows ever dimmer,\ -Till in the gloom its flickerings die!\ -So in my bosom all is nightlike.\ -\ -_Mephistopheles_. A starving tom-cat I feel quite like,\ -That o'er the fire ladders crawls\ -Then softly creeps, ground the walls.\ -My aim's quite virtuous ne'ertheless,\ -A bit of thievish lust, a bit of wantonness.\ -I feel it all my members haunting--\ -The glorious Walpurgis night.\ -One day--then comes the feast enchanting\ -That shall all pinings well requite.\ -\ -_Faust_. Meanwhile can that the casket be, I wonder,\ -I see behind rise glittering yonder.[28]\ -\ -_Mephistopheles_. Yes, and thou soon shalt have the pleasure\ -Of lifting out the precious treasure.\ -I lately 'neath the lid did squint,\ -Has piles of lion-dollars[29] in't.\ -\ -_Faust_. But not a jewel? Not a ring?\ -To deck my mistress not a trinket?\ -\ -_Mephistopheles_. I caught a glimpse of some such thing,\ -Sort of pearl bracelet I should think it.\ -\ -_Faust_. That's well! I always like to bear\ -Some present when I visit my fair.\ -\ -_Mephistopheles_. You should not murmur if your fate is,\ -To have a bit of pleasure gratis.\ -Now, as the stars fill heaven with their bright throng,\ -List a fine piece, artistic purely:\ -I sing her here a moral song,\ -To make a fool of her more surely.\ - [_Sings to the guitar_.][30]\ - What dost thou here,\ - Katrina dear,\ - At daybreak drear,\ - Before thy lover's chamber?\ - Give o'er, give o'er!\ - The maid his door\ - Lets in, no more\ - Goes out a maid--remember!\ -\ - Take heed! take heed!\ - Once done, the deed\ - Ye'll rue with speed--\ - And then--good night--poor thing--a!\ - Though ne'er so fair\ - His speech, beware,\ - Until you bear\ - His ring upon your finger.\ -\ -_Valentine_ [_comes forward_].\ -Whom lur'ft thou here? what prey dost scent?\ -Rat-catching[81] offspring of perdition!\ -To hell goes first the instrument!\ -To hell then follows the musician!\ -\ -_Mephistopheles_. He 's broken the guitar! to music, then, good-bye, now.\ -\ -_Valentine_. A game of cracking skulls we'll try now!\ -\ -_Mephistopbeles_ [_to Faust_]. Never you flinch, Sir Doctor! Brisk!\ -Mind every word I say---be wary!\ -Stand close by me, out with your whisk!\ -Thrust home upon the churl! I'll parry.\ -\ -_Valentine_. Then parry that!\ -\ -_Mephistopheles_. Be sure. Why not?\ -\ -_Valentine_. And that!\ -\ -_Mephistopheles_. With ease!\ -\ -_Valentine_. The devil's aid he's got!\ -But what is this? My hand's already lame.\ -\ -_Mephistopheles_ [_to Faust_]. Thrust home!\ -\ -_Valentine_ [_falls_]. O woe!\ -\ -_Mephistopheles_. Now is the lubber tame!\ -But come! We must be off. I hear a clatter;\ -And cries of murder, too, that fast increase.\ -I'm an old hand to manage the police,\ -But then the penal court's another matter.\ -\ -_Martha_. Come out! Come out!\ -\ -_Margery_ [_at the window_]. Bring on a light!\ -\ -_Martha_ [_as above_]. They swear and scuffle, scream and fight.\ -\ -_People_. There's one, has got's death-blow!\ -\ -_Martha_ [_coming out_]. Where are the murderers, have they flown?\ -\ -_Margery_ [_coming out_]. Who's lying here?\ -\ -_People_. Thy mother's son.\ -\ -_Margery_. Almighty God! What woe!\ -\ -_Valentine_. I'm dying! that is quickly said,\ -And even quicklier done.\ -Women! Why howl, as if half-dead?\ -Come, hear me, every one!\ - [_All gather round him_.]\ -My Margery, look! Young art thou still,\ -But managest thy matters ill,\ -Hast not learned out yet quite.\ -I say in confidence--think it o'er:\ -Thou art just once for all a whore;\ -Why, be one, then, outright.\ -\ -_Margery_. My brother! God! What words to me!\ -\ -_Valentine_. In this game let our Lord God be!\ -That which is done, alas! is done.\ -And every thing its course will run.\ -With one you secretly begin,\ -Presently more of them come in,\ -And when a dozen share in thee,\ -Thou art the whole town's property.\ -\ -When shame is born to this world of sorrow,\ -The birth is carefully hid from sight,\ -And the mysterious veil of night\ -To cover her head they borrow;\ -Yes, they would gladly stifle the wearer;\ -But as she grows and holds herself high,\ -She walks uncovered in day's broad eye,\ -Though she has not become a whit fairer.\ -The uglier her face to sight,\ -The more she courts the noonday light.\ -\ -Already I the time can see\ -When all good souls shall shrink from thee,\ -Thou prostitute, when thou go'st by them,\ -As if a tainted corpse were nigh them.\ -Thy heart within thy breast shall quake then,\ -When they look thee in the face.\ -Shalt wear no gold chain more on thy neck then!\ -Shalt stand no more in the holy place!\ -No pleasure in point-lace collars take then,\ -Nor for the dance thy person deck then!\ -But into some dark corner gliding,\ -'Mong beggars and cripples wilt be hiding;\ -And even should God thy sin forgive,\ -Wilt be curs'd on earth while thou shalt live!\ -\ -_Martha_. Your soul to the mercy of God surrender!\ -Will you add to your load the sin of slander?\ -\ -_Valentine_. Could I get at thy dried-up frame,\ -Vile bawd, so lost to all sense of shame!\ -Then might I hope, e'en this side Heaven,\ -Richly to find my sins forgiven.\ -\ -_Margery_. My brother! This is hell to me!\ -\ -_Valentine_. I tell thee, let these weak tears be!\ -When thy last hold of honor broke,\ -Thou gav'st my heart the heaviest stroke.\ -I'm going home now through the grave\ -To God, a soldier and a brave.\ - [_Dies_.]\ -\ -\ -\ -\ - CATHEDRAL.\ -\ - _Service, Organ, and Singing._\ -\ -\ - [MARGERY _amidst a crowd of people._ EVIL SPIRIT _behind_ MARGERY.]\ -\ -_Evil Spirit_. How different was it with thee, Margy,\ -When, innocent and artless,\ -Thou cam'st here to the altar,\ -From the well-thumbed little prayer-book,\ -Petitions lisping,\ -Half full of child's play,\ -Half full of Heaven!\ -Margy!\ -Where are thy thoughts?\ -What crime is buried\ -Deep within thy heart?\ -Prayest thou haply for thy mother, who\ -Slept over into long, long pain, on thy account?\ -Whose blood upon thy threshold lies?\ ---And stirs there not, already\ -Beneath thy heart a life\ -Tormenting itself and thee\ -With bodings of its coming hour?\ -\ -_Margery_. Woe! Woe!\ -Could I rid me of the thoughts,\ -Still through my brain backward and forward flitting,\ -Against my will!\ -\ -_Chorus_. Dies irae, dies illa\ -Solvet saeclum in favillâ.\ -\ - [_Organ plays_.]\ -\ -_Evil Spirit_. Wrath smites thee!\ -Hark! the trumpet sounds!\ -The graves are trembling!\ -And thy heart,\ -Made o'er again\ -For fiery torments,\ -Waking from its ashes\ -Starts up!\ -\ -_Margery_. Would I were hence!\ -I feel as if the organ's peal\ -My breath were stifling,\ -The choral chant\ -My heart were melting.\ -\ -_Chorus_. Judex ergo cum sedebit,\ -Quidquid latet apparebit.\ -Nil inultum remanebit.\ -\ -_Margery_. How cramped it feels!\ -The walls and pillars\ -Imprison me!\ -And the arches\ -Crush me!--Air!\ -\ -_Evil Spirit_. What! hide thee! sin and shame\ -Will not be hidden!\ -Air? Light?\ -Woe's thee!\ -\ -_Chorus_. Quid sum miser tunc dicturus?\ -Quem patronum rogaturus?\ -Cum vix justus sit securus.\ -\ -_Evil Spirit_. They turn their faces,\ -The glorified, from thee.\ -To take thy hand, the pure ones\ -Shudder with horror.\ -Woe!\ -\ -_Chorus_. Quid sum miser tunc dicturus?\ -\ -_Margery_. Neighbor! your phial!--\ - [_She swoons._]\ -\ -\ -\ -\ - WALPURGIS NIGHT.[32]\ -\ - _Harz Mountains._\ -\ - _District of Schirke and Elend._\ -\ -\ - FAUST. MEPHISTOPHELES.\ -\ -_Mephistopheles_. Wouldst thou not like a broomstick, now, to ride on?\ -At this rate we are, still, a long way off;\ -I'd rather have a good tough goat, by half,\ -Than the best legs a man e'er set his pride on.\ -\ -_Faust_. So long as I've a pair of good fresh legs to stride on,\ -Enough for me this knotty staff.\ -What use of shortening the way!\ -Following the valley's labyrinthine winding,\ -Then up this rock a pathway finding,\ -From which the spring leaps down in bubbling play,\ -That is what spices such a walk, I say!\ -Spring through the birch-tree's veins is flowing,\ -The very pine is feeling it;\ -Should not its influence set our limbs a-glowing?\ -\ -_Mephistopheles_. I do not feel it, not a bit!\ -My wintry blood runs very slowly;\ -I wish my path were filled with frost and snow.\ -The moon's imperfect disk, how melancholy\ -It rises there with red, belated glow,\ -And shines so badly, turn where'er one can turn,\ -At every step he hits a rock or tree!\ -With leave I'll beg a Jack-o'lantern!\ -I see one yonder burning merrily.\ -Heigh, there! my friend! May I thy aid desire?\ -Why waste at such a rate thy fire?\ -Come, light us up yon path, good fellow, pray!\ -\ -_Jack-o'lantern_. Out of respect, I hope I shall be able\ -To rein a nature quite unstable;\ -We usually take a zigzag way.\ -\ -_Mephistopheles_. Heigh! heigh! He thinks man's crooked course to travel.\ -Go straight ahead, or, by the devil,\ -I'll blow your flickering life out with a puff.\ -\ -_Jack-o'lantern_. You're master of the house, that's plain enough,\ -So I'll comply with your desire.\ -But see! The mountain's magic-mad to-night,\ -And if your guide's to be a Jack-o'lantern's light,\ -Strict rectitude you'll scarce require.\ -\ -FAUST, MEPHISTOPHELES, JACK-O'LANTERN, _in alternate song_.\ -\ - Spheres of magic, dream, and vision,\ - Now, it seems, are opening o'er us.\ - For thy credit, use precision!\ - Let the way be plain before us\ - Through the lengthening desert regions.\ -\ - See how trees on trees, in legions,\ - Hurrying by us, change their places,\ - And the bowing crags make faces,\ - And the rocks, long noses showing,\ - Hear them snoring, hear them blowing![33]\ -\ - Down through stones, through mosses flowing,\ - See the brook and brooklet springing.\ - Hear I rustling? hear I singing?\ - Love-plaints, sweet and melancholy,\ - Voices of those days so holy?\ - All our loving, longing, yearning?\ - Echo, like a strain returning\ - From the olden times, is ringing.\ -\ - Uhu! Schuhu! Tu-whit! Tu-whit!\ - Are the jay, and owl, and pewit\ - All awake and loudly calling?\ - What goes through the bushes yonder?\ - Can it be the Salamander--\ - Belly thick and legs a-sprawling?\ - Roots and fibres, snake-like, crawling,\ - Out from rocky, sandy places,\ - Wheresoe'er we turn our faces,\ - Stretch enormous fingers round us,\ - Here to catch us, there confound us;\ - Thick, black knars to life are starting,\ - Polypusses'-feelers darting\ - At the traveller. Field-mice, swarming,\ - Thousand-colored armies forming,\ - Scamper on through moss and heather!\ - And the glow-worms, in the darkling,\ - With their crowded escort sparkling,\ - Would confound us altogether.\ -\ - But to guess I'm vainly trying--\ - Are we stopping? are we hieing?\ - Round and round us all seems flying,\ - Rocks and trees, that make grimaces,\ - And the mist-lights of the places\ - Ever swelling, multiplying.\ -\ -_Mephistopheles_. Here's my coat-tail--tightly thumb it!\ -We have reached a middle summit,\ -Whence one stares to see how shines\ -Mammon in the mountain-mines.\ -\ -_Faust_. How strangely through the dim recesses\ -A dreary dawning seems to glow!\ -And even down the deep abysses\ -Its melancholy quiverings throw!\ -Here smoke is boiling, mist exhaling;\ -Here from a vapory veil it gleams,\ -Then, a fine thread of light, goes trailing,\ -Then gushes up in fiery streams.\ -The valley, here, you see it follow,\ -One mighty flood, with hundred rills,\ -And here, pent up in some deep hollow,\ -It breaks on all sides down the hills.\ -Here, spark-showers, darting up before us,\ -Like golden sand-clouds rise and fall.\ -But yonder see how blazes o'er us,\ -All up and down, the rocky wall!\ -\ -_Mephistopheles_. Has not Sir Mammon gloriously lighted\ -His palace for this festive night?\ -Count thyself lucky for the sight:\ -I catch e'en now a glimpse of noisy guests invited.\ -\ -_Faust_. How the mad tempest[34] sweeps the air!\ -On cheek and neck the wind-gusts how they flout me.\ -\ -_Mephistopheles_. Must seize the rock's old ribs and hold on stoutly!\ -Else will they hurl thee down the dark abysses there.\ -A mist-rain thickens the gloom.\ -Hark, how the forests crash and boom!\ -Out fly the owls in dread and wonder;\ -Splitting their columns asunder,\ -Hear it, the evergreen palaces shaking!\ -Boughs are twisting and breaking!\ -Of stems what a grinding and moaning!\ -Of roots what a creaking and groaning!\ -In frightful confusion, headlong tumbling,\ -They fall, with a sound of thunder rumbling,\ -And, through the wreck-piled ravines and abysses,\ -The tempest howls and hisses.\ -Hearst thou voices high up o'er us?\ -Close around us--far before us?\ -Through the mountain, all along,\ -Swells a torrent of magic song.\ -\ -_Witches_ [_in chorus_]. The witches go to the Brocken's top,\ - The stubble is yellow, and green the crop.\ - They gather there at the well-known call,\ - Sir Urian[85] sits at the head of all.\ - Then on we go o'er stone and stock:\ - The witch, she--and--the buck.\ -\ -_Voice_. Old Baubo comes along, I vow!\ -She rides upon a farrow-sow.\ -\ -_Chorus_. Then honor to whom honor's due!\ - Ma'am Baubo ahead! and lead the crew!\ - A good fat sow, and ma'am on her back,\ - Then follow the witches all in a pack.\ -\ -_Voice_. Which way didst thou come?\ -\ -_Voice_. By the Ilsenstein!\ -Peeped into an owl's nest, mother of mine!\ -What a pair of eyes!\ -\ -_Voice_. To hell with your flurry!\ -Why ride in such hurry!\ -\ -_Voice_. The hag be confounded!\ -My skin flie has wounded!\ -\ -_Witches_ [_chorus]._ The way is broad, the way is long,\ - What means this noisy, crazy throng?\ - The broom it scratches, the fork it flicks,\ - The child is stifled, the mother breaks.\ -\ -_Wizards_ [_semi-chorus_]. Like housed-up snails we're creeping on,\ -The women all ahead are gone.\ -When to the Bad One's house we go,\ -She gains a thousand steps, you know.\ -\ -_The other half_. We take it not precisely so;\ -What she in thousand steps can go,\ -Make all the haste she ever can,\ -'Tis done in just one leap by man.\ -\ -_Voice_ [_above_]. Come on, come on, from Felsensee!\ -\ -_Voices_ [_from below_]. We'd gladly join your airy way.\ -For wash and clean us as much as we will,\ -We always prove unfruitful still.\ -\ -_Both chorusses_. The wind is hushed, the star shoots by,\ - The moon she hides her sickly eye.\ - The whirling, whizzing magic-choir\ - Darts forth ten thousand sparks of fire.\ -\ -_Voice_ [_from below_]. Ho, there! whoa, there!\ -\ -_Voice_ [_from above_]. Who calls from the rocky cleft below there?\ -\ -_Voice_ [_below_]. Take me too! take me too!\ -Three hundred years I've climbed to you,\ -Seeking in vain my mates to come at,\ -For I can never reach the summit.\ -\ -_Both chorusses_. Can ride the besom, the stick can ride,\ - Can stride the pitchfork, the goat can stride;\ - Who neither will ride to-night, nor can,\ - Must be forever a ruined man.\ -\ -_Half-witch_ [_below_]. I hobble on--I'm out of wind--\ -And still they leave me far behind!\ -To find peace here in vain I come,\ -I get no more than I left at home.\ -\ -_Chorus of witches_. The witch's salve can never fail,\ - A rag will answer for a sail,\ - Any trough will do for a ship, that's tight;\ - He'll never fly who flies not to-night.\ -\ -_Both chorusses_. And when the highest peak we round,\ - Then lightly graze along the ground,\ - And cover the heath, where eye can see,\ - With the flower of witch-errantry.\ - [_They alight_.]\ -\ -_Mephistopheles._ What squeezing and pushing, what rustling and hustling!\ -What hissing and twirling, what chattering and bustling!\ -How it shines and sparkles and burns and stinks!\ -A true witch-element, methinks!\ -Keep close! or we are parted in two winks.\ -Where art thou?\ -\ -_Faust_ [_in the distance_]. Here!\ -\ -_Mephistopheles_. What! carried off already?\ -Then I must use my house-right.--Steady!\ -Room! Squire Voland[36] comes. Sweet people, Clear the ground!\ -Here, Doctor, grasp my arm! and, at a single bound;\ -Let us escape, while yet 'tis easy;\ -E'en for the like of me they're far too crazy.\ -See! yonder, something shines with quite peculiar glare,\ -And draws me to those bushes mazy.\ -Come! come! and let us slip in there.\ -\ -_Faust_. All-contradicting sprite! To follow thee I'm fated.\ -But I must say, thy plan was very bright!\ -We seek the Brocken here, on the Walpurgis night,\ -Then hold ourselves, when here, completely isolated!\ -\ -_Mephistopheles_. What motley flames light up the heather!\ -A merry club is met together,\ -In a small group one's not alone.\ -\ -_Faust_. I'd rather be up there, I own!\ -See! curling smoke and flames right blue!\ -To see the Evil One they travel;\ -There many a riddle to unravel.\ -\ -_Mephistopheles_. And tie up many another, too.\ -Let the great world there rave and riot,\ -We here will house ourselves in quiet.\ -The saying has been long well known:\ -In the great world one makes a small one of his own.\ -I see young witches there quite naked all,\ -And old ones who, more prudent, cover.\ -For my sake some flight things look over;\ -The fun is great, the trouble small.\ -I hear them tuning instruments! Curs'd jangle!\ -Well! one must learn with such things not to wrangle.\ -Come on! Come on! For so it needs must be,\ -Thou shalt at once be introduced by me.\ -And I new thanks from thee be earning.\ -That is no scanty space; what sayst thou, friend?\ -Just take a look! thou scarce canst see the end.\ -There, in a row, a hundred fires are burning;\ -They dance, chat, cook, drink, love; where can be found\ -Any thing better, now, the wide world round?\ -\ -_Faust_. Wilt thou, as things are now in this condition,\ -Present thyself for devil, or magician?\ -\ -_Mephistopheles_. I've been much used, indeed, to going incognito;\ -\ -But then, on gala-day, one will his order show.\ -No garter makes my rank appear,\ -But then the cloven foot stands high in honor here.\ -Seest thou the snail? Look there! where she comes creeping yonder!\ -Had she already smelt the rat,\ -I should not very greatly wonder.\ -Disguise is useless now, depend on that.\ -Come, then! we will from fire to fire wander,\ -Thou shalt the wooer be and I the pander.\ - [_To a party who sit round expiring embers_.]\ -Old gentlemen, you scarce can hear the fiddle!\ -You'd gain more praise from me, ensconced there in the middle,\ -'Mongst that young rousing, tousing set.\ -One can, at home, enough retirement get.\ -\ -_General_. Trust not the people's fickle favor!\ -However much thou mayst for them have done.\ -Nations, as well as women, ever,\ -Worship the rising, not the setting sun.\ -\ -_Minister_. From the right path we've drifted far away,\ -The good old past my heart engages;\ -Those were the real golden ages,\ -When such as we held all the sway.\ -\ -_Parvenu_. We were no simpletons, I trow,\ -And often did the thing we should not;\ -But all is turning topsy-turvy now,\ -And if we tried to stem the wave, we could not.\ -\ -_Author_. Who on the whole will read a work today,\ -Of moderate sense, with any pleasure?\ -And as regards the dear young people, they\ -Pert and precocious are beyond all measure.\ -\ -_Mephistopheles_ [_who all at once appears very old_].\ -The race is ripened for the judgment day:\ -So I, for the last time, climb the witch-mountain, thinking,\ -And, as my cask runs thick, I say,\ -The world, too, on its lees is sinking.\ -\ -_Witch-broker_. Good gentlemen, don't hurry by!\ -The opportunity's a rare one!\ -My stock is an uncommon fair one,\ -Please give it an attentive eye.\ -There's nothing in my shop, whatever,\ -But on the earth its mate is found;\ -That has not proved itself right clever\ -To deal mankind some fatal wound.\ -No dagger here, but blood has some time stained it;\ -No cup, that has not held some hot and poisonous juice,\ -And stung to death the throat that drained it;\ -No trinket, but did once a maid seduce;\ -No sword, but hath some tie of sacred honor riven,\ -Or haply from behind through foeman's neck been driven.\ -\ -_Mephistopheles_. You're quite behind the times, I tell you, Aunty!\ -By-gones be by-gones! done is done!\ -Get us up something new and jaunty!\ -For new things now the people run.\ -\ -_Faust_. To keep my wits I must endeavor!\ -Call this a fair! I swear, I never--!\ -\ -_Mephistopheles_. Upward the billowy mass is moving;\ -You're shoved along and think, meanwhile, you're shoving.\ -\ -_Faust_. What woman's that?\ -\ -_Mephistopheles_. Mark her attentively.\ -That's Lilith.[37]\ -\ -_Faust_. Who?\ -\ -_Mephistopbeles_. Adam's first wife is she.\ -Beware of her one charm, those lovely tresses,\ -In which she shines preeminently fair.\ -When those soft meshes once a young man snare,\ -How hard 'twill be to escape he little guesses.\ -\ -_Faust_. There sit an old one and a young together;\ -They've skipped it well along the heather!\ -\ -_Mephistopheles_. No rest from that till night is through.\ -Another dance is up; come on! let us fall to.\ -\ -_Faust_ [_dancing with the young one_]. A lovely dream once came to me;\ -In it I saw an apple-tree;\ -Two beauteous apples beckoned there,\ -I climbed to pluck the fruit so fair.\ -\ -_The Fair one_. Apples you greatly seem to prize,\ -And did so even in Paradise.\ -I feel myself delighted much\ -That in my garden I have such.\ -\ -_Mephistopheles_ [_with the old hag_]. A dismal dream once came to me;\ -In it I saw a cloven tree,\ -It had a ------ but still,\ -I looked on it with right good-will.\ -\ -_The Hog_. With best respect I here salute\ -The noble knight of the cloven foot!\ -Let him hold a ------ near,\ -If a ------ he does not fear.\ -\ -_Proctophantasmist_.[38] What's this ye undertake? Confounded crew!\ -Have we not giv'n you demonstration?\ -No spirit stands on legs in all creation,\ -And here you dance just as we mortals do!\ -\ -_The Fair one_ [_dancing_]. What does that fellow at our ball?\ -\ -_Faust_ [_dancing_]. Eh! he must have a hand in all.\ -What others dance that he appraises.\ -Unless each step he criticizes,\ -The step as good as no step he will call.\ -But when we move ahead, that plagues him more than all.\ -If in a circle you would still keep turning,\ -As he himself in his old mill goes round,\ -He would be sure to call that sound!\ -And most so, if you went by his superior learning.\ -\ -_Proctophantasmist_. What, and you still are here! Unheard off obstinates!\ -Begone! We've cleared it up! You shallow pates!\ -The devilish pack from rules deliverance boasts.\ -We've grown so wise, and Tegel[39] still sees ghosts.\ -How long I've toiled to sweep these cobwebs from the brain,\ -And yet--unheard of folly! all in vain.\ -\ -_The Fair one_. And yet on us the stupid bore still tries it!\ -\ -_Proctophantasmist_. I tell you spirits, to the face,\ -I give to spirit-tyranny no place,\ -My spirit cannot exercise it.\ - [_They dance on_.]\ -I can't succeed to-day, I know it;\ -Still, there's the journey, which I like to make,\ -And hope, before the final step I take,\ -To rid the world of devil and of poet.\ -\ -_Mephistopheles_. You'll see him shortly sit into a puddle,\ -In that way his heart is reassured;\ -When on his rump the leeches well shall fuddle,\ -Of spirits and of spirit he'll be cured.\ - [_To_ FAUST, _who has left the dance_.]\ -Why let the lovely girl slip through thy fingers,\ -Who to thy dance so sweetly sang?\ -\ -_Faust_. Ah, right amidst her singing, sprang\ -A wee red mouse from her mouth and made me cower.\ -\ -_Mephistopheles_. That's nothing wrong! You're in a dainty way;\ -Enough, the mouse at least wan't gray.\ -Who minds such thing in happy amorous hour?\ -\ -_Faust_. Then saw I--\ -\ -_Mephistopheles_. What?\ -\ -_Faust_. Mephisto, seest thou not\ -Yon pale, fair child afar, who stands so sad and lonely,\ -And moves so slowly from the spot,\ -Her feet seem locked, and she drags them only.\ -I must confess, she seems to me\ -To look like my own good Margery.\ -\ -_Mephistopheles_. Leave that alone! The sight no health can bring.\ -it is a magic shape, an idol, no live thing.\ -To meet it never can be good!\ -Its haggard look congeals a mortal's blood,\ -And almost turns him into stone;\ -The story of Medusa thou hast known.\ -\ -_Faust_. Yes, 'tis a dead one's eyes that stare upon me,\ -Eyes that no loving hand e'er closed;\ -That is the angel form of her who won me,\ -Tis the dear breast on which I once reposed.\ -\ -_Mephistopheles_. 'Tis sorcery all, thou fool, misled by passion's dreams!\ -For she to every one his own love seems.\ -\ -_Faust_. What bliss! what woe! Methinks I never\ -My sight from that sweet form can sever.\ -Seeft thou, not thicker than a knife-blade's back,\ -A small red ribbon, fitting sweetly\ -The lovely neck it clasps so neatly?\ -\ -_Mephistopheles_. I see the streak around her neck.\ -Her head beneath her arm, you'll next behold her;\ -Perseus has lopped it from her shoulder,--\ -But let thy crazy passion rest!\ -Come, climb with me yon hillock's breast,\ -Was e'er the Prater[40] merrier then?\ -And if no sorcerer's charm is o'er me,\ -That is a theatre before me.\ -What's doing there?\ -\ -_Servibilis_. They'll straight begin again.\ -A bran-new piece, the very last of seven;\ -To have so much, the fashion here thinks fit.\ -By Dilettantes it is given;\ -'Twas by a Dilettante writ.\ -Excuse me, sirs, I go to greet you;\ -I am the curtain-raising Dilettant.\ -\ -_Mephistopheles_. When I upon the Blocksberg meet you,\ -That I approve; for there's your place, I grant.\ -\ -\ -\ -\ - WALPURGIS-NIGHT'S DREAM, OR OBERON AND TITANIA'S GOLDEN NUPTIALS.\ -\ - _Intermezzo_.\ -\ -\ -_Theatre manager_. Here, for once, we rest, to-day,\ -Heirs of Mieding's[41] glory.\ -All the scenery we display--\ -Damp vale and mountain hoary!\ -\ -_Herald_. To make the wedding a golden one,\ -Must fifty years expire;\ -But when once the strife is done,\ -I prize the _gold_ the higher.\ -\ -_Oberon_. Spirits, if my good ye mean,\ -Now let all wrongs be righted;\ -For to-day your king and queen\ -Are once again united.\ -\ -_Puck_. Once let Puck coming whirling round,\ -And set his foot to whisking,\ -Hundreds with him throng the ground,\ -Frolicking and frisking.\ -\ -_Ariel_. Ariel awakes the song\ -With many a heavenly measure;\ -Fools not few he draws along,\ -But fair ones hear with pleasure.\ -\ -_Oberon_. Spouses who your feuds would smother,\ -Take from us a moral!\ -Two who wish to love each other,\ -Need only first to quarrel.\ -\ -_Titania_. If she pouts and he looks grim,\ -Take them both together,\ -To the north pole carry him,\ -And off with her to t'other.\ -\ - _Orchestra Tutti_.\ -\ -_Fortissimo_. Fly-snouts and gnats'-noses, these,\ -And kin in all conditions,\ -Grass-hid crickets, frogs in trees,\ -We take for our musicians!\ -\ -_Solo_. See, the Bagpipe comes! fall back!\ -Soap-bubble's name he owneth.\ -How the _Schnecke-schnicke-schnack_\ -Through his snub-nose droneth!\ -_Spirit that is just shaping itself_. Spider-foot, toad's-belly, too,\ -Give the child, and winglet!\ -'Tis no animalcule, true,\ -But a poetic thinglet.\ -\ -_A pair of lovers_. Little step and lofty bound\ -Through honey-dew and flowers;\ -Well thou trippest o'er the ground,\ -But soarst not o'er the bowers.\ -\ -_Curious traveller_. This must be masquerade!\ -How odd!\ -My very eyes believe I?\ -Oberon, the beauteous God\ -Here, to-night perceive I!\ -\ -_Orthodox_. Neither claws, nor tail I see!\ -And yet, without a cavil,\ -Just as \"the Gods of Greece\"[42] were, he\ -Must also be a devil.\ -\ -_Northern artist_. What here I catch is, to be sure,\ -But sketchy recreation;\ -And yet for my Italian tour\ -'Tis timely preparation.\ -\ -_Purist_. Bad luck has brought me here, I see!\ -The rioting grows louder.\ -And of the whole witch company,\ -There are but two, wear powder.\ -\ -_Young witch_. Powder becomes, like petticoat,\ -Your little, gray old woman:\ -Naked I sit upon my goat,\ -And show the untrimmed human.\ -\ -_Matron_. To stand here jawing[43] with you, we\ -Too much good-breeding cherish;\ -But young and tender though you be,\ -I hope you'll rot and perish.\ -\ -_Leader of the music_. Fly-snouts and gnat-noses, please,\ -Swarm not so round the naked!\ -Grass-hid crickets, frogs in trees,\ -Keep time and don't forsake it!\ -\ -_Weathercock_ [_towards one side_]. Find better company, who can!\ -Here, brides attended duly!\ -There, bachelors, ranged man by man,\ -Most hopeful people truly!\ -\ -_Weathercock [towards the other side_].\ -And if the ground don't open straight,\ -The crazy crew to swallow,\ -You'll see me, at a furious rate,\ -Jump down to hell's black hollow.\ -\ -_Xenia[_44] We are here as insects, ah!\ -Small, sharp nippers wielding,\ -Satan, as our _cher papa_,\ -Worthy honor yielding.\ -\ -_Hennings_. See how naïvely, there, the throng\ -Among themselves are jesting,\ -You'll hear them, I've no doubt, ere long,\ -Their good kind hearts protesting.\ -\ -_Musagetes_. Apollo in this witches' group\ -Himself right gladly loses;\ -For truly I could lead this troop\ -Much easier than the muses.\ -\ -_Ci-devant genius of the age_. Right company will raise man up.\ -Come, grasp my skirt, Lord bless us!\ -The Blocksberg has a good broad top,\ -Like Germany's Parnassus.\ -\ -_Curious traveller_. Tell me who is that stiff man?\ -With what stiff step he travels!\ -He noses out whate'er he can.\ -\"He scents the Jesuit devils.\"\ -\ -_Crane_. In clear, and muddy water, too,\ -The long-billed gentleman fishes;\ -Our pious gentlemen we view\ -Fingering in devils' dishes.\ -\ -_Child of this world_. Yes, with the pious ones, 'tis clear,\ -\"All's grist that comes to their mill;\"\ -They build their tabernacles here,\ -On Blocksberg, as on Carmel.\ -\ -_Dancer_. Hark! a new choir salutes my ear!\ -I hear a distant drumming.\ -\"Be not disturbed! 'mong reeds you hear\ -The one-toned bitterns bumming.\"\ -\ -_Dancing-master._ How each his legs kicks up and flings,\ -Pulls foot as best he's able!\ -The clumsy hops, the crooked springs,\ -'Tis quite disreputable!\ -\ -_Fiddler_. The scurvy pack, they hate, 'tis clear,\ -Like cats and dogs, each other.\ -Like Orpheus' lute, the bagpipe here\ -Binds beast to beast as brother.\ -\ -_Dogmatist_. You'll not scream down my reason, though,\ -By criticism's cavils.\ -The devil's something, that I know,\ -Else how could there be devils?\ -\ -_Idealist_. Ah, phantasy, for once thy sway\ -Is guilty of high treason.\ -If all I see is I, to-day,\ -'Tis plain I've lost my reason.\ -\ -_Realist_. To me, of all life's woes and plagues,\ -Substance is most provoking,\ -For the first time I feel my legs\ -Beneath me almost rocking.\ -\ -_Supernaturalist_. I'm overjoyed at being here,\ -And even among these rude ones;\ -For if bad spirits are, 'tis clear,\ -There also must be good ones.\ -\ -_Skeptic_. Where'er they spy the flame they roam,\ -And think rich stores to rifle,\ -Here such as I are quite at home,\ -For _Zweifel_ rhymes with _Teufel_.[45]\ -\ -_Leader of the music_. Grass-hid cricket, frogs in trees,\ -You cursed dilettanti!\ -Fly-snouts and gnats'-noses, peace!\ -Musicians you, right jaunty!\ -\ -_The Clever ones_. Sans-souci we call this band\ -Of merry ones that skip it;\ -Unable on our feet to stand,\ -Upon our heads we trip it.\ -\ -_The Bunglers_. Time was, we caught our tit-bits, too,\ -God help us now! that's done with!\ -We've danced our leathers entirely through,\ -And have only bare soles to run with.\ -\ -_Jack-o'lanterns_. From the dirty bog we come,\ -Whence we've just arisen:\ -Soon in the dance here, quite at home,\ -As gay young _sparks_ we'll glisten.\ -\ -_Shooting star_. Trailing from the sky I shot,\ -Not a star there missed me:\ -Crooked up in this grassy spot,\ -Who to my legs will assist me?\ -\ -_The solid men_. Room there! room there! clear the ground!\ -Grass-blades well may fall so;\ -Spirits are we, but 'tis found\ -They have plump limbs also.\ -\ -_Puck_. Heavy men! do not, I say,\ -Like elephants' calves go stumping:\ -Let the plumpest one to-day\ -Be Puck, the ever-jumping.\ -\ -_Ariel_. If the spirit gave, indeed,\ -If nature gave you, pinions,\ -Follow up my airy lead\ -To the rose-dominions!\ -\ -_Orchestra_ [_pianissimo_]. Gauzy mist and fleecy cloud\ -Sun and wind have banished.\ -Foliage rustles, reeds pipe loud,\ -All the show has vanished.\ -\ -\ -\ -\ - DREARY DAY.[46]\ -\ - _Field_.\ -\ -\ - FAUST. MEPHISTOPHELES.\ -\ -_Faust_. In wretchedness! In despair! Long hunted up and down the earth, a\ -miserable fugitive, and caught at last! Locked up as a malefactor in\ -prison, to converse with horrible torments--the sweet, unhappy creature!\ -Even to this pass! even to this!--Treacherous, worthless spirit, and this\ -thou hast hidden from me!--Stand up here--stand up! Roll thy devilish eyes\ -round grimly in thy head! Stand and defy me with thy intolerable presence!\ -Imprisoned! In irretrievable misery! Given over to evil spirits and to the\ -judgment of unfeeling humanity, and me meanwhile thou lullest in insipid\ -dissipations, concealest from me her growing anguish, and leavest her\ -without help to perish!\ -\ -_Mephistopheles_. She is not the first!\ -\ -_Faust_. Dog! abominable monster! Change him, thou Infinite Spirit! change\ -the worm back into his canine form, as he was often pleased in the night\ -to trot before me, to roll before the feet of the harmless wanderer, and,\ -when he fell, to hang on his shoulders. Change him again into his favorite\ -shape, that he may crawl before me on his belly in the sand, and that I\ -may tread him under foot, the reprobate!--Not the first! Misery! Misery!\ -inconceivable by any human soul! that more than one creature ever sank\ -into the depth of this wretchedness, that the first in its writhing\ -death-agony did not atone for the guilt of all the rest before the eyes of\ -the eternally Forgiving! My very marrow and life are consumed by the\ -misery of this single one; thou grinnest away composedly at the fate of\ -thousands!\ -\ -_Mephistopheles_. Here we are again at our wits' ends already, where the\ -thread of sense, with you mortals, snaps short. Why make a partnership\ -with us, if thou canst not carry it through? Wilt fly, and art not proof\ -against dizziness? Did we thrust ourselves on thee, or thou on us?\ -\ -_Faust_. Gnash not so thy greedy teeth against me! It disgusts me!--Great\ -and glorious spirit, thou that deignedst to appear to me, who knowest my\ -heart and soul, why yoke me to this shame-fellow, who feeds on mischief\ -and feasts on ruin?\ -\ -_Mephistopheles_. Hast thou done?\ -\ -_Faust_. Rescue her! O woe be unto thee! The most horrible curse on thee\ -for thousands of years!\ -\ -_Mephistopheles_. I cannot loose the bonds of the avenger, nor open his\ -bolts.--Rescue her!--Who was it that plunged her into ruin? I or thou?\ - [FAUST _looks wildly round_.]\ -Grasp'st thou after the thunder? Well that it was not given to you\ -miserable mortals! To crush an innocent respondent, that is a sort of\ -tyrant's-way of getting room to breathe in embarrassment.\ -\ -_Faust_. Lead me to her! She shall be free!\ -\ -_Mephistopheles_. And the danger which thou incurrest? Know that the guilt\ -of blood at thy hand still lies upon the town. Over the place of the\ -slain, avenging spirits hover and lurk for the returning murderer.\ -\ -_Faust_. That, too, from thee? Murder and death of a world upon thee,\ -monster! Lead me thither, I say, and free her!\ -\ -_Mephistopheles_. I will lead thee, and hear what I can do! Have I all\ -power in heaven and on earth? I will becloud the turnkey's senses; possess\ -thyself of the keys, and bear her out with human hand. I will watch! The\ -magic horses shall be ready, and I will bear you away. So much I can do.\ -\ -_Faust_. Up and away!\ -\ -\ -\ -\ - NIGHT. OPEN FIELD.\ -\ - FAUST. MEPHISTOPHELES.\ - _Scudding along on black horses_.\ -\ -_Faust_. What's doing, off there, round the gallows-tree?[47]\ -\ -_Mephistopheles_. Know not what they are doing and brewing.\ -\ -_Faust_. Up they go--down they go--wheel about, reel about.\ -\ -_Mephistopheles_. A witches'-crew.\ -\ -_Faust_. They're strewing and vowing.\ -\ -_Mephistopheles_. Pass on! Pass on!\ -\ -\ -\ -\ - PRISON.\ -\ - FAUST [_with a bunch of keys and a lamp, before an iron door_]\ -A long unwonted chill comes o'er me,\ -I feel the whole great load of human woe.\ -Within this clammy wall that frowns before me\ -Lies one whom blinded love, not guilt, brought low!\ -Thou lingerest, in hope to grow bolder!\ -Thou fearest again to behold her!\ -On! Thy shrinking slowly hastens the blow!\ - [_He grasps the key. Singing from within_.]\ -My mother, the harlot,\ -That strung me up!\ -My father, the varlet,\ -That ate me up!\ -My sister small,\ -She gathered up all\ -The bones that day,\ -And in a cool place did lay;\ -Then I woke, a sweet bird, at a magic call;\ -Fly away, fly away!\ -\ -_Faust [unlocking_]. She little dreams, her lover is so near,\ -The clanking chains, the rustling straw can hear;\ - [_He enters_.]\ -\ -_Margaret [burying herself in the bed_]. Woe! woe!\ -They come. O death of bitterness!\ -\ -_Faust_ [_softly_]. Hush! hush! I come to free thee; thou art dreaming.\ -\ -_Margaret_ [_prostrating herself before him_].\ -Art thou a man, then feel for my distress.\ -\ -_Faust_. Thou'lt wake the guards with thy loud screaming!\ - [_He seizes the chains to tin lock them._]\ -\ -_Margaret_ [_on her knees_]. Headsman, who's given thee this right\ -O'er me, this power!\ -Thou com'st for me at dead of night;\ -In pity spare me, one short hour!\ -Wilt't not be time when Matin bell has rung?\ - [_She stands up._]\ -Ah, I am yet so young, so young!\ -And death pursuing!\ -Fair was I too, and that was my undoing.\ -My love was near, far is he now!\ -Tom is the wreath, the scattered flowers lie low.\ -Take not such violent hold of me!\ -Spare me! what harm have I done to thee?\ -Let me not in vain implore thee.\ -Thou ne'er till now sawft her who lies before thee!\ -\ -_Faust_. O sorrow worse than death is o'er me!\ -\ -_Margaret_. Now I am wholly in thy power.\ -But first I'd nurse my child--do not prevent me.\ -I hugged it through the black night hour;\ -They took it from me to torment me,\ -And now they say I killed the pretty flower.\ -I shall never be happy again, I know.\ -They sing vile songs at me! 'Tis bad in them to do it!\ -There's an old tale that ends just so,\ -Who gave that meaning to it?\ -\ -_Faust [prostrates himself_]. A lover at thy feet is bending,\ -Thy bonds of misery would be rending.\ -\ -_Margaret [flings herself beside him_].\ -O let us kneel, the saints for aid invoking!\ -See! 'neath the threshold smoking,\ -Fire-breathing,\ -Hell is seething!\ -There prowling,\ -And grim under cover,\ -Satan is howling!\ -\ -_Faust [aloud_]. Margery! Margery!\ -\ -_Margaret [listening_]. That was the voice of my lover!\ - [_She springs up. The chains fall off_.]\ -\ -Where is he? Where? He calls. I hear him.\ -I'm free! Who hinders? I will be near him.\ -I'll fly to his neck! I'll hold him!\ -To my bosom I'll enfold him!\ -He stood on the threshold--called Margery plainly!\ -Hell's howling and clattering to drown it sought vainly,--\ -Through the devilish, grim scoffs, that might turn one to stone,\ -I caught the sweet, loving, enrapturing tone.\ -\ -_Faust_. 'Tis I!\ -\ -_Margaret_. 'Tis thou! O say it once again.\ - [_Clasping again._]\ -'Tis he! 'tis he! Where now is all my pain?\ -And where the dungeon's anguish? Joy-giver!\ -'Tis thou! And come to deliver!\ -I am delivered!\ -Again before me lies the street,\ -Where for the first time thou and I did meet.\ -And the garden-bower,\ -Where we spent that evening hour.\ -\ -_Faust_ [_trying to draw her away_]. Come! Come with me!\ -\ -_Margaret_. O tarry!\ -I tarry so gladly where thou tarriest.\ - [_Caressing him._]\ -\ -_Faust_. Hurry!\ -Unless thou hurriest,\ -Bitterly we both must rue it.\ -\ -_Margaret_. Kiss me! Canst no more do it?\ -So short an absence, love, as this,\ -And forgot how to kiss?\ -What saddens me so as I hang about thy neck?\ -When once, in thy words, thy looks, such a heaven of blisses\ -Came o'er me, I thought my heart would break,\ -And it seemed as if thou wouldst smother me with kisses.\ -Kiss thou me!\ -Else I kiss thee!\ - [_She embraces him._]\ -Woe! woe! thy lips are cold,\ -Stone-dumb.\ -Where's thy love left?\ -Oh! I'm bereft!\ -Who robbed me?\ - [_She turns from him_]\ -\ -_Faust_. O come!\ -Take courage, my darling! Let us go;\ -I clasp-thee with unutterable glow;\ -But follow me! For this alone I plead!\ -\ -_Margaret [turning to him_]. Is it, then, thou?\ -And is it thou indeed?\ -\ -_Faust_. 'Tis I! Come, follow me!\ -\ -_Margaret_. Thou break'st my chain,\ -And tak'st me to thy breast again!\ -How comes it, then, that thou art not afraid of me?\ -And dost thou know, my friend, who 'tis thou settest free?\ -\ -_Faust_. Come! come! The night is on the wane.\ -\ -_Margaret_. Woe! woe! My mother I've slain!\ -Have drowned the babe of mine!\ -Was it not sent to be mine and thine?\ -Thine, too--'tis thou! Scarce true doth it seem.\ -Give me thy hand! 'Tis not a dream!\ -Thy blessed hand!--But ah! there's dampness here!\ -Go, wipe it off! I fear\ -There's blood thereon.\ -Ah God! what hast thou done!\ -Put up thy sword again;\ -I pray thee, do!\ -\ -_Faust_. The past is past--there leave it then,\ -Thou kill'st me too!\ -\ -_Margaret_. No, thou must longer tarry!\ -I'll tell thee how each thou shalt bury;\ -The places of sorrow\ -Make ready to-morrow;\ -Must give the best place to my mother,\ -The very next to my brother,\ -Me a little aside,\ -But make not the space too wide!\ -And on my right breast let the little one lie.\ -No one else will be sleeping by me.\ -Once, to feel _thy_ heart beat nigh me,\ -Oh, 'twas a precious, a tender joy!\ -But I shall have it no more--no, never;\ -I seem to be forcing myself on thee ever,\ -And thou repelling me freezingly;\ -And 'tis thou, the same good soul, I see.\ -\ -_Faust_. If thou feelest 'tis I, then come with me\ -\ -_Margaret_. Out yonder?\ -\ -_Faust_. Into the open air.\ -\ -_Margaret_. If the grave is there,\ -If death is lurking; then come!\ -From here to the endless resting-place,\ -And not another pace--Thou\ -go'st e'en now? O, Henry, might I too.\ -\ -_Faust_. Thou canst! 'Tis but to will! The door stands open.\ -\ -_Margaret_. I dare not go; for me there's no more hoping.\ -What use to fly? They lie in wait for me.\ -So wretched the lot to go round begging,\ -With an evil conscience thy spirit plaguing!\ -So wretched the lot, an exile roaming--And\ -then on my heels they are ever coming!\ -\ -_Faust_. I shall be with thee.\ -\ -_Margaret_. Make haste! make haste!\ -No time to waste!\ -Save thy poor child!\ -Quick! follow the edge\ -Of the rushing rill,\ -Over the bridge\ -And by the mill,\ -Then into the woods beyond\ -On the left where lies the plank\ -Over the pond.\ -Seize hold of it quick!\ -To rise 'tis trying,\ -It struggles still!\ -Rescue! rescue!\ -\ -_Faust_. Bethink thyself, pray!\ -A single step and thou art free!\ -\ -_Margaret_. Would we were by the mountain. See!\ -There sits my mother on a stone,\ -The sight on my brain is preying!\ -There sits my mother on a stone,\ -And her head is constantly swaying;\ -She beckons not, nods not, her head falls o'er,\ -So long she's been sleeping, she'll wake no more.\ -She slept that we might take pleasure.\ -O that was bliss without measure!\ -\ -_Faust_. Since neither reason nor prayer thou hearest;\ -I must venture by force to take thee, dearest.\ -\ -_Margaret_. Let go! No violence will I bear!\ -Take not such a murderous hold of me!\ -I once did all I could to gratify thee.\ -\ -_Faust_. The day is breaking! Dearest! dearest!\ -\ -_Margaret_. Day! Ay, it is day! the last great day breaks in!\ -My wedding-day it should have been!\ -Tell no one thou hast been with Margery!\ -Alas for my garland! The hour's advancing!\ -Retreat is in vain!\ -We meet again,\ -But not at the dancing.\ -The multitude presses, no word is spoke.\ -Square, streets, all places--\ -sea of faces--\ -The bell is tolling, the staff is broke.\ -How they seize me and bind me!\ -They hurry me off to the bloody block.[48]\ -The blade that quivers behind me,\ -Quivers at every neck with convulsive shock;\ -Dumb lies the world as the grave!\ -\ -_Faust_. O had I ne'er been born!\ -\ -_Mephistopheles [appears without_]. Up! or thou'rt lost! The morn\ -Flushes the sky.\ -Idle delaying! Praying and playing!\ -My horses are neighing,\ -They shudder and snort for the bound.\ -\ -_Margaret_. What's that, comes up from the ground?\ -He! He! Avaunt! that face!\ -What will he in the sacred place?\ -He seeks me!\ -\ -_Faust_. Thou shalt live!\ -\ -_Margaret_. Great God in heaven!\ -Unto thy judgment my soul have I given!\ -\ -_Mephistopheles [to Faust_].\ -Come! come! or in the lurch I leave both her and thee!\ -\ -_Margaret_. Thine am I, Father! Rescue me!\ -Ye angels, holy bands, attend me!\ -And camp around me to defend me I\ -Henry! I dread to look on thee.\ -\ -_Mephistopheles_. She's judged!\ -\ -_Voice [from above_]. She's saved!\ -\ -_Mephistopheles [to Faust_]. Come thou to me!\ - [_Vanishes with_ FAUST.]\ -\ -_Voice [from within, dying away_]. Henry! Henry!\ -\ -\ -\ -\ -NOTES.\ -\ -\ -[Footnote 1: Dedication. The idea of Faust had early entered into Goethe's\ -mind. He probably began the work when he was about twenty years old. It\ -was first published, as a fragment, in 1790, and did not appear in its\ -present form till 1808, when its author's age was nearly sixty. By the\ -\"forms\" are meant, of course, the shadowy personages and scenes of the\ -drama.]\ -\ -[Footnote 2: --\"Thy messengers\"--\ - \"He maketh the winds his-messengers,\ - The flaming lightnings his ministers.\"\ - _Noyes's Psalms_, c. iv. 4.]\ -\ -[Footnote 3: \"The Word Divine.\" In translating the German \"Werdende\"\ -(literally, the _becoming, developing_, or _growing_) by the term _word_,\ -I mean the _word_ in the largest sense: \"In the beginning was the Word,\ -&c.\" Perhaps \"nature\" would be a pretty good rendering, but \"word,\" being\ -derived from \"werden,\" and expressing philosophically and scripturally the\ -going forth or manifestation of mind, seemed to me as appropriate a\ -translation as any.]\ -\ -[Footnote 4: \"The old fellow.\" The commentators do not seem quite agreed\ -whether \"den Alten\" (the old one) is an entirely reverential phrase here,\ -like the \"ancient of days,\" or savors a little of profane pleasantry, like\ -the title \"old man\" given by boys to their schoolmaster or of \"the old\ -gentleman\" to their fathers. Considering who the speaker is, I have\ -naturally inclined to the latter alternative.]\ -\ -[Footnote 5: \"Nostradamus\" (properly named Michel Notre Dame) lived\ -through the first half of the sixteenth century. He was born in the south\ -of France and was of Jewish extraction. As physician and astrologer, he\ -was held in high honor by the French nobility and kings.]\ -\ -[Footnote 6: The \"Macrocosm\" is the great world of outward things, in\ -contrast with its epitome, the little world in man, called the microcosm\ -(or world in miniature).]\ -\ -[Footnote 7: \"Famulus\" seems to mean a cross between a servant and a\ -scholar. The Dominie Sampson called Wagner, is appended to Faust for the\ -time somewhat as Sancho is to Don Quixote. The Doctor Faust of the legend\ -has a servant by that name, who seems to have been more of a _Sancho_, in\ -the sense given to the word by the old New England mothers when upbraiding\ -bad boys (you Sanch'!). Curiously enough, Goethe had in early life a\ -(treacherous) friend named Wagner, who plagiarized part of Faust and made\ -a tragedy of it.]\ -\ -[Footnote 8: \"Mock-heroic play.\" We have Schlegel's authority for thus\ -rendering the phrase \"Haupt- und Staats-Action,\" (literally, \"head and\ -State-action,\") who says that this title was given to dramas designed for\ -puppets, when they treated of heroic and historical subjects.]\ -\ -[Footnote 9: The literal sense of this couplet in the original is:--\ - \"Is he, in the bliss of becoming,\ - To creative joy near--\"\ -\"Werde-lust\" presents the same difficulty that we found in note 3. This\ -same word, \"Werden,\" is also used by the poet in the introductory theatre\ -scene (page 7), where he longs for the time when he himself was\ -_ripening_, growing, becoming, or _forming_, (as Hayward renders it.) I\ -agree with Hayward, \"the meaning probably is, that our Saviour enjoys, in\ -coming to life again,\" (I should say, in being born into the upper life,)\ -\"a happiness nearly equal to that of the Creator in creating.\"]\ -\ -[Footnote 10: The Angel-chorusses in this scene present the only instances\ -in which the translator, for the sake of retaining the ring and swing of\ -the melody, has felt himself obliged to give a transfusion of the spirit\ -of the thought, instead of its exact form.\ -\ -The literal meaning of the first chorus is:--\ -\ - Christ is arisen!\ - Joy to the Mortal,\ - Whom the ruinous,\ - Creeping, hereditary\ - Infirmities wound round.\ -\ -Dr. Hedge has come nearer than any one to reconciling meaning and melody\ -thus:--\ -\ - \"Christ has arisen!\ - Joy to our buried Head!\ - Whom the unmerited,\ - Trailing, inherited\ - Woes did imprison.\"\ -\ -The present translator, without losing sight of the fact that \"the Mortal\"\ -means Christ, has taken the liberty (constrained by rhyme,--which is\ -sometimes more than the _rudder_ of verse,) of making the congratulation\ -include Humanity, as incarnated in Christ, \"the second Adam.\"\ -\ -In the closing Chorus of Angels, the translator found that he could best\ -preserve the spirit of the five-fold rhyme:--\ -\ - \"Thätig ihn preisenden,\ - Liebe beweisenden,\ - Brüderlich speisenden,\ - Predigend reisenden,\ - Wonne verheissenden,\"\ -\ -by running it into three couplets.]\ -\ -[Footnote 11: The prose account of the alchymical process is as follows:--\ -\ -\"There was red mercury, a powerfully acting body, united with the tincture\ -of antimony, at a gentle heat of the water-bath. Then, being exposed to\ -the heat of open fire in an aludel, (or alembic,) a sublimate filled its\ -heads in succession, which, if it appeared with various hues, was the\ -desired medicine.\"]\ -\ -[Footnote 12: \"Salamander, &c.\" The four represent the spirits of the\ -four elements, fire, water, air, and earth, which Faust successively\ -conjures, so that, if the monster belongs in any respect to this mundane\ -sphere, he may be exorcized. But it turns out that he is beyond and\ -beneath all.]\ -\ -[Footnote 13: Here, of course, Faust makes the sign of the cross, or holds\ -out a crucifix.]\ -\ -[Footnote 14: \"Fly-God,\" _i.e._ Beelzebub.]\ -\ -[Footnote 15: The \"Drudenfuss,\" or pentagram, was a pentagonal figure\ -composed of three triangles, thus:\ -[Illustration]\ -\ -[Footnote 16: Doctor's Feast. The inaugural feast given at taking a\ -degree.]\ -\ -[Footnote 17: \"Blood.\" When at the first invention of printing, the art\ -was ascribed to the devil, the illuminated red ink parts were said by the\ -people to be done in blood.]\ -\ -[Footnote 18: \"The Spanish boot\" was an instrument of torture, like the\ -Scottish boot mentioned in Old Mortality.]\ -\ -[Footnote 19: \"Encheiresin Naturæ.\" Literally, a handling of nature.]\ -\ -[Footnote 20: Still a famous place of public resort and entertainment. On\ -the wall are two old paintings of Faust's carousal and his ride out of the\ -door on a cask. One is accompanied by the following inscription, being two\ -lines (Hexameter and Pentameter) broken into halves:--\ -\ - \"Vive, bibe, obgregare, memor\ - Fausti hujus et hujus\ - Pœnæ. Aderat clauda haec,\ - Ast erat ampla gradû. 1525.\"\ -\ - \"Live, drink, be merry, remembering\ - This Faust and his\ - Punishment. It came slowly\ - But was in ample measure.\"]\ -\ -[Footnote 21:_Frosch, Brander_, &c. These names seem to be chosen with an\ -eye to adaptation, Frosch meaning frog, and Brander fireship. \"Frog\"\ -happens also to be the nickname the students give to a pupil of the\ -gymnasium, or school preparatory to the university.]\ -\ -[Footnote 22: Rippach is a village near Leipsic, and Mr. Hans was a\ -fictitious personage about whom the students used to quiz greenhorns.]\ -\ -[Footnote 23: The original means literally _sea-cat_. Retzsch says, it is\ -the little ring-tailed monkey.]\ -\ -[Footnote 24: One-time-one, _i.e._ multiplication-table.]\ -\ -[Footnote 25: \"Hand and glove.\" The translator's coincidence with Miss\ -Swanwick here was entirely accidental. The German is \"thou and thou,\"\ -alluding to the fact that intimate friends among the Germans, like the\ -sect of Friends, call each other _thou_.]\ -\ -[Footnote 26: The following is a literal translation of the song referred\ -to:--\ -\ - Were I a little bird,\ - Had I two wings of mine,\ - I'd fly to my dear;\ - But that can never be,\ - So I stay here.\ -\ - Though I am far from thee,\ - Sleeping I'm near to thee,\ - Talk with my dear;\ - When I awake again,\ - I am alone.\ -\ - Scarce is there an hour in the night,\ - When sleep does not take its flight,\ - And I think of thee,\ - How many thousand times\ - Thou gav'st thy heart to me.]\ -\ -[Footnote 27: Donjon. The original is _Zwinger_, which Hayward says is\ -untranslatable. It probably means an old tower, such as is often found in\ -the free cities, where, in a dark passage-way, a lamp is sometimes placed,\ -and a devotional image near it.]\ -\ -[Footnote 28: It was a superstitious belief that the presence of buried\ -treasure was indicated by a blue flame.]\ -\ -[Footnote 29: Lion-dollars--a Bohemian coin, first minted three centuries\ -ago, by Count Schlick, from the mines of Joachim's-Thal. The one side\ -bears a lion, the other a full length image of St. John.]\ -\ -[Footnote 30: An imitation of Ophelia's song: _Hamlet_, act 14, scene 5.]\ -\ -[Footnote 31: The Rat-catcher was supposed to have the art of drawing rats\ -after him by his whistle, like a sort of Orpheus.]\ -\ -[Footnote 32: Walpurgis Night. May-night. Walpurgis is the female saint\ -who converted the Saxons to Christianity.--The Brocken or Blocksberg is\ -the highest peak of the Harz mountains, which comprise about 1350 square\ -miles.--Schirke and Elend are two villages in the neighborhood.]\ -\ -[Footnote 33: Shelley's translation of this couplet is very fine:\ -(\"_O si sic omnia!_\")\ -\ - \"The giant-snouted crags, ho! ho!\ - How they snort and how they blow!\"]\ -\ -[Footnote 34: The original is _Windsbraut_, (wind's-bride,) the word used\ -in Luther's Bible to translate Paul's _Euroclydon_.]\ -\ -[Footnote 35: One of the names of the devil in Germany.]\ -\ -[Footnote 36: One of the names of Beelzebub.]\ -\ -[Footnote 37: \"The Talmudists say that Adam had a wife called Lilis before\ -he married Eve, and of her he begat nothing but devils.\"\ - _Burton's Anatomy of Melancholy_.\ -\ -A learned writer says that _Lullaby_ is derived from \"Lilla, abi!\" \"Begone\ -Lilleth!\" she having been supposed to lie in wait for children to kill\ -them.]\ -\ -[Footnote 38: This name, derived from two Greek words meaning _rump_ and\ -_fancy_, was meant for Nicolai of Berlin, a great hater of Goethe's\ -writings, and is explained by the fact that the man had for a long time a\ -violent affection of the nerves, and by the application he made of leeches\ -as a remedy, (alluded to by Mephistopheles.)]\ -\ -[Footnote 39: Tegel (mistranslated _pond_ by Shelley) is a small place a\ -few miles from Berlin, whose inhabitants were, in 1799, hoaxed by a ghost\ -story, of which the scene was laid in the former place.]\ -\ -[Footnote 40: The park in Vienna.]\ -\ -[Footnote 41: He was scene-painter to the Weimar theatre.]\ -\ -[Footnote 42: A poem of Schiller's, which gave great offence to the\ -religious people of his day.]\ -\ -[Footnote 43: A literal translation of _Maulen_, but a slang-term in\ -Yankee land.]\ -\ -[Footnote 44: Epigrams, published from time to time by Goethe and Schiller\ -jointly. Hennings (whose name heads the next quatrain) was editor of the\ -_Musaget_, (a title of Apollo, \"leader of the muses,\") and also of the\ -_Genius of the Age_. The other satirical allusions to classes of\ -notabilities will, without difficulty, be guessed out by the readers.]\ -\ -[Footnote 45: \"_Doubt_ is the only rhyme for devil,\" in German.]\ -\ -[Footnote 46: The French translator, Stapfer, assigns as the probable\ -reason why this scene alone, of the whole drama, should have been left in\ -prose, \"that it might not be said that Faust wanted any one of the\ -possible forms of style.\"]\ -\ -[Footnote 47: Literally the _raven-stone_.]\ -\ -[Footnote 48: The _blood-seat_, in allusion to the old German custom of\ -tying a woman, who was to be beheaded, into a wooden chair.]\ -\ - * * * * *\ -\ -P. S. There is a passage on page 84, the speech of Faust, ending with the\ -lines:--\ -\ - Show me the fruit that, ere it's plucked, will rot,\ - And trees from which new green is daily peeping,\ -\ -which seems to have puzzled or misled so much, not only English\ -translators, but even German critics, that the present translator has\ -concluded, for once, to depart from his usual course, and play the\ -commentator, by giving his idea of Goethe's meaning, which is this: Faust\ -admits that the devil has all the different kinds of Sodom-apples which he\ -has just enumerated, gold that melts away in the hand, glory that vanishes\ -like a meteor, and pleasure that perishes in the possession. But all these\ -torments are too insipid for Faust's morbid and mad hankering after the\ -luxury of spiritual pain. Show me, he says, the fruit that rots _before_\ -one can pluck it, and [a still stronger expression of his diseased craving\ -for agony] trees that fade so quickly as to be every day just putting\ -forth new green, only to tantalize one with perpetual promise and\ -perpetual disappointment.\ -\ -\ -\ -\ -\ -End of the Project Gutenberg EBook of Faust, by Goethe\ -\ -*** END OF THIS PROJECT GUTENBERG EBOOK FAUST ***\ -\ -***** This file should be named 14460-8.txt or 14460-8.zip *****\ -This and all associated files of various formats will be found in:\ - http://www.gutenberg.net/1/4/4/6/14460/\ -\ -Produced by Juliet Sutherland, Charles Bidwell and the PG Online\ -Distributed Proofreading Team\ -\ -\ -Updated editions will replace the previous one--the old editions\ -will be renamed.\ -\ -Creating the works from public domain print editions means that no\ -one owns a United States copyright in these works, so the Foundation\ -(and you!) can copy and distribute it in the United States without\ -permission and without paying copyright royalties. Special rules,\ -set forth in the General Terms of Use part of this license, apply to\ -copying and distributing Project Gutenberg-tm electronic works to\ -protect the PROJECT GUTENBERG-tm concept and trademark. Project\ -Gutenberg is a registered trademark, and may not be used if you\ -charge for the eBooks, unless you receive specific permission. If you\ -do not charge anything for copies of this eBook, complying with the\ -rules is very easy. You may use this eBook for nearly any purpose\ -such as creation of derivative works, reports, performances and\ -research. They may be modified and printed and given away--you may do\ -practically ANYTHING with public domain eBooks. Redistribution is\ -subject to the trademark license, especially commercial\ -redistribution.\ -\ -\ -\ -*** START: FULL LICENSE ***\ -\ -THE FULL PROJECT GUTENBERG LICENSE\ -PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK\ -\ -To protect the Project Gutenberg-tm mission of promoting the free\ -distribution of electronic works, by using or distributing this work\ -(or any other work associated in any way with the phrase \"Project\ -Gutenberg\"), you agree to comply with all the terms of the Full Project\ -Gutenberg-tm License (available with this file or online at\ -http://gutenberg.net/license).\ -\ -\ -Section 1. General Terms of Use and Redistributing Project Gutenberg-tm\ -electronic works\ -\ -1.A. By reading or using any part of this Project Gutenberg-tm\ -electronic work, you indicate that you have read, understand, agree to\ -and accept all the terms of this license and intellectual property\ -(trademark/copyright) agreement. If you do not agree to abide by all\ -the terms of this agreement, you must cease using and return or destroy\ -all copies of Project Gutenberg-tm electronic works in your possession.\ -If you paid a fee for obtaining a copy of or access to a Project\ -Gutenberg-tm electronic work and you do not agree to be bound by the\ -terms of this agreement, you may obtain a refund from the person or\ -entity to whom you paid the fee as set forth in paragraph 1.E.8.\ -\ -1.B. \"Project Gutenberg\" is a registered trademark. It may only be\ -used on or associated in any way with an electronic work by people who\ -agree to be bound by the terms of this agreement. There are a few\ -things that you can do with most Project Gutenberg-tm electronic works\ -even without complying with the full terms of this agreement. See\ -paragraph 1.C below. There are a lot of things you can do with Project\ -Gutenberg-tm electronic works if you follow the terms of this agreement\ -and help preserve free future access to Project Gutenberg-tm electronic\ -works. See paragraph 1.E below.\ -\ -1.C. The Project Gutenberg Literary Archive Foundation (\"the Foundation\"\ -or PGLAF), owns a compilation copyright in the collection of Project\ -Gutenberg-tm electronic works. Nearly all the individual works in the\ -collection are in the public domain in the United States. If an\ -individual work is in the public domain in the United States and you are\ -located in the United States, we do not claim a right to prevent you from\ -copying, distributing, performing, displaying or creating derivative\ -works based on the work as long as all references to Project Gutenberg\ -are removed. Of course, we hope that you will support the Project\ -Gutenberg-tm mission of promoting free access to electronic works by\ -freely sharing Project Gutenberg-tm works in compliance with the terms of\ -this agreement for keeping the Project Gutenberg-tm name associated with\ -the work. You can easily comply with the terms of this agreement by\ -keeping this work in the same format with its attached full Project\ -Gutenberg-tm License when you share it without charge with others.\ -\ -1.D. The copyright laws of the place where you are located also govern\ -what you can do with this work. Copyright laws in most countries are in\ -a constant state of change. If you are outside the United States, check\ -the laws of your country in addition to the terms of this agreement\ -before downloading, copying, displaying, performing, distributing or\ -creating derivative works based on this work or any other Project\ -Gutenberg-tm work. The Foundation makes no representations concerning\ -the copyright status of any work in any country outside the United\ -States.\ -\ -1.E. Unless you have removed all references to Project Gutenberg:\ -\ -1.E.1. The following sentence, with active links to, or other immediate\ -access to, the full Project Gutenberg-tm License must appear prominently\ -whenever any copy of a Project Gutenberg-tm work (any work on which the\ -phrase \"Project Gutenberg\" appears, or with which the phrase \"Project\ -Gutenberg\" is associated) is accessed, displayed, performed, viewed,\ -copied or distributed:\ -\ -This eBook is for the use of anyone anywhere at no cost and with\ -almost no restrictions whatsoever. You may copy it, give it away or\ -re-use it under the terms of the Project Gutenberg License included\ -with this eBook or online at www.gutenberg.net\ -\ -1.E.2. If an individual Project Gutenberg-tm electronic work is derived\ -from the public domain (does not contain a notice indicating that it is\ -posted with permission of the copyright holder), the work can be copied\ -and distributed to anyone in the United States without paying any fees\ -or charges. If you are redistributing or providing access to a work\ -with the phrase \"Project Gutenberg\" associated with or appearing on the\ -work, you must comply either with the requirements of paragraphs 1.E.1\ -through 1.E.7 or obtain permission for the use of the work and the\ -Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or\ -1.E.9.\ -\ -1.E.3. If an individual Project Gutenberg-tm electronic work is posted\ -with the permission of the copyright holder, your use and distribution\ -must comply with both paragraphs 1.E.1 through 1.E.7 and any additional\ -terms imposed by the copyright holder. Additional terms will be linked\ -to the Project Gutenberg-tm License for all works posted with the\ -permission of the copyright holder found at the beginning of this work.\ -\ -1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm\ -License terms from this work, or any files containing a part of this\ -work or any other work associated with Project Gutenberg-tm.\ -\ -1.E.5. Do not copy, display, perform, distribute or redistribute this\ -electronic work, or any part of this electronic work, without\ -prominently displaying the sentence set forth in paragraph 1.E.1 with\ -active links or immediate access to the full terms of the Project\ -Gutenberg-tm License.\ -\ -1.E.6. You may convert to and distribute this work in any binary,\ -compressed, marked up, nonproprietary or proprietary form, including any\ -word processing or hypertext form. However, if you provide access to or\ -distribute copies of a Project Gutenberg-tm work in a format other than\ -\"Plain Vanilla ASCII\" or other format used in the official version\ -posted on the official Project Gutenberg-tm web site (www.gutenberg.net),\ -you must, at no additional cost, fee or expense to the user, provide a\ -copy, a means of exporting a copy, or a means of obtaining a copy upon\ -request, of the work in its original \"Plain Vanilla ASCII\" or other\ -form. Any alternate format must include the full Project Gutenberg-tm\ -License as specified in paragraph 1.E.1.\ -\ -1.E.7. Do not charge a fee for access to, viewing, displaying,\ -performing, copying or distributing any Project Gutenberg-tm works\ -unless you comply with paragraph 1.E.8 or 1.E.9.\ -\ -1.E.8. You may charge a reasonable fee for copies of or providing\ -access to or distributing Project Gutenberg-tm electronic works provided\ -that\ -\ -- You pay a royalty fee of 20% of the gross profits you derive from\ - the use of Project Gutenberg-tm works calculated using the method\ - you already use to calculate your applicable taxes. The fee is\ - owed to the owner of the Project Gutenberg-tm trademark, but he\ - has agreed to donate royalties under this paragraph to the\ - Project Gutenberg Literary Archive Foundation. Royalty payments\ - must be paid within 60 days following each date on which you\ - prepare (or are legally required to prepare) your periodic tax\ - returns. Royalty payments should be clearly marked as such and\ - sent to the Project Gutenberg Literary Archive Foundation at the\ - address specified in Section 4, \"Information about donations to\ - the Project Gutenberg Literary Archive Foundation.\"\ -\ -- You provide a full refund of any money paid by a user who notifies\ - you in writing (or by e-mail) within 30 days of receipt that s/he\ - does not agree to the terms of the full Project Gutenberg-tm\ - License. You must require such a user to return or\ - destroy all copies of the works possessed in a physical medium\ - and discontinue all use of and all access to other copies of\ - Project Gutenberg-tm works.\ -\ -- You provide, in accordance with paragraph 1.F.3, a full refund of any\ - money paid for a work or a replacement copy, if a defect in the\ - electronic work is discovered and reported to you within 90 days\ - of receipt of the work.\ -\ -- You comply with all other terms of this agreement for free\ - distribution of Project Gutenberg-tm works.\ -\ -1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm\ -electronic work or group of works on different terms than are set\ -forth in this agreement, you must obtain permission in writing from\ -both the Project Gutenberg Literary Archive Foundation and Michael\ -Hart, the owner of the Project Gutenberg-tm trademark. Contact the\ -Foundation as set forth in Section 3 below.\ -\ -1.F.\ -\ -1.F.1. Project Gutenberg volunteers and employees expend considerable\ -effort to identify, do copyright research on, transcribe and proofread\ -public domain works in creating the Project Gutenberg-tm\ -collection. Despite these efforts, Project Gutenberg-tm electronic\ -works, and the medium on which they may be stored, may contain\ -\"Defects,\" such as, but not limited to, incomplete, inaccurate or\ -corrupt data, transcription errors, a copyright or other intellectual\ -property infringement, a defective or damaged disk or other medium, a\ -computer virus, or computer codes that damage or cannot be read by\ -your equipment.\ -\ -1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the \"Right\ -of Replacement or Refund\" described in paragraph 1.F.3, the Project\ -Gutenberg Literary Archive Foundation, the owner of the Project\ -Gutenberg-tm trademark, and any other party distributing a Project\ -Gutenberg-tm electronic work under this agreement, disclaim all\ -liability to you for damages, costs and expenses, including legal\ -fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT\ -LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE\ -PROVIDED IN PARAGRAPH F3. YOU AGREE THAT THE FOUNDATION, THE\ -TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE\ -LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR\ -INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH\ -DAMAGE.\ -\ -1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a\ -defect in this electronic work within 90 days of receiving it, you can\ -receive a refund of the money (if any) you paid for it by sending a\ -written explanation to the person you received the work from. If you\ -received the work on a physical medium, you must return the medium with\ -your written explanation. The person or entity that provided you with\ -the defective work may elect to provide a replacement copy in lieu of a\ -refund. If you received the work electronically, the person or entity\ -providing it to you may choose to give you a second opportunity to\ -receive the work electronically in lieu of a refund. If the second copy\ -is also defective, you may demand a refund in writing without further\ -opportunities to fix the problem.\ -\ -1.F.4. Except for the limited right of replacement or refund set forth\ -in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER\ -WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO\ -WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE.\ -\ -1.F.5. Some states do not allow disclaimers of certain implied\ -warranties or the exclusion or limitation of certain types of damages.\ -If any disclaimer or limitation set forth in this agreement violates the\ -law of the state applicable to this agreement, the agreement shall be\ -interpreted to make the maximum disclaimer or limitation permitted by\ -the applicable state law. The invalidity or unenforceability of any\ -provision of this agreement shall not void the remaining provisions.\ -\ -1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the\ -trademark owner, any agent or employee of the Foundation, anyone\ -providing copies of Project Gutenberg-tm electronic works in accordance\ -with this agreement, and any volunteers associated with the production,\ -promotion and distribution of Project Gutenberg-tm electronic works,\ -harmless from all liability, costs and expenses, including legal fees,\ -that arise directly or indirectly from any of the following which you do\ -or cause to occur: (a) distribution of this or any Project Gutenberg-tm\ -work, (b) alteration, modification, or additions or deletions to any\ -Project Gutenberg-tm work, and (c) any Defect you cause.\ -\ -\ -Section 2. Information about the Mission of Project Gutenberg-tm\ -\ -Project Gutenberg-tm is synonymous with the free distribution of\ -electronic works in formats readable by the widest variety of computers\ -including obsolete, old, middle-aged and new computers. It exists\ -because of the efforts of hundreds of volunteers and donations from\ -people in all walks of life.\ -\ -Volunteers and financial support to provide volunteers with the\ -assistance they need, is critical to reaching Project Gutenberg-tm's\ -goals and ensuring that the Project Gutenberg-tm collection will\ -remain freely available for generations to come. In 2001, the Project\ -Gutenberg Literary Archive Foundation was created to provide a secure\ -and permanent future for Project Gutenberg-tm and future generations.\ -To learn more about the Project Gutenberg Literary Archive Foundation\ -and how your efforts and donations can help, see Sections 3 and 4\ -and the Foundation web page at http://www.pglaf.org.\ -\ -\ -Section 3. Information about the Project Gutenberg Literary Archive\ -Foundation\ -\ -The Project Gutenberg Literary Archive Foundation is a non profit\ -501(c)(3) educational corporation organized under the laws of the\ -state of Mississippi and granted tax exempt status by the Internal\ -Revenue Service. The Foundation's EIN or federal tax identification\ -number is 64-6221541. Its 501(c)(3) letter is posted at\ -http://pglaf.org/fundraising. Contributions to the Project Gutenberg\ -Literary Archive Foundation are tax deductible to the full extent\ -permitted by U.S. federal laws and your state's laws.\ -\ -The Foundation's principal office is located at 4557 Melan Dr. S.\ -Fairbanks, AK, 99712., but its volunteers and employees are scattered\ -throughout numerous locations. Its business office is located at\ -809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email\ -business@pglaf.org. Email contact links and up to date contact\ -information can be found at the Foundation's web site and official\ -page at http://pglaf.org\ -\ -For additional contact information:\ - Dr. Gregory B. Newby\ - Chief Executive and Director\ - gbnewby@pglaf.org\ -\ -\ -Section 4. Information about Donations to the Project Gutenberg\ -Literary Archive Foundation\ -\ -Project Gutenberg-tm depends upon and cannot survive without wide\ -spread public support and donations to carry out its mission of\ -increasing the number of public domain and licensed works that can be\ -freely distributed in machine readable form accessible by the widest\ -array of equipment including outdated equipment. Many small donations\ -($1 to $5,000) are particularly important to maintaining tax exempt\ -status with the IRS.\ -\ -The Foundation is committed to complying with the laws regulating\ -charities and charitable donations in all 50 states of the United\ -States. Compliance requirements are not uniform and it takes a\ -considerable effort, much paperwork and many fees to meet and keep up\ -with these requirements. We do not solicit donations in locations\ -where we have not received written confirmation of compliance. To\ -SEND DONATIONS or determine the status of compliance for any\ -particular state visit http://pglaf.org\ -\ -While we cannot and do not solicit contributions from states where we\ -have not met the solicitation requirements, we know of no prohibition\ -against accepting unsolicited donations from donors in such states who\ -approach us with offers to donate.\ -\ -International donations are gratefully accepted, but we cannot make\ -any statements concerning tax treatment of donations received from\ -outside the United States. U.S. laws alone swamp our small staff.\ -\ -Please check the Project Gutenberg Web pages for current donation\ -methods and addresses. Donations are accepted in a number of other\ -ways including including checks, online payments and credit card\ -donations. To donate, please visit: http://pglaf.org/donate\ -\ -\ -Section 5. General Information About Project Gutenberg-tm electronic\ -works.\ -\ -Professor Michael S. Hart is the originator of the Project Gutenberg-tm\ -concept of a library of electronic works that could be freely shared\ -with anyone. For thirty years, he produced and distributed Project\ -Gutenberg-tm eBooks with only a loose network of volunteer support.\ -\ -\ -Project Gutenberg-tm eBooks are often created from several printed\ -editions, all of which are confirmed as Public Domain in the U.S.\ -unless a copyright notice is included. Thus, we do not necessarily\ -keep eBooks in compliance with any particular paper edition.\ -\ -\ -Most people start at our Web site which has the main PG search facility:\ -\ - http://www.gutenberg.net\ -\ -This Web site includes information about Project Gutenberg-tm,\ -including how to make donations to the Project Gutenberg Literary\ -Archive Foundation, how to help produce our new eBooks, and how to\ -subscribe to our email newsletter to hear about new eBooks.", - textXML = "\ -\ -\ -\ -Coding In Paradise\ -Brad Neuberg's thoughts, feelings, and experiences.\ -\ -tag:blogger.com,1999:blog-3191291\ -2006-01-26T01:37:22Z\ -Blogger\ -\ -
    This is an Atom formatted XML site feed. It is intended to be viewed in a Newsreader or syndicated to another site. Please visit the Blogger Help for more info.
    \ -
    \ -true\ -\ -\ -\ -Brad GNUberg\ -\ -2006-01-25T17:36:00-08:00\ -2006-01-26T01:37:21Z\ -2006-01-26T01:37:21Z\ -\ -tag:blogger.com,1999:blog-3191291.post-113823944195262179\ -Resume\ -\ -
    I just finished and put up my resume. Resumes are hard :)
    \ -
    \ -false\ -
    \ -\ -\ -\ -Brad GNUberg\ -\ -2006-01-18T12:33:00-08:00\ -2006-01-18T20:34:10Z\ -2006-01-18T20:34:10Z\ -\ -tag:blogger.com,1999:blog-3191291.post-113761645059106145\ -AJAXian Site Comparison with Alexa\ -\ -
    Joe Walker has created an interesting AJAX mashup using Alexa data, making Alexa a bit more useful.
    \ -
    \ -false\ -
    \ -\ -\ -\ -Brad GNUberg\ -\ -2006-01-18T12:16:00-08:00\ -2006-01-18T21:43:11Z\ -2006-01-18T20:26:36Z\ -\ -tag:blogger.com,1999:blog-3191291.post-113761599631873348\ -Civil Engines Released\ -\ -
    My old cohorts with BaseSystem and OpenPortal, Christoper Tse, Paolo de Dios, and Ken Rossi of Liquid Orb Media have just shipped their software and announced their company. The company is named Civil Engines, and the software is called Civil Netizen:\ -\ -Civil Netizen provides a useful, secure way to easily transfer large files and groups of files between people on the Internet, getting past FTP
    \ -
    \ -false\ -
    \ -\ -\ -\ -Brad GNUberg\ -\ -2006-01-17T23:06:00-08:00\ -2006-01-18T07:13:56Z\ -2006-01-18T07:06:40Z\ -\ -tag:blogger.com,1999:blog-3191291.post-113756800036562086\ -Photos of Mash Pit\ -\ -
    Photos of Flash Pit are up on Flickr now:\ -\ -\ -\ -\ -\ -\ -\ -\ -\ -
    \ -
    \ -false\ -
    \ -\ -\ -\ -Brad GNUberg\ -\ -2006-01-17T22:56:00-08:00\ -2006-01-18T19:45:28Z\ -2006-01-18T06:57:11Z\ -\ -tag:blogger.com,1999:blog-3191291.post-113756743174780868\ -Offline Access in AJAX Applications\ -\ -
    Update: Julien reports that he's not actually using AMASS in his offline work, but was inspired by it. He rolled his own access to Flash's storage capabilities using ExternalInterface, but he should be aware of the reliability and performance issues with ExternalInterface (I tried to paste 250K of text into the Wiki and the browser locked up for a long period of time as it tried to pass the data
    \ -
    \ -false\ -
    \ -\ -\ -\ -Brad GNUberg\ -\ -2006-01-17T22:15:00-08:00\ -2006-01-18T06:29:05Z\ -2006-01-18T06:29:05Z\ -\ -tag:blogger.com,1999:blog-3191291.post-113756574524170757\ -Mash Pit Synopses\ -\ -
    Man, what an amazing event! We had a post-Mash Pit dinner and party at Lonely Palm.\ -\ -Here's some more info about the three projects that were produced at the end of the day.\ -\ -The first one was called Whuffie Tracker; the idea there was to produce a single site that could take your list of blogs and online sites, query other remote sites like Technorati and Flickr, and tell you who is talking about
    \ -
    \ -false\ -
    \ -\ -\ -\ -Brad GNUberg\ -\ -2006-01-17T17:19:00-08:00\ -2006-01-18T01:19:30Z\ -2006-01-18T01:19:30Z\ -\ -tag:blogger.com,1999:blog-3191291.post-113754717012597001\ -Mash Pit 4\ -\ -
    It's demo time at Mash Pit. Everyone is furiously coding, but the clock is almost over. We'll have three demos. I'll try to blog them as people give them.
    \ -
    \ -false\ -
    \ -\ -\ -\ -Brad GNUberg\ -\ -2006-01-17T16:39:00-08:00\ -2006-01-18T00:40:20Z\ -2006-01-18T00:40:20Z\ -\ -tag:blogger.com,1999:blog-3191291.post-113754482097808410\ -Mash Pit 3\ -\ -
    We're hacking away, very intensely! No time to post! Just 30 more minutes till we have to be done, at 5:15 PM. Nothing like a hard deadline to force you to make hard decisions.
    \ -
    \ -false\ -
    \ -\ -\ -\ -Brad GNUberg\ -\ -2006-01-17T10:43:00-08:00\ -2006-01-17T21:18:01Z\ -2006-01-17T21:18:01Z\ -\ -tag:blogger.com,1999:blog-3191291.post-113753268191434316\ -Mash Pit 2\ -\ -
    People are doing intros, saying what their skills are and what they are interested in.\ -\ -We had a big brainstorming session in the morning. The goal was to focus on ideas independent of technology, to force us to focus on whether something is relevant rather than just technologically interesting.\ -\ -We broke for lunch, sponsored by Ning.\ -\ -We've formed three groups that are working independently now.
    \ -
    \ -false\ -
    \ -\ -\ -\ -Brad GNUberg\ -\ -2006-01-17T10:36:00-08:00\ -2006-01-17T18:42:49Z\ -2006-01-17T18:42:49Z\ -\ -tag:blogger.com,1999:blog-3191291.post-113752336910726653\ -Mash Pit Starts\ -\ -
    Mash Pit is starting now, Chris is talking. We've got a full house of hackers, programmers, thinkers, and open source folks.\ -\ -The goal today is to somehow make the work people have been doing with Web 2.0 relevant for normal folks.\ -\ -We're doing introductions and introducing people to the coworking space. Thanks to Chris for setting up Mash Pit.\ -\ -We should be lazy today, try to reuse as much
    \ -
    \ -false\ -
    \ -
    ", - testNumber = 4, - testBoolean = false; \ No newline at end of file diff --git a/www/extras/yui/tests/stylesheet/tests/stylesheet.html b/www/extras/yui/tests/stylesheet/tests/stylesheet.html deleted file mode 100644 index a0b383d4cf..0000000000 --- a/www/extras/yui/tests/stylesheet/tests/stylesheet.html +++ /dev/null @@ -1,644 +0,0 @@ - - - - Test Page - - - - - - -

    Tests

    -
    - - - - - - - - - - - - diff --git a/www/extras/yui/tests/swf/tests/YUIBridgeProject.swf b/www/extras/yui/tests/swf/tests/YUIBridgeProject.swf deleted file mode 100644 index cf3db72ec8..0000000000 Binary files a/www/extras/yui/tests/swf/tests/YUIBridgeProject.swf and /dev/null differ diff --git a/www/extras/yui/tests/swf/tests/basic.html b/www/extras/yui/tests/swf/tests/basic.html deleted file mode 100644 index 3fd999282c..0000000000 --- a/www/extras/yui/tests/swf/tests/basic.html +++ /dev/null @@ -1,46 +0,0 @@ - - - SWFDetect & SWF Test Page - - -

    SWFDetect Tests

    - - - - - -

    SWF Test

    -
    -one two three -
    - - - - diff --git a/www/extras/yui/tests/tabview/tests/tabview.html b/www/extras/yui/tests/tabview/tests/tabview.html deleted file mode 100644 index 4b6049e7d5..0000000000 --- a/www/extras/yui/tests/tabview/tests/tabview.html +++ /dev/null @@ -1,136 +0,0 @@ - - - -TabView Test Suite - - - - - - - - - - - - - - - - - -
    -
    - -
    -
    foo content
    -
    bar content
    -
    baz content
    -
    -
    - alternate label -
    alternate content
    -
    - - diff --git a/www/extras/yui/tests/yahoo/tests/assets/xframe.html b/www/extras/yui/tests/yahoo/tests/assets/xframe.html deleted file mode 100644 index b2e3db2c5f..0000000000 --- a/www/extras/yui/tests/yahoo/tests/assets/xframe.html +++ /dev/null @@ -1,31 +0,0 @@ - - -xframe tester - - - -

    - - diff --git a/www/extras/yui/tests/yahoo/tests/yahoo.html b/www/extras/yui/tests/yahoo/tests/yahoo.html deleted file mode 100644 index 271799f968..0000000000 --- a/www/extras/yui/tests/yahoo/tests/yahoo.html +++ /dev/null @@ -1,445 +0,0 @@ - - -YUI Tests - - - - - - - - - - - - - - - -

    YAHOO test page

    -

    This page contains tests being run by yuitest, the results of which
    -are output in the logger to the right.
    View the source to see how it's done.

    -

    - - - diff --git a/www/extras/yui/tests/yuiloader/tests/yuiloader.html b/www/extras/yui/tests/yuiloader/tests/yuiloader.html deleted file mode 100644 index de3cd0345a..0000000000 --- a/www/extras/yui/tests/yuiloader/tests/yuiloader.html +++ /dev/null @@ -1,118 +0,0 @@ - - -YUI Tests - - - - - - - - - - - - - -

    YUILoader test page

    -

    - - - diff --git a/www/extras/yui/tests/yuiloader/tests/yuiloader_config.html b/www/extras/yui/tests/yuiloader/tests/yuiloader_config.html deleted file mode 100644 index b4daa8d57f..0000000000 --- a/www/extras/yui/tests/yuiloader/tests/yuiloader_config.html +++ /dev/null @@ -1,82 +0,0 @@ - - - -yuiloader test - - - - - - - -

    YUI Loader

    -

    yuiloader is loading the test library, so if it fails the test probably won't run at all

    - - diff --git a/www/extras/yui/tests/yuiloader/tests/yuiloader_rollup.html b/www/extras/yui/tests/yuiloader/tests/yuiloader_rollup.html deleted file mode 100644 index 4a2ed3fee9..0000000000 --- a/www/extras/yui/tests/yuiloader/tests/yuiloader_rollup.html +++ /dev/null @@ -1,85 +0,0 @@ - - - -yuiloader test - - - - - - - -

    YUI Loader

    -

    yuiloader is loading the test library, so if it fails the test probably won't run at all

    -

    Testing rollups (yahoo-dom-event) which is verified in the test.

    - - diff --git a/www/extras/yui/tests/yuitest/tests/yuitest.html b/www/extras/yui/tests/yuitest/tests/yuitest.html deleted file mode 100644 index 73f826cb7a..0000000000 --- a/www/extras/yui/tests/yuitest/tests/yuitest.html +++ /dev/null @@ -1,1492 +0,0 @@ - - -yuitest tests - - - - - - - - - - - - - -

    yuitest tests

    -

    - - - diff --git a/www/uploads/48/d9/48d94a1f46e6369767982bde8e4ff194/thumb-top-right.jpg b/www/uploads/12/6c/126c123b9de9c957770d943dfa93f542/thumb-top-right.jpg similarity index 100% rename from www/uploads/48/d9/48d94a1f46e6369767982bde8e4ff194/thumb-top-right.jpg rename to www/uploads/12/6c/126c123b9de9c957770d943dfa93f542/thumb-top-right.jpg diff --git a/www/uploads/48/d9/48d94a1f46e6369767982bde8e4ff194/top-right.jpg b/www/uploads/12/6c/126c123b9de9c957770d943dfa93f542/top-right.jpg similarity index 100% rename from www/uploads/48/d9/48d94a1f46e6369767982bde8e4ff194/top-right.jpg rename to www/uploads/12/6c/126c123b9de9c957770d943dfa93f542/top-right.jpg diff --git a/www/uploads/3c/e1/3ce1c9490aa981a19c9228f47be0eeda/input_bg.jpg b/www/uploads/1e/03/1e036e4dd875763e679038c53a802a8c/input_bg.jpg similarity index 100% rename from www/uploads/3c/e1/3ce1c9490aa981a19c9228f47be0eeda/input_bg.jpg rename to www/uploads/1e/03/1e036e4dd875763e679038c53a802a8c/input_bg.jpg diff --git a/www/uploads/3c/e1/3ce1c9490aa981a19c9228f47be0eeda/thumb-input_bg.jpg b/www/uploads/1e/03/1e036e4dd875763e679038c53a802a8c/thumb-input_bg.jpg similarity index 100% rename from www/uploads/3c/e1/3ce1c9490aa981a19c9228f47be0eeda/thumb-input_bg.jpg rename to www/uploads/1e/03/1e036e4dd875763e679038c53a802a8c/thumb-input_bg.jpg diff --git a/www/uploads/56/6a/566a9ad05defc721d369ccf5a230b8f5/bottom-right.jpg b/www/uploads/21/fc/21fc9dbb68b6249e8e7f72936ecb0b2f/bottom-right.jpg similarity index 100% rename from www/uploads/56/6a/566a9ad05defc721d369ccf5a230b8f5/bottom-right.jpg rename to www/uploads/21/fc/21fc9dbb68b6249e8e7f72936ecb0b2f/bottom-right.jpg diff --git a/www/uploads/56/6a/566a9ad05defc721d369ccf5a230b8f5/thumb-bottom-right.jpg b/www/uploads/21/fc/21fc9dbb68b6249e8e7f72936ecb0b2f/thumb-bottom-right.jpg similarity index 100% rename from www/uploads/56/6a/566a9ad05defc721d369ccf5a230b8f5/thumb-bottom-right.jpg rename to www/uploads/21/fc/21fc9dbb68b6249e8e7f72936ecb0b2f/thumb-bottom-right.jpg diff --git a/www/uploads/38/93/389319e91b251464dc3ccf559de5c691/thumb-top-left.jpg b/www/uploads/41/8d/418d7ad6590c974f4c50284060178039/thumb-top-left.jpg similarity index 100% rename from www/uploads/38/93/389319e91b251464dc3ccf559de5c691/thumb-top-left.jpg rename to www/uploads/41/8d/418d7ad6590c974f4c50284060178039/thumb-top-left.jpg diff --git a/www/uploads/38/93/389319e91b251464dc3ccf559de5c691/top-left.jpg b/www/uploads/41/8d/418d7ad6590c974f4c50284060178039/top-left.jpg similarity index 100% rename from www/uploads/38/93/389319e91b251464dc3ccf559de5c691/top-left.jpg rename to www/uploads/41/8d/418d7ad6590c974f4c50284060178039/top-left.jpg diff --git a/www/uploads/7a/37/7a37d34156e8e11a579f3926cbc2ab12/bottom-left.jpg b/www/uploads/77/93/779351e19745d87662438e6be3ae36aa/bottom-left.jpg similarity index 100% rename from www/uploads/7a/37/7a37d34156e8e11a579f3926cbc2ab12/bottom-left.jpg rename to www/uploads/77/93/779351e19745d87662438e6be3ae36aa/bottom-left.jpg diff --git a/www/uploads/7a/37/7a37d34156e8e11a579f3926cbc2ab12/thumb-bottom-left.jpg b/www/uploads/77/93/779351e19745d87662438e6be3ae36aa/thumb-bottom-left.jpg similarity index 100% rename from www/uploads/7a/37/7a37d34156e8e11a579f3926cbc2ab12/thumb-bottom-left.jpg rename to www/uploads/77/93/779351e19745d87662438e6be3ae36aa/thumb-bottom-left.jpg diff --git a/www/uploads/a6/48/a648b8354e35425e94b74ff5e24daae0/thumb-top-right.jpg b/www/uploads/a6/48/a648b8354e35425e94b74ff5e24daae0/thumb-top-right.jpg new file mode 100644 index 0000000000..be9a255666 Binary files /dev/null and b/www/uploads/a6/48/a648b8354e35425e94b74ff5e24daae0/thumb-top-right.jpg differ diff --git a/www/uploads/a6/48/a648b8354e35425e94b74ff5e24daae0/top-right.jpg b/www/uploads/a6/48/a648b8354e35425e94b74ff5e24daae0/top-right.jpg new file mode 100644 index 0000000000..1ebd6fec4b Binary files /dev/null and b/www/uploads/a6/48/a648b8354e35425e94b74ff5e24daae0/top-right.jpg differ diff --git a/www/uploads/b2/7d/b27d1f0a521671747fcec8938ae72fc6/input_bg.jpg b/www/uploads/b2/7d/b27d1f0a521671747fcec8938ae72fc6/input_bg.jpg new file mode 100644 index 0000000000..3f9b6c3946 Binary files /dev/null and b/www/uploads/b2/7d/b27d1f0a521671747fcec8938ae72fc6/input_bg.jpg differ diff --git a/www/uploads/b2/7d/b27d1f0a521671747fcec8938ae72fc6/thumb-input_bg.jpg b/www/uploads/b2/7d/b27d1f0a521671747fcec8938ae72fc6/thumb-input_bg.jpg new file mode 100644 index 0000000000..14411c5e51 Binary files /dev/null and b/www/uploads/b2/7d/b27d1f0a521671747fcec8938ae72fc6/thumb-input_bg.jpg differ diff --git a/www/uploads/b7/3d/b73db582e589a6116f55ba680b4766c1/bottom-right.jpg b/www/uploads/b7/3d/b73db582e589a6116f55ba680b4766c1/bottom-right.jpg new file mode 100644 index 0000000000..e6d1cf5fac Binary files /dev/null and b/www/uploads/b7/3d/b73db582e589a6116f55ba680b4766c1/bottom-right.jpg differ diff --git a/www/uploads/b7/3d/b73db582e589a6116f55ba680b4766c1/thumb-bottom-right.jpg b/www/uploads/b7/3d/b73db582e589a6116f55ba680b4766c1/thumb-bottom-right.jpg new file mode 100644 index 0000000000..eb294b484f Binary files /dev/null and b/www/uploads/b7/3d/b73db582e589a6116f55ba680b4766c1/thumb-bottom-right.jpg differ diff --git a/www/uploads/c2/f1/c2f1e149fe26a04efd66cd7eb7b00f5d/thumb-top-left.jpg b/www/uploads/c2/f1/c2f1e149fe26a04efd66cd7eb7b00f5d/thumb-top-left.jpg new file mode 100644 index 0000000000..8cbfc4cdd5 Binary files /dev/null and b/www/uploads/c2/f1/c2f1e149fe26a04efd66cd7eb7b00f5d/thumb-top-left.jpg differ diff --git a/www/uploads/c2/f1/c2f1e149fe26a04efd66cd7eb7b00f5d/top-left.jpg b/www/uploads/c2/f1/c2f1e149fe26a04efd66cd7eb7b00f5d/top-left.jpg new file mode 100644 index 0000000000..bb47a75ac7 Binary files /dev/null and b/www/uploads/c2/f1/c2f1e149fe26a04efd66cd7eb7b00f5d/top-left.jpg differ diff --git a/www/uploads/d2/68/d26878bb45b2b836379dc7be9115dc89/bottom-left.jpg b/www/uploads/d2/68/d26878bb45b2b836379dc7be9115dc89/bottom-left.jpg new file mode 100644 index 0000000000..2d890edb3a Binary files /dev/null and b/www/uploads/d2/68/d26878bb45b2b836379dc7be9115dc89/bottom-left.jpg differ diff --git a/www/uploads/d2/68/d26878bb45b2b836379dc7be9115dc89/thumb-bottom-left.jpg b/www/uploads/d2/68/d26878bb45b2b836379dc7be9115dc89/thumb-bottom-left.jpg new file mode 100644 index 0000000000..e2776d2f3b Binary files /dev/null and b/www/uploads/d2/68/d26878bb45b2b836379dc7be9115dc89/thumb-bottom-left.jpg differ