+++ /dev/null
-#!/usr/bin/perl
-use strict;
-use warnings;
-
-=head1 Generate a set of staff and users for testing Evergreen
-
-=over
-
-=item get_org_unit()
-
-Map user IDs to org_units for permissions
-
-=back
-
-=cut
-
-sub get_org_unit {
- my $id = shift;
- if ($id <= 10) {
- return 105; # OSUL
- } elsif ($id <=20) {
- return 106; # WINDSYS
- } elsif ($id <=30) {
- return 111; # ALGOMASYS
- } elsif ($id <=40) {
- return 125; # NOHIN
- }
-}
-
-my $password = 'demo123';
-
-my @profiles = ( 1, 4, 5, 10 );
-
-my $profile_info = {
- '1' => 'user',
- '4' => 'cat',
- '5' => 'circ',
- '10' => 'admin',
-};
-
-my $sql = "BEGIN;\n";
-
-foreach my $i (1..40) {
- foreach my $profile (@profiles) {
- my $twodigit = sprintf('%02d', $i);
- my $barcode = '1' . ($profile == 10 ? '0' : $profile) . $twodigit;
- my $usrname = $profile_info->{$profile . ""} . $i;
- my $family_name = ucfirst($usrname);
- my $org_unit = get_org_unit($i);
- $sql .= <<HERE;
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES ($profile, '$usrname', '$password', 3, 'Other ID value', 'Dummy', '$family_name', $org_unit);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), $barcode);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '$barcode Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), $org_unit);
-HERE
- }
-}
-
-$sql .= "SELECT SETVAL('actor.usr_id_seq', (SELECT MAX(id) FROM actor.usr));\n";
-$sql .= "SELECT SETVAL('actor.usr_address_id_seq', (SELECT MAX(id) FROM actor.usr_address));\n";
-$sql .= "SELECT SETVAL('actor.card_id_seq', (SELECT MAX(id) FROM actor.card));\n";
-
-print $sql;
-
-
+++ /dev/null
-BEGIN;
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user1', 'demo123', 3, 'Other ID value', 'Dummy', 'User1', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1101);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1101 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat1', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat1', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1401);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1401 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ1', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ1', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1501);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1501 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin1', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin1', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1001);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1001 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user2', 'demo123', 3, 'Other ID value', 'Dummy', 'User2', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1102);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1102 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat2', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat2', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1402);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1402 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ2', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ2', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1502);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1502 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin2', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin2', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1002);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1002 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user3', 'demo123', 3, 'Other ID value', 'Dummy', 'User3', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1103);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1103 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat3', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat3', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1403);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1403 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ3', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ3', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1503);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1503 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin3', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin3', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1003);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1003 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user4', 'demo123', 3, 'Other ID value', 'Dummy', 'User4', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1104);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1104 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat4', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat4', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1404);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1404 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ4', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ4', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1504);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1504 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin4', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin4', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1004);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1004 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user5', 'demo123', 3, 'Other ID value', 'Dummy', 'User5', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1105);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1105 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat5', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat5', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1405);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1405 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ5', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ5', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1505);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1505 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin5', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin5', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1005);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1005 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user6', 'demo123', 3, 'Other ID value', 'Dummy', 'User6', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1106);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1106 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat6', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat6', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1406);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1406 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ6', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ6', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1506);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1506 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin6', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin6', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1006);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1006 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user7', 'demo123', 3, 'Other ID value', 'Dummy', 'User7', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1107);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1107 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat7', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat7', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1407);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1407 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ7', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ7', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1507);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1507 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin7', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin7', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1007);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1007 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user8', 'demo123', 3, 'Other ID value', 'Dummy', 'User8', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1108);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1108 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat8', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat8', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1408);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1408 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ8', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ8', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1508);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1508 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin8', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin8', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1008);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1008 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user9', 'demo123', 3, 'Other ID value', 'Dummy', 'User9', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1109);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1109 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat9', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat9', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1409);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1409 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ9', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ9', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1509);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1509 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin9', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin9', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1009);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1009 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user10', 'demo123', 3, 'Other ID value', 'Dummy', 'User10', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1110);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1110 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat10', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat10', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1410);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1410 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ10', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ10', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1510);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1510 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin10', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin10', 105);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1010);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1010 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user11', 'demo123', 3, 'Other ID value', 'Dummy', 'User11', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1111);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1111 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat11', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat11', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1411);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1411 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ11', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ11', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1511);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1511 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin11', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin11', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1011);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1011 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user12', 'demo123', 3, 'Other ID value', 'Dummy', 'User12', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1112);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1112 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat12', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat12', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1412);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1412 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ12', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ12', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1512);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1512 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin12', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin12', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1012);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1012 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user13', 'demo123', 3, 'Other ID value', 'Dummy', 'User13', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1113);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1113 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat13', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat13', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1413);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1413 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ13', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ13', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1513);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1513 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin13', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin13', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1013);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1013 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user14', 'demo123', 3, 'Other ID value', 'Dummy', 'User14', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1114);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1114 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat14', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat14', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1414);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1414 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ14', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ14', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1514);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1514 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin14', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin14', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1014);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1014 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user15', 'demo123', 3, 'Other ID value', 'Dummy', 'User15', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1115);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1115 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat15', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat15', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1415);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1415 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ15', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ15', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1515);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1515 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin15', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin15', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1015);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1015 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user16', 'demo123', 3, 'Other ID value', 'Dummy', 'User16', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1116);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1116 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat16', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat16', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1416);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1416 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ16', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ16', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1516);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1516 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin16', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin16', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1016);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1016 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user17', 'demo123', 3, 'Other ID value', 'Dummy', 'User17', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1117);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1117 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat17', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat17', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1417);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1417 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ17', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ17', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1517);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1517 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin17', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin17', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1017);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1017 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user18', 'demo123', 3, 'Other ID value', 'Dummy', 'User18', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1118);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1118 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat18', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat18', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1418);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1418 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ18', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ18', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1518);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1518 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin18', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin18', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1018);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1018 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user19', 'demo123', 3, 'Other ID value', 'Dummy', 'User19', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1119);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1119 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat19', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat19', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1419);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1419 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ19', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ19', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1519);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1519 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin19', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin19', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1019);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1019 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user20', 'demo123', 3, 'Other ID value', 'Dummy', 'User20', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1120);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1120 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat20', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat20', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1420);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1420 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ20', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ20', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1520);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1520 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin20', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin20', 106);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1020);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1020 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user21', 'demo123', 3, 'Other ID value', 'Dummy', 'User21', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1121);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1121 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat21', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat21', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1421);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1421 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ21', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ21', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1521);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1521 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin21', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin21', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1021);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1021 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user22', 'demo123', 3, 'Other ID value', 'Dummy', 'User22', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1122);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1122 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat22', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat22', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1422);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1422 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ22', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ22', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1522);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1522 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin22', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin22', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1022);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1022 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user23', 'demo123', 3, 'Other ID value', 'Dummy', 'User23', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1123);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1123 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat23', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat23', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1423);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1423 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ23', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ23', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1523);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1523 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin23', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin23', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1023);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1023 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user24', 'demo123', 3, 'Other ID value', 'Dummy', 'User24', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1124);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1124 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat24', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat24', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1424);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1424 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ24', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ24', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1524);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1524 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin24', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin24', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1024);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1024 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user25', 'demo123', 3, 'Other ID value', 'Dummy', 'User25', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1125);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1125 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat25', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat25', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1425);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1425 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ25', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ25', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1525);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1525 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin25', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin25', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1025);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1025 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user26', 'demo123', 3, 'Other ID value', 'Dummy', 'User26', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1126);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1126 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat26', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat26', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1426);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1426 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ26', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ26', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1526);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1526 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin26', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin26', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1026);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1026 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user27', 'demo123', 3, 'Other ID value', 'Dummy', 'User27', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1127);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1127 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat27', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat27', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1427);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1427 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ27', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ27', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1527);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1527 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin27', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin27', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1027);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1027 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user28', 'demo123', 3, 'Other ID value', 'Dummy', 'User28', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1128);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1128 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat28', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat28', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1428);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1428 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ28', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ28', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1528);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1528 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin28', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin28', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1028);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1028 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user29', 'demo123', 3, 'Other ID value', 'Dummy', 'User29', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1129);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1129 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat29', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat29', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1429);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1429 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ29', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ29', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1529);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1529 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin29', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin29', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1029);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1029 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user30', 'demo123', 3, 'Other ID value', 'Dummy', 'User30', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1130);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1130 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat30', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat30', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1430);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1430 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ30', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ30', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1530);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1530 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin30', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin30', 111);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1030);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1030 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user31', 'demo123', 3, 'Other ID value', 'Dummy', 'User31', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1131);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1131 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat31', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat31', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1431);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1431 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ31', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ31', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1531);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1531 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin31', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin31', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1031);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1031 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user32', 'demo123', 3, 'Other ID value', 'Dummy', 'User32', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1132);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1132 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat32', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat32', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1432);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1432 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ32', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ32', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1532);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1532 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin32', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin32', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1032);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1032 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user33', 'demo123', 3, 'Other ID value', 'Dummy', 'User33', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1133);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1133 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat33', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat33', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1433);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1433 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ33', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ33', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1533);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1533 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin33', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin33', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1033);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1033 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user34', 'demo123', 3, 'Other ID value', 'Dummy', 'User34', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1134);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1134 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat34', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat34', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1434);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1434 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ34', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ34', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1534);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1534 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin34', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin34', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1034);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1034 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user35', 'demo123', 3, 'Other ID value', 'Dummy', 'User35', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1135);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1135 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat35', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat35', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1435);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1435 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ35', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ35', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1535);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1535 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin35', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin35', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1035);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1035 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user36', 'demo123', 3, 'Other ID value', 'Dummy', 'User36', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1136);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1136 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat36', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat36', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1436);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1436 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ36', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ36', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1536);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1536 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin36', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin36', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1036);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1036 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user37', 'demo123', 3, 'Other ID value', 'Dummy', 'User37', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1137);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1137 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat37', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat37', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1437);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1437 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ37', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ37', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1537);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1537 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin37', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin37', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1037);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1037 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user38', 'demo123', 3, 'Other ID value', 'Dummy', 'User38', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1138);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1138 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat38', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat38', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1438);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1438 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ38', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ38', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1538);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1538 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin38', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin38', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1038);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1038 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user39', 'demo123', 3, 'Other ID value', 'Dummy', 'User39', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1139);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1139 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat39', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat39', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1439);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1439 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ39', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ39', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1539);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1539 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin39', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin39', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1039);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1039 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user40', 'demo123', 3, 'Other ID value', 'Dummy', 'User40', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1140);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1140 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat40', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat40', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1440);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1440 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ40', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ40', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1540);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1540 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin40', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin40', 125);
-INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1040);
-INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1040 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
-UPDATE actor.usr
- SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
- WHERE id = CURRVAL('actor.usr_id_seq');
-INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
-SELECT SETVAL('actor.usr_id_seq', (SELECT MAX(id) FROM actor.usr));
-SELECT SETVAL('actor.usr_address_id_seq', (SELECT MAX(id) FROM actor.usr_address));
-SELECT SETVAL('actor.card_id_seq', (SELECT MAX(id) FROM actor.card));
+++ /dev/null
-BEGIN;
-
--- Map libraries
-UPDATE staging_items
- SET owning_lib = 'OSUL'
- WHERE location = 'DESMARAIS';
-
-UPDATE staging_items
- SET owning_lib = 'OSM', location = 'WWW'
- WHERE location = 'HIRC-WWW';
-
-UPDATE staging_items
- SET owning_lib = 'NOSME'
- WHERE location IN ('HIRCE-AV', 'HIRCE-BOOK', 'HIRCE-CIRC', 'HIRCE-PER', 'HIRCE-REF');
-
-UPDATE staging_items
- SET owning_lib = 'NOSMW'
- WHERE location IN ('HIRCW-AV', 'HIRCW-BOOK', 'HIRCW-CIRC', 'HIRCW-PER', 'HIRCW-REF');
-
-UPDATE staging_items
- SET owning_lib = 'OSM'
- WHERE owning_lib = 'HIRC';
-
-UPDATE staging_items
- SET owning_lib = 'KAP'
- WHERE location IN (SELECT location FROM staging_items WHERE location LIKE 'HRSTK-%');
-
-UPDATE staging_items
- SET owning_lib = 'TIMMINS'
- WHERE location IN (SELECT location FROM staging_items WHERE location LIKE 'HRSTT-%');
-
-UPDATE staging_items
- SET owning_lib = 'SAH'
- WHERE location = 'NEORCC';
-
--- Map locations
-UPDATE staging_items
- SET location = 'AV'
- WHERE location IN ('HIRCE-AV', 'HIRCW-AV');
-
-UPDATE staging_items
- SET location = 'BOOK'
- WHERE location IN ('HIRCE-BOOK', 'HIRCW-BOOK');
-
-UPDATE staging_items
- SET location = 'CIRC'
- WHERE location IN ('HIRCE-CIRC', 'HIRCW-CIRC');
-
-UPDATE staging_items
- SET location = 'PER'
- WHERE location IN ('HIRCE-PER', 'HIRCW-PER');
-
-UPDATE staging_items
- SET location = 'REF'
- WHERE location IN ('HIRCE-REF', 'HIRCW-REF');
-
-UPDATE staging_items
- SET location = 'DOC'
- WHERE location IN ('HRST-DOC', 'HRSTK-DOC', 'HRSTT-DOC');
-
-UPDATE staging_items
- SET location = 'EBOOK'
- WHERE location IN ('HRST-EBOOK', 'HRSTK-EBOOK', 'HRSTT-EBOOK');
-
-UPDATE staging_items
- SET location = 'PER'
- WHERE location IN ('HRST-PER', 'HRSTK-PER', 'HRSTT-PER');
-
-UPDATE staging_items
- SET location = 'PRET'
- WHERE location IN ('HRST-PRET', 'HRSTK-PRET', 'HRSTT-PRET');
-
-UPDATE staging_items
- SET location = 'REF'
- WHERE location IN ('HRST-REF', 'HRSTK-REF', 'HRSTT-REF');
-
-UPDATE staging_items
- SET location = 'VID'
- WHERE location IN ('HRST-VID', 'HRSTK-VID', 'HRSTT-VID');
-
--- First, we build shelving location
-INSERT INTO asset.copy_location (name, owning_lib)
- SELECT DISTINCT l.location, ou.id
- FROM staging_items l JOIN actor.org_unit ou
- ON (l.owning_lib = ou.shortname)
-;
-
--- Create circ modifiers for in-db circulation
--- This is very, very crude but satisfies the FK constraints
-INSERT INTO config.circ_modifier (code, name, description, sip2_media_type, magnetic_media)
- SELECT DISTINCT item_type as code,
- item_type AS name,
- LOWER(item_type) AS description,
- '001' AS sip2_media_type,
- FALSE AS magnetic_media
- FROM staging_items
- WHERE item_type NOT IN (SELECT code FROM config.circ_modifier);
-
--- Import call numbers for bibrecord->library mappings
-INSERT INTO asset.call_number (creator,editor,record,label,owning_lib)
- SELECT DISTINCT 1, 1, l.bibkey , l.callnum, ou.id
- FROM staging_items l
- JOIN biblio.record_entry b ON (l.bibkey = b.id)
- JOIN actor.org_unit ou ON (l.owning_lib = ou.shortname);
-
--- Import base copy data
-INSERT INTO asset.copy (
- circ_lib, creator, editor, create_date, barcode,
- status, location, loan_duration,
- fine_level, circ_modifier, deposit, ref, call_number)
- SELECT DISTINCT ou.id AS circ_lib,
- 1 AS creator,
- 1 AS editor,
- l.createdate AS create_date,
- l.barcode AS barcode,
- CASE
- WHEN l.location = 'BINDERY' THEN 2
- WHEN l.location = 'CATALOGING' THEN 11
- WHEN l.location = 'DISCARD' THEN 13
- WHEN l.location = 'ILL' THEN 10
- WHEN l.location = 'INPROCESS' THEN 5
- WHEN l.location = 'LOST' THEN 3
- WHEN l.location = 'LONGOVRDUE' THEN 4
- WHEN l.location = 'MISSING' THEN 4
- WHEN l.location = 'ON-ORDER' THEN 9
- WHEN l.location = 'REPAIR' THEN 14
- ELSE 0
- END AS status,
- cl.id AS location,
- 2 AS loan_duration,
- 2 AS fine_level,
- CASE
- WHEN l.item_type IN ('REFERENCE', 'DEPOSIT_BK', 'BOOKS') THEN 'BOOK'
- WHEN l.item_type IN ('PERIODICALS') THEN 'PERIODICAL'
- ELSE l.item_type
- END AS circ_modifier,
- CASE
- WHEN l.item_type = 'DEPOSIT_BK' THEN TRUE
- ELSE FALSE
- END AS deposit,
- CASE
- WHEN l.item_type = 'REFERENCE' THEN TRUE
- ELSE FALSE
- END AS ref,
- cn.id AS call_number
- FROM staging_items l
- JOIN actor.org_unit ou
- ON (l.owning_lib = ou.shortname)
- JOIN asset.copy_location cl
- ON (ou.id = cl.owning_lib AND l.location = cl.name)
- JOIN asset.call_number cn
- ON (ou.id = cn.owning_lib AND l.bibkey = cn.record AND l.callnum = cn.label)
-;
-COMMIT;
+++ /dev/null
-#!/usr/bin/perl
-use warnings;
-use strict;
-
-=head1 Automated processing of Laurentian system bibliographic records
-
-First we split the records into many smaller files (defined by $chunksize),
-then process a fraction of the records (defined by 1/$denominator) from
-across the set of files.
-
-=cut
-
-my $chunk_size = 1000;
-my $chunk_dir = "chunks";
-my $chunk_prefix = 'chunk_';
-my $denominator = 20;
-
-my $marc = 'bibs.marc';
-my $xml_file = 'bibs.xml';
-my $bre_file = 'bibs.bre';
-my $ingest_file = 'bibs.ingest';
-my $loader_prefix = 'lul_load';
-my $tcn_dumpfile = 'tcn.dump';
-my $script_dir = '/home/lauadmin/Evergreen/Open-ILS/src/extras/import/';
-my $db_user = 'evergreen';
-my $db_pw = '';
-my $db_host = '';
-my $db_name = 'evergreen';
-
-my $input_files;
-
-convert_to_marcxml("true");
-process_bibs("--tcnfield 935 --tcnsubfield a --idfield 935 --idsubfield a --trash 901 --trash 949");
-
-=over
-
-=item convert_to_marcxml(is_marc8)
-
-=back
-
-=cut
-sub convert_to_marcxml {
- my $is_marc8 = shift;
- my $marc8_to_utf8;
-
-=over
-
-Split the files up into chunks
-
-=back
-
-=cut
- if (!-d $chunk_dir) {
- mkdir($chunk_dir);
- }
-
- system("yaz-marcdump -C $chunk_size -s chunks/$chunk_prefix $marc > /dev/null");
-
-=over
-
-Convert selected sample of records to MARC21XML
-
-=back
-
-=cut
- my @files = glob("$chunk_dir/$chunk_prefix\*");
-
- foreach my $i (1..$denominator) {
- my $filenumber = sprintf("%07i", (scalar(@files) / $denominator * $i) - 1);
- $input_files .= "$chunk_dir/$chunk_prefix$filenumber ";
- }
- if ($is_marc8) {
- $marc8_to_utf8 = '-f MARC-8 -t UTF-8 -l 9=97';
- }
- system("yaz-marcdump -i marc -o marcxml $marc8_to_utf8 $input_files > $xml_file");
-}
-
-=over
-
-=item process_bibs(marc2bre_options)
-
-Starting with a set of MARC21XML records, these commands generate a set of
-SQL files suitable for loading into an Evergreen system.
-
-=back
-
-=cut
-sub process_bibs {
- my $marc2bre_options = shift;
-
- system("perl $script_dir/marc2bre.pl --marctype XML --tcn_dumpfile $tcn_dumpfile --db_user $db_user --db_host $db_host --db_pw $db_pw --db_name $db_name $marc2bre_options $xml_file > $bre_file 2> marc2bre.err");
- system("perl $script_dir/direct_ingest.pl $bre_file > $ingest_file 2> ingest.err");
- system("perl $script_dir/parallel_pg_loader.pl --output $loader_prefix -or bre -or mrd -or mfr -or mtfe -or mafe -or msfe -or mkfe -or msefe -a mrd -a mfr -a mtfe -a mafe -a msfe -a mkfe -a msefe < $ingest_file 2> loader.err");
-}
+++ /dev/null
---
--- PostgreSQL database dump
---
-
-SET client_encoding = 'UTF8';
-SET standard_conforming_strings = off;
-SET check_function_bodies = false;
-SET client_min_messages = warning;
-SET escape_string_warning = off;
-
-SET search_path = actor, pg_catalog;
-
---
--- Name: org_unit_type_id_seq; Type: SEQUENCE SET; Schema: actor; Owner: evergreen
---
-
-SELECT pg_catalog.setval('org_unit_type_id_seq', 100, true);
-
-
---
--- Data for Name: org_unit; Type: TABLE DATA; Schema: actor; Owner: evergreen
---
-
-COPY org_unit (id, parent_ou, ou_type, ill_address, holds_address, mailing_address, billing_address, shortname, name, email, phone, opac_visible) FROM stdin;
-115 102 3 \N \N \N \N HRSRH HRSRH Health Sciences Library t
-123 102 3 \N \N \N \N NEMHC Northeast Mental Health Centre \N \N t
-105 102 6 1 1 1 1 LUSYS Laurentian University t
-108 105 7 \N \N \N \N MEDIACEN Instructional Media Centre t
-103 105 7 1 1 1 1 OSUL J.N. Desmarais Library t
-107 105 7 \N \N \N \N SUDBURY University of Sudbury t
-104 105 7 1 1 1 1 HUNTINGTON Huntington College Library t
-117 105 7 \N \N \N \N MEDB Mining and the Environment Database t
-1 \N 1 1 1 1 1 CONIFER Conifer t
-102 1 2 1 1 1 1 LAURSYS Laurentian System t
-106 1 2 \N \N \N \N WINDSYS Windsor System t
-109 106 3 \N \N \N \N LEDDY Leddy Library t
-112 102 3 \N \N \N \N ARTGALL Art Gallery of Sudbury t
-113 102 3 \N \N \N \N CFOF Centre Franco-Ontarien de Folklore t
-116 102 3 \N \N \N \N SAH Sault Area Hospital t
-118 102 3 \N \N \N \N MNDM Mines Library, Willet Green Miller Centre t
-119 102 3 \N \N \N \N FALCON Xstrata Process Support Centre Library, Falconbridge t
-120 102 3 \N \N \N \N INCO Vale Inco t
-122 106 3 \N \N \N \N WINDLAQ Paul Martin Law Library t
-111 1 2 \N \N \N \N ALGOMASYS Algoma System \N \N t
-124 111 3 \N \N \N \N ALGOMA Algoma University, Wishart Library t
-125 1 2 \N \N \N \N OSM NOHIN \N \N t
-126 125 3 \N \N \N \N NOSMW Northern Ontario School of Medicine (West) \N \N t
-110 125 3 \N \N \N \N NOSME Northern Ontario School of Medicine (East) t
-114 102 6 \N \N \N \N HEARSTSYS Université de Hearst t
-127 114 7 \N \N \N \N HEARST Hearst, Bibliothèque Maurice-Saulnier \N \N t
-128 114 7 \N \N \N \N KAP Hearst Kapuskasing, Centre de Ressources \N \N t
-129 114 7 \N \N \N \N TIMMINS Hearst Timmins, Centre de Ressources \N \N t
-130 105 7 \N \N \N \N LUEDUC School of Education, Curriculum Resource Centre \N \N t
-131 105 7 \N \N \N \N LUMUSIC School of Education, Music Resource Centre \N \N t
-132 105 7 \N \N \N \N EDUCATION Laboratoire de didactiques, E.S.E. \N \N t
-\.
-
-
-
---
--- Data for Name: org_unit_type; Type: TABLE DATA; Schema: actor; Owner: evergreen
---
-
-COPY org_unit_type (id, name, opac_label, depth, parent, can_have_vols, can_have_users) FROM stdin;
-1 Consortium Everywhere 0 \N f f
-2 System Local Library System 1 1 f f
-4 Sub-lib This Specialized Library 3 3 t t
-5 Bookmobile Your Bookmobile 3 3 t t
-7 University-Library University Library 3 6 t t
-3 Branch This Branch 2 2 t t
-6 University University System 2 2 t t
-\.
-
-
---
--- PostgreSQL database dump complete
---
-
-SELECT SETVAL('actor.org_unit_id_seq', (SELECT MAX(id) FROM actor.org_unit));
+++ /dev/null
-#!/usr/bin/perl
-use warnings;
-use strict;
-
-=head1 Automated processing of Windsor system bibliographic records
-
-First we split the records into many smaller files (defined by $chunksize),
-then process a fraction of the records (defined by 1/$denominator) from
-across the set of files.
-
-=cut
-
-my $chunk_size = 1000;
-my $chunk_dir = "chunks";
-my $chunk_prefix = 'chunk_';
-my $denominator = 20;
-
-my $marc = 'windsor_bibs.marc';
-my $xml_file = 'windsor_bibs.xml';
-my $bre_file = 'bibs.bre';
-my $ingest_file = 'bibs.ingest';
-my $loader_prefix = 'windsor_load';
-my $tcn_dumpfile = 'tcn.dump';
-my $script_dir = '/home/lauadmin/Evergreen-trunk/Open-ILS/src/extras/import/';
-my $db_user = 'evergreen';
-my $db_pw = '';
-my $db_host = '';
-my $db_name = '';
-
-my $input_files;
-
-convert_to_marcxml("false");
-process_bibs("--tcnfield 001 --idfield 001");
-
-=over
-
-=item convert_to_marcxml(is_marc8)
-
-=back
-
-=cut
-sub convert_to_marcxml {
- my $is_marc8 = shift;
- my $marc8_to_utf8;
-
-=over
-
-Split the files up into chunks
-
-=back
-
-=cut
- if (!-d $chunk_dir) {
- mkdir($chunk_dir);
- }
-
- system("yaz-marcdump -C $chunk_size -s chunks/$chunk_prefix $marc > /dev/null");
-
-=over
-
-Convert selected sample of records to MARC21XML
-
-=back
-
-=cut
- my @files = glob("$chunk_dir/$chunk_prefix\*");
-
- foreach my $i (1..$denominator) {
- my $filenumber = sprintf("%07i", (scalar(@files) / $denominator * $i) - 1);
- $input_files .= "$chunk_dir/$chunk_prefix$filenumber ";
- }
- if ($is_marc8) {
- $marc8_to_utf8 = '-f MARC-8 -t UTF-8 -l 9=97';
- }
- system("yaz-marcdump -i marc -o marcxml $marc8_to_utf8 $input_files > $xml_file");
-}
-
-=over
-
-=item process_bibs(marc2bre_options)
-
-Starting with a set of MARC21XML records, these commands generate a set of
-SQL files suitable for loading into an Evergreen system.
-
-=back
-
-=cut
-sub process_bibs {
- my $marc2bre_options = shift;
-
- system("perl $script_dir/windsor_marc2bre.pl --marctype XML --tcn_dumpfile $tcn_dumpfile --db_user $db_user --db_host $db_host --db_pw $db_pw --db_name $db_name $marc2bre_options $xml_file > $bre_file 2> marc2bre.err");
- system("perl $script_dir/direct_ingest.pl $bre_file > $ingest_file 2> ingest.err");
- system("perl $script_dir/parallel_pg_loader.pl --output $loader_prefix -or bre -or mrd -or mfr -or mtfe -or mafe -or msfe -or mkfe -or msefe -a mrd -a mfr -a mtfe -a mafe -a msfe -a mkfe -a msefe < $ingest_file 2> loader.err");
-}
--- /dev/null
+#!/usr/bin/perl
+use strict;
+use warnings;
+
+=head1 Generate a set of staff and users for testing Evergreen
+
+=over
+
+=item get_org_unit()
+
+Map user IDs to org_units for permissions
+
+=back
+
+=cut
+
+sub get_org_unit {
+ my $id = shift;
+ if ($id <= 10) {
+ return 105; # OSUL
+ } elsif ($id <=20) {
+ return 106; # WINDSYS
+ } elsif ($id <=30) {
+ return 111; # ALGOMASYS
+ } elsif ($id <=40) {
+ return 125; # NOHIN
+ }
+}
+
+my $password = 'demo123';
+
+my @profiles = ( 1, 4, 5, 10 );
+
+my $profile_info = {
+ '1' => 'user',
+ '4' => 'cat',
+ '5' => 'circ',
+ '10' => 'admin',
+};
+
+my $sql = "BEGIN;\n";
+
+foreach my $i (1..40) {
+ foreach my $profile (@profiles) {
+ my $twodigit = sprintf('%02d', $i);
+ my $barcode = '1' . ($profile == 10 ? '0' : $profile) . $twodigit;
+ my $usrname = $profile_info->{$profile . ""} . $i;
+ my $family_name = ucfirst($usrname);
+ my $org_unit = get_org_unit($i);
+ $sql .= <<HERE;
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES ($profile, '$usrname', '$password', 3, 'Other ID value', 'Dummy', '$family_name', $org_unit);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), $barcode);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '$barcode Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), $org_unit);
+HERE
+ }
+}
+
+$sql .= "SELECT SETVAL('actor.usr_id_seq', (SELECT MAX(id) FROM actor.usr));\n";
+$sql .= "SELECT SETVAL('actor.usr_address_id_seq', (SELECT MAX(id) FROM actor.usr_address));\n";
+$sql .= "SELECT SETVAL('actor.card_id_seq', (SELECT MAX(id) FROM actor.card));\n";
+
+print $sql;
+
+
--- /dev/null
+BEGIN;
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user1', 'demo123', 3, 'Other ID value', 'Dummy', 'User1', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1101);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1101 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat1', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat1', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1401);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1401 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ1', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ1', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1501);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1501 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin1', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin1', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1001);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1001 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user2', 'demo123', 3, 'Other ID value', 'Dummy', 'User2', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1102);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1102 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat2', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat2', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1402);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1402 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ2', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ2', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1502);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1502 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin2', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin2', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1002);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1002 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user3', 'demo123', 3, 'Other ID value', 'Dummy', 'User3', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1103);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1103 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat3', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat3', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1403);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1403 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ3', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ3', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1503);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1503 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin3', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin3', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1003);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1003 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user4', 'demo123', 3, 'Other ID value', 'Dummy', 'User4', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1104);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1104 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat4', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat4', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1404);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1404 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ4', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ4', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1504);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1504 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin4', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin4', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1004);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1004 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user5', 'demo123', 3, 'Other ID value', 'Dummy', 'User5', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1105);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1105 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat5', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat5', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1405);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1405 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ5', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ5', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1505);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1505 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin5', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin5', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1005);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1005 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user6', 'demo123', 3, 'Other ID value', 'Dummy', 'User6', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1106);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1106 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat6', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat6', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1406);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1406 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ6', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ6', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1506);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1506 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin6', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin6', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1006);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1006 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user7', 'demo123', 3, 'Other ID value', 'Dummy', 'User7', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1107);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1107 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat7', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat7', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1407);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1407 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ7', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ7', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1507);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1507 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin7', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin7', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1007);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1007 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user8', 'demo123', 3, 'Other ID value', 'Dummy', 'User8', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1108);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1108 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat8', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat8', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1408);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1408 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ8', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ8', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1508);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1508 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin8', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin8', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1008);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1008 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user9', 'demo123', 3, 'Other ID value', 'Dummy', 'User9', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1109);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1109 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat9', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat9', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1409);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1409 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ9', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ9', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1509);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1509 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin9', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin9', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1009);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1009 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user10', 'demo123', 3, 'Other ID value', 'Dummy', 'User10', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1110);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1110 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat10', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat10', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1410);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1410 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ10', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ10', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1510);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1510 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin10', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin10', 105);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1010);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1010 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 105);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user11', 'demo123', 3, 'Other ID value', 'Dummy', 'User11', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1111);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1111 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat11', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat11', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1411);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1411 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ11', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ11', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1511);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1511 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin11', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin11', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1011);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1011 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user12', 'demo123', 3, 'Other ID value', 'Dummy', 'User12', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1112);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1112 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat12', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat12', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1412);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1412 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ12', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ12', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1512);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1512 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin12', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin12', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1012);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1012 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user13', 'demo123', 3, 'Other ID value', 'Dummy', 'User13', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1113);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1113 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat13', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat13', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1413);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1413 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ13', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ13', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1513);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1513 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin13', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin13', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1013);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1013 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user14', 'demo123', 3, 'Other ID value', 'Dummy', 'User14', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1114);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1114 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat14', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat14', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1414);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1414 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ14', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ14', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1514);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1514 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin14', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin14', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1014);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1014 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user15', 'demo123', 3, 'Other ID value', 'Dummy', 'User15', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1115);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1115 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat15', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat15', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1415);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1415 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ15', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ15', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1515);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1515 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin15', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin15', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1015);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1015 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user16', 'demo123', 3, 'Other ID value', 'Dummy', 'User16', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1116);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1116 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat16', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat16', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1416);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1416 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ16', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ16', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1516);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1516 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin16', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin16', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1016);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1016 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user17', 'demo123', 3, 'Other ID value', 'Dummy', 'User17', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1117);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1117 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat17', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat17', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1417);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1417 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ17', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ17', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1517);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1517 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin17', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin17', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1017);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1017 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user18', 'demo123', 3, 'Other ID value', 'Dummy', 'User18', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1118);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1118 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat18', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat18', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1418);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1418 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ18', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ18', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1518);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1518 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin18', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin18', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1018);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1018 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user19', 'demo123', 3, 'Other ID value', 'Dummy', 'User19', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1119);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1119 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat19', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat19', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1419);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1419 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ19', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ19', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1519);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1519 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin19', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin19', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1019);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1019 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user20', 'demo123', 3, 'Other ID value', 'Dummy', 'User20', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1120);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1120 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat20', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat20', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1420);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1420 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ20', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ20', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1520);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1520 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin20', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin20', 106);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1020);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1020 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 106);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user21', 'demo123', 3, 'Other ID value', 'Dummy', 'User21', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1121);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1121 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat21', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat21', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1421);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1421 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ21', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ21', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1521);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1521 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin21', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin21', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1021);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1021 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user22', 'demo123', 3, 'Other ID value', 'Dummy', 'User22', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1122);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1122 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat22', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat22', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1422);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1422 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ22', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ22', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1522);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1522 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin22', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin22', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1022);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1022 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user23', 'demo123', 3, 'Other ID value', 'Dummy', 'User23', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1123);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1123 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat23', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat23', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1423);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1423 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ23', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ23', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1523);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1523 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin23', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin23', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1023);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1023 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user24', 'demo123', 3, 'Other ID value', 'Dummy', 'User24', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1124);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1124 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat24', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat24', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1424);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1424 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ24', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ24', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1524);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1524 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin24', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin24', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1024);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1024 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user25', 'demo123', 3, 'Other ID value', 'Dummy', 'User25', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1125);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1125 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat25', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat25', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1425);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1425 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ25', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ25', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1525);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1525 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin25', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin25', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1025);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1025 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user26', 'demo123', 3, 'Other ID value', 'Dummy', 'User26', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1126);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1126 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat26', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat26', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1426);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1426 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ26', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ26', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1526);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1526 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin26', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin26', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1026);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1026 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user27', 'demo123', 3, 'Other ID value', 'Dummy', 'User27', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1127);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1127 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat27', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat27', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1427);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1427 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ27', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ27', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1527);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1527 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin27', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin27', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1027);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1027 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user28', 'demo123', 3, 'Other ID value', 'Dummy', 'User28', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1128);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1128 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat28', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat28', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1428);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1428 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ28', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ28', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1528);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1528 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin28', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin28', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1028);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1028 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user29', 'demo123', 3, 'Other ID value', 'Dummy', 'User29', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1129);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1129 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat29', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat29', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1429);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1429 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ29', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ29', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1529);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1529 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin29', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin29', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1029);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1029 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user30', 'demo123', 3, 'Other ID value', 'Dummy', 'User30', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1130);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1130 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat30', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat30', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1430);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1430 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ30', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ30', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1530);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1530 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin30', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin30', 111);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1030);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1030 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 111);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user31', 'demo123', 3, 'Other ID value', 'Dummy', 'User31', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1131);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1131 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat31', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat31', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1431);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1431 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ31', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ31', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1531);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1531 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin31', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin31', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1031);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1031 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user32', 'demo123', 3, 'Other ID value', 'Dummy', 'User32', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1132);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1132 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat32', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat32', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1432);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1432 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ32', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ32', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1532);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1532 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin32', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin32', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1032);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1032 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user33', 'demo123', 3, 'Other ID value', 'Dummy', 'User33', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1133);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1133 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat33', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat33', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1433);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1433 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ33', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ33', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1533);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1533 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin33', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin33', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1033);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1033 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user34', 'demo123', 3, 'Other ID value', 'Dummy', 'User34', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1134);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1134 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat34', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat34', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1434);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1434 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ34', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ34', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1534);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1534 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin34', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin34', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1034);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1034 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user35', 'demo123', 3, 'Other ID value', 'Dummy', 'User35', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1135);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1135 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat35', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat35', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1435);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1435 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ35', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ35', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1535);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1535 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin35', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin35', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1035);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1035 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user36', 'demo123', 3, 'Other ID value', 'Dummy', 'User36', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1136);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1136 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat36', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat36', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1436);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1436 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ36', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ36', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1536);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1536 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin36', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin36', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1036);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1036 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user37', 'demo123', 3, 'Other ID value', 'Dummy', 'User37', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1137);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1137 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat37', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat37', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1437);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1437 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ37', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ37', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1537);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1537 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin37', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin37', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1037);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1037 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user38', 'demo123', 3, 'Other ID value', 'Dummy', 'User38', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1138);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1138 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat38', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat38', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1438);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1438 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ38', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ38', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1538);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1538 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin38', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin38', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1038);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1038 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user39', 'demo123', 3, 'Other ID value', 'Dummy', 'User39', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1139);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1139 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat39', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat39', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1439);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1439 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ39', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ39', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1539);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1539 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin39', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin39', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1039);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1039 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (1, 'user40', 'demo123', 3, 'Other ID value', 'Dummy', 'User40', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1140);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1140 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (4, 'cat40', 'demo123', 3, 'Other ID value', 'Dummy', 'Cat40', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1440);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1440 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (5, 'circ40', 'demo123', 3, 'Other ID value', 'Dummy', 'Circ40', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1540);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1540 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+INSERT INTO actor.usr (profile, usrname, passwd, ident_type, ident_value, first_given_name, family_name, home_ou) VALUES (10, 'admin40', 'demo123', 3, 'Other ID value', 'Dummy', 'Admin40', 125);
+INSERT INTO actor.card (usr, barcode) VALUES (CURRVAL('actor.usr_id_seq'), 1040);
+INSERT INTO actor.usr_address (usr, street1, city, state, country, post_code) VALUES (CURRVAL('actor.usr_id_seq'), '1040 Easy Street', 'Easy Town', 'ON', 'Canada', '90210');
+UPDATE actor.usr
+ SET card = CURRVAL('actor.card_id_seq'), mailing_address = CURRVAL('actor.usr_address_id_seq')
+ WHERE id = CURRVAL('actor.usr_id_seq');
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (CURRVAL('actor.usr_id_seq'), 125);
+SELECT SETVAL('actor.usr_id_seq', (SELECT MAX(id) FROM actor.usr));
+SELECT SETVAL('actor.usr_address_id_seq', (SELECT MAX(id) FROM actor.usr_address));
+SELECT SETVAL('actor.card_id_seq', (SELECT MAX(id) FROM actor.card));
--- /dev/null
+BEGIN;
+
+-- Map libraries
+UPDATE staging_items
+ SET owning_lib = 'OSUL'
+ WHERE location = 'DESMARAIS';
+
+UPDATE staging_items
+ SET owning_lib = 'OSM', location = 'WWW'
+ WHERE location = 'HIRC-WWW';
+
+UPDATE staging_items
+ SET owning_lib = 'NOSME'
+ WHERE location IN ('HIRCE-AV', 'HIRCE-BOOK', 'HIRCE-CIRC', 'HIRCE-PER', 'HIRCE-REF');
+
+UPDATE staging_items
+ SET owning_lib = 'NOSMW'
+ WHERE location IN ('HIRCW-AV', 'HIRCW-BOOK', 'HIRCW-CIRC', 'HIRCW-PER', 'HIRCW-REF');
+
+UPDATE staging_items
+ SET owning_lib = 'OSM'
+ WHERE owning_lib = 'HIRC';
+
+UPDATE staging_items
+ SET owning_lib = 'KAP'
+ WHERE location IN (SELECT location FROM staging_items WHERE location LIKE 'HRSTK-%');
+
+UPDATE staging_items
+ SET owning_lib = 'TIMMINS'
+ WHERE location IN (SELECT location FROM staging_items WHERE location LIKE 'HRSTT-%');
+
+UPDATE staging_items
+ SET owning_lib = 'SAH'
+ WHERE location = 'NEORCC';
+
+-- Map locations
+UPDATE staging_items
+ SET location = 'AV'
+ WHERE location IN ('HIRCE-AV', 'HIRCW-AV');
+
+UPDATE staging_items
+ SET location = 'BOOK'
+ WHERE location IN ('HIRCE-BOOK', 'HIRCW-BOOK');
+
+UPDATE staging_items
+ SET location = 'CIRC'
+ WHERE location IN ('HIRCE-CIRC', 'HIRCW-CIRC');
+
+UPDATE staging_items
+ SET location = 'PER'
+ WHERE location IN ('HIRCE-PER', 'HIRCW-PER');
+
+UPDATE staging_items
+ SET location = 'REF'
+ WHERE location IN ('HIRCE-REF', 'HIRCW-REF');
+
+UPDATE staging_items
+ SET location = 'DOC'
+ WHERE location IN ('HRST-DOC', 'HRSTK-DOC', 'HRSTT-DOC');
+
+UPDATE staging_items
+ SET location = 'EBOOK'
+ WHERE location IN ('HRST-EBOOK', 'HRSTK-EBOOK', 'HRSTT-EBOOK');
+
+UPDATE staging_items
+ SET location = 'PER'
+ WHERE location IN ('HRST-PER', 'HRSTK-PER', 'HRSTT-PER');
+
+UPDATE staging_items
+ SET location = 'PRET'
+ WHERE location IN ('HRST-PRET', 'HRSTK-PRET', 'HRSTT-PRET');
+
+UPDATE staging_items
+ SET location = 'REF'
+ WHERE location IN ('HRST-REF', 'HRSTK-REF', 'HRSTT-REF');
+
+UPDATE staging_items
+ SET location = 'VID'
+ WHERE location IN ('HRST-VID', 'HRSTK-VID', 'HRSTT-VID');
+
+-- First, we build shelving location
+INSERT INTO asset.copy_location (name, owning_lib)
+ SELECT DISTINCT l.location, ou.id
+ FROM staging_items l JOIN actor.org_unit ou
+ ON (l.owning_lib = ou.shortname)
+;
+
+-- Create circ modifiers for in-db circulation
+-- This is very, very crude but satisfies the FK constraints
+INSERT INTO config.circ_modifier (code, name, description, sip2_media_type, magnetic_media)
+ SELECT DISTINCT item_type as code,
+ item_type AS name,
+ LOWER(item_type) AS description,
+ '001' AS sip2_media_type,
+ FALSE AS magnetic_media
+ FROM staging_items
+ WHERE item_type NOT IN (SELECT code FROM config.circ_modifier);
+
+-- Import call numbers for bibrecord->library mappings
+INSERT INTO asset.call_number (creator,editor,record,label,owning_lib)
+ SELECT DISTINCT 1, 1, l.bibkey , l.callnum, ou.id
+ FROM staging_items l
+ JOIN biblio.record_entry b ON (l.bibkey = b.id)
+ JOIN actor.org_unit ou ON (l.owning_lib = ou.shortname);
+
+-- Import base copy data
+INSERT INTO asset.copy (
+ circ_lib, creator, editor, create_date, barcode,
+ status, location, loan_duration,
+ fine_level, circ_modifier, deposit, ref, call_number)
+ SELECT DISTINCT ou.id AS circ_lib,
+ 1 AS creator,
+ 1 AS editor,
+ l.createdate AS create_date,
+ l.barcode AS barcode,
+ CASE
+ WHEN l.location = 'BINDERY' THEN 2
+ WHEN l.location = 'CATALOGING' THEN 11
+ WHEN l.location = 'DISCARD' THEN 13
+ WHEN l.location = 'ILL' THEN 10
+ WHEN l.location = 'INPROCESS' THEN 5
+ WHEN l.location = 'LOST' THEN 3
+ WHEN l.location = 'LONGOVRDUE' THEN 4
+ WHEN l.location = 'MISSING' THEN 4
+ WHEN l.location = 'ON-ORDER' THEN 9
+ WHEN l.location = 'REPAIR' THEN 14
+ ELSE 0
+ END AS status,
+ cl.id AS location,
+ 2 AS loan_duration,
+ 2 AS fine_level,
+ CASE
+ WHEN l.item_type IN ('REFERENCE', 'DEPOSIT_BK', 'BOOKS') THEN 'BOOK'
+ WHEN l.item_type IN ('PERIODICALS') THEN 'PERIODICAL'
+ ELSE l.item_type
+ END AS circ_modifier,
+ CASE
+ WHEN l.item_type = 'DEPOSIT_BK' THEN TRUE
+ ELSE FALSE
+ END AS deposit,
+ CASE
+ WHEN l.item_type = 'REFERENCE' THEN TRUE
+ ELSE FALSE
+ END AS ref,
+ cn.id AS call_number
+ FROM staging_items l
+ JOIN actor.org_unit ou
+ ON (l.owning_lib = ou.shortname)
+ JOIN asset.copy_location cl
+ ON (ou.id = cl.owning_lib AND l.location = cl.name)
+ JOIN asset.call_number cn
+ ON (ou.id = cn.owning_lib AND l.bibkey = cn.record AND l.callnum = cn.label)
+;
+COMMIT;
--- /dev/null
+#!/usr/bin/perl
+use warnings;
+use strict;
+
+=head1 Automated processing of Laurentian system bibliographic records
+
+First we split the records into many smaller files (defined by $chunksize),
+then process a fraction of the records (defined by 1/$denominator) from
+across the set of files.
+
+=cut
+
+my $chunk_size = 1000;
+my $chunk_dir = "chunks";
+my $chunk_prefix = 'chunk_';
+my $denominator = 20;
+
+my $marc = 'bibs.marc';
+my $xml_file = 'bibs.xml';
+my $bre_file = 'bibs.bre';
+my $ingest_file = 'bibs.ingest';
+my $loader_prefix = 'lul_load';
+my $tcn_dumpfile = 'tcn.dump';
+my $script_dir = '/home/lauadmin/Evergreen/Open-ILS/src/extras/import/';
+my $db_user = 'evergreen';
+my $db_pw = '';
+my $db_host = '';
+my $db_name = 'evergreen';
+
+my $input_files;
+
+convert_to_marcxml("true");
+process_bibs("--tcnfield 935 --tcnsubfield a --idfield 935 --idsubfield a --trash 901 --trash 949");
+
+=over
+
+=item convert_to_marcxml(is_marc8)
+
+=back
+
+=cut
+sub convert_to_marcxml {
+ my $is_marc8 = shift;
+ my $marc8_to_utf8;
+
+=over
+
+Split the files up into chunks
+
+=back
+
+=cut
+ if (!-d $chunk_dir) {
+ mkdir($chunk_dir);
+ }
+
+ system("yaz-marcdump -C $chunk_size -s chunks/$chunk_prefix $marc > /dev/null");
+
+=over
+
+Convert selected sample of records to MARC21XML
+
+=back
+
+=cut
+ my @files = glob("$chunk_dir/$chunk_prefix\*");
+
+ foreach my $i (1..$denominator) {
+ my $filenumber = sprintf("%07i", (scalar(@files) / $denominator * $i) - 1);
+ $input_files .= "$chunk_dir/$chunk_prefix$filenumber ";
+ }
+ if ($is_marc8) {
+ $marc8_to_utf8 = '-f MARC-8 -t UTF-8 -l 9=97';
+ }
+ system("yaz-marcdump -i marc -o marcxml $marc8_to_utf8 $input_files > $xml_file");
+}
+
+=over
+
+=item process_bibs(marc2bre_options)
+
+Starting with a set of MARC21XML records, these commands generate a set of
+SQL files suitable for loading into an Evergreen system.
+
+=back
+
+=cut
+sub process_bibs {
+ my $marc2bre_options = shift;
+
+ system("perl $script_dir/marc2bre.pl --marctype XML --tcn_dumpfile $tcn_dumpfile --db_user $db_user --db_host $db_host --db_pw $db_pw --db_name $db_name $marc2bre_options $xml_file > $bre_file 2> marc2bre.err");
+ system("perl $script_dir/direct_ingest.pl $bre_file > $ingest_file 2> ingest.err");
+ system("perl $script_dir/parallel_pg_loader.pl --output $loader_prefix -or bre -or mrd -or mfr -or mtfe -or mafe -or msfe -or mkfe -or msefe -a mrd -a mfr -a mtfe -a mafe -a msfe -a mkfe -a msefe < $ingest_file 2> loader.err");
+}
--- /dev/null
+--
+-- PostgreSQL database dump
+--
+
+SET client_encoding = 'UTF8';
+SET standard_conforming_strings = off;
+SET check_function_bodies = false;
+SET client_min_messages = warning;
+SET escape_string_warning = off;
+
+SET search_path = actor, pg_catalog;
+
+--
+-- Name: org_unit_type_id_seq; Type: SEQUENCE SET; Schema: actor; Owner: evergreen
+--
+
+SELECT pg_catalog.setval('org_unit_type_id_seq', 100, true);
+
+
+--
+-- Data for Name: org_unit; Type: TABLE DATA; Schema: actor; Owner: evergreen
+--
+
+COPY org_unit (id, parent_ou, ou_type, ill_address, holds_address, mailing_address, billing_address, shortname, name, email, phone, opac_visible) FROM stdin;
+115 102 3 \N \N \N \N HRSRH HRSRH Health Sciences Library t
+123 102 3 \N \N \N \N NEMHC Northeast Mental Health Centre \N \N t
+105 102 6 1 1 1 1 LUSYS Laurentian University t
+108 105 7 \N \N \N \N MEDIACEN Instructional Media Centre t
+103 105 7 1 1 1 1 OSUL J.N. Desmarais Library t
+107 105 7 \N \N \N \N SUDBURY University of Sudbury t
+104 105 7 1 1 1 1 HUNTINGTON Huntington College Library t
+117 105 7 \N \N \N \N MEDB Mining and the Environment Database t
+1 \N 1 1 1 1 1 CONIFER Conifer t
+102 1 2 1 1 1 1 LAURSYS Laurentian System t
+106 1 2 \N \N \N \N WINDSYS Windsor System t
+109 106 3 \N \N \N \N LEDDY Leddy Library t
+112 102 3 \N \N \N \N ARTGALL Art Gallery of Sudbury t
+113 102 3 \N \N \N \N CFOF Centre Franco-Ontarien de Folklore t
+116 102 3 \N \N \N \N SAH Sault Area Hospital t
+118 102 3 \N \N \N \N MNDM Mines Library, Willet Green Miller Centre t
+119 102 3 \N \N \N \N FALCON Xstrata Process Support Centre Library, Falconbridge t
+120 102 3 \N \N \N \N INCO Vale Inco t
+122 106 3 \N \N \N \N WINDLAQ Paul Martin Law Library t
+111 1 2 \N \N \N \N ALGOMASYS Algoma System \N \N t
+124 111 3 \N \N \N \N ALGOMA Algoma University, Wishart Library t
+125 1 2 \N \N \N \N OSM NOHIN \N \N t
+126 125 3 \N \N \N \N NOSMW Northern Ontario School of Medicine (West) \N \N t
+110 125 3 \N \N \N \N NOSME Northern Ontario School of Medicine (East) t
+114 102 6 \N \N \N \N HEARSTSYS Université de Hearst t
+127 114 7 \N \N \N \N HEARST Hearst, Bibliothèque Maurice-Saulnier \N \N t
+128 114 7 \N \N \N \N KAP Hearst Kapuskasing, Centre de Ressources \N \N t
+129 114 7 \N \N \N \N TIMMINS Hearst Timmins, Centre de Ressources \N \N t
+130 105 7 \N \N \N \N LUEDUC School of Education, Curriculum Resource Centre \N \N t
+131 105 7 \N \N \N \N LUMUSIC School of Education, Music Resource Centre \N \N t
+132 105 7 \N \N \N \N EDUCATION Laboratoire de didactiques, E.S.E. \N \N t
+\.
+
+
+
+--
+-- Data for Name: org_unit_type; Type: TABLE DATA; Schema: actor; Owner: evergreen
+--
+
+COPY org_unit_type (id, name, opac_label, depth, parent, can_have_vols, can_have_users) FROM stdin;
+1 Consortium Everywhere 0 \N f f
+2 System Local Library System 1 1 f f
+4 Sub-lib This Specialized Library 3 3 t t
+5 Bookmobile Your Bookmobile 3 3 t t
+7 University-Library University Library 3 6 t t
+3 Branch This Branch 2 2 t t
+6 University University System 2 2 t t
+\.
+
+
+--
+-- PostgreSQL database dump complete
+--
+
+SELECT SETVAL('actor.org_unit_id_seq', (SELECT MAX(id) FROM actor.org_unit));
--- /dev/null
+#!/usr/bin/perl
+use warnings;
+use strict;
+
+=head1 Automated processing of Windsor system bibliographic records
+
+First we split the records into many smaller files (defined by $chunksize),
+then process a fraction of the records (defined by 1/$denominator) from
+across the set of files.
+
+=cut
+
+my $chunk_size = 1000;
+my $chunk_dir = "chunks";
+my $chunk_prefix = 'chunk_';
+my $denominator = 20;
+
+my $marc = 'windsor_bibs.marc';
+my $xml_file = 'windsor_bibs.xml';
+my $bre_file = 'bibs.bre';
+my $ingest_file = 'bibs.ingest';
+my $loader_prefix = 'windsor_load';
+my $tcn_dumpfile = 'tcn.dump';
+my $script_dir = '/home/lauadmin/Evergreen-trunk/Open-ILS/src/extras/import/';
+my $db_user = 'evergreen';
+my $db_pw = '';
+my $db_host = '';
+my $db_name = '';
+
+my $input_files;
+
+convert_to_marcxml("false");
+process_bibs("--tcnfield 001 --idfield 001");
+
+=over
+
+=item convert_to_marcxml(is_marc8)
+
+=back
+
+=cut
+sub convert_to_marcxml {
+ my $is_marc8 = shift;
+ my $marc8_to_utf8;
+
+=over
+
+Split the files up into chunks
+
+=back
+
+=cut
+ if (!-d $chunk_dir) {
+ mkdir($chunk_dir);
+ }
+
+ system("yaz-marcdump -C $chunk_size -s chunks/$chunk_prefix $marc > /dev/null");
+
+=over
+
+Convert selected sample of records to MARC21XML
+
+=back
+
+=cut
+ my @files = glob("$chunk_dir/$chunk_prefix\*");
+
+ foreach my $i (1..$denominator) {
+ my $filenumber = sprintf("%07i", (scalar(@files) / $denominator * $i) - 1);
+ $input_files .= "$chunk_dir/$chunk_prefix$filenumber ";
+ }
+ if ($is_marc8) {
+ $marc8_to_utf8 = '-f MARC-8 -t UTF-8 -l 9=97';
+ }
+ system("yaz-marcdump -i marc -o marcxml $marc8_to_utf8 $input_files > $xml_file");
+}
+
+=over
+
+=item process_bibs(marc2bre_options)
+
+Starting with a set of MARC21XML records, these commands generate a set of
+SQL files suitable for loading into an Evergreen system.
+
+=back
+
+=cut
+sub process_bibs {
+ my $marc2bre_options = shift;
+
+ system("perl $script_dir/windsor_marc2bre.pl --marctype XML --tcn_dumpfile $tcn_dumpfile --db_user $db_user --db_host $db_host --db_pw $db_pw --db_name $db_name $marc2bre_options $xml_file > $bre_file 2> marc2bre.err");
+ system("perl $script_dir/direct_ingest.pl $bre_file > $ingest_file 2> ingest.err");
+ system("perl $script_dir/parallel_pg_loader.pl --output $loader_prefix -or bre -or mrd -or mfr -or mtfe -or mafe -or msfe -or mkfe -or msefe -a mrd -a mfr -a mtfe -a mafe -a msfe -a mkfe -a msefe < $ingest_file 2> loader.err");
+}
--- /dev/null
+#!/bin/bash
+
+REMOTE_CANONICAL_SVN_DIR=svn://svn.open-ils.org/ILS-/branches/rel_1_4
+CANONICAL_SVN_DIR=/home/opensrf/Evergreen-rel_1_4/Open-ILS
+CANONICAL_EXPORT_DIR=/home/opensrf/rel_1_4_export
+REMOTE_SVN_DIR=svn://svn.open-ils.org/ILS-Contrib/conifer/trunk
+LOCAL_SVN_DIR=/home/opensrf/conifer-svn
+LOCAL_EXPORT_DIR=/home/opensrf/conifer-export
+INSTALL_DIR=/openils
+
+update_repository()
+{
+ # Create a copy of the Evergreen source if it doesn't exist
+ if [[ -d "$CANONICAL_SVN_DIR" ]]
+ then echo -n
+ else
+ svn co -q "$REMOTE_CANONICAL_SVN_DIR" "$CANONICAL_SVN_DIR"
+ fi
+
+ # Create a copy of the Conifer customized source if it doesn't exist
+ if [[ -d "$LOCAL_SVN_DIR" ]]
+ then echo -n
+ else
+ svn co -q "$REMOTE_SVN_DIR" "$LOCAL_SVN_DIR"
+ fi
+
+ # Update our copy of the Evergreen source
+ svn up -q "$CANONICAL_SVN_DIR"
+
+ # Update our copy of the Conifer customized files
+ svn up -q "$REMOTE_SVN_DIR"
+
+ # Export a clean copy of the SVN files
+ # We have to delete the target directory first
+ rm -fr "$LOCAL_EXPORT_DIR"
+ svn export -q "$LOCAL_SVN_DIR" "$LOCAL_EXPORT_DIR"
+ rm -fr "$CANONICAL_EXPORT_DIR"
+ svn export -q "$CANONICAL_SVN_DIR" "$CANONICAL_EXPORT_DIR"
+}
+
+copy_web_common()
+{
+ # Copy the impossible-to-be-harmful (really!) Web stuff in place
+ # Images
+ cp "$LOCAL_EXPORT_DIR"/web/opac/images/* "$INSTALL_DIR"/var/web/opac/images/.
+ # DTD files for replacement strings
+ cp "$LOCAL_EXPORT_DIR"/web/opac/locale/* "$INSTALL_DIR"/var/web/opac/locale/.
+}
+
+copy_opac_skins()
+{
+ SKINS=`cd "$LOCAL_EXPORT_DIR"/web/opac/skin; ls -1`
+
+ # For skins, create a _test variation of each
+ # Copy the default skin in place first, then copy our custom files over top
+ # We probably need to munge the links to point to default_test for rdetail.js (possibly others?)
+ for skin in $SKINS
+ do
+ cp -r "$CANONICAL_EXPORT_DIR"/web/opac/skin/default "$INSTALL_DIR"/var/web/opac/skin/"$skin"_test
+ cp -r "$LOCAL_EXPORT_DIR"/web/opac/skin/"$skin"/* "$INSTALL_DIR"/var/web/opac/skin/"$skin"_test/.
+ for munge_file in 'page_rdetail.xml'
+ do
+ sed -i -e 's/skin\/default\/js/skin\/default_test\/js/' "$INSTALL_DIR"/var/web/opac/skin/"$skin"_test/xml/"$munge_file"
+ done
+ done
+}
+
+# We'll need to restart Perl services after an update of circ rules
+copy_circ_rules()
+{
+ for circ_rule in `ls -1 "$LOCAL_EXPORT_DIR"/circ/*`
+ if cmp "$LOCAL_EXPORT_DIR"/circ/"$circ_rule" "$LOCAL_EG_DIR"/var/circ/"$circ_rule" &> /dev/null
+ then echo -n
+ else
+ cp --backup=numbered "$LOCAL_EXPORT_DIR"/circ/"$circ_rule" "$INSTALL_DIR"/var/circ/.
+ osrf_ctl.sh -a restart_perl > /dev/null
+ fi
+ done
+}
+
+# Not sure if we really want to do this in an automated fashion, because it would mean:
+# 1. restarting Perl and possibly C services to pick up the new configuration file(s)
+# 2. running autogen.sh to generate updates for fm_IDL.xml
+# And it could potentially break the whole thing.
+copy_conf_files()
+{
+ for conf in `ls -1 "$LOCAL_EXPORT_DIR"/conf/*`
+ if cmp "$LOCAL_EXPORT_DIR"/conf/"$conf" "$LOCAL_EG_DIR"/conf/"$conf" &> /dev/null
+ then echo -n
+ else
+ cp --backup=numbered "$LOCAL_EXPORT_DIR"/conf/"$conf" "$INSTALL_DIR"/conf/.
+ fi
+ done
+}
+
+# Here end the functions; let the fun begin
+
+update_repository
+copy_web_common
+copy_opac_skins
+copy_circ_rules
--- /dev/null
+<!ENTITY rdetail.extras.preview "Preview">
+<!ENTITY rdetail.extras.performer.notes "Performer or Participant Notes">
+++ /dev/null
-<!-- =================================================================
- Some generic stuff
- ================================================================= -->
-<!ENTITY lang.version "remote v1">
-<!ENTITY lang.description "English">
-<!ENTITY lang.author "PINES">
-<!ENTITY common.all "All">
-<!ENTITY common.currency "$">
-<!ENTITY common.language "Language: ">
-<!ENTITY common.name "Name">
-<!ENTITY common.none "None">
-<!ENTITY common.title "Title">
-<!ENTITY common.author "Author">
-<!ENTITY common.authors "Authors">
-<!ENTITY common.callnumber "Call Number">
-<!ENTITY common.edition "Edition">
-<!ENTITY common.subject "Subject">
-<!ENTITY common.series "Series">
-<!ENTITY common.keyword "Keyword">
-<!ENTITY common.type "Search Type">
-<!ENTITY common.isbn "ISBN">
-<!ENTITY common.format "Format">
-<!ENTITY common.loading "Loading..."> <!-- Message displayed while search results are loading -->
-<!ENTITY common.login "Login">
-<!ENTITY common.logout "Log Out">
-<!ENTITY common.physical "Physical Description">
-<!ENTITY common.pubdate "Publication Date">
-<!ENTITY common.publisher "Publisher">
-<!ENTITY common.results "Results">
-<!ENTITY common.select "Select">
-<!ENTITY common.status "Status">
-<!ENTITY common.at "at">
-<!ENTITY common.of "of">
-<!ENTITY common.no "No">
-<!ENTITY common.yes "Yes">
-<!ENTITY common.cancel "Cancel">
-<!ENTITY common.library "Library">
-<!ENTITY common.username "Username">
-<!ENTITY common.password "Password">
-<!ENTITY common.submit "Submit">
-<!ENTITY common.close "close">
-<!ENTITY common.and "and">
-<!ENTITY common.user_not_found "User not found">
-<!ENTITY opac.advanced.wizard.title "Advanced Search">
-<!ENTITY common.nowSearching "Now searching ">
-<!ENTITY common.ofAtLeast " of about ">
-<!ENTITY common.relevancy "Match Score: ">
-<!ENTITY common.tips "Tips:">
-<!ENTITY common.tips.tip1 "Click on a folder icon in the sidebar to access related quick searches">
-<!ENTITY common.tips.tip2 "If you don't find what you want try expanding your search using the range selector at the right of the search bar">
-<!ENTITY common.org.openAll "Expand All">
-<!ENTITY common.org.closeAll "Close All">
-<!ENTITY common.org.cancel "Cancel">
-<!ENTITY common.org.loading "Loading library selector...">
-<!ENTITY common.org.note "Tip:">
-<!ENTITY common.org.notetext "Click on a location's name to select it. Click on the folder icons to expand a section.">
-<!ENTITY opac.login.login "Login">
-<!ENTITY opac.basic "Basic Catalog (HTML only)">
-<!ENTITY common.password_criteria
- "The password must be at least 7 characters in length,
- contain at least one letter (a-z/A-Z),
- and contain at least one number.">
-<!ENTITY common.a2z.title "Title: A to Z">
-<!ENTITY common.z2a.title "Title: Z to A">
-<!ENTITY common.a2z.author "Author: A to Z">
-<!ENTITY common.z2a.author "Author: Z to A">
-<!ENTITY common.new2old.pubdate "Date: Newest to Oldest">
-<!ENTITY common.old2new.pubdate "Date: Oldest to Newest">
-
-<!ENTITY opac.style.reddish "Reddish">
-
-<!ENTITY holds.where_am_i
- "Holds lists are not as simple as
- 'first come, first served.' A complex matrix combining
- consideration of item ownership, patron home library, and item purchase
- date determines priorities for holds; the list is dynamic, changing
- with every hold placed. Therefore, any indication of a place in the
- holds list would be inaccurate. The holds system is designed to
- obtain a requested item in the fastest and most efficient way possible.
- Your library will contact you when you hold items become
- available.">
-
-<!ENTITY holds.advanced_options
- "If you wish to broaden the scope of your hold to include other
- versions of this title, select the formats that would be acceptable.
- The first available copy will be sent to you.">
-
-<!-- =================================================================
- Events and Permissions
- ================================================================= -->
-<!ENTITY ilsevent.0 "Operation Succeeded">
-<!ENTITY ilsevent.1000 "Login failed. The username or password entered was incorrect.">
-<!ENTITY ilsevent.1001 "Login session has timed out or does not exist">
-<!ENTITY ilsevent.1002 "User was not found in the database">
-<!ENTITY ilsevent.1200 "The given username already exists in the database">
-<!ENTITY ilsevent.5000 "Permission Denied">
-<!ENTITY ilsperm.CREATE_HOLD "User is not allowed to create holds for other users at this location">
-
-<!-- =================================================================
- common/pages
- ================================================================= -->
-
-<!ENTITY common.cn.loading "Loading Callnumber Page...">
-<!ENTITY common.cn.browsing "You are now browsing">
-<!ENTITY common.cn.previous "<< Previous Page">
-<!ENTITY common.cn.shelf "Shelf Browser">
-<!ENTITY common.cn.next "Next Page >>">
-
-<!ENTITY common.textsize.title "Text Size: ">
-<!ENTITY common.textsize.regular "Regular">
-<!ENTITY common.textsize.separator "/"> <!-- Regular / Large -->
-<!ENTITY common.textsize.large "Large">
-
-<!ENTITY home.js.disabled "JavaScript must be enabled in order for you to use the regular Evergreen Catalog.
-However, it seems JavaScript is either disabled or not supported by your browser.
-To use the regular Evergreen Catalog, enable JavaScript by changing your browser options, then
-<a style='color: blue; text-decoration: underline;' href='/'>try again</a>.
-<br/><br/>Alternatively, you can use the basic HTML-only catalog
-<a style='color: blue; text-decoration: underline;' href='/opac/extras/slimpac/start.html'>here</a>.">
-
-<!-- =================================================================
- MyOPAC bookbag page
- ================================================================= -->
-<!ENTITY myopac.delete.bookbag "This will remove the selected bookbag and all items contained within the bookbag.
-Are you sure you wish to continue?">
-<!ENTITY myopac.no.bookbags "You have not created any bookbags">
-<!ENTITY myopac.bookbags.title "My Bookbags">
-<!ENTITY myopac.bookbag.items "# Items">
-<!ENTITY myopac.bookbag.shared "Shared">
-<!ENTITY myopac.bookbag.toggle "Share / Hide">
-<!ENTITY myopac.bookbag.delete "Delete this bookbag?">
-<!ENTITY myopac.items "Items">
-<!ENTITY myopac.view "(View)">
-<!ENTITY myopac.atom.feed "ATOM Feed">
-<!ENTITY myopac.bookbag.hide "Hide">
-<!ENTITY myopac.delete "Delete">
-<!ENTITY myopac.bookbag.create "Create a new Bookbag">
-<!ENTITY myopac.bookbag.naming "Enter the name of the new Bookbag: ">
-<!ENTITY myopac.bookbag.share "Share this Bookbag">
-<!ENTITY myopac.bookbag.no.items "The selected bookbag contains no items...">
-<!ENTITY myopac.bookbag.remove "Remove this item?">
-<!ENTITY myopac.remove.link "remove">
-<!ENTITY myopac.publish.text 'Sharing a Bookbag means that the contents of the Bookbag will be visible to others.
-To see the public view of a shared Bookbag, click the "View" link in the
-"Shared" column of the Bookbag list at the top of this page.'>
-<!ENTITY myopac.item.confirm "Are you sure you wish to remove this bookbag item?">
-<!ENTITY myopac.publish.confirm "Sharing this bookbag will allow the contents
-of the bookbag to be seen by others. Are you sure you wish to share this bookbag?">
-<!ENTITY myopac.unpublish.confirm "Are you sure you wish to hide this bookbag?">
-<!ENTITY myopac.update.success "The Bookbag was successfully updated.">
-<!ENTITY myopac.updated.success "Bookbag successfully updated">
-<!ENTITY myopac.create.warning "Warning: Adding items to a bookbag creates a link between you and the
-items in the database. The contents of the bookbag are NOT publicly
-viewable unless the bookbag is shared. However, if you prefer not to
-have any link between your patron record and a particular item or items,
-we suggest that you do not place said items in a bookbag or that you
-avoid using bookbags all together. Thank you.">
-<!ENTITY myopac.describe.bookbags "Bookbags are...">
-
-<!-- =================================================================
- MyOPAC Checked Page
- ================================================================= -->
-<!ENTITY myopac.checked.out "Total items out:">
-<!ENTITY myopac.checked.overdue "Total items overdue:">
-<!ENTITY myopac.checked.renew "Renew Selected Items">
-<!ENTITY myopac.checked.renewing "Renewing...">
-<!ENTITY myopac.checked.renew.remaining "Renewals Remaining">
-<!ENTITY myopac.checked.noitems "You have no items checked out at this time">
-<!ENTITY myopac.checked.other.circ "Other Circulations">
-<!ENTITY myopac.checked.circ.lib "Circulating Library">
-<!ENTITY myopac.checked.item.type "Circulation Type">
-<!ENTITY myopac.checked.circ.time "Please return by ...">
-<!ENTITY myopac.checked.renew.success "item(s) successfully renewed">
-<!ENTITY myopac.checked.renew.confirm "Are you sure you wish to renew the selected item(s)?">
-<!ENTITY myopac.checked.renew.fail "The system is unable to renew the selected item at this time. This usually means the item is needed to fulfill a hold. Please see a librarian for further help.">
-<!ENTITY myopac.checked.renew.fail2 "Library policy prevents the renewal of this item at this time. Please see a librarian for further details.">
-
-<!-- =================================================================
- MyOPAC Fines Page
- ================================================================= -->
-<!ENTITY myopac.fines.title "Summary">
-<!ENTITY myopac.fines.owed "Total Owed">
-<!ENTITY myopac.fines.paid "Total Paid">
-<!ENTITY myopac.fines.balance "Balance Owed">
-<!ENTITY myopac.fines.status "Loading...">
-<!ENTITY myopac.fines.overdue "Overdue Materials">
-<!ENTITY myopac.fines.checkout "Checkout Date">
-<!ENTITY myopac.fines.due "Due Date">
-<!ENTITY myopac.fines.returned "Date Returned">
-<!ENTITY myopac.fines.accruing "(fines accruing)">
-<!ENTITY myopac.fines.other "Other Fees">
-<!ENTITY myopac.fines.time.start "Transaction Start Time">
-<!ENTITY myopac.fines.time.paid "Last Payment Time">
-<!ENTITY myopac.fines.owed.initial "Initial Amount Owed">
-<!ENTITY myopac.fines.paid.amount "Total Amount Paid">
-<!ENTITY myopac.fines.type "Billing Type">
-
-<!-- =================================================================
- MyOPAC Holds Page
- ================================================================= -->
-<!ENTITY myopac.holds.formats "Formats">
-<!ENTITY myopac.holds.location "Pickup Location">
-<!ENTITY myopac.holds.edit "Edit">
-<!ENTITY myopac.holds.status.none "You have no items on hold at this time">
-<!ENTITY myopac.holds.status.waiting "Waiting for copy">
-<!ENTITY myopac.holds.status.intransit "In Transit">
-<!ENTITY myopac.holds.status.available "Ready for Pickup">
-<!ENTITY myopac.holds.cancel "Cancel">
-<!ENTITY myopac.holds.verify "If you wish to cancel the selected hold, click OK, otherwise click Cancel.">
-<!ENTITY myopac.holds.freeze_selected "Suspend">
-<!ENTITY myopac.holds.thaw_selected "Activate">
-<!ENTITY myopac.holds.thaw_date_selected "Set Active Date">
-<!ENTITY myopac.holds.cancel_selected "Cancel">
-<!ENTITY myopac.holds.processing "Processing holds... This may take a moment.">
-<!ENTITY myopac.holds.actions 'Actions for selected holds'>
-<!ENTITY myopac.holds.cancel.confirm 'Are you sure you wish to cancel the selected holds?'>
-<!ENTITY myopac.holds.freeze.confirm 'Are you sure you wish to suspend the selected holds?
-If an item has already been selected to fulfill the hold, it will not be suspended'>
-<!ENTITY myopac.holds.thaw.confirm 'Are you sure you wish to activate the selected holds?'>
-<!ENTITY myopac.holds.thaw_date.confirm 'Are you sure you wish to change the activate date for the selected holds?'>
-<!ENTITY myopac.holds.freeze.select_thaw "Select an automatic activation date. If no date is chosen, the holds will remain suspended until they are manually activated.">
-
-<!ENTITY opac.holds.freeze "Suspend this hold">
-<!ENTITY opac.holds.freeze.help "A suspended hold will retain its place in the queue, but will not be fulfilled until it has been activated.">
-<!ENTITY opac.holds.freeze.thaw_date "Automatically activate hold on:">
-<!ENTITY opac.holds.expire_time "Expiration date">
-<!ENTITY myopac.holds.estimated_wait "Estimated Wait (days)">
-
-<!-- =================================================================
- MyOPAC Preferences Page
- ================================================================= -->
-<!ENTITY myopac.prefs.title "Preferences">
-<!ENTITY myopac.prefs.hits "Search hits per page">
-<!ENTITY myopac.prefs.font "Default Font Size">
-<!ENTITY myopac.prefs.font.regular "Regular Font">
-<!ENTITY myopac.prefs.font.large "Large Font">
-<!ENTITY myopac.prefs.holds.notify "Default Hold Notification Method">
-<!ENTITY myopac.prefs.holds.both "Use Phone and Email">
-<!ENTITY myopac.prefs.holds.phone "Use Phone Only">
-<!ENTITY myopac.prefs.holds.email "Use Email Only">
-<!ENTITY myopac.prefs.search.location "Default Search Location">
-<!ENTITY myopac.prefs.search.home "Always search my home library by default.">
-<!ENTITY myopac.prefs.search.range "Default Search Range">
-<!ENTITY myopac.prefs.save "Save Preference Changes">
-<!ENTITY myopac.prefs.save.success "Preferences successfully updated">
-<!ENTITY myopac.prefs.save.failed "Preferences update failed!">
-<!ENTITY myopac.prefs.help "This setting defines how you will be notified of holds that are ready to be picked up from the library.
-By default, holds will use the notification style you choose here.
-However, you will still have the option to change individual holds regardless of this setting.">
-<!ENTITY myopac.holds.unfrozen "Active">
-<!ENTITY myopac.holds.frozen.until "Activate on...">
-
-<!-- =================================================================
- MyOPAC Summary page
- ================================================================= -->
-<!ENTITY myopac.summary.expired "Your account expired on <span id='myopac.expired.date'/>!
-Please see a librarian to renew your account.">
-<!ENTITY myopac.summary.notes "* Staff Notes *">
-<!ENTITY myopac.summary.phone.day "Day Phone">
-<!ENTITY myopac.summary.phone.evening "Evening Phone">
-<!ENTITY myopac.summary.phone.other "Other Phone">
-<!ENTITY myopac.summary.change "Change">
-<!ENTITY myopac.summary.username.enter "Enter new username:">
-<!ENTITY myopac.summary.password.text "(not shown)">
-<!ENTITY myopac.summary.password.current "Enter current password:">
-<!ENTITY myopac.summary.password.new "Enter new password:">
-<!ENTITY myopac.summary.password.reenter "Re-enter new password:">
-<!ENTITY myopac.summary.email "Email Address">
-<!ENTITY myopac.summary.email.new "Enter new email address:">
-<!ENTITY myopac.summary.id.primary "Primary Identification">
-<!ENTITY myopac.summary.barcode "Active Barcode">
-<!ENTITY myopac.summary.home "Home Library">
-<!ENTITY myopac.summary.genesis "Account Creation Date">
-<!ENTITY myopac.summary.addresses "Addresses">
-<!ENTITY myopac.summary.addresses.pending "Pending Addresses">
-<!ENTITY myopac.summary.address.type "Address Type">
-<!ENTITY myopac.summary.address.street "Street">
-<!ENTITY myopac.summary.address.city "City">
-<!ENTITY myopac.summary.address.county "County">
-<!ENTITY myopac.summary.address.state "State">
-<!ENTITY myopac.summary.address.country "Country">
-<!ENTITY myopac.summary.address.zip "Zip">
-<!ENTITY myopac.summary.username.error "Please enter a username">
-<!ENTITY myopac.summary.username.dup "The requested username is not available. Please choose a different username.">
-<!ENTITY myopac.summary.username.success "Username successfully updated">
-<!ENTITY myopac.summary.username.failure "Username update failed">
-<!ENTITY myopac.summary.username.invalid "Username cannot contain spaces or have the same format as a barcode">
-<!ENTITY myopac.summary.email.error "Please enter a valid email address">
-<!ENTITY myopac.summary.email.success "Email address successfully updated">
-<!ENTITY myopac.summary.email.failed "Email address update failed">
-<!ENTITY myopac.summary.password.error "Passwords are empty or do not match">
-<!ENTITY myopac.summary.password.success "Password successfully updated">
-<!ENTITY myopac.summary.password.failure "Password update failed">
-
-<!-- =================================================================
- Advanced Search Page
- ================================================================= -->
-<!ENTITY opac.advanced.wizard.contains "Selected field contains the following words">
-<!ENTITY opac.advanced.wizard.nocontains "Selected field does <u>not</u> contain the following words">
-<!ENTITY opac.advanced.wizard.exact "Selected field contains the <u>exact</u> phrase">
-<!ENTITY opac.advanced.refined.title "Refined Advanced Search">
-<!ENTITY opac.advanced.refined.title_contains "Title contains the following words">
-<!ENTITY opac.advanced.refined.author_contains "Author contains the following words">
-<!ENTITY opac.advanced.refined.subject_contains "Subject contains the following words">
-<!ENTITY opac.advanced.refined.series_contains "Series contains the following words">
-<!ENTITY opac.advanced.refined.contains "Contains">
-<!ENTITY opac.advanced.refined.nocontains "Does not contain">
-<!ENTITY opac.advanced.refined.exact "Matches Exactly">
-<!ENTITY opac.advanced.marc.warning "For Librarians">
-<!ENTITY opac.advanced.marc.title "MARC Expert Search">
-<!ENTITY opac.advanced.marc.tag "MARC Tag">
-<!ENTITY opac.advanced.marc.ind1 "Indicator 1">
-<!ENTITY opac.advanced.marc.ind2 "Indicator 2">
-<!ENTITY opac.advanced.marc.subfield "Subfield">
-<!ENTITY opac.advanced.marc.value "Value">
-<!ENTITY opac.advanced.marc.addrow "Add a new row">
-<!ENTITY opac.advanced.quick.title "Quick Search">
-<!ENTITY opac.advanced.quick.isbn "ISBN">
-<!ENTITY opac.advanced.quick.issn "ISSN">
-<!ENTITY opac.advanced.quick.lccn "LCCN">
-<!ENTITY opac.advanced.quick.tcn "TCN"> <!-- title control number -->
-<!ENTITY opac.advanced.quick.barcode "Item Barcode">
-<!ENTITY opac.advanced.quick.cn "Call Number">
-<!ENTITY opac.advanced.copy_loc_filter "Shelving Location">
-
-<!-- ==========================================================
- MARC expert search
- ========================================================== -->
-<!ENTITY search.marc "MARC Expert Search">
-<!ENTITY search.marc.tag "Tag:">
-<!ENTITY search.marc.subfield "Subfield:">
-<!ENTITY search.marc.value "Value:">
-<!ENTITY search.marc.add.row "Add Row">
-
-<!-- ==========================================================
- Status bar
- ========================================================== -->
-
-<!ENTITY status.results "Including results for">
-
-<!-- ==========================================================
- Tips
- ========================================================== -->
-
-<!ENTITY tips.label "Tip:">
-
-<!-- =================================================================
- More generic stuff
- ================================================================= -->
-<!ENTITY opac.session_expiring "Your login session will timeout in 1 minute unless there is activity.">
-<!ENTITY opac.session_expired "Your login session has expired">
-<!ENTITY navigate.home "Home">
-<!ENTITY navigate.home.title "Go to the Home page">
-<!ENTITY opac.navigate.advanced "Advanced Search">
-<!ENTITY opac.navigate.advanced.title "Go to the Advanced Search Page">
-<!ENTITY navigate.myopac "My Account">
-<!ENTITY opac.navigate.myopac "My Account">
-<!ENTITY navigate.myopac.title "Go to My OPAC">
-<!ENTITY navigate.login "Log in">
-<!ENTITY navigate.login.title "Log in for personalized features">
-<!ENTITY navigate.logout "Log out">
-<!ENTITY navigate.logout.title "Log out">
-<!ENTITY opac.navigate.selectNewOrg "Choose a different library">
-<!ENTITY opac.navigate.selectOrg "Choose a library to search">
-<!ENTITY navigate.loggedinas "You are logged in as ">
-<!ENTITY navigate.loggedinas.title "Logged in as...">
-<!ENTITY navigate.titleGroupResults "My Search Results">
-<!ENTITY navigate.titleResults "My Title Results">
-<!ENTITY navigate.title.details "My Title Details">
-<!ENTITY navigate.record.details "Record Details">
-
-<!-- =================================================================
- Footer
- ================================================================= -->
-<!ENTITY footer.basic "Basic Catalog (HTML only)">
-<!ENTITY footer.find.library "Find a Library Near Me">
-<!ENTITY footer.find.url "http://www.georgialibraries.org/lib/directories/pineslibdir.html">
-<!ENTITY footer.help.url "http://open-ils.org/dokuwiki/doku.php?id=evergreen-user:opac_help">
-<!ENTITY footer.help "Help">
-<!ENTITY footer.library.url "http://www.georgialibraries.org/public/pines.html">
-<!ENTITY footer.library.about "About PINES">
-<!ENTITY footer.union.url "http://www.galileo.usg.edu/">
-<!ENTITY footer.union "GALILEO">
-<!ENTITY footer.copyright "Copyright © 2006-2008 Georgia Public Library Service">
-<!ENTITY footer.logo "Powered by"> <!-- Introduces the logo for the project -->
-
-<!-- =================================================================
- My OPAC
- ================================================================= -->
-<!ENTITY myopac.account "Account Summary">
-<!ENTITY myopac.checkouts "Items Checked Out">
-<!ENTITY myopac.holds "Items on Hold">
-<!ENTITY myopac.fines "Fines">
-<!ENTITY myopac.preferences "Account Preferences">
-<!ENTITY myopac.bookbags "My Bookbags">
-
-<!-- =================================================================
- Sidebar
- ================================================================= -->
-<!ENTITY sidebar.relevantSubjects.headerLabel "Relevant Subjects">
-<!ENTITY sidebar.relevantAuthors.headerLabel "Relevant Authors">
-<!ENTITY sidebar.relevantSeries.headerLabel "Relevant Series">
-<!ENTITY sidebar.relevantReviews.headerLabel "Reviews">
-<!ENTITY sidebar.quick.search "Quick Search">
-<!ENTITY sidebar.copy.not.found "No copy with the requested barcode was found">
-
-<!-- =================================================================
- Search formats
- ================================================================= -->
-<!ENTITY opac.search.books "Books">
-<!ENTITY opac.search.allFormats "All Formats">
-<!ENTITY opac.search.largePrint "Large Print Books">
-<!ENTITY opac.search.audioBooks "Audiobooks">
-<!ENTITY opac.search.videoRecordings "Video Recordings">
-<!ENTITY opac.search.music "Music">
-<!ENTITY opac.search.electronic "Electronic Resources">
-<!ENTITY opac.search.nowSearching "Now Searching">
-
-
-<!-- =================================================================
- Page Titles
- ================================================================= -->
-<!ENTITY opac.title.home "Evergreen Home">
-<!ENTITY opac.title.mresult "Evergreen Title Groups">
-<!ENTITY opac.title.rresult "Evergreen Titles">
-<!ENTITY opac.title.myopac "Evergreen My Account">
-<!ENTITY opac.title.rdetail "Evergreen Title Details">
-<!ENTITY opac.title.advanced "Evergreen Advanced Search">
-<!ENTITY opac.title.reqitems "Evergreen Request Items">
-<!ENTITY opac.title.cnbrowse "Evergreen Call Number Browse">
-
-
-<!ENTITY opac.holds.forMe "Place this hold for myself">
-<!ENTITY opac.holds.xulRecipient "Enter recipient barcode">
-<!ENTITY opac.holds.recipient "Recipient">
-<!ENTITY opac.holds.placeHold "Place Hold">
-<!ENTITY opac.holds.contactPhone "Contact telephone number">
-<!ENTITY opac.holds.contactEmail "Contact email address">
-<!ENTITY opac.holds.pickupLocation "Pickup location">
-<!ENTITY opac.holds.success "Hold was successfully placed">
-<!ENTITY opac.holds.failure "Hold was not successfully placed">
-<!-- =================================================================
- Advanced
- ================================================================= -->
-<!ENTITY advanced.search.title "Search Input">
-<!ENTITY advanced.add.row "Add Search Row">
-<!ENTITY advanced.search.submit "Submit Search">
-<!ENTITY advanced.search.reset "Reset Form">
-<!ENTITY advanced.search.filters "Search Filters">
-<!ENTITY advanced.item.form "Item Form">
-<!ENTITY advanced.item.type "Item Type">
-<!ENTITY advanced.link "Advanced">
-<!ENTITY advanced.basic.link "Basic">
-<!ENTITY advanced.literary.form "Literary Form">
-<!ENTITY advanced.non.fiction "Non Fiction">
-<!ENTITY advanced.fiction "Fiction">
-<!ENTITY advanced.language "Language">
-<!ENTITY advanced.audience "Audience">
-<!ENTITY advanced.adult "Adult">
-<!ENTITY advanced.juvenile "Juvenile">
-<!ENTITY advanced.general "General">
-<!ENTITY advanced.sort.criteria "Sort Criteria">
-<!ENTITY advanced.search.library "Search Library">
-<!ENTITY advanced.relevance "Relevance">
-<!ENTITY advanced.pubdate "Publication date">
-<!ENTITY advanced.sort.asc "Ascending / A to Z">
-<!ENTITY advanced.sort.desc "Descending / Z to A">
-<!ENTITY advanced.frbrize "Group Formats and Editions">
-<!ENTITY advanced.go "Go">
-<!ENTITY advanced.biblevel "Bib Level">
-<!ENTITY advanced.filter.pubyear "Publication Year">
-<!ENTITY advanced.filter.pubyear.equals "Is">
-<!ENTITY advanced.filter.pubyear.before "Before">
-<!ENTITY advanced.filter.pubyear.after "After">
-<!ENTITY advanced.filter.pubyear.between "Between">
-
-<!-- =================================================================
- Rdetail
- ================================================================= -->
-<!ENTITY rdetail.print "print these details">
-<!ENTITY rdetail.cn.barcode "Barcode">
-<!ENTITY rdetail.cn.location "Location">
-<!ENTITY rdetail.cn.hold.age "Age Hold Protection">
-<!ENTITY rdetail.cn.genesis "Create Date">
-<!ENTITY rdetail.cn.holdable "Holdable">
-<!ENTITY rdetail.cn.due "Due Date">
-<!ENTITY rdetail.cn.more "more info...">
-<!ENTITY rdetail.cn.less "less info">
-<!ENTITY rdetail.cn.hold "place hold">
-<!ENTITY rdetail.cn.disabled "- Disabled -">
-<!ENTITY rdetail.cn.note "Copy Note">
-<!ENTITY rdetail.cn.category "Copy Category">
-<!ENTITY rdetail.cn.print "Print Page">
-<!ENTITY rdetail.page.results "First results page">
-<!ENTITY rdetail.result "Result"> <!-- Result # &common.of; # -->
-<!ENTITY rdetail.start "Start">
-<!ENTITY rdetail.page.previous "Previous page">
-<!ENTITY rdetail.page.next "Next page">
-<!ENTITY rdetail.page.last "Last results page">
-<!ENTITY rdetail.end "End">
-<!ENTITY rdetail.more "More Actions...">
-<!ENTITY rdetail.bookbag.add "Add to bookbag">
-<!ENTITY rdetail.bookbag.create "Create a new bookbag">
-<!ENTITY rdetail.record.deleted "This record has been deleted from the database.
-We recommend that you remove this title from any bookbags it may have been added to.">
-<!ENTITY rdetail.none "(none)">
-<!ENTITY rdetail.bookbag.add.success "Item successfully added to bookbag">
-<!ENTITY rdetail.bookbag.name "Enter the name of the new bookbag">
-<!ENTITY rdetail.bookbag.create.success "Bookbag successfully created">
-<!ENTITY rdetail.detailMain.headerLabel "Record Summary">
-<!ENTITY rdetail.detailMain.subjects "Subjects">
-<!ENTITY rdetail.detailMain.abstract "Abstract">
-<!ENTITY rdetail.detailMain.viewMarc "View MARC">
-<!ENTITY rdetail.detailMain.hideMarc "Return to title details">
-<!ENTITY rdetail.author.search "Perform an author search">
-<!ENTITY rdetail.copyInfo.headerLabel "Copy Information">
-<!ENTITY rdetail.copyInfo.library "Library">
-<!ENTITY rdetail.copyInfo.callnumber "Callnumber">
-<!ENTITY rdetail.copyInfo.copylocation "Copy Location">
-<!ENTITY rdetail.copyInfo.local "View Copy Information for this location only">
-<!ENTITY rdetail.copyInfo.all "View copy information for all libraries">
-<!ENTITY rdetail.copyInfo.actions "Actions">
-<!ENTITY rdetail.copyInfo.print "Print Call Numbers for this library">
-<!ENTITY rdetail.copyInfo.details "Copy Details">
-<!ENTITY rdetail.copyInfo.browse "Browse Call Numbers">
-<!ENTITY rdetail.copyInfo.hold "Place Hold">
-<!ENTITY rdetail.extras.summary "Copy Summary">
-<!ENTITY rdetail.extras.browser "Shelf Browser">
-<!ENTITY rdetail.extras.reviews "Reviews">
-<!ENTITY rdetail.extras.toc "Table of Contents">
-<!ENTITY rdetail.extras.excerpt "Excerpt">
-<!ENTITY rdetail.extras.preview "Preview">
-<!ENTITY rdetail.extras.author.notes "Author Notes">
-<!ENTITY rdetail.extras.performer.notes "Performer or Participant Notes">
-<!ENTITY rdetail.extras.annotation "Annotation">
-<!ENTITY rdetail.extras.marc "MARC Record">
-<!ENTITY rdetail.extras.call.null "There are no call numbers for this item at this location.">
-<!ENTITY rdetail.extras.call.local "Local Call Numbers:">
-<!ENTITY rdetail.loading "Loading copy infomation...">
-<!ENTITY rdetail.noneAvailable " * There are no copies in this location">
-<!ENTITY rdetail.summary.online "Online Resources">
-
-<!ENTITY result.sort_by "Sort Results by Relevance">
-<!ENTITY result.sort_by.title "Sort Results by Title">
-<!ENTITY result.sort_by.author "Sort Results by Author">
-<!ENTITY result.sort_by.pubdate "Sort Results by Publication Date">
-
-<!ENTITY result.limit2avail "Limit to Available">
-<!ENTITY result.info.copies "Available copies / Total copies">
-<!ENTITY result.info.no.items "No items with the selected format were found in this location.">
-<!ENTITY result.info.format.items "Listed below are all items in the catalog with the chosen format.">
-<!ENTITY result.info.show "Show records for">
-
-<!ENTITY result.lowhits.few "Few hits were returned for your search.">
-<!ENTITY result.lowhits.zero "Zero hits were returned for your search.">
-<!ENTITY result.lowhits.did.you.mean "Maybe you meant:">
-<!ENTITY result.lowhits.formats "You will find more hits when searching all item formats:">
-<!ENTITY result.lowhits.formats.search "Search again with all formats?">
-<!ENTITY result.lowhits.related "You may also like to try these related searches:">
-<!ENTITY result.lowhits.expand "You may also wish to expand your search range to:">
-<!ENTITY result.lowhits.class "You can try searching the same terms by:">
-<!ENTITY result.lowhits.title "title">
-<!ENTITY result.lowhits.author "author">
-<!ENTITY result.lowhits.subject "subject">
-<!ENTITY result.lowhits.series "series">
-<!ENTITY result.lowhits.keyword "keyword">
-
-<!ENTITY result.table.keyword "View titles for this record">
-<!ENTITY result.table.author "Perform an Author Search">
-<!ENTITY result.googleBooks.browse "Browse in Google Books Search">
-
-<!ENTITY common.call.number.label "Call Number:">
-<!ENTITY common.isbn.label "ISBN:">
-<!ENTITY common.issn.label "ISSN:">
-<!ENTITY common.copy.barcode.label "Copy Barcode:">
-<!ENTITY common.hold.place "Place hold for my account">
-<!ENTITY common.hold.check "Checking for possibility of hold fulfillment...">
-<!ENTITY common.hold.create "Create / Edit a Hold">
-<!ENTITY common.hold.update "Update Hold">
-<!ENTITY common.hold.type.label "Hold Type:">
-<!ENTITY common.hold.volume "Volume Hold">
-<!ENTITY common.hold.copy "Copy Hold">
-<!ENTITY common.hold.advanced "Advanced Hold Options">
-<!ENTITY common.hold.delivery "Please select a physical location where your hold can be delivered.">
-<!ENTITY common.hold.exists "A hold already exists on the requested item.">
-<!ENTITY common.hold.exists.override "A hold already exists on the requested
-item. Would you like to create the hold anyway?">
-<!ENTITY common.hold.barred 'PATRON BARRED. Please see any notes in the
-"Staff Notes" section of your "My Account" page or contact your local library.'>
-<!ENTITY common.hold.item.invalid "This hold is no longer valid. It's likely that the
-target for the hold was deleted from the system. Please cancel this hold and
-place a new one.">
-<!ENTITY common.hold.patron.invalid "The patron barcode entered as the hold recipient is invalid.">
-<!ENTITY common.help "(Help)"> <!-- Was (??), perhaps change to a button or icon? -->
-<!ENTITY common.phone.format.help "The phone number does not have the correct format. The expected format is XXX-YYY-ZZZZ">
-<!ENTITY common.hold.failed "No items were found that could fulfill the requested holds.
-It's possible that choosing a different format will result in a successful hold.
-It is also possible that you have exceeded the number of allowable holds.
-For further information, please consult your local librarian.">
-<!ENTITY common.control.click "(control-click to select multiple formats)">
-<!ENTITY common.format.alternatives "Acceptable Alternative Formats:">
-<!ENTITY common.phone.format "(XXX-YYY-ZZZZ)">
-<!ENTITY common.phone.enable "Enable phone notifications for this hold?">
-<!ENTITY common.email.enable "Enable email notifications for this hold?">
-<!ENTITY common.email.none "(Patron has no configured email address)">
-<!ENTITY common.email.set "(See <a class='classic_link' id='holds.no_email.my_account'>My Account</a> for setting your email address)">
-<!ENTITY common.keywords.label "Keywords:">
-<!ENTITY common.physical.label "Physical Description:">
-<!ENTITY common.series.label "Series:">
-<!ENTITY common.subject.label "Subject:">
-<!ENTITY common.title.label "Title:">
-<!ENTITY common.author.label "Author:">
-<!ENTITY common.format.label "Format:">
-<!ENTITY library.select "Find results in">
-<!ENTITY library.select.label "Choose a different library...">
-<!ENTITY library.select.help "Choose a library to search">
-<!ENTITY login.username "Enter your username or library barcode">
-<!ENTITY login.password.change "Change Password">
-<!ENTITY login.first.time "This appears to be the first time you have logged in.
-You will need to change your password.">
-<!ENTITY login.password.current.enter "Enter your current password">
-<!ENTITY login.password.new.enter "Enter the new password">
-<!ENTITY login.password.new.reenter "Re-type the new password for verification">
-<!ENTITY login.password.update "Update Password">
-<!ENTITY login.password.nomatch "Passwords do not match">
-<!ENTITY login.password.success "Password successfully updated">
-<!ENTITY login.password.strength "The password provided is not strong enough.">
-<!ENTITY login.barcode.inactive "The barcode used to login is marked as inactive. Please contact your local library.">
-<!ENTITY login.account.inactive "This account has been deactivated. Please contact your local library.">
-<!ENTITY login.failed "Login failed. The username or password provided was not valid.
-Ensure Caps-Lock is off and try again or contact your local library.">
-<!ENTITY button.go "Go!">
-
-<!-- =================================================================
- Slimpac Simple Search
- ================================================================= -->
-<!ENTITY slimpac.language.select "Select language">
-
-<!ENTITY slimpac.start.title "Simple Search">
-<!ENTITY slimpac.start.nowSearching "Now searching: ">
-<!ENTITY slimpac.start.dynamic "Dynamic Catalog">
-
-<!-- =================================================================
- Slimpac Advanced Search
- ================================================================= -->
-<!ENTITY slimpac.advanced.language "Item Language">
-<!ENTITY slimpac.advanced.create_date "Record Creation Date">
-<!ENTITY slimpac.advanced.edit_date "Record Edit Date">
-
-<!ENTITY opac.image_provided "Image provided by">
-<!ENTITY vendor.name "Amazon">
-<!ENTITY vendor.base_link "http://amazon.com/dp/">
-
-<!-- =================================================================
- Selfcheck
- ================================================================= -->
-<!ENTITY selfck.staff_login_label "Staff login">
-<!ENTITY selfck.staff_login "Library barcode or username">
-<!ENTITY selfck.staff_pw "Password">
-<!ENTITY selfck.submit "Submit">
-<!ENTITY selfck.clear "Clear">
-<!ENTITY selfck.patron_barcode_label "Please scan your library barcode">
-<!ENTITY selfck.item_barcode_label "Please scan an item to checkout or renew:">
-<!ENTITY selfck.barcode "Barcode">
-<!ENTITY selfck.title "Title">
-<!ENTITY selfck.author "Author">
-<!ENTITY selfck.due_date "Due Date">
-<!ENTITY selfck.remaining "Renewals Remaining">
-<!ENTITY selfck.cotype "Type">
-<!ENTITY selfck.cotype_co "Checkout">
-<!ENTITY selfck.cotype_rn "Renewal">
-<!ENTITY selfck.done "Done">
-<!ENTITY selfck.welcome "Welcome">
-<!ENTITY selfck.printing "Printing Receipt...">
-
-<!-- event messages -->
-<!ENTITY selfck.event.co_success "Check out succeeded">
-<!ENTITY selfck.event.co_unknown "An unknown event has occurred">
-<!ENTITY selfck.event.dupe_barcode "This item has already been checked out during this session">
-<!ENTITY selfck.event.patron_not_found "The patron barcode was not found">
-<!ENTITY selfck.event.item_noncat "The requested item is not in the catalog">
-<!ENTITY selfck.event.item_nocirc "The requested item is not allowed to circulate">
-<!ENTITY selfck.event.already_out "The requested item is already checked out to another patron">
-<!ENTITY selfck.items_out "You checked out the following items">
-<!ENTITY selfck.org_hours "Hours of Operation">
-<!ENTITY selfck.org_phone "Library Phone Number">
-<!ENTITY selfck.day0 "Monday">
-<!ENTITY selfck.day1 "Tuesday">
-<!ENTITY selfck.day2 "Wednesday">
-<!ENTITY selfck.day3 "Thursday">
-<!ENTITY selfck.day4 "Friday">
-<!ENTITY selfck.day5 "Saturday">
-<!ENTITY selfck.day6 "Sunday">
-
--- /dev/null
+<!ENTITY rdetail.extras.preview "Preview">
+<!ENTITY rdetail.extras.performer.notes "Performer or Participant Notes">
--- /dev/null
+<!ENTITY rdetail.extras.preview "Preview">
+<!ENTITY rdetail.extras.performer.notes "Performer or Participant Notes">
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- Loads the environment -->
+<!--#include virtual="setenv.xml"-->
+
+<!DOCTYPE html PUBLIC
+ "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" [
+ <!--#include virtual="/opac/locale/${locale}/opac.dtd"-->
+ <!--#include virtual="/opac/locale/${locale}/opac_conifer.dtd"-->
+]>
+
+
+<html xmlns='http://www.w3.org/1999/xhtml'>
+ <!--#include virtual="header.xml"-->
+ <!--#if expr="$OILS_PAGE='index.xml'"-->
+ <!--#include virtual="home/index_body.xml"-->
+ <!--#else-->
+ <!--#include virtual="body.xml"-->
+ <!--#endif-->
+</html>
+
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- Loads the environment -->
+<!--#include virtual="setenv.xml"-->
+
+<!DOCTYPE html PUBLIC
+ "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" [
+ <!--#include virtual="/opac/locale/${locale}/opac.dtd"-->
+ <!--#include virtual="/opac/locale/${locale}/opac_conifer.dtd"-->
+]>
+
+
+<html xmlns='http://www.w3.org/1999/xhtml'>
+ <!--#include virtual="header.xml"-->
+ <!--#if expr="$OILS_PAGE='index.xml'"-->
+ <!--#include virtual="home/index_body.xml"-->
+ <!--#else-->
+ <!--#include virtual="body.xml"-->
+ <!--#endif-->
+</html>
+