hexsha
stringlengths
40
40
size
int64
5
1.05M
ext
stringclasses
98 values
lang
stringclasses
21 values
max_stars_repo_path
stringlengths
3
945
max_stars_repo_name
stringlengths
4
118
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
listlengths
1
10
max_stars_count
int64
1
368k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
3
945
max_issues_repo_name
stringlengths
4
118
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
listlengths
1
10
max_issues_count
int64
1
134k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
945
max_forks_repo_name
stringlengths
4
135
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
listlengths
1
10
max_forks_count
int64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
5
1.05M
avg_line_length
float64
1
1.03M
max_line_length
int64
2
1.03M
alphanum_fraction
float64
0
1
f0172d0fc69d85a2da2f03f4a401ed701e820bb2
6,144
py
Python
pythonium/orders/galaxy.py
cacrespo/pythonium
74cc5d4333212adfb6eedade8fcd8dfe86d221d5
[ "MIT" ]
null
null
null
pythonium/orders/galaxy.py
cacrespo/pythonium
74cc5d4333212adfb6eedade8fcd8dfe86d221d5
[ "MIT" ]
null
null
null
pythonium/orders/galaxy.py
cacrespo/pythonium
74cc5d4333212adfb6eedade8fcd8dfe86d221d5
[ "MIT" ]
null
null
null
import logging from itertools import groupby import attr import numpy as np from ..explosion import Explosion from .core import GalaxyOrder logger = logging.getLogger("game") @attr.s() class ProduceResources(GalaxyOrder): name = "produce_resources" def execute(self) -> None: for planet in self.galaxy.get_ocuped_planets(): self._produce_resources(planet) def _produce_resources(self, planet): dhappypoints = planet.dhappypoints if dhappypoints: planet.happypoints += dhappypoints logger.info( "Happypoints change", extra={ "turn": self.galaxy.turn, "player": planet.player, "planet": planet.id, "dhappypoints": dhappypoints, "happypoints": planet.happypoints, }, ) dmegacredits = planet.dmegacredits if dmegacredits: planet.megacredits += dmegacredits logger.info( "Megacredits change", extra={ "turn": self.galaxy.turn, "player": planet.player, "planet": planet.id, "dmegacredits": dmegacredits, "megacredits": planet.megacredits, }, ) dpythonium = planet.dpythonium if dpythonium: planet.pythonium += dpythonium logger.info( "Pythonium change", extra={ "turn": self.galaxy.turn, "player": planet.player, "planet": planet.id, "dpythonium": dpythonium, "pythonium": planet.pythonium, }, ) dclans = planet.dclans if dclans: planet.clans += dclans logger.info( "Population change", extra={ "turn": self.galaxy.turn, "player": planet.player, "planet": planet.id, "dclans": dclans, "clans": planet.clans, }, ) @attr.s() class ResolveShipsConflicts(GalaxyOrder): name = "resolve_ships_conflicts" tenacity: float = attr.ib() def execute(self) -> None: ships_in_conflict = self.galaxy.get_ships_conflicts() for ships in ships_in_conflict: self._resolve_ships_conflicts(ships) self.galaxy.remove_destroyed_ships() def _compute_winner(self, ships, total_attack): """ Due to the randomness of the fighting process, this method is not tested """ groups = groupby(ships, lambda s: s.player) max_score = 0 winner = None for player, player_ships in groups: player_attack = sum((s.attack for s in player_ships)) attack_fraction = player_attack / total_attack # Compute score probability distribution shape = 100 * attack_fraction score = np.random.normal(shape, self.tenacity) logger.info( "Score in conflict", extra={ "turn": self.galaxy.turn, "player": player, "player_attack": player_attack, "attack_fraction": attack_fraction, "score": score, }, ) if score > max_score: winner = player max_score = score logger.info( "Conflict resolved", extra={ "turn": self.galaxy.turn, "winner": winner, "max_score": max_score, "total_attack": total_attack, "total_ships": len(ships), }, ) return winner def _resolve_ships_conflicts(self, ships): total_attack = sum(s.attack for s in ships) winner = self._compute_winner(ships, total_attack) # Destroy defeated ships for ship in ships: if ship.player == winner: continue logger.info( "Explosion", extra={ "turn": self.galaxy.turn, "player": ship.player, "ship": ship.id, "ship_type": ship.type.name, "position": ship.position, }, ) self.galaxy.explosions.append( Explosion( ship=ship, ships_involved=len(ships), total_attack=total_attack, ) ) @attr.s() class ResolvePlanetsConflicts(GalaxyOrder): name = "resolve_planets_conflicts" def execute(self) -> None: planets_in_conflict = self.galaxy.get_planets_conflicts() for planet, ships in planets_in_conflict: if not sum((s.attack for s in ships)): continue self._resolve_planets_conflicts(planet, ships) def _resolve_planets_conflicts(self, planet, ships): enemies = {s.player for s in ships if s.player != planet.player} if not enemies: raise ValueError( "Ok, I don't know what's going on. This is not a conflict." ) if len(enemies) != 1: raise ValueError( "Run :meth:`resolve_ships_to_ship_conflict` first" ) winner = enemies.pop() # If is not of his own, the winner conquer the planet. if planet.player != winner: logger.info( "Planet conquered by force", extra={ "turn": self.galaxy.turn, "player": winner, "planet": planet.id, "clans": planet.clans, }, ) planet.player = winner planet.clans = 1 planet.mines = 0 planet.taxes = 0
30.415842
80
0.495605
508a5b3accfad360545517a6560b114076fe657e
420
html
HTML
docs/2 corinthians/11/21/index.html
mgwalker/kjv
307cd82835997b90a8c2ceaffb4d1e8e280fc5ec
[ "0BSD" ]
null
null
null
docs/2 corinthians/11/21/index.html
mgwalker/kjv
307cd82835997b90a8c2ceaffb4d1e8e280fc5ec
[ "0BSD" ]
null
null
null
docs/2 corinthians/11/21/index.html
mgwalker/kjv
307cd82835997b90a8c2ceaffb4d1e8e280fc5ec
[ "0BSD" ]
null
null
null
<html lang="en"> <head> <title>2 Corinthians 11:21</title> <link rel="stylesheet" href="../../../verse.css"> </head> <body> <div id="container"> <div id="wrapper"> <div id="metadata">2 Corinthians 11:21</div> <div id="verse">I speak as concerning reproach, as though we had been weak. Howbeit whereinsoever any is bold, (I speak foolishly,) I am bold also.</div> </div> </div> </body> </html>
30
159
0.628571
4a75aa7da48fc4d4b44371be74bc6386d4e5d2fb
1,006
cs
C#
src/NeoModules.Rest/Helpers/SwitcheoHelper.cs
Switcheo/NeoModules
96ce01a5d05e448bfcdde81e23910e6349a3780e
[ "MIT" ]
17
2018-03-19T03:55:12.000Z
2021-12-19T13:07:12.000Z
src/NeoModules.Rest/Helpers/SwitcheoHelper.cs
Switcheo/NeoModules
96ce01a5d05e448bfcdde81e23910e6349a3780e
[ "MIT" ]
26
2020-04-20T21:20:00.000Z
2021-06-25T15:36:38.000Z
src/NeoModules.Rest/Helpers/SwitcheoHelper.cs
Switcheo/NeoModules
96ce01a5d05e448bfcdde81e23910e6349a3780e
[ "MIT" ]
11
2018-03-24T04:37:45.000Z
2021-02-10T10:53:24.000Z
using Newtonsoft.Json; using Newtonsoft.Json.Linq; namespace NeoModules.Rest.Helpers { public static class SwitcheoHelper { public static string PrepareParametersRequest(string json) { var parameterHexString = Utils.ConvertStringToHex(json); var lengthHex = (parameterHexString.Length / 2).ToString("X2").PadLeft(2, '0'); var concatenatedString = lengthHex + parameterHexString; var serializedTransaction = "010001f0" + concatenatedString + "0000"; return serializedTransaction; } public static string AddTransactFields(string signableParams, string signature, string addressHash) { // adds the 'address' and 'signature' fields to the json JObject apiParams = JsonConvert.DeserializeObject<JObject>(signableParams); apiParams["address"] = addressHash; apiParams["signature"] = signature; return apiParams.ToString(); } } }
37.259259
107
0.654076
7191069d040955796c0b25ff7b4fef150f01f488
2,344
ts
TypeScript
web/frontend/src/app/pages/streams/store/stream-props/stream-props.effects.ts
epam/TimebaseWS
4e9fcc9216a237975022796272bf77c5ed188e9e
[ "Apache-2.0" ]
2
2021-11-30T08:29:34.000Z
2022-01-16T04:20:29.000Z
web/frontend/src/app/pages/streams/store/stream-props/stream-props.effects.ts
epam/TimebaseWS
4e9fcc9216a237975022796272bf77c5ed188e9e
[ "Apache-2.0" ]
1
2021-12-15T18:27:41.000Z
2021-12-15T18:27:41.000Z
web/frontend/src/app/pages/streams/store/stream-props/stream-props.effects.ts
epam/TimebaseWS
4e9fcc9216a237975022796272bf77c5ed188e9e
[ "Apache-2.0" ]
1
2021-07-04T14:21:06.000Z
2021-07-04T14:21:06.000Z
import { HttpClient } from '@angular/common/http'; import { Injectable } from '@angular/core'; import { Actions, Effect, ofType } from '@ngrx/effects'; import { Subject } from 'rxjs'; import { mergeMap, switchMap, takeUntil, tap } from 'rxjs/operators'; import { PropsModel } from '../../models/props.model'; import { TabModel } from '../../models/tab.model'; import * as TimelineBarActions from '../timeline-bar/timeline-bar.actions'; import * as StreamPropsActions from './stream-props.actions'; import { StreamPropsActionTypes } from './stream-props.actions'; import { TabsService } from '../../services/tabs.service'; @Injectable() export class StreamPropsEffects { private stop_subscription$ = new Subject(); private changed_props_state$ = new Subject(); constructor( private actions$: Actions, private httpClient: HttpClient, private tabsService: TabsService, ) { } @Effect() getProps = this.actions$ .pipe( ofType<StreamPropsActions.GetProps>(StreamPropsActionTypes.GET_PROPS), switchMap(() => this.tabsService.activeTabOfSimilarComponent()), switchMap((activeTab: TabModel) => { return this.httpClient .get<PropsModel>(`/${encodeURIComponent(activeTab.stream)}/options`) .pipe( takeUntil(this.stop_subscription$), mergeMap(resp => [new StreamPropsActions.SetProps({ props: resp || null})]), ); }), ); @Effect({dispatch: false}) stopSubscriptions = this.actions$ .pipe( ofType<StreamPropsActions.StopSubscriptions>(StreamPropsActionTypes.STOP_SUBSCRIPTIONS), tap(() => { this.stop_subscription$.next(true); this.stop_subscription$.complete(); this.stop_subscription$ = new Subject(); }), ); @Effect({dispatch: false}) changeStateProps = this.actions$ .pipe( ofType<StreamPropsActions.ChangeStateProps>(StreamPropsActionTypes.CHANGE_STATE_PROPS), tap(() => { this.changed_props_state$.next(true); this.changed_props_state$.complete(); this.changed_props_state$ = new Subject(); }), ); }
39.066667
94
0.607935
6b5e32e1e993e381c7aae91128eb25bb2a072bb4
1,612
html
HTML
docs/_posts/2008-08-06-geoip-hates-me-phail.html
cc-archive/labs
4597b018d7fbdfa81b2188047dd5e03ba626929f
[ "MIT" ]
12
2015-04-14T04:18:33.000Z
2019-08-30T09:28:20.000Z
docs/_posts/2008-08-06-geoip-hates-me-phail.html
cc-archive/labs
4597b018d7fbdfa81b2188047dd5e03ba626929f
[ "MIT" ]
5
2015-05-13T15:45:42.000Z
2021-02-19T21:26:39.000Z
docs/_posts/2008-08-06-geoip-hates-me-phail.html
cc-archive/labs
4597b018d7fbdfa81b2188047dd5e03ba626929f
[ "MIT" ]
16
2016-12-04T01:20:37.000Z
2019-10-20T15:04:34.000Z
--- layout: post title: GeoIP Hates Me ... phail. date: 2008-08-06 14:26:15.000000000 -04:00 categories: - Metrics - python - summer of code tags: - GeoIP - GSoC - IP - Metrics - python - summer of code status: publish type: post published: true meta: _edit_last: '16' author: login: ankitg email: '' display_name: ankitg first_name: '' last_name: '' --- <p>Not that I am expecting much trouble coding using the Geo-IP module, but trying to get it on to the system itself has me believing that this module is out to get me! First, mac OS X (Leopard) doesn't come with GCC installed (shocker!) and this module needs building, so I go to get it. GCC is in packaged in with the developers tool, which is about a 2 GB install and I can't hand-pick the components ... fail. So I go get myself darwin ports, and try that route. It installs, gives me the sweet *ding*, install complete sound and when I go to terminal and ... fail ... no such file or directory. So I give in to its terrorist demands and make room for the developers pack thinking I'll make up for it by actually using these tools. So I wait 19 minutes for it to complete installing, I check I have GCC [i686-apple-darwin9-gcc-4.0.1] ... happily I go and python setup.py build ... and what followed was not nice ... a screen full of Warnings and Errors and No Build. =(</p> <p>I am going to find another source and try again till it finally works!</p> <p>In other news, changing all my codes to methods and including append to file for results, looking to add file-list comparison as a feature. Coming soon to a GIT repository near you!</p>
52
977
0.735112
045d8e5dfa0d7372f07313b4d31711a462886b8a
4,585
java
Java
AcmeCourierSystem/src/view/ReportManagement.java
zkastl/AcmeCourierService
699ee7c17d32003a405f847b76312fe66eb8a797
[ "MIT" ]
null
null
null
AcmeCourierSystem/src/view/ReportManagement.java
zkastl/AcmeCourierService
699ee7c17d32003a405f847b76312fe66eb8a797
[ "MIT" ]
null
null
null
AcmeCourierSystem/src/view/ReportManagement.java
zkastl/AcmeCourierService
699ee7c17d32003a405f847b76312fe66eb8a797
[ "MIT" ]
null
null
null
package view; import java.awt.Container; import java.awt.Desktop; import java.awt.Font; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.nio.file.Files; import java.time.LocalDate; import java.time.LocalDateTime; import javax.swing.JButton; import javax.swing.JComboBox; import javax.swing.JLabel; import com.github.lgooddatepicker.components.DatePicker; import main.CourierSystem; import model.Bill; import model.Client; import model.ClientReport; import model.CourierReport; import model.Employee; import model.EmployeeRole; import model.ReportType; import net.miginfocom.swing.MigLayout; public class ReportManagement extends Container { private JComboBox subject = new JComboBox(); JComboBox<ReportType> report = new JComboBox<ReportType>(ReportType.values()); private DatePicker startDate; private DatePicker endDate; public ReportManagement() { setLayout(new MigLayout("", "[grow][][][5%][][][grow]", "[5%][][15%][][5%][][5%][]")); JLabel lblDeliveryManagment = new JLabel("Delivery Managment"); lblDeliveryManagment.setFont(new Font("Tahoma", Font.BOLD, 16)); add(lblDeliveryManagment, "cell 0 1 7 1,alignx center"); JLabel lblReport = new JLabel("Report:"); add(lblReport, "cell 1 3,alignx trailing"); report.addActionListener(new reportChangeListener()); report.setSelectedIndex(0); add(report, "cell 2 3,alignx left"); JLabel lblStartDate = new JLabel("Start Date:"); add(lblStartDate, "cell 4 3,alignx trailing"); JLabel lblSubject = new JLabel("Subject:"); add(lblSubject, "cell 1 5,alignx trailing"); add(subject, "cell 2 5,alignx left"); startDate = new DatePicker(); startDate.setDate(LocalDate.now().minusDays(6)); add(startDate, "cell 5 3,alignx left"); JLabel lblEndDate = new JLabel("End Date:"); add(lblEndDate, "cell 4 5,alignx trailing"); endDate = new DatePicker(); endDate.setDate(LocalDate.now()); add(endDate, "cell 5 5,alignx left"); JButton btnGenerate = new JButton("Generate Report"); btnGenerate.addActionListener(new generateReportListener()); add(btnGenerate, "cell 0 7 7 1,alignx center"); } private class reportChangeListener implements ActionListener { @Override public void actionPerformed(ActionEvent e) { subject.removeAllItems(); switch ((ReportType) report.getSelectedItem()) { case Bill: case CompanyPerformance: subject.addItem("All Clients"); for (Client client : CourierSystem.Clients.values()) { subject.addItem(client); } break; case CourierPerformance: subject.addItem("All Couriers"); for (Employee employee : CourierSystem.Employees.values()) if (employee.role == EmployeeRole.Courier) { subject.addItem(employee); } break; default: break; } } } private class generateReportListener implements ActionListener { @Override public void actionPerformed(ActionEvent e) { try { String fileName = report.getSelectedItem().toString() + Integer.toString(LocalDateTime.now().hashCode()); File invoice = Files.createTempFile(fileName, ".csv").toFile(); FileWriter invoiceWriter = new FileWriter(invoice); switch ((ReportType) report.getSelectedItem()) { case Bill: invoiceWriter.write(subject.getSelectedItem().getClass() == String.class ? Bill.generateBill(startDate.getDate(), endDate.getDate()) : Bill.generateBill((Client) subject.getSelectedItem(), startDate.getDate(), endDate.getDate())); break; case CompanyPerformance: invoiceWriter.write(subject.getSelectedItem().getClass() == String.class ? ClientReport.generateClientReport(startDate.getDate(), endDate.getDate()) : ClientReport.generateClientReport((Client) subject.getSelectedItem(), startDate.getDate(), endDate.getDate())); break; case CourierPerformance: invoiceWriter.write(subject.getSelectedItem().getClass() == String.class ? CourierReport.generateCourierReport(startDate.getDate(), endDate.getDate()) : CourierReport.generateCourierReport((Employee) subject.getSelectedItem(), startDate.getDate(), endDate.getDate())); break; default: break; } invoice.deleteOnExit(); invoiceWriter.close(); Desktop.getDesktop().open(invoice); } catch (IOException ex) { ex.printStackTrace(); } } } }
31.190476
102
0.696401
3bf0a8afa986283cd027449e3fcd3a25674b980c
151
h
C
src/Libs/RtpW/ErrorCodes.h
miseri/rtp_plus_plus
244ddd86f40f15247dd39ae7f9283114c2ef03a2
[ "BSD-3-Clause" ]
1
2021-07-14T08:15:05.000Z
2021-07-14T08:15:05.000Z
src/Libs/RtpW/ErrorCodes.h
7956968/rtp_plus_plus
244ddd86f40f15247dd39ae7f9283114c2ef03a2
[ "BSD-3-Clause" ]
null
null
null
src/Libs/RtpW/ErrorCodes.h
7956968/rtp_plus_plus
244ddd86f40f15247dd39ae7f9283114c2ef03a2
[ "BSD-3-Clause" ]
2
2021-07-14T08:15:02.000Z
2021-07-14T08:56:10.000Z
#ifndef ERRORCODES_H #define ERRORCODES_H #define RTPW_EC_NO_ERROR 0 #define RTPW_EC_GENERIC 1 #define RTPW_EC_NULL_POINTER 2 #endif // ERRORCODES_H
16.777778
30
0.827815
05f1e8506a3b07aa54cb6aa8525c01c43fab3af2
5,870
html
HTML
docs/validation/test_fade_duration_total_exceedance_time_table.html
iportillo/ITU-Rpy
35123f8894137f9bcc375b4513367d068cc33ca1
[ "MIT" ]
34
2018-06-01T17:12:37.000Z
2021-04-03T11:33:00.000Z
docs/validation/test_fade_duration_total_exceedance_time_table.html
hygson/ITU-Rpy
35123f8894137f9bcc375b4513367d068cc33ca1
[ "MIT" ]
25
2021-04-08T17:25:57.000Z
2022-01-25T00:58:30.000Z
docs/validation/test_fade_duration_total_exceedance_time_table.html
hygson/ITU-Rpy
35123f8894137f9bcc375b4513367d068cc33ca1
[ "MIT" ]
253
2021-04-25T23:21:23.000Z
2022-03-14T11:09:01.000Z
<html> <head> <title>Validation results models.itu1623.fade_duration_total_exceedance_time</title> <style> table { border-collapse: collapse; font-size: 10px; width: 100%; padding: 2px; } th { background-color: black; color: white; } th, td { text-align: center; padding: 2px; width: 1%; font-family: Arial, Helvetica, sans-serif; white-space: nowrap; } tr:nth-child(even) {background-color: #f2f2f2;} tr:hover {background-color: khaki;} </style> </head> <body> <table border="1" class="dataframe" id="test_fade_duration_total_exceedance_time"> <thead> <tr style="text-align: center;"> <th>ITU-Rpy Function</th> <th>D (s)</th> <th>A (dB)</th> <th>el (°)</th> <th>f (GHz)</th> <th>T_tot (s)</th> <th>ITU Validation (s)</th> <th>ITU-Rpy Result (s)</th> <th>Absolute Error</th> <th>Relative Error</th> </tr> </thead> <tbody> <tr> <td style="text-align:left">models.itu1623.fade_duration_total_exceedance_time</td> <td>30.0</td> <td>12.51</td> <td>20.33</td> <td>30.0</td> <td>315576.00</td> <td>291467.215961</td> <td><span style="color: darkgreen">291467.215961</span></td> <td bgcolor="lightgreen">-3.49e-10</td> <td bgcolor="lightgreen">-0.000</td> </tr> <tr> <td style="text-align:left">models.itu1623.fade_duration_total_exceedance_time</td> <td>30.0</td> <td>19.03</td> <td>20.33</td> <td>30.0</td> <td>94672.80</td> <td>86851.997600</td> <td><span style="color: darkgreen">86851.997600</span></td> <td bgcolor="lightgreen">3.93e-10</td> <td bgcolor="lightgreen">0.000</td> </tr> <tr> <td style="text-align:left">models.itu1623.fade_duration_total_exceedance_time</td> <td>10.0</td> <td>7.64</td> <td>20.33</td> <td>14.5</td> <td>31557.60</td> <td>30710.632581</td> <td><span style="color: darkgreen">30710.632581</span></td> <td bgcolor="lightgreen">-4.00e-11</td> <td bgcolor="lightgreen">-0.000</td> </tr> <tr> <td style="text-align:left">models.itu1623.fade_duration_total_exceedance_time</td> <td>10.0</td> <td>12.47</td> <td>20.33</td> <td>14.5</td> <td>9467.28</td> <td>9180.643332</td> <td><span style="color: darkgreen">9180.643332</span></td> <td bgcolor="lightgreen">4.17e-10</td> <td bgcolor="lightgreen">0.000</td> </tr> <tr> <td style="text-align:left">models.itu1623.fade_duration_total_exceedance_time</td> <td>1.0</td> <td>11.59</td> <td>37.63</td> <td>39.6</td> <td>157788.00</td> <td>153240.459707</td> <td><span style="color: darkgreen">153240.459707</span></td> <td bgcolor="lightgreen">-3.20e-10</td> <td bgcolor="lightgreen">-0.000</td> </tr> <tr> <td style="text-align:left">models.itu1623.fade_duration_total_exceedance_time</td> <td>60.0</td> <td>11.59</td> <td>37.63</td> <td>39.6</td> <td>157788.00</td> <td>134068.283701</td> <td><span style="color: darkgreen">134068.283701</span></td> <td bgcolor="lightgreen">-5.82e-11</td> <td bgcolor="lightgreen">-0.000</td> </tr> <tr> <td style="text-align:left">models.itu1623.fade_duration_total_exceedance_time</td> <td>300.0</td> <td>11.59</td> <td>37.63</td> <td>39.6</td> <td>157788.00</td> <td>111287.301883</td> <td><span style="color: darkgreen">111287.301883</span></td> <td bgcolor="lightgreen">2.91e-10</td> <td bgcolor="lightgreen">0.000</td> </tr> <tr> <td style="text-align:left">models.itu1623.fade_duration_total_exceedance_time</td> <td>600.0</td> <td>11.59</td> <td>37.63</td> <td>39.6</td> <td>157788.00</td> <td>92081.221388</td> <td><span style="color: darkgreen">92081.221388</span></td> <td bgcolor="lightgreen">3.93e-10</td> <td bgcolor="lightgreen">0.000</td> </tr> <tr> <td style="text-align:left">models.itu1623.fade_duration_total_exceedance_time</td> <td>1200.0</td> <td>11.59</td> <td>37.63</td> <td>39.6</td> <td>157788.00</td> <td>67696.250744</td> <td><span style="color: darkgreen">67696.250744</span></td> <td bgcolor="lightgreen">1.46e-11</td> <td bgcolor="lightgreen">0.000</td> </tr> <tr> <td style="text-align:left">models.itu1623.fade_duration_total_exceedance_time</td> <td>1800.0</td> <td>11.59</td> <td>37.63</td> <td>39.6</td> <td>157788.00</td> <td>52936.430347</td> <td><span style="color: darkgreen">52936.430347</span></td> <td bgcolor="lightgreen">-4.44e-10</td> <td bgcolor="lightgreen">-0.000</td> </tr> <tr> <td style="text-align:left">models.itu1623.fade_duration_total_exceedance_time</td> <td>3600.0</td> <td>11.59</td> <td>37.63</td> <td>39.6</td> <td>157788.00</td> <td>30577.895884</td> <td><span style="color: darkgreen">30577.895884</span></td> <td bgcolor="lightgreen">5.31e-10</td> <td bgcolor="lightgreen">0.000</td> </tr> </tbody> </table> <br><br> </body> </html>
31.72973
97
0.523339
89cf2ebc89e8e2afb41025882a586cca056f7778
65
sql
SQL
sql/rank-criticisms/get.sql
ARHariri/criticism-server
db469a129324baaa87818071918318c451f3eac5
[ "MIT" ]
null
null
null
sql/rank-criticisms/get.sql
ARHariri/criticism-server
db469a129324baaa87818071918318c451f3eac5
[ "MIT" ]
null
null
null
sql/rank-criticisms/get.sql
ARHariri/criticism-server
db469a129324baaa87818071918318c451f3eac5
[ "MIT" ]
null
null
null
select * from rank_criticisms where cid = ${cid} and uid = ${uid}
21.666667
35
0.692308
90dd4abffd40fc6915242dbda6acc5f5843ebc7c
4,489
py
Python
tests/communication/test_proxy.py
zhawan/maro
d8c98deea4296cdcb90efd1fb59bc571cec3a2ef
[ "MIT" ]
1
2020-09-30T09:31:05.000Z
2020-09-30T09:31:05.000Z
tests/communication/test_proxy.py
zhawan/maro
d8c98deea4296cdcb90efd1fb59bc571cec3a2ef
[ "MIT" ]
null
null
null
tests/communication/test_proxy.py
zhawan/maro
d8c98deea4296cdcb90efd1fb59bc571cec3a2ef
[ "MIT" ]
null
null
null
# Copyright (c) Microsoft Corporation. # Licensed under the MIT license. from concurrent.futures import ThreadPoolExecutor, as_completed import redis import subprocess import time import unittest import sys import os from maro.communication import Proxy, SessionMessage, SessionType def proxy_generator(component_type): if component_type == "master": proxy = Proxy(group_name="proxy_unit_test", component_type="master", expected_peers={"worker": 5}, log_enable=False) elif component_type == "worker": proxy = Proxy(group_name="proxy_unit_test", component_type="worker", expected_peers={"master": 1}, log_enable=False) return proxy def message_receive(proxy): for received_message in proxy.receive(is_continuous=False): return received_message.payload @unittest.skipUnless(os.environ.get("test_with_redis", False), "require redis") class TestProxy(unittest.TestCase): @classmethod def setUpClass(cls): print(f"The proxy unit test start!") # prepare Redis try: temp_redis = redis.Redis(host="localhost", port=6379) temp_redis.ping() except Exception as e: cls.redis_process = subprocess.Popen(['redis-server']) time.sleep(1) # prepare proxies cls.workers = [] proxy_type_list = ["master"] + ["worker"]*5 executor = ThreadPoolExecutor(max_workers=6) all_task = [executor.submit(proxy_generator, (proxy_type)) for proxy_type in proxy_type_list] for task in as_completed(all_task): r = task.result() if "master" in r.component_name: cls.master = r else: cls.workers.append(r) @classmethod def tearDownClass(cls) -> None: print(f"The proxy unit test finished!") if hasattr(cls, "redis_process"): cls.redis_process.terminate() def test_send(self): for worker in self.workers: send_msg = SessionMessage(tag="unit_test", source=self.master.component_name, destination=worker.component_name, payload="hello_world!") self.master.isend(send_msg) for receive_message in worker.receive(is_continuous=False): self.assertEqual(send_msg.payload, receive_message.payload) def test_scatter(self): scatter_payload = ["worker_1", "worker_2", "worker_3", "worker_4", "worker_5"] destination_payload_list = [(worker.component_name, scatter_payload[i]) for i, worker in enumerate(self.workers)] self.master.iscatter(tag="unit_test", session_type=SessionType.NOTIFICATION, destination_payload_list=destination_payload_list) for i, worker in enumerate(self.workers): for msg in worker.receive(is_continuous=False): self.assertEqual(scatter_payload[i], msg.payload) def test_broadcast(self): executor = ThreadPoolExecutor(max_workers=len(self.workers)) all_task = [executor.submit(message_receive, (worker)) for worker in self.workers] payload = ["broadcast_unit_test"] self.master.ibroadcast(tag="unit_test", session_type=SessionType.NOTIFICATION, payload=payload) for task in as_completed(all_task): res = task.result() self.assertEqual(res, payload) def test_reply(self): for worker in self.workers: send_msg = SessionMessage(tag="unit_test", source=self.master.component_name, destination=worker.component_name, payload="hello ") session_id_list = self.master.isend(send_msg) for receive_message in worker.receive(is_continuous=False): worker.reply(received_message=receive_message, tag="unit_test", payload="world!") replied_msg_list = self.master.receive_by_id(session_id_list) self.assertEqual(send_msg.payload + replied_msg_list[0].payload, "hello world!") if __name__ == "__main__": unittest.main()
37.408333
101
0.602139
575b8bf42137e675f3de7bfaea7f807eeb1e1e52
126
c
C
src/lib/other/gtty.c
macminix/MacMinix
12262051184fb2fe10ad0a2156546454e38a3e57
[ "BSD-3-Clause" ]
30
2015-02-17T23:26:16.000Z
2022-02-22T19:40:04.000Z
src/lib/other/gtty.c
macminix/MacMinix
12262051184fb2fe10ad0a2156546454e38a3e57
[ "BSD-3-Clause" ]
null
null
null
src/lib/other/gtty.c
macminix/MacMinix
12262051184fb2fe10ad0a2156546454e38a3e57
[ "BSD-3-Clause" ]
7
2016-07-02T20:33:49.000Z
2022-02-23T14:03:58.000Z
#include <lib.h> #include <sgtty.h> int gtty(fd, argp) int fd; struct sgttyb *argp; { return(ioctl(fd, TIOCGETP, argp)); }
12.6
36
0.65873
a8b13163c50648f829d019e107eedc514d9a1048
114
rs
Rust
rosetta-iota-server/tests/construction/mod.rs
iotaledger/rosetta-iota
5e3cca46ac2fee31a9862a735d4ed04ca2595787
[ "Apache-2.0" ]
6
2021-05-11T04:04:58.000Z
2021-12-08T12:55:50.000Z
rosetta-iota-server/tests/construction/mod.rs
iotaledger/rosetta-iota
5e3cca46ac2fee31a9862a735d4ed04ca2595787
[ "Apache-2.0" ]
4
2021-07-09T00:01:33.000Z
2021-12-22T00:15:26.000Z
rosetta-iota-server/tests/construction/mod.rs
iotaledger/rosetta-iota
5e3cca46ac2fee31a9862a735d4ed04ca2595787
[ "Apache-2.0" ]
2
2021-09-16T21:43:15.000Z
2021-12-08T00:51:52.000Z
// Copyright 2021 IOTA Stiftung // SPDX-License-Identifier: Apache-2.0 mod derive; mod metadata; mod preprocess;
16.285714
38
0.763158
aca7287ab10e9de19e74113f8f0c35b977bcbba1
6,355
cpp
C++
llvm/lib/CodeGen/CodeGenCommonISel.cpp
guitard0g/llvm-project
283e39c7a0d1bf97a67b77638e9194bd1eb9dae6
[ "Apache-2.0" ]
653
2018-12-27T15:00:01.000Z
2022-03-30T11:52:23.000Z
llvm/lib/CodeGen/CodeGenCommonISel.cpp
Sayyidalijufri/llvm-project
bf95957c99c77987404dea791d6087b222135fce
[ "Apache-2.0" ]
3,740
2019-01-23T15:36:48.000Z
2022-03-31T22:01:13.000Z
llvm/lib/CodeGen/CodeGenCommonISel.cpp
Sayyidalijufri/llvm-project
bf95957c99c77987404dea791d6087b222135fce
[ "Apache-2.0" ]
500
2019-01-23T07:49:22.000Z
2022-03-30T02:59:37.000Z
//===-- CodeGenCommonISel.cpp ---------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file defines common utilies that are shared between SelectionDAG and // GlobalISel frameworks. // //===----------------------------------------------------------------------===// #include "llvm/CodeGen/CodeGenCommonISel.h" #include "llvm/Analysis/BranchProbabilityInfo.h" #include "llvm/CodeGen/MachineBasicBlock.h" #include "llvm/CodeGen/MachineFunction.h" #include "llvm/CodeGen/TargetInstrInfo.h" #include "llvm/CodeGen/TargetOpcodes.h" using namespace llvm; /// Add a successor MBB to ParentMBB< creating a new MachineBB for BB if SuccMBB /// is 0. MachineBasicBlock * StackProtectorDescriptor::addSuccessorMBB( const BasicBlock *BB, MachineBasicBlock *ParentMBB, bool IsLikely, MachineBasicBlock *SuccMBB) { // If SuccBB has not been created yet, create it. if (!SuccMBB) { MachineFunction *MF = ParentMBB->getParent(); MachineFunction::iterator BBI(ParentMBB); SuccMBB = MF->CreateMachineBasicBlock(BB); MF->insert(++BBI, SuccMBB); } // Add it as a successor of ParentMBB. ParentMBB->addSuccessor( SuccMBB, BranchProbabilityInfo::getBranchProbStackProtector(IsLikely)); return SuccMBB; } /// Given that the input MI is before a partial terminator sequence TSeq, return /// true if M + TSeq also a partial terminator sequence. /// /// A Terminator sequence is a sequence of MachineInstrs which at this point in /// lowering copy vregs into physical registers, which are then passed into /// terminator instructors so we can satisfy ABI constraints. A partial /// terminator sequence is an improper subset of a terminator sequence (i.e. it /// may be the whole terminator sequence). static bool MIIsInTerminatorSequence(const MachineInstr &MI) { // If we do not have a copy or an implicit def, we return true if and only if // MI is a debug value. if (!MI.isCopy() && !MI.isImplicitDef()) { // Sometimes DBG_VALUE MI sneak in between the copies from the vregs to the // physical registers if there is debug info associated with the terminator // of our mbb. We want to include said debug info in our terminator // sequence, so we return true in that case. if (MI.isDebugInstr()) return true; // For GlobalISel, we may have extension instructions for arguments within // copy sequences. Allow these. switch (MI.getOpcode()) { case TargetOpcode::G_TRUNC: case TargetOpcode::G_ZEXT: case TargetOpcode::G_ANYEXT: case TargetOpcode::G_SEXT: case TargetOpcode::G_MERGE_VALUES: case TargetOpcode::G_UNMERGE_VALUES: case TargetOpcode::G_CONCAT_VECTORS: case TargetOpcode::G_BUILD_VECTOR: case TargetOpcode::G_EXTRACT: return true; default: return false; } } // We have left the terminator sequence if we are not doing one of the // following: // // 1. Copying a vreg into a physical register. // 2. Copying a vreg into a vreg. // 3. Defining a register via an implicit def. // OPI should always be a register definition... MachineInstr::const_mop_iterator OPI = MI.operands_begin(); if (!OPI->isReg() || !OPI->isDef()) return false; // Defining any register via an implicit def is always ok. if (MI.isImplicitDef()) return true; // Grab the copy source... MachineInstr::const_mop_iterator OPI2 = OPI; ++OPI2; assert(OPI2 != MI.operands_end() && "Should have a copy implying we should have 2 arguments."); // Make sure that the copy dest is not a vreg when the copy source is a // physical register. if (!OPI2->isReg() || (!Register::isPhysicalRegister(OPI->getReg()) && Register::isPhysicalRegister(OPI2->getReg()))) return false; return true; } /// Find the split point at which to splice the end of BB into its success stack /// protector check machine basic block. /// /// On many platforms, due to ABI constraints, terminators, even before register /// allocation, use physical registers. This creates an issue for us since /// physical registers at this point can not travel across basic /// blocks. Luckily, selectiondag always moves physical registers into vregs /// when they enter functions and moves them through a sequence of copies back /// into the physical registers right before the terminator creating a /// ``Terminator Sequence''. This function is searching for the beginning of the /// terminator sequence so that we can ensure that we splice off not just the /// terminator, but additionally the copies that move the vregs into the /// physical registers. MachineBasicBlock::iterator llvm::findSplitPointForStackProtector(MachineBasicBlock *BB, const TargetInstrInfo &TII) { MachineBasicBlock::iterator SplitPoint = BB->getFirstTerminator(); if (SplitPoint == BB->begin()) return SplitPoint; MachineBasicBlock::iterator Start = BB->begin(); MachineBasicBlock::iterator Previous = SplitPoint; --Previous; if (TII.isTailCall(*SplitPoint) && Previous->getOpcode() == TII.getCallFrameDestroyOpcode()) { // Call frames cannot be nested, so if this frame is describing the tail // call itself, then we must insert before the sequence even starts. For // example: // <split point> // ADJCALLSTACKDOWN ... // <Moves> // ADJCALLSTACKUP ... // TAILJMP somewhere // On the other hand, it could be an unrelated call in which case this tail // call has to register moves of its own and should be the split point. For // example: // ADJCALLSTACKDOWN // CALL something_else // ADJCALLSTACKUP // <split point> // TAILJMP somewhere do { --Previous; if (Previous->isCall()) return SplitPoint; } while(Previous->getOpcode() != TII.getCallFrameSetupOpcode()); return Previous; } while (MIIsInTerminatorSequence(*Previous)) { SplitPoint = Previous; if (Previous == Start) break; --Previous; } return SplitPoint; }
37.60355
80
0.678363
29020bc5af7b5aa10ffd220bbcd76e49f8d572d9
1,004
py
Python
zgrobot/messages/entries.py
pylover7/ZgRobot
7c2f03c551e5155c567d503e1a9b5269983f5a3b
[ "MIT" ]
3
2021-10-18T17:36:05.000Z
2022-03-01T06:55:21.000Z
zgrobot/messages/entries.py
pylover7/ZgRobot
7c2f03c551e5155c567d503e1a9b5269983f5a3b
[ "MIT" ]
20
2021-10-10T07:24:36.000Z
2022-03-21T07:18:49.000Z
zgrobot/messages/entries.py
pylover7/ZgRobot
7c2f03c551e5155c567d503e1a9b5269983f5a3b
[ "MIT" ]
1
2022-02-25T09:47:58.000Z
2022-02-25T09:47:58.000Z
# -*- coding: utf-8 -*- from zgrobot.utils import to_text def get_value(instance, path, default=None): dic = instance.__dict__ for entry in path.split('.'): dic = dic.get(entry) if dic is None: return default return dic or default class BaseEntry(object): def __init__(self, entry, default=None): self.entry = entry self.default = default class IntEntry(BaseEntry): def __get__(self, instance, owner): try: return int(get_value(instance, self.entry, self.default)) except TypeError: return class FloatEntry(BaseEntry): def __get__(self, instance, owner): try: return float(get_value(instance, self.entry, self.default)) except TypeError: return class StringEntry(BaseEntry): def __get__(self, instance, owner): v = get_value(instance, self.entry, self.default) if v is not None: return to_text(v) return v
23.904762
71
0.613546
1f561159e7b6b6d129092f50555ff6454dcbf0ec
333
cpp
C++
two pointers/removeDuplicatesFromSortedArray2.cpp
Gooner1886/DSA-101
44092e10ad39bebbf7da93e897927106d5a45ae7
[ "MIT" ]
20
2022-01-04T19:36:14.000Z
2022-03-21T15:35:09.000Z
two pointers/removeDuplicatesFromSortedArray2.cpp
Gooner1886/DSA-101
44092e10ad39bebbf7da93e897927106d5a45ae7
[ "MIT" ]
null
null
null
two pointers/removeDuplicatesFromSortedArray2.cpp
Gooner1886/DSA-101
44092e10ad39bebbf7da93e897927106d5a45ae7
[ "MIT" ]
null
null
null
// Leetcode - 80 - Remove duplicates from sorted array int removeDuplicates(vector<int> &nums) { if (nums.size() <= 2) return nums.size(); int ptr = 2; for (int i = 2; i < nums.size(); i++) { if (nums[i] != nums[ptr - 2]) { nums[ptr++] = nums[i]; } } return ptr; }
20.8125
54
0.477477
9c57db1c3a0d8bda5844695c4b5718de7599315e
233
js
JavaScript
iOS/CRNDemo/CRNDemo/webapp/rn_CRNTester/js-modules/666694.js
sdgdsffdsfff/CRN
4c89030973aeae299c707ae56fa4ac8a173d44af
[ "MIT" ]
1,510
2019-04-11T07:36:35.000Z
2022-03-31T03:47:40.000Z
iOS/CRNDemo/CRNDemo/webapp/rn_CRNTester/js-modules/666694.js
ikimiler/CRN
ff3715c7956e7df0983c356d526c03b4bc603d38
[ "MIT" ]
64
2019-04-11T13:49:55.000Z
2020-12-25T02:18:19.000Z
iOS/CRNDemo/CRNDemo/webapp/rn_CRNTester/js-modules/666694.js
ikimiler/CRN
ff3715c7956e7df0983c356d526c03b4bc603d38
[ "MIT" ]
214
2019-04-11T09:36:41.000Z
2022-02-19T08:10:31.000Z
__d(function(g,r,i,a,m,e,d){m.exports=r(d[0]).registerAsset({__packager_asset:!0,httpServerLocation:"/assets/Thumbnails",width:128,height:128,scales:[1],hash:"29ddafe2bdf9084dd16abce3d9fd2546",name:"fist",type:"png"})},666694,[165]);
233
233
0.759657
9281dd8eb3345960e58a9248e7027b0ff4c30059
389
h
C
kernels/linux-2.6.24/include/asm-um/a.out.h
liuhaozzu/linux
bdf9758cd23e34b5f53e8e6339d9b29348615e14
[ "Apache-2.0" ]
null
null
null
kernels/linux-2.6.24/include/asm-um/a.out.h
liuhaozzu/linux
bdf9758cd23e34b5f53e8e6339d9b29348615e14
[ "Apache-2.0" ]
1
2021-04-09T09:24:44.000Z
2021-04-09T09:24:44.000Z
include/asm-um/a.out.h
KylinskyChen/linuxCore_2.6.24
11e90b14386491cc80477d4015e0c8f673f6d020
[ "MIT" ]
null
null
null
/* * Copyright (C) 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) * Licensed under the GPL */ #ifndef __UM_A_OUT_H #define __UM_A_OUT_H #include "asm/arch/a.out.h" #undef STACK_TOP #undef STACK_TOP_MAX extern unsigned long stacksizelim; extern unsigned long host_task_size; #define STACK_ROOM (stacksizelim) #define STACK_TOP task_size #define STACK_TOP_MAX STACK_TOP #endif
15.56
65
0.771208
f42175a0c99515ae536c13a620ea430ba57c39aa
2,046
go
Go
cfcomponent/registrars/collectorregistrar/collector_registrar.go
hpcloud/loggregatorlib
7b3048c6b67562cdf198c3ecbfae3f4db80412a6
[ "Apache-2.0" ]
null
null
null
cfcomponent/registrars/collectorregistrar/collector_registrar.go
hpcloud/loggregatorlib
7b3048c6b67562cdf198c3ecbfae3f4db80412a6
[ "Apache-2.0" ]
null
null
null
cfcomponent/registrars/collectorregistrar/collector_registrar.go
hpcloud/loggregatorlib
7b3048c6b67562cdf198c3ecbfae3f4db80412a6
[ "Apache-2.0" ]
null
null
null
package collectorregistrar import ( "encoding/json" "fmt" "time" "github.com/cloudfoundry/gosteno" "github.com/cloudfoundry/loggregatorlib/cfcomponent" "github.com/cloudfoundry/yagnats" ) type ClientProvider func(*gosteno.Logger, *cfcomponent.Config) (yagnats.NATSConn, error) type CollectorRegistrar struct { clientProvider ClientProvider interval time.Duration logger *gosteno.Logger cfc cfcomponent.Component client yagnats.NATSConn config *cfcomponent.Config stopChan chan struct{} } func NewCollectorRegistrar(clientProvider ClientProvider, cfc cfcomponent.Component, interval time.Duration, config *cfcomponent.Config) *CollectorRegistrar { return &CollectorRegistrar{ clientProvider: clientProvider, logger: cfc.Logger, cfc: cfc, interval: interval, config: config, stopChan: make(chan struct{}), } } func (registrar *CollectorRegistrar) Run() { ticker := time.NewTicker(registrar.interval) defer ticker.Stop() for { select { case <-registrar.stopChan: return case <-ticker.C: err := registrar.announceMessage() if err != nil { if registrar.client != nil { registrar.client.Close() registrar.client = nil } registrar.logger.Warn(err.Error()) } } } } func (registrar *CollectorRegistrar) Stop() { close(registrar.stopChan) } func (registrar *CollectorRegistrar) announceMessage() error { if registrar.client == nil { registrar.logger.Debugf("creating NATS client") var err error registrar.client, err = registrar.clientProvider(registrar.logger, registrar.config) if err != nil { return fmt.Errorf("Failed to create client: %s", err) } } json, err := json.Marshal(NewAnnounceComponentMessage(registrar.cfc)) if err != nil { return fmt.Errorf("Failed to marshal component message: %s", err) } err = registrar.client.Publish(AnnounceComponentMessageSubject, json) if err != nil { return fmt.Errorf("Failed to publish: %s", err) } return nil }
24.357143
158
0.702835
e94ceec06d2af1d967e12721a7b3169f80fbf476
820
go
Go
user/src/kv/init.go
sdeoras/lambda
2fff57194fe31d2535fb3aa72cca2c47a682ce06
[ "Apache-2.0" ]
null
null
null
user/src/kv/init.go
sdeoras/lambda
2fff57194fe31d2535fb3aa72cca2c47a682ce06
[ "Apache-2.0" ]
null
null
null
user/src/kv/init.go
sdeoras/lambda
2fff57194fe31d2535fb3aa72cca2c47a682ce06
[ "Apache-2.0" ]
null
null
null
package kv import ( "context" "fmt" "os" "sync" "user/src/config" "github.com/sdeoras/kv" ) var ( nameSpace = "userProfile" ) var ( kvdb kv.KV once sync.Once ) // initialize initializes kvdb instance once per lifetime func initialize() { once.Do(func() { var err error projectID, ok := os.LookupEnv("GCP_PROJECT") if !ok { panic("GCP_PROJECT env var not set") } kvdb, _, err = kv.NewDataStoreKv(context.Background(), projectID, nameSpace) if err != nil { mesg := fmt.Sprintf("%v:%s:%s", err, config.Config().ProjectId, os.Getenv("GCP_PROJECT")) panic(mesg) } }) } // KV should be called to access instance since it is being initialized. // Using init() func to initialize does not seem to work when env vars // are required. func KV() kv.KV { initialize() return kvdb }
17.083333
72
0.662195
5b6c749eca2c3c14a237b3b4282583b8fa876c06
264
cpp
C++
Recursion/REcursion3.cpp
sujal111/DAILY-LEARNING-OF-DS-ALGO
7ee5466617ec9657b30bbc68e2ca0267815a9f26
[ "MIT" ]
null
null
null
Recursion/REcursion3.cpp
sujal111/DAILY-LEARNING-OF-DS-ALGO
7ee5466617ec9657b30bbc68e2ca0267815a9f26
[ "MIT" ]
null
null
null
Recursion/REcursion3.cpp
sujal111/DAILY-LEARNING-OF-DS-ALGO
7ee5466617ec9657b30bbc68e2ca0267815a9f26
[ "MIT" ]
null
null
null
#include<bits/stc++.h> using namespace std; void dec(int n) { //Base Case if(n==0 or n==1) return n; //Recursive Case cout<<n<<" ";//Change in inc dec(n-1); } int main() { int n; cin>>n; dec(n); return 0; }
14.666667
33
0.477273
aa4383eda0b1fb542cc5d8880efdb320a7e104e5
660
sql
SQL
script/my_app.sql
hbinr/XS-bbs
bfad5a40e174b58b12e3cabfaf2c7618ef5f608b
[ "MIT" ]
5
2021-06-14T15:26:39.000Z
2021-12-24T08:12:37.000Z
script/my_app.sql
hblcok/XS-bbs
bfad5a40e174b58b12e3cabfaf2c7618ef5f608b
[ "MIT" ]
null
null
null
script/my_app.sql
hblcok/XS-bbs
bfad5a40e174b58b12e3cabfaf2c7618ef5f608b
[ "MIT" ]
1
2022-02-25T05:30:06.000Z
2022-02-25T05:30:06.000Z
CREATE TABLE `user` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) NOT NULL, `username` varchar(64) COLLATE utf8mb4_general_ci NOT NULL, `password` varchar(64) COLLATE utf8mb4_general_ci NOT NULL, `email` varchar(64) COLLATE utf8mb4_general_ci, `gender` tinyint(4) NOT NULL DEFAULT '0', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `idx_username` (`username`) USING BTREE, UNIQUE KEY `idx_user_id` (`user_id`) USING BTREE ) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_general_ci;
50.769231
85
0.759091
b924d4066655c9778a47ec33427845f745795d85
358
go
Go
handler/response_writer.go
jamieaitken/promred
d941c8f7897ee9cb0bb4f6c247f5d8ad82f88fb1
[ "Apache-2.0" ]
null
null
null
handler/response_writer.go
jamieaitken/promred
d941c8f7897ee9cb0bb4f6c247f5d8ad82f88fb1
[ "Apache-2.0" ]
1
2021-10-17T18:48:39.000Z
2021-10-17T18:48:39.000Z
handler/response_writer.go
jamieaitken/promred
d941c8f7897ee9cb0bb4f6c247f5d8ad82f88fb1
[ "Apache-2.0" ]
null
null
null
package handler import "net/http" type responseWriter struct { http.ResponseWriter StatusCode int } func newResponseWriter(writer http.ResponseWriter) *responseWriter { return &responseWriter{ writer, http.StatusOK, } } func (r *responseWriter) WriteHeader(statusCode int) { r.StatusCode = statusCode r.ResponseWriter.WriteHeader(statusCode) }
17.047619
68
0.77933
ddedcf14a25e6c20a03fce5557aac95830089649
6,661
php
PHP
resources/views/Admin/Goods/goodss-size.blade.php
zhou-h/shopwi
c690f2f5b268d36679a7357b5dc5d35831c48376
[ "MIT" ]
null
null
null
resources/views/Admin/Goods/goodss-size.blade.php
zhou-h/shopwi
c690f2f5b268d36679a7357b5dc5d35831c48376
[ "MIT" ]
null
null
null
resources/views/Admin/Goods/goodss-size.blade.php
zhou-h/shopwi
c690f2f5b268d36679a7357b5dc5d35831c48376
[ "MIT" ]
null
null
null
@extends('Admin.Public.public') @section('content') @section('title','商品列表') <!doctype html> <html> <head> <title></title> <script src="/static/jquery-1.8.3.min.js"></script> </head> <body> <div class="mws-panel grid_8"> <div class="mws-panel-header"> <span>规格列表</span> </div> @if (count($errors) > 0) <div class="mws-form-message warning"> <div class="alert alert-danger"> <ul> @foreach ($errors->all() as $error) <li>{{ $error }}</li> @endforeach </ul> </div> </div> @endif <div class="mws-panel-body no-padding"> <div id="DataTables_Table_1_wrapper" class="dataTables_wrapper" role="grid"> <div id="DataTables_Table_1_length" class="dataTables_length"> <a href='/sizeadd/{{$good->id}}' class='btn btn-info'>继续添加</a> </div> <form action='/goods/{$good->id}' method='get'> <div class="dataTables_filter" id="DataTables_Table_1_filter"> <label>颜色: <input type="text" aria-controls="DataTables_Table_1" name='keyword' value="{{$request['keyword'] or ''}}"></label> <input type='submit' value='搜索'/> </div> </form> <table class="mws-datatable-fn mws-table dataTable" id="DataTables_Table_1" aria-describedby="DataTables_Table_1_info"> <thead> <tr role="row"> <th class="sorting_asc" role="columnheader" tabindex="0" aria-controls="DataTables_Table_1" rowspan="1" colspan="1" aria-sort="ascending" aria-label="Rendering engine: activate to sort column descending" style="width: 255px;"> ID </th> <th class="sorting" role="columnheader" tabindex="0" aria-controls="DataTables_Table_1" rowspan="1" colspan="1" aria-label="Browser: activate to sort column ascending" style="width: 332px;"> 商品 </th> <th class="sorting" role="columnheader" tabindex="0" aria-controls="DataTables_Table_1" rowspan="1" colspan="1" aria-label="Platform(s): activate to sort column ascending" style="width: 310px;"> 颜色 </th> <th class="sorting" role="columnheader" tabindex="0" aria-controls="DataTables_Table_1" rowspan="1" colspan="1" aria-label="Engine version: activate to sort column ascending" style="width: 226px;"> 库存 </th> <th class="sorting" role="columnheader" tabindex="0" aria-controls="DataTables_Table_1" rowspan="1" colspan="1" aria-label="CSS grade: activate to sort column ascending" style="width: 172px;"> 创建时间 </th> <th class="sorting" role="columnheader" tabindex="0" aria-controls="DataTables_Table_1" rowspan="1" colspan="1" aria-label="CSS grade: activate to sort column ascending" style="width: 172px;"> 修改时间 </th> <th class="sorting" role="columnheader" tabindex="0" aria-controls="DataTables_Table_1" rowspan="1" colspan="1" aria-label="CSS grade: activate to sort column ascending" style="width: 172px;"> 操作 </th> </tr> </thead> <tbody role="alert" aria-live="polite" aria-relevant="all"> @foreach($info as $row) <tr class="odd"> <td class=" sorting_1"> {{$row->id}} </td> <td class=""> {{$good->name}} </td> <td class=""> {{$row->color}} </td> <td class=""> {{$row->store}} </td> <td class=""> {{$row->created_at}} </td> <td class=""> {{$row->updated_at}} </td> <td class=""> <a href="/goods" class="btn btn-small"><i class="icon-home-2"></i></a> <a href="/sizeedit/{{$row->id}}" class="btn btn-small"><i class="icon-pencil"></i></a> <a href="Javascript:void(0)" class="btn btn-small del"><i class="icon-trash"></i></a> <!-- form action='/auser/{{$row->id}}' method='post'> {{csrf_field()}} {{method_field('DELETE')}} <button type='submit' class='btn btn-danger'><i class="icol32-weather-rain"></i></button> </form> <a href='javascript:void(0)' class='btn btn-warning del'><i class="icol32-perfomance"></i></a> <a href='/auser/{{$row->id}}/edit' class='btn btn-info'><i class="icol32-toucan"></i></a> <a href='/auser/{{$row->id}}/' class='btn btn-info'><i class="icol32-qip-angry"></i></a> --> </td> </tr> @endforeach </tbody> </table> </div> </div> </div> </body> <script> $('.del').click(function(){ // alert($); id=$(this).parents('tr').find('td:first').html(); // alert(id); s=$(this).parents('tr'); if(confirm('你确定删除吗?')){ $.get('/sizedel',{id:id},function(data){ // alert(data); if(data){ s.remove(); } }) } }) </script> </html> @endsection
54.154472
258
0.411049
64926d9a4d74dd2dd0806c7bf95dc478d43ce1c9
387
lua
Lua
scripts/static/general_utils.lua
censys-ml/censys-ml
e2da0224f4f93034446dbd60d77d713785985e77
[ "MIT" ]
1
2021-09-14T13:56:12.000Z
2021-09-14T13:56:12.000Z
scripts/static/general_utils.lua
censys-ml/censys-ml
e2da0224f4f93034446dbd60d77d713785985e77
[ "MIT" ]
2
2020-08-30T14:29:17.000Z
2020-08-30T14:30:16.000Z
scripts/static/general_utils.lua
censys-ml/censys-ml
e2da0224f4f93034446dbd60d77d713785985e77
[ "MIT" ]
null
null
null
function arr_has_value (tab, val) for index, value in ipairs(tab) do if value == val then return true end end return false end function one_hot_encode(event, old_field, new_field, value) if event[old_field] == value then event[new_field] = true else event[new_field] = false end end --print(has_value({1, 7}, 7)) --print(tonumber("9"))
19.35
59
0.645995
e9f0acb2c2de443b6ed433619693628ae798fef0
113
rb
Ruby
spec/support/factories/picture.rb
hacken-in/hacken-in
9dd68bb4aa29181bc65e7c12642fce37eb549fed
[ "MIT" ]
12
2017-06-09T07:01:02.000Z
2020-02-24T13:54:51.000Z
spec/support/factories/picture.rb
hacken-in/hacken-in
9dd68bb4aa29181bc65e7c12642fce37eb549fed
[ "MIT" ]
79
2017-02-25T11:20:06.000Z
2019-06-22T03:21:28.000Z
spec/support/factories/picture.rb
hacken-in/hacken-in
9dd68bb4aa29181bc65e7c12642fce37eb549fed
[ "MIT" ]
4
2017-08-07T19:35:05.000Z
2021-11-04T14:22:48.000Z
include ActionDispatch::TestProcess FactoryBot.define do factory :picture do title "Some title" end end
14.125
35
0.761062
44238a82e30a44e535ed23896ffed1681ed049c6
1,906
kt
Kotlin
app/src/main/java/com/wonrax/mybk/ui/component/MainScreenLayout.kt
wonrax/mybk-mobile
8fbf168a7e7a685b1407fd24dd0fba9becb2dab2
[ "MIT" ]
null
null
null
app/src/main/java/com/wonrax/mybk/ui/component/MainScreenLayout.kt
wonrax/mybk-mobile
8fbf168a7e7a685b1407fd24dd0fba9becb2dab2
[ "MIT" ]
null
null
null
app/src/main/java/com/wonrax/mybk/ui/component/MainScreenLayout.kt
wonrax/mybk-mobile
8fbf168a7e7a685b1407fd24dd0fba9becb2dab2
[ "MIT" ]
null
null
null
package com.wonrax.mybk.ui.component import androidx.compose.foundation.layout.Arrangement import androidx.compose.foundation.layout.PaddingValues import androidx.compose.foundation.layout.Spacer import androidx.compose.foundation.layout.fillMaxSize import androidx.compose.foundation.layout.height import androidx.compose.foundation.lazy.LazyColumn import androidx.compose.foundation.lazy.LazyListScope import androidx.compose.runtime.Composable import androidx.compose.runtime.LaunchedEffect import androidx.compose.ui.Modifier import androidx.compose.ui.unit.dp import com.google.accompanist.swiperefresh.SwipeRefresh import com.google.accompanist.swiperefresh.rememberSwipeRefreshState import com.google.accompanist.systemuicontroller.rememberSystemUiController import com.wonrax.mybk.ui.screens.LoadingScreen import com.wonrax.mybk.ui.theme.Color @Composable fun MainScreenLayout( isLoading: Boolean, isRefreshing: Boolean, onRefresh: () -> Unit, content: LazyListScope.() -> Unit ) { // Change status bar to grey when come back from other screens val systemUIController = rememberSystemUiController() LaunchedEffect(true) { systemUIController.setStatusBarColor(Color.Grey10, darkIcons = true) } if (isLoading) { LoadingScreen() } else { ScreenLayout { SwipeRefresh( state = rememberSwipeRefreshState(isRefreshing), onRefresh = { onRefresh() }, ) { LazyColumn( modifier = Modifier.fillMaxSize(), verticalArrangement = Arrangement.spacedBy(12.dp), contentPadding = PaddingValues(12.dp, 72.dp) ) { content() // Pad the bottom navigation item { Spacer(Modifier.height(36.dp)) } } } } } }
34.654545
76
0.686254
331c4c07fd05dd94a37fe4b5f6cc6778ad1faac6
411
lua
Lua
nvim/lua/plugins/git-worktree/init.lua
Mathijs-Bakker/dotfiles
5f167fc7f563cae467e56acffeb444926c61896c
[ "MIT" ]
4
2021-04-29T11:29:39.000Z
2022-01-18T17:05:31.000Z
nvim/lua/plugins/git-worktree/init.lua
Mathijs-Bakker/dotfiles
5f167fc7f563cae467e56acffeb444926c61896c
[ "MIT" ]
1
2022-01-18T10:22:54.000Z
2022-01-18T19:20:25.000Z
nvim/lua/plugins/git-worktree/init.lua
Mathijs-Bakker/dotfiles
5f167fc7f563cae467e56acffeb444926c61896c
[ "MIT" ]
1
2021-07-29T03:00:01.000Z
2021-07-29T03:00:01.000Z
require("telescope").load_extension("git_worktree") -- Worktree List: Nnoremap ('<Leader>gwl', [[:lua require('telescope').extensions.git_worktree.git_worktrees()<CR>]]) -- <Enter> - switches to that worktree -- <c-d> - deletes that worktree -- <c-D> - force deletes that worktree -- Worktree Creation: Nnoremap ('<Leader>gwc', [[:lua require('telescope').extensions.git_worktree.create_git_worktree()<CR>]])
37.363636
105
0.720195
80e3a2201b1f011d9281db7ac03938e925ed3971
4,733
java
Java
src/main/java/com/example/application/views/pegawai/PegawaiForm.java
banatw/springboot-vaadin
472c507770a35c57ff0a07fa1456b4823b256dca
[ "Unlicense" ]
null
null
null
src/main/java/com/example/application/views/pegawai/PegawaiForm.java
banatw/springboot-vaadin
472c507770a35c57ff0a07fa1456b4823b256dca
[ "Unlicense" ]
null
null
null
src/main/java/com/example/application/views/pegawai/PegawaiForm.java
banatw/springboot-vaadin
472c507770a35c57ff0a07fa1456b4823b256dca
[ "Unlicense" ]
null
null
null
package com.example.application.views.pegawai; import java.util.ArrayList; import java.util.Date; import java.util.Iterator; import java.util.List; import java.util.Optional; import com.example.application.entity.Customer; import com.example.application.entity.Nilai; import com.example.application.repo.CustomerRepo; import com.example.application.repo.NilaiRepo; import com.example.application.views.Action; import com.example.application.views.main.MainView; import com.vaadin.flow.component.AttachEvent; import com.vaadin.flow.component.Component; import com.vaadin.flow.component.UI; import com.vaadin.flow.component.button.Button; import com.vaadin.flow.component.html.Div; import com.vaadin.flow.component.orderedlayout.HorizontalLayout; import com.vaadin.flow.component.orderedlayout.VerticalLayout; import com.vaadin.flow.component.textfield.NumberField; import com.vaadin.flow.component.textfield.TextField; import com.vaadin.flow.router.BeforeEvent; import com.vaadin.flow.router.HasUrlParameter; import com.vaadin.flow.router.PageTitle; import com.vaadin.flow.router.Route; import com.vaadin.flow.router.RoutePrefix; import com.vaadin.flow.router.WildcardParameter; import org.springframework.beans.factory.annotation.Autowired; @RoutePrefix(value = "pegawai") @Route(value = "form", layout = MainView.class) @PageTitle(value = "Pegawai Form") public class PegawaiForm extends Div implements HasUrlParameter<String> { @Autowired private CustomerRepo customerRepo; @Autowired private NilaiRepo nilaiRepo; private Action act; private Optional<Long> customerId; private VerticalLayout vLayout = new VerticalLayout(); // private HorizontalLayout hLayout = new HorizontalLayout(); private Customer customer; private TextField firstName = new TextField("First Name"); private TextField lastName = new TextField("Last Name"); private VerticalLayout vLayoutNilai = new VerticalLayout(); public PegawaiForm() { } @Override public void setParameter(BeforeEvent event, @WildcardParameter String parameter) { // TODO Auto-generated method stub // QueryParameters queryParameters = event.getLocation().getQueryParameters(); // Map<String, List<String>> params = queryParameters.getParameters(); // System.out.println(parameter); this.customerId = Optional.ofNullable(Long.valueOf(event.getLocation().getSegments().get(2))); this.act = Action.valueOf(event.getLocation().getSegments().get(3)); } @Override protected void onAttach(AttachEvent attachEvent) { // TODO Auto-generated method stub if (attachEvent.isInitialAttach()) { initComponents(); } } private void simpan() { customer.setFirstName(firstName.getValue()); customer.setLastName(lastName.getValue()); customer.setAuditDate(new Date()); List<Nilai> liNilais = new ArrayList<>(); Iterator<Component> iterator = vLayoutNilai.getChildren().iterator(); while (iterator.hasNext()) { Component component = iterator.next(); if (component.getClass().getSimpleName().equalsIgnoreCase("numberfield")) { NumberField numberField = (NumberField) component; Nilai nilai = nilaiRepo.findById(Long.valueOf(numberField.getId().get())).get(); if (numberField.getValue() == null) { numberField.setInvalid(true); numberField.setErrorMessage("tidak boleh kosong"); return; } nilai.setNilai(numberField.getValue()); nilaiRepo.save(nilai); liNilais.add(nilai); } } customer.setLNilais(liNilais); customerRepo.save(customer); } private void initComponents() { customer = customerRepo.findById(customerId.get()).get(); firstName.setValue(customer.getFirstName()); lastName.setValue(customer.getLastName()); for (Nilai nilai : customer.getLNilais()) { NumberField numberField = new NumberField("Nilai " + nilai.getMataKuliah().getNamaMatakuliah()); numberField.setValue(nilai.getNilai()); numberField.setId(String.valueOf(nilai.getId())); vLayoutNilai.add(numberField); } HorizontalLayout layoutButton = new HorizontalLayout(); layoutButton.add(new Button("Batal", e -> UI.getCurrent().navigate(Pegawai.class)), new Button("Simpan", e -> { simpan(); UI.getCurrent().navigate(Pegawai.class); })); vLayout.add(firstName, lastName, vLayoutNilai, layoutButton); add(vLayout); } }
40.110169
119
0.691105
1cbae07f6cfb82a39941c2aad351132bf0c05baa
1,182
sql
SQL
galaxy-console/src/main/dbscripts/tables.sql
balanacebeam/PDT
016f608de232913c93ca92e5321b296fd0160711
[ "Apache-2.0" ]
16
2016-08-09T02:19:37.000Z
2019-07-04T05:54:02.000Z
galaxy-console/src/main/dbscripts/tables.sql
balanacebeam/galaxy
016f608de232913c93ca92e5321b296fd0160711
[ "Apache-2.0" ]
null
null
null
galaxy-console/src/main/dbscripts/tables.sql
balanacebeam/galaxy
016f608de232913c93ca92e5321b296fd0160711
[ "Apache-2.0" ]
13
2016-08-15T01:40:11.000Z
2019-07-04T05:53:49.000Z
-- Postgres CREATE TABLE datasource_info ( id SERIAL, name character varying(64), driver_class character varying(64), jndi character varying(64), db_url character varying(256), username character varying(64), password character varying(64), max_active smallint default 10, initial_size smallint default 1, url character varying(256), status smallint default 1, active_flag smallint default 1, memo character varying(512), gmt_created timestamp, gmt_modified timestamp, CONSTRAINT ds_info_pkey PRIMARY KEY (id) ); CREATE TABLE business_type ( id SERIAL, name character varying(64), ds_id character varying(128), active_flag smallint default 1, memo character varying(512), gmt_create timestamp, gmt_modified timestamp, CONSTRAINT ds_info_pkey PRIMARY KEY (id) ); insert into datasource_info (name, driver_class, jndi, url, username, password) values ('udb1','', '', 'jdbc:postgresql://localhost:5432/udb1', 'postgreuser', 'aaa123+-*/'); insert into transaction_info(tx_id, parent_id, business_id, business_type, tx_type, tx_status, context, payload, retried_count) values (1, 1, 'business_id', 'test', 1, 1, 'context', 'payload', 3);
33.771429
196
0.751269
35ee8e6eebe4f7ed86ad072109d215265a28334b
49,193
sql
SQL
etc/test-data/sandwiches-dim-data.sql
dkottow/ngen-mapu
8240950a1294cb835f91d9a0f561b08926b2bac9
[ "Apache-2.0" ]
2
2017-05-11T21:21:27.000Z
2017-09-13T14:41:23.000Z
etc/test-data/sandwiches-dim-data.sql
dkottow/ngen-mapu
8240950a1294cb835f91d9a0f561b08926b2bac9
[ "Apache-2.0" ]
2
2016-04-06T01:17:24.000Z
2016-09-03T17:33:43.000Z
etc/test-data/sandwiches-dim-data.sql
dkottow/ngen-mapu
8240950a1294cb835f91d9a0f561b08926b2bac9
[ "Apache-2.0" ]
null
null
null
-- sandwiches INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1001, 'Bacon', 5.99,'United Kingdom','Often eaten with ketchup or brown sauce'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1002, 'Bacon, egg and cheese', 8.99,'United States','A breakfast sandwich, usually with fried or scrambled egg'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1003, 'Baked bean', 9.99,'United States','Canned baked beans on white or brown bread, sometimes with butter.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1004, 'Bánh mì', 4.99,'Vietnam','Filling is typically meat, but can contain a wide range of foods, including sardines, tofu, pâté, or eggs. Served on an airy baguette with pickled carrots, cilantro and peppers.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1005, 'Barbecue', 4.99,'United States','Served on a bun, with chopped, sliced, or shredded meat (pulled pork, beef, or chicken typically), and sometimes topped with coleslaw'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1006, 'Barros Jarpa', 6.99,'Chile','Ham and cheese, usually mantecoso, which is similar to farmer cheese'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1007, 'Barros Luco', 5.99,'Chile','Beef (usually thin-cut steak) and cheese'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1008, 'Bauru', 6.99,'Brazil','Melted cheese, roast beef, tomato, and pickled cucumber in a hollowed-out French roll'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1009, 'Beef on weck', 9.99,'United States','Roast beef on a Kummelweck roll'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1010, 'BLT', 9.99,'United States','Named for its ingredients: bacon, lettuce, and tomato. Often served on toasted sliced bread spread with mayonnaise.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1011, 'Bologna sandwich', 9.99,'United States','Pre-sliced and sometimes fried bologna sausage between slices of white bread, with various condiments such as ketchup, mustard, and mayonnaise.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1012, 'Bosna', 5.99,'Austria','Usually grilled on white bread, containing a bratwurst sausage, onions, and a blend of tomato ketchup, mustard, and curry powder'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1013, 'Breakfast roll', 8.99,'United Kingdom and Ireland','A convenience dish on a variety of bread rolls, containing such breakfast items as sausages, bacon, white or black pudding, mushrooms, tomatoes, hash browns, and fried eggs, often eaten with ketchup or brown sauce'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1014, 'Breakfast', 9.99,'United States','Typically a scrambled or fried egg, cheese, and a sausage patty or other breakfast meat, served on a biscuit or English muffin'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1015, 'British Rail', 6.99,'United Kingdom','A dated reference to the poor quality of catering on the now-defunct British Rail, this refers to any poor-quality sandwich, often stale.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1016, 'Broodje kroket', 5.99,'The Netherlands','A soft bread roll containing a ragout-based croquette, often eaten with mustard.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1017, 'Bun kebab', 8.99,'Pakistan','Consists of a shallow-fried, spicy patty, onions, and chutney or raita in a hamburger or hot dog bun.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1018, 'Butterbrot', 8.99,'Germany','Single, open-faced, containing butter as the common ingredient, with sweet or savory toppings depending on the meal'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1019, 'Cemita', 4.99,'Mexico','Sliced avocado, meat, white cheese, onions, and red sauce (salsa roja), on a fluffy sesame-seeded egg roll, originally from the city of Puebla.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1020, 'Chacarero', 6.99,'Chile','Thinly sliced churrasco-style steak, or lomito-style pork, with tomatoes, green beans, and green chiles, served on a round roll'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1021, 'Cheese', 7.99,'','Made with one or more varieties of cheese. When toasted (pictured), it is commonly referred to as a "grilled cheese sandwich."'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1022, 'Cheese and pickle', 8.99,'United Kingdom','Slices of cheese (typically Cheddar) and pickle (a sweet, vinegary chutney with the most popular brand being Branston), sandwiched between two slices of bread.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1023, 'Cheesesteak', 8.99,'United States (Philadelphia, Pennsylvania)','Thinly sliced steak and melted cheese in a long roll, also known as a Philadelphia or Philly cheesesteak.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1024, 'Chicken', 5.99,'','A chicken sandwich can contain chicken cooked in a variety of ways. In the United States, common forms of chicken sandwiches include the grilled chicken breast sandwich, the fried chicken breast sandwich, the chicken salad sandwich, and the shredded (or barbeque) chicken sandwich.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1025, 'Chicken salad', 4.99,'','A sandwich prepared with chicken salad as a filling.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1026, 'Chicken schnitzel', 8.99,'Australia','A sandwich of crumbed, pan-fried chicken fillet, on buttered bread, with shredded iceberg lettuce and mayonnaise.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1027, 'Chickpea salad', 8.99,'United States','Chickpea salad is a vegan sandwich filling with a texture similar to tuna salad. Chickpea salad consists of mashed up chickpeas, vegenaise, onions, and other seasonings. Some versions also include tuna.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1028, 'Chili burger', 8.99,'United States','A hamburger, with the patty topped with chili con carne'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1029, 'Chip butty', 4.99,'United Kingdom','Sliced white bread (or a large, flat bread roll) filled with chips, usually sprinkled with salt and vinegar or tomato ketchup.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1030, 'Chipped beef', 4.99,'U.S. military cuisine','A sandwich prepared with thinly sliced or pressed salted and dried beef. Some chipped beef is smoked to add flavor.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1031, 'Chivito', 8.99,'Uruguay','Filet mignon with mozzarella, tomatoes, mayonnaise, and commonly bacon, black or green olives, fried or hardboiled eggs, and ham'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1032, 'Choripán', 6.99,'South America, Caribbean','Grilled chorizo, usually served on a crusty roll with salsa-type condiments, such as pebre, salsa criolla, or chimichurri. Morcipán is a variety of this using black pudding or blood sausage.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1033, 'Chow mein', 8.99,'United States','A brown gravy base and chow mein mixture on a hamburger-style bun'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1034, 'Churrasco', 7.99,'Chile','Thinly cut steak, grilled and served on a toasted bun. It can be served with almost any other ingredient, in which case its name changes to "churrasco+the new ingredient" (e.g.: churrasco palta = churrasco and avocado)'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1035, 'Club', 8.99,'United States','A triple-decker sandwich made with sliced turkey or chicken, bacon, tomato, and lettuce; usually contains mayonnaise'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1036, 'Corned beef', 7.99,'','Corned beef often served with a condiment such as pickle or mustard.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1037, 'Crisp', 4.99,'United Kingdom','Crisps and occasionally pickles on white bread'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1038, 'Croque-monsieur', 4.99,'France','A grilled ham and cheese (typically Emmental or Gruyère) sandwich, sometimes coated in a mornay or béchamel sauce'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1039, 'Croque-madame', 7.99,'France','Same as a croque-monsieur, but with a fried egg on top.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1040, 'Cuban', 5.99,'United States (Tampa, Florida) and Cuba','Ham, roasted pork, Swiss cheese, pickles, mustard, and sometimes Genoa salami on Cuban bread, usually pressed and warmed in a plancha'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1041, 'Cucumber', 5.99,'United Kingdom','Two thin slices of crustless, lightly buttered white bread, containing paper-thin slices of peeled cucumber'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1042, 'Cudighi', 5.99,'Italy','Spicy cudighi (a Michigan variety of Cotechino Italian sausage), on a long, hard roll, often topped with mozzarella and tomato sauce'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1043, 'Dagwood', 5.99,'United States','Multiple layers containing a wide variety of meats and condiments, named for Dagwood Bumstead of the comic strip Blondie'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1044, 'Deli sandwich', 9.99,'','This sandwich may be ordered at a deli; choices include type of bread (toasted or untoasted,) type of meat (cold cut), type of sliced cheese, vegetable fillings (lettuce, tomato, onion, etc.), and condiments'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1045, 'Denver', 5.99,'United States','A sandwich containing a Denver omelette'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1046, 'Doner kebab', 5.99,'Turkey','Doner kebab is meat cooked on a vertical spit, normally veal or beef but also may be a mixture of these with lamb, and sometimes chicken. This may be served wrapped in a flatbread such as lavash or pita, or as a sandwich.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1047, 'Donkey burger', 7.99,'China','Chopped or shredded savory donkey meat in a bun, sold in Baoding, Hebei Province as street food, and also in high-end restaurants'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1048, 'Doubles', 5.99,'Trinidad and Tobago','Two flat fried bara (bread), containing curried chickpeas or garbanzo beans'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1049, 'Dynamite', 8.99,'United States (Woonsocket, Rhode Island)','Made of ground beef, tomato sauces, spices and many onions and peppers. It is a popular food served at local family gatherings and fundraising benefits, usually made in large quantities.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1050, 'Dyrlægens natmad', 7.99,'Denmark','On a piece of dark rye bread, a layer of leverpostej, topped with a slice of salt beef and a slice of meat aspic, topped with raw onion rings and garden cress.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1051, 'Elvis sandwich', 8.99,'United States','Peanut butter, banana, and bacon'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1052, 'Egg', 9.99,'Worldwide','Generic sandwich: This contains eggs, usually sliced hard boiled eggs or egg salad, but may be made with fried or (more rarely) scrambled egg, topped with the local roe spread, locally called kaviar.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1053, 'Fairy bread', 5.99,'Australia and New Zealand','White bread with nonpareils (= ''sprinkles'' (U.S.) or ''hundreds and thousands'' (U.K.)) on a spread of butter. Often cut into squares or triangles.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1054, 'Falafel', 5.99,'Middle East','Deep-fried balls of ground, seasoned chickpeas topped with salad vegetables, hot sauce, tahini-based sauces, and pickled vegetables, wrapped in or added to the pocket of a split-open pita bread.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1055, 'Fischbrötchen', 5.99,'Germany','Crusty bread rolls filled with fish (most commonly Bismarck or soused herring) and onions'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1056, 'Fool''s Gold Loaf', 4.99,'Colorado, United States','Consists of a single warmed, hollowed-out loaf of bread filled with one jar of creamy peanut butter, one jar of grape jelly, and a pound of bacon. In 1976, Elvis Presley and some of his friends flew to Colorado to consume them.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1057, 'Fluffernutter', 5.99,'United States','Peanut butter and marshmallow creme. Pictured is a fluffernutter sandwich prior to being assembled.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1058, 'Francesinha', 9.99,'Portugal','Wet-cured ham, linguiça, fresh sausage (chipolata), steak or other roast meat, topped with melted cheese, a hot thick tomato, and beer sauce'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1059, 'Francesinha poveira', 6.99,'Portugal','A bun with wet-cured ham, linguiça, and cheese, sauced with butter or margarine, piri-piri, and port wine, whiskey, cognac, or brandy'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1060, 'French dip', 9.99,'United States','Thinly sliced roast beef on a baguette, served hot, usually au jus (with juice)'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1061, 'Fried brain', 8.99,'United States','Sliced calves'' brain on sliced bread'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1062, 'Fruit', 5.99,'Global','Fruit, often fruits such as banana, fig or pineapple served on bread, often with mayonnaise in the United States.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1063, 'Ftira', 4.99,'Malta','A traditional Maltese sandwich made on a large round piece of Maltese ftira bread, topped with tomato paste, tuna, capers, and red onions.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1064, 'Gatsby', 5.99,'South Africa','A deli-style sandwich similar to the hoagie, often containing french fries, with other variations, prepared with masala steak, chicken, polony, Vienna sausages, calamari, fish, or chargrilled steak'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1065, 'Gerber', 7.99,'St. Louis, Missouri, United States','Half section of Italian or French bread with garlic butter, containing ham, provel or provolone cheese, topped with paprika, then toasted'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1066, 'Guajolota', 7.99,'Mexico (Mexico City)','A tamale in a mexican bolillo roll. A very common morning street food in Mexico City. It is also called torta de tamal'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1067, 'Gyro', 8.99,'Greece','Pita gyro or "psomaki gyro," depending on the type of bread used, includes meat roasted on a vertical spit, with tomato, potatoes, raw, often red onion and tzatziki sauce, wrapped in pita or sandwich bread.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1068, 'Hagelslag or vlokken', 4.99,'The Netherlands','Chocolate sprinkles or flakes usually served on buttered bread'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1069, 'Ham', 9.99,'','May be accompanied by cheese or salad. Condiments such as mustard, mayonnaise, or pickle may be present.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1070, 'Ham and cheese', 8.99,'','A common sandwich prepared with ham and sliced cheese. Additional ingredients may include lettuce, tomato, mayonnaise, and other ingredients.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1071, 'Ham and egg bun', 4.99,'Hong Kong','Sliced Danish canned ham with sliced scrambled egg sheet in a halved sweet bun'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1072, 'Hamburger', 6.99,'United States','A ground beef patty, often with vegetables, sauces and other meats, usually on a round bun.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1073, 'Hamdog', 8.99,'','A hot dog wrapped in a beef patty, deep-fried, then covered with chili, a few french fries, and a fried egg'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1074, 'Horseshoe', 8.99,'Springfield, Illinois, United States','A thick-sliced, toasted, open-faced sandwich, it usually contains hamburger patties or ham, but other meat, such as deep-fried pork tenderloin, grilled or fried chicken breast, and fried fish filets, can be used. The meat is topped with french fries and covered with a cheese sauce.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1075, 'Hot brown', 4.99,'United States (Louisville, Kentucky)','Open-faced with turkey and bacon, topped with mornay sauce, and baked or broiled'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1076, 'Hot chicken', 7.99,'Quebec, Canada','Coarsely shredded or sliced chicken, sandwiched between two pieces of sliced bread, and completely covered with gravy.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1077, 'Hot turkey', 4.99,'United States','Often open-faced, sliced turkey on white bread drenched in turkey gravy, often served with mashed potatoes. These are sometimes served at Hofbrau-style restaurants.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1078, 'Ice cream', 7.99,'United States','Vanilla ice cream between thin biscuits, cookies or slices of cake, normally chocolate'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1079, 'Italian beef', 5.99,'United States (Chicago, Illinois)','Thin slices of seasoned, juicy roast beef, often garnished with giardiniera or Italian sweet peppers, on a dense, long Italian-style roll'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1080, 'Italiano', 7.99,'Chile','Not a sandwich, it refers to a set of toppings to put in a sandwich, refers to the colors of the Italian flag: red (tomato), white (mayonnaise) and green (avocado)'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1081, 'Jam', 7.99,'United Kingdom','Buttered bread, with jam (traditionally strawberry), normally eaten at lunchtime or as a quick snack, may also be eaten at breakfast or for high tea'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1082, 'Jambon-beurre', 9.99,'France','A French baguette with butter and ham. Also known as "Parisien," it is the most popular sandwich in France.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1083, 'Jibarito', 8.99,'United States','Meat, cheese, lettuce, and tomato, between flattened, fried green plantains (instead of bread), with garlic-flavored mayonnaise'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1084, 'Jucy Lucy', 8.99,'United States (Minneapolis, Minnesota)','A cheeseburger with the cheese inside the meat patty rather than on top'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1085, 'Katsu sando', 8.99,'Japan','Breaded, deep-fried pork cutlet (tonkatsu)'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1086, 'Kokoretsi', 5.99,'','Lamb or goat intestines, containing seasoned offal'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1087, 'Kottenbutter', 6.99,'Germany','Buttered brown bread with smoked pork sausage (Kottenwurst), fresh onion rings, and spicy mustard'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1088, 'Leberkäse', 6.99,'Bavaria','A meatloaf-like dish which, despite the name, contains neither liver nor cheese. It is commonly served on a Kaiser roll with mustard.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1089, 'Lettuce', 7.99,'','Lettuce and mayonnaise'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1090, 'Limburger sandwich', 8.99,'','They are typically prepared with buttered rye bread, Limburger cheese, sliced onion and mustard. Pictured is Limburger cheese and bread.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1091, 'Lobster roll', 9.99,'Northeastern United States','Lobster meat tossed with either mayonnaise ("cold") or drawn butter ("hot") stuffed into a slit opening at the top of a grilled bread roll or hot dog bun.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1092, 'Lox', 5.99,'United States','Lox on a bagel with cream cheese, thinly sliced onion, capers, and sometimes sliced tomato'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1093, 'Luther burger', 4.99,'United States','A hamburger or cheeseburger on glazed doughnuts instead of a bun'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1094, 'Marmite', 6.99,'United Kingdom','Marmite spread thinly with butter or margarine onto toast or bread'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1095, 'Martino', 7.99,'Belgium','Filet américain (steak tartare) with Worcestershire sauce, pickles, onions, peppers, and martino sauce'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1096, 'Meatball', 9.99,'United States','Meatballs in marinara sauce, with melted Parmesan or provolone cheese, on a long bun or section of Italian loaf. Might include Italian-style accompaniments such as bell peppers, basil, or Italian-dressed lettuce'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1097, 'Medianoche', 6.99,'Cuba','Roast pork, ham, mustard, Swiss cheese, and dill pickles served on sweet bread.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1098, 'Mitraillette', 6.99,'Belgium','French fries and fried meat with sauce on a demi-baguette.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1099, 'Melt', 5.99,'United States','A generic sandwich containing a filling and a layer of cheese, grilled or fried until the cheese is melted'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1100, 'Mettbrötchen', 6.99,'Germany','Open sandwich consisting of a sliced bun, topped with Mett (seasoned minced pork without bacon), frequently with a garnish of raw onion rings or diced raw onion'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1101, 'Mollete', 9.99,'Spain and Mexico','A typical food of Mexico and a kind of bread in Spain. In Mexico, Molletes are prepared with melted cheese and beans with other ingredients, such as salsa, ham, or bacon.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1102, 'Montadito', 4.99,'Spain','Small, usually grilled, and may contain a variety of fillings. Some bars offer a variety of 200 different types of these sandwiches.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1103, 'Monte Cristo', 9.99,'United States','Sliced ham and cheese (usually Emmental or Gruyère) between slices of French toast and batter-fried. In some regions it is sprinkled with powdered sugar and served with jelly or jam). In other regions (New England), it is served savory with French mustard and no powdered sugar.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1104, 'Montreal-style smoked meat', 9.99,'Canada','A sandwich made from cured and smoked brisket with yellow mustard, usually on rye bread.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1105, 'Mortadella', 9.99,'','Any sandwich containing mortadella, a large Italian sausage'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1106, 'Mother-in-law', 9.99,'United States','A hot dog bun containing a Chicago-style corn-roll tamale, topped with chili'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1107, 'Muffuletta', 9.99,'United States','Originated in New Orleans'' Italian-American community, this contains meats, cheeses, and olive salad on a round bun'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1108, 'Naan sandwich', 5.99,'Pakistan','Beef on naan bread.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1109, 'Open-faced sandwich', 7.99,'Nordic','Consists of a single slice of bread with one or more food items on top. See also pizza.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1110, 'Pambazo', 8.99,'Mexico','Made with pambazo bread dipped in a red guajillo pepper sauce and filled with potatoes and chorizo.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1111, 'Pan-bagnat', 4.99,'France','Round bread (bread bagnats) topped with green salad, tomatoes, hard-boiled eggs, tuna, anchovies, cucumbers, fava beans, artichokes, green peppers, radishes, onions, basil, and black olives. Condiments may include garlic, vinegar, olive oil, salt, and pepper. Served chilled.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1112, 'Panini', 9.99,'Italy','In Italy, panino is the word for a sandwich made from bread other than sliced bread, in which case Italians call it a tramezzino. Examples of bread types used are ciabatta, rosetta and baguette. The bread is cut horizontally and filled with deli ingredients such as salami, ham, cheese, mortadella, or other food, and is sometimes pressed by a warming grill. In the United States, United Kingdom, and Canada, the term panini is used to refer to a long pressed and toasted sandwich; there is widespread availability and use of sandwich presses, often known as "panini presses".'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1113, 'Patty melt', 9.99,'United States','Consists of a hamburger patty, pieces of sautéed or grilled onion, and Cheddar or Swiss cheese between two slices of bread'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1114, 'Peanut butter and jelly', 9.99,'United States','Jam is often used in place of jelly. Also known as a PB&J.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1115, 'Pebete', 6.99,'Argentina','A simple Argentine sandwich, traditionally filled with cheese, cured meat, tomato, and mayonnaise. Pebete actually refers to the bread used for the sandwich - a soft oval bun with a spongy inside, and a thin toasted crust.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1116, 'Pimento cheese', 4.99,'Southern United States','A common food preparation in the Southern United States, a spread or relish made with cheese, mayonnaise, pimentos, salt and pepper, blended to either a smooth or chunky paste. Regional variations incorporate additional ingredients. Also eaten in the United Kingdom (see "Tea" in this list) and the Philippines.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1117, 'Pistolette', 6.99,'','A stuffed and fried bread roll (sometimes called stuffed pistolettes) in the Cajun areas around Lafayette. This also refers to a type of submarine-shaped bread about half the size of a baguette that is popular in New Orleans for Vietnamese bánh mì and other sandwiches.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1118, 'Pljeskavica', 6.99,'Balkans','A patty dish popular in the Balkan region of Southeastern Europe, a sandwich utilizes the Pljeskavica patty and bread.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1119, 'Ploughman''s lunch', 6.99,'United Kingdom','A cold meal originating in the United Kingdom, commonly served in pubs. Its core components are (cheddar) cheese, ploughman''s pickle, and bread. It is traditionally eaten with beer.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1120, 'Po'' boy', 8.99,'United States','A crusty bread loaf typically filled with fried seafood or roast beef.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1121, 'Polish boy', 5.99,'United States (Cleveland, Ohio)','Kielbasa sausage in a bun, covered with french fries, barbecue sauce (or hot sauce), and coleslaw'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1122, 'Porilainen', 6.99,'Finland','A half-inch slice of thick sausage, usually with diced red or sweet onion, sliced pickles, ketchup, mustard, and sometimes mayonnaise, on white bread'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1123, 'Pork chop bun', 5.99,'Macau','A popular dish in Macau, the bun is extremely crisp outside and very soft inside, containing a freshly fried pork chop.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1124, 'Pork tenderloin', 6.99,'United States','A thin, tenderized, deep-fried pork loin, served on a bun.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1125, 'Prawn roll', 4.99,'Australia',''); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1126, 'Primanti', 8.99,'Pittsburgh, Pennsylvania, United States','Selection of grilled meats topped with french fries, coleslaw, and tomato on Italian bread'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1127, 'Prosperity Sandwich', 4.99,'United States (St. Louis)','Ham and turkey topped with broiled cheese. Sometimes includes bacon and tomato.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1128, 'Pudgy Pie', 9.99,'United States','This sandwich can be made in a pan. Margarine on the outside, pizza sauce and fillings on the inside. The term "pudgy pie" is sometimes used to refer to pie irons, a gadget used for campfire cooking.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1129, 'Pulled pork sandwich', 5.99,'Southern United States','Form of barbecue in which pork is cooked using a slow cook method until the meat becomes tender enough that it can be "pulled", or easily broken into individual pieces. The pork is often topped with barbecue sauce and vinegar- or mayonnaise-based coleslaw depending on the region'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1130, 'Reuben', 9.99,'United States','Corned beef, sauerkraut, Swiss cheese, topped with Russian or Thousand Island dressing, on rye bread, then grilled'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1131, 'Roti john', 7.99,'Malaysia','Basic ingredients are eggs, chopped onions, sambal paste, salt, and pepper, cooked as an omelette with the bread added on top before it''s fully cooked. Many variations include canned sardines, chicken, beef, or mutton. Garnished with mayo, chili sauce, and cheese.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1132, 'Rou jia mo', 5.99,'China','Stewed pork, chopped finely, and stuffed in mo, a kind of flatbread'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1133, 'Runza', 6.99,'United States','A bun filled with a mixture of (usually) loose meat, cabbage, and cheese. The fillings are baked inside the bread, similar to a kolache. Popular in the Midwestern United States, especially Nebraska.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1134, 'Sailor sandwich', 4.99,'United States (Richmond, Virginia)','Hot pastrami, grilled knockwurst, melted Swiss and hot mustard on rye bread'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1135, 'Sandwich loaf', 6.99,'United States','Alternating layers of bread and filling frosted to resemble a layer cake'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1136, 'De miga', 9.99,'Argentina','Made with single-, double-, or triple-layered, buttered, thin white bread with crust removed, toasted or untoasted, containing thinly sliced meat, as well as eggs, cheese, tomatoes, green peppers, lettuce, olives, and sometimes other vegetables.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1137, 'Salt beef bagel', 6.99,'United Kingdom','Especially noted from Beigel Bake in Brick Lane, east London.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1138, 'Sausage', 8.99,'United Kingdom and Germany','A sausage on a roll or bread, served with a variety of sauces and toppings.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1139, 'Shawarma', 7.99,'The Levant','Flatbread with fillings of beef, spinach, tomatoes, cucumber, and tahini sauce, wrapped and grilled.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1140, 'Shuco', 8.99,'Guatemala','A dry hot dog bun containing guacamole, sliced cabbage, ketchup, mustard and mayonnaise. It''s usually served with a sausage, but it can also be ordered with churrasco or adobado beef. Chopped onions and a variety of hot sauces are also available for the sandwich.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1141, 'Slider', 4.99,'United States','Basically a miniature hamburger about three inches in diameter, but may also contain other ingredients'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1142, 'Sloppy joe', 8.99,'United States','Ground meat, usually beef, cooked with seasoned tomato sauce and served on a round bun.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1143, 'Sloppy joe (New Jersey)', 6.99,'United States','A triple decker rye bread sandwich made with one or more types of sliced deli meat, such as turkey, ham, pastrami, corned beef, roast beef, or sliced beef tongue, along with Swiss cheese, coleslaw, and Russian dressing'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1144, 'Smörgåstårta', 7.99,'Sweden','Multiple layers of white or light rye bread containing creamy fillings, such as egg and mayonnaise, liver paté, olives, shrimp, ham, various cold cuts, caviar, tomato, cucumber, cheese, and smoked salmon'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1145, 'Smørrebrød', 4.99,'Denmark','Open-faced, buttered dark rye bread with cold cuts, pieces of meat or fish, cheese, or spreads'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1146, 'Sol over Gudhjem', 5.99,'Denmark','An open-faced sandwich on rugbrød, with smoked herring, chives, and a raw egg yolk'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1147, 'Souvlaki', 8.99,'Greece','A sizzling skewer of lamb, beef, pork, or chicken roasted, shaved off the spit, and marinade ranging from hot barbecue to sweet, all laid out on a rolled pita bread, sprinkled with your choice of lettuce, tomato, cheese, red onion, and oregano, and doused with tzatziki sauce.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1148, 'Spiedie', 6.99,'United States','Marinated cubes of chicken, pork, lamb, veal, venison, or beef, grilled on a spit, and served in a bun'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1149, 'St. Paul', 4.99,'St. Louis, Missouri, United States','An egg foo young patty (containing bean sprouts and minced white onions), dill pickle slices, white onion, mayonnaise, lettuce, and tomato on white bread'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1150, 'Steak bomb', 7.99,'United States','A grilled, over-stuffed submarine roll, containing shaved steak, and topped with salami, melted provolone, sautéed onions, and bell peppers.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1151, 'Steak burger', 5.99,'','Typically prepared with ground, sliced or minced beefsteak meat. Additional meats are also used.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1152, 'Steak', 8.99,'United States','Prepared with cooked steak, served on bread or a roll. Steak sandwiches may include toppings such as cheese, onions, mushrooms, bell peppers, hot peppers, tomatoes, and in some instances fried eggs, cole slaw, or french fries.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1153, 'Submarine/Sub/Baguette', 7.99,'United States','A generic sandwich served on a long French or Italian roll which may contain a wide variety of sliced meats, vegetables, and condiments, including lettuce, tomato, sweet peppers, onions, olives, and mushrooms. Also known regionally as a hero, a hoagie, a grinder, or a zep, among other names. In the United Kingdom it is named a baguette, after the French bread used to make it.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1154, 'Tavern', 4.99,'United States','Common in Iowa, consists of a mixture of unseasoned ground beef and sauteed onions, sometimes topped with pickles, ketchup, and mustard, on a bun'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1155, 'Tea', 8.99,'United Kingdom','Thinly sliced white bread with crusts removed, lightly buttered, containing a light spread of cream cheese or mayonnaise mixture, and often radishes, cucumber, asparagus, or watercress. Other fillings may be pimento cheese, ham with mustard, smoked salmon, fruit jam, curried chicken, and egg salad.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1156, 'TLT (Tempeh, Lettuce, and Tomato)', 9.99,'United States','Vegan version of the BLT: smoky baked tempeh, lettuce, tomato, and avocado, served on toasted sourdough bread'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1157, 'Toast', 8.99,'UK','A thin slice of toast between two thin slices of bread with a layer of butter, and salt and pepper to taste.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1158, 'Toast Hawaii', 6.99,'Germany','A slice of toast with ham, a maraschino cherry in the middle of a pineapple slice, and cheese, grilled from above, so the cheese starts to melt.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1159, 'Toastie', 8.99,'','Two slices of bread with various fillings, toasted in a sandwich toaster.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1160, 'Tofu Sandwich', 4.99,'United States','Tofu, typically broiled or baked, with vegetables.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1161, 'Tongue toast', 5.99,'','Sautéed beef tongue and scrambled eggs, served open-faced'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1162, 'Torta', 7.99,'México','A mexican roll (either telera or bolillo) spread with mayo and/or refried beans and stuffed with various sliced meats, cheeses, vegetables (usually tomatoes, onions and avocado) and your choice of pickled jalapeños or chipotle peppers. It can either be made ahead and tightly wrapped for a packed lunch or (if made to order) grilled on both sides with some butter.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1163, 'Torta ahogada', 9.99,'México (Guadalajara)','Birote bread (similar to bolillo) filled with "carnitas" (deep-fried pork), shredded chicken or other meats, beans and cheese. The torta is then dipped in a very hot tomato and dried chile de árbol sauce and topped with pickled sliced onions.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1164, 'Tramezzino', 9.99,'Italy','Triangular white bread with the crusts removed, with fillings such as tuna and olive and prosciutto, served in Italian bars throughout the day'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1165, 'Tripleta', 5.99,'Puerto Rico','Although there are numerous variations, the main distinction is a combination of three meats, typically grilled, such as beef (usually churrasco steak or cube steak), roast pork (pernil), chicken, and ham. Condiments may include some combination of mustard, ketchup, and mayonnaise, often combined to create a “special” sauce. Popular toppings include thin crispy fried potato sticks or shoestring potatoes, thinly sliced cabbage, lettuce, onion, tomato, pickles, and Swiss cheese. The sandwich is often toasted in a sandwich press.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1166, 'Tuna', 4.99,'United States','Usually made with tuna salad, which may include mayonnaise, sweetcorn, cucumber, or celery. Other common variations include the tuna boat and tuna melt.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1167, 'Vada pav', 8.99,'India','A potato fritter coated in chickpea flour (batata vada) in a bun'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1168, 'Vegemite', 7.99,'Australia','Vegemite is a dark brown Australian food paste made from used brewers'' yeast extract, a by-product of beer manufacturing, various vegetables, wheat, and spice additives. It is a spread for sandwiches, toast, crumpets, and cracker biscuits, as well as a filling for pastries.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1169, 'Vegetable', 4.99,'','Many types of vegetables are used to prepare vegetable sandwiches.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1170, 'Welsh rarebit', 9.99,'United Kingdom','A hot melted cheese sauce, poured over slices (or other pieces) of toasted bread. The hot cheese sauce may also be served in a bowl accompanied by the toast.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1171, 'Wrap', 8.99,'','Flat bread (often a tortilla) tightly wrapped around the sandwich filling with the ends tucked in to form a neat bundle. Fillings can vary widely.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1172, 'Wurstbrot (sausage bread)', 5.99,'Germany','A simple and common German sandwich prepared with thin slices of lunch meat or sausage, sometimes buttered.'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1173, 'Yakisoba-pan', 7.99,'Japan','A hot dog bun stuffed with fried noodles, frequently topped with pickles, such as beni shoga, with mayonnaise'); INSERT INTO sandwiches (id, name, price, origin, description) VALUES(1174, 'Zapiekanka', 6.99,'Poland','A halved baguette or other bread usually topped with mushrooms and cheese, ham or other meats, and vegetables'); ; -- customers INSERT INTO `customers` (`id`,`name`,`email`) VALUES (1,"Colt Hart","eu.nibh.vulputate@semeget.net"),(2,"Theodore Mills","ligula.Donec.luctus@Vivamusnon.org"),(3,"Rhoda Vance","diam.dictum@rutrumjustoPraesent.ca"),(4,"Colby Clay","pharetra@porttitorinterdumSed.ca"),(5,"Maile Torres","Sed.pharetra@nectempus.edu"),(6,"Hanna Simpson","eu@idrisus.com"),(7,"Adrian Dodson","Fusce@magnaPraesentinterdum.net"),(8,"Shelly Bridges","non.justo@dictum.ca"),(9,"Yoshi Bennett","mauris@Crasconvallis.com"),(10,"Blossom Mosley","consectetuer.ipsum.nunc@egestasblanditNam.org"); INSERT INTO `customers` (`id`,`name`,`email`) VALUES (11,"Oprah Horton","quis.diam.Pellentesque@ultriciesadipiscing.ca"),(12,"Rhoda Jacobson","pellentesque.eget@orciluctus.co.uk"),(13,"Uta Workman","vitae.sodales@mattis.com"),(14,"Cameron Rivera","Ut.nec.urna@odioPhasellus.org"),(15,"Bruce Woods","non.luctus@NuncmaurisMorbi.com"),(16,"Tanek Santos","consequat.auctor.nunc@natoquepenatibus.net"),(17,"Stuart Vega","commodo.hendrerit.Donec@et.net"),(18,"Hermione Maldonado","augue.malesuada.malesuada@lorem.edu"),(19,"Iona Simpson","metus@elementumlorem.org"),(20,"Wade Coleman","auctor@velitQuisque.co.uk"); INSERT INTO `customers` (`id`,`name`,`email`) VALUES (21,"Lionel Vargas","egestas.a.scelerisque@facilisisfacilisismagna.co.uk"),(22,"Madeline Reynolds","feugiat@lectusante.net"),(23,"Akeem Kennedy","tincidunt.nibh@orcitinciduntadipiscing.net"),(24,"Quinn Ewing","et.arcu.imperdiet@eratin.com"),(25,"Ulysses Hudson","arcu.Aliquam.ultrices@faucibusorciluctus.org"),(26,"Cherokee Tanner","odio.tristique.pharetra@conubianostraper.ca"),(27,"Cameron Burton","ipsum@anteiaculis.edu"),(28,"Ferris Erickson","adipiscing@scelerisquenequesed.edu"),(29,"Ivy Livingston","elit.Nulla.facilisi@semmollis.net"),(30,"Rhonda Curtis","lorem.lorem@nibhAliquam.ca"); INSERT INTO `customers` (`id`,`name`,`email`) VALUES (31,"Indira Suarez","dignissim@pharetraNam.net"),(32,"John Drake","Curae.Donec@Cras.ca"),(33,"Adrienne Sandoval","orci.adipiscing.non@estac.co.uk"),(34,"Melvin Finch","feugiat.nec.diam@laoreetipsumCurabitur.ca"),(35,"Zane Parrish","lectus@massa.co.uk"),(36,"Belle Short","mauris.id@montesnascetur.com"),(37,"Irene Carver","leo.in@neque.co.uk"),(38,"Renee Adkins","Nulla.dignissim.Maecenas@ipsum.net"),(39,"Tashya Osborne","vitae.dolor.Donec@ac.co.uk"),(40,"Lillian Larsen","tristique.senectus@nuncsed.com"); INSERT INTO `customers` (`id`,`name`,`email`) VALUES (41,"Ora Mann","orci@Loremipsumdolor.org"),(42,"Bernard Cash","nunc.sit.amet@posuereat.co.uk"),(43,"Dane Stafford","mi@porttitortellus.org"),(44,"Marah West","est.Nunc.ullamcorper@pellentesque.co.uk"),(45,"Gabriel Carlson","id.ante.Nunc@sedleo.com"),(46,"Dale Fry","magna.Suspendisse.tristique@ante.org"),(47,"Eugenia Roman","Integer.in@Aenean.com"),(48,"Alma Salas","Nunc@nullavulputate.co.uk"),(49,"Nayda Shields","sem@Phasellusliberomauris.edu"),(50,"April Buckley","massa.Integer.vitae@pharetraQuisque.ca"); INSERT INTO `customers` (`id`,`name`,`email`) VALUES (51,"Clio Carter","hendrerit@nuncQuisqueornare.org"),(52,"Angelica Ortiz","justo.nec@nec.edu"),(53,"Aspen Fuentes","velit@pharetra.edu"),(54,"Lucius Gallagher","gravida.molestie@fermentumfermentumarcu.ca"),(55,"Aristotle Avery","ipsum@eunibhvulputate.com"),(56,"Mohammad Carrillo","aliquet.libero.Integer@at.ca"),(57,"Alice Bray","consequat.nec@mattissemperdui.ca"),(58,"Jescie Peck","sagittis.augue.eu@felisorciadipiscing.edu"),(59,"Mariam Juarez","fermentum.convallis.ligula@Integer.org"),(60,"Harrison Klein","non.quam.Pellentesque@nonjusto.edu"); INSERT INTO `customers` (`id`,`name`,`email`) VALUES (61,"Sloane Goodwin","Proin@Utnecurna.org"),(62,"Stacey Kirk","hendrerit.consectetuer.cursus@Nuncuterat.ca"),(63,"Mannix Owen","a.malesuada@semperet.com"),(64,"Martin Dunlap","tempus.scelerisque@Vestibulumuteros.org"),(65,"Lesley Keith","vitae.diam.Proin@nuncid.com"),(66,"Christine Medina","lobortis.Class.aptent@nonnisi.co.uk"),(67,"Yetta Duke","sed@sapiengravidanon.edu"),(68,"Hayley Foster","laoreet.ipsum@quismassaMauris.com"),(69,"Karleigh Jacobson","massa.non.ante@Fusce.co.uk"),(70,"Scarlett Odonnell","orci@lacusQuisqueimperdiet.edu"); INSERT INTO `customers` (`id`,`name`,`email`) VALUES (71,"Kendall Rocha","quis@maurisut.com"),(72,"Galvin Becker","et.ipsum.cursus@Nulla.net"),(73,"Zeus Trujillo","scelerisque.mollis@id.ca"),(74,"Tate Lowery","urna.Nunc.quis@nequeNullamut.edu"),(75,"Mary Moore","sem@egestasa.co.uk"),(76,"Yuri Oneal","Aliquam.vulputate.ullamcorper@disparturientmontes.co.uk"),(77,"Mariko Cameron","magna@luctus.net"),(78,"Donovan Gomez","ullamcorper.eu@anteblandit.net"),(79,"Abigail Shepard","lobortis.Class.aptent@Suspendisseac.com"),(80,"Armando Le","mattis.semper@luctuset.co.uk"); INSERT INTO `customers` (`id`,`name`,`email`) VALUES (81,"Claudia Crane","ipsum@viverraMaecenas.org"),(82,"Buffy Jennings","tellus@pharetra.net"),(83,"Serina Booker","amet.faucibus.ut@magna.net"),(84,"Donna Molina","Donec.porttitor@fames.com"),(85,"Alexa Herring","mi@variuset.net"),(86,"Sigourney Ramsey","ut@Intinciduntcongue.edu"),(87,"Cadman Huffman","magna.Suspendisse@inconsectetueripsum.org"),(88,"Cheryl Edwards","neque.venenatis@egestasAliquam.co.uk"),(89,"Jonah Griffin","enim.Curabitur@Maecenas.com"),(90,"Prescott Nelson","ultrices.posuere.cubilia@metusAeneansed.edu"); INSERT INTO `customers` (`id`,`name`,`email`) VALUES (91,"Doris Valdez","sit@nonquamPellentesque.net"),(92,"Marny Boyer","Aliquam.gravida@inaliquet.net"),(93,"Lois Valdez","nisi.magna.sed@arcuVestibulumante.edu"),(94,"Vivian Mendoza","dignissim.lacus.Aliquam@Nullam.org"),(95,"Madeson Silva","dictum@aliquetvelvulputate.edu"),(96,"Benedict Todd","tristique@Donec.co.uk"),(97,"Yvonne Brewer","cursus.non.egestas@adipiscingnon.com"),(98,"Morgan Hoffman","nec.ante@adipiscingelit.net"),(99,"Zorita Rutledge","augue.eu.tellus@egestasAliquam.ca"),(100,"Anne Slater","nibh@Donec.org");
254.88601
678
0.76084
3cb293f017601103d72ef677097c4db29681ba5a
858,969
sql
SQL
Code/FACES/src/sql/accounts.sql
nasa/SCRD
569d063b7df4b2a9e9054bea37edaa6455f1293e
[ "Apache-2.0" ]
1
2015-03-10T08:58:40.000Z
2015-03-10T08:58:40.000Z
Code/FACES/src/sql/accounts.sql
nasa/SCRD
569d063b7df4b2a9e9054bea37edaa6455f1293e
[ "Apache-2.0" ]
null
null
null
Code/FACES/src/sql/accounts.sql
nasa/SCRD
569d063b7df4b2a9e9054bea37edaa6455f1293e
[ "Apache-2.0" ]
null
null
null
INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number, last_action, last_action_time) VALUES(1, false, 'FERS', 1, 1, 354312.44, 1, 2, true, true, 'Tina Sullivan', '2013-11-29', '2013-02-18', '1926-10-21', 1, '909219', 'Provide final fix', '2013-11-15'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(2, false, 'FERS', 1, 2, 343008.78, 2, 1, true, true, 'Jacqueline Weaver', '2013-10-06', '2013-10-16', '1958-11-1', 2, '919259'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(3, false, 'FERS', 1, 3, 280711.45, 3, 2, true, true, 'Juan Fox', '2013-04-24', '2013-05-03', '1930-5-17', 3, '964211'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(4, false, 'FERS', 1, 4, 435222.43, 4, 1, false, true, 'Albert Adams', '2013-04-12', '2012-12-31', '1937-9-4', 4, '954165'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(5, false, 'FERS', 1, 5, 328984.57, 5, 1, false, true, 'Martin Nichols', '2013-08-25', '2013-09-09', '1963-5-1', 5, '988972'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(6, false, 'FERS', 1, 6, 445288.9, 6, 1, true, false, 'Elizabeth Medina', '2013-08-09', '2013-05-07', '1970-4-11', 6, '926080'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(7, false, 'FERS', 1, 7, 381404.72, 7, 2, false, false, 'Phillip Hamilton', '2013-01-21', '2013-02-23', '1972-11-5', 7, '906794'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(8, false, 'FERS', 1, 8, 424859.08, 8, 1, false, true, 'Denise Meyer', '2013-07-03', '2012-12-31', '1927-11-26', 8, '913311'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(9, false, 'FERS', 1, 9, 438900.38, 9, 2, true, false, 'Sean Cunningham', '2013-04-29', '2013-11-05', '1952-12-5', 9, '942665'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(10, false, 'FERS', 1, 10, 274082.27, 10, 1, true, true, 'Bruce Weaver', '2013-01-14', '2013-07-31', '1955-4-10', 10, '925542'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(11, false, 'FERS', 1, 11, 285823.52, 11, 2, false, true, 'Timothy Richards', '2013-01-06', '2013-06-23', '1966-7-25', 11, '995373'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(12, false, 'FERS', 1, 12, 397607.1, 12, 2, false, true, 'Virginia Gardner', '2013-06-11', '2013-01-12', '1958-7-15', 12, '977602'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(13, false, 'FERS', 1, 13, 468146.43, 13, 1, false, false, 'Donald Smith', '2012-12-20', '2013-05-20', '1962-11-14', 13, '977557'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(14, false, 'FERS', 1, 14, 279608.64, 14, 1, true, true, 'Stephanie Perry', '2013-12-09', '2013-07-03', '1971-5-30', 14, '977140'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(15, false, 'FERS', 1, 15, 474574.69, 15, 1, true, true, 'Brenda Mendoza', '2013-02-10', '2012-12-18', '1961-2-25', 15, '991673'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(16, false, 'FERS', 1, 16, 228273.82, 16, 2, false, false, 'Carlos Dunn', '2013-02-11', '2013-03-02', '1923-1-7', 16, '994523'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(17, false, 'FERS', 1, 17, 318090.91, 17, 2, true, false, 'Sarah Peters', '2013-05-09', '2013-05-01', '1921-1-31', 17, '950824'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(18, false, 'FERS', 1, 18, 404415.81, 18, 2, true, false, 'Julie Murphy', '2013-12-02', '2013-04-09', '1979-10-18', 18, '991470'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(19, false, 'FERS', 1, 19, 480927.54, 19, 2, false, true, 'Samuel Coleman', '2013-06-05', '2013-07-31', '1951-2-14', 19, '996088'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(20, false, 'FERS', 1, 20, 240875.94, 20, 2, false, true, 'James Pierce', '2013-10-24', '2013-05-31', '1976-9-27', 20, '972208'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(21, false, 'FERS', 1, 21, 447051.39, 21, 2, true, true, 'Carol Frazier', '2013-02-16', '2013-05-01', '1956-2-29', 21, '977292'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(22, false, 'FERS', 1, 22, 464952.56, 22, 2, true, false, 'Jacqueline Weaver', '2013-11-28', '2013-04-10', '1952-4-22', 22, '929654'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(23, false, 'FERS', 1, 23, 390599.12, 23, 1, true, true, 'Judy Jordan', '2013-03-26', '2013-04-13', '1964-12-2', 23, '984876'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(24, false, 'FERS', 1, 24, 251186.32, 24, 1, false, true, 'Louis Mills', '2013-02-28', '2013-04-04', '1921-9-17', 24, '998015'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(25, false, 'FERS', 1, 25, 358372.91, 25, 2, true, true, 'Kelly Sullivan', '2013-01-17', '2013-04-10', '1952-7-22', 25, '936842'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(26, false, 'FERS', 1, 26, 433836.69, 26, 2, true, false, 'Joe Murray', '2013-11-16', '2013-10-26', '1923-12-27', 26, '919265'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(27, false, 'FERS', 1, 27, 497063.4, 27, 1, true, true, 'Ronald Graham', '2013-05-10', '2013-08-24', '1961-4-5', 27, '914940'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(28, false, 'FERS', 1, 28, 492619.36, 28, 1, true, true, 'Robin Torres', '2013-10-27', '2013-09-10', '1953-12-11', 28, '915076'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(29, false, 'FERS', 1, 29, 468499.76, 29, 2, true, true, 'Charles Bryant', '2013-09-06', '2013-05-09', '1921-11-20', 29, '929702'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(30, false, 'FERS', 1, 30, 432645.95, 30, 2, false, false, 'Samuel Coleman', '2013-01-30', '2013-05-31', '1958-9-13', 30, '941875'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(31, false, 'FERS', 1, 31, 298527.41, 31, 1, false, false, 'Kathryn Ortiz', '2013-04-18', '2013-06-21', '1964-10-9', 31, '987992'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(32, false, 'FERS', 1, 32, 331831.13, 32, 1, false, true, 'Jean Fernandez', '2013-03-02', '2013-09-26', '1951-4-2', 32, '945115'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(33, false, 'FERS', 1, 33, 339686.94, 33, 2, true, false, 'Lois Cox', '2013-03-11', '2013-03-18', '1951-12-12', 33, '976507'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(34, false, 'FERS', 1, 34, 313794.45, 34, 1, false, false, 'Michelle Fisher', '2013-01-14', '2013-11-03', '1935-5-17', 34, '910967'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(35, false, 'FERS', 1, 35, 370491.06, 35, 2, false, false, 'Stephanie Ward', '2013-04-01', '2013-08-03', '1929-7-10', 35, '919849'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(36, false, 'FERS', 1, 36, 295845.85, 36, 2, true, false, 'Denise Young', '2013-06-17', '2013-04-05', '1969-9-20', 36, '911961'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(37, false, 'FERS', 1, 37, 374010.76, 37, 2, true, false, 'Amy Richards', '2013-11-23', '2013-04-10', '1972-5-20', 37, '947402'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(38, false, 'FERS', 1, 38, 258194.16, 38, 2, true, false, 'Christina Parker', '2013-09-17', '2013-09-24', '1951-7-28', 38, '910098'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(39, false, 'FERS', 1, 39, 267971.89, 39, 2, false, true, 'Rachel Harvey', '2013-10-15', '2012-12-26', '1950-10-27', 39, '973616'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(40, false, 'FERS', 1, 40, 301406.14, 40, 1, false, true, 'Kelly Sullivan', '2013-01-10', '2013-08-13', '1969-4-22', 40, '902458'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(41, false, 'FERS', 1, 41, 380982.49, 41, 2, true, true, 'Dorothy Barnes', '2013-02-23', '2013-10-06', '1940-9-30', 41, '978464'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(42, false, 'FERS', 1, 42, 388419.56, 42, 2, true, true, 'William Coleman', '2013-11-02', '2013-05-13', '1926-10-7', 42, '928016'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(43, false, 'FERS', 1, 43, 332200.91, 43, 2, true, true, 'Billy Franklin', '2013-04-20', '2013-11-09', '1932-10-20', 43, '913307'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(44, false, 'FERS', 1, 44, 334338.97, 44, 2, true, true, 'Jacqueline Perry', '2013-01-24', '2013-02-27', '1947-9-7', 44, '946860'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(45, false, 'FERS', 1, 45, 344084.74, 45, 1, true, true, 'Bobby Perry', '2013-09-02', '2013-01-08', '1922-11-15', 45, '916148'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(46, false, 'FERS', 1, 46, 263594.98, 46, 1, true, false, 'Anne Stephens', '2012-12-13', '2013-05-14', '1953-11-6', 46, '945357'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(47, false, 'FERS', 1, 47, 345800.48, 47, 1, false, false, 'Robin Cunningham', '2013-09-20', '2013-07-02', '1968-10-27', 47, '950139'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(48, false, 'FERS', 1, 48, 411496.48, 48, 2, false, true, 'Andrea Taylor', '2013-03-17', '2013-10-14', '1936-1-3', 48, '921036'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(49, false, 'FERS', 1, 49, 417241.06, 49, 1, true, false, 'Richard Collins', '2013-05-11', '2013-08-22', '1945-9-25', 49, '985131'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(50, false, 'FERS', 1, 50, 435006.32, 50, 1, false, true, 'Cheryl Medina', '2012-12-31', '2013-07-31', '1934-11-9', 50, '977757'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(51, false, 'FERS', 1, 51, 341312.67, 51, 1, false, false, 'Stephanie Perry', '2013-08-10', '2013-02-16', '1955-3-9', 51, '921738'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(52, false, 'FERS', 1, 52, 412461.24, 52, 1, false, true, 'Sara Stevens', '2013-04-21', '2013-09-08', '1955-8-26', 52, '921426'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(53, false, 'FERS', 1, 53, 453705.64, 53, 2, true, false, 'Jean Stephens', '2013-04-16', '2013-05-02', '1956-11-10', 53, '964985'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(54, false, 'FERS', 1, 54, 312948.81, 54, 1, false, true, 'Norma Spencer', '2012-12-31', '2013-02-22', '1941-8-8', 54, '931458'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(55, false, 'FERS', 1, 55, 282826.19, 55, 2, true, false, 'Beverly Little', '2013-06-09', '2013-04-06', '1955-12-9', 55, '944227'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(56, false, 'FERS', 1, 56, 367410.35, 56, 2, false, true, 'Kelly Rose', '2013-05-17', '2013-07-25', '1931-9-13', 56, '952037'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(57, false, 'FERS', 1, 57, 200243.69, 57, 1, false, false, 'Jacqueline Weaver', '2013-09-18', '2013-07-10', '1957-6-29', 57, '930361'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(58, false, 'FERS', 1, 58, 494858.33, 58, 2, true, false, 'Lois Cox', '2013-06-07', '2013-08-17', '1932-12-20', 58, '977904'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(59, false, 'FERS', 1, 59, 407168.39, 59, 1, true, false, 'Janice Chavez', '2013-09-28', '2013-05-13', '1928-12-10', 59, '957413'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(60, false, 'FERS', 1, 60, 350622.1, 60, 2, true, true, 'Howard Griffin', '2013-07-08', '2013-06-17', '1953-1-27', 60, '990447'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(61, false, 'FERS', 1, 61, 436638.43, 61, 1, true, true, 'Jane Thompson', '2013-10-24', '2013-03-30', '1931-9-28', 61, '968373'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(62, false, 'FERS', 1, 62, 470957.1, 62, 1, true, false, 'Phyllis Diaz', '2013-02-14', '2013-05-26', '1923-9-30', 62, '935704'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(63, false, 'FERS', 1, 63, 235371.66, 63, 2, true, false, 'Norma Spencer', '2013-08-07', '2013-08-27', '1942-11-14', 63, '989741'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(64, false, 'FERS', 1, 64, 243894.27, 64, 2, false, true, 'Matthew Richards', '2013-05-07', '2013-01-05', '1968-2-11', 64, '988122'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(65, false, 'FERS', 1, 65, 357158.55, 65, 2, true, false, 'Samuel Morrison', '2013-11-12', '2013-02-24', '1923-1-25', 65, '929301'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(66, false, 'FERS', 1, 66, 469589.33, 66, 1, false, false, 'Roy Hunt', '2013-11-26', '2013-03-15', '1935-1-29', 66, '946177'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(67, false, 'FERS', 1, 67, 407785.7, 67, 1, true, true, 'Earl Greene', '2013-02-27', '2013-11-04', '1938-4-21', 67, '974325'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(68, false, 'FERS', 1, 68, 283867.12, 68, 1, true, true, 'Betty White', '2013-06-18', '2013-08-24', '1961-11-21', 68, '951882'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(69, false, 'FERS', 1, 69, 414201.57, 69, 2, false, true, 'Brian Harper', '2013-01-26', '2013-11-17', '1954-4-13', 69, '964730'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(70, false, 'FERS', 1, 70, 211124.74, 70, 1, true, false, 'Bobby Perry', '2013-06-18', '2013-02-09', '1980-3-8', 70, '952160'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(71, false, 'FERS', 1, 71, 448110.91, 71, 1, false, true, 'Marie Harper', '2013-06-23', '2013-08-22', '1961-11-30', 71, '993534'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(72, false, 'FERS', 1, 72, 425609.88, 72, 2, true, false, 'Jack Dunn', '2013-05-11', '2013-10-11', '1936-6-10', 72, '984326'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(73, false, 'FERS', 1, 73, 253241.01, 73, 2, false, true, 'Diana Reynolds', '2013-01-04', '2013-03-29', '1938-6-23', 73, '975442'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(74, false, 'FERS', 1, 74, 241211.63, 74, 1, false, true, 'Judy Perry', '2013-06-21', '2013-02-17', '1949-7-12', 74, '916826'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(75, false, 'FERS', 1, 75, 281492.76, 75, 2, false, false, 'Christina Carpenter', '2013-04-14', '2013-09-20', '1961-2-27', 75, '908440'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(76, false, 'FERS', 1, 76, 213784.87, 76, 2, true, false, 'Lois Cox', '2013-03-27', '2013-04-17', '1943-8-24', 76, '988152'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(77, false, 'FERS', 1, 77, 345095.34, 77, 1, true, true, 'Cheryl Medina', '2013-01-05', '2013-11-15', '1952-6-7', 77, '920359'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(78, false, 'FERS', 1, 78, 362897.9, 78, 2, false, true, 'Paula Welch', '2013-02-21', '2013-06-29', '1925-10-22', 78, '982435'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(79, false, 'FERS', 1, 79, 458374.2, 79, 2, false, false, 'Christina Scott', '2013-02-08', '2013-12-06', '1921-5-28', 79, '970785'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(80, false, 'FERS', 1, 80, 371573.24, 80, 2, false, false, 'Edward Kelly', '2013-01-30', '2013-01-16', '1923-3-27', 80, '959019'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(81, false, 'FERS', 1, 81, 460026.83, 81, 1, false, true, 'Theresa Willis', '2013-03-02', '2013-11-05', '1977-1-13', 81, '983795'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(82, false, 'FERS', 1, 82, 227447.15, 82, 1, true, true, 'Peter Lynch', '2013-10-31', '2012-12-22', '1922-12-30', 82, '914252'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(83, false, 'FERS', 1, 83, 281741.36, 83, 1, false, false, 'Betty White', '2013-05-17', '2013-09-06', '1927-9-13', 83, '973987'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(84, false, 'FERS', 1, 84, 382829.5, 84, 2, false, true, 'Stephanie Perry', '2013-02-16', '2013-10-22', '1921-11-11', 84, '987692'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(85, false, 'FERS', 1, 85, 441087.88, 85, 1, true, false, 'Alan Williams', '2013-08-16', '2013-05-10', '1948-2-3', 85, '918749'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(86, false, 'FERS', 1, 86, 495232.37, 86, 1, true, false, 'Linda Tucker', '2013-04-08', '2013-06-17', '1941-10-25', 86, '916715'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(87, false, 'FERS', 1, 87, 484797.61, 87, 1, true, true, 'Pamela Chavez', '2013-07-03', '2013-02-08', '1979-9-26', 87, '965599'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(88, false, 'FERS', 1, 88, 366846.73, 88, 2, true, true, 'Barbara Alexander', '2013-03-15', '2013-10-22', '1946-10-12', 88, '975147'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(89, false, 'FERS', 1, 89, 215653.86, 89, 1, false, false, 'Janice Rogers', '2013-12-02', '2013-08-21', '1935-12-8', 89, '954353'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(90, false, 'FERS', 1, 90, 312745.74, 90, 2, false, true, 'Sarah Chavez', '2013-11-04', '2013-04-16', '1938-2-1', 90, '927726'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(91, false, 'FERS', 1, 91, 314218.45, 91, 1, false, false, 'Carl Andrews', '2013-09-17', '2013-05-17', '1966-12-4', 91, '971218'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(92, false, 'FERS', 1, 92, 367178.46, 92, 1, false, false, 'Anna Long', '2013-09-10', '2013-12-01', '1939-6-21', 92, '936738'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(93, false, 'FERS', 1, 93, 228638.11, 93, 2, false, false, 'Cheryl Austin', '2012-12-19', '2013-03-06', '1958-3-3', 93, '990911'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(94, false, 'FERS', 1, 94, 251168.88, 94, 2, false, false, 'Martin Lawson', '2013-04-22', '2013-09-13', '1928-12-29', 94, '928643'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(95, false, 'FERS', 1, 95, 222854.92, 95, 2, true, false, 'Philip Henry', '2013-11-13', '2013-01-29', '1977-8-2', 95, '906650'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(96, false, 'FERS', 1, 96, 476850.5, 96, 2, false, false, 'Donald King', '2013-05-09', '2013-05-18', '1922-1-5', 96, '938794'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(97, false, 'FERS', 1, 97, 219261.77, 97, 2, false, false, 'Scott Rogers', '2013-01-04', '2012-12-24', '1978-2-6', 97, '935317'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(98, false, 'FERS', 1, 98, 351334.78, 98, 1, false, true, 'Samuel Morrison', '2013-05-11', '2013-01-15', '1926-4-26', 98, '906827'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(99, false, 'FERS', 1, 99, 442411.3, 99, 1, true, false, 'Eric Austin', '2013-06-30', '2013-02-09', '1950-4-20', 99, '984979'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(100, false, 'FERS', 1, 100, 482523.25, 100, 1, false, false, 'Richard Myers', '2013-12-07', '2013-09-01', '1970-1-24', 100, '933766'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(101, false, 'FERS', 1, 101, 450605.51, 101, 1, true, true, 'Mark Hanson', '2013-03-18', '2013-03-18', '1967-5-30', 101, '937219'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(102, false, 'FERS', 1, 102, 418430.98, 102, 1, true, true, 'Donna Harper', '2013-08-16', '2013-11-07', '1955-12-20', 102, '937500'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(103, false, 'FERS', 1, 103, 306706.76, 103, 2, true, false, 'Bobby Holmes', '2013-10-11', '2013-05-24', '1941-10-30', 103, '972745'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(104, false, 'FERS', 1, 104, 239594.63, 104, 1, true, true, 'Diana Andrews', '2013-11-05', '2013-09-05', '1941-12-11', 104, '965322'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(105, false, 'FERS', 1, 105, 233616.66, 105, 2, true, true, 'Virginia Gardner', '2013-11-07', '2013-11-22', '1966-7-9', 105, '984011'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(106, false, 'FERS', 1, 106, 283172.53, 106, 1, true, true, 'Carl Palmer', '2013-11-07', '2013-04-06', '1924-1-31', 106, '978945'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(107, false, 'FERS', 1, 107, 476544.68, 107, 2, true, true, 'Anna Long', '2013-07-16', '2013-04-17', '1933-1-8', 107, '976915'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(108, false, 'FERS', 1, 108, 448295.6, 108, 2, false, false, 'Tina Dixon', '2013-07-25', '2013-09-30', '1930-11-27', 108, '918119'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(109, false, 'FERS', 1, 109, 461890.38, 109, 1, false, true, 'Alice Morrison', '2013-08-06', '2012-12-27', '1955-5-18', 109, '937510'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(110, false, 'FERS', 1, 110, 476182.52, 110, 1, true, true, 'Heather Stanley', '2013-06-22', '2013-12-08', '1953-3-31', 110, '973081'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(111, false, 'FERS', 1, 111, 453920.89, 111, 2, true, true, 'Carol Cunningham', '2013-05-19', '2013-06-12', '1925-1-11', 111, '920040'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(112, false, 'FERS', 1, 112, 317314.58, 112, 2, false, true, 'Alan Williams', '2013-03-26', '2013-11-15', '1961-8-28', 112, '984295'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(113, false, 'FERS', 1, 113, 393470.58, 113, 2, true, true, 'Carlos Warren', '2013-02-24', '2012-12-27', '1936-10-7', 113, '952482'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(114, false, 'FERS', 1, 114, 237185.74, 114, 2, true, true, 'Harold Crawford', '2013-05-07', '2013-06-28', '1931-8-24', 114, '953975'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(115, false, 'FERS', 1, 115, 241418.5, 115, 2, false, false, 'Norma Garza', '2013-09-04', '2013-01-27', '1964-8-10', 115, '956118'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(116, false, 'FERS', 1, 116, 283502.78, 116, 1, false, false, 'Juan Coleman', '2013-02-27', '2013-11-02', '1979-10-29', 116, '910873'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(117, false, 'FERS', 1, 117, 417674.09, 117, 2, false, false, 'Kathleen Mills', '2013-03-31', '2013-05-30', '1937-8-12', 117, '990089'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(118, false, 'FERS', 1, 118, 206503.81, 118, 1, true, false, 'Phillip Hamilton', '2013-04-24', '2013-05-18', '1951-12-23', 118, '995887'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(119, false, 'FERS', 1, 119, 333938.56, 119, 2, false, false, 'Diana Reynolds', '2013-08-18', '2013-01-16', '1949-3-21', 119, '948579'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(120, false, 'FERS', 1, 120, 373087.21, 120, 2, false, true, 'George Bryant', '2013-01-14', '2013-09-18', '1935-6-29', 120, '926534'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(121, false, 'FERS', 1, 121, 473969.91, 121, 2, false, false, 'Rebecca Owens', '2013-04-23', '2013-07-24', '1932-4-17', 121, '983167'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(122, false, 'FERS', 1, 122, 491960.01, 122, 2, true, false, 'Linda Castillo', '2013-05-23', '2013-09-29', '1933-12-16', 122, '913616'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(123, false, 'FERS', 1, 123, 362597.05, 123, 1, false, true, 'Dennis Alexander', '2013-11-19', '2013-08-23', '1966-12-2', 123, '933884'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(124, false, 'FERS', 1, 124, 283310.84, 124, 2, false, true, 'Diana Andrews', '2013-06-12', '2013-08-04', '1922-8-25', 124, '945700'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(125, false, 'FERS', 1, 125, 475940.88, 125, 1, true, false, 'Jeremy Bishop', '2013-02-10', '2013-09-29', '1929-4-2', 125, '989581'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(126, false, 'FERS', 1, 126, 318450.02, 126, 2, false, false, 'Christina Parker', '2013-12-05', '2013-01-06', '1979-4-27', 126, '969318'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(127, false, 'FERS', 1, 127, 355163.31, 127, 1, false, false, 'Howard Hansen', '2013-07-02', '2013-07-07', '1921-9-6', 127, '980196'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(128, false, 'FERS', 1, 128, 304194.73, 128, 2, false, true, 'Helen Reynolds', '2013-10-13', '2013-04-18', '1927-9-9', 128, '987259'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(129, false, 'FERS', 1, 129, 421544.22, 129, 1, false, true, 'Edward Palmer', '2012-12-13', '2013-07-08', '1933-6-4', 129, '951253'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(130, false, 'FERS', 1, 130, 266677.23, 130, 2, true, false, 'Antonio Evans', '2013-10-10', '2013-06-21', '1928-12-14', 130, '939407'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(131, false, 'FERS', 1, 131, 397971.97, 131, 2, true, false, 'Gary Taylor', '2013-11-13', '2013-12-07', '1945-11-23', 131, '967990'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(132, false, 'FERS', 1, 132, 459380.7, 132, 2, false, false, 'Jacqueline Weaver', '2013-10-20', '2013-02-12', '1940-5-21', 132, '949545'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(133, false, 'FERS', 1, 133, 415333.9, 133, 2, true, true, 'Scott Little', '2013-03-16', '2013-12-10', '1946-3-11', 133, '979757'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(134, false, 'FERS', 1, 134, 250896.09, 134, 2, true, false, 'Edward Kelly', '2013-01-15', '2013-01-06', '1947-7-20', 134, '917044'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(135, false, 'FERS', 1, 135, 310745.89, 135, 2, false, false, 'Ruby Cruz', '2013-04-10', '2013-04-28', '1969-3-25', 135, '994352'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(136, false, 'FERS', 1, 136, 312532.18, 136, 2, true, true, 'Terry Fields', '2013-08-03', '2013-10-04', '1974-6-27', 136, '932142'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(137, false, 'FERS', 1, 137, 264741.32, 137, 1, true, false, 'Scott Wallace', '2013-06-15', '2013-08-06', '1928-4-16', 137, '907422'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(138, false, 'FERS', 1, 138, 225485.21, 138, 1, true, true, 'Donald Peters', '2013-02-28', '2013-04-04', '1973-8-23', 138, '909874'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(139, false, 'FERS', 1, 139, 251359.84, 139, 1, false, true, 'Craig Spencer', '2013-05-11', '2013-08-26', '1972-1-7', 139, '998613'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(140, false, 'FERS', 1, 140, 202732.86, 140, 1, true, true, 'David Allen', '2013-10-28', '2013-11-21', '1931-8-20', 140, '913536'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(141, false, 'FERS', 1, 141, 376414.95, 141, 2, true, false, 'Kathryn Collins', '2013-08-30', '2012-12-11', '1931-4-12', 141, '900262'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(142, false, 'FERS', 1, 142, 463508.59, 142, 1, true, false, 'Joan Bennett', '2013-03-13', '2013-07-13', '1968-4-9', 142, '940370'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(143, false, 'FERS', 1, 143, 311115.26, 143, 1, false, true, 'Gerald Moore', '2013-03-09', '2013-01-25', '1978-7-11', 143, '970402'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(144, false, 'FERS', 1, 144, 283339.39, 144, 1, false, false, 'Sharon Wells', '2013-05-27', '2013-03-07', '1927-9-20', 144, '927720'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(145, false, 'FERS', 1, 145, 391866.03, 145, 1, true, false, 'Annie Kim', '2013-10-01', '2013-09-06', '1966-6-16', 145, '948044'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(146, false, 'FERS', 1, 146, 371088.38, 146, 2, true, false, 'Janet Kelley', '2013-04-02', '2013-09-18', '1938-6-15', 146, '905766'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(147, false, 'FERS', 1, 147, 236151.39, 147, 2, true, true, 'Charles Bryant', '2012-12-29', '2013-12-02', '1939-12-31', 147, '958914'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(148, false, 'FERS', 1, 148, 249906.35, 148, 2, false, true, 'Nancy Watkins', '2013-10-09', '2013-03-05', '1942-2-23', 148, '944018'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(149, false, 'FERS', 1, 149, 305807.87, 149, 1, false, true, 'Richard Myers', '2013-11-30', '2013-08-30', '1962-4-4', 149, '927849'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(150, false, 'FERS', 1, 150, 456438.28, 150, 2, false, false, 'Billy Price', '2013-02-27', '2013-10-28', '1940-8-7', 150, '922724'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(151, false, 'FERS', 1, 151, 490294.06, 151, 2, false, true, 'Louis Hansen', '2013-03-20', '2013-10-29', '1962-5-5', 151, '904271'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(152, false, 'FERS', 1, 152, 483855.98, 152, 2, true, true, 'Steve Ford', '2013-01-08', '2013-03-18', '1942-7-15', 152, '941680'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(153, false, 'FERS', 1, 153, 238848.31, 153, 2, true, true, 'Ralph Medina', '2013-10-08', '2013-06-02', '1922-6-5', 153, '997885'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(154, false, 'FERS', 1, 154, 279196.82, 154, 2, true, false, 'Sara Simpson', '2013-01-11', '2013-01-16', '1964-4-19', 154, '904365'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(155, false, 'FERS', 1, 155, 314730.24, 155, 1, false, false, 'Elizabeth Johnson', '2013-06-04', '2013-01-25', '1963-5-18', 155, '912877'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(156, false, 'FERS', 1, 156, 342289.32, 156, 2, true, false, 'Ann Elliott', '2013-09-10', '2013-11-18', '1933-10-15', 156, '955817'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(157, false, 'FERS', 1, 157, 347569.09, 157, 2, false, true, 'Norma Spencer', '2013-04-24', '2013-01-04', '1971-11-19', 157, '950319'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(158, false, 'FERS', 1, 158, 316021.38, 158, 1, false, false, 'Eric Austin', '2013-12-07', '2013-10-10', '1931-6-16', 158, '915384'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(159, false, 'FERS', 1, 159, 261058.08, 159, 2, false, false, 'Kathleen Mills', '2013-08-25', '2013-11-02', '1952-5-26', 159, '997577'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(160, false, 'FERS', 1, 160, 448288.57, 160, 2, true, false, 'Henry Morgan', '2013-09-08', '2013-01-22', '1941-4-26', 160, '941071'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(161, false, 'FERS', 1, 161, 258953.33, 161, 1, true, false, 'Judith Sanders', '2013-05-18', '2013-09-29', '1961-3-18', 161, '951420'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(162, false, 'FERS', 1, 162, 451736.91, 162, 1, false, false, 'Brenda Mendoza', '2013-03-10', '2013-10-26', '1930-10-19', 162, '953540'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(163, false, 'FERS', 1, 163, 371453.96, 163, 2, false, true, 'Clarence Myers', '2013-04-12', '2013-05-08', '1969-1-30', 163, '956014'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(164, false, 'FERS', 1, 164, 368001.14, 164, 2, false, false, 'Roger Hunt', '2013-07-04', '2013-11-23', '1948-2-12', 164, '951283'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(165, false, 'FERS', 1, 165, 390436.14, 165, 2, true, false, 'Mark Hanson', '2013-08-18', '2013-07-27', '1968-1-16', 165, '989947'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(166, false, 'FERS', 1, 166, 273985.07, 166, 2, false, true, 'Brian Scott', '2013-10-15', '2013-01-11', '1925-7-9', 166, '942804'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(167, false, 'FERS', 1, 167, 447643.98, 167, 1, false, true, 'Earl Bradley', '2013-06-20', '2013-09-22', '1973-10-28', 167, '932267'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(168, false, 'FERS', 1, 168, 237498.2, 168, 1, false, false, 'Earl Bradley', '2013-09-09', '2013-10-22', '1921-12-10', 168, '985436'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(169, false, 'FERS', 1, 169, 496851.74, 169, 2, false, false, 'Walter Frazier', '2012-12-12', '2013-03-18', '1967-9-14', 169, '935510'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(170, false, 'FERS', 1, 170, 420607.16, 170, 2, false, false, 'Tammy Ross', '2013-01-07', '2013-06-07', '1942-8-10', 170, '985482'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(171, false, 'FERS', 1, 171, 258631.55, 171, 2, true, true, 'Joyce Mcdonald', '2013-05-02', '2013-10-04', '1933-11-29', 171, '989007'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(172, false, 'FERS', 1, 172, 404620.11, 172, 2, true, false, 'Ruth Garrett', '2013-04-01', '2012-12-29', '1947-2-26', 172, '962759'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(173, false, 'FERS', 1, 173, 486931.16, 173, 1, true, true, 'Denise Freeman', '2013-05-08', '2013-03-04', '1963-10-9', 173, '952150'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(174, false, 'FERS', 1, 174, 345644.3, 174, 1, false, false, 'Denise Meyer', '2013-04-09', '2013-05-10', '1970-5-17', 174, '998820'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(175, false, 'FERS', 1, 175, 266126.99, 175, 1, true, true, 'Rachel Jordan', '2013-11-12', '2013-04-18', '1971-3-18', 175, '943456'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(176, false, 'FERS', 1, 176, 405532.56, 176, 2, true, true, 'Rachel Mason', '2013-10-23', '2013-06-06', '1954-1-30', 176, '906282'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(177, false, 'FERS', 1, 177, 477028.9, 177, 2, false, false, 'Craig Little', '2013-05-27', '2013-08-04', '1973-10-10', 177, '944789'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(178, false, 'FERS', 1, 178, 247727.99, 178, 1, true, true, 'Cheryl Medina', '2013-10-24', '2012-12-14', '1964-1-13', 178, '935142'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(179, false, 'FERS', 1, 179, 376875.67, 179, 2, true, true, 'Laura Mitchell', '2013-04-26', '2013-10-26', '1960-9-15', 179, '902317'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(180, false, 'FERS', 1, 180, 262108.9, 180, 2, false, true, 'Doris Sullivan', '2013-01-23', '2012-12-19', '1948-3-15', 180, '956471'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(181, false, 'FERS', 1, 181, 236071.59, 181, 2, false, false, 'Lillian Cunningham', '2013-08-01', '2013-04-13', '1963-8-9', 181, '964662'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(182, false, 'FERS', 1, 182, 429318.09, 182, 1, true, false, 'Johnny Garrett', '2013-07-30', '2013-05-11', '1950-10-23', 182, '965758'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(183, false, 'FERS', 1, 183, 377778.86, 183, 2, true, true, 'Jacqueline Perry', '2013-05-17', '2013-10-05', '1972-1-2', 183, '959172'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(184, false, 'FERS', 1, 184, 427776.98, 184, 2, true, false, 'Albert Ramirez', '2013-02-02', '2013-10-27', '1963-9-20', 184, '983399'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(185, false, 'FERS', 1, 185, 414233.52, 185, 1, true, false, 'Brandon Matthews', '2013-10-20', '2013-03-04', '1972-5-23', 185, '975897'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(186, false, 'FERS', 1, 186, 334145.93, 186, 2, false, false, 'Jack Mcdonald', '2012-12-14', '2013-10-28', '1946-12-2', 186, '962408'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(187, false, 'FERS', 1, 187, 335564.07, 187, 1, false, true, 'Andrew Knight', '2013-07-03', '2013-10-04', '1973-12-2', 187, '926041'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(188, false, 'FERS', 1, 188, 300535.68, 188, 1, false, false, 'Marie Harper', '2013-10-20', '2013-11-06', '1952-7-15', 188, '953810'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(189, false, 'FERS', 1, 189, 454380.29, 189, 1, true, false, 'Virginia Owens', '2013-04-13', '2013-05-09', '1980-5-3', 189, '909195'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(190, false, 'FERS', 1, 190, 374913.14, 190, 2, true, false, 'Keith Wood', '2013-01-27', '2012-12-15', '1980-9-11', 190, '965262'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(191, false, 'FERS', 1, 191, 203924.85, 191, 1, true, true, 'Mark Johnson', '2013-08-15', '2013-10-23', '1927-11-26', 191, '907974'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(192, false, 'FERS', 1, 192, 362960.13, 192, 2, true, false, 'Lisa Gordon', '2013-06-07', '2012-12-28', '1944-3-10', 192, '917684'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(193, false, 'FERS', 1, 193, 232570.96, 193, 1, false, true, 'Julie West', '2013-01-16', '2013-11-17', '1926-1-16', 193, '946741'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(194, false, 'FERS', 1, 194, 474352.87, 194, 1, false, false, 'Cheryl Hunt', '2013-05-03', '2013-11-07', '1934-2-27', 194, '977464'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(195, false, 'FERS', 1, 195, 270434.96, 195, 1, false, false, 'Harold Payne', '2013-09-18', '2013-02-28', '1924-6-9', 195, '949986'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(196, false, 'FERS', 1, 196, 235158.23, 196, 1, false, false, 'Norma Spencer', '2013-06-26', '2013-11-15', '1979-4-26', 196, '917441'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(197, false, 'FERS', 1, 197, 324557.34, 197, 1, true, true, 'Sara Reyes', '2013-07-14', '2013-10-23', '1932-4-23', 197, '992765'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(198, false, 'FERS', 1, 198, 453924.87, 198, 1, true, false, 'Paula Kim', '2013-08-19', '2013-10-05', '1939-4-9', 198, '935769'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(199, false, 'FERS', 1, 199, 284181.67, 199, 2, true, false, 'Howard Hansen', '2013-08-09', '2013-02-17', '1978-5-14', 199, '993015'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(200, false, 'FERS', 1, 200, 283644.83, 200, 1, true, true, 'Nancy Perez', '2013-01-15', '2013-11-29', '1960-2-18', 200, '956840'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(201, false, 'FERS', 1, 201, 333906.58, 201, 1, true, true, 'Sara Simpson', '2013-01-23', '2013-05-18', '1970-3-27', 201, '983740'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(202, false, 'FERS', 1, 202, 436022.84, 202, 1, false, false, 'Roy Hunt', '2013-04-26', '2013-11-27', '1938-3-27', 202, '963695'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(203, false, 'FERS', 1, 203, 404219.96, 203, 1, true, false, 'Harry Bowman', '2013-04-05', '2012-12-24', '1952-12-10', 203, '945528'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(204, false, 'FERS', 1, 204, 269553.07, 204, 2, false, false, 'Billy Franklin', '2013-08-14', '2013-06-09', '1922-7-8', 204, '917589'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(205, false, 'FERS', 1, 205, 444436.86, 205, 2, false, true, 'Jerry Arnold', '2013-02-12', '2013-04-10', '1978-12-5', 205, '953714'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(206, false, 'FERS', 1, 206, 398208.64, 206, 2, false, false, 'Jonathan Stanley', '2013-01-16', '2013-07-01', '1967-6-15', 206, '917512'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(207, false, 'FERS', 1, 207, 407727.45, 207, 2, false, false, 'Thomas Kennedy', '2013-04-18', '2013-11-11', '1967-5-11', 207, '925634'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(208, false, 'FERS', 1, 208, 466660.22, 208, 1, false, false, 'Brandon Long', '2013-11-08', '2013-10-24', '1962-11-17', 208, '984190'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(209, false, 'FERS', 1, 209, 275715.57, 209, 1, true, true, 'Jonathan Freeman', '2013-08-12', '2013-02-19', '1973-5-24', 209, '951887'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(210, false, 'FERS', 1, 210, 433260.4, 210, 2, true, true, 'Keith Wood', '2013-02-11', '2013-03-10', '1971-4-28', 210, '911607'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(211, false, 'FERS', 1, 211, 453969.77, 211, 1, true, false, 'Kathleen Mills', '2013-08-12', '2013-06-18', '1966-1-25', 211, '943589'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(212, false, 'FERS', 1, 212, 250674.15, 212, 1, true, false, 'Martin Scott', '2013-09-18', '2013-07-25', '1933-8-11', 212, '976497'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(213, false, 'FERS', 1, 213, 236931.17, 213, 2, false, true, 'Earl Bradley', '2013-05-28', '2013-03-21', '1947-8-31', 213, '964411'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(214, false, 'FERS', 1, 214, 391400.12, 214, 1, false, true, 'Daniel Richards', '2013-08-23', '2013-09-11', '1976-10-13', 214, '977269'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(215, false, 'FERS', 1, 215, 471103.86, 215, 1, true, false, 'Clarence Myers', '2013-07-18', '2013-05-29', '1973-2-24', 215, '939867'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(216, false, 'FERS', 1, 216, 490573.53, 216, 2, false, true, 'Ruby Cruz', '2013-03-26', '2013-02-19', '1937-5-1', 216, '928664'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(217, false, 'FERS', 1, 217, 409083.96, 217, 1, false, true, 'Lillian Alvarez', '2013-01-29', '2013-02-19', '1924-6-20', 217, '922404'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(218, false, 'FERS', 1, 218, 417370.46, 218, 1, true, false, 'Philip Washington', '2012-12-21', '2013-09-28', '1973-4-23', 218, '966232'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(219, false, 'FERS', 1, 219, 448864.38, 219, 1, true, true, 'Rachel Harvey', '2013-09-16', '2013-07-04', '1963-8-26', 219, '958111'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(220, false, 'FERS', 1, 220, 267574.48, 220, 2, false, false, 'Janice Chavez', '2013-04-27', '2013-10-06', '1937-3-25', 220, '904426'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(221, false, 'FERS', 1, 221, 265611.26, 221, 1, false, false, 'Paula Welch', '2013-01-12', '2013-07-07', '1945-4-26', 221, '929445'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(222, false, 'FERS', 1, 222, 262108.19, 222, 1, false, false, 'Kathryn Palmer', '2013-10-12', '2013-08-29', '1936-2-15', 222, '934457'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(223, false, 'FERS', 1, 223, 334802.78, 223, 2, true, false, 'Helen Reynolds', '2013-04-15', '2013-01-09', '1926-8-7', 223, '988515'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(224, false, 'FERS', 1, 224, 402139.67, 224, 2, true, true, 'Aaron Knight', '2013-03-18', '2013-07-16', '1949-6-4', 224, '902446'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(225, false, 'FERS', 1, 225, 273621.68, 225, 1, true, false, 'Dorothy Shaw', '2013-04-16', '2013-12-04', '1955-1-4', 225, '909042'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(226, false, 'FERS', 1, 226, 311064.82, 226, 1, false, false, 'Shirley Simpson', '2013-08-28', '2012-12-24', '1933-5-28', 226, '936189'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(227, false, 'FERS', 1, 227, 399676.17, 227, 1, false, true, 'James Day', '2013-11-25', '2013-09-16', '1963-9-19', 227, '980013'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(228, false, 'FERS', 1, 228, 390899.6, 228, 1, true, false, 'Paula Welch', '2013-08-29', '2013-01-03', '1949-5-28', 228, '903553'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(229, false, 'FERS', 1, 229, 490020.66, 229, 1, false, true, 'Kevin Perez', '2013-02-04', '2013-04-02', '1965-9-26', 229, '900024'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(230, false, 'FERS', 1, 230, 447118.48, 230, 1, true, true, 'Bobby Holmes', '2013-03-31', '2013-10-25', '1931-5-7', 230, '926762'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(231, false, 'FERS', 1, 231, 276391.54, 231, 1, false, true, 'Cynthia Hanson', '2013-02-03', '2012-12-20', '1974-4-6', 231, '978800'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(232, false, 'FERS', 1, 232, 489659.12, 232, 1, true, false, 'Judith Sanders', '2013-10-19', '2013-01-21', '1979-11-28', 232, '925626'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(233, false, 'FERS', 1, 233, 380681.99, 233, 1, false, true, 'Arthur Perez', '2013-08-11', '2013-07-09', '1954-8-26', 233, '916453'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(234, false, 'FERS', 1, 234, 265305.63, 234, 1, true, false, 'Julie Murphy', '2013-03-24', '2013-08-21', '1964-1-22', 234, '977736'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(235, false, 'FERS', 1, 235, 317479.64, 235, 1, false, true, 'Christina Scott', '2013-04-16', '2013-08-01', '1959-4-3', 235, '987541'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(236, false, 'FERS', 1, 236, 468022.26, 236, 1, true, true, 'Earl Bradley', '2013-06-13', '2013-03-09', '1922-10-17', 236, '914395'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(237, false, 'FERS', 1, 237, 498596.76, 237, 1, false, true, 'Diane Ward', '2012-12-19', '2013-02-10', '1947-8-7', 237, '952806'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(238, false, 'FERS', 1, 238, 450287.1, 238, 2, false, false, 'Arthur Crawford', '2013-07-13', '2013-10-21', '1976-1-6', 238, '952777'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(239, false, 'FERS', 1, 239, 220135.16, 239, 2, false, false, 'Lori Stephens', '2013-09-06', '2013-03-04', '1969-12-24', 239, '927515'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(240, false, 'FERS', 1, 240, 329073.09, 240, 1, true, false, 'Paula Ryan', '2013-09-22', '2013-09-19', '1971-11-29', 240, '939985'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(241, false, 'FERS', 1, 241, 340355.46, 241, 1, false, false, 'Martin Lawson', '2013-08-25', '2013-11-09', '1971-2-23', 241, '918547'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(242, false, 'FERS', 1, 242, 444096.64, 242, 1, false, true, 'Judy Oliver', '2013-07-23', '2013-04-27', '1980-2-12', 242, '966181'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(243, false, 'FERS', 1, 243, 252982.25, 243, 2, false, true, 'Lillian Mitchell', '2013-07-03', '2013-01-21', '1938-3-29', 243, '946160'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(244, false, 'FERS', 1, 244, 267346.85, 244, 1, true, true, 'Karen Day', '2013-02-17', '2013-07-03', '1966-5-28', 244, '955633'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(245, false, 'FERS', 1, 245, 333823.48, 245, 2, true, true, 'Heather Stanley', '2013-10-09', '2013-04-15', '1936-12-15', 245, '939036'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(246, false, 'FERS', 1, 246, 480462.39, 246, 1, false, false, 'Ruth Garrett', '2013-03-23', '2013-07-24', '1972-7-8', 246, '904672'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(247, false, 'FERS', 1, 247, 451696.24, 247, 2, false, true, 'Brandon Long', '2013-03-26', '2013-11-24', '1958-7-7', 247, '907964'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(248, false, 'FERS', 1, 248, 423752.04, 248, 1, true, true, 'Mildred Hall', '2013-10-28', '2013-08-14', '1927-2-18', 248, '917721'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(249, false, 'FERS', 1, 249, 258365.14, 249, 1, false, false, 'Karen Wheeler', '2012-12-27', '2013-10-10', '1958-7-15', 249, '957999'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(250, false, 'FERS', 1, 250, 345492.8, 250, 2, true, true, 'Ann Palmer', '2013-04-04', '2013-02-08', '1930-1-23', 250, '904740'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(251, false, 'FERS', 1, 251, 326043.53, 251, 1, false, true, 'Jacqueline Weaver', '2013-05-24', '2013-10-09', '1968-2-10', 251, '904663'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(252, false, 'FERS', 1, 252, 354136.66, 252, 1, false, true, 'Rachel Jordan', '2013-05-12', '2013-09-17', '1950-3-1', 252, '993957'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(253, false, 'FERS', 1, 253, 413490.02, 253, 2, false, false, 'Roy Cooper', '2013-08-03', '2013-05-15', '1978-11-14', 253, '922730'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(254, false, 'FERS', 1, 254, 200992.58, 254, 2, false, false, 'Philip Henry', '2013-01-01', '2013-05-16', '1938-10-1', 254, '957043'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(255, false, 'FERS', 1, 255, 296458.68, 255, 1, true, true, 'Frank Griffin', '2013-01-09', '2013-10-24', '1951-1-24', 255, '992178'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(256, false, 'FERS', 1, 256, 391228.33, 256, 2, true, false, 'Joe Murray', '2013-09-30', '2013-03-13', '1952-3-13', 256, '945452'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(257, false, 'FERS', 1, 257, 271609.23, 257, 1, true, true, 'Arthur Perez', '2013-09-03', '2013-03-14', '1964-9-12', 257, '951921'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(258, false, 'FERS', 1, 258, 426560.15, 258, 1, false, true, 'Betty Hunter', '2013-12-07', '2013-05-02', '1966-6-21', 258, '949401'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(259, false, 'FERS', 1, 259, 287305.77, 259, 2, true, true, 'Joyce Mcdonald', '2013-05-05', '2013-04-16', '1934-1-23', 259, '912004'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(260, false, 'FERS', 1, 260, 477014.12, 260, 2, false, false, 'Cynthia Hanson', '2013-09-08', '2012-12-13', '1972-1-19', 260, '905217'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(261, false, 'FERS', 1, 261, 216513.78, 261, 1, true, false, 'Julia Gordon', '2013-08-11', '2013-02-06', '1946-11-25', 261, '925828'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(262, false, 'FERS', 1, 262, 234600.18, 262, 2, false, false, 'Willie Cox', '2013-04-21', '2013-05-19', '1945-12-17', 262, '994878'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(263, false, 'FERS', 1, 263, 403423.57, 263, 1, true, false, 'Harold Payne', '2013-04-15', '2013-05-14', '1939-7-4', 263, '928272'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(264, false, 'FERS', 1, 264, 205109, 264, 1, true, false, 'Steve Ford', '2013-06-10', '2013-10-01', '1970-3-22', 264, '952767'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(265, false, 'FERS', 1, 265, 315267.13, 265, 2, true, true, 'Nancy Perez', '2013-06-29', '2012-12-22', '1925-6-8', 265, '927095'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(266, false, 'FERS', 1, 266, 355831.93, 266, 2, false, false, 'Henry Morgan', '2013-02-27', '2013-06-23', '1943-2-15', 266, '909421'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(267, false, 'FERS', 1, 267, 300834.88, 267, 2, true, false, 'Carlos Thompson', '2013-06-29', '2013-06-26', '1934-8-2', 267, '916164'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(268, false, 'FERS', 1, 268, 410337.77, 268, 1, true, true, 'Martin Watkins', '2013-11-01', '2013-11-11', '1934-6-19', 268, '945866'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(269, false, 'FERS', 1, 269, 439457.23, 269, 2, false, false, 'Louis Owens', '2013-10-20', '2013-11-04', '1938-9-23', 269, '972716'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(270, false, 'FERS', 1, 270, 314081.61, 270, 2, false, true, 'Bonnie Watkins', '2013-06-15', '2013-01-08', '1958-8-3', 270, '976371'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(271, false, 'FERS', 1, 271, 361609.18, 271, 1, false, false, 'Eugene Hudson', '2013-11-27', '2013-12-01', '1973-10-4', 271, '906435'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(272, false, 'FERS', 1, 272, 351945.24, 272, 1, true, false, 'Janet Kelley', '2013-01-20', '2013-04-20', '1980-2-1', 272, '960056'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(273, false, 'FERS', 1, 273, 325430.94, 273, 2, true, false, 'Joshua Wheeler', '2013-05-12', '2013-11-19', '1922-10-1', 273, '953972'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(274, false, 'FERS', 1, 274, 250767.35, 274, 2, true, true, 'Steven Chapman', '2013-11-04', '2013-10-28', '1923-12-2', 274, '981646'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(275, false, 'FERS', 1, 275, 383683.47, 275, 1, false, true, 'Jesse Richardson', '2013-05-10', '2012-12-17', '1932-10-28', 275, '983662'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(276, false, 'FERS', 1, 276, 281137.23, 276, 1, true, true, 'Sara Stevens', '2013-06-10', '2013-10-15', '1934-11-14', 276, '907926'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(277, false, 'FERS', 1, 277, 367111.61, 277, 1, true, true, 'Stephanie Perry', '2013-10-07', '2013-09-08', '1932-10-5', 277, '963968'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(278, false, 'FERS', 1, 278, 458937.9, 278, 2, true, true, 'Russell Murphy', '2012-12-17', '2013-07-05', '1957-1-23', 278, '973379'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(279, false, 'FERS', 1, 279, 400964.18, 279, 2, true, false, 'Bruce Walker', '2013-11-04', '2013-06-06', '1944-12-28', 279, '976650'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(280, false, 'FERS', 1, 280, 321050, 280, 2, true, true, 'Billy Riley', '2013-01-05', '2013-10-06', '1960-1-8', 280, '913008'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(281, false, 'FERS', 1, 281, 496077.07, 281, 1, false, true, 'Amy Porter', '2013-08-06', '2013-11-06', '1926-5-23', 281, '980758'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(282, false, 'FERS', 1, 282, 260331.9, 282, 1, true, true, 'Laura Hamilton', '2013-07-20', '2013-02-03', '1921-1-27', 282, '916993'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(283, false, 'FERS', 1, 283, 379962.03, 283, 1, true, true, 'Carlos Harper', '2013-10-06', '2012-12-20', '1938-9-20', 283, '921377'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(284, false, 'FERS', 1, 284, 269174.37, 284, 2, true, true, 'Steve Johnston', '2013-01-12', '2013-02-16', '1934-4-25', 284, '958654'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(285, false, 'FERS', 1, 285, 326298.28, 285, 2, true, false, 'Daniel Oliver', '2013-10-01', '2013-03-26', '1952-3-7', 285, '918363'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(286, false, 'FERS', 1, 286, 250272.58, 286, 2, true, true, 'Shirley Simpson', '2013-01-23', '2013-04-23', '1931-10-6', 286, '928917'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(287, false, 'FERS', 1, 287, 281753.62, 287, 2, false, true, 'Deborah Hernandez', '2013-06-08', '2013-07-18', '1921-9-9', 287, '987390'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(288, false, 'FERS', 1, 288, 442985.36, 288, 1, true, true, 'Julie Welch', '2013-03-23', '2013-03-19', '1979-1-24', 288, '988775'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(289, false, 'FERS', 1, 289, 301933.03, 289, 1, false, true, 'Robin Torres', '2012-12-20', '2013-01-24', '1978-8-20', 289, '947959'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(290, false, 'FERS', 1, 290, 237589.68, 290, 2, true, true, 'Laura Mitchell', '2013-03-17', '2013-04-19', '1969-5-22', 290, '929864'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(291, false, 'FERS', 1, 291, 448695.43, 291, 1, true, true, 'Michelle Fisher', '2013-05-17', '2013-02-05', '1929-1-17', 291, '997071'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(292, false, 'FERS', 1, 292, 260082.3, 292, 1, true, false, 'Marie Owens', '2013-05-26', '2013-09-21', '1948-8-27', 292, '971504'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(293, false, 'FERS', 1, 293, 373252.27, 293, 1, true, false, 'Jacqueline Ortiz', '2013-11-07', '2013-03-17', '1958-5-31', 293, '900757'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(294, false, 'FERS', 1, 294, 389603.33, 294, 2, false, false, 'Jessica Alvarez', '2013-03-18', '2013-10-01', '1960-3-13', 294, '908210'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(295, false, 'FERS', 1, 295, 229589.78, 295, 1, true, true, 'Diana Wright', '2013-09-17', '2013-12-02', '1960-10-26', 295, '924302'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(296, false, 'FERS', 1, 296, 273964.98, 296, 1, false, false, 'Frank Griffin', '2013-07-17', '2013-02-23', '1942-7-11', 296, '996660'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(297, false, 'FERS', 1, 297, 402829.06, 297, 2, true, false, 'Anthony Peters', '2013-10-06', '2013-03-26', '1933-6-8', 297, '924725'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(298, false, 'FERS', 1, 298, 306164.19, 298, 1, false, true, 'Christopher Scott', '2013-08-04', '2013-04-11', '1972-9-19', 298, '923368'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(299, false, 'FERS', 1, 299, 378896.99, 299, 2, true, true, 'Paula Kim', '2013-02-22', '2013-10-07', '1958-3-28', 299, '953666'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(300, false, 'FERS', 1, 300, 361859.31, 300, 1, false, false, 'Cheryl Medina', '2013-04-17', '2013-04-27', '1969-2-19', 300, '902700'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(301, false, 'FERS', 1, 301, 290897.81, 301, 1, false, false, 'Richard Collins', '2013-04-27', '2013-03-07', '1929-2-4', 301, '991987'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(302, false, 'FERS', 1, 302, 284759.7, 302, 2, true, false, 'Benjamin Long', '2013-05-06', '2013-01-20', '1940-11-27', 302, '972594'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(303, false, 'FERS', 1, 303, 328078.47, 303, 2, true, true, 'Catherine Hamilton', '2013-10-22', '2013-06-05', '1949-6-28', 303, '999376'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(304, false, 'FERS', 1, 304, 299257.21, 304, 1, true, false, 'Phyllis Kelly', '2013-02-06', '2013-01-08', '1972-7-17', 304, '904502'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(305, false, 'FERS', 1, 305, 292787.81, 305, 1, false, false, 'Willie Burton', '2013-02-14', '2013-09-25', '1978-7-4', 305, '946801'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(306, false, 'FERS', 1, 306, 308514.41, 306, 2, false, true, 'Helen Roberts', '2013-09-06', '2013-07-09', '1941-6-30', 306, '951617'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(307, false, 'FERS', 1, 307, 418388.75, 307, 2, false, false, 'Stephanie Perry', '2013-07-23', '2013-03-09', '1963-11-12', 307, '976054'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(308, false, 'FERS', 1, 308, 221493.67, 308, 1, false, false, 'Martin Lawson', '2013-03-17', '2013-10-06', '1976-11-24', 308, '916906'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(309, false, 'FERS', 1, 309, 382696.77, 309, 2, true, true, 'Cheryl Thomas', '2013-09-11', '2013-09-27', '1965-2-21', 309, '939939'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(310, false, 'FERS', 1, 310, 314091.78, 310, 1, false, true, 'Jacqueline Boyd', '2013-02-15', '2012-12-18', '1930-3-30', 310, '905091'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(311, false, 'FERS', 1, 311, 450500.44, 311, 2, false, true, 'James Chavez', '2013-11-30', '2013-04-09', '1980-5-15', 311, '953886'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(312, false, 'FERS', 1, 312, 497490.77, 312, 1, false, true, 'Ronald Campbell', '2013-06-29', '2013-11-17', '1961-6-16', 312, '953380'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(313, false, 'FERS', 1, 313, 381500.14, 313, 2, false, true, 'Nancy Perez', '2013-08-26', '2013-05-06', '1959-5-17', 313, '948635'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(314, false, 'FERS', 1, 314, 339860.04, 314, 2, true, true, 'Christina Scott', '2013-09-29', '2013-01-11', '1966-3-3', 314, '932443'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(315, false, 'FERS', 1, 315, 407652.81, 315, 1, true, false, 'Brenda Reyes', '2012-12-31', '2013-03-17', '1965-8-12', 315, '986438'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(316, false, 'FERS', 1, 316, 467531.27, 316, 2, true, true, 'Catherine Wright', '2013-06-04', '2013-02-14', '1939-8-23', 316, '967771'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(317, false, 'FERS', 1, 317, 293983.66, 317, 1, false, true, 'Marie Owens', '2012-12-20', '2013-01-26', '1953-5-6', 317, '950172'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(318, false, 'FERS', 1, 318, 475096.32, 318, 2, false, false, 'Norma Spencer', '2013-07-09', '2013-02-24', '1955-10-13', 318, '921409'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(319, false, 'FERS', 1, 319, 289884.09, 319, 2, true, true, 'Julie Welch', '2013-03-21', '2013-04-22', '1955-1-13', 319, '979371'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(320, false, 'FERS', 1, 320, 400889.9, 320, 2, false, false, 'Russell Powell', '2013-05-28', '2013-02-20', '1950-1-18', 320, '969449'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(321, false, 'FERS', 1, 321, 473960.15, 321, 2, true, false, 'Daniel Lynch', '2013-09-08', '2013-01-31', '1923-8-2', 321, '909707'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(322, false, 'FERS', 1, 322, 326367.77, 322, 1, false, true, 'Raymond Martin', '2013-03-21', '2013-11-08', '1933-8-25', 322, '942260'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(323, false, 'FERS', 1, 323, 201444.5, 323, 2, false, false, 'Willie Burton', '2013-05-18', '2013-08-16', '1945-11-14', 323, '968770'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(324, false, 'FERS', 1, 324, 255335.34, 324, 1, true, true, 'Jane Olson', '2013-09-18', '2013-07-05', '1925-8-31', 324, '980009'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(325, false, 'FERS', 1, 325, 293642.88, 325, 2, false, false, 'Samuel Coleman', '2013-09-07', '2013-11-25', '1980-9-26', 325, '907537'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(326, false, 'FERS', 1, 326, 367333, 326, 2, true, false, 'Kevin Hayes', '2013-01-02', '2013-01-17', '1946-4-10', 326, '967530'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(327, false, 'FERS', 1, 327, 415627.43, 327, 1, false, true, 'Roy Reid', '2013-08-26', '2013-01-19', '1950-2-13', 327, '982575'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(328, false, 'FERS', 1, 328, 473090.54, 328, 1, false, false, 'Billy Price', '2013-01-19', '2013-08-11', '1958-3-4', 328, '960882'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(329, false, 'FERS', 1, 329, 404647.43, 329, 2, false, false, 'Sarah Fisher', '2013-08-09', '2013-05-26', '1924-8-5', 329, '966308'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(330, false, 'FERS', 1, 330, 295523.23, 330, 1, true, true, 'William Sanchez', '2013-09-22', '2013-09-22', '1943-9-24', 330, '912033'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(331, false, 'FERS', 1, 331, 269574.42, 331, 2, true, false, 'Charles Bryant', '2013-05-07', '2013-09-19', '1933-1-7', 331, '968849'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(332, false, 'FERS', 1, 332, 219721.25, 332, 1, true, false, 'Eric Austin', '2013-08-10', '2013-01-16', '1940-5-24', 332, '987925'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(333, false, 'FERS', 1, 333, 251707.72, 333, 1, false, false, 'Theresa Willis', '2013-10-30', '2013-01-13', '1976-12-10', 333, '930080'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(334, false, 'FERS', 1, 334, 370754.71, 334, 1, true, true, 'Scott Little', '2013-03-01', '2013-05-29', '1931-1-21', 334, '961265'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(335, false, 'FERS', 1, 335, 257666.58, 335, 2, false, false, 'Lawrence Martinez', '2013-05-20', '2013-05-13', '1930-4-9', 335, '936402'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(336, false, 'FERS', 1, 336, 328223.92, 336, 1, false, false, 'Denise Meyer', '2013-01-13', '2013-06-26', '1935-1-21', 336, '946931'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(337, false, 'FERS', 1, 337, 376291.54, 337, 2, false, true, 'Elizabeth Johnson', '2013-05-07', '2013-04-17', '1940-5-5', 337, '972086'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(338, false, 'FERS', 1, 338, 255670.22, 338, 1, false, false, 'Henry Kelley', '2013-04-16', '2013-03-14', '1945-11-24', 338, '967784'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(339, false, 'FERS', 1, 339, 316723.39, 339, 2, true, false, 'Joshua Wheeler', '2013-10-14', '2013-03-23', '1950-4-9', 339, '963036'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(340, false, 'FERS', 1, 340, 336410.11, 340, 2, false, false, 'Craig Alexander', '2013-10-05', '2013-11-22', '1952-12-29', 340, '955582'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(341, false, 'FERS', 1, 341, 406591.86, 341, 2, true, true, 'Alan Williams', '2013-10-17', '2013-10-03', '1954-10-8', 341, '972258'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(342, false, 'FERS', 1, 342, 247421.74, 342, 2, true, false, 'Edward Harper', '2013-05-29', '2013-03-27', '1979-12-11', 342, '969116'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(343, false, 'FERS', 1, 343, 474124.61, 343, 1, false, false, 'Donald Ford', '2013-03-20', '2013-02-19', '1951-6-5', 343, '952055'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(344, false, 'FERS', 1, 344, 314985.39, 344, 2, false, false, 'Christopher Kennedy', '2013-06-30', '2013-08-20', '1931-5-21', 344, '922207'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(345, false, 'FERS', 1, 345, 429885.06, 345, 1, false, true, 'Fred Powell', '2013-01-09', '2013-08-29', '1976-12-5', 345, '929097'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(346, false, 'FERS', 1, 346, 356844.75, 346, 2, false, false, 'Aaron Knight', '2013-08-29', '2012-12-30', '1968-5-10', 346, '963306'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(347, false, 'FERS', 1, 347, 406068.2, 347, 1, false, false, 'Tina Richardson', '2013-11-18', '2013-03-15', '1971-5-11', 347, '905904'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(348, false, 'FERS', 1, 348, 340607.07, 348, 2, true, true, 'Denise Meyer', '2013-06-05', '2013-01-23', '1932-4-24', 348, '932833'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(349, false, 'FERS', 1, 349, 346819.93, 349, 1, true, false, 'Brandon Matthews', '2013-03-29', '2013-06-10', '1965-7-9', 349, '902385'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(350, false, 'FERS', 1, 350, 364623.02, 350, 1, false, true, 'Russell Mason', '2013-05-19', '2013-03-26', '1923-8-13', 350, '904100'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(351, false, 'FERS', 1, 351, 240657.11, 351, 1, true, true, 'Carlos Harper', '2013-03-17', '2013-03-08', '1977-6-4', 351, '952736'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(352, false, 'FERS', 1, 352, 341595.24, 352, 1, false, true, 'Sara Simpson', '2013-11-12', '2013-08-15', '1977-8-8', 352, '951448'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(353, false, 'FERS', 1, 353, 457782.66, 353, 1, false, true, 'Julie Butler', '2013-08-27', '2013-09-23', '1928-5-25', 353, '986091'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(354, false, 'FERS', 1, 354, 468584.51, 354, 1, false, false, 'Robin Medina', '2012-12-15', '2013-03-12', '1921-12-2', 354, '963826'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(355, false, 'FERS', 1, 355, 412317.56, 355, 1, false, false, 'Linda Castillo', '2013-08-24', '2012-12-22', '1941-9-13', 355, '903278'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(356, false, 'FERS', 1, 356, 297293.06, 356, 2, true, true, 'Brandon Ferguson', '2013-09-03', '2013-06-10', '1966-5-1', 356, '922354'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(357, false, 'FERS', 1, 357, 434245.92, 357, 2, true, false, 'Teresa Gilbert', '2013-08-27', '2013-08-24', '1940-10-8', 357, '918399'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(358, false, 'FERS', 1, 358, 201728.83, 358, 2, false, true, 'Fred Powell', '2013-01-05', '2013-03-17', '1935-4-21', 358, '915865'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(359, false, 'FERS', 1, 359, 380756.4, 359, 1, true, false, 'Lillian Mitchell', '2013-06-05', '2013-03-13', '1934-9-9', 359, '903012'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(360, false, 'FERS', 1, 360, 366209, 360, 2, true, false, 'Denise Young', '2013-01-27', '2013-04-02', '1977-7-19', 360, '972199'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(361, false, 'FERS', 1, 361, 428303.86, 361, 2, false, true, 'Marie Gonzalez', '2013-07-17', '2013-06-16', '1967-9-23', 361, '902516'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(362, false, 'FERS', 1, 362, 418783.33, 362, 2, false, true, 'Andrew Owens', '2013-12-01', '2013-10-20', '1956-12-5', 362, '921470'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(363, false, 'FERS', 1, 363, 206187.24, 363, 2, true, false, 'Mark Peters', '2013-04-26', '2013-11-06', '1927-9-4', 363, '976934'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(364, false, 'FERS', 1, 364, 329345.8, 364, 1, false, false, 'Janice Rogers', '2013-11-06', '2013-05-14', '1969-2-21', 364, '943842'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(365, false, 'FERS', 1, 365, 407274.13, 365, 2, false, true, 'Christopher Kennedy', '2013-01-26', '2013-10-16', '1947-7-31', 365, '904938'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(366, false, 'FERS', 1, 366, 449688.21, 366, 1, true, false, 'Albert Adams', '2013-04-17', '2013-03-31', '1959-10-5', 366, '947668'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(367, false, 'FERS', 1, 367, 384825.76, 367, 1, false, true, 'Howard Hunter', '2013-11-16', '2013-01-12', '1968-2-1', 367, '924061'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(368, false, 'FERS', 1, 368, 249228.11, 368, 1, false, true, 'Jesse Richardson', '2013-01-13', '2013-08-28', '1968-6-3', 368, '904731'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(369, false, 'FERS', 1, 369, 378443.67, 369, 1, true, false, 'Anthony Peters', '2013-01-28', '2013-06-30', '1924-2-21', 369, '916075'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(370, false, 'FERS', 1, 370, 201062.21, 370, 1, true, true, 'Ronald Campbell', '2013-05-16', '2013-05-21', '1947-3-10', 370, '962339'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(371, false, 'FERS', 1, 371, 387354.76, 371, 1, false, true, 'Ronald Graham', '2013-01-12', '2013-05-28', '1923-3-17', 371, '927815'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(372, false, 'FERS', 1, 372, 348525.97, 372, 1, true, true, 'Anne Stephens', '2013-10-30', '2012-12-31', '1946-12-19', 372, '958486'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(373, false, 'FERS', 1, 373, 260669.64, 373, 1, true, true, 'Jeffrey Kelley', '2013-11-03', '2013-04-09', '1939-3-15', 373, '917262'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(374, false, 'FERS', 1, 374, 478121.46, 374, 2, true, true, 'Joyce Mcdonald', '2013-05-19', '2013-11-27', '1972-11-18', 374, '998146'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(375, false, 'FERS', 1, 375, 368604.77, 375, 2, true, false, 'Gloria Moreno', '2013-04-27', '2013-11-06', '1975-8-29', 375, '957108'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(376, false, 'FERS', 1, 376, 283722.67, 376, 2, false, false, 'Joyce Mcdonald', '2013-09-22', '2013-05-26', '1938-4-4', 376, '945783'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(377, false, 'FERS', 1, 377, 356280.06, 377, 2, true, true, 'Betty White', '2013-01-04', '2013-05-19', '1971-10-27', 377, '915512'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(378, false, 'FERS', 1, 378, 367859.93, 378, 1, true, true, 'Debra Palmer', '2013-01-20', '2013-06-10', '1944-8-22', 378, '952260'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(379, false, 'FERS', 1, 379, 244301.13, 379, 2, false, false, 'Steven Griffin', '2013-03-12', '2013-02-28', '1959-1-21', 379, '912005'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(380, false, 'FERS', 1, 380, 391603.88, 380, 2, true, false, 'Catherine Lawson', '2012-12-11', '2013-05-27', '1977-4-20', 380, '951809'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(381, false, 'FERS', 1, 381, 402332.53, 381, 1, false, true, 'Amanda Chavez', '2013-05-30', '2013-09-19', '1952-9-27', 381, '986142'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(382, false, 'FERS', 1, 382, 421973.11, 382, 2, true, true, 'Annie Powell', '2012-12-29', '2013-08-09', '1954-4-18', 382, '982939'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(383, false, 'FERS', 1, 383, 309552.02, 383, 1, true, false, 'Roger Williams', '2013-05-25', '2013-02-23', '1939-4-7', 383, '997701'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(384, false, 'FERS', 1, 384, 381394.47, 384, 1, false, false, 'Barbara Alexander', '2013-05-11', '2013-04-04', '1959-11-2', 384, '949289'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(385, false, 'FERS', 1, 385, 379928.67, 385, 1, true, false, 'Louise Bishop', '2013-05-17', '2013-07-22', '1922-7-3', 385, '908113'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(386, false, 'FERS', 1, 386, 206893.5, 386, 1, false, true, 'Keith Ford', '2013-09-04', '2013-10-11', '1967-2-2', 386, '935736'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(387, false, 'FERS', 1, 387, 240117.34, 387, 1, false, true, 'Lillian Cunningham', '2013-01-05', '2013-01-28', '1942-5-7', 387, '920940'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(388, false, 'FERS', 1, 388, 425560.76, 388, 2, false, true, 'Lori Chavez', '2013-06-02', '2013-01-22', '1925-8-26', 388, '945199'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(389, false, 'FERS', 1, 389, 273114.42, 389, 2, true, true, 'Denise Meyer', '2013-09-30', '2013-05-11', '1923-4-12', 389, '959793'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(390, false, 'FERS', 1, 390, 201847.17, 390, 2, false, true, 'Nancy Perez', '2013-04-08', '2013-05-10', '1941-7-14', 390, '970715'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(391, false, 'FERS', 1, 391, 303951.64, 391, 2, true, true, 'Earl Bradley', '2013-06-18', '2013-11-25', '1933-4-4', 391, '976398'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(392, false, 'FERS', 1, 392, 321729.3, 392, 2, false, false, 'Donald Smith', '2013-08-30', '2013-04-13', '1935-10-28', 392, '988839'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(393, false, 'FERS', 1, 393, 383006.32, 393, 2, false, true, 'Brian Scott', '2013-11-22', '2013-09-19', '1942-1-1', 393, '907477'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(394, false, 'FERS', 1, 394, 378985.06, 394, 2, true, false, 'Kenneth Webb', '2013-08-21', '2013-08-25', '1979-11-12', 394, '952999'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(395, false, 'FERS', 1, 395, 364926.72, 395, 2, false, true, 'Jessica Smith', '2013-06-30', '2013-09-27', '1974-1-13', 395, '908709'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(396, false, 'FERS', 1, 396, 317698.39, 396, 2, true, true, 'Tina Howard', '2013-07-29', '2013-08-08', '1921-4-10', 396, '970521'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(397, false, 'FERS', 1, 397, 332122.32, 397, 1, false, false, 'Rachel Jordan', '2013-01-06', '2013-08-09', '1980-6-4', 397, '959468'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(398, false, 'FERS', 1, 398, 232295.11, 398, 1, false, false, 'Martha Powell', '2013-05-07', '2013-05-05', '1925-2-21', 398, '989845'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(399, false, 'FERS', 1, 399, 472277.29, 399, 1, true, true, 'Timothy Richards', '2013-12-01', '2013-07-25', '1959-9-15', 399, '989085'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(400, false, 'FERS', 1, 400, 305695.83, 400, 2, false, false, 'Jonathan Stanley', '2013-02-23', '2013-03-11', '1932-6-5', 400, '941438'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(401, false, 'FERS', 1, 401, 326611.44, 401, 2, true, false, 'Christina Parker', '2013-01-16', '2013-04-01', '1953-5-27', 401, '929186'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(402, false, 'FERS', 1, 402, 400768.97, 402, 1, true, false, 'Debra Palmer', '2013-07-29', '2013-12-01', '1923-11-24', 402, '975887'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(403, false, 'FERS', 1, 403, 287166.1, 403, 2, false, false, 'Raymond Ellis', '2013-10-09', '2013-04-22', '1965-3-22', 403, '981682'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(404, false, 'FERS', 1, 404, 422921.8, 404, 2, true, true, 'Michelle West', '2013-08-05', '2013-09-01', '1930-11-18', 404, '931574'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(405, false, 'FERS', 1, 405, 412692.03, 405, 2, false, true, 'Peter Cox', '2013-07-22', '2013-02-24', '1954-3-9', 405, '914413'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(406, false, 'FERS', 1, 406, 380932.27, 406, 1, false, false, 'Kevin Perez', '2013-11-27', '2013-07-23', '1977-11-7', 406, '955294'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(407, false, 'FERS', 1, 407, 395735.11, 407, 2, true, true, 'Steven Chapman', '2013-07-13', '2013-12-02', '1971-6-5', 407, '920652'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(408, false, 'FERS', 1, 408, 481064.67, 408, 2, false, true, 'Jacqueline Weaver', '2013-07-06', '2013-03-29', '1952-10-10', 408, '987845'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(409, false, 'FERS', 1, 409, 284399.55, 409, 2, true, true, 'Jeffrey Kelley', '2013-11-09', '2013-05-27', '1955-6-26', 409, '940425'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(410, false, 'FERS', 1, 410, 327623.9, 410, 2, false, true, 'Fred Berry', '2013-07-01', '2013-12-08', '1922-5-29', 410, '914279'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(411, false, 'FERS', 1, 411, 268522.37, 411, 2, true, false, 'Donna Payne', '2013-01-23', '2013-08-01', '1929-9-25', 411, '941786'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(412, false, 'FERS', 1, 412, 341588.09, 412, 1, true, false, 'Lori Stephens', '2013-11-25', '2013-09-17', '1967-5-25', 412, '932045'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(413, false, 'FERS', 1, 413, 389486.49, 413, 1, false, false, 'Jacqueline Perry', '2013-12-07', '2013-04-04', '1976-7-11', 413, '970880'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(414, false, 'FERS', 1, 414, 458196.88, 414, 2, false, false, 'Barbara Alexander', '2013-02-01', '2013-04-30', '1949-4-12', 414, '940785'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(415, false, 'FERS', 1, 415, 497369.71, 415, 1, true, false, 'Tina Dixon', '2013-02-04', '2013-02-23', '1971-1-23', 415, '968097'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(416, false, 'FERS', 1, 416, 299392.06, 416, 1, false, true, 'Elizabeth Johnson', '2013-04-13', '2013-03-20', '1970-10-28', 416, '983501'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(417, false, 'FERS', 1, 417, 416619.94, 417, 1, false, false, 'Irene Green', '2012-12-20', '2013-07-29', '1957-8-24', 417, '964875'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(418, false, 'FERS', 1, 418, 394178.02, 418, 2, true, true, 'Ruth Williamson', '2013-09-14', '2013-07-22', '1972-7-19', 418, '933747'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(419, false, 'FERS', 1, 419, 319501.85, 419, 2, false, true, 'Sean Cunningham', '2013-12-02', '2013-09-24', '1979-1-12', 419, '917784'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(420, false, 'FERS', 1, 420, 428261.31, 420, 1, false, true, 'Harold Crawford', '2013-06-05', '2013-10-15', '1928-3-2', 420, '942999'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(421, false, 'FERS', 1, 421, 303256.47, 421, 1, true, false, 'Earl Ward', '2013-06-05', '2013-09-27', '1954-11-7', 421, '925735'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(422, false, 'FERS', 1, 422, 291701.12, 422, 2, true, false, 'Linda Castillo', '2013-04-27', '2013-03-19', '1932-2-16', 422, '939133'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(423, false, 'FERS', 1, 423, 317990.5, 423, 1, true, false, 'Theresa Willis', '2013-10-13', '2013-07-17', '1940-11-28', 423, '977426'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(424, false, 'FERS', 1, 424, 337777.34, 424, 2, true, true, 'Sarah Payne', '2013-03-24', '2013-09-07', '1968-3-6', 424, '932623'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(425, false, 'FERS', 1, 425, 430024.8, 425, 2, true, false, 'Phyllis Diaz', '2013-07-18', '2013-11-25', '1955-4-2', 425, '913905'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(426, false, 'FERS', 1, 426, 263217.08, 426, 2, false, false, 'Denise Meyer', '2013-05-15', '2013-01-13', '1956-9-4', 426, '941874'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(427, false, 'FERS', 1, 427, 257508.09, 427, 1, true, true, 'Charles Reyes', '2013-02-18', '2013-02-09', '1951-5-7', 427, '909580'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(428, false, 'FERS', 1, 428, 314717.39, 428, 1, true, true, 'Michelle Fisher', '2013-05-16', '2012-12-15', '1935-9-30', 428, '930177'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(429, false, 'FERS', 1, 429, 458772.42, 429, 1, true, true, 'Scott Wallace', '2013-05-09', '2013-07-25', '1973-10-23', 429, '977873'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(430, false, 'FERS', 1, 430, 457169.81, 430, 1, true, false, 'Jacqueline Ortiz', '2013-05-10', '2013-02-04', '1976-1-7', 430, '905197'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(431, false, 'FERS', 1, 431, 492215.6, 431, 1, true, false, 'Stephanie Ward', '2013-11-02', '2013-11-23', '1975-7-5', 431, '983765'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(432, false, 'FERS', 1, 432, 252778.94, 432, 1, true, true, 'Billy Morris', '2013-05-12', '2013-09-15', '1965-2-22', 432, '936481'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(433, false, 'FERS', 1, 433, 268836.5, 433, 1, true, true, 'Justin Stone', '2013-04-15', '2013-10-21', '1979-9-15', 433, '939770'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(434, false, 'FERS', 1, 434, 370649.2, 434, 2, false, true, 'Nancy Watkins', '2013-11-03', '2013-05-25', '1964-6-30', 434, '916382'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(435, false, 'FERS', 1, 435, 330156.36, 435, 1, true, true, 'Pamela Snyder', '2013-02-06', '2013-01-12', '1944-12-21', 435, '912562'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(436, false, 'FERS', 1, 436, 303332.38, 436, 1, false, false, 'Patricia Watson', '2013-10-21', '2013-07-20', '1925-5-14', 436, '976382'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(437, false, 'FERS', 1, 437, 431618.05, 437, 1, false, false, 'Juan Evans', '2013-07-20', '2013-02-12', '1964-2-4', 437, '915196'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(438, false, 'FERS', 1, 438, 295185.68, 438, 1, false, false, 'Juan Coleman', '2013-06-26', '2013-04-06', '1935-6-4', 438, '988758'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(439, false, 'FERS', 1, 439, 466967.26, 439, 1, true, true, 'Aaron Castillo', '2013-03-16', '2013-11-29', '1962-7-30', 439, '970603'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(440, false, 'FERS', 1, 440, 203872.25, 440, 1, true, true, 'Denise Rogers', '2013-10-15', '2013-04-21', '1955-4-28', 440, '927105'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(441, false, 'FERS', 1, 441, 237836.68, 441, 1, true, false, 'Karen Bailey', '2013-10-09', '2013-11-30', '1942-9-16', 441, '934082'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(442, false, 'FERS', 1, 442, 236872.57, 442, 2, false, false, 'Arthur Crawford', '2013-11-27', '2013-06-02', '1951-5-23', 442, '993504'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(443, false, 'FERS', 1, 443, 376599.49, 443, 1, false, false, 'Fred Powell', '2013-01-24', '2013-08-20', '1965-7-24', 443, '945835'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(444, false, 'FERS', 1, 444, 465378.24, 444, 1, true, true, 'Joshua Wheeler', '2013-10-17', '2013-04-30', '1958-10-16', 444, '977554'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(445, false, 'FERS', 1, 445, 433354.95, 445, 1, true, false, 'Roy Cooper', '2013-02-01', '2013-09-05', '1937-9-5', 445, '947364'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(446, false, 'FERS', 1, 446, 293547.53, 446, 1, true, false, 'Pamela Ferguson', '2013-01-17', '2013-04-28', '1945-6-14', 446, '921421'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(447, false, 'FERS', 1, 447, 349525.88, 447, 2, false, true, 'Howard Griffin', '2012-12-30', '2013-06-21', '1935-3-27', 447, '901639'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(448, false, 'FERS', 1, 448, 340554.58, 448, 1, true, true, 'Eugene Moore', '2013-06-21', '2013-04-15', '1975-1-18', 448, '940202'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(449, false, 'FERS', 1, 449, 431867.94, 449, 1, true, false, 'Emily Watson', '2013-08-07', '2013-11-15', '1921-9-6', 449, '933195'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(450, false, 'FERS', 1, 450, 415777.23, 450, 2, false, true, 'Albert Ramirez', '2013-09-24', '2013-09-08', '1976-8-5', 450, '997371'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(451, false, 'FERS', 1, 451, 375355.33, 451, 1, false, false, 'Mark Johnson', '2013-07-01', '2013-05-10', '1946-12-22', 451, '906648'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(452, false, 'FERS', 1, 452, 494192.23, 452, 1, true, false, 'Norma Garza', '2013-05-28', '2013-05-24', '1943-12-8', 452, '990144'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(453, false, 'FERS', 1, 453, 466665.41, 453, 1, true, false, 'Arthur Perez', '2013-06-28', '2013-11-27', '1972-7-13', 453, '942974'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(454, false, 'FERS', 1, 454, 410372.62, 454, 1, false, false, 'Earl Cooper', '2013-07-06', '2013-05-31', '1961-6-5', 454, '988911'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(455, false, 'FERS', 1, 455, 409458.4, 455, 2, false, false, 'Virginia Riley', '2013-05-14', '2012-12-14', '1943-2-17', 455, '936605'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(456, false, 'FERS', 1, 456, 298292.59, 456, 2, true, true, 'Harold Payne', '2013-02-07', '2013-08-29', '1974-1-27', 456, '930253'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(457, false, 'FERS', 1, 457, 222075.4, 457, 2, true, true, 'Donald Peters', '2013-07-17', '2013-05-15', '1962-6-14', 457, '963402'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(458, false, 'FERS', 1, 458, 498424.74, 458, 1, true, true, 'Patrick Bryant', '2013-09-01', '2013-02-25', '1970-10-31', 458, '996476'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(459, false, 'FERS', 1, 459, 298736.12, 459, 2, true, false, 'Robin Ward', '2013-09-30', '2013-04-24', '1927-7-29', 459, '920077'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(460, false, 'FERS', 1, 460, 450840.37, 460, 1, true, true, 'Diane Thompson', '2013-10-09', '2013-09-20', '1976-3-6', 460, '934757'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(461, false, 'FERS', 1, 461, 284958.35, 461, 2, false, true, 'Harry Olson', '2013-10-09', '2013-11-25', '1934-12-27', 461, '954985'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(462, false, 'FERS', 1, 462, 470460.52, 462, 1, false, false, 'Donna Payne', '2013-04-26', '2013-08-19', '1960-1-9', 462, '964437'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(463, false, 'FERS', 1, 463, 220789.87, 463, 2, true, true, 'Gary Taylor', '2013-05-09', '2013-05-06', '1956-11-9', 463, '956000'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(464, false, 'FERS', 1, 464, 353770.06, 464, 1, false, false, 'Amy Richards', '2013-03-08', '2013-07-11', '1951-6-26', 464, '983894'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(465, false, 'FERS', 1, 465, 232869.94, 465, 1, false, true, 'Earl Bradley', '2013-11-29', '2013-01-20', '1933-1-22', 465, '996289'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(466, false, 'FERS', 1, 466, 348963.95, 466, 2, true, false, 'Sara Stevens', '2013-02-14', '2013-01-25', '1946-5-10', 466, '976414'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(467, false, 'FERS', 1, 467, 480699.6, 467, 2, true, false, 'Theresa Willis', '2013-07-17', '2013-03-28', '1941-9-26', 467, '996223'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(468, false, 'FERS', 1, 468, 444439.94, 468, 1, false, false, 'Doris Sullivan', '2013-07-12', '2013-10-21', '1974-4-18', 468, '957907'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(469, false, 'FERS', 1, 469, 454731.5, 469, 1, false, true, 'Robin Ward', '2013-03-06', '2013-08-28', '1961-1-8', 469, '969384'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(470, false, 'FERS', 1, 470, 478685.38, 470, 1, true, true, 'Marie Owens', '2013-06-02', '2013-08-07', '1941-8-7', 470, '965642'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(471, false, 'FERS', 1, 471, 311724.01, 471, 2, false, true, 'Sandra Hill', '2013-04-01', '2013-06-07', '1934-10-3', 471, '943912'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(472, false, 'FERS', 1, 472, 334273.02, 472, 2, true, true, 'Deborah Rivera', '2013-09-06', '2013-01-11', '1929-11-9', 472, '983806'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(473, false, 'FERS', 1, 473, 224763.46, 473, 2, true, true, 'Sarah Payne', '2013-08-02', '2013-01-04', '1944-11-4', 473, '978325'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(474, false, 'FERS', 1, 474, 354663.74, 474, 2, true, false, 'Joyce Fisher', '2013-03-21', '2013-06-03', '1978-5-6', 474, '924424'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(475, false, 'FERS', 1, 475, 458589.39, 475, 1, true, false, 'Raymond Barnes', '2013-10-18', '2013-04-30', '1971-6-21', 475, '972483'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(476, false, 'FERS', 1, 476, 205776.8, 476, 1, false, false, 'Kevin Perez', '2013-09-23', '2013-07-31', '1963-8-7', 476, '982424'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(477, false, 'FERS', 1, 477, 426036.53, 477, 1, true, true, 'Jesse Austin', '2013-09-12', '2013-01-26', '1951-5-9', 477, '991442'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(478, false, 'FERS', 1, 478, 356846.42, 478, 2, false, true, 'James Day', '2013-02-25', '2012-12-23', '1977-11-18', 478, '949515'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(479, false, 'FERS', 1, 479, 469289.2, 479, 1, false, true, 'Anthony Vasquez', '2013-11-09', '2013-07-18', '1933-9-7', 479, '930260'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(480, false, 'FERS', 1, 480, 483081.77, 480, 2, true, false, 'Julia Porter', '2013-03-08', '2013-01-29', '1945-8-16', 480, '934848'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(481, false, 'FERS', 1, 481, 254478, 481, 2, false, false, 'Terry Fields', '2013-10-11', '2012-12-26', '1937-3-5', 481, '951687'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(482, false, 'FERS', 1, 482, 343341.71, 482, 2, true, false, 'Arthur Perez', '2013-05-04', '2013-05-07', '1975-4-7', 482, '931746'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(483, false, 'FERS', 1, 483, 378660.83, 483, 1, false, true, 'Dorothy Lawson', '2013-09-27', '2013-06-06', '1963-2-9', 483, '932735'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(484, false, 'FERS', 1, 484, 432381.07, 484, 2, false, true, 'Phillip Snyder', '2013-04-22', '2013-06-01', '1972-12-28', 484, '925932'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(485, false, 'FERS', 1, 485, 279673.26, 485, 2, true, true, 'Sara Simpson', '2013-02-07', '2013-02-12', '1955-5-4', 485, '984687'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(486, false, 'FERS', 1, 486, 317942.47, 486, 1, true, true, 'Norma Garza', '2013-11-25', '2013-11-14', '1977-7-10', 486, '956863'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(487, false, 'FERS', 1, 487, 362221.26, 487, 1, false, false, 'Sean Cunningham', '2013-02-20', '2013-11-01', '1927-3-10', 487, '906831'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(488, false, 'FERS', 1, 488, 375157.96, 488, 2, false, true, 'Michelle Black', '2013-05-31', '2013-12-05', '1970-1-5', 488, '956988'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(489, false, 'FERS', 1, 489, 471116.28, 489, 2, true, true, 'Tina Howard', '2013-09-11', '2013-05-16', '1936-3-17', 489, '958757'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(490, false, 'FERS', 1, 490, 299577.12, 490, 1, true, true, 'Roy Wheeler', '2013-07-09', '2013-08-08', '1968-6-14', 490, '996056'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(491, false, 'FERS', 1, 491, 403541.11, 491, 1, false, true, 'Aaron Knight', '2013-05-29', '2013-04-07', '1954-12-28', 491, '998472'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(492, false, 'FERS', 1, 492, 298556.37, 492, 1, false, true, 'Stephanie Ward', '2012-12-16', '2013-03-13', '1965-1-19', 492, '978479'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(493, false, 'FERS', 1, 493, 254146.54, 493, 2, true, true, 'Donna Parker', '2013-03-10', '2013-03-17', '1978-7-31', 493, '989975'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(494, false, 'FERS', 1, 494, 278513.31, 494, 2, false, false, 'Judith Rose', '2013-05-29', '2013-01-12', '1924-5-28', 494, '933538'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(495, false, 'FERS', 1, 495, 361828.9, 495, 2, false, true, 'Carlos Thompson', '2013-03-21', '2013-05-19', '1976-9-11', 495, '992620'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(496, false, 'FERS', 1, 496, 382737.94, 496, 1, true, false, 'Jacqueline Weaver', '2013-11-07', '2013-11-17', '1933-12-2', 496, '976748'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(497, false, 'FERS', 1, 497, 204258.73, 497, 1, false, false, 'Lisa Gordon', '2013-07-13', '2013-04-07', '1957-7-13', 497, '963765'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(498, false, 'FERS', 1, 498, 297705.71, 498, 1, false, true, 'Samuel Coleman', '2013-09-09', '2013-04-19', '1952-10-24', 498, '921308'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(499, false, 'FERS', 1, 499, 404676.99, 499, 2, false, false, 'Nancy Perez', '2013-03-26', '2013-03-23', '1947-1-5', 499, '981542'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(500, false, 'FERS', 1, 500, 499529.28, 500, 2, true, true, 'Edward Kelly', '2013-02-04', '2013-05-10', '1963-4-16', 500, '915441'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(501, false, 'FERS', 1, 501, 275078, 501, 1, false, true, 'Richard Collins', '2013-07-31', '2013-07-14', '1938-10-9', 501, '933969'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(502, false, 'FERS', 1, 502, 256031.29, 502, 2, false, false, 'Donald Peters', '2013-11-11', '2012-12-17', '1928-8-10', 502, '980336'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(503, false, 'FERS', 1, 503, 210047.85, 503, 1, true, false, 'Thomas Garza', '2013-04-15', '2013-06-17', '1962-2-10', 503, '911715'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(504, false, 'FERS', 1, 504, 241097.09, 504, 2, false, true, 'Carlos Warren', '2013-01-27', '2013-06-05', '1938-9-5', 504, '928094'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(505, false, 'FERS', 1, 505, 362480.29, 505, 1, false, true, 'Roy Hill', '2013-04-14', '2013-06-17', '1932-7-18', 505, '912913'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(506, false, 'FERS', 1, 506, 282732.47, 506, 1, true, false, 'James Day', '2013-10-03', '2013-09-30', '1945-1-15', 506, '993310'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(507, false, 'FERS', 1, 507, 246385.77, 507, 1, true, false, 'Jane Olson', '2013-04-12', '2013-01-24', '1961-7-27', 507, '939227'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(508, false, 'FERS', 1, 508, 416678.39, 508, 1, true, true, 'Louise Mendoza', '2013-06-05', '2013-10-22', '1936-5-14', 508, '935494'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(509, false, 'FERS', 1, 509, 366183.42, 509, 1, false, false, 'Sean Cunningham', '2013-07-29', '2013-11-16', '1938-12-21', 509, '926835'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(510, false, 'FERS', 1, 510, 435052.74, 510, 1, true, true, 'Amanda Day', '2013-01-09', '2013-09-12', '1954-3-22', 510, '973799'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(511, false, 'FERS', 1, 511, 420768.63, 511, 2, false, true, 'Roger Williams', '2013-02-07', '2013-02-05', '1922-1-10', 511, '925890'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(512, false, 'FERS', 1, 512, 450814.87, 512, 1, false, true, 'Michelle Simmons', '2013-09-07', '2013-08-24', '1930-4-15', 512, '928667'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(513, false, 'FERS', 1, 513, 398565.79, 513, 2, true, true, 'Willie Hughes', '2013-06-05', '2013-06-25', '1938-5-31', 513, '915200'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(514, false, 'FERS', 1, 514, 316942.37, 514, 2, false, false, 'Jesse Richardson', '2013-10-17', '2013-11-05', '1979-4-22', 514, '959550'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(515, false, 'FERS', 1, 515, 444541.81, 515, 1, false, false, 'Karen Wheeler', '2013-11-11', '2013-04-17', '1970-4-2', 515, '909139'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(516, false, 'FERS', 1, 516, 352770.94, 516, 2, true, false, 'Shirley Simpson', '2013-09-24', '2013-10-15', '1961-12-16', 516, '906865'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(517, false, 'FERS', 1, 517, 342709.48, 517, 2, false, false, 'Richard Myers', '2013-02-08', '2013-03-15', '1970-4-30', 517, '919317'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(518, false, 'FERS', 1, 518, 435417.14, 518, 1, true, false, 'Fred Powell', '2013-05-04', '2013-11-07', '1928-11-4', 518, '914513'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(519, false, 'FERS', 1, 519, 250860.55, 519, 1, true, true, 'Kenneth Fields', '2013-06-25', '2013-09-12', '1965-11-19', 519, '993657'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(520, false, 'FERS', 1, 520, 480563.17, 520, 2, true, false, 'Ruth Ramirez', '2013-11-01', '2013-05-25', '1979-6-10', 520, '991004'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(521, false, 'FERS', 1, 521, 409545.26, 521, 2, false, true, 'Dennis Alexander', '2013-04-20', '2013-08-31', '1924-5-28', 521, '902272'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(522, false, 'FERS', 1, 522, 227775.24, 522, 2, false, false, 'Paula Fernandez', '2013-02-04', '2013-03-01', '1945-6-30', 522, '997910'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(523, false, 'FERS', 1, 523, 408902.08, 523, 1, false, false, 'Martha Hunt', '2013-09-21', '2013-12-06', '1929-2-7', 523, '962052'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(524, false, 'FERS', 1, 524, 264007.4, 524, 1, true, false, 'Bruce Walker', '2013-11-28', '2013-06-04', '1922-3-2', 524, '958703'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(525, false, 'FERS', 1, 525, 251180.59, 525, 1, false, false, 'Diana Gray', '2013-08-02', '2013-09-22', '1938-2-22', 525, '963013'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(526, false, 'FERS', 1, 526, 256363.39, 526, 2, true, true, 'Sara Stevens', '2013-06-09', '2013-05-30', '1965-12-29', 526, '932724'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(527, false, 'FERS', 1, 527, 321250.96, 527, 1, true, true, 'Phyllis Kelly', '2013-01-30', '2012-12-20', '1959-8-5', 527, '951131'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(528, false, 'FERS', 1, 528, 349801.37, 528, 1, true, false, 'Ruth Griffin', '2013-05-29', '2013-12-04', '1921-10-20', 528, '943224'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(529, false, 'FERS', 1, 529, 457769.91, 529, 1, false, true, 'Jacqueline Ortiz', '2013-03-14', '2013-11-16', '1957-1-24', 529, '978229'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(530, false, 'FERS', 1, 530, 230542.06, 530, 2, false, true, 'Randy Green', '2013-10-08', '2013-11-29', '1977-5-11', 530, '907042'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(531, false, 'FERS', 1, 531, 394714.34, 531, 2, true, true, 'Keith Lewis', '2012-12-29', '2013-01-14', '1973-3-25', 531, '934334'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(532, false, 'FERS', 1, 532, 238276.66, 532, 2, true, true, 'Janice Chavez', '2013-02-05', '2013-03-01', '1958-3-3', 532, '987763'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(533, false, 'FERS', 1, 533, 276160.32, 533, 2, true, true, 'Jeffrey Kelley', '2013-02-23', '2013-10-28', '1966-10-29', 533, '905658'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(534, false, 'FERS', 1, 534, 262221.07, 534, 1, false, true, 'Bobby Burton', '2013-06-08', '2013-01-01', '1946-2-25', 534, '950566'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(535, false, 'FERS', 1, 535, 368591.99, 535, 1, true, false, 'Phillip Hamilton', '2013-04-19', '2013-05-29', '1967-7-24', 535, '945985'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(536, false, 'FERS', 1, 536, 331800.32, 536, 2, false, true, 'Roger Williams', '2013-08-17', '2013-11-28', '1935-4-9', 536, '915712'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(537, false, 'FERS', 1, 537, 485843.32, 537, 1, true, false, 'Harry Barnes', '2013-04-13', '2013-11-26', '1964-9-22', 537, '993874'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(538, false, 'FERS', 1, 538, 212311.27, 538, 1, true, false, 'Dorothy Shaw', '2013-05-28', '2013-01-07', '1962-7-5', 538, '926933'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(539, false, 'FERS', 1, 539, 375378.53, 539, 1, false, false, 'Andrea Taylor', '2013-11-27', '2013-10-10', '1943-1-16', 539, '956004'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(540, false, 'FERS', 1, 540, 345090.64, 540, 1, false, false, 'Christine Torres', '2013-04-29', '2012-12-22', '1936-7-4', 540, '919037'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(541, false, 'FERS', 1, 541, 328138.9, 541, 1, true, false, 'Stephanie Perry', '2013-11-02', '2013-04-04', '1979-2-7', 541, '929599'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(542, false, 'FERS', 1, 542, 448914.25, 542, 2, true, false, 'Karen Wheeler', '2013-09-14', '2013-07-19', '1962-3-22', 542, '910330'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(543, false, 'FERS', 1, 543, 329687.95, 543, 1, false, false, 'Harry Barnes', '2013-05-24', '2013-10-15', '1934-4-15', 543, '915968'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(544, false, 'FERS', 1, 544, 447217.35, 544, 1, false, false, 'Gary Rogers', '2013-08-12', '2013-02-17', '1951-5-30', 544, '985509'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(545, false, 'FERS', 1, 545, 299826.37, 545, 2, true, false, 'Teresa Gilbert', '2013-06-11', '2013-05-05', '1939-4-1', 545, '916837'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(546, false, 'FERS', 1, 546, 432380.01, 546, 2, false, false, 'Joe Murray', '2013-09-03', '2013-02-07', '1954-12-3', 546, '920520'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(547, false, 'FERS', 1, 547, 203110.87, 547, 1, false, true, 'Judy Jordan', '2013-10-07', '2013-04-29', '1939-1-13', 547, '929184'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(548, false, 'FERS', 1, 548, 426940.61, 548, 2, false, false, 'Howard Griffin', '2013-10-23', '2013-09-13', '1946-11-7', 548, '960656'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(549, false, 'FERS', 1, 549, 228277.65, 549, 2, true, false, 'Ryan Chapman', '2013-09-25', '2013-09-02', '1973-12-8', 549, '938244'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(550, false, 'FERS', 1, 550, 366694.21, 550, 1, true, true, 'Richard Myers', '2013-08-12', '2013-09-07', '1925-2-10', 550, '940058'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(551, false, 'FERS', 1, 551, 399617.65, 551, 2, true, true, 'Juan Evans', '2013-05-31', '2013-06-07', '1932-9-15', 551, '993522'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(552, false, 'FERS', 1, 552, 210553.46, 552, 1, false, true, 'Steven Griffin', '2013-05-14', '2013-12-02', '1938-12-11', 552, '965230'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(553, false, 'FERS', 1, 553, 490902.12, 553, 1, true, true, 'Jacqueline Weaver', '2013-01-16', '2013-04-17', '1953-4-17', 553, '959320'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(554, false, 'FERS', 1, 554, 272671.29, 554, 2, false, false, 'Phillip Richards', '2013-04-04', '2013-09-14', '1972-2-4', 554, '905948'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(555, false, 'FERS', 1, 555, 473546.02, 555, 2, false, true, 'Sarah Peters', '2013-11-08', '2013-01-18', '1922-5-19', 555, '997779'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(556, false, 'FERS', 1, 556, 341413.12, 556, 1, false, false, 'Phillip Matthews', '2013-09-29', '2012-12-24', '1973-12-31', 556, '902445'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(557, false, 'FERS', 1, 557, 227014.75, 557, 1, false, false, 'Denise Cox', '2013-05-29', '2013-10-21', '1936-12-8', 557, '993611'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(558, false, 'FERS', 1, 558, 360699.53, 558, 2, true, true, 'Edward Palmer', '2013-08-27', '2013-03-28', '1977-4-17', 558, '913123'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(559, false, 'FERS', 1, 559, 364470.67, 559, 1, false, true, 'Howard Hansen', '2013-08-15', '2013-05-11', '1944-8-22', 559, '913046'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(560, false, 'FERS', 1, 560, 448559.55, 560, 1, false, false, 'Harry Barnes', '2013-07-15', '2013-09-06', '1969-1-15', 560, '934969'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(561, false, 'FERS', 1, 561, 429629.41, 561, 1, true, false, 'Martha Powell', '2013-04-17', '2013-05-04', '1948-5-6', 561, '957393'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(562, false, 'FERS', 1, 562, 480604.63, 562, 2, true, false, 'Rose Perry', '2013-01-14', '2012-12-25', '1961-4-30', 562, '941417'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(563, false, 'FERS', 1, 563, 322747.53, 563, 2, true, false, 'Emily Tucker', '2013-03-18', '2013-07-29', '1928-4-16', 563, '907715'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(564, false, 'FERS', 1, 564, 303970.27, 564, 1, true, true, 'Lois Sanchez', '2013-03-08', '2013-09-01', '1925-2-27', 564, '907316'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(565, false, 'FERS', 1, 565, 435797.16, 565, 1, true, true, 'Nicole Spencer', '2013-02-14', '2013-01-17', '1926-9-20', 565, '943607'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(566, false, 'FERS', 1, 566, 312918.12, 566, 2, false, true, 'Daniel Oliver', '2013-10-15', '2013-10-20', '1962-10-15', 566, '986687'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(567, false, 'FERS', 1, 567, 222278.85, 567, 2, true, true, 'Fred Powell', '2013-04-28', '2013-10-26', '1921-4-18', 567, '944326'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(568, false, 'FERS', 1, 568, 416859.84, 568, 2, false, false, 'Arthur Crawford', '2013-01-31', '2013-10-11', '1949-2-1', 568, '964061'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(569, false, 'FERS', 1, 569, 395651.5, 569, 1, true, false, 'Charles Reyes', '2013-11-18', '2013-03-29', '1960-10-28', 569, '990162'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(570, false, 'FERS', 1, 570, 270260.48, 570, 1, false, true, 'Nancy Walker', '2013-10-24', '2013-05-18', '1924-2-8', 570, '996458'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(571, false, 'FERS', 1, 571, 204554.1, 571, 1, true, true, 'Steve Crawford', '2013-05-02', '2013-04-18', '1947-1-3', 571, '917414'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(572, false, 'FERS', 1, 572, 218855.86, 572, 2, true, true, 'Phillip Hamilton', '2013-05-20', '2013-07-28', '1971-2-22', 572, '984611'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(573, false, 'FERS', 1, 573, 471308.73, 573, 2, false, true, 'Andrew Cooper', '2013-11-09', '2013-08-03', '1946-6-28', 573, '929524'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(574, false, 'FERS', 1, 574, 476434.82, 574, 2, true, true, 'Brian Perkins', '2013-08-16', '2013-11-25', '1931-6-15', 574, '911291'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(575, false, 'FERS', 1, 575, 381932.55, 575, 1, false, false, 'Louis Hansen', '2013-05-27', '2013-07-09', '1972-6-1', 575, '970702'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(576, false, 'FERS', 1, 576, 208959.24, 576, 1, false, false, 'Denise Freeman', '2012-12-11', '2012-12-31', '1932-7-20', 576, '977788'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(577, false, 'FERS', 1, 577, 260281.09, 577, 2, false, false, 'Maria Nichols', '2013-10-03', '2013-01-07', '1965-7-27', 577, '938362'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(578, false, 'FERS', 1, 578, 473712.14, 578, 1, true, false, 'Sean Cunningham', '2013-01-19', '2013-12-07', '1940-10-15', 578, '942909'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(579, false, 'FERS', 1, 579, 311802.63, 579, 2, false, false, 'Charles Harrison', '2013-09-21', '2013-03-08', '1962-9-11', 579, '944730'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(580, false, 'FERS', 1, 580, 236151.09, 580, 1, true, true, 'Sara Reyes', '2013-10-18', '2013-10-18', '1963-3-6', 580, '960279'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(581, false, 'FERS', 1, 581, 381269.97, 581, 2, false, false, 'Gary Payne', '2013-11-18', '2013-05-25', '1955-1-28', 581, '973094'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(582, false, 'FERS', 1, 582, 440462.8, 582, 2, false, true, 'Alice Cook', '2013-06-26', '2013-03-26', '1932-8-17', 582, '975678'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(583, false, 'FERS', 1, 583, 204819.9, 583, 1, true, true, 'Anne Stephens', '2013-09-02', '2013-06-19', '1954-12-7', 583, '905963'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(584, false, 'FERS', 1, 584, 298385.5, 584, 2, false, true, 'Phyllis Diaz', '2013-04-27', '2013-01-16', '1960-1-3', 584, '906913'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(585, false, 'FERS', 1, 585, 422443.77, 585, 2, false, true, 'Scott Romero', '2013-08-31', '2012-12-18', '1948-9-2', 585, '959074'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(586, false, 'FERS', 1, 586, 465067.96, 586, 2, true, true, 'Denise Rogers', '2012-12-15', '2013-09-03', '1922-4-19', 586, '932722'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(587, false, 'FERS', 1, 587, 446327.01, 587, 1, false, false, 'Julie Murphy', '2013-03-25', '2013-03-27', '1924-4-26', 587, '931977'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(588, false, 'FERS', 1, 588, 298447.19, 588, 1, true, true, 'Marie Owens', '2013-04-23', '2013-03-19', '1941-5-8', 588, '963173'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(589, false, 'FERS', 1, 589, 251691.9, 589, 1, true, true, 'Judith Sanders', '2013-07-18', '2013-03-31', '1955-8-24', 589, '968294'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(590, false, 'FERS', 1, 590, 221293.6, 590, 2, false, false, 'Martin Watkins', '2012-12-15', '2013-01-12', '1937-10-10', 590, '913209'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(591, false, 'FERS', 1, 591, 261630.7, 591, 1, false, false, 'Carol Cunningham', '2013-09-05', '2013-10-24', '1947-4-17', 591, '993694'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(592, false, 'FERS', 1, 592, 461200.21, 592, 2, true, true, 'Martha Powell', '2013-09-14', '2013-03-17', '1970-5-17', 592, '988602'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(593, false, 'FERS', 1, 593, 494212.51, 593, 2, false, false, 'Martin Lawson', '2013-05-15', '2013-08-27', '1944-2-22', 593, '915866'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(594, false, 'FERS', 1, 594, 422616.64, 594, 1, true, false, 'Jack Dunn', '2013-03-23', '2013-10-12', '1925-4-24', 594, '931463'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(595, false, 'FERS', 1, 595, 378742.88, 595, 2, true, false, 'Laura Mitchell', '2013-01-15', '2013-05-23', '1921-12-22', 595, '947025'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(596, false, 'FERS', 1, 596, 307922.91, 596, 1, false, true, 'Jean Clark', '2013-03-11', '2013-10-13', '1927-11-9', 596, '966322'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(597, false, 'FERS', 1, 597, 392067.23, 597, 2, false, true, 'Paula Fernandez', '2013-04-04', '2013-03-03', '1963-7-22', 597, '922614'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(598, false, 'FERS', 1, 598, 266142.09, 598, 1, false, false, 'Peter Flores', '2013-10-16', '2013-07-29', '1923-4-29', 598, '914998'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(599, false, 'FERS', 1, 599, 250164.6, 599, 2, false, false, 'Jean Clark', '2013-08-08', '2013-10-01', '1937-5-18', 599, '989325'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(600, false, 'FERS', 1, 600, 212767.23, 600, 2, true, false, 'Keith Wood', '2013-04-03', '2013-08-05', '1926-11-18', 600, '961042'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(601, false, 'FERS', 1, 601, 469309.89, 601, 1, false, false, 'Larry Little', '2013-09-10', '2013-04-11', '1975-5-27', 601, '984169'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(602, false, 'FERS', 1, 602, 349767.02, 602, 2, false, true, 'Carl Palmer', '2013-02-21', '2013-11-16', '1926-1-28', 602, '936007'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(603, false, 'FERS', 1, 603, 462495.09, 603, 2, false, true, 'Mark Johnson', '2013-09-01', '2013-06-11', '1950-7-21', 603, '944000'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(604, false, 'FERS', 1, 604, 440866.57, 604, 2, false, false, 'Daniel George', '2013-07-07', '2013-01-03', '1923-11-26', 604, '990083'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(605, false, 'FERS', 1, 605, 292678.24, 605, 1, false, true, 'Peter Daniels', '2013-07-28', '2013-08-11', '1931-8-22', 605, '946414'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(606, false, 'FERS', 1, 606, 466882.49, 606, 1, true, false, 'Jesse Black', '2013-10-19', '2013-05-08', '1932-3-7', 606, '913949'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(607, false, 'FERS', 1, 607, 485133.98, 607, 2, false, true, 'Frank Griffin', '2013-12-04', '2013-03-09', '1939-8-22', 607, '943494'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(608, false, 'FERS', 1, 608, 340593.87, 608, 1, true, true, 'David Allen', '2013-11-07', '2013-05-03', '1954-12-25', 608, '952273'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(609, false, 'FERS', 1, 609, 343440.06, 609, 1, false, true, 'Gerald Moore', '2013-04-24', '2013-02-05', '1939-3-23', 609, '974039'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(610, false, 'FERS', 1, 610, 360259.45, 610, 2, true, true, 'Cheryl Medina', '2013-03-24', '2013-09-06', '1962-3-1', 610, '984659'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(611, false, 'FERS', 1, 611, 362121.21, 611, 2, true, false, 'Paul Bell', '2012-12-19', '2013-09-12', '1949-1-13', 611, '930616'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(612, false, 'FERS', 1, 612, 254046.71, 612, 1, false, true, 'Robin Ward', '2013-04-04', '2013-04-29', '1928-8-25', 612, '949864'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(613, false, 'FERS', 1, 613, 453823.18, 613, 1, true, false, 'Karen Day', '2013-08-13', '2013-02-12', '1950-11-24', 613, '908925'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(614, false, 'FERS', 1, 614, 331290.81, 614, 1, false, true, 'Rebecca Roberts', '2013-10-25', '2013-11-30', '1960-2-17', 614, '993956'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(615, false, 'FERS', 1, 615, 460204.09, 615, 1, false, true, 'Gary Rogers', '2013-05-22', '2013-04-01', '1973-10-14', 615, '939692'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(616, false, 'FERS', 1, 616, 360453.34, 616, 2, true, false, 'Marie Owens', '2013-05-06', '2012-12-30', '1970-8-18', 616, '947720'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(617, false, 'FERS', 1, 617, 369559.15, 617, 2, true, true, 'Russell Powell', '2013-11-19', '2013-01-07', '1924-6-12', 617, '995501'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(618, false, 'FERS', 1, 618, 294909.57, 618, 1, false, true, 'Lois Olson', '2013-05-07', '2013-04-18', '1931-7-14', 618, '911477'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(619, false, 'FERS', 1, 619, 299070.45, 619, 1, false, true, 'Sean Cunningham', '2012-12-19', '2013-02-03', '1972-8-31', 619, '996233'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(620, false, 'FERS', 1, 620, 231655.75, 620, 2, false, false, 'Judith Williams', '2013-05-27', '2013-04-02', '1930-11-4', 620, '953819'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(621, false, 'FERS', 1, 621, 263260.47, 621, 2, true, true, 'Ralph Jacobs', '2013-08-03', '2013-09-22', '1941-6-29', 621, '915503'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(622, false, 'FERS', 1, 622, 277632.15, 622, 2, false, true, 'Ryan Henry', '2013-01-20', '2013-11-24', '1959-4-20', 622, '937738'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(623, false, 'FERS', 1, 623, 444599.55, 623, 2, false, false, 'Randy Jacobs', '2013-10-13', '2013-04-11', '1922-12-6', 623, '949567'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(624, false, 'FERS', 1, 624, 221071.73, 624, 1, false, true, 'Harry Bowman', '2013-06-21', '2013-11-14', '1929-4-19', 624, '951198'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(625, false, 'FERS', 1, 625, 350520.5, 625, 2, false, false, 'Richard Collins', '2013-07-15', '2013-01-18', '1927-10-14', 625, '975269'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(626, false, 'FERS', 1, 626, 448476.29, 626, 1, true, true, 'Michelle Fisher', '2013-09-02', '2013-10-14', '1961-1-13', 626, '923570'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(627, false, 'FERS', 1, 627, 327773.33, 627, 2, true, true, 'Alice Cook', '2013-04-03', '2013-12-09', '1929-9-1', 627, '952272'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(628, false, 'FERS', 1, 628, 387438.58, 628, 1, false, false, 'Jane Thompson', '2013-04-09', '2013-01-07', '1932-8-12', 628, '985136'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(629, false, 'FERS', 1, 629, 216615.87, 629, 2, false, true, 'Cheryl Boyd', '2013-09-24', '2013-10-05', '1935-5-15', 629, '918979'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(630, false, 'FERS', 1, 630, 255051.44, 630, 2, false, true, 'Fred Berry', '2013-04-06', '2013-01-28', '1976-8-27', 630, '902492'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(631, false, 'FERS', 1, 631, 210097.12, 631, 1, false, true, 'Diana Reynolds', '2013-03-22', '2013-08-24', '1927-8-29', 631, '921848'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(632, false, 'FERS', 1, 632, 323700.32, 632, 2, true, false, 'Jessica Smith', '2012-12-29', '2013-11-09', '1921-11-18', 632, '901679'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(633, false, 'FERS', 1, 633, 293177.55, 633, 2, true, true, 'Matthew Wood', '2013-03-18', '2013-09-23', '1921-11-18', 633, '985020'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(634, false, 'FERS', 1, 634, 386444.92, 634, 1, true, false, 'Deborah Hernandez', '2013-01-03', '2013-08-14', '1928-7-22', 634, '926721'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(635, false, 'FERS', 1, 635, 462384.22, 635, 2, true, true, 'Ruth Harvey', '2012-12-17', '2013-05-31', '1939-10-10', 635, '969027'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(636, false, 'FERS', 1, 636, 429684.85, 636, 1, true, true, 'Cheryl Medina', '2013-09-05', '2013-04-29', '1932-6-17', 636, '972902'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(637, false, 'FERS', 1, 637, 372623.78, 637, 2, false, false, 'Albert Ramirez', '2013-02-10', '2013-11-02', '1939-10-19', 637, '999632'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(638, false, 'FERS', 1, 638, 465191.67, 638, 1, true, false, 'Charles Bryant', '2013-01-02', '2013-02-12', '1978-3-11', 638, '909962'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(639, false, 'FERS', 1, 639, 413433.65, 639, 2, true, false, 'Donald Ford', '2013-04-06', '2013-07-10', '1934-5-4', 639, '916192'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(640, false, 'FERS', 1, 640, 220446.17, 640, 1, true, true, 'Earl Greene', '2013-10-23', '2013-01-05', '1940-9-11', 640, '913279'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(641, false, 'FERS', 1, 641, 461997.8, 641, 1, true, true, 'Gary Rogers', '2013-07-14', '2013-07-21', '1963-11-21', 641, '913955'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(642, false, 'FERS', 1, 642, 463423.48, 642, 1, false, false, 'Roy Hill', '2013-06-09', '2013-05-20', '1952-12-23', 642, '944096'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(643, false, 'FERS', 1, 643, 242359.99, 643, 1, false, false, 'Marie Gonzalez', '2013-03-21', '2013-12-01', '1976-2-2', 643, '948114'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(644, false, 'FERS', 1, 644, 416377.84, 644, 1, false, true, 'Dennis Alexander', '2013-10-30', '2013-05-28', '1971-10-30', 644, '993825'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(645, false, 'FERS', 1, 645, 300187.96, 645, 2, false, true, 'Tina Dixon', '2013-07-21', '2013-03-08', '1927-2-14', 645, '910745'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(646, false, 'FERS', 1, 646, 265238.96, 646, 2, true, true, 'Ruth Garrett', '2013-07-15', '2013-11-23', '1949-8-26', 646, '925400'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(647, false, 'FERS', 1, 647, 256189.08, 647, 1, false, true, 'Rachel Jordan', '2013-12-09', '2013-01-18', '1930-12-20', 647, '990749'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(648, false, 'FERS', 1, 648, 233912.44, 648, 1, true, false, 'Christopher Kennedy', '2013-09-04', '2013-01-12', '1954-3-11', 648, '919055'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(649, false, 'FERS', 1, 649, 230297.66, 649, 1, false, false, 'Henry Kelley', '2013-04-08', '2013-08-24', '1925-12-10', 649, '914579'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(650, false, 'FERS', 1, 650, 269645.26, 650, 1, true, false, 'Scott Rogers', '2013-02-01', '2013-06-09', '1927-6-26', 650, '920008'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(651, false, 'FERS', 1, 651, 227131.37, 651, 1, false, false, 'Keith Lee', '2013-06-10', '2013-09-29', '1940-9-30', 651, '944620'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(652, false, 'FERS', 1, 652, 490058.71, 652, 1, false, true, 'Kathryn Palmer', '2013-03-01', '2013-11-01', '1942-2-27', 652, '957841'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(653, false, 'FERS', 1, 653, 340801.94, 653, 1, true, false, 'Philip Henry', '2013-08-17', '2013-04-29', '1955-6-11', 653, '985916'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(654, false, 'FERS', 1, 654, 490746.15, 654, 2, true, false, 'Sarah Peters', '2013-02-19', '2013-01-31', '1958-9-12', 654, '944993'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(655, false, 'FERS', 1, 655, 328979.55, 655, 1, true, true, 'Clarence Diaz', '2013-01-24', '2013-04-16', '1924-5-6', 655, '956818'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(656, false, 'FERS', 1, 656, 363664.79, 656, 1, false, true, 'Deborah Lane', '2013-07-30', '2013-09-26', '1924-10-26', 656, '937098'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(657, false, 'FERS', 1, 657, 461299.4, 657, 2, true, false, 'Jesse Black', '2013-08-20', '2013-03-30', '1927-11-19', 657, '987968'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(658, false, 'FERS', 1, 658, 218353.67, 658, 1, true, false, 'Andrea Taylor', '2013-09-10', '2013-11-26', '1933-10-24', 658, '938959'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(659, false, 'FERS', 1, 659, 313916.78, 659, 1, true, false, 'Kathleen Gilbert', '2013-11-29', '2013-02-01', '1935-6-3', 659, '962659'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(660, false, 'FERS', 1, 660, 367741.75, 660, 1, false, true, 'Craig Wilson', '2012-12-16', '2013-04-23', '1944-11-6', 660, '902064'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(661, false, 'FERS', 1, 661, 338369.71, 661, 2, true, true, 'Norma Garza', '2013-10-27', '2013-08-22', '1976-12-13', 661, '910488'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(662, false, 'FERS', 1, 662, 456472.26, 662, 1, true, false, 'Donald King', '2013-06-26', '2013-09-24', '1936-8-12', 662, '936728'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(663, false, 'FERS', 1, 663, 233380.6, 663, 1, false, false, 'Amy Richards', '2012-12-22', '2013-07-27', '1946-6-26', 663, '954152'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(664, false, 'FERS', 1, 664, 424395.69, 664, 2, false, true, 'Jonathan Stanley', '2013-11-24', '2013-08-31', '1949-9-3', 664, '983285'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(665, false, 'FERS', 1, 665, 418035.62, 665, 1, false, true, 'Dorothy Lawson', '2013-01-04', '2013-03-24', '1970-12-6', 665, '983538'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(666, false, 'FERS', 1, 666, 379084.63, 666, 2, false, true, 'Lillian Alvarez', '2013-05-23', '2013-04-19', '1945-9-17', 666, '910846'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(667, false, 'FERS', 1, 667, 382744.12, 667, 2, false, true, 'Nicholas Cruz', '2013-08-10', '2013-08-09', '1928-6-24', 667, '906354'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(668, false, 'FERS', 1, 668, 254233.22, 668, 2, false, true, 'Christina Scott', '2013-04-12', '2013-10-08', '1926-12-16', 668, '949127'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(669, false, 'FERS', 1, 669, 431468.86, 669, 1, false, false, 'Jean Fernandez', '2013-02-14', '2013-04-27', '1942-1-4', 669, '935821'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(670, false, 'FERS', 1, 670, 222072.56, 670, 2, true, true, 'Kevin Cunningham', '2013-07-25', '2013-05-05', '1973-11-14', 670, '902489'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(671, false, 'FERS', 1, 671, 356469.99, 671, 1, true, true, 'Juan Coleman', '2013-09-26', '2013-08-16', '1971-5-24', 671, '980316'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(672, false, 'FERS', 1, 672, 252526.95, 672, 2, false, true, 'Steve Crawford', '2013-12-05', '2012-12-28', '1929-8-15', 672, '905213'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(673, false, 'FERS', 1, 673, 208590.37, 673, 2, true, false, 'George Bryant', '2013-06-13', '2012-12-13', '1924-11-17', 673, '963527'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(674, false, 'FERS', 1, 674, 458535.94, 674, 2, false, false, 'Victor Willis', '2013-07-30', '2013-01-22', '1930-3-3', 674, '944842'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(675, false, 'FERS', 1, 675, 381267.1, 675, 1, false, false, 'Raymond Barnes', '2013-01-26', '2013-05-14', '1970-2-20', 675, '980414'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(676, false, 'FERS', 1, 676, 489731.82, 676, 1, true, false, 'Samuel Coleman', '2013-01-12', '2013-09-06', '1928-8-20', 676, '980163'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(677, false, 'FERS', 1, 677, 360243.8, 677, 1, true, true, 'Craig Wilson', '2013-03-05', '2013-05-21', '1958-10-10', 677, '932849'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(678, false, 'FERS', 1, 678, 352510.84, 678, 1, true, true, 'Diana Reynolds', '2013-04-10', '2013-05-07', '1945-2-1', 678, '999016'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(679, false, 'FERS', 1, 679, 409277.21, 679, 2, false, false, 'Karen Rodriguez', '2013-09-16', '2013-04-29', '1930-11-27', 679, '965566'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(680, false, 'FERS', 1, 680, 263436.25, 680, 2, true, false, 'Russell Mason', '2012-12-30', '2013-05-04', '1947-3-18', 680, '947973'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(681, false, 'FERS', 1, 681, 470641.79, 681, 1, false, true, 'Daniel Richards', '2013-10-17', '2013-04-21', '1954-9-29', 681, '956421'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(682, false, 'FERS', 1, 682, 304903.4, 682, 2, false, false, 'Katherine James', '2013-09-02', '2013-09-21', '1933-4-22', 682, '929708'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(683, false, 'FERS', 1, 683, 396091.33, 683, 2, true, true, 'Donald King', '2013-04-28', '2013-03-07', '1946-12-20', 683, '931405'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(684, false, 'FERS', 1, 684, 443805.69, 684, 1, false, true, 'Jacqueline Perry', '2013-08-27', '2013-02-28', '1976-5-2', 684, '973057'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(685, false, 'FERS', 1, 685, 361005.88, 685, 2, true, false, 'Judy James', '2013-03-06', '2013-09-10', '1943-11-25', 685, '936300'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(686, false, 'FERS', 1, 686, 267358.94, 686, 2, true, true, 'Rachel Mason', '2013-02-08', '2013-08-19', '1940-5-24', 686, '956438'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(687, false, 'FERS', 1, 687, 270286.41, 687, 1, true, true, 'Gary Stone', '2013-10-10', '2013-11-11', '1934-11-6', 687, '930070'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(688, false, 'FERS', 1, 688, 458366.78, 688, 1, true, false, 'Kathleen Mills', '2013-10-10', '2013-01-27', '1955-8-29', 688, '969710'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(689, false, 'FERS', 1, 689, 310790.46, 689, 1, true, false, 'Kenneth Fields', '2013-07-01', '2012-12-12', '1930-7-3', 689, '972719'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(690, false, 'FERS', 1, 690, 459342.19, 690, 1, false, true, 'Cheryl Boyd', '2013-08-11', '2013-04-07', '1954-8-22', 690, '920601'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(691, false, 'FERS', 1, 691, 498938.34, 691, 2, false, true, 'Craig Wilson', '2013-06-06', '2013-09-06', '1968-4-4', 691, '988119'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(692, false, 'FERS', 1, 692, 279076.49, 692, 1, false, true, 'Jerry Arnold', '2013-04-11', '2013-06-19', '1980-5-12', 692, '989341'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(693, false, 'FERS', 1, 693, 384629.2, 693, 2, false, true, 'Julie West', '2013-11-30', '2013-06-13', '1928-10-10', 693, '960955'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(694, false, 'FERS', 1, 694, 284230.13, 694, 1, false, true, 'Jeffrey Kelley', '2013-07-13', '2013-10-05', '1962-8-19', 694, '911533'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(695, false, 'FERS', 1, 695, 272347.45, 695, 1, true, true, 'Michelle West', '2013-01-26', '2013-07-23', '1943-9-23', 695, '996828'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(696, false, 'FERS', 1, 696, 303406.8, 696, 1, false, false, 'Rebecca Owens', '2013-08-13', '2013-02-03', '1926-5-23', 696, '902640'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(697, false, 'FERS', 1, 697, 219189.15, 697, 2, false, true, 'Joyce Fisher', '2013-04-01', '2013-08-31', '1953-9-17', 697, '936312'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(698, false, 'FERS', 1, 698, 421454.85, 698, 1, false, true, 'Eugene Hudson', '2013-11-22', '2013-09-25', '1935-9-28', 698, '992723'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(699, false, 'FERS', 1, 699, 452895.73, 699, 2, false, false, 'Beverly Little', '2013-01-24', '2013-07-19', '1952-1-10', 699, '969260'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(700, false, 'FERS', 1, 700, 382451.67, 700, 2, false, false, 'Ronald Campbell', '2013-08-10', '2013-09-16', '1979-12-6', 700, '950415'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(701, false, 'FERS', 1, 701, 407960.98, 701, 2, true, true, 'Paula Welch', '2013-10-07', '2013-09-05', '1937-4-30', 701, '921755'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(702, false, 'FERS', 1, 702, 210563.73, 702, 1, true, false, 'Lawrence Martinez', '2013-05-27', '2013-09-26', '1943-12-19', 702, '940053'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(703, false, 'FERS', 1, 703, 218264.26, 703, 1, false, false, 'Henry Kelley', '2012-12-22', '2013-03-26', '1965-6-5', 703, '991763'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(704, false, 'FERS', 1, 704, 327086.61, 704, 2, true, false, 'Ruth Griffin', '2013-12-06', '2013-01-06', '1979-10-5', 704, '908126'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(705, false, 'FERS', 1, 705, 238913.89, 705, 1, false, false, 'Terry Fields', '2013-06-08', '2013-09-22', '1970-5-25', 705, '927895'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(706, false, 'FERS', 1, 706, 235304.01, 706, 2, true, false, 'Alan Williams', '2013-01-25', '2013-09-27', '1963-6-2', 706, '929380'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(707, false, 'FERS', 1, 707, 242212.85, 707, 2, true, false, 'Elizabeth Medina', '2013-09-27', '2013-12-04', '1940-2-13', 707, '946573'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(708, false, 'FERS', 1, 708, 318735.63, 708, 2, true, false, 'Kenneth Fields', '2013-03-26', '2013-07-29', '1935-2-16', 708, '964743'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(709, false, 'FERS', 1, 709, 496116.8, 709, 1, false, false, 'Brenda Reyes', '2013-12-03', '2013-10-01', '1972-4-26', 709, '908340'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(710, false, 'FERS', 1, 710, 398820.28, 710, 2, true, false, 'Albert Adams', '2013-04-27', '2013-08-25', '1944-9-6', 710, '935148'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(711, false, 'FERS', 1, 711, 291461.74, 711, 2, false, true, 'Carlos Harper', '2013-10-29', '2013-07-23', '1967-2-17', 711, '954233'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(712, false, 'FERS', 1, 712, 292248.74, 712, 1, false, true, 'Brenda Reyes', '2012-12-28', '2013-08-19', '1979-3-13', 712, '936139'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(713, false, 'FERS', 1, 713, 479919.31, 713, 1, true, true, 'Philip Henry', '2013-08-01', '2013-05-13', '1959-4-11', 713, '999441'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(714, false, 'FERS', 1, 714, 202658, 714, 1, true, true, 'Christine Martinez', '2013-03-31', '2013-07-26', '1941-12-24', 714, '955455'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(715, false, 'FERS', 1, 715, 321091.31, 715, 1, true, false, 'Bobby Perry', '2013-11-21', '2013-09-03', '1953-11-17', 715, '954789'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(716, false, 'FERS', 1, 716, 210199.76, 716, 1, false, true, 'Norma Spencer', '2013-10-27', '2013-02-17', '1941-2-23', 716, '955511'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(717, false, 'FERS', 1, 717, 464246.45, 717, 2, true, true, 'Mildred Hall', '2013-04-08', '2013-04-26', '1959-1-18', 717, '961801'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(718, false, 'FERS', 1, 718, 303099.04, 718, 1, true, false, 'Heather Stanley', '2013-11-30', '2013-03-24', '1971-4-5', 718, '928665'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(719, false, 'FERS', 1, 719, 396100.9, 719, 1, true, true, 'Laura Gilbert', '2013-08-11', '2013-05-02', '1961-8-29', 719, '941207'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(720, false, 'FERS', 1, 720, 273622.46, 720, 1, true, false, 'Daniel Oliver', '2013-10-30', '2013-06-13', '1980-5-23', 720, '981716'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(721, false, 'FERS', 1, 721, 381695.12, 721, 2, true, true, 'Jacqueline Weaver', '2013-05-01', '2012-12-30', '1980-10-28', 721, '902343'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(722, false, 'FERS', 1, 722, 442369.53, 722, 2, false, true, 'Lois Sanchez', '2013-08-07', '2013-01-01', '1945-10-29', 722, '900426'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(723, false, 'FERS', 1, 723, 227617.6, 723, 2, false, false, 'Gary Rogers', '2012-12-27', '2013-06-13', '1933-6-13', 723, '921182'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(724, false, 'FERS', 1, 724, 492106.93, 724, 1, true, true, 'Denise Freeman', '2013-05-30', '2013-11-15', '1938-9-18', 724, '928174'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(725, false, 'FERS', 1, 725, 377532.3, 725, 1, false, true, 'Russell Powell', '2013-04-29', '2013-03-21', '1937-5-19', 725, '965105'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(726, false, 'FERS', 1, 726, 495125.99, 726, 2, true, true, 'Harry Olson', '2013-12-05', '2013-04-24', '1947-3-23', 726, '941758'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(727, false, 'FERS', 1, 727, 372398.16, 727, 2, false, true, 'Roy Hunt', '2013-09-27', '2013-03-22', '1954-11-28', 727, '929433'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(728, false, 'FERS', 1, 728, 305939.12, 728, 2, true, true, 'Denise Freeman', '2013-08-20', '2013-10-20', '1942-6-25', 728, '929037'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(729, false, 'FERS', 1, 729, 312552.95, 729, 2, false, true, 'Paula Ryan', '2013-09-22', '2013-04-15', '1938-3-17', 729, '979442'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(730, false, 'FERS', 1, 730, 299842.25, 730, 2, true, true, 'Julie Butler', '2013-11-21', '2013-06-23', '1972-2-6', 730, '904825'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(731, false, 'FERS', 1, 731, 419036.44, 731, 2, true, false, 'Kathleen Gilbert', '2013-10-10', '2013-08-22', '1933-11-1', 731, '974246'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(732, false, 'FERS', 1, 732, 270907.37, 732, 1, false, true, 'Bobby Sims', '2012-12-20', '2013-10-10', '1965-4-22', 732, '960053'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(733, false, 'FERS', 1, 733, 403572.71, 733, 2, true, false, 'Dennis Morales', '2013-06-23', '2013-06-18', '1962-5-8', 733, '961388'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(734, false, 'FERS', 1, 734, 415954.42, 734, 1, false, false, 'Donald Ford', '2013-02-16', '2013-01-05', '1946-4-4', 734, '941044'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(735, false, 'FERS', 1, 735, 474682.94, 735, 1, true, true, 'Steven Griffin', '2013-10-04', '2013-01-12', '1979-11-14', 735, '982614'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(736, false, 'FERS', 1, 736, 411067.44, 736, 1, false, true, 'Gary Stone', '2013-02-22', '2013-04-18', '1926-8-13', 736, '913478'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(737, false, 'FERS', 1, 737, 308521.11, 737, 1, true, true, 'Philip Henry', '2013-04-03', '2013-05-21', '1956-12-25', 737, '940641'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(738, false, 'FERS', 1, 738, 256471.91, 738, 2, true, true, 'Brandon Ferguson', '2013-05-22', '2013-01-17', '1950-2-20', 738, '921202'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(739, false, 'FERS', 1, 739, 472491.97, 739, 2, true, true, 'Lisa Gordon', '2013-09-10', '2013-05-15', '1971-5-12', 739, '969176'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(740, false, 'FERS', 1, 740, 407089.68, 740, 2, false, true, 'Denise Rogers', '2013-03-30', '2013-05-28', '1931-4-17', 740, '979953'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(741, false, 'FERS', 1, 741, 391237.91, 741, 2, false, true, 'Tina Sullivan', '2013-04-10', '2013-07-09', '1942-2-21', 741, '913767'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(742, false, 'FERS', 1, 742, 471510.8, 742, 1, false, false, 'Dorothy Lawson', '2013-09-04', '2013-06-04', '1932-10-4', 742, '958080'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(743, false, 'FERS', 1, 743, 406696.19, 743, 2, true, false, 'Sandra Sullivan', '2013-02-09', '2013-02-14', '1963-9-18', 743, '901758'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(744, false, 'FERS', 1, 744, 244388.08, 744, 2, true, false, 'Richard Myers', '2013-08-12', '2013-02-01', '1962-9-29', 744, '986624'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(745, false, 'FERS', 1, 745, 215309.81, 745, 2, false, true, 'Justin Stone', '2013-03-08', '2013-06-04', '1925-10-27', 745, '926161'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(746, false, 'FERS', 1, 746, 335550.73, 746, 2, false, true, 'Diana Gray', '2013-03-09', '2013-01-14', '1978-6-8', 746, '969580'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(747, false, 'FERS', 1, 747, 279255.89, 747, 1, false, true, 'Robin Ward', '2013-07-24', '2013-04-26', '1960-1-10', 747, '984959'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(748, false, 'FERS', 1, 748, 404289.82, 748, 2, false, true, 'Antonio Evans', '2013-03-12', '2013-01-29', '1968-2-3', 748, '965598'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(749, false, 'FERS', 1, 749, 436628.97, 749, 2, true, false, 'Amy Porter', '2013-01-25', '2013-12-05', '1921-4-26', 749, '921285'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(750, false, 'FERS', 1, 750, 460294.99, 750, 2, true, true, 'Alice Cook', '2013-01-20', '2013-08-30', '1980-1-11', 750, '948571'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(751, false, 'FERS', 1, 751, 223680.34, 751, 2, false, false, 'Nancy Perez', '2013-01-08', '2013-05-09', '1921-11-5', 751, '939380'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(752, false, 'FERS', 1, 752, 253736.9, 752, 2, false, true, 'Charles Harrison', '2013-01-28', '2013-04-16', '1943-1-14', 752, '959234'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(753, false, 'FERS', 1, 753, 404128.83, 753, 2, false, false, 'Ryan Henry', '2013-09-09', '2013-10-01', '1921-5-8', 753, '935328'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(754, false, 'FERS', 1, 754, 355771.24, 754, 1, true, false, 'Howard Hunter', '2013-06-02', '2012-12-25', '1958-5-14', 754, '931375'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(755, false, 'FERS', 1, 755, 479298.89, 755, 2, true, true, 'Brian Johnson', '2013-02-27', '2012-12-14', '1954-1-6', 755, '941665'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(756, false, 'FERS', 1, 756, 393467.12, 756, 1, true, false, 'Wanda Gardner', '2013-05-31', '2013-10-13', '1979-6-27', 756, '917951'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(757, false, 'FERS', 1, 757, 451834.83, 757, 1, false, true, 'George Bryant', '2013-07-02', '2013-01-06', '1928-10-17', 757, '952861'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(758, false, 'FERS', 1, 758, 306993.87, 758, 2, true, false, 'Kathleen Gonzalez', '2013-09-17', '2013-03-14', '1928-7-15', 758, '945093'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(759, false, 'FERS', 1, 759, 253790.85, 759, 2, false, true, 'Laura Oliver', '2013-04-25', '2013-10-16', '1940-5-8', 759, '932339'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(760, false, 'FERS', 1, 760, 421318.96, 760, 2, true, false, 'Nancy Walker', '2013-10-09', '2013-08-16', '1980-1-12', 760, '938902'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(761, false, 'FERS', 1, 761, 399035.39, 761, 2, false, false, 'Benjamin Long', '2013-03-23', '2013-04-26', '1953-3-14', 761, '984232'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(762, false, 'FERS', 1, 762, 492840.07, 762, 1, false, false, 'Gary Payne', '2013-02-21', '2013-12-02', '1964-1-18', 762, '983336'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(763, false, 'FERS', 1, 763, 205384.11, 763, 1, true, true, 'Beverly Little', '2013-07-10', '2013-03-14', '1960-8-14', 763, '907237'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(764, false, 'FERS', 1, 764, 201148.55, 764, 2, false, true, 'Antonio Hudson', '2013-07-30', '2013-06-20', '1979-4-28', 764, '970101'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(765, false, 'FERS', 1, 765, 375372, 765, 1, true, false, 'Christine Torres', '2013-04-29', '2013-09-22', '1970-7-30', 765, '962017'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(766, false, 'FERS', 1, 766, 218192.62, 766, 1, true, true, 'Kathryn Ortiz', '2013-03-05', '2013-03-12', '1979-8-21', 766, '937350'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(767, false, 'FERS', 1, 767, 330090.89, 767, 2, false, true, 'Theresa West', '2013-06-16', '2013-01-15', '1964-12-9', 767, '989761'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(768, false, 'FERS', 1, 768, 343603.14, 768, 2, true, false, 'Ruth Harvey', '2013-01-13', '2013-03-17', '1957-3-30', 768, '907569'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(769, false, 'FERS', 1, 769, 268304.05, 769, 2, true, false, 'Kelly Cunningham', '2012-12-28', '2013-01-28', '1932-12-7', 769, '918008'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(770, false, 'FERS', 1, 770, 496242.95, 770, 2, true, false, 'Steve Ford', '2013-08-11', '2013-04-17', '1929-9-27', 770, '984625'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(771, false, 'FERS', 1, 771, 464044.67, 771, 1, false, false, 'Denise Meyer', '2013-06-16', '2013-04-04', '1962-6-13', 771, '925186'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(772, false, 'FERS', 1, 772, 284729.84, 772, 2, true, true, 'Amanda Day', '2013-04-30', '2013-04-12', '1936-1-26', 772, '905635'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(773, false, 'FERS', 1, 773, 464705.7, 773, 1, true, false, 'Richard Parker', '2013-11-11', '2013-01-12', '1951-10-31', 773, '945846'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(774, false, 'FERS', 1, 774, 485149.26, 774, 2, true, true, 'Amanda Chavez', '2013-07-28', '2013-02-01', '1934-3-31', 774, '935846'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(775, false, 'FERS', 1, 775, 368046.57, 775, 1, false, true, 'Virginia Riley', '2012-12-24', '2013-10-10', '1934-10-25', 775, '961915'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(776, false, 'FERS', 1, 776, 377689.38, 776, 2, false, false, 'Joan Phillips', '2013-07-17', '2013-01-20', '1970-9-13', 776, '930827'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(777, false, 'FERS', 1, 777, 477850.46, 777, 1, true, false, 'Debra Palmer', '2013-09-20', '2012-12-29', '1955-4-12', 777, '913535'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(778, false, 'FERS', 1, 778, 257284, 778, 2, true, false, 'Joyce Mcdonald', '2013-08-29', '2013-08-21', '1941-5-5', 778, '998697'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(779, false, 'FERS', 1, 779, 210586.61, 779, 2, false, false, 'Charles Harrison', '2013-08-18', '2013-07-17', '1937-3-1', 779, '994694'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(780, false, 'FERS', 1, 780, 336223.35, 780, 2, true, false, 'Johnny Grant', '2013-10-07', '2013-07-19', '1924-5-8', 780, '965193'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(781, false, 'FERS', 1, 781, 300716.76, 781, 1, true, true, 'Louis Jordan', '2013-04-20', '2013-01-26', '1946-1-4', 781, '991200'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(782, false, 'FERS', 1, 782, 388326.66, 782, 2, false, false, 'James Ross', '2012-12-17', '2013-10-04', '1960-3-24', 782, '994951'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(783, false, 'FERS', 1, 783, 221708.03, 783, 1, true, true, 'James Day', '2013-08-17', '2013-02-02', '1963-11-10', 783, '964709'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(784, false, 'FERS', 1, 784, 398893.87, 784, 1, true, false, 'Charles Bryant', '2013-10-03', '2012-12-21', '1976-11-8', 784, '929299'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(785, false, 'FERS', 1, 785, 459178.62, 785, 1, false, true, 'Brenda Reyes', '2013-01-24', '2013-07-24', '1963-2-25', 785, '932968'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(786, false, 'FERS', 1, 786, 335347.35, 786, 1, false, false, 'Elizabeth Johnson', '2013-03-27', '2013-03-05', '1938-8-22', 786, '930612'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(787, false, 'FERS', 1, 787, 305778.23, 787, 2, true, true, 'Judy Oliver', '2013-02-01', '2013-10-01', '1969-1-14', 787, '999484'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(788, false, 'FERS', 1, 788, 206689.83, 788, 1, true, false, 'Judy Greene', '2013-08-12', '2013-01-19', '1934-4-22', 788, '928128'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(789, false, 'FERS', 1, 789, 274848.77, 789, 1, false, true, 'Ruth Williamson', '2013-09-18', '2013-02-03', '1931-12-8', 789, '963143'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(790, false, 'FERS', 1, 790, 321969.31, 790, 2, false, true, 'Harold Payne', '2013-05-23', '2013-08-22', '1974-12-6', 790, '911806'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(791, false, 'FERS', 1, 791, 254924.7, 791, 2, true, true, 'Craig Spencer', '2013-11-11', '2013-05-09', '1938-9-11', 791, '942803'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(792, false, 'FERS', 1, 792, 288359.47, 792, 1, false, true, 'Theresa West', '2013-01-24', '2013-10-02', '1960-3-10', 792, '947656'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(793, false, 'FERS', 1, 793, 485542.46, 793, 2, true, false, 'Jacqueline Perry', '2013-10-30', '2013-11-01', '1925-8-27', 793, '965562'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(794, false, 'FERS', 1, 794, 398772.54, 794, 1, true, true, 'Kenneth Fields', '2013-11-16', '2013-02-12', '1966-8-10', 794, '959592'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(795, false, 'FERS', 1, 795, 468107.94, 795, 1, false, false, 'Christopher Kennedy', '2013-03-10', '2012-12-30', '1963-11-19', 795, '921490'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(796, false, 'FERS', 1, 796, 348087.68, 796, 1, false, true, 'Eric Austin', '2013-06-13', '2013-08-05', '1964-12-5', 796, '965202'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(797, false, 'FERS', 1, 797, 415433.82, 797, 2, true, false, 'Virginia Riley', '2013-07-21', '2013-03-02', '1958-9-25', 797, '969197'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(798, false, 'FERS', 1, 798, 249437.77, 798, 1, false, false, 'Donna Payne', '2013-06-05', '2013-01-12', '1979-12-18', 798, '985588'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(799, false, 'FERS', 1, 799, 242012.63, 799, 2, true, false, 'Alan Williams', '2013-05-20', '2013-03-20', '1940-3-30', 799, '900714'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(800, false, 'FERS', 1, 800, 308689.13, 800, 1, true, false, 'Louis Owens', '2013-05-01', '2013-01-05', '1979-5-27', 800, '903264'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(801, false, 'FERS', 1, 801, 237140.31, 801, 2, false, true, 'Randy Green', '2013-05-29', '2013-07-11', '1978-12-29', 801, '913648'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(802, false, 'FERS', 1, 802, 434299.5, 802, 1, false, false, 'Billy Morris', '2013-04-10', '2013-03-05', '1923-1-13', 802, '926804'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(803, false, 'FERS', 1, 803, 468509.54, 803, 2, true, true, 'Martha Campbell', '2013-03-20', '2013-01-17', '1971-7-21', 803, '985297'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(804, false, 'FERS', 1, 804, 416705.76, 804, 2, true, false, 'Donald Peters', '2013-09-20', '2013-11-22', '1949-8-17', 804, '917993'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(805, false, 'FERS', 1, 805, 443598.12, 805, 1, true, true, 'Jean Clark', '2013-03-30', '2013-03-05', '1927-2-28', 805, '921650'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(806, false, 'FERS', 1, 806, 355939.33, 806, 1, true, true, 'Linda Castillo', '2013-01-28', '2013-01-22', '1966-4-23', 806, '901162'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(807, false, 'FERS', 1, 807, 213702.31, 807, 2, true, false, 'Andrea Taylor', '2013-06-19', '2013-09-11', '1961-8-8', 807, '902352'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(808, false, 'FERS', 1, 808, 357142.82, 808, 1, false, true, 'Robin Torres', '2013-06-15', '2012-12-17', '1972-10-26', 808, '940401'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(809, false, 'FERS', 1, 809, 282356.24, 809, 2, true, false, 'Christina Carpenter', '2013-03-14', '2013-07-15', '1931-7-18', 809, '978552'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(810, false, 'FERS', 1, 810, 381879.35, 810, 2, true, true, 'Ralph Medina', '2013-10-11', '2013-01-31', '1948-2-8', 810, '972489'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(811, false, 'FERS', 1, 811, 212887.27, 811, 2, true, false, 'Jeffrey Robinson', '2013-10-01', '2013-10-07', '1976-5-2', 811, '939653'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(812, false, 'FERS', 1, 812, 305402.89, 812, 2, false, false, 'Terry Fields', '2013-08-26', '2013-04-27', '1943-5-17', 812, '963260'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(813, false, 'FERS', 1, 813, 272939.14, 813, 2, true, false, 'Sean Howell', '2013-02-12', '2013-03-30', '1955-7-2', 813, '901475'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(814, false, 'FERS', 1, 814, 277957.98, 814, 1, false, false, 'Kimberly Oliver', '2013-12-02', '2013-03-12', '1944-7-23', 814, '905332'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(815, false, 'FERS', 1, 815, 213023.1, 815, 1, true, false, 'Jean Clark', '2013-06-26', '2013-12-09', '1944-7-8', 815, '974324'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(816, false, 'FERS', 1, 816, 472999.15, 816, 1, false, true, 'Earl Cooper', '2013-09-19', '2013-12-03', '1972-8-10', 816, '962711'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(817, false, 'FERS', 1, 817, 391906.46, 817, 1, true, false, 'Peter Daniels', '2013-07-11', '2013-09-09', '1965-10-13', 817, '969224'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(818, false, 'FERS', 1, 818, 471544.41, 818, 2, false, false, 'Harold Crawford', '2013-11-17', '2013-10-25', '1924-4-30', 818, '932147'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(819, false, 'FERS', 1, 819, 368460.2, 819, 2, true, true, 'Nancy Watkins', '2013-09-24', '2013-07-16', '1972-9-1', 819, '933000'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(820, false, 'FERS', 1, 820, 430076.95, 820, 2, true, false, 'Harold Crawford', '2013-04-13', '2012-12-17', '1939-11-2', 820, '970360'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(821, false, 'FERS', 1, 821, 418705.99, 821, 1, true, true, 'Emily Watson', '2013-04-10', '2013-02-27', '1924-11-28', 821, '931317'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(822, false, 'FERS', 1, 822, 399451.84, 822, 1, false, true, 'Carol Cunningham', '2013-04-11', '2013-02-17', '1972-8-28', 822, '931811'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(823, false, 'FERS', 1, 823, 406805.32, 823, 2, false, false, 'Scott Reyes', '2013-08-22', '2013-10-09', '1948-5-8', 823, '933712'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(824, false, 'FERS', 1, 824, 377582.65, 824, 1, false, false, 'Amy Richards', '2013-02-04', '2013-10-26', '1954-1-9', 824, '946297'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(825, false, 'FERS', 1, 825, 359007.21, 825, 2, true, false, 'Brian Scott', '2013-09-28', '2013-06-11', '1937-9-26', 825, '997807'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(826, false, 'FERS', 1, 826, 333884.33, 826, 2, false, true, 'Timothy Richards', '2013-09-14', '2013-06-19', '1948-7-22', 826, '918248'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(827, false, 'FERS', 1, 827, 238754.82, 827, 2, true, true, 'Sandra Sullivan', '2013-07-17', '2013-07-28', '1934-1-11', 827, '932966'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(828, false, 'FERS', 1, 828, 487586.72, 828, 2, false, true, 'Jean Stephens', '2013-07-02', '2013-11-19', '1923-4-6', 828, '986680'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(829, false, 'FERS', 1, 829, 275131.38, 829, 1, false, false, 'Willie Cox', '2013-12-10', '2013-06-28', '1941-7-6', 829, '942329'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(830, false, 'FERS', 1, 830, 448389.06, 830, 1, false, false, 'Sandra Hill', '2013-06-09', '2012-12-17', '1926-6-12', 830, '983572'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(831, false, 'FERS', 1, 831, 339178.04, 831, 1, true, true, 'Anne Stephens', '2013-06-19', '2013-08-25', '1973-2-4', 831, '937925'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(832, false, 'FERS', 1, 832, 270226.44, 832, 2, true, true, 'Steve Crawford', '2013-10-12', '2013-01-14', '1972-3-29', 832, '957889'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(833, false, 'FERS', 1, 833, 494016.09, 833, 2, false, false, 'Martin Lawson', '2013-02-07', '2013-04-07', '1939-10-8', 833, '978147'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(834, false, 'FERS', 1, 834, 264023.71, 834, 1, false, false, 'Russell Powell', '2013-07-04', '2013-06-24', '1957-10-1', 834, '978942'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(835, false, 'FERS', 1, 835, 286777.24, 835, 2, true, true, 'Terry Fields', '2013-06-04', '2013-09-02', '1943-4-6', 835, '908141'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(836, false, 'FERS', 1, 836, 486794.65, 836, 2, false, false, 'Judy James', '2013-04-12', '2013-05-20', '1949-7-4', 836, '908096'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(837, false, 'FERS', 1, 837, 374353.21, 837, 2, false, false, 'Jacqueline Boyd', '2013-02-07', '2013-03-09', '1925-8-10', 837, '996174'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(838, false, 'FERS', 1, 838, 240220.58, 838, 2, true, false, 'Brandon Matthews', '2013-10-10', '2013-11-14', '1977-7-5', 838, '951492'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(839, false, 'FERS', 1, 839, 489389.46, 839, 1, true, false, 'Sandra Andrews', '2013-05-13', '2012-12-27', '1972-10-30', 839, '966026'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(840, false, 'FERS', 1, 840, 293516.5, 840, 1, true, true, 'Philip Henry', '2013-08-25', '2013-04-09', '1966-10-27', 840, '931706'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(841, false, 'FERS', 1, 841, 363250.82, 841, 2, true, false, 'Steven Griffin', '2013-10-07', '2013-08-10', '1968-7-21', 841, '996429'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(842, false, 'FERS', 1, 842, 299776.12, 842, 1, true, true, 'Janet Kelley', '2013-01-08', '2013-10-17', '1949-3-9', 842, '975115'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(843, false, 'FERS', 1, 843, 219771.54, 843, 2, true, false, 'Sharon Wells', '2013-10-27', '2013-09-25', '1942-5-27', 843, '987182'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(844, false, 'FERS', 1, 844, 346302.14, 844, 1, false, false, 'Larry Little', '2013-06-03', '2013-03-19', '1923-3-24', 844, '999397'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(845, false, 'FERS', 1, 845, 347957.36, 845, 2, true, false, 'Julie Welch', '2013-02-19', '2013-09-12', '1976-3-17', 845, '934356'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(846, false, 'FERS', 1, 846, 254804.68, 846, 2, false, false, 'Louis Jordan', '2013-08-31', '2013-06-18', '1937-1-21', 846, '926003'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(847, false, 'FERS', 1, 847, 457976.75, 847, 2, true, true, 'Cheryl Medina', '2013-06-20', '2013-07-07', '1978-4-26', 847, '994078'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(848, false, 'FERS', 1, 848, 284975.65, 848, 2, true, false, 'Frances Gordon', '2013-07-21', '2013-01-30', '1956-9-5', 848, '944300'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(849, false, 'FERS', 1, 849, 420457.96, 849, 1, false, false, 'Antonio Evans', '2013-11-27', '2013-02-03', '1947-7-18', 849, '940114'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(850, false, 'FERS', 1, 850, 206035.1, 850, 1, false, true, 'Justin Stone', '2013-10-30', '2013-02-23', '1927-11-28', 850, '990425'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(851, false, 'FERS', 1, 851, 351026.62, 851, 1, true, true, 'Laura Oliver', '2013-06-24', '2013-02-11', '1942-6-11', 851, '983934'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(852, false, 'FERS', 1, 852, 491633.16, 852, 1, false, true, 'Carl Palmer', '2013-04-12', '2012-12-30', '1978-2-7', 852, '980495'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(853, false, 'FERS', 1, 853, 278852.51, 853, 2, true, true, 'Ashley Fields', '2013-05-21', '2013-03-30', '1922-8-23', 853, '918185'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(854, false, 'FERS', 1, 854, 329982.02, 854, 2, false, true, 'Karen Wheeler', '2013-10-20', '2013-05-23', '1956-8-10', 854, '914893'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(855, false, 'FERS', 1, 855, 462577.05, 855, 2, false, false, 'Kelly Johnson', '2012-12-11', '2013-01-06', '1943-11-18', 855, '961409'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(856, false, 'FERS', 1, 856, 393672.59, 856, 1, false, false, 'Fred Berry', '2012-12-31', '2013-11-18', '1930-7-20', 856, '922154'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(857, false, 'FERS', 1, 857, 428074.8, 857, 1, false, true, 'Kathleen Gonzalez', '2013-04-22', '2013-01-05', '1976-12-31', 857, '962434'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(858, false, 'FERS', 1, 858, 434420.72, 858, 1, true, false, 'Russell Murphy', '2013-03-24', '2013-01-27', '1979-1-15', 858, '965531'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(859, false, 'FERS', 1, 859, 370823.63, 859, 1, true, false, 'Gerald Peters', '2013-03-05', '2013-01-31', '1930-10-11', 859, '980088'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(860, false, 'FERS', 1, 860, 445962.78, 860, 2, true, true, 'Jerry Arnold', '2013-06-01', '2013-10-10', '1923-12-22', 860, '998800'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(861, false, 'FERS', 1, 861, 250283.85, 861, 1, false, true, 'Julie West', '2013-09-05', '2013-09-09', '1924-8-1', 861, '910844'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(862, false, 'FERS', 1, 862, 477604.25, 862, 2, false, false, 'Karen Rodriguez', '2013-11-19', '2013-07-31', '1944-10-7', 862, '925721'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(863, false, 'FERS', 1, 863, 380577.4, 863, 1, true, true, 'Ann Palmer', '2013-04-25', '2013-08-04', '1971-5-22', 863, '995963'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(864, false, 'FERS', 1, 864, 339646.48, 864, 1, true, false, 'Sara Holmes', '2013-10-17', '2013-04-07', '1978-7-12', 864, '986575'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(865, false, 'FERS', 1, 865, 394485.42, 865, 1, true, true, 'Judy Perry', '2013-09-08', '2013-06-13', '1922-11-30', 865, '979411'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(866, false, 'FERS', 1, 866, 460526.65, 866, 1, true, false, 'Alice Morrison', '2013-08-12', '2013-06-08', '1932-5-12', 866, '937754'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(867, false, 'FERS', 1, 867, 334021.49, 867, 1, false, true, 'Fred Berry', '2013-11-07', '2013-09-17', '1970-2-12', 867, '984539'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(868, false, 'FERS', 1, 868, 445190.34, 868, 2, true, false, 'Jonathan Freeman', '2013-06-13', '2013-05-20', '1948-3-26', 868, '943927'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(869, false, 'FERS', 1, 869, 300249.51, 869, 2, false, true, 'Ann Palmer', '2013-01-03', '2013-06-27', '1928-5-14', 869, '938540'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(870, false, 'FERS', 1, 870, 472297.31, 870, 1, false, true, 'Helen Reynolds', '2013-04-17', '2013-07-10', '1959-5-5', 870, '937367'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(871, false, 'FERS', 1, 871, 489333.09, 871, 2, false, false, 'Robin Medina', '2013-04-06', '2013-01-24', '1969-4-19', 871, '984909'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(872, false, 'FERS', 1, 872, 377636.35, 872, 1, false, true, 'Denise Meyer', '2013-08-09', '2013-06-27', '1926-10-18', 872, '946080'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(873, false, 'FERS', 1, 873, 337310.41, 873, 1, true, false, 'Elizabeth Medina', '2013-08-15', '2013-05-28', '1964-5-16', 873, '903519'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(874, false, 'FERS', 1, 874, 341972.82, 874, 2, false, true, 'Craig Spencer', '2013-10-26', '2013-06-03', '1930-11-10', 874, '903694'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(875, false, 'FERS', 1, 875, 415142.69, 875, 2, true, false, 'Theresa Pierce', '2013-02-15', '2013-09-23', '1932-12-15', 875, '922320'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(876, false, 'FERS', 1, 876, 387426.24, 876, 2, true, false, 'Frank Griffin', '2013-09-05', '2013-10-11', '1973-1-29', 876, '909564'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(877, false, 'FERS', 1, 877, 334158.15, 877, 1, true, true, 'Julie Murphy', '2013-08-25', '2013-05-02', '1957-12-8', 877, '960090'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(878, false, 'FERS', 1, 878, 434438.77, 878, 2, true, false, 'Phillip Snyder', '2012-12-12', '2013-03-21', '1954-5-8', 878, '918743'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(879, false, 'FERS', 1, 879, 214142.16, 879, 1, true, false, 'Joan Phillips', '2013-09-06', '2013-09-24', '1941-5-8', 879, '940688'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(880, false, 'FERS', 1, 880, 482790.44, 880, 2, false, false, 'Jesse Austin', '2012-12-22', '2013-10-04', '1940-7-28', 880, '923241'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(881, false, 'FERS', 1, 881, 351708.7, 881, 2, true, true, 'Lillian Mitchell', '2013-01-25', '2013-02-23', '1975-7-16', 881, '952113'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(882, false, 'FERS', 1, 882, 381816.87, 882, 2, false, true, 'Keith Lee', '2013-01-22', '2013-01-11', '1970-4-2', 882, '991771'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(883, false, 'FERS', 1, 883, 409531.89, 883, 2, true, true, 'Dorothy Barnes', '2013-12-04', '2013-05-24', '1944-9-24', 883, '946410'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(884, false, 'FERS', 1, 884, 377008.5, 884, 1, true, true, 'Roy Cooper', '2013-11-28', '2013-02-07', '1957-4-10', 884, '973451'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(885, false, 'FERS', 1, 885, 291608.15, 885, 2, true, false, 'Brandon Ferguson', '2013-05-29', '2013-05-07', '1939-11-2', 885, '953473'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(886, false, 'FERS', 1, 886, 346387.89, 886, 2, false, true, 'Kenneth Fields', '2013-09-14', '2013-02-19', '1922-4-15', 886, '906289'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(887, false, 'FERS', 1, 887, 431905.62, 887, 1, true, true, 'Diana Reynolds', '2013-10-08', '2013-10-14', '1976-5-31', 887, '937272'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(888, false, 'FERS', 1, 888, 431983.94, 888, 1, true, true, 'Donald King', '2013-11-19', '2013-10-29', '1948-5-26', 888, '974111'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(889, false, 'FERS', 1, 889, 283884.71, 889, 1, false, false, 'Daniel Oliver', '2013-01-10', '2013-08-18', '1921-1-4', 889, '958568'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(890, false, 'FERS', 1, 890, 263552.47, 890, 1, false, false, 'Louis Owens', '2013-09-01', '2013-05-24', '1976-10-20', 890, '918052'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(891, false, 'FERS', 1, 891, 341457.53, 891, 1, true, true, 'Howard Hansen', '2013-03-26', '2013-07-31', '1925-9-25', 891, '969440'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(892, false, 'FERS', 1, 892, 300905.91, 892, 1, false, false, 'Jane Thompson', '2013-01-15', '2013-06-05', '1969-2-1', 892, '994152'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(893, false, 'FERS', 1, 893, 451501.46, 893, 2, false, false, 'Janet Kelley', '2013-07-27', '2013-11-13', '1929-5-9', 893, '922453'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(894, false, 'FERS', 1, 894, 380891.52, 894, 1, true, true, 'Julia Gordon', '2013-02-08', '2013-09-27', '1969-5-9', 894, '965196'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(895, false, 'FERS', 1, 895, 444763.56, 895, 1, true, true, 'Judy Oliver', '2013-08-31', '2013-03-05', '1970-6-21', 895, '977579'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(896, false, 'FERS', 1, 896, 262951.3, 896, 2, false, false, 'Harold Crawford', '2013-11-25', '2013-07-07', '1975-1-30', 896, '909012'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(897, false, 'FERS', 1, 897, 248280.23, 897, 1, false, false, 'Marie Harper', '2013-06-05', '2013-07-05', '1966-8-12', 897, '986891'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(898, false, 'FERS', 1, 898, 456301.47, 898, 2, true, true, 'Emily Tucker', '2013-07-04', '2013-10-06', '1963-4-2', 898, '994875'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(899, false, 'FERS', 1, 899, 435201.26, 899, 1, false, true, 'Shirley Simpson', '2013-10-04', '2013-06-22', '1936-10-8', 899, '925792'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(900, false, 'FERS', 1, 900, 249820.1, 900, 2, true, false, 'Janice Rogers', '2013-11-13', '2013-03-30', '1957-12-22', 900, '910196'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(901, false, 'FERS', 1, 901, 422801.63, 901, 2, false, false, 'Annie Powell', '2013-04-12', '2013-11-15', '1945-11-11', 901, '950869'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(902, false, 'FERS', 1, 902, 252734.85, 902, 2, false, false, 'Lisa Gordon', '2013-05-20', '2013-12-06', '1956-4-5', 902, '932012'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(903, false, 'FERS', 1, 903, 278630.37, 903, 2, false, true, 'Jeffrey Robinson', '2013-05-22', '2013-06-01', '1956-1-21', 903, '947371'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(904, false, 'FERS', 1, 904, 451024.34, 904, 2, false, true, 'Betty Jenkins', '2012-12-11', '2013-10-12', '1968-1-17', 904, '959092'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(905, false, 'FERS', 1, 905, 468398.5, 905, 1, true, true, 'Pamela Chavez', '2013-08-10', '2013-01-27', '1965-9-22', 905, '945003'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(906, false, 'FERS', 1, 906, 384294.61, 906, 2, true, false, 'Russell Mason', '2013-11-12', '2013-06-04', '1951-1-30', 906, '995810'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(907, false, 'FERS', 1, 907, 484695.11, 907, 2, true, true, 'Phyllis Diaz', '2013-05-12', '2013-06-19', '1962-4-17', 907, '942682'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(908, false, 'FERS', 1, 908, 494100.77, 908, 1, false, true, 'Stephanie Ward', '2013-06-08', '2013-06-07', '1952-5-22', 908, '992020'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(909, false, 'FERS', 1, 909, 332491.08, 909, 1, false, false, 'Richard Parker', '2013-03-28', '2013-05-26', '1924-11-29', 909, '902497'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(910, false, 'FERS', 1, 910, 279113.56, 910, 2, true, true, 'George Bryant', '2013-10-14', '2013-10-08', '1956-5-7', 910, '942113'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(911, false, 'FERS', 1, 911, 375853.91, 911, 1, true, true, 'Edward Kelly', '2013-02-04', '2013-10-11', '1932-12-2', 911, '917784'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(912, false, 'FERS', 1, 912, 324005.19, 912, 1, true, false, 'Joshua Wheeler', '2013-07-31', '2013-09-18', '1973-4-26', 912, '920328'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(913, false, 'FERS', 1, 913, 222792.61, 913, 1, false, false, 'Paul Lawrence', '2013-03-20', '2013-02-22', '1951-6-4', 913, '918283'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(914, false, 'FERS', 1, 914, 285074, 914, 1, true, false, 'Kevin Perez', '2013-02-14', '2013-04-03', '1976-4-18', 914, '933996'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(915, false, 'FERS', 1, 915, 267351.49, 915, 1, true, true, 'Teresa Gilbert', '2013-06-21', '2013-08-28', '1975-3-13', 915, '957327'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(916, false, 'FERS', 1, 916, 393809.49, 916, 1, true, false, 'Helen Roberts', '2012-12-14', '2013-05-20', '1932-3-5', 916, '993441'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(917, false, 'FERS', 1, 917, 333561.12, 917, 2, true, false, 'Roger Cunningham', '2013-08-12', '2013-01-13', '1951-4-18', 917, '972589'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(918, false, 'FERS', 1, 918, 388904.48, 918, 2, true, true, 'Helen Roberts', '2013-02-17', '2013-08-31', '1921-4-25', 918, '971709'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(919, false, 'FERS', 1, 919, 351400.82, 919, 1, true, false, 'Richard Collins', '2013-10-14', '2013-03-04', '1938-1-8', 919, '953845'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(920, false, 'FERS', 1, 920, 427636.74, 920, 1, false, true, 'Juan Evans', '2013-06-17', '2013-03-10', '1952-2-20', 920, '916398'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(921, false, 'FERS', 1, 921, 498852.3, 921, 1, true, true, 'Theresa Willis', '2013-02-18', '2012-12-31', '1980-10-10', 921, '950714'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(922, false, 'FERS', 1, 922, 495455.98, 922, 1, false, true, 'Christina Carpenter', '2013-07-06', '2013-05-04', '1944-9-2', 922, '933850'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(923, false, 'FERS', 1, 923, 263077.91, 923, 2, true, true, 'Arthur Greene', '2013-05-15', '2013-07-23', '1963-8-24', 923, '931115'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(924, false, 'FERS', 1, 924, 386451.06, 924, 2, true, true, 'Steve Ford', '2013-09-24', '2013-02-17', '1930-2-4', 924, '922262'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(925, false, 'FERS', 1, 925, 439323.61, 925, 1, false, true, 'Brian Perkins', '2013-06-13', '2013-05-14', '1980-8-27', 925, '963109'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(926, false, 'FERS', 1, 926, 216252.96, 926, 1, true, false, 'Carlos Harper', '2013-10-01', '2013-03-20', '1936-8-31', 926, '971483'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(927, false, 'FERS', 1, 927, 371346.03, 927, 1, true, false, 'Kathy Gibson', '2013-05-18', '2013-01-04', '1975-6-28', 927, '946319'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(928, false, 'FERS', 1, 928, 214263.69, 928, 2, true, false, 'Cheryl Banks', '2013-06-27', '2013-03-21', '1958-10-24', 928, '929891'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(929, false, 'FERS', 1, 929, 405907.46, 929, 1, true, true, 'Kelly Cunningham', '2013-02-26', '2013-11-26', '1949-6-19', 929, '946973'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(930, false, 'FERS', 1, 930, 227372.36, 930, 1, true, true, 'Joshua Wheeler', '2013-01-24', '2013-12-01', '1973-10-18', 930, '959807'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(931, false, 'FERS', 1, 931, 467188.21, 931, 1, true, true, 'Russell Murphy', '2013-05-05', '2013-03-08', '1976-10-11', 931, '949307'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(932, false, 'FERS', 1, 932, 470696.74, 932, 1, true, true, 'Joyce Fisher', '2013-04-29', '2013-07-16', '1966-11-10', 932, '944871'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(933, false, 'FERS', 1, 933, 364166.18, 933, 1, false, false, 'Peter Flores', '2013-06-21', '2012-12-12', '1931-5-19', 933, '951475'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(934, false, 'FERS', 1, 934, 208190.22, 934, 1, true, false, 'Diana Wright', '2013-08-21', '2013-04-22', '1968-1-17', 934, '960693'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(935, false, 'FERS', 1, 935, 380880.42, 935, 1, true, true, 'Bobby Holmes', '2013-11-22', '2013-01-11', '1969-4-15', 935, '990807'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(936, false, 'FERS', 1, 936, 355459.7, 936, 1, false, false, 'Linda Tucker', '2013-02-15', '2013-02-27', '1961-3-18', 936, '950965'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(937, false, 'FERS', 1, 937, 434317.1, 937, 2, false, false, 'Daniel Richards', '2013-07-22', '2013-04-12', '1943-7-11', 937, '981750'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(938, false, 'FERS', 1, 938, 228435.01, 938, 2, false, true, 'Steven Chapman', '2013-04-29', '2013-03-06', '1962-3-10', 938, '963366'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(939, false, 'FERS', 1, 939, 210964.65, 939, 2, true, false, 'Barbara Palmer', '2013-03-25', '2013-09-22', '1947-5-20', 939, '901135'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(940, false, 'FERS', 1, 940, 287274.75, 940, 2, true, true, 'Kathryn Matthews', '2013-05-31', '2013-06-10', '1969-4-28', 940, '994408'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(941, false, 'FERS', 1, 941, 395109.94, 941, 1, false, false, 'Randy Green', '2013-01-20', '2013-04-03', '1971-12-30', 941, '981250'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(942, false, 'FERS', 1, 942, 214297.42, 942, 1, true, false, 'Joshua Wheeler', '2013-04-21', '2013-04-22', '1970-1-19', 942, '995846'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(943, false, 'FERS', 1, 943, 219825.82, 943, 1, true, true, 'Joan Ramos', '2013-03-14', '2013-03-07', '1977-7-17', 943, '997124'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(944, false, 'FERS', 1, 944, 476714.96, 944, 2, true, true, 'Ryan Chapman', '2013-06-12', '2013-10-14', '1923-10-17', 944, '931281'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(945, false, 'FERS', 1, 945, 271231.58, 945, 1, false, false, 'Peter Daniels', '2013-03-02', '2013-06-05', '1923-7-29', 945, '994800'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(946, false, 'FERS', 1, 946, 354637.77, 946, 2, true, true, 'Johnny Garrett', '2013-07-20', '2013-01-16', '1970-10-23', 946, '911589'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(947, false, 'FERS', 1, 947, 475381.86, 947, 1, true, true, 'Lawrence Morgan', '2013-08-04', '2013-06-25', '1968-9-11', 947, '983025'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(948, false, 'FERS', 1, 948, 234174.12, 948, 2, false, true, 'Albert Adams', '2013-10-22', '2012-12-27', '1960-5-27', 948, '919271'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(949, false, 'FERS', 1, 949, 320718.86, 949, 1, false, false, 'Lori Chavez', '2013-10-04', '2013-07-10', '1955-8-24', 949, '958192'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(950, false, 'FERS', 1, 950, 480366.69, 950, 1, true, false, 'Marie Hamilton', '2013-06-18', '2013-09-10', '1962-1-25', 950, '936579'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(951, false, 'FERS', 1, 951, 232585.94, 951, 1, true, true, 'Martha Campbell', '2013-08-10', '2013-03-17', '1922-11-10', 951, '927242'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(952, false, 'FERS', 1, 952, 296058.8, 952, 2, true, true, 'Jesse Austin', '2013-03-06', '2013-03-16', '1954-4-30', 952, '942792'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(953, false, 'FERS', 1, 953, 251109.9, 953, 2, false, true, 'John Mills', '2013-11-27', '2013-09-21', '1933-2-4', 953, '905412'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(954, false, 'FERS', 1, 954, 464787.19, 954, 1, false, false, 'Richard Scott', '2013-11-24', '2013-03-09', '1956-3-28', 954, '917128'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(955, false, 'FERS', 1, 955, 333864.76, 955, 1, false, true, 'Jesse Black', '2013-10-11', '2013-03-07', '1980-11-27', 955, '936302'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(956, false, 'FERS', 1, 956, 370862.57, 956, 2, false, true, 'Jessica Smith', '2013-01-29', '2013-05-14', '1980-2-4', 956, '924258'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(957, false, 'FERS', 1, 957, 341232.49, 957, 2, true, true, 'Juan Fox', '2012-12-28', '2013-08-01', '1921-12-7', 957, '930422'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(958, false, 'FERS', 1, 958, 472872.6, 958, 1, true, false, 'Kenneth Webb', '2013-04-30', '2013-11-12', '1922-2-27', 958, '968576'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(959, false, 'FERS', 1, 959, 212179.9, 959, 1, true, true, 'Marie Harper', '2013-03-31', '2013-08-20', '1946-3-14', 959, '922641'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(960, false, 'FERS', 1, 960, 424412.55, 960, 2, true, true, 'Sara Reyes', '2013-07-25', '2013-01-30', '1977-4-10', 960, '929622'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(961, false, 'FERS', 1, 961, 402832.1, 961, 1, true, false, 'Kathryn Collins', '2013-11-07', '2013-10-22', '1948-3-4', 961, '900353'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(962, false, 'FERS', 1, 962, 241297.72, 962, 2, false, true, 'Dennis Morales', '2013-04-14', '2013-09-22', '1928-2-22', 962, '984999'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(963, false, 'FERS', 1, 963, 492723.09, 963, 1, false, false, 'Tina Reyes', '2013-03-25', '2013-09-10', '1947-2-2', 963, '923944'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(964, false, 'FERS', 1, 964, 263610.92, 964, 1, true, false, 'Jonathan Stanley', '2013-09-30', '2013-05-23', '1954-3-24', 964, '997621'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(965, false, 'FERS', 1, 965, 312423.75, 965, 2, false, false, 'Marie Harper', '2013-09-21', '2013-04-03', '1953-10-31', 965, '904277'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(966, false, 'FERS', 1, 966, 346131.76, 966, 1, false, true, 'Kathleen Gonzalez', '2013-01-08', '2013-10-20', '1929-8-19', 966, '956251'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(967, false, 'FERS', 1, 967, 416174.85, 967, 1, true, true, 'Pamela Ferguson', '2013-09-03', '2013-05-21', '1932-5-11', 967, '975705'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(968, false, 'FERS', 1, 968, 452863.1, 968, 2, true, true, 'Billy Price', '2013-06-03', '2013-09-05', '1977-9-22', 968, '935152'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(969, false, 'FERS', 1, 969, 281171.78, 969, 2, true, true, 'Theresa Willis', '2013-06-16', '2013-12-02', '1963-7-13', 969, '951185'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(970, false, 'FERS', 1, 970, 317962.37, 970, 2, true, true, 'Richard Collins', '2013-07-07', '2013-01-21', '1930-6-19', 970, '996809'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(971, false, 'FERS', 1, 971, 422079.75, 971, 1, false, false, 'Paula Ryan', '2013-06-18', '2013-11-27', '1962-6-16', 971, '920098'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(972, false, 'FERS', 1, 972, 440114.13, 972, 2, false, true, 'Jean Clark', '2013-05-31', '2013-05-24', '1950-7-24', 972, '940533'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(973, false, 'FERS', 1, 973, 253428.72, 973, 2, true, false, 'Craig Little', '2013-02-26', '2013-01-28', '1941-6-12', 973, '914107'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(974, false, 'FERS', 1, 974, 424053.72, 974, 1, false, false, 'Phillip Richards', '2013-03-24', '2013-04-17', '1979-7-6', 974, '929192'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(975, false, 'FERS', 1, 975, 384228.48, 975, 2, true, true, 'Juan Fox', '2012-12-14', '2013-12-01', '1951-8-16', 975, '963887'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(976, false, 'FERS', 1, 976, 392357.8, 976, 1, true, true, 'Linda Tucker', '2013-07-01', '2013-11-25', '1964-4-1', 976, '978590'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(977, false, 'FERS', 1, 977, 458216.69, 977, 2, false, false, 'Bonnie Watkins', '2012-12-26', '2013-04-26', '1971-3-25', 977, '925835'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(978, false, 'FERS', 1, 978, 274145.88, 978, 2, false, true, 'Julie Murphy', '2012-12-13', '2013-06-08', '1922-4-14', 978, '972829'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(979, false, 'FERS', 1, 979, 394325.28, 979, 1, false, false, 'Eric Lopez', '2013-11-07', '2012-12-18', '1930-12-27', 979, '995152'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(980, false, 'FERS', 1, 980, 254948.89, 980, 1, false, true, 'Heather Stanley', '2013-08-09', '2013-06-21', '1933-10-16', 980, '960754'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(981, false, 'FERS', 1, 981, 221264.06, 981, 2, true, false, 'Sara Reyes', '2013-08-13', '2013-08-12', '1942-8-25', 981, '998718'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(982, false, 'FERS', 1, 982, 211052.37, 982, 2, true, false, 'Donna Payne', '2013-03-24', '2013-08-20', '1958-5-25', 982, '966299'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(983, false, 'FERS', 1, 983, 485529.47, 983, 1, false, false, 'Aaron Castillo', '2013-06-29', '2013-06-11', '1931-9-26', 983, '939105'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(984, false, 'FERS', 1, 984, 459926.75, 984, 2, true, true, 'Lillian Cunningham', '2013-04-12', '2013-03-21', '1925-4-21', 984, '928062'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(985, false, 'FERS', 1, 985, 288874.18, 985, 1, true, false, 'Louis Jacobs', '2013-02-23', '2013-02-10', '1950-1-5', 985, '906037'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(986, false, 'FERS', 1, 986, 261011.33, 986, 1, true, true, 'Karen Rodriguez', '2013-02-07', '2012-12-12', '1945-6-8', 986, '940632'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(987, false, 'FERS', 1, 987, 423169.56, 987, 1, false, false, 'Julie West', '2013-12-03', '2013-11-03', '1936-2-25', 987, '954003'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(988, false, 'FERS', 1, 988, 475333.26, 988, 2, true, false, 'Lillian Mitchell', '2013-08-13', '2013-08-14', '1949-11-1', 988, '950044'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(989, false, 'FERS', 1, 989, 237949.88, 989, 2, false, false, 'Catherine Woods', '2013-04-01', '2013-02-22', '1954-4-30', 989, '968128'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(990, false, 'FERS', 1, 990, 482480.77, 990, 1, true, false, 'Russell Powell', '2013-11-03', '2013-06-11', '1929-10-6', 990, '977623'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(991, false, 'FERS', 1, 991, 317279.93, 991, 1, true, false, 'Linda Castillo', '2013-07-02', '2013-03-30', '1944-9-23', 991, '993272'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(992, false, 'FERS', 1, 992, 402034.87, 992, 1, false, true, 'Jeremy Bishop', '2013-11-17', '2013-03-15', '1966-4-6', 992, '912460'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(993, false, 'FERS', 1, 993, 287835.76, 993, 1, true, false, 'Walter Robertson', '2013-07-26', '2013-05-20', '1971-9-25', 993, '936881'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(994, false, 'FERS', 1, 994, 491639.38, 994, 1, true, false, 'Catherine Woods', '2013-01-19', '2013-07-03', '1924-8-17', 994, '975935'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(995, false, 'FERS', 1, 995, 207146.51, 995, 2, false, true, 'Tina Moore', '2013-04-23', '2013-06-06', '1974-7-11', 995, '942399'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(996, false, 'FERS', 1, 996, 408290.96, 996, 2, false, false, 'Louise Williamson', '2013-03-31', '2013-01-18', '1947-7-26', 996, '969017'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(997, false, 'FERS', 1, 997, 486903.36, 997, 2, false, true, 'Martha Powell', '2013-01-31', '2013-08-26', '1952-2-1', 997, '989585'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(998, false, 'FERS', 1, 998, 382776.95, 998, 2, false, false, 'Peter Flores', '2013-05-21', '2013-08-24', '1962-12-9', 998, '928422'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(999, false, 'FERS', 1, 999, 273550.52, 999, 1, true, false, 'Kathryn Palmer', '2013-10-06', '2013-06-02', '1975-3-31', 999, '901806'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1000, false, 'FERS', 1, 1000, 223480.41, 1000, 2, false, true, 'George Frazier', '2013-07-04', '2013-06-06', '1942-6-4', 1000, '950828'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1001, false, 'CSRS', 2, 1001, 415042.88, 1001, 1, false, false, 'Roy Hill', '2013-04-26', '2013-11-20', '1963-1-9', 1001, '920646'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1002, false, 'CSRS', 2, 1002, 409045.79, 1002, 2, false, false, 'Nicholas Cruz', '2013-06-12', '2013-07-14', '1966-2-23', 1002, '902324'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1003, false, 'CSRS', 2, 1003, 485895.79, 1003, 2, true, true, 'Christina Carpenter', '2013-06-30', '2013-11-30', '1945-10-1', 1003, '901951'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1004, false, 'CSRS', 2, 1004, 368668.29, 1004, 1, false, false, 'Annie Powell', '2013-03-17', '2013-07-16', '1955-10-12', 1004, '937308'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1005, false, 'CSRS', 2, 1005, 305787.73, 1005, 2, true, true, 'John Mills', '2013-08-12', '2013-04-15', '1980-9-16', 1005, '944577'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1006, false, 'CSRS', 2, 1006, 425837.45, 1006, 1, true, false, 'Kevin Perez', '2013-07-18', '2013-10-25', '1970-4-13', 1006, '910223'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1007, false, 'CSRS', 2, 1007, 472623.59, 1007, 1, true, true, 'Jesse Austin', '2013-03-22', '2013-02-28', '1923-3-31', 1007, '971493'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1008, false, 'CSRS', 2, 1008, 369669.09, 1008, 1, false, false, 'Arthur Crawford', '2012-12-21', '2013-08-11', '1958-3-28', 1008, '955215'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1009, false, 'CSRS', 2, 1009, 209097.96, 1009, 1, true, true, 'John Holmes', '2013-11-17', '2013-09-25', '1952-4-7', 1009, '915972'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1010, false, 'CSRS', 2, 1010, 391154.5, 1010, 1, true, true, 'Chris Elliott', '2013-04-17', '2013-03-28', '1936-6-28', 1010, '929458'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1011, false, 'CSRS', 2, 1011, 259583.55, 1011, 1, false, true, 'Judith Moreno', '2013-04-07', '2013-04-26', '1976-8-17', 1011, '926327'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1012, false, 'CSRS', 2, 1012, 296380.53, 1012, 2, true, false, 'Antonio Hudson', '2013-07-08', '2013-06-25', '1937-3-1', 1012, '987508'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1013, false, 'CSRS', 2, 1013, 411232.45, 1013, 1, true, false, 'Tina Richardson', '2013-11-24', '2013-10-09', '1967-10-1', 1013, '924339'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1014, false, 'CSRS', 2, 1014, 423257.83, 1014, 1, false, false, 'George Bryant', '2013-10-14', '2013-08-20', '1924-9-19', 1014, '975796'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1015, false, 'CSRS', 2, 1015, 477985.65, 1015, 2, true, true, 'Eugene Hudson', '2013-09-27', '2013-01-04', '1937-1-15', 1015, '927634'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1016, false, 'CSRS', 2, 1016, 332415.94, 1016, 2, false, true, 'Joan Ramos', '2013-11-12', '2013-01-22', '1941-10-13', 1016, '935618'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1017, false, 'CSRS', 2, 1017, 235216.6, 1017, 2, false, false, 'Walter Frazier', '2013-08-02', '2013-05-06', '1955-8-24', 1017, '908791'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1018, false, 'CSRS', 2, 1018, 352677.98, 1018, 2, true, false, 'Antonio Hudson', '2013-05-18', '2013-04-04', '1963-6-1', 1018, '933202'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1019, false, 'CSRS', 2, 1019, 384829.46, 1019, 1, false, false, 'Diana Andrews', '2013-11-27', '2013-04-07', '1960-11-9', 1019, '966156'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1020, false, 'CSRS', 2, 1020, 477427.5, 1020, 2, true, true, 'Willie Burton', '2013-04-04', '2013-11-03', '1979-4-28', 1020, '907566'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1021, false, 'CSRS', 2, 1021, 294187.8, 1021, 1, false, false, 'Brian Scott', '2013-05-02', '2013-08-22', '1941-12-28', 1021, '948146'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1022, false, 'CSRS', 2, 1022, 241395.04, 1022, 2, false, true, 'Patrick Bryant', '2013-09-28', '2013-09-17', '1954-9-12', 1022, '997166'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1023, false, 'CSRS', 2, 1023, 388099.44, 1023, 2, true, true, 'Ruth Harvey', '2013-06-19', '2013-01-13', '1969-10-12', 1023, '900222'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1024, false, 'CSRS', 2, 1024, 218683.57, 1024, 1, false, false, 'James Chavez', '2013-10-29', '2013-10-23', '1926-10-26', 1024, '928609'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1025, false, 'CSRS', 2, 1025, 453009.53, 1025, 1, false, false, 'John Holmes', '2013-12-06', '2013-08-05', '1936-7-19', 1025, '938164'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1026, false, 'CSRS', 2, 1026, 282692.11, 1026, 2, true, true, 'Lois Olson', '2013-09-09', '2013-10-25', '1928-5-11', 1026, '958889'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1027, false, 'CSRS', 2, 1027, 242292.34, 1027, 2, false, true, 'Randy Jacobs', '2013-04-09', '2013-03-07', '1965-11-7', 1027, '978798'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1028, false, 'CSRS', 2, 1028, 485599.72, 1028, 1, false, true, 'Catherine Hamilton', '2013-04-26', '2013-06-25', '1963-7-11', 1028, '905414'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1029, false, 'CSRS', 2, 1029, 480599.26, 1029, 2, true, false, 'Eric Austin', '2012-12-12', '2013-02-04', '1969-12-19', 1029, '962413'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1030, false, 'CSRS', 2, 1030, 419617.31, 1030, 1, true, false, 'Paula Welch', '2013-08-28', '2013-08-15', '1937-5-4', 1030, '908191'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1031, false, 'CSRS', 2, 1031, 257613.94, 1031, 2, true, false, 'Bobby Burton', '2013-04-05', '2013-04-18', '1973-4-6', 1031, '944193'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1032, false, 'CSRS', 2, 1032, 279924.21, 1032, 2, true, true, 'Theresa West', '2013-03-03', '2013-09-18', '1928-2-6', 1032, '976638'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1033, false, 'CSRS', 2, 1033, 217524.55, 1033, 2, true, true, 'Deborah Lane', '2013-09-15', '2013-03-25', '1945-10-18', 1033, '989076'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1034, false, 'CSRS', 2, 1034, 251313.12, 1034, 1, false, false, 'Robin Ward', '2013-06-30', '2013-05-19', '1935-12-1', 1034, '933631'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1035, false, 'CSRS', 2, 1035, 470055.16, 1035, 1, false, true, 'Matthew Richards', '2013-05-22', '2013-05-26', '1952-12-24', 1035, '985948'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1036, false, 'CSRS', 2, 1036, 237493.47, 1036, 1, false, false, 'Henry Morgan', '2013-11-11', '2012-12-24', '1933-9-17', 1036, '966322'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1037, false, 'CSRS', 2, 1037, 386192.55, 1037, 2, false, false, 'Howard Hunter', '2013-01-08', '2013-05-23', '1973-2-1', 1037, '976457'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1038, false, 'CSRS', 2, 1038, 300225.96, 1038, 1, true, true, 'Doris Burton', '2013-01-05', '2013-05-21', '1925-8-18', 1038, '900462'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1039, false, 'CSRS', 2, 1039, 450499.35, 1039, 1, true, true, 'Bobby Sims', '2013-02-27', '2013-05-03', '1968-9-17', 1039, '998358'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1040, false, 'CSRS', 2, 1040, 433080.28, 1040, 1, true, true, 'Johnny Grant', '2013-05-05', '2013-07-02', '1942-1-23', 1040, '910724'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1041, false, 'CSRS', 2, 1041, 238262.15, 1041, 1, false, false, 'Norma Garza', '2013-10-01', '2013-07-12', '1928-6-10', 1041, '990321'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1042, false, 'CSRS', 2, 1042, 241771.02, 1042, 1, true, true, 'Pamela Martin', '2013-10-03', '2013-07-01', '1965-11-23', 1042, '955380'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1043, false, 'CSRS', 2, 1043, 440378.1, 1043, 2, false, true, 'Henry Kelley', '2013-01-22', '2013-10-03', '1923-9-8', 1043, '961944'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1044, false, 'CSRS', 2, 1044, 304817.16, 1044, 2, true, false, 'Ruth Nichols', '2013-11-26', '2013-03-06', '1967-5-28', 1044, '935939'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1045, false, 'CSRS', 2, 1045, 357435.35, 1045, 1, true, true, 'Eugene Hudson', '2013-03-12', '2013-03-18', '1941-4-25', 1045, '945227'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1046, false, 'CSRS', 2, 1046, 450094.85, 1046, 2, false, true, 'Diana Andrews', '2013-09-08', '2013-03-25', '1949-4-12', 1046, '948853'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1047, false, 'CSRS', 2, 1047, 458466.63, 1047, 1, true, false, 'Eric Lopez', '2013-11-09', '2013-08-27', '1928-7-26', 1047, '923845'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1048, false, 'CSRS', 2, 1048, 456070.19, 1048, 1, false, false, 'Amanda Walker', '2012-12-22', '2013-04-18', '1927-3-28', 1048, '937879'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1049, false, 'CSRS', 2, 1049, 308481.53, 1049, 1, false, true, 'Joan Phillips', '2013-04-04', '2013-06-11', '1971-9-11', 1049, '946708'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1050, false, 'CSRS', 2, 1050, 258052.3, 1050, 1, true, true, 'Adam Long', '2013-06-29', '2013-06-17', '1936-8-3', 1050, '926581'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1051, false, 'CSRS', 2, 1051, 391857.39, 1051, 2, true, false, 'Cheryl Thomas', '2013-06-24', '2013-08-31', '1959-8-23', 1051, '939048'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1052, false, 'CSRS', 2, 1052, 339746.88, 1052, 2, false, false, 'Gary Rogers', '2013-05-04', '2013-07-28', '1980-6-10', 1052, '942967'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1053, false, 'CSRS', 2, 1053, 439431.44, 1053, 1, false, false, 'Joan Watkins', '2013-02-09', '2013-01-26', '1950-5-25', 1053, '919661'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1054, false, 'CSRS', 2, 1054, 441906.01, 1054, 2, false, false, 'Sara Stevens', '2013-11-06', '2013-08-10', '1945-2-21', 1054, '998596'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1055, false, 'CSRS', 2, 1055, 484838.84, 1055, 1, true, false, 'Patricia Nelson', '2013-08-18', '2013-06-29', '1948-7-9', 1055, '915390'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1056, false, 'CSRS', 2, 1056, 237625.37, 1056, 2, true, false, 'Sean Romero', '2013-06-09', '2013-01-09', '1955-5-8', 1056, '985542'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1057, false, 'CSRS', 2, 1057, 278540.67, 1057, 2, true, true, 'John Mills', '2013-12-09', '2013-10-28', '1971-7-13', 1057, '954016'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1058, false, 'CSRS', 2, 1058, 367927.91, 1058, 2, true, true, 'Roy Hunt', '2013-03-12', '2013-07-01', '1980-8-17', 1058, '968045'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1059, false, 'CSRS', 2, 1059, 369551.08, 1059, 1, false, false, 'Kelly Cunningham', '2013-10-15', '2013-05-12', '1947-11-2', 1059, '927100'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1060, false, 'CSRS', 2, 1060, 209816.69, 1060, 1, true, true, 'Denise Meyer', '2013-03-09', '2013-07-27', '1967-2-27', 1060, '948830'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1061, false, 'CSRS', 2, 1061, 342999.18, 1061, 1, false, false, 'Christine Pierce', '2013-09-23', '2013-09-10', '1974-5-2', 1061, '942031'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1062, false, 'CSRS', 2, 1062, 437976.44, 1062, 1, true, false, 'Russell Murphy', '2013-05-08', '2013-03-28', '1930-6-23', 1062, '908600'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1063, false, 'CSRS', 2, 1063, 206428.4, 1063, 2, true, true, 'Brandon Ferguson', '2013-09-16', '2013-07-31', '1922-9-19', 1063, '937449'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1064, false, 'CSRS', 2, 1064, 446778.54, 1064, 1, false, true, 'Christine Pierce', '2013-06-22', '2013-07-28', '1923-4-15', 1064, '919498'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1065, false, 'CSRS', 2, 1065, 352488.55, 1065, 1, true, false, 'Nicholas Cruz', '2012-12-21', '2013-05-03', '1975-5-24', 1065, '993175'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1066, false, 'CSRS', 2, 1066, 306393.97, 1066, 2, false, false, 'Gary Payne', '2013-12-01', '2013-09-20', '1977-12-28', 1066, '953185'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1067, false, 'CSRS', 2, 1067, 420548.05, 1067, 1, false, true, 'Howard Hunter', '2013-11-07', '2013-04-22', '1962-7-12', 1067, '924218'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1068, false, 'CSRS', 2, 1068, 337805.56, 1068, 2, true, false, 'Diana Wright', '2013-08-22', '2013-07-09', '1922-7-28', 1068, '911384'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1069, false, 'CSRS', 2, 1069, 228857.34, 1069, 2, false, false, 'Jerry Arnold', '2013-10-14', '2012-12-25', '1929-7-26', 1069, '963797'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1070, false, 'CSRS', 2, 1070, 202815.4, 1070, 2, false, true, 'Teresa Gilbert', '2013-11-25', '2013-02-07', '1962-1-16', 1070, '989181'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1071, false, 'CSRS', 2, 1071, 402452.54, 1071, 1, false, false, 'Kelly Cunningham', '2013-03-03', '2013-07-03', '1951-2-21', 1071, '916689'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1072, false, 'CSRS', 2, 1072, 399060.07, 1072, 1, false, false, 'Virginia Riley', '2013-09-25', '2013-02-12', '1934-4-24', 1072, '927784'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1073, false, 'CSRS', 2, 1073, 264752.6, 1073, 1, true, true, 'Willie Cox', '2013-02-01', '2013-06-19', '1956-5-25', 1073, '934925'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1074, false, 'CSRS', 2, 1074, 385990.11, 1074, 1, false, false, 'Jane Olson', '2013-03-19', '2013-03-07', '1927-1-6', 1074, '932103'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1075, false, 'CSRS', 2, 1075, 417647.53, 1075, 1, false, false, 'Keith Ford', '2013-03-13', '2013-04-01', '1972-12-26', 1075, '913014'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1076, false, 'CSRS', 2, 1076, 324087.11, 1076, 2, false, true, 'Lillian Alvarez', '2013-03-22', '2013-06-12', '1945-5-16', 1076, '973877'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1077, false, 'CSRS', 2, 1077, 203679.82, 1077, 2, false, false, 'Amy Richards', '2013-10-05', '2013-09-09', '1938-12-11', 1077, '966397'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1078, false, 'CSRS', 2, 1078, 449412.17, 1078, 1, true, true, 'Jessica Alvarez', '2013-01-08', '2013-04-03', '1955-12-17', 1078, '956255'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1079, false, 'CSRS', 2, 1079, 424672.96, 1079, 1, false, true, 'Nancy Perez', '2013-08-02', '2013-02-03', '1980-12-8', 1079, '953365'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1080, false, 'CSRS', 2, 1080, 485203.81, 1080, 2, false, false, 'Louis Jacobs', '2013-09-20', '2013-02-03', '1975-11-11', 1080, '931041'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1081, false, 'CSRS', 2, 1081, 356268.23, 1081, 2, true, false, 'Howard Griffin', '2013-08-03', '2013-06-22', '1956-5-24', 1081, '954685'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1082, false, 'CSRS', 2, 1082, 237950.66, 1082, 1, false, true, 'Eugene Moore', '2013-11-18', '2013-06-27', '1929-3-26', 1082, '942020'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1083, false, 'CSRS', 2, 1083, 409977.07, 1083, 1, false, false, 'Stephanie Perry', '2013-10-09', '2013-04-24', '1961-6-19', 1083, '906112'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1084, false, 'CSRS', 2, 1084, 413846.08, 1084, 2, true, true, 'Sarah Payne', '2013-11-20', '2013-04-03', '1949-12-1', 1084, '990398'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1085, false, 'CSRS', 2, 1085, 262579.67, 1085, 1, true, true, 'Rebecca Roberts', '2013-02-23', '2013-11-08', '1931-3-30', 1085, '918773'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1086, false, 'CSRS', 2, 1086, 395199.49, 1086, 1, true, false, 'Amy Porter', '2013-08-12', '2013-09-27', '1957-1-26', 1086, '992030'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1087, false, 'CSRS', 2, 1087, 355732.18, 1087, 1, true, false, 'Ruth Nichols', '2013-06-24', '2013-10-26', '1952-7-31', 1087, '951197'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1088, false, 'CSRS', 2, 1088, 227326.64, 1088, 1, false, true, 'Deborah Lane', '2013-07-15', '2013-11-02', '1959-12-8', 1088, '993106'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1089, false, 'CSRS', 2, 1089, 355968.62, 1089, 1, true, true, 'Antonio Weaver', '2013-04-04', '2013-07-05', '1938-11-24', 1089, '973029'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1090, false, 'CSRS', 2, 1090, 218688.43, 1090, 2, true, false, 'John Holmes', '2013-06-05', '2013-04-24', '1974-4-20', 1090, '987963'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1091, false, 'CSRS', 2, 1091, 266324.89, 1091, 2, false, false, 'Judith Rose', '2013-03-20', '2013-12-06', '1956-8-12', 1091, '916595'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1092, false, 'CSRS', 2, 1092, 337145.88, 1092, 1, true, true, 'Martha Powell', '2013-03-24', '2013-10-24', '1968-11-6', 1092, '942656'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1093, false, 'CSRS', 2, 1093, 444496.77, 1093, 2, true, false, 'Diana Wright', '2013-08-29', '2013-04-27', '1970-7-6', 1093, '913130'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1094, false, 'CSRS', 2, 1094, 256387.52, 1094, 1, true, false, 'Mark Hanson', '2013-09-09', '2013-05-24', '1962-4-11', 1094, '932727'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1095, false, 'CSRS', 2, 1095, 412132.42, 1095, 1, true, false, 'Heather Stanley', '2012-12-12', '2013-09-26', '1979-6-23', 1095, '901271'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1096, false, 'CSRS', 2, 1096, 261856.17, 1096, 2, false, true, 'Amanda Day', '2013-06-01', '2013-10-23', '1979-3-12', 1096, '960351'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1097, false, 'CSRS', 2, 1097, 326275.81, 1097, 2, true, false, 'Cheryl Banks', '2013-10-03', '2013-11-10', '1926-10-31', 1097, '929616'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1098, false, 'CSRS', 2, 1098, 416232.78, 1098, 2, false, false, 'Nicole Spencer', '2013-06-12', '2013-03-29', '1962-3-31', 1098, '953086'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1099, false, 'CSRS', 2, 1099, 310349.38, 1099, 2, true, true, 'Judy Jordan', '2013-04-30', '2013-02-04', '1934-11-11', 1099, '965475'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1100, false, 'CSRS', 2, 1100, 217571.15, 1100, 2, false, true, 'Teresa Gilbert', '2013-01-04', '2013-02-25', '1967-9-9', 1100, '979946'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1101, false, 'CSRS', 2, 1101, 257905.72, 1101, 2, true, true, 'Scott Reyes', '2013-09-19', '2013-04-20', '1966-3-4', 1101, '931794'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1102, false, 'CSRS', 2, 1102, 238573.65, 1102, 1, true, false, 'Kevin Perez', '2013-05-21', '2013-08-14', '1949-4-15', 1102, '927375'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1103, false, 'CSRS', 2, 1103, 235592.53, 1103, 1, true, false, 'Peter Flores', '2012-12-14', '2013-11-25', '1928-11-9', 1103, '926392'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1104, false, 'CSRS', 2, 1104, 435213.49, 1104, 2, true, false, 'Matthew Wood', '2013-10-29', '2013-09-17', '1938-10-13', 1104, '942675'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1105, false, 'CSRS', 2, 1105, 435256.11, 1105, 1, false, false, 'Julie Murphy', '2013-05-28', '2013-10-03', '1979-9-17', 1105, '983470'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1106, false, 'CSRS', 2, 1106, 420056.2, 1106, 1, true, false, 'Russell Mason', '2013-02-16', '2013-07-17', '1970-12-22', 1106, '940952'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1107, false, 'CSRS', 2, 1107, 422134.15, 1107, 1, false, true, 'Gerald Moore', '2013-06-21', '2013-07-05', '1927-8-3', 1107, '994949'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1108, false, 'CSRS', 2, 1108, 200757.26, 1108, 1, false, false, 'Denise Young', '2013-02-08', '2013-11-09', '1952-8-17', 1108, '901324'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1109, false, 'CSRS', 2, 1109, 483932.08, 1109, 1, true, true, 'Cheryl Boyd', '2013-08-31', '2013-10-01', '1960-3-28', 1109, '993946'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1110, false, 'CSRS', 2, 1110, 470527.1, 1110, 1, false, true, 'Virginia Gardner', '2013-08-12', '2012-12-20', '1927-2-17', 1110, '935163'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1111, false, 'CSRS', 2, 1111, 349556.29, 1111, 1, false, true, 'Lillian Cunningham', '2013-03-17', '2013-02-10', '1979-8-9', 1111, '949280'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1112, false, 'CSRS', 2, 1112, 324524.88, 1112, 2, false, true, 'Jacqueline Weaver', '2013-04-25', '2013-05-27', '1949-10-20', 1112, '955239'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1113, false, 'CSRS', 2, 1113, 481990.66, 1113, 1, false, true, 'James Day', '2013-08-25', '2013-06-28', '1956-9-21', 1113, '906540'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1114, false, 'CSRS', 2, 1114, 428260.47, 1114, 2, true, true, 'Pamela Ferguson', '2013-07-21', '2013-08-19', '1927-8-24', 1114, '994001'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1115, false, 'CSRS', 2, 1115, 467136.43, 1115, 2, false, true, 'Michelle Fisher', '2013-08-26', '2013-10-21', '1923-3-13', 1115, '974323'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1116, false, 'CSRS', 2, 1116, 376872.31, 1116, 2, true, false, 'Paula Kim', '2012-12-19', '2013-05-30', '1978-11-1', 1116, '942754'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1117, false, 'CSRS', 2, 1117, 441524.43, 1117, 1, true, true, 'Michelle Fisher', '2013-11-05', '2013-10-19', '1925-11-27', 1117, '919793'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1118, false, 'CSRS', 2, 1118, 396372.43, 1118, 1, true, false, 'Lori Smith', '2013-03-29', '2013-03-20', '1941-3-16', 1118, '951430'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1119, false, 'CSRS', 2, 1119, 237290.78, 1119, 2, true, true, 'Joyce Fisher', '2013-08-11', '2013-01-08', '1978-7-16', 1119, '909112'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1120, false, 'CSRS', 2, 1120, 255761.38, 1120, 1, true, false, 'Gerald Peters', '2013-07-07', '2013-10-27', '1961-8-13', 1120, '916961'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1121, false, 'CSRS', 2, 1121, 334334.28, 1121, 2, true, false, 'Kathryn Palmer', '2013-10-22', '2013-10-18', '1967-7-6', 1121, '932713'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1122, false, 'CSRS', 2, 1122, 324011.21, 1122, 2, true, true, 'Jonathan Stanley', '2013-01-27', '2012-12-12', '1922-7-11', 1122, '968095'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1123, false, 'CSRS', 2, 1123, 304640.16, 1123, 1, true, false, 'Marie Owens', '2013-08-29', '2013-05-26', '1977-4-18', 1123, '992443'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1124, false, 'CSRS', 2, 1124, 366083.19, 1124, 2, false, true, 'Christopher Scott', '2013-05-24', '2013-09-17', '1935-3-24', 1124, '986491'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1125, false, 'CSRS', 2, 1125, 317508.85, 1125, 1, false, false, 'Thomas Dean', '2012-12-17', '2013-06-24', '1979-10-10', 1125, '984000'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1126, false, 'CSRS', 2, 1126, 413138.48, 1126, 2, false, false, 'Jonathan Freeman', '2013-06-03', '2013-09-22', '1933-4-4', 1126, '962793'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1127, false, 'CSRS', 2, 1127, 389135.19, 1127, 2, false, false, 'Dorothy Shaw', '2013-06-28', '2013-01-09', '1925-9-19', 1127, '987564'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1128, false, 'CSRS', 2, 1128, 450024.19, 1128, 1, false, false, 'Louis Jacobs', '2012-12-13', '2013-12-09', '1926-10-31', 1128, '999844'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1129, false, 'CSRS', 2, 1129, 331501.79, 1129, 2, false, false, 'Ryan Henry', '2013-03-19', '2013-06-29', '1967-7-15', 1129, '987175'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1130, false, 'CSRS', 2, 1130, 414898.99, 1130, 1, false, false, 'Rachel Jordan', '2013-03-31', '2012-12-22', '1921-1-25', 1130, '982080'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1131, false, 'CSRS', 2, 1131, 365322.22, 1131, 1, false, false, 'Kathryn Ortiz', '2013-04-22', '2013-08-22', '1959-2-8', 1131, '909077'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1132, false, 'CSRS', 2, 1132, 464792.14, 1132, 1, true, true, 'Amy Porter', '2013-03-22', '2013-04-20', '1951-10-6', 1132, '976488'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1133, false, 'CSRS', 2, 1133, 327836.54, 1133, 1, false, true, 'Juan Coleman', '2013-02-08', '2013-10-12', '1979-8-25', 1133, '985816'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1134, false, 'CSRS', 2, 1134, 445825.45, 1134, 2, false, true, 'Todd Taylor', '2013-05-25', '2013-05-05', '1973-3-12', 1134, '980147'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1135, false, 'CSRS', 2, 1135, 432150.05, 1135, 2, true, false, 'Barbara Anderson', '2013-01-05', '2013-03-02', '1966-11-13', 1135, '922308'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1136, false, 'CSRS', 2, 1136, 496086.6, 1136, 2, false, false, 'Kathleen Mills', '2013-05-28', '2013-09-05', '1957-9-25', 1136, '996627'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1137, false, 'CSRS', 2, 1137, 489276.73, 1137, 2, true, false, 'Antonio Evans', '2013-05-26', '2013-11-12', '1923-7-12', 1137, '915120'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1138, false, 'CSRS', 2, 1138, 290198.65, 1138, 2, true, false, 'Todd Taylor', '2013-01-25', '2013-04-27', '1967-6-24', 1138, '917230'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1139, false, 'CSRS', 2, 1139, 472530.38, 1139, 1, false, false, 'Betty Morrison', '2013-01-26', '2013-08-26', '1945-6-8', 1139, '972924'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1140, false, 'CSRS', 2, 1140, 259210.1, 1140, 2, false, false, 'Kathryn Palmer', '2013-11-16', '2013-12-07', '1974-6-24', 1140, '919866'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1141, false, 'CSRS', 2, 1141, 300412.49, 1141, 1, false, false, 'Louis Mills', '2013-01-06', '2013-04-26', '1968-3-21', 1141, '999341'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1142, false, 'CSRS', 2, 1142, 277604.64, 1142, 2, true, false, 'Thomas Dean', '2013-11-08', '2013-06-01', '1974-1-16', 1142, '904356'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1143, false, 'CSRS', 2, 1143, 455555.97, 1143, 1, true, false, 'Laura Oliver', '2013-02-26', '2013-02-11', '1950-1-5', 1143, '942214'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1144, false, 'CSRS', 2, 1144, 222216.86, 1144, 2, true, true, 'Linda Tucker', '2013-06-30', '2013-07-19', '1930-4-24', 1144, '987004'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1145, false, 'CSRS', 2, 1145, 238764, 1145, 2, false, true, 'Tina Sullivan', '2012-12-29', '2013-01-29', '1925-10-18', 1145, '976790'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1146, false, 'CSRS', 2, 1146, 280261.36, 1146, 1, false, false, 'Judith Sanders', '2013-05-21', '2013-10-05', '1923-7-7', 1146, '928904'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1147, false, 'CSRS', 2, 1147, 220966.14, 1147, 2, true, true, 'Nancy Perez', '2013-09-13', '2013-03-09', '1974-12-3', 1147, '946320'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1148, false, 'CSRS', 2, 1148, 215268.49, 1148, 1, true, true, 'George Howard', '2013-09-09', '2013-05-20', '1925-4-17', 1148, '956706'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1149, false, 'CSRS', 2, 1149, 376743.3, 1149, 1, false, false, 'Sara Stevens', '2013-05-23', '2013-02-01', '1941-6-29', 1149, '972635'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1150, false, 'CSRS', 2, 1150, 335118.67, 1150, 1, true, false, 'Thomas Garza', '2013-09-17', '2013-04-11', '1951-2-16', 1150, '994980'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1151, false, 'CSRS', 2, 1151, 210412.21, 1151, 2, true, true, 'Ruth Nichols', '2013-04-19', '2013-07-08', '1962-11-27', 1151, '904099'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1152, false, 'CSRS', 2, 1152, 387937.79, 1152, 1, false, false, 'Paul Bell', '2013-03-05', '2013-08-30', '1939-3-30', 1152, '928923'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1153, false, 'CSRS', 2, 1153, 478015.53, 1153, 1, true, true, 'Earl Peters', '2013-02-26', '2013-05-21', '1936-12-21', 1153, '917716'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1154, false, 'CSRS', 2, 1154, 451668.23, 1154, 1, true, false, 'Joe Murray', '2013-03-15', '2013-05-22', '1929-8-5', 1154, '968023'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1155, false, 'CSRS', 2, 1155, 236219.77, 1155, 2, true, false, 'Louis Hansen', '2013-07-20', '2013-12-02', '1944-3-24', 1155, '966260'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1156, false, 'CSRS', 2, 1156, 479433.97, 1156, 1, false, true, 'Juan Coleman', '2013-03-19', '2013-06-29', '1961-5-13', 1156, '991789'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1157, false, 'CSRS', 2, 1157, 278568.69, 1157, 2, true, true, 'Marie Owens', '2013-02-21', '2013-01-22', '1958-7-17', 1157, '937221'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1158, false, 'CSRS', 2, 1158, 414245.9, 1158, 1, false, true, 'Billy Morris', '2013-06-11', '2012-12-24', '1961-11-15', 1158, '994792'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1159, false, 'CSRS', 2, 1159, 424075.35, 1159, 1, false, false, 'Mark Peters', '2013-04-07', '2013-04-20', '1971-7-11', 1159, '982574'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1160, false, 'CSRS', 2, 1160, 396083.69, 1160, 1, false, true, 'Virginia Gardner', '2013-05-03', '2013-06-18', '1957-2-3', 1160, '936603'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1161, false, 'CSRS', 2, 1161, 430584.85, 1161, 1, true, false, 'Billy Morris', '2013-02-27', '2013-05-16', '1946-9-13', 1161, '933156'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1162, false, 'CSRS', 2, 1162, 357828.13, 1162, 2, false, false, 'Jessica Alvarez', '2013-02-21', '2012-12-17', '1964-5-4', 1162, '951421'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1163, false, 'CSRS', 2, 1163, 468077.61, 1163, 1, false, true, 'Craig Alexander', '2013-11-25', '2013-08-05', '1971-8-18', 1163, '937291'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1164, false, 'CSRS', 2, 1164, 281987.72, 1164, 1, true, true, 'Benjamin Long', '2013-11-30', '2013-01-26', '1924-6-14', 1164, '993132'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1165, false, 'CSRS', 2, 1165, 372838.7, 1165, 1, true, true, 'Lois Olson', '2013-08-09', '2013-02-15', '1967-7-10', 1165, '941359'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1166, false, 'CSRS', 2, 1166, 304946.07, 1166, 2, true, false, 'Richard Collins', '2013-01-16', '2013-06-29', '1944-8-21', 1166, '916486'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1167, false, 'CSRS', 2, 1167, 447606.27, 1167, 2, false, false, 'Fred Garcia', '2013-05-26', '2013-10-08', '1931-11-8', 1167, '923592'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1168, false, 'CSRS', 2, 1168, 403499.71, 1168, 2, false, false, 'Jonathan Stanley', '2013-11-15', '2013-08-24', '1942-8-27', 1168, '928822'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1169, false, 'CSRS', 2, 1169, 276656.47, 1169, 1, true, false, 'Sarah Payne', '2013-02-03', '2013-10-26', '1969-1-21', 1169, '986069'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1170, false, 'CSRS', 2, 1170, 446930.67, 1170, 1, true, false, 'Kelly Rose', '2013-02-04', '2013-06-07', '1946-2-5', 1170, '990804'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1171, false, 'CSRS', 2, 1171, 319143.2, 1171, 2, true, true, 'Randy Watkins', '2013-10-06', '2013-11-11', '1966-11-24', 1171, '967015'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1172, false, 'CSRS', 2, 1172, 301700.91, 1172, 1, false, true, 'Betty Hunter', '2013-06-09', '2013-03-08', '1949-7-21', 1172, '969013'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1173, false, 'CSRS', 2, 1173, 330562.67, 1173, 2, false, false, 'Juan Fox', '2013-05-05', '2012-12-18', '1946-9-2', 1173, '947634'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1174, false, 'CSRS', 2, 1174, 473662.36, 1174, 2, true, true, 'James Day', '2013-02-20', '2013-03-09', '1925-6-29', 1174, '959551'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1175, false, 'CSRS', 2, 1175, 270311.93, 1175, 2, true, true, 'Kathryn Matthews', '2013-06-10', '2013-07-11', '1955-11-2', 1175, '992081'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1176, false, 'CSRS', 2, 1176, 219491.31, 1176, 2, true, true, 'Willie Cox', '2013-01-10', '2013-02-25', '1933-7-29', 1176, '981880'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1177, false, 'CSRS', 2, 1177, 244917.83, 1177, 1, false, true, 'Billy Franklin', '2012-12-21', '2013-11-12', '1974-5-20', 1177, '963705'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1178, false, 'CSRS', 2, 1178, 238484.41, 1178, 2, false, true, 'Ruth Harvey', '2013-10-04', '2013-10-16', '1950-7-18', 1178, '921545'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1179, false, 'CSRS', 2, 1179, 482678.69, 1179, 2, true, false, 'Cynthia Hanson', '2013-06-02', '2013-08-06', '1970-6-11', 1179, '987977'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1180, false, 'CSRS', 2, 1180, 347209.9, 1180, 2, false, false, 'Louis Jordan', '2013-07-29', '2013-11-16', '1972-4-14', 1180, '966243'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1181, false, 'CSRS', 2, 1181, 263329.29, 1181, 1, true, true, 'Ryan Henry', '2013-05-23', '2013-02-07', '1979-4-7', 1181, '904241'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1182, false, 'CSRS', 2, 1182, 446182.62, 1182, 1, true, true, 'Bobby Perry', '2013-07-13', '2013-05-29', '1930-2-9', 1182, '969308'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1183, false, 'CSRS', 2, 1183, 467264.15, 1183, 1, false, true, 'Thomas Kennedy', '2013-12-09', '2013-12-03', '1941-4-23', 1183, '997841'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1184, false, 'CSRS', 2, 1184, 264440.34, 1184, 2, false, false, 'Doris Sullivan', '2013-09-29', '2013-08-05', '1952-7-22', 1184, '944716'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1185, false, 'CSRS', 2, 1185, 311687.36, 1185, 1, true, true, 'Ann Palmer', '2013-04-23', '2013-01-30', '1960-5-13', 1185, '975329'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1186, false, 'CSRS', 2, 1186, 487567.96, 1186, 2, false, false, 'Sharon Wells', '2013-08-10', '2013-11-02', '1949-2-12', 1186, '950690'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1187, false, 'CSRS', 2, 1187, 260801.48, 1187, 1, false, false, 'Cynthia Hanson', '2013-02-09', '2013-03-14', '1946-12-18', 1187, '996630'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1188, false, 'CSRS', 2, 1188, 279538.3, 1188, 2, true, true, 'Brandon Matthews', '2012-12-15', '2013-06-17', '1978-7-6', 1188, '988095'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1189, false, 'CSRS', 2, 1189, 448870.75, 1189, 2, true, true, 'Virginia Rivera', '2013-06-13', '2013-09-28', '1967-9-27', 1189, '985647'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1190, false, 'CSRS', 2, 1190, 233557.75, 1190, 1, true, true, 'Jesse Black', '2013-01-30', '2013-07-18', '1965-1-16', 1190, '979858'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1191, false, 'CSRS', 2, 1191, 324572.14, 1191, 2, true, true, 'Pamela Snyder', '2013-07-07', '2013-04-29', '1922-9-30', 1191, '968623'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1192, false, 'CSRS', 2, 1192, 200615.29, 1192, 2, false, true, 'Amy Richards', '2013-05-25', '2013-07-14', '1948-11-15', 1192, '925290'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1193, false, 'CSRS', 2, 1193, 314850.27, 1193, 2, true, true, 'Judith Moreno', '2013-08-16', '2013-12-08', '1950-9-17', 1193, '913814'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1194, false, 'CSRS', 2, 1194, 428962.08, 1194, 1, true, true, 'Gerald Moore', '2013-04-22', '2013-05-15', '1935-7-7', 1194, '955581'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1195, false, 'CSRS', 2, 1195, 223483.98, 1195, 2, true, true, 'Pamela Ferguson', '2013-03-23', '2013-02-09', '1975-1-19', 1195, '984315'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1196, false, 'CSRS', 2, 1196, 409014.38, 1196, 2, false, false, 'Wayne Watkins', '2013-08-12', '2013-05-20', '1953-5-20', 1196, '959925'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1197, false, 'CSRS', 2, 1197, 357386.99, 1197, 1, true, true, 'Jessica Smith', '2013-10-22', '2013-10-22', '1973-11-21', 1197, '941671'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1198, false, 'CSRS', 2, 1198, 271097.38, 1198, 2, false, true, 'Anthony Peters', '2013-01-17', '2013-11-04', '1945-2-17', 1198, '965886'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1199, false, 'CSRS', 2, 1199, 456008.28, 1199, 2, false, true, 'Kevin Perez', '2013-01-06', '2013-10-05', '1947-1-26', 1199, '978367'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1200, false, 'CSRS', 2, 1200, 443587.8, 1200, 1, false, false, 'Andrew Cooper', '2013-08-19', '2013-12-03', '1950-9-17', 1200, '907121'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1201, false, 'CSRS', 2, 1201, 293248.42, 1201, 1, true, true, 'James Ross', '2013-05-25', '2013-06-21', '1933-1-28', 1201, '920868'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1202, false, 'CSRS', 2, 1202, 310998.34, 1202, 1, true, true, 'Charles Harrison', '2013-01-19', '2013-01-02', '1960-12-6', 1202, '972725'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1203, false, 'CSRS', 2, 1203, 216663.28, 1203, 1, true, true, 'Antonio Evans', '2013-07-05', '2013-11-02', '1927-3-20', 1203, '910022'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1204, false, 'CSRS', 2, 1204, 301524.93, 1204, 2, false, false, 'Patrick Bryant', '2013-11-01', '2013-07-28', '1973-12-18', 1204, '929616'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1205, false, 'CSRS', 2, 1205, 224430.46, 1205, 2, false, true, 'Emily Tucker', '2012-12-28', '2013-11-18', '1949-2-8', 1205, '929689'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1206, false, 'CSRS', 2, 1206, 423914.86, 1206, 1, false, false, 'Richard Parker', '2013-04-15', '2013-10-02', '1932-1-3', 1206, '925332'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1207, false, 'CSRS', 2, 1207, 352986.17, 1207, 2, false, false, 'Roger Cunningham', '2013-04-17', '2013-09-13', '1942-7-9', 1207, '926755'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1208, false, 'CSRS', 2, 1208, 377612.59, 1208, 1, false, true, 'Tina Sullivan', '2013-06-08', '2013-09-14', '1930-6-1', 1208, '924538'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1209, false, 'CSRS', 2, 1209, 233366.41, 1209, 1, true, false, 'Antonio Hudson', '2013-01-18', '2013-10-15', '1971-11-20', 1209, '912651'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1210, false, 'CSRS', 2, 1210, 380897.17, 1210, 1, false, false, 'Pamela Chavez', '2013-06-11', '2013-08-18', '1971-8-12', 1210, '991602'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1211, false, 'CSRS', 2, 1211, 218402.39, 1211, 2, true, false, 'Lori Smith', '2013-08-13', '2013-03-10', '1942-5-2', 1211, '976658'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1212, false, 'CSRS', 2, 1212, 290381.54, 1212, 1, false, true, 'Kevin Cunningham', '2013-06-01', '2013-06-21', '1949-1-20', 1212, '938895'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1213, false, 'CSRS', 2, 1213, 465777.16, 1213, 1, true, true, 'Joyce Mcdonald', '2013-04-06', '2012-12-22', '1968-9-20', 1213, '982138'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1214, false, 'CSRS', 2, 1214, 269336.82, 1214, 1, true, false, 'Ruth Garrett', '2013-01-08', '2013-02-14', '1961-6-21', 1214, '975814'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1215, false, 'CSRS', 2, 1215, 371605.4, 1215, 2, true, false, 'William Coleman', '2013-09-16', '2013-01-28', '1959-1-31', 1215, '919664'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1216, false, 'CSRS', 2, 1216, 285254.01, 1216, 1, true, true, 'Michelle Simmons', '2013-04-03', '2013-08-08', '1962-9-24', 1216, '976297'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1217, false, 'CSRS', 2, 1217, 244618.58, 1217, 2, true, true, 'Paula Fernandez', '2013-04-23', '2013-08-13', '1970-1-5', 1217, '912327'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1218, false, 'CSRS', 2, 1218, 424362.96, 1218, 2, false, true, 'Carl Palmer', '2013-09-11', '2012-12-28', '1965-5-1', 1218, '927490'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1219, false, 'CSRS', 2, 1219, 476029.81, 1219, 1, true, true, 'Lori Smith', '2013-10-22', '2013-02-22', '1937-1-27', 1219, '981203'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1220, false, 'CSRS', 2, 1220, 444407.05, 1220, 1, false, true, 'Marie Hamilton', '2013-09-25', '2013-01-09', '1969-7-7', 1220, '946115'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1221, false, 'CSRS', 2, 1221, 371255.46, 1221, 2, true, true, 'Lillian Cunningham', '2013-08-02', '2013-08-21', '1979-10-16', 1221, '957196'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1222, false, 'CSRS', 2, 1222, 343811.3, 1222, 2, true, false, 'Louis Jordan', '2013-04-28', '2013-03-18', '1959-2-23', 1222, '986227'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1223, false, 'CSRS', 2, 1223, 276929.55, 1223, 2, false, false, 'Cheryl Hunt', '2013-04-27', '2013-07-23', '1929-2-10', 1223, '974866'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1224, false, 'CSRS', 2, 1224, 408161.39, 1224, 2, true, true, 'Richard Parker', '2013-09-07', '2013-10-07', '1933-12-19', 1224, '927989'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1225, false, 'CSRS', 2, 1225, 294357.35, 1225, 2, true, false, 'Earl Ward', '2012-12-13', '2012-12-25', '1969-3-26', 1225, '972095'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1226, false, 'CSRS', 2, 1226, 411637.09, 1226, 1, true, true, 'Emily Watson', '2013-01-25', '2013-11-01', '1963-5-24', 1226, '941645'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1227, false, 'CSRS', 2, 1227, 411388.96, 1227, 2, false, true, 'Roy Wheeler', '2013-05-12', '2013-09-21', '1925-5-12', 1227, '998911'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1228, false, 'CSRS', 2, 1228, 288121.24, 1228, 2, true, false, 'Frances Cox', '2013-01-17', '2013-03-03', '1949-12-3', 1228, '984654'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1229, false, 'CSRS', 2, 1229, 465487.88, 1229, 1, true, true, 'Carlos Thompson', '2012-12-25', '2013-01-15', '1965-7-29', 1229, '954755'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1230, false, 'CSRS', 2, 1230, 384136.06, 1230, 1, false, false, 'Judy Greene', '2013-05-02', '2012-12-11', '1923-4-5', 1230, '917855'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1231, false, 'CSRS', 2, 1231, 256624.89, 1231, 1, true, true, 'Roger Hunt', '2013-09-27', '2013-09-10', '1957-6-1', 1231, '967571'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1232, false, 'CSRS', 2, 1232, 227707.55, 1232, 1, false, true, 'Nancy Perez', '2013-07-23', '2013-06-15', '1966-2-13', 1232, '974719'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1233, false, 'CSRS', 2, 1233, 218162.19, 1233, 2, false, false, 'Terry Fields', '2013-10-26', '2013-11-17', '1952-7-14', 1233, '967879'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1234, false, 'CSRS', 2, 1234, 272752.83, 1234, 1, true, true, 'Larry Little', '2013-02-21', '2013-11-26', '1972-2-29', 1234, '900403'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1235, false, 'CSRS', 2, 1235, 279585.28, 1235, 2, true, true, 'Richard Parker', '2013-05-02', '2013-10-04', '1966-12-20', 1235, '930059'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1236, false, 'CSRS', 2, 1236, 208948.31, 1236, 2, true, true, 'Donna Harper', '2013-02-07', '2012-12-27', '1973-5-14', 1236, '921611'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1237, false, 'CSRS', 2, 1237, 355683.51, 1237, 1, true, true, 'Earl Ward', '2013-05-03', '2012-12-17', '1980-4-24', 1237, '985619'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1238, false, 'CSRS', 2, 1238, 498653.85, 1238, 2, false, true, 'Jessica Smith', '2013-06-19', '2013-09-23', '1938-11-5', 1238, '995525'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1239, false, 'CSRS', 2, 1239, 332128.88, 1239, 1, true, true, 'Doris Sullivan', '2013-10-06', '2013-02-11', '1931-3-22', 1239, '961745'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1240, false, 'CSRS', 2, 1240, 464446.05, 1240, 2, false, true, 'Earl Cooper', '2013-07-23', '2013-09-10', '1970-4-7', 1240, '905609'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1241, false, 'CSRS', 2, 1241, 416851.65, 1241, 1, false, true, 'Dorothy Shaw', '2013-09-11', '2013-05-07', '1928-10-23', 1241, '932187'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1242, false, 'CSRS', 2, 1242, 324757.27, 1242, 1, true, true, 'Christine Torres', '2013-02-03', '2013-04-21', '1976-9-24', 1242, '945807'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1243, false, 'CSRS', 2, 1243, 373140.24, 1243, 1, true, false, 'Roger Cunningham', '2013-02-05', '2013-02-21', '1940-3-24', 1243, '945873'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1244, false, 'CSRS', 2, 1244, 431586.28, 1244, 2, true, false, 'Frances Cox', '2013-04-18', '2013-12-10', '1934-2-11', 1244, '950222'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1245, false, 'CSRS', 2, 1245, 492724.63, 1245, 1, false, false, 'Louis Hansen', '2013-08-27', '2013-01-06', '1934-1-12', 1245, '975619'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1246, false, 'CSRS', 2, 1246, 235269.08, 1246, 1, true, true, 'Gary Taylor', '2013-04-11', '2013-10-03', '1973-9-27', 1246, '968909'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1247, false, 'CSRS', 2, 1247, 200948.55, 1247, 2, true, true, 'Alice Morrison', '2013-07-24', '2013-10-10', '1945-10-7', 1247, '941239'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1248, false, 'CSRS', 2, 1248, 493614.26, 1248, 2, false, false, 'Anna Long', '2013-01-27', '2013-01-20', '1949-9-9', 1248, '943815'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1249, false, 'CSRS', 2, 1249, 399153.19, 1249, 1, false, false, 'Billy Cook', '2013-04-02', '2013-01-29', '1970-9-28', 1249, '924192'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1250, false, 'CSRS', 2, 1250, 235894.11, 1250, 2, false, false, 'Joan Ramos', '2013-07-18', '2013-12-04', '1921-8-24', 1250, '930647'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1251, false, 'CSRS', 2, 1251, 304254.83, 1251, 2, true, false, 'Phillip Hamilton', '2012-12-17', '2013-06-24', '1975-1-8', 1251, '921364'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1252, false, 'CSRS', 2, 1252, 478582.42, 1252, 2, false, false, 'Michelle Simmons', '2013-02-16', '2012-12-21', '1977-11-9', 1252, '937827'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1253, false, 'CSRS', 2, 1253, 258021.86, 1253, 1, true, false, 'Donna Payne', '2013-11-07', '2013-01-29', '1939-2-2', 1253, '923280'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1254, false, 'CSRS', 2, 1254, 296496.12, 1254, 1, true, true, 'Louise Williamson', '2013-05-05', '2013-06-21', '1958-10-10', 1254, '984404'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1255, false, 'CSRS', 2, 1255, 351369.21, 1255, 1, true, false, 'Craig Alexander', '2013-10-31', '2013-10-08', '1946-11-19', 1255, '952401'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1256, false, 'CSRS', 2, 1256, 300411.87, 1256, 1, false, true, 'Janice Chavez', '2013-03-03', '2013-02-25', '1960-2-6', 1256, '973481'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1257, false, 'CSRS', 2, 1257, 446843.05, 1257, 1, false, true, 'Nicholas Cruz', '2013-06-07', '2013-10-28', '1933-5-28', 1257, '901193'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1258, false, 'CSRS', 2, 1258, 231006.32, 1258, 2, true, true, 'Doris Burton', '2013-01-24', '2013-11-19', '1966-4-22', 1258, '925469'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1259, false, 'CSRS', 2, 1259, 222983.16, 1259, 2, false, false, 'Billy Morris', '2013-07-14', '2013-11-14', '1926-4-11', 1259, '957483'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1260, false, 'CSRS', 2, 1260, 261959.39, 1260, 2, false, true, 'Andrea Fox', '2013-06-28', '2013-01-08', '1923-3-2', 1260, '970929'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1261, false, 'CSRS', 2, 1261, 212264.65, 1261, 2, false, true, 'Billy Franklin', '2013-03-20', '2013-04-06', '1958-5-20', 1261, '940413'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1262, false, 'CSRS', 2, 1262, 238209.57, 1262, 2, true, false, 'Judy Jordan', '2013-03-31', '2013-02-16', '1971-8-6', 1262, '941707'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1263, false, 'CSRS', 2, 1263, 265110.41, 1263, 2, false, false, 'Pamela Martin', '2013-08-21', '2012-12-16', '1971-7-31', 1263, '924999'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1264, false, 'CSRS', 2, 1264, 388616.05, 1264, 1, false, true, 'Louise Williamson', '2013-07-26', '2013-05-20', '1978-10-2', 1264, '917412'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1265, false, 'CSRS', 2, 1265, 326144.14, 1265, 2, false, false, 'Arthur Greene', '2013-09-07', '2013-06-18', '1963-3-5', 1265, '913390'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1266, false, 'CSRS', 2, 1266, 296397.55, 1266, 1, false, false, 'Arthur Perez', '2013-11-30', '2013-02-24', '1945-5-3', 1266, '955015'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1267, false, 'CSRS', 2, 1267, 275626.99, 1267, 2, false, false, 'Paula Fernandez', '2013-08-24', '2013-09-13', '1979-6-3', 1267, '980181'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1268, false, 'CSRS', 2, 1268, 426088.61, 1268, 2, false, false, 'Anna Long', '2013-04-01', '2013-09-27', '1927-8-15', 1268, '959525'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1269, false, 'CSRS', 2, 1269, 446147.15, 1269, 2, true, true, 'Matthew Richards', '2013-04-24', '2013-11-23', '1953-6-22', 1269, '972796'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1270, false, 'CSRS', 2, 1270, 224622.52, 1270, 2, false, true, 'Gerald Peters', '2013-10-26', '2013-05-22', '1938-1-5', 1270, '966105'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1271, false, 'CSRS', 2, 1271, 321048.52, 1271, 2, true, true, 'Walter Robertson', '2013-05-26', '2013-03-01', '1962-10-17', 1271, '911098'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1272, false, 'CSRS', 2, 1272, 349625.36, 1272, 2, false, false, 'Roy Wheeler', '2013-08-13', '2013-06-10', '1952-12-9', 1272, '956507'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1273, false, 'CSRS', 2, 1273, 385761.7, 1273, 2, false, true, 'Donna Parker', '2013-02-28', '2013-04-13', '1937-4-15', 1273, '949022'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1274, false, 'CSRS', 2, 1274, 466306.37, 1274, 1, false, true, 'Lois Cox', '2013-09-02', '2013-05-18', '1980-11-13', 1274, '914839'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1275, false, 'CSRS', 2, 1275, 238780.78, 1275, 1, true, true, 'Pamela Ferguson', '2013-03-29', '2013-06-07', '1920-12-12', 1275, '943352'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1276, false, 'CSRS', 2, 1276, 356919.03, 1276, 2, false, false, 'Carlos Harper', '2013-04-21', '2013-05-21', '1973-1-22', 1276, '906209'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1277, false, 'CSRS', 2, 1277, 438803.56, 1277, 2, true, false, 'Matthew Richards', '2013-02-09', '2013-08-13', '1959-3-19', 1277, '963420'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1278, false, 'CSRS', 2, 1278, 414584.84, 1278, 2, true, false, 'Marie Hamilton', '2013-06-10', '2013-05-17', '1952-4-20', 1278, '991051'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1279, false, 'CSRS', 2, 1279, 356832.07, 1279, 2, true, true, 'Earl Ward', '2013-08-12', '2013-04-07', '1922-5-29', 1279, '952548'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1280, false, 'CSRS', 2, 1280, 240350.24, 1280, 2, true, false, 'Stephanie Ward', '2013-02-04', '2013-04-26', '1960-9-11', 1280, '960869'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1281, false, 'CSRS', 2, 1281, 229614.48, 1281, 2, true, false, 'Lawrence Morgan', '2013-08-05', '2013-04-09', '1967-7-8', 1281, '920787'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1282, false, 'CSRS', 2, 1282, 423523.49, 1282, 1, true, false, 'Laura Hamilton', '2013-07-16', '2013-08-03', '1953-11-4', 1282, '933124'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1283, false, 'CSRS', 2, 1283, 328177.32, 1283, 1, false, true, 'Karen Rodriguez', '2013-05-29', '2013-01-28', '1952-11-5', 1283, '938749'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1284, false, 'CSRS', 2, 1284, 414247.81, 1284, 1, true, false, 'Sarah Payne', '2013-06-22', '2013-05-29', '1956-5-24', 1284, '959120'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1285, false, 'CSRS', 2, 1285, 359088.9, 1285, 1, false, true, 'Steven Griffin', '2013-02-08', '2013-03-31', '1946-11-23', 1285, '945972'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1286, false, 'CSRS', 2, 1286, 240034.52, 1286, 2, false, false, 'Lois Sanchez', '2013-04-21', '2013-06-08', '1955-4-11', 1286, '921584'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1287, false, 'CSRS', 2, 1287, 485247.24, 1287, 1, false, true, 'Tina Sullivan', '2013-10-07', '2013-08-23', '1931-1-22', 1287, '900498'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1288, false, 'CSRS', 2, 1288, 311252.56, 1288, 1, false, true, 'Cheryl Boyd', '2013-03-18', '2013-04-07', '1927-12-29', 1288, '986382'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1289, false, 'CSRS', 2, 1289, 330516.49, 1289, 1, true, false, 'Keith Wood', '2013-01-23', '2013-05-27', '1941-2-11', 1289, '965652'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1290, false, 'CSRS', 2, 1290, 325034.26, 1290, 2, false, false, 'Brian Johnson', '2013-09-02', '2013-06-30', '1962-6-18', 1290, '939476'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1291, false, 'CSRS', 2, 1291, 244656.88, 1291, 1, false, true, 'Virginia Rivera', '2013-03-19', '2013-11-05', '1965-10-28', 1291, '923143'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1292, false, 'CSRS', 2, 1292, 494829.91, 1292, 2, false, false, 'Sandra Hill', '2013-06-11', '2013-05-14', '1925-5-11', 1292, '947930'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1293, false, 'CSRS', 2, 1293, 363516.99, 1293, 1, true, true, 'Deborah Rivera', '2013-05-10', '2012-12-25', '1939-8-26', 1293, '911679'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1294, false, 'CSRS', 2, 1294, 357328.83, 1294, 1, true, true, 'Rachel Harvey', '2013-05-13', '2013-06-07', '1975-5-18', 1294, '982133'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1295, false, 'CSRS', 2, 1295, 203553.95, 1295, 2, true, false, 'Ashley Fields', '2013-12-09', '2013-05-02', '1974-4-18', 1295, '963666'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1296, false, 'CSRS', 2, 1296, 226649.22, 1296, 2, false, false, 'Steven Chapman', '2013-06-18', '2013-07-22', '1946-1-16', 1296, '934458'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1297, false, 'CSRS', 2, 1297, 382861.22, 1297, 2, false, false, 'Richard Rodriguez', '2013-03-08', '2013-02-01', '1968-4-1', 1297, '942626'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1298, false, 'CSRS', 2, 1298, 246755.95, 1298, 1, true, false, 'Martin Watkins', '2013-03-15', '2013-10-25', '1940-1-29', 1298, '961378'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1299, false, 'CSRS', 2, 1299, 453722.43, 1299, 2, true, false, 'Denise Rogers', '2013-05-16', '2013-05-03', '1978-7-13', 1299, '986788'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1300, false, 'CSRS', 2, 1300, 411601.48, 1300, 2, false, true, 'Tina Moore', '2012-12-25', '2013-10-20', '1967-8-11', 1300, '921456'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1301, false, 'CSRS', 2, 1301, 285911.67, 1301, 1, false, false, 'Fred Berry', '2013-07-16', '2013-09-23', '1924-11-17', 1301, '953485'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1302, false, 'CSRS', 2, 1302, 206822.11, 1302, 1, true, false, 'Jean Stephens', '2013-10-13', '2013-05-23', '1937-9-8', 1302, '903728'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1303, false, 'CSRS', 2, 1303, 432156.36, 1303, 2, false, true, 'Carol Frazier', '2013-01-12', '2013-07-19', '1943-3-17', 1303, '989448'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1304, false, 'CSRS', 2, 1304, 233311.63, 1304, 2, true, true, 'Louis Jordan', '2013-06-04', '2013-06-03', '1962-8-26', 1304, '943266'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1305, false, 'CSRS', 2, 1305, 325705.56, 1305, 2, false, false, 'Clarence Diaz', '2013-06-18', '2012-12-19', '1939-12-11', 1305, '923273'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1306, false, 'CSRS', 2, 1306, 396463.41, 1306, 1, true, true, 'Anthony Vasquez', '2013-10-25', '2013-10-27', '1966-12-29', 1306, '922552'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1307, false, 'CSRS', 2, 1307, 433838.89, 1307, 1, true, true, 'Matthew Richards', '2013-02-11', '2012-12-29', '1925-4-11', 1307, '907062'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1308, false, 'CSRS', 2, 1308, 330579.91, 1308, 2, true, true, 'Nancy Walker', '2013-11-24', '2013-05-07', '1950-2-8', 1308, '943055'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1309, false, 'CSRS', 2, 1309, 462769.91, 1309, 1, true, true, 'Lois Cox', '2013-08-15', '2013-04-01', '1925-4-18', 1309, '932051'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1310, false, 'CSRS', 2, 1310, 294238.83, 1310, 2, false, false, 'Kenneth Webb', '2013-06-18', '2013-07-30', '1951-4-20', 1310, '935258'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1311, false, 'CSRS', 2, 1311, 478622.7, 1311, 1, true, false, 'Peter Flores', '2013-03-17', '2013-02-21', '1960-3-8', 1311, '901520'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1312, false, 'CSRS', 2, 1312, 333862.34, 1312, 1, false, true, 'Cheryl Medina', '2013-05-26', '2013-09-18', '1956-11-4', 1312, '974126'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1313, false, 'CSRS', 2, 1313, 492312.05, 1313, 2, true, false, 'Irene Green', '2013-05-31', '2013-08-02', '1978-9-10', 1313, '975036'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1314, false, 'CSRS', 2, 1314, 402910.25, 1314, 2, false, true, 'Scott Romero', '2013-05-13', '2013-04-27', '1944-12-27', 1314, '987475'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1315, false, 'CSRS', 2, 1315, 367544.52, 1315, 2, true, true, 'Phyllis Diaz', '2013-10-04', '2013-02-12', '1958-12-9', 1315, '967100'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1316, false, 'CSRS', 2, 1316, 372712.47, 1316, 1, false, false, 'Richard Parker', '2013-11-23', '2013-06-18', '1976-4-23', 1316, '967375'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1317, false, 'CSRS', 2, 1317, 471878.82, 1317, 2, true, true, 'Pamela Martin', '2013-10-09', '2013-04-09', '1951-1-3', 1317, '933762'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1318, false, 'CSRS', 2, 1318, 315062.01, 1318, 1, true, true, 'Steven Griffin', '2013-04-04', '2013-06-04', '1974-1-31', 1318, '987910'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1319, false, 'CSRS', 2, 1319, 338266.95, 1319, 2, false, false, 'Matthew Richards', '2013-12-10', '2013-04-05', '1932-3-16', 1319, '961134'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1320, false, 'CSRS', 2, 1320, 350005.48, 1320, 1, false, true, 'Annie Powell', '2013-05-09', '2013-11-28', '1943-2-24', 1320, '999472'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1321, false, 'CSRS', 2, 1321, 248713.18, 1321, 1, true, false, 'Frances Cox', '2013-09-18', '2013-03-01', '1929-11-5', 1321, '993850'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1322, false, 'CSRS', 2, 1322, 233677.4, 1322, 2, true, false, 'Joan Ramos', '2013-01-14', '2013-11-24', '1936-3-1', 1322, '931477'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1323, false, 'CSRS', 2, 1323, 399788.73, 1323, 2, true, true, 'Harold Payne', '2013-02-25', '2013-11-28', '1922-11-27', 1323, '907052'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1324, false, 'CSRS', 2, 1324, 289273.47, 1324, 2, true, true, 'Jack Dunn', '2013-01-24', '2013-11-07', '1936-9-19', 1324, '907705'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1325, false, 'CSRS', 2, 1325, 312904.41, 1325, 2, false, false, 'Doris Burton', '2013-04-01', '2013-10-31', '1971-1-7', 1325, '906550'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1326, false, 'CSRS', 2, 1326, 431906.08, 1326, 2, true, false, 'Harry Olson', '2013-09-12', '2013-07-29', '1926-8-24', 1326, '954087'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1327, false, 'CSRS', 2, 1327, 292927.02, 1327, 1, true, false, 'Mildred Hall', '2013-09-19', '2013-07-01', '1931-12-19', 1327, '926847'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1328, false, 'CSRS', 2, 1328, 450282.41, 1328, 2, false, false, 'Alan Phillips', '2013-08-28', '2013-07-06', '1978-1-16', 1328, '923830'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1329, false, 'CSRS', 2, 1329, 323836.38, 1329, 2, true, false, 'Annie Kim', '2013-11-02', '2013-09-16', '1977-9-26', 1329, '947697'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1330, false, 'CSRS', 2, 1330, 425263.78, 1330, 1, false, false, 'Phyllis Day', '2013-11-16', '2013-12-08', '1936-10-24', 1330, '976066'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1331, false, 'CSRS', 2, 1331, 332176.48, 1331, 2, true, true, 'Stephanie Perry', '2013-11-09', '2013-10-17', '1946-1-12', 1331, '979965'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1332, false, 'CSRS', 2, 1332, 353211.35, 1332, 2, true, false, 'Kenneth White', '2013-05-01', '2013-02-05', '1932-6-29', 1332, '906834'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1333, false, 'CSRS', 2, 1333, 408060.98, 1333, 1, true, true, 'Dorothy Shaw', '2013-07-16', '2013-07-13', '1944-4-21', 1333, '981542'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1334, false, 'CSRS', 2, 1334, 257150.49, 1334, 2, true, false, 'Christina Scott', '2013-05-19', '2013-07-11', '1924-12-10', 1334, '977145'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1335, false, 'CSRS', 2, 1335, 390971.54, 1335, 1, false, true, 'Thomas Dean', '2013-02-03', '2013-02-24', '1930-11-13', 1335, '991366'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1336, false, 'CSRS', 2, 1336, 349056.49, 1336, 2, true, false, 'Jean Fernandez', '2013-07-19', '2013-10-11', '1925-4-6', 1336, '938317'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1337, false, 'CSRS', 2, 1337, 316519.89, 1337, 1, true, true, 'Betty Hunter', '2013-01-19', '2013-09-13', '1958-6-30', 1337, '913352'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1338, false, 'CSRS', 2, 1338, 269573.66, 1338, 1, true, true, 'Rebecca Owens', '2013-03-30', '2013-02-13', '1927-4-22', 1338, '967521'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1339, false, 'CSRS', 2, 1339, 228592.8, 1339, 1, true, true, 'James Chavez', '2013-11-18', '2013-01-13', '1933-7-1', 1339, '917548'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1340, false, 'CSRS', 2, 1340, 210429.41, 1340, 1, true, false, 'Matthew Roberts', '2013-10-07', '2013-01-26', '1925-11-22', 1340, '955166'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1341, false, 'CSRS', 2, 1341, 485520.08, 1341, 2, false, true, 'Jesse Black', '2013-08-10', '2013-11-03', '1975-3-16', 1341, '959396'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1342, false, 'CSRS', 2, 1342, 469306.66, 1342, 2, true, true, 'Amanda Day', '2013-07-01', '2013-09-07', '1936-9-16', 1342, '928317'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1343, false, 'CSRS', 2, 1343, 273765.07, 1343, 2, true, false, 'Denise Freeman', '2012-12-19', '2013-07-21', '1951-5-21', 1343, '972652'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1344, false, 'CSRS', 2, 1344, 450629.77, 1344, 1, false, true, 'Ernest Castillo', '2013-01-06', '2013-05-26', '1934-8-3', 1344, '912336'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1345, false, 'CSRS', 2, 1345, 426330.66, 1345, 1, true, false, 'Maria Nichols', '2013-02-06', '2013-07-12', '1930-11-20', 1345, '962338'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1346, false, 'CSRS', 2, 1346, 460084.79, 1346, 1, true, false, 'James Chavez', '2013-07-08', '2013-06-29', '1975-8-28', 1346, '926474'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1347, false, 'CSRS', 2, 1347, 486367.4, 1347, 1, true, false, 'Kathleen Gilbert', '2013-05-27', '2013-09-21', '1937-7-10', 1347, '926164'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1348, false, 'CSRS', 2, 1348, 251715.92, 1348, 2, true, true, 'Brandon Matthews', '2013-05-13', '2013-08-15', '1924-8-7', 1348, '920418'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1349, false, 'CSRS', 2, 1349, 344723.04, 1349, 2, false, true, 'Edward Kelly', '2013-03-26', '2013-07-10', '1929-11-23', 1349, '920052'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1350, false, 'CSRS', 2, 1350, 310625.66, 1350, 2, false, false, 'Donald King', '2013-11-25', '2013-01-14', '1937-8-31', 1350, '972586'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1351, false, 'CSRS', 2, 1351, 249476.7, 1351, 2, false, true, 'Dorothy Lawson', '2013-10-27', '2013-11-09', '1958-7-1', 1351, '944315'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1352, false, 'CSRS', 2, 1352, 350285.21, 1352, 1, false, true, 'Jonathan Carter', '2013-12-04', '2013-06-26', '1943-3-19', 1352, '929011'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1353, false, 'CSRS', 2, 1353, 286875.16, 1353, 2, true, false, 'Laura Hamilton', '2013-04-08', '2013-02-06', '1937-11-26', 1353, '933789'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1354, false, 'CSRS', 2, 1354, 436390.93, 1354, 1, false, true, 'John Holmes', '2012-12-11', '2013-01-07', '1941-10-21', 1354, '997954'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1355, false, 'CSRS', 2, 1355, 298403.64, 1355, 1, true, true, 'Keith Lewis', '2013-04-15', '2013-01-22', '1971-12-21', 1355, '941201'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1356, false, 'CSRS', 2, 1356, 254457.76, 1356, 2, false, true, 'Phyllis Day', '2013-05-29', '2013-08-20', '1936-10-11', 1356, '912440'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1357, false, 'CSRS', 2, 1357, 383917.01, 1357, 1, true, false, 'Peter Daniels', '2013-04-18', '2013-03-05', '1935-8-23', 1357, '995044'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1358, false, 'CSRS', 2, 1358, 247815.9, 1358, 2, false, false, 'Howard Griffin', '2013-06-27', '2013-05-03', '1926-2-9', 1358, '924261'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1359, false, 'CSRS', 2, 1359, 311975.42, 1359, 2, false, false, 'Kathleen Mills', '2013-07-16', '2013-01-08', '1968-6-29', 1359, '971189'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1360, false, 'CSRS', 2, 1360, 304033.88, 1360, 2, true, false, 'Fred Berry', '2013-08-28', '2013-07-20', '1939-2-7', 1360, '978242'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1361, false, 'CSRS', 2, 1361, 248408.12, 1361, 1, false, false, 'Karen Wheeler', '2013-07-23', '2013-08-09', '1933-2-18', 1361, '932922'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1362, false, 'CSRS', 2, 1362, 455218.82, 1362, 2, false, true, 'Nicholas Graham', '2013-05-08', '2013-05-10', '1923-5-17', 1362, '943565'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1363, false, 'CSRS', 2, 1363, 378633.08, 1363, 2, false, true, 'Kenneth Fields', '2013-09-19', '2013-06-02', '1946-2-11', 1363, '992634'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1364, false, 'CSRS', 2, 1364, 472867.75, 1364, 1, true, false, 'Elizabeth Johnson', '2013-09-21', '2013-01-01', '1963-4-29', 1364, '946715'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1365, false, 'CSRS', 2, 1365, 394611.51, 1365, 1, false, false, 'George Howard', '2013-09-09', '2013-03-23', '1958-6-28', 1365, '942992'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1366, false, 'CSRS', 2, 1366, 360971.08, 1366, 1, true, true, 'Karen Bailey', '2013-11-20', '2013-04-24', '1941-6-13', 1366, '961268'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1367, false, 'CSRS', 2, 1367, 458899.9, 1367, 1, false, true, 'Kenneth Fields', '2013-11-30', '2013-07-28', '1938-7-8', 1367, '970746'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1368, false, 'CSRS', 2, 1368, 485485.38, 1368, 2, false, true, 'Timothy Richards', '2013-07-14', '2013-05-26', '1928-10-5', 1368, '947190'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1369, false, 'CSRS', 2, 1369, 235372.13, 1369, 1, false, true, 'John Mills', '2013-05-14', '2013-02-13', '1921-12-25', 1369, '920383'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1370, false, 'CSRS', 2, 1370, 305306.82, 1370, 2, true, false, 'Roy Reid', '2013-04-16', '2013-10-24', '1974-4-17', 1370, '984178'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1371, false, 'CSRS', 2, 1371, 455310.68, 1371, 1, false, false, 'Denise Young', '2013-10-19', '2013-02-19', '1945-10-23', 1371, '992145'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1372, false, 'CSRS', 2, 1372, 223782.49, 1372, 1, true, true, 'Joan Ramos', '2013-08-14', '2013-07-09', '1980-3-7', 1372, '987026'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1373, false, 'CSRS', 2, 1373, 494187.24, 1373, 2, true, false, 'Billy Franklin', '2013-04-25', '2013-04-27', '1974-7-2', 1373, '975637'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1374, false, 'CSRS', 2, 1374, 266597.87, 1374, 2, true, false, 'Ruth Garrett', '2012-12-28', '2013-01-16', '1966-5-17', 1374, '901975'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1375, false, 'CSRS', 2, 1375, 280775.59, 1375, 2, false, false, 'Andrea Weaver', '2013-04-11', '2013-03-06', '1948-5-15', 1375, '959460'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1376, false, 'CSRS', 2, 1376, 284606.05, 1376, 1, false, true, 'Billy Morris', '2013-02-05', '2013-06-28', '1971-4-22', 1376, '979135'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1377, false, 'CSRS', 2, 1377, 284983.13, 1377, 2, false, true, 'Barbara Alexander', '2012-12-26', '2013-08-27', '1944-10-24', 1377, '930173'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1378, false, 'CSRS', 2, 1378, 203090.27, 1378, 1, false, true, 'Andrea Taylor', '2013-09-24', '2013-04-12', '1955-7-21', 1378, '934021'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1379, false, 'CSRS', 2, 1379, 238943.78, 1379, 1, true, false, 'Phillip Richards', '2013-07-06', '2013-02-28', '1935-1-28', 1379, '964384'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1380, false, 'CSRS', 2, 1380, 408916.41, 1380, 2, false, true, 'Steve Crawford', '2013-08-05', '2013-10-31', '1933-5-11', 1380, '945370'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1381, false, 'CSRS', 2, 1381, 495191.25, 1381, 2, false, true, 'Doris Burton', '2013-02-11', '2012-12-28', '1976-5-30', 1381, '984801'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1382, false, 'CSRS', 2, 1382, 424141.74, 1382, 1, true, false, 'Christine Pierce', '2013-09-27', '2013-07-14', '1967-1-19', 1382, '931743'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1383, false, 'CSRS', 2, 1383, 314830.42, 1383, 1, true, true, 'Janice Rogers', '2013-05-01', '2013-12-08', '1957-7-3', 1383, '987584'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1384, false, 'CSRS', 2, 1384, 271614.05, 1384, 1, true, true, 'Beverly Little', '2013-01-24', '2013-12-09', '1980-4-14', 1384, '986611'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1385, false, 'CSRS', 2, 1385, 318557.37, 1385, 1, true, true, 'Brenda Reyes', '2013-03-28', '2013-03-10', '1932-3-22', 1385, '953826'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1386, false, 'CSRS', 2, 1386, 282407.57, 1386, 1, false, false, 'Roy Wheeler', '2013-11-20', '2013-02-26', '1966-12-5', 1386, '947657'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1387, false, 'CSRS', 2, 1387, 321943.58, 1387, 2, true, false, 'Denise Meyer', '2013-12-02', '2013-11-06', '1964-8-24', 1387, '983891'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1388, false, 'CSRS', 2, 1388, 437302.31, 1388, 1, false, false, 'Clarence Butler', '2012-12-28', '2013-09-14', '1959-1-10', 1388, '915734'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1389, false, 'CSRS', 2, 1389, 362215.29, 1389, 2, false, false, 'Betty Hunter', '2013-05-15', '2013-10-29', '1932-7-11', 1389, '928245'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1390, false, 'CSRS', 2, 1390, 325493.51, 1390, 1, true, false, 'Nancy Watkins', '2013-09-14', '2013-02-03', '1943-4-21', 1390, '951516'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1391, false, 'CSRS', 2, 1391, 413602.46, 1391, 1, false, false, 'Virginia Owens', '2013-04-10', '2013-09-05', '1969-8-1', 1391, '957628'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1392, false, 'CSRS', 2, 1392, 428689.25, 1392, 1, true, true, 'Dennis Morales', '2013-08-28', '2013-07-31', '1968-8-14', 1392, '985010'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1393, false, 'CSRS', 2, 1393, 239575.57, 1393, 1, false, true, 'Edward Kelly', '2013-11-26', '2013-07-20', '1922-2-22', 1393, '957338'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1394, false, 'CSRS', 2, 1394, 208035.75, 1394, 2, false, false, 'Lori Chavez', '2013-02-15', '2013-09-20', '1970-3-7', 1394, '900296'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1395, false, 'CSRS', 2, 1395, 300263.6, 1395, 2, false, true, 'Christopher Scott', '2013-06-13', '2013-10-30', '1931-11-22', 1395, '995508'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1396, false, 'CSRS', 2, 1396, 460973.85, 1396, 2, false, true, 'Philip Washington', '2013-08-17', '2013-11-19', '1929-6-9', 1396, '949030'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1397, false, 'CSRS', 2, 1397, 291050.02, 1397, 1, false, false, 'Harry Barnes', '2013-02-17', '2013-07-02', '1969-11-29', 1397, '996140'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1398, false, 'CSRS', 2, 1398, 211805.83, 1398, 2, false, false, 'Roy Wheeler', '2013-11-16', '2013-09-22', '1977-12-22', 1398, '922414'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1399, false, 'CSRS', 2, 1399, 426368.38, 1399, 2, true, true, 'Steve Johnston', '2013-05-02', '2013-03-30', '1952-6-30', 1399, '908694'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1400, false, 'CSRS', 2, 1400, 390551.92, 1400, 1, true, true, 'Jessica Alvarez', '2013-04-26', '2013-11-19', '1924-9-30', 1400, '982571'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1401, false, 'CSRS', 2, 1401, 414986.57, 1401, 2, false, true, 'Pamela Snyder', '2013-06-26', '2013-06-20', '1965-12-8', 1401, '905298'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1402, false, 'CSRS', 2, 1402, 239973.61, 1402, 1, false, false, 'Kathleen Gonzalez', '2013-06-23', '2013-01-24', '1961-3-31', 1402, '987931'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1403, false, 'CSRS', 2, 1403, 422900.52, 1403, 1, false, true, 'Arthur Crawford', '2013-10-10', '2013-09-29', '1954-7-30', 1403, '923059'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1404, false, 'CSRS', 2, 1404, 439359.75, 1404, 1, false, false, 'Barbara Anderson', '2013-04-20', '2013-08-26', '1978-2-25', 1404, '932061'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1405, false, 'CSRS', 2, 1405, 292713.34, 1405, 2, false, false, 'Roy Hunt', '2012-12-19', '2013-02-18', '1977-6-21', 1405, '918446'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1406, false, 'CSRS', 2, 1406, 471431.81, 1406, 1, false, true, 'Denise Young', '2013-11-09', '2013-06-15', '1959-2-19', 1406, '957354'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1407, false, 'CSRS', 2, 1407, 419499.32, 1407, 1, true, false, 'Virginia Owens', '2013-08-20', '2013-04-18', '1951-11-16', 1407, '915620'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1408, false, 'CSRS', 2, 1408, 372917.71, 1408, 1, true, false, 'Ernest Castillo', '2013-11-18', '2013-01-13', '1965-6-20', 1408, '964874'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1409, false, 'CSRS', 2, 1409, 431620.44, 1409, 2, true, false, 'Louise Mendoza', '2013-03-28', '2013-04-29', '1931-1-2', 1409, '900333'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1410, false, 'CSRS', 2, 1410, 382925.96, 1410, 1, false, false, 'Michelle Simmons', '2013-07-13', '2013-02-06', '1947-1-12', 1410, '902987'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1411, false, 'CSRS', 2, 1411, 211842.48, 1411, 1, true, true, 'Amy Porter', '2012-12-13', '2013-12-04', '1930-12-19', 1411, '943720'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1412, false, 'CSRS', 2, 1412, 349316.09, 1412, 2, true, false, 'Louis Hansen', '2013-12-10', '2013-06-19', '1973-12-16', 1412, '959431'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1413, false, 'CSRS', 2, 1413, 202191.02, 1413, 1, true, false, 'Jacqueline Perry', '2013-09-14', '2013-04-19', '1937-10-14', 1413, '979837'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1414, false, 'CSRS', 2, 1414, 306264.18, 1414, 1, false, true, 'Denise Meyer', '2013-06-12', '2013-07-17', '1941-5-26', 1414, '960982'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1415, false, 'CSRS', 2, 1415, 229186.65, 1415, 2, false, false, 'Juan Evans', '2013-04-05', '2013-08-13', '1973-9-17', 1415, '930301'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1416, false, 'CSRS', 2, 1416, 255250.02, 1416, 2, true, true, 'Philip Washington', '2013-11-10', '2013-04-07', '1926-9-4', 1416, '908408'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1417, false, 'CSRS', 2, 1417, 378041.94, 1417, 2, false, false, 'Billy Franklin', '2013-01-20', '2013-09-30', '1955-3-19', 1417, '945303'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1418, false, 'CSRS', 2, 1418, 337873.7, 1418, 2, true, true, 'Harold Payne', '2013-11-10', '2013-04-14', '1946-1-23', 1418, '951833'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1419, false, 'CSRS', 2, 1419, 267785.29, 1419, 1, false, true, 'Lillian Mitchell', '2013-11-18', '2013-01-27', '1950-6-4', 1419, '930250'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1420, false, 'CSRS', 2, 1420, 206979.16, 1420, 2, true, false, 'James Day', '2013-10-19', '2013-07-14', '1978-12-26', 1420, '922567'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1421, false, 'CSRS', 2, 1421, 220346.65, 1421, 2, false, false, 'Craig Spencer', '2012-12-13', '2013-01-08', '1980-8-26', 1421, '953582'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1422, false, 'CSRS', 2, 1422, 292436.41, 1422, 1, true, false, 'Matthew Richards', '2013-04-18', '2013-06-08', '1953-6-1', 1422, '960061'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1423, false, 'CSRS', 2, 1423, 316934.37, 1423, 1, true, false, 'Phillip Richards', '2013-10-12', '2013-05-22', '1972-4-22', 1423, '922462'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1424, false, 'CSRS', 2, 1424, 455274.6, 1424, 1, false, false, 'Phillip Hamilton', '2013-10-09', '2013-04-03', '1931-1-5', 1424, '948154'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1425, false, 'CSRS', 2, 1425, 435553.07, 1425, 1, false, false, 'Jane Collins', '2013-11-25', '2013-10-07', '1975-2-22', 1425, '998969'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1426, false, 'CSRS', 2, 1426, 264019.7, 1426, 1, true, false, 'Gloria Garcia', '2013-06-09', '2013-04-23', '1938-6-4', 1426, '945785'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1427, false, 'CSRS', 2, 1427, 213615.11, 1427, 1, false, true, 'Kenneth Fields', '2013-09-30', '2013-10-13', '1970-3-16', 1427, '990787'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1428, false, 'CSRS', 2, 1428, 361160.71, 1428, 1, true, true, 'Jesse Richardson', '2013-11-27', '2013-06-18', '1954-3-11', 1428, '913304'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1429, false, 'CSRS', 2, 1429, 422061.63, 1429, 2, false, true, 'Steve Hill', '2013-09-02', '2013-10-04', '1947-8-24', 1429, '933760'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1430, false, 'CSRS', 2, 1430, 423727.14, 1430, 2, false, true, 'Dennis Morales', '2013-05-08', '2013-03-11', '1945-11-30', 1430, '981915'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1431, false, 'CSRS', 2, 1431, 448085.5, 1431, 2, false, true, 'Julie Welch', '2013-10-06', '2013-08-31', '1927-12-18', 1431, '984189'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1432, false, 'CSRS', 2, 1432, 293663.21, 1432, 2, true, true, 'Alice Cook', '2013-01-23', '2013-04-24', '1946-9-26', 1432, '978975'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1433, false, 'CSRS', 2, 1433, 326217.34, 1433, 1, false, false, 'Robin Ward', '2013-06-24', '2013-02-23', '1958-7-7', 1433, '961227'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1434, false, 'CSRS', 2, 1434, 314449.27, 1434, 1, true, false, 'Stephanie Perry', '2013-06-03', '2013-04-25', '1979-5-30', 1434, '956508'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1435, false, 'CSRS', 2, 1435, 224728.45, 1435, 2, true, false, 'Ashley Fields', '2013-02-01', '2013-11-23', '1937-11-15', 1435, '946959'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1436, false, 'CSRS', 2, 1436, 327806.09, 1436, 1, true, false, 'Roy Hunt', '2013-08-19', '2013-01-05', '1959-10-21', 1436, '999821'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1437, false, 'CSRS', 2, 1437, 490276.27, 1437, 2, true, false, 'Lori Smith', '2013-01-07', '2013-03-03', '1964-4-2', 1437, '949583'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1438, false, 'CSRS', 2, 1438, 222552.08, 1438, 2, true, true, 'Bruce Walker', '2013-12-10', '2012-12-30', '1929-9-14', 1438, '951252'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1439, false, 'CSRS', 2, 1439, 216937.09, 1439, 2, false, false, 'Louise Mendoza', '2013-02-08', '2012-12-19', '1934-1-10', 1439, '971807'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1440, false, 'CSRS', 2, 1440, 324753, 1440, 2, true, false, 'Bruce Weaver', '2013-11-22', '2013-10-29', '1934-4-2', 1440, '964841'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1441, false, 'CSRS', 2, 1441, 297026.48, 1441, 2, true, true, 'Diane Thompson', '2013-10-01', '2013-05-16', '1929-5-11', 1441, '967365'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1442, false, 'CSRS', 2, 1442, 331463.78, 1442, 1, true, false, 'Julie Butler', '2013-11-12', '2013-03-15', '1937-12-15', 1442, '913517'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1443, false, 'CSRS', 2, 1443, 268687.02, 1443, 2, true, false, 'Harry Olson', '2013-07-15', '2013-11-22', '1961-12-2', 1443, '978550'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1444, false, 'CSRS', 2, 1444, 428296.33, 1444, 2, true, true, 'Fred Berry', '2013-03-04', '2012-12-15', '1926-9-16', 1444, '962514'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1445, false, 'CSRS', 2, 1445, 271620.7, 1445, 2, false, true, 'Amanda Chavez', '2013-01-10', '2013-04-06', '1956-11-2', 1445, '914086'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1446, false, 'CSRS', 2, 1446, 287915.85, 1446, 1, true, false, 'Marie Rose', '2013-10-12', '2013-09-05', '1926-8-3', 1446, '942394'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1447, false, 'CSRS', 2, 1447, 255428.87, 1447, 1, true, true, 'Marie Hamilton', '2013-05-15', '2013-07-13', '1948-2-13', 1447, '946437'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1448, false, 'CSRS', 2, 1448, 256327.12, 1448, 1, false, false, 'Cheryl Medina', '2013-03-06', '2013-05-02', '1943-1-18', 1448, '903436'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1449, false, 'CSRS', 2, 1449, 204878.06, 1449, 2, true, true, 'Bobby Sims', '2013-06-01', '2013-09-07', '1945-12-3', 1449, '958656'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1450, false, 'CSRS', 2, 1450, 399822.33, 1450, 2, false, true, 'Christine Pierce', '2013-02-10', '2013-02-10', '1948-3-11', 1450, '983228'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1451, false, 'CSRS', 2, 1451, 392800.14, 1451, 2, false, false, 'Wanda Gardner', '2013-11-06', '2013-08-09', '1977-2-21', 1451, '969034'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1452, false, 'CSRS', 2, 1452, 385567.31, 1452, 1, false, false, 'Scott Reyes', '2013-10-01', '2013-07-29', '1961-10-12', 1452, '926988'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1453, false, 'CSRS', 2, 1453, 249642.61, 1453, 2, false, true, 'Phillip Matthews', '2013-10-20', '2013-11-13', '1960-1-20', 1453, '947778'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1454, false, 'CSRS', 2, 1454, 293936.42, 1454, 2, true, true, 'John Holmes', '2013-04-22', '2013-05-13', '1965-8-8', 1454, '922210'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1455, false, 'CSRS', 2, 1455, 429963.85, 1455, 2, false, false, 'Bobby Sims', '2013-10-30', '2013-11-25', '1926-10-31', 1455, '999036'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1456, false, 'CSRS', 2, 1456, 203557.12, 1456, 1, false, true, 'Catherine Hamilton', '2013-05-11', '2013-08-08', '1942-4-22', 1456, '904752'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1457, false, 'CSRS', 2, 1457, 233924.7, 1457, 1, false, false, 'Jeffrey Robinson', '2013-02-07', '2013-09-30', '1967-10-19', 1457, '988094'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1458, false, 'CSRS', 2, 1458, 239068.14, 1458, 2, true, true, 'Doris Sullivan', '2013-11-01', '2013-09-22', '1979-5-24', 1458, '976538'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1459, false, 'CSRS', 2, 1459, 246834.9, 1459, 2, true, false, 'Amanda Chavez', '2013-02-02', '2012-12-29', '1979-5-10', 1459, '986721'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1460, false, 'CSRS', 2, 1460, 349840.45, 1460, 2, false, true, 'Nicholas Cruz', '2012-12-26', '2013-01-29', '1945-1-24', 1460, '994289'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1461, false, 'CSRS', 2, 1461, 439886.94, 1461, 1, true, true, 'Kevin Perez', '2013-11-17', '2013-11-15', '1966-12-29', 1461, '994114'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1462, false, 'CSRS', 2, 1462, 425917.13, 1462, 2, true, false, 'Arthur Greene', '2013-07-17', '2013-07-09', '1976-2-23', 1462, '943033'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1463, false, 'CSRS', 2, 1463, 247949.69, 1463, 1, true, false, 'Eugene Hudson', '2013-03-01', '2013-12-07', '1936-4-7', 1463, '999696'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1464, false, 'CSRS', 2, 1464, 290508.56, 1464, 2, true, false, 'Bobby Holmes', '2013-02-25', '2013-12-03', '1952-5-8', 1464, '995334'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1465, false, 'CSRS', 2, 1465, 443434.12, 1465, 2, false, true, 'Catherine Wright', '2013-02-01', '2013-06-21', '1929-1-28', 1465, '952228'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1466, false, 'CSRS', 2, 1466, 473038.27, 1466, 2, true, true, 'Steve Ford', '2013-07-06', '2013-10-14', '1975-7-11', 1466, '997053'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1467, false, 'CSRS', 2, 1467, 420458.26, 1467, 1, true, true, 'Tammy Ross', '2013-02-01', '2012-12-29', '1958-7-16', 1467, '944742'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1468, false, 'CSRS', 2, 1468, 365123.35, 1468, 2, true, true, 'Brenda Mendoza', '2013-01-19', '2013-01-15', '1965-1-17', 1468, '946842'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1469, false, 'CSRS', 2, 1469, 456949.02, 1469, 1, false, false, 'Kevin Cunningham', '2013-07-13', '2013-01-15', '1963-1-23', 1469, '904524'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1470, false, 'CSRS', 2, 1470, 459016.61, 1470, 2, true, false, 'Carol Cunningham', '2012-12-29', '2012-12-22', '1955-11-7', 1470, '997541'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1471, false, 'CSRS', 2, 1471, 414823.41, 1471, 1, true, false, 'Kelly Rose', '2013-04-04', '2013-09-21', '1938-6-27', 1471, '941447'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1472, false, 'CSRS', 2, 1472, 220873.09, 1472, 1, false, false, 'Johnny Grant', '2013-09-24', '2013-07-12', '1958-2-23', 1472, '981152'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1473, false, 'CSRS', 2, 1473, 347254.63, 1473, 2, true, false, 'Annie Powell', '2013-08-24', '2013-10-18', '1956-6-18', 1473, '947467'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1474, false, 'CSRS', 2, 1474, 461452.45, 1474, 2, false, true, 'Virginia Owens', '2013-02-17', '2013-09-11', '1943-10-20', 1474, '955653'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1475, false, 'CSRS', 2, 1475, 453023.51, 1475, 2, true, true, 'Janet Kelley', '2013-08-12', '2013-03-04', '1921-11-5', 1475, '967017'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1476, false, 'CSRS', 2, 1476, 292933.27, 1476, 2, false, false, 'Jesse Black', '2013-03-10', '2013-11-11', '1934-3-7', 1476, '940064'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1477, false, 'CSRS', 2, 1477, 400540.82, 1477, 2, false, false, 'Dennis Morales', '2012-12-14', '2013-01-18', '1948-8-15', 1477, '995271'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1478, false, 'CSRS', 2, 1478, 235132.36, 1478, 2, false, false, 'Nancy Walker', '2013-05-05', '2013-07-10', '1963-7-1', 1478, '928021'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1479, false, 'CSRS', 2, 1479, 209213.42, 1479, 2, false, false, 'Roy Cooper', '2013-09-02', '2013-09-06', '1967-5-17', 1479, '917327'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1480, false, 'CSRS', 2, 1480, 392643.2, 1480, 1, false, true, 'Harry Olson', '2013-06-26', '2013-07-15', '1976-8-26', 1480, '920828'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1481, false, 'CSRS', 2, 1481, 467453.41, 1481, 2, true, true, 'Gary Rogers', '2013-06-08', '2013-02-01', '1942-8-21', 1481, '910281'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1482, false, 'CSRS', 2, 1482, 371575.71, 1482, 1, true, true, 'Billy Cook', '2013-10-03', '2013-06-16', '1957-1-19', 1482, '953063'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1483, false, 'CSRS', 2, 1483, 204276.02, 1483, 1, true, true, 'Janice Chavez', '2013-11-23', '2013-06-14', '1938-7-14', 1483, '999825'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1484, false, 'CSRS', 2, 1484, 390665, 1484, 2, true, false, 'Bruce Weaver', '2013-12-02', '2013-09-16', '1950-5-21', 1484, '989078'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1485, false, 'CSRS', 2, 1485, 304681.55, 1485, 2, false, false, 'Harry Olson', '2013-08-20', '2013-01-31', '1952-1-19', 1485, '914311'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1486, false, 'CSRS', 2, 1486, 497401.51, 1486, 2, false, true, 'Edward Wheeler', '2012-12-16', '2013-04-16', '1962-6-11', 1486, '940536'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1487, false, 'CSRS', 2, 1487, 436448.21, 1487, 1, true, true, 'Juan Fox', '2013-01-08', '2013-02-25', '1941-11-6', 1487, '947688'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1488, false, 'CSRS', 2, 1488, 403558.06, 1488, 2, true, false, 'Terry Fields', '2013-07-08', '2013-04-11', '1972-11-5', 1488, '994451'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1489, false, 'CSRS', 2, 1489, 436233, 1489, 2, false, false, 'Ralph Medina', '2013-03-02', '2013-03-29', '1942-12-29', 1489, '944802'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1490, false, 'CSRS', 2, 1490, 415839.53, 1490, 1, true, false, 'Christine Martinez', '2013-02-09', '2013-01-31', '1928-10-19', 1490, '934738'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1491, false, 'CSRS', 2, 1491, 247898.75, 1491, 2, false, false, 'Eric Austin', '2012-12-26', '2013-02-13', '1970-9-10', 1491, '914238'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1492, false, 'CSRS', 2, 1492, 294878.7, 1492, 2, false, true, 'Catherine Lawson', '2013-05-15', '2013-11-06', '1929-5-2', 1492, '989457'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1493, false, 'CSRS', 2, 1493, 379396.39, 1493, 2, false, true, 'Anthony Vasquez', '2013-01-21', '2012-12-23', '1948-8-2', 1493, '902922'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1494, false, 'CSRS', 2, 1494, 293990.01, 1494, 1, true, false, 'Lois Sanchez', '2013-05-17', '2013-02-24', '1949-8-3', 1494, '996811'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1495, false, 'CSRS', 2, 1495, 393739.51, 1495, 1, false, false, 'Judy Greene', '2013-07-22', '2013-07-07', '1966-10-22', 1495, '995670'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1496, false, 'CSRS', 2, 1496, 380499.35, 1496, 2, true, false, 'Catherine Wright', '2013-01-29', '2013-01-06', '1968-11-9', 1496, '916226'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1497, false, 'CSRS', 2, 1497, 330728.58, 1497, 1, true, true, 'William Coleman', '2013-09-18', '2013-01-08', '1972-9-12', 1497, '957269'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1498, false, 'CSRS', 2, 1498, 387903.61, 1498, 1, true, false, 'Roy Cooper', '2013-06-05', '2013-10-06', '1946-2-28', 1498, '915979'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1499, false, 'CSRS', 2, 1499, 489197.63, 1499, 2, true, true, 'Brian Johnson', '2013-01-31', '2013-07-02', '1938-10-26', 1499, '909137'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1500, false, 'CSRS', 2, 1500, 223761.16, 1500, 2, true, false, 'Kelly Sullivan', '2013-03-02', '2013-01-04', '1948-12-21', 1500, '955353'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1501, false, 'CSRS', 2, 1501, 281018.32, 1501, 2, false, true, 'Amanda Day', '2013-02-16', '2013-07-30', '1954-8-2', 1501, '993036'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1502, false, 'CSRS', 2, 1502, 222109.15, 1502, 2, true, true, 'Rachel Harvey', '2013-11-30', '2013-10-17', '1974-9-19', 1502, '965285'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1503, false, 'CSRS', 2, 1503, 369765.69, 1503, 2, false, true, 'Michelle Simmons', '2013-08-12', '2013-02-02', '1936-6-12', 1503, '923335'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1504, false, 'CSRS', 2, 1504, 480512.6, 1504, 1, false, false, 'Johnny Johnson', '2013-11-23', '2013-07-29', '1963-8-27', 1504, '990921'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1505, false, 'CSRS', 2, 1505, 200398.4, 1505, 1, false, true, 'Judith Sanders', '2013-02-28', '2013-01-03', '1946-4-28', 1505, '997062'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1506, false, 'CSRS', 2, 1506, 477748.44, 1506, 1, false, true, 'William Coleman', '2013-09-30', '2013-04-08', '1948-8-3', 1506, '947967'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1507, false, 'CSRS', 2, 1507, 357727.48, 1507, 1, false, true, 'Christine Torres', '2013-02-26', '2013-02-21', '1942-9-9', 1507, '910574'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1508, false, 'CSRS', 2, 1508, 402930.81, 1508, 1, true, false, 'Judith Rose', '2013-01-13', '2013-05-16', '1925-1-23', 1508, '961218'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1509, false, 'CSRS', 2, 1509, 493854, 1509, 2, false, false, 'Diane Ward', '2013-06-06', '2013-05-02', '1976-6-13', 1509, '963469'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1510, false, 'CSRS', 2, 1510, 435088.16, 1510, 2, false, true, 'Robin Medina', '2013-01-17', '2013-11-30', '1971-12-12', 1510, '997726'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1511, false, 'CSRS', 2, 1511, 489873.73, 1511, 1, false, false, 'Rebecca Owens', '2013-10-08', '2013-08-27', '1964-9-12', 1511, '989371'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1512, false, 'CSRS', 2, 1512, 234641.56, 1512, 1, false, false, 'Billy Morris', '2013-02-13', '2013-04-04', '1948-11-1', 1512, '941333'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1513, false, 'CSRS', 2, 1513, 358626.17, 1513, 2, false, true, 'Craig Little', '2013-10-08', '2013-06-14', '1922-10-8', 1513, '946209'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1514, false, 'CSRS', 2, 1514, 343694.54, 1514, 1, true, true, 'John Mills', '2013-06-30', '2013-09-04', '1957-7-3', 1514, '969446'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1515, false, 'CSRS', 2, 1515, 460416.32, 1515, 2, true, true, 'Harry Barnes', '2013-02-08', '2013-10-29', '1933-12-13', 1515, '933655'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1516, false, 'CSRS', 2, 1516, 422965.52, 1516, 1, true, true, 'Roy Wheeler', '2013-11-27', '2013-07-10', '1968-1-29', 1516, '948160'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1517, false, 'CSRS', 2, 1517, 426181.18, 1517, 2, false, true, 'Bobby Holmes', '2013-12-08', '2013-07-26', '1950-12-10', 1517, '936639'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1518, false, 'CSRS', 2, 1518, 437613.11, 1518, 1, false, false, 'Carlos Harper', '2013-11-11', '2013-02-05', '1921-7-17', 1518, '998278'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1519, false, 'CSRS', 2, 1519, 438138.29, 1519, 2, false, true, 'Craig Alexander', '2013-08-03', '2013-08-04', '1974-1-23', 1519, '974833'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1520, false, 'CSRS', 2, 1520, 494237.6, 1520, 1, true, false, 'Karen Day', '2013-08-06', '2013-09-28', '1946-4-27', 1520, '968335'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1521, false, 'CSRS', 2, 1521, 252403.83, 1521, 2, true, false, 'Joan Watkins', '2013-02-20', '2013-02-25', '1931-11-15', 1521, '954253'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1522, false, 'CSRS', 2, 1522, 412186.07, 1522, 1, false, true, 'Steve Johnston', '2013-07-01', '2013-09-08', '1926-10-20', 1522, '966936'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1523, false, 'CSRS', 2, 1523, 205563.99, 1523, 1, true, false, 'Arthur Perez', '2013-10-02', '2013-03-30', '1963-9-18', 1523, '980824'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1524, false, 'CSRS', 2, 1524, 445527.76, 1524, 2, false, true, 'Edward Palmer', '2013-09-02', '2013-09-05', '1926-11-20', 1524, '966564'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1525, false, 'CSRS', 2, 1525, 467764.06, 1525, 1, false, true, 'Linda Tucker', '2013-06-15', '2013-12-03', '1925-3-28', 1525, '961521'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1526, false, 'CSRS', 2, 1526, 260152.76, 1526, 1, true, true, 'Nancy Perez', '2012-12-15', '2013-04-23', '1965-1-15', 1526, '924423'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1527, false, 'CSRS', 2, 1527, 215493.77, 1527, 1, false, true, 'Jacqueline Perry', '2013-03-06', '2013-10-18', '1947-8-10', 1527, '971897'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1528, false, 'CSRS', 2, 1528, 490045.68, 1528, 2, true, true, 'Jesse Richardson', '2013-11-19', '2013-11-17', '1932-10-27', 1528, '984838'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1529, false, 'CSRS', 2, 1529, 448742.74, 1529, 2, false, false, 'James Day', '2013-02-11', '2013-01-08', '1979-5-6', 1529, '972521'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1530, false, 'CSRS', 2, 1530, 435849.22, 1530, 2, false, false, 'Jessica Smith', '2013-06-15', '2013-04-30', '1969-10-31', 1530, '959332'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1531, false, 'CSRS', 2, 1531, 307563.99, 1531, 1, false, true, 'Christina Parker', '2013-04-29', '2013-12-05', '1923-12-12', 1531, '912606'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1532, false, 'CSRS', 2, 1532, 357901.1, 1532, 1, false, true, 'Jane Thompson', '2013-10-02', '2013-05-25', '1952-10-7', 1532, '929992'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1533, false, 'CSRS', 2, 1533, 276200.07, 1533, 2, false, true, 'Paul Lawrence', '2012-12-22', '2013-07-22', '1957-8-6', 1533, '912703'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1534, false, 'CSRS', 2, 1534, 365753.41, 1534, 2, true, false, 'Jane Thompson', '2013-12-06', '2013-04-25', '1973-8-25', 1534, '924847'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1535, false, 'CSRS', 2, 1535, 355304.7, 1535, 1, false, false, 'Sara Stevens', '2013-04-02', '2013-01-10', '1972-10-6', 1535, '964266'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1536, false, 'CSRS', 2, 1536, 241849.7, 1536, 1, true, false, 'Deborah Lane', '2013-04-28', '2013-02-05', '1959-8-26', 1536, '967334'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1537, false, 'CSRS', 2, 1537, 208696.42, 1537, 2, false, false, 'Russell Powell', '2013-10-27', '2013-08-27', '1964-8-28', 1537, '939038'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1538, false, 'CSRS', 2, 1538, 375864.55, 1538, 1, true, false, 'Carlos Dunn', '2013-08-23', '2012-12-23', '1925-7-23', 1538, '937750'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1539, false, 'CSRS', 2, 1539, 200148.82, 1539, 1, true, false, 'Walter Robertson', '2013-03-28', '2013-10-25', '1966-8-5', 1539, '924764'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1540, false, 'CSRS', 2, 1540, 329955.46, 1540, 1, true, true, 'Craig Little', '2013-02-18', '2013-07-21', '1934-6-12', 1540, '911873'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1541, false, 'CSRS', 2, 1541, 217084.54, 1541, 1, false, true, 'Julia Porter', '2013-10-16', '2013-12-10', '1978-8-11', 1541, '907858'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1542, false, 'CSRS', 2, 1542, 419403.64, 1542, 2, false, true, 'Barbara Alexander', '2013-01-18', '2013-01-06', '1968-3-4', 1542, '979553'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1543, false, 'CSRS', 2, 1543, 440100.21, 1543, 2, true, true, 'Ronald Graham', '2013-07-12', '2013-10-08', '1927-8-14', 1543, '973052'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1544, false, 'CSRS', 2, 1544, 364698.07, 1544, 1, true, true, 'Gary Taylor', '2013-11-09', '2013-05-19', '1956-12-11', 1544, '987631'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1545, false, 'CSRS', 2, 1545, 332723.37, 1545, 2, true, true, 'Cheryl Austin', '2013-08-17', '2013-01-01', '1939-8-20', 1545, '900703'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1546, false, 'CSRS', 2, 1546, 382395.85, 1546, 1, true, false, 'Christine Martinez', '2013-05-27', '2013-12-10', '1955-11-24', 1546, '909064'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1547, false, 'CSRS', 2, 1547, 464074.22, 1547, 1, false, false, 'Ryan Henry', '2012-12-21', '2013-09-04', '1941-4-26', 1547, '931715'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1548, false, 'CSRS', 2, 1548, 255247.01, 1548, 2, true, false, 'Martha Hunt', '2012-12-15', '2013-03-28', '1943-2-11', 1548, '967260'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1549, false, 'CSRS', 2, 1549, 209899.3, 1549, 1, false, true, 'Ann Elliott', '2013-08-02', '2013-02-07', '1922-3-26', 1549, '910019'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1550, false, 'CSRS', 2, 1550, 237385.97, 1550, 1, true, false, 'Elizabeth Johnson', '2013-08-22', '2013-11-01', '1965-10-13', 1550, '911179'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1551, false, 'CSRS', 2, 1551, 267575.53, 1551, 2, false, false, 'Lori Chavez', '2013-07-06', '2013-04-23', '1979-5-9', 1551, '953622'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1552, false, 'CSRS', 2, 1552, 369082.23, 1552, 2, true, true, 'Diane Thompson', '2013-01-12', '2013-07-09', '1964-5-17', 1552, '992157'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1553, false, 'CSRS', 2, 1553, 331476.64, 1553, 1, true, true, 'Jerry West', '2013-09-05', '2013-01-30', '1952-1-8', 1553, '900215'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1554, false, 'CSRS', 2, 1554, 284343.18, 1554, 1, false, false, 'Edward Wheeler', '2013-10-08', '2013-09-19', '1972-4-9', 1554, '972130'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1555, false, 'CSRS', 2, 1555, 331284.61, 1555, 2, true, true, 'Charles Harrison', '2013-07-14', '2013-01-12', '1946-11-11', 1555, '961845'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1556, false, 'CSRS', 2, 1556, 389476.79, 1556, 2, true, false, 'Janet Gardner', '2013-02-03', '2013-06-04', '1962-4-30', 1556, '915218'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1557, false, 'CSRS', 2, 1557, 458524.69, 1557, 1, false, true, 'Alan Williams', '2013-02-15', '2013-06-05', '1953-9-14', 1557, '917533'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1558, false, 'CSRS', 2, 1558, 408763.44, 1558, 2, false, true, 'Benjamin Long', '2013-01-12', '2013-01-06', '1945-4-26', 1558, '947909'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1559, false, 'CSRS', 2, 1559, 257299.83, 1559, 1, false, false, 'Matthew Richards', '2013-03-20', '2013-08-26', '1925-11-8', 1559, '941834'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1560, false, 'CSRS', 2, 1560, 270218.13, 1560, 2, false, false, 'Rose Perry', '2013-10-27', '2013-09-24', '1926-4-21', 1560, '933235'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1561, false, 'CSRS', 2, 1561, 284332.85, 1561, 2, false, true, 'Michelle Simmons', '2013-09-18', '2013-10-22', '1972-2-1', 1561, '996746'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1562, false, 'CSRS', 2, 1562, 397945.89, 1562, 2, true, true, 'Peter Flores', '2013-03-27', '2012-12-17', '1968-9-4', 1562, '979531'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1563, false, 'CSRS', 2, 1563, 299373.28, 1563, 1, false, true, 'Donald Ford', '2013-05-31', '2013-03-10', '1922-5-13', 1563, '984728'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1564, false, 'CSRS', 2, 1564, 420486.89, 1564, 2, false, true, 'Marie Rose', '2013-11-25', '2013-06-10', '1972-2-11', 1564, '918689'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1565, false, 'CSRS', 2, 1565, 253477.85, 1565, 1, true, true, 'Joe Murray', '2013-01-15', '2013-06-10', '1978-12-19', 1565, '941334'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1566, false, 'CSRS', 2, 1566, 339697.56, 1566, 1, false, true, 'Laura Oliver', '2013-04-09', '2013-04-10', '1972-2-1', 1566, '990308'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1567, false, 'CSRS', 2, 1567, 382589.3, 1567, 1, true, false, 'Carol Frazier', '2013-09-02', '2013-11-10', '1939-2-20', 1567, '997121'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1568, false, 'CSRS', 2, 1568, 449518.12, 1568, 1, true, true, 'Nancy Walker', '2013-10-05', '2013-08-22', '1939-2-6', 1568, '952612'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1569, false, 'CSRS', 2, 1569, 281377.6, 1569, 1, false, true, 'Diana Reynolds', '2013-02-13', '2013-03-26', '1943-8-18', 1569, '967671'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1570, false, 'CSRS', 2, 1570, 237663.43, 1570, 1, true, false, 'Tina Moore', '2013-09-01', '2013-10-04', '1970-10-17', 1570, '943529'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1571, false, 'CSRS', 2, 1571, 427238.56, 1571, 1, false, false, 'Harold Welch', '2013-07-07', '2013-03-14', '1975-11-19', 1571, '984102'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1572, false, 'CSRS', 2, 1572, 417803.9, 1572, 2, false, false, 'Tina Dixon', '2013-03-12', '2013-02-01', '1974-12-28', 1572, '953476'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1573, false, 'CSRS', 2, 1573, 443248.64, 1573, 1, true, true, 'Carlos Warren', '2013-06-17', '2013-10-14', '1929-6-11', 1573, '918172'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1574, false, 'CSRS', 2, 1574, 281889.37, 1574, 1, true, true, 'Brian Harper', '2013-03-29', '2013-10-22', '1969-4-22', 1574, '931450'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1575, false, 'CSRS', 2, 1575, 387279.08, 1575, 2, false, false, 'Ernest Castillo', '2013-11-13', '2013-01-10', '1978-1-11', 1575, '913346'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1576, false, 'CSRS', 2, 1576, 288564.53, 1576, 2, true, false, 'Larry Little', '2013-07-10', '2013-02-16', '1932-10-5', 1576, '903568'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1577, false, 'CSRS', 2, 1577, 411563.86, 1577, 2, false, false, 'Carlos Harper', '2013-01-05', '2013-11-30', '1952-10-10', 1577, '935857'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1578, false, 'CSRS', 2, 1578, 351573.51, 1578, 2, false, false, 'Andrew Knight', '2012-12-28', '2013-07-17', '1966-1-19', 1578, '985769'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1579, false, 'CSRS', 2, 1579, 458846.41, 1579, 1, true, false, 'Michelle Black', '2013-02-22', '2013-05-12', '1952-3-2', 1579, '983551'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1580, false, 'CSRS', 2, 1580, 369598.16, 1580, 2, true, true, 'Theresa West', '2013-06-06', '2013-08-14', '1958-6-8', 1580, '980381'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1581, false, 'CSRS', 2, 1581, 342322.53, 1581, 2, true, true, 'Deborah Lane', '2013-01-31', '2012-12-18', '1921-4-25', 1581, '994021'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1582, false, 'CSRS', 2, 1582, 215489.87, 1582, 2, false, true, 'Carlos Dunn', '2013-01-05', '2013-10-18', '1927-10-7', 1582, '921339'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1583, false, 'CSRS', 2, 1583, 385434.95, 1583, 2, false, false, 'Nicole Perez', '2013-05-14', '2013-09-17', '1924-6-1', 1583, '911610'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1584, false, 'CSRS', 2, 1584, 340070.72, 1584, 1, false, false, 'Gary Rogers', '2013-07-26', '2013-02-06', '1937-9-1', 1584, '901285'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1585, false, 'CSRS', 2, 1585, 404556.3, 1585, 1, false, true, 'Nicole Perez', '2013-07-07', '2013-06-18', '1959-3-6', 1585, '932502'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1586, false, 'CSRS', 2, 1586, 261897.71, 1586, 2, true, true, 'Steve Garcia', '2013-05-28', '2013-09-12', '1921-5-1', 1586, '954165'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1587, false, 'CSRS', 2, 1587, 427558.27, 1587, 1, false, false, 'Louise Mendoza', '2013-07-29', '2013-08-29', '1947-7-28', 1587, '930491'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1588, false, 'CSRS', 2, 1588, 308592.51, 1588, 2, false, true, 'Christopher Scott', '2013-08-08', '2013-07-16', '1928-4-19', 1588, '904156'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1589, false, 'CSRS', 2, 1589, 282226.93, 1589, 1, true, true, 'Howard Hunter', '2013-03-02', '2013-01-12', '1931-12-18', 1589, '948451'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1590, false, 'CSRS', 2, 1590, 439041.52, 1590, 1, true, false, 'Juan Smith', '2013-10-11', '2013-11-14', '1961-3-3', 1590, '912575'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1591, false, 'CSRS', 2, 1591, 379081.7, 1591, 1, false, true, 'Julie Butler', '2013-09-17', '2013-08-25', '1930-11-20', 1591, '945581'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1592, false, 'CSRS', 2, 1592, 299447.92, 1592, 2, false, false, 'Louis Jordan', '2013-04-13', '2013-08-10', '1957-10-22', 1592, '960449'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1593, false, 'CSRS', 2, 1593, 280558.01, 1593, 2, true, true, 'Christine Pierce', '2013-03-20', '2013-06-17', '1924-4-28', 1593, '907643'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1594, false, 'CSRS', 2, 1594, 247191.73, 1594, 1, true, false, 'Paula Ryan', '2013-08-24', '2013-08-08', '1964-3-23', 1594, '999210'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1595, false, 'CSRS', 2, 1595, 302185.39, 1595, 2, true, false, 'Beverly Little', '2013-10-18', '2013-03-08', '1968-7-26', 1595, '945775'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1596, false, 'CSRS', 2, 1596, 468081.24, 1596, 1, false, false, 'Samuel Coleman', '2013-06-23', '2013-08-11', '1957-8-28', 1596, '982188'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1597, false, 'CSRS', 2, 1597, 287787.11, 1597, 1, true, false, 'Clarence Diaz', '2013-10-23', '2013-02-25', '1972-4-8', 1597, '918433'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1598, false, 'CSRS', 2, 1598, 322711.99, 1598, 1, true, true, 'Jacqueline Weaver', '2013-02-07', '2013-09-20', '1969-10-10', 1598, '948234'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1599, false, 'CSRS', 2, 1599, 423488.15, 1599, 2, true, true, 'Harold Crawford', '2013-02-11', '2012-12-11', '1969-4-29', 1599, '945657'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1600, false, 'CSRS', 2, 1600, 219301.48, 1600, 1, true, false, 'Rebecca Owens', '2013-11-04', '2013-08-04', '1952-10-11', 1600, '931906'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1601, false, 'CSRS', 2, 1601, 242347.99, 1601, 2, true, true, 'Steve Crawford', '2012-12-26', '2013-07-11', '1951-7-10', 1601, '941165'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1602, false, 'CSRS', 2, 1602, 443980.31, 1602, 1, true, true, 'Larry Little', '2013-01-21', '2012-12-24', '1958-7-20', 1602, '940592'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1603, false, 'CSRS', 2, 1603, 465514.59, 1603, 2, false, false, 'Dorothy Lawson', '2013-05-27', '2013-07-01', '1951-1-22', 1603, '906186'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1604, false, 'CSRS', 2, 1604, 283722.05, 1604, 2, true, true, 'Mildred Hall', '2013-03-04', '2013-02-28', '1961-2-15', 1604, '944786'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1605, false, 'CSRS', 2, 1605, 410568.81, 1605, 2, true, true, 'Sharon Wells', '2013-08-18', '2013-08-07', '1935-7-20', 1605, '979978'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1606, false, 'CSRS', 2, 1606, 324903.39, 1606, 2, false, false, 'Matthew Wood', '2013-09-14', '2013-01-16', '1968-6-11', 1606, '928224'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1607, false, 'CSRS', 2, 1607, 244109.43, 1607, 2, false, false, 'Sandra Sullivan', '2012-12-24', '2013-09-29', '1927-9-17', 1607, '937221'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1608, false, 'CSRS', 2, 1608, 438521.6, 1608, 1, true, true, 'Thomas Kennedy', '2013-10-04', '2013-03-27', '1976-3-16', 1608, '932081'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1609, false, 'CSRS', 2, 1609, 430639.49, 1609, 1, true, false, 'Charles Bryant', '2013-06-15', '2013-03-19', '1948-8-29', 1609, '982281'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1610, false, 'CSRS', 2, 1610, 420593.65, 1610, 1, false, false, 'Adam Ford', '2013-08-16', '2013-01-17', '1980-9-30', 1610, '935323'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1611, false, 'CSRS', 2, 1611, 246861.92, 1611, 2, false, false, 'Bobby Holmes', '2013-02-16', '2012-12-13', '1923-6-6', 1611, '911293'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1612, false, 'CSRS', 2, 1612, 245915.45, 1612, 2, false, true, 'Steve Hill', '2013-10-21', '2013-04-22', '1936-9-7', 1612, '936713'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1613, false, 'CSRS', 2, 1613, 408521.42, 1613, 2, true, false, 'Keith Wood', '2013-06-12', '2013-02-01', '1952-5-10', 1613, '904786'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1614, false, 'CSRS', 2, 1614, 310061.7, 1614, 1, false, true, 'Roger Cunningham', '2013-12-03', '2013-08-21', '1966-4-1', 1614, '941123'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1615, false, 'CSRS', 2, 1615, 387091.31, 1615, 2, false, true, 'Dorothy Barnes', '2013-07-13', '2013-03-05', '1976-5-12', 1615, '906670'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1616, false, 'CSRS', 2, 1616, 328433.93, 1616, 2, true, false, 'Barbara Anderson', '2013-02-23', '2013-04-27', '1978-12-27', 1616, '989666'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1617, false, 'CSRS', 2, 1617, 329071.53, 1617, 1, true, true, 'Raymond Ellis', '2013-05-27', '2013-03-19', '1976-3-19', 1617, '936324'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1618, false, 'CSRS', 2, 1618, 239767.8, 1618, 2, false, true, 'Richard Scott', '2013-01-19', '2013-03-25', '1946-10-7', 1618, '947956'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1619, false, 'CSRS', 2, 1619, 276339.19, 1619, 1, false, false, 'Scott Rogers', '2013-07-09', '2013-06-13', '1949-6-3', 1619, '997863'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1620, false, 'CSRS', 2, 1620, 472050.5, 1620, 1, true, true, 'Gerald Peters', '2013-08-20', '2013-10-08', '1934-3-16', 1620, '954983'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1621, false, 'CSRS', 2, 1621, 369174.24, 1621, 2, false, false, 'Earl Ward', '2013-08-31', '2013-01-18', '1958-3-19', 1621, '990052'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1622, false, 'CSRS', 2, 1622, 303148.75, 1622, 2, true, true, 'Julie West', '2013-01-14', '2013-07-01', '1944-2-15', 1622, '935136'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1623, false, 'CSRS', 2, 1623, 413388.53, 1623, 1, false, false, 'Dorothy Shaw', '2013-11-16', '2012-12-30', '1977-9-30', 1623, '915160'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1624, false, 'CSRS', 2, 1624, 436674.89, 1624, 2, true, false, 'George Bryant', '2013-09-02', '2013-05-29', '1924-6-24', 1624, '995567'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1625, false, 'CSRS', 2, 1625, 263618.76, 1625, 2, true, true, 'Edward Olson', '2013-11-19', '2013-01-20', '1962-6-22', 1625, '963864'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1626, false, 'CSRS', 2, 1626, 371916.38, 1626, 1, true, true, 'Matthew Roberts', '2013-07-15', '2013-08-02', '1943-2-16', 1626, '915827'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1627, false, 'CSRS', 2, 1627, 428567.49, 1627, 1, false, false, 'Joshua Wheeler', '2013-03-08', '2013-11-20', '1970-11-12', 1627, '921362'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1628, false, 'CSRS', 2, 1628, 422289.88, 1628, 1, false, true, 'Randy Green', '2013-07-03', '2013-02-05', '1980-1-15', 1628, '967758'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1629, false, 'CSRS', 2, 1629, 230450.65, 1629, 2, true, true, 'Martin Lawson', '2013-03-19', '2013-08-26', '1979-1-3', 1629, '940612'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1630, false, 'CSRS', 2, 1630, 498022.21, 1630, 2, false, false, 'Patrick Bryant', '2013-04-01', '2013-11-28', '1962-10-1', 1630, '972634'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1631, false, 'CSRS', 2, 1631, 448755.75, 1631, 2, false, false, 'Jean Grant', '2013-07-28', '2012-12-25', '1947-11-30', 1631, '974999'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1632, false, 'CSRS', 2, 1632, 441771.2, 1632, 2, false, true, 'David Allen', '2013-02-28', '2013-09-18', '1936-2-8', 1632, '933880'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1633, false, 'CSRS', 2, 1633, 492459.75, 1633, 2, false, false, 'Earl Ward', '2013-01-30', '2013-05-05', '1967-3-1', 1633, '911147'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1634, false, 'CSRS', 2, 1634, 375274.22, 1634, 2, true, true, 'Harry Barnes', '2013-11-30', '2013-07-12', '1965-10-9', 1634, '954653'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1635, false, 'CSRS', 2, 1635, 301944.44, 1635, 2, false, false, 'Billy Riley', '2013-03-23', '2013-02-10', '1954-1-30', 1635, '959355'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1636, false, 'CSRS', 2, 1636, 411954.18, 1636, 2, true, false, 'Gloria Garcia', '2013-05-19', '2013-07-23', '1970-10-14', 1636, '982849'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1637, false, 'CSRS', 2, 1637, 428823.03, 1637, 1, false, true, 'Mark Hanson', '2013-10-06', '2013-02-26', '1950-6-17', 1637, '979492'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1638, false, 'CSRS', 2, 1638, 290152.1, 1638, 1, false, true, 'Cynthia Hanson', '2013-10-11', '2013-12-01', '1922-3-16', 1638, '950169'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1639, false, 'CSRS', 2, 1639, 341220.98, 1639, 2, false, true, 'Diana Reynolds', '2013-01-04', '2013-12-04', '1972-7-18', 1639, '915948'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1640, false, 'CSRS', 2, 1640, 236059.47, 1640, 1, true, false, 'Janet Kelley', '2013-08-22', '2013-04-10', '1964-8-1', 1640, '966858'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1641, false, 'CSRS', 2, 1641, 243445.07, 1641, 1, false, false, 'Christine Torres', '2013-10-28', '2013-06-30', '1941-10-26', 1641, '909904'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1642, false, 'CSRS', 2, 1642, 321232.61, 1642, 2, false, true, 'Stephen Chavez', '2013-05-30', '2013-08-23', '1922-5-20', 1642, '972394'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1643, false, 'CSRS', 2, 1643, 248110.9, 1643, 1, false, false, 'Alice Cook', '2013-05-29', '2013-09-30', '1966-9-24', 1643, '951679'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1644, false, 'CSRS', 2, 1644, 347784.65, 1644, 2, true, false, 'Karen Wheeler', '2013-03-18', '2013-07-10', '1921-5-11', 1644, '912180'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1645, false, 'CSRS', 2, 1645, 274129.07, 1645, 1, false, true, 'Randy Palmer', '2013-11-01', '2013-05-26', '1941-2-15', 1645, '967898'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1646, false, 'CSRS', 2, 1646, 315367.74, 1646, 1, false, true, 'Aaron Knight', '2013-02-13', '2013-09-29', '1924-9-18', 1646, '905062'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1647, false, 'CSRS', 2, 1647, 463034.02, 1647, 2, false, true, 'Jonathan Stanley', '2013-05-16', '2013-07-09', '1948-11-22', 1647, '985569'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1648, false, 'CSRS', 2, 1648, 273941.63, 1648, 2, false, true, 'Ernest Castillo', '2013-12-02', '2013-06-16', '1958-3-19', 1648, '985655'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1649, false, 'CSRS', 2, 1649, 495383.82, 1649, 2, false, false, 'Robin Ward', '2013-09-02', '2013-09-29', '1964-9-23', 1649, '915624'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1650, false, 'CSRS', 2, 1650, 225476.35, 1650, 2, true, false, 'Thomas Garza', '2013-07-29', '2013-01-06', '1946-4-11', 1650, '994146'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1651, false, 'CSRS', 2, 1651, 467776.54, 1651, 1, false, false, 'Jimmy Romero', '2013-07-16', '2013-09-30', '1942-2-27', 1651, '931721'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1652, false, 'CSRS', 2, 1652, 341421.27, 1652, 1, true, true, 'Jeffrey Robinson', '2013-01-17', '2013-02-12', '1933-8-14', 1652, '960109'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1653, false, 'CSRS', 2, 1653, 239668.04, 1653, 2, true, false, 'Steve Crawford', '2013-05-04', '2013-10-13', '1956-9-9', 1653, '979526'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1654, false, 'CSRS', 2, 1654, 264987.58, 1654, 1, true, true, 'Richard Parker', '2013-02-14', '2013-02-19', '1949-11-8', 1654, '958588'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1655, false, 'CSRS', 2, 1655, 499165.65, 1655, 1, false, true, 'Marie Harper', '2013-03-23', '2013-11-19', '1932-3-15', 1655, '956162'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1656, false, 'CSRS', 2, 1656, 204306.71, 1656, 2, false, false, 'Keith Lee', '2013-05-04', '2013-05-20', '1978-11-30', 1656, '970217'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1657, false, 'CSRS', 2, 1657, 422242.43, 1657, 1, true, false, 'Christopher Kennedy', '2013-09-11', '2013-05-23', '1937-3-16', 1657, '972532'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1658, false, 'CSRS', 2, 1658, 387772.02, 1658, 1, true, true, 'Denise Cox', '2013-02-26', '2013-04-27', '1953-3-7', 1658, '982963'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1659, false, 'CSRS', 2, 1659, 455450.9, 1659, 1, true, true, 'Walter Robertson', '2013-04-05', '2013-11-27', '1943-4-6', 1659, '990612'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1660, false, 'CSRS', 2, 1660, 374046.56, 1660, 1, false, true, 'Marie Bryant', '2013-11-16', '2013-02-16', '1929-8-22', 1660, '964785'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1661, false, 'CSRS', 2, 1661, 255472.27, 1661, 1, false, false, 'Kathryn Palmer', '2013-07-22', '2013-08-21', '1942-8-24', 1661, '912727'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1662, false, 'CSRS', 2, 1662, 434058.11, 1662, 2, true, true, 'Scott Wallace', '2013-04-21', '2013-02-15', '1947-11-2', 1662, '966928'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1663, false, 'CSRS', 2, 1663, 470838.97, 1663, 2, false, false, 'Charles Bryant', '2013-06-18', '2013-10-16', '1941-4-11', 1663, '930497'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1664, false, 'CSRS', 2, 1664, 443318.27, 1664, 1, false, false, 'Diana Reynolds', '2013-05-24', '2013-07-17', '1970-4-3', 1664, '986680'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1665, false, 'CSRS', 2, 1665, 268290.46, 1665, 1, false, true, 'Doris Sullivan', '2013-03-12', '2012-12-11', '1934-1-11', 1665, '904207'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1666, false, 'CSRS', 2, 1666, 251161.68, 1666, 1, false, false, 'Amanda Chavez', '2013-08-05', '2013-11-02', '1933-7-22', 1666, '974429'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1667, false, 'CSRS', 2, 1667, 395711.67, 1667, 2, false, true, 'Roy Hunt', '2013-05-02', '2013-07-07', '1943-3-17', 1667, '982477'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1668, false, 'CSRS', 2, 1668, 299248.2, 1668, 1, false, true, 'Thomas Kennedy', '2013-06-01', '2013-08-09', '1921-4-26', 1668, '965054'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1669, false, 'CSRS', 2, 1669, 497767.76, 1669, 2, false, true, 'Donna Payne', '2013-11-16', '2013-10-13', '1968-12-23', 1669, '954363'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1670, false, 'CSRS', 2, 1670, 400418.63, 1670, 2, false, true, 'Roger Williams', '2012-12-13', '2012-12-16', '1977-4-18', 1670, '919582'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1671, false, 'CSRS', 2, 1671, 305038.23, 1671, 2, false, false, 'Ryan Chapman', '2013-03-26', '2013-07-05', '1936-6-25', 1671, '938454'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1672, false, 'CSRS', 2, 1672, 360410.6, 1672, 1, false, false, 'Peter Lynch', '2013-07-19', '2013-07-27', '1924-1-17', 1672, '952325'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1673, false, 'CSRS', 2, 1673, 360700.66, 1673, 1, true, false, 'Juan Evans', '2013-05-26', '2013-04-15', '1953-7-31', 1673, '960503'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1674, false, 'CSRS', 2, 1674, 252765.51, 1674, 2, false, true, 'Arthur Perez', '2013-04-06', '2013-11-22', '1939-11-1', 1674, '950607'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1675, false, 'CSRS', 2, 1675, 253653.96, 1675, 2, true, true, 'Steve Johnston', '2013-09-30', '2013-10-28', '1934-10-4', 1675, '976586'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1676, false, 'CSRS', 2, 1676, 410250.91, 1676, 1, false, false, 'Karen Day', '2013-07-09', '2013-03-10', '1940-8-19', 1676, '988461'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1677, false, 'CSRS', 2, 1677, 481007.12, 1677, 1, false, false, 'Diana Gray', '2013-10-21', '2013-07-14', '1955-11-28', 1677, '957643'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1678, false, 'CSRS', 2, 1678, 259240.5, 1678, 2, true, false, 'Wanda Gardner', '2013-11-24', '2013-04-01', '1924-3-6', 1678, '939847'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1679, false, 'CSRS', 2, 1679, 203042.95, 1679, 2, true, false, 'Charles Bryant', '2013-01-31', '2013-09-18', '1963-8-15', 1679, '975486'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1680, false, 'CSRS', 2, 1680, 237980.79, 1680, 2, false, false, 'Philip Henry', '2013-10-29', '2013-04-18', '1951-1-6', 1680, '915004'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1681, false, 'CSRS', 2, 1681, 286125.14, 1681, 1, false, false, 'Tina Moore', '2013-03-05', '2013-10-11', '1966-5-12', 1681, '949523'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1682, false, 'CSRS', 2, 1682, 320903.27, 1682, 1, true, false, 'Robin Cunningham', '2013-07-28', '2013-09-03', '1948-9-9', 1682, '991346'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1683, false, 'CSRS', 2, 1683, 439219.31, 1683, 2, false, false, 'Shirley Simpson', '2013-11-15', '2013-07-01', '1923-4-10', 1683, '909271'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1684, false, 'CSRS', 2, 1684, 368298.73, 1684, 1, true, false, 'Sandra Sullivan', '2013-01-06', '2013-09-25', '1946-8-9', 1684, '999990'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1685, false, 'CSRS', 2, 1685, 210715.41, 1685, 1, false, true, 'Patricia Nelson', '2013-06-28', '2013-04-16', '1952-11-16', 1685, '929278'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1686, false, 'CSRS', 2, 1686, 499006.18, 1686, 2, false, false, 'Bonnie Watkins', '2013-06-19', '2013-05-16', '1936-9-9', 1686, '947546'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1687, false, 'CSRS', 2, 1687, 443476.24, 1687, 2, true, false, 'Virginia Riley', '2013-06-26', '2013-12-06', '1975-4-19', 1687, '993492'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1688, false, 'CSRS', 2, 1688, 475652.02, 1688, 2, true, false, 'Chris Elliott', '2013-10-07', '2013-07-16', '1960-6-5', 1688, '926026'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1689, false, 'CSRS', 2, 1689, 318609.16, 1689, 2, true, false, 'Louise Mendoza', '2013-11-07', '2012-12-19', '1935-9-19', 1689, '937562'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1690, false, 'CSRS', 2, 1690, 246884.8, 1690, 1, true, true, 'Andrew Owens', '2013-11-14', '2013-01-06', '1978-3-15', 1690, '954759'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1691, false, 'CSRS', 2, 1691, 386887.63, 1691, 1, true, true, 'William Coleman', '2013-08-20', '2013-08-13', '1972-6-25', 1691, '962254'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1692, false, 'CSRS', 2, 1692, 311938.59, 1692, 2, true, true, 'Jane Thompson', '2013-11-24', '2013-11-07', '1934-2-2', 1692, '992772'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1693, false, 'CSRS', 2, 1693, 202725.66, 1693, 2, false, true, 'Betty White', '2013-12-04', '2013-06-13', '1949-9-24', 1693, '939419'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1694, false, 'CSRS', 2, 1694, 337256.68, 1694, 1, false, false, 'Donna Payne', '2013-09-09', '2013-02-28', '1963-9-26', 1694, '917881'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1695, false, 'CSRS', 2, 1695, 287867.86, 1695, 2, true, true, 'Alice Cook', '2013-06-03', '2013-07-12', '1950-8-15', 1695, '983955'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1696, false, 'CSRS', 2, 1696, 393936.17, 1696, 2, true, false, 'James Ross', '2013-08-05', '2013-02-07', '1935-9-13', 1696, '981016'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1697, false, 'CSRS', 2, 1697, 299248.31, 1697, 1, true, false, 'Scott Wallace', '2013-02-27', '2013-03-20', '1941-2-22', 1697, '932903'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1698, false, 'CSRS', 2, 1698, 253554.74, 1698, 2, false, true, 'Earl Bradley', '2013-08-11', '2013-04-06', '1960-7-25', 1698, '913357'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1699, false, 'CSRS', 2, 1699, 400285.48, 1699, 1, false, true, 'Edward Kelly', '2013-08-24', '2013-05-08', '1977-1-15', 1699, '948166'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1700, false, 'CSRS', 2, 1700, 229363.67, 1700, 2, true, false, 'Donald Peters', '2013-07-30', '2013-11-17', '1921-5-17', 1700, '974438'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1701, false, 'CSRS', 2, 1701, 206199.38, 1701, 1, false, true, 'Randy Green', '2013-09-06', '2013-03-02', '1975-8-16', 1701, '976473'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1702, false, 'CSRS', 2, 1702, 390629.11, 1702, 1, false, false, 'Brenda Mendoza', '2013-09-25', '2013-02-07', '1941-11-11', 1702, '932158'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1703, false, 'CSRS', 2, 1703, 263539.65, 1703, 1, true, false, 'Norma Garza', '2013-04-14', '2013-05-01', '1928-3-18', 1703, '978445'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1704, false, 'CSRS', 2, 1704, 404397.77, 1704, 1, false, false, 'Judith Moreno', '2013-04-11', '2013-10-20', '1942-12-31', 1704, '904923'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1705, false, 'CSRS', 2, 1705, 221792.68, 1705, 1, true, true, 'Carl Palmer', '2013-04-01', '2013-04-10', '1941-2-21', 1705, '944258'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1706, false, 'CSRS', 2, 1706, 446348.92, 1706, 2, true, false, 'Louise Williamson', '2013-04-19', '2013-10-13', '1978-3-27', 1706, '985604'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1707, false, 'CSRS', 2, 1707, 274424.93, 1707, 1, false, false, 'Steven Griffin', '2013-01-07', '2013-07-12', '1973-3-14', 1707, '969933'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1708, false, 'CSRS', 2, 1708, 313379.62, 1708, 1, true, false, 'Earl Ward', '2013-08-10', '2013-07-28', '1958-11-24', 1708, '936701'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1709, false, 'CSRS', 2, 1709, 437012.57, 1709, 1, true, true, 'Peter Flores', '2013-06-12', '2013-02-26', '1930-7-14', 1709, '925628'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1710, false, 'CSRS', 2, 1710, 303504.82, 1710, 1, false, true, 'Amanda Day', '2013-06-21', '2013-05-24', '1959-8-12', 1710, '988638'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1711, false, 'CSRS', 2, 1711, 301423.72, 1711, 2, true, false, 'George Frazier', '2013-03-16', '2013-02-21', '1931-1-25', 1711, '916764'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1712, false, 'CSRS', 2, 1712, 229387.7, 1712, 2, false, true, 'Stephen Chavez', '2013-08-26', '2013-10-16', '1930-8-25', 1712, '955026'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1713, false, 'CSRS', 2, 1713, 279220.8, 1713, 1, true, true, 'Janet Kelley', '2013-04-07', '2013-09-20', '1979-1-6', 1713, '989122'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1714, false, 'CSRS', 2, 1714, 454594.53, 1714, 2, false, true, 'Kathryn Ortiz', '2012-12-19', '2013-03-24', '1961-11-24', 1714, '979422'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1715, false, 'CSRS', 2, 1715, 424984.01, 1715, 2, true, false, 'Lois Cox', '2013-04-17', '2013-07-07', '1938-9-10', 1715, '909070'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1716, false, 'CSRS', 2, 1716, 382846.31, 1716, 2, true, true, 'Dorothy Barnes', '2013-01-28', '2013-09-01', '1939-9-20', 1716, '936128'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1717, false, 'CSRS', 2, 1717, 360472.16, 1717, 1, false, true, 'Craig Wilson', '2013-03-18', '2013-01-03', '1977-2-15', 1717, '905792'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1718, false, 'CSRS', 2, 1718, 475973.02, 1718, 1, true, true, 'Roy Wheeler', '2013-02-12', '2013-01-13', '1950-4-15', 1718, '945391'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1719, false, 'CSRS', 2, 1719, 369970.79, 1719, 1, false, false, 'Antonio Hudson', '2013-03-04', '2013-05-22', '1957-7-10', 1719, '998030'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1720, false, 'CSRS', 2, 1720, 351708.15, 1720, 2, true, true, 'Donald King', '2013-10-01', '2013-06-01', '1954-8-22', 1720, '984274'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1721, false, 'CSRS', 2, 1721, 476187.59, 1721, 2, false, true, 'Joan Ramos', '2013-04-05', '2013-01-20', '1976-10-27', 1721, '943206'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1722, false, 'CSRS', 2, 1722, 367164.4, 1722, 1, false, true, 'Nancy Perez', '2013-05-08', '2013-05-24', '1930-1-25', 1722, '915499'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1723, false, 'CSRS', 2, 1723, 266421.72, 1723, 2, false, false, 'Diana Reynolds', '2013-08-20', '2013-06-11', '1972-10-7', 1723, '906517'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1724, false, 'CSRS', 2, 1724, 308165.86, 1724, 2, true, false, 'Brian Johnson', '2013-01-29', '2013-11-16', '1922-6-13', 1724, '933169'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1725, false, 'CSRS', 2, 1725, 448341.97, 1725, 2, false, false, 'Jessica Smith', '2013-07-30', '2013-06-23', '1967-12-13', 1725, '936177'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1726, false, 'CSRS', 2, 1726, 361646.29, 1726, 1, true, true, 'Barbara Alexander', '2013-06-17', '2013-07-26', '1980-7-15', 1726, '983055'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1727, false, 'CSRS', 2, 1727, 241022, 1727, 2, true, true, 'Martha Powell', '2013-04-20', '2013-01-30', '1933-5-10', 1727, '990208'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1728, false, 'CSRS', 2, 1728, 319746.79, 1728, 1, true, false, 'Donald Peters', '2013-04-13', '2013-01-07', '1921-1-28', 1728, '907374'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1729, false, 'CSRS', 2, 1729, 304727.59, 1729, 1, true, true, 'James Ross', '2013-04-27', '2013-08-05', '1927-7-5', 1729, '966370'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1730, false, 'CSRS', 2, 1730, 364912.01, 1730, 1, false, false, 'Janice Rogers', '2013-08-21', '2013-10-21', '1922-3-27', 1730, '964114'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1731, false, 'CSRS', 2, 1731, 252364.36, 1731, 2, false, false, 'Karen Day', '2013-07-28', '2013-07-17', '1959-1-28', 1731, '926839'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1732, false, 'CSRS', 2, 1732, 233709.1, 1732, 1, true, true, 'Catherine Woods', '2013-08-06', '2013-10-21', '1923-7-21', 1732, '950664'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1733, false, 'CSRS', 2, 1733, 398602.41, 1733, 2, false, false, 'Phillip Richards', '2013-05-19', '2013-06-28', '1936-7-24', 1733, '922598'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1734, false, 'CSRS', 2, 1734, 264135.2, 1734, 2, false, true, 'Lawrence Morgan', '2013-07-02', '2013-11-23', '1947-1-9', 1734, '945556'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1735, false, 'CSRS', 2, 1735, 403893.02, 1735, 1, true, true, 'Anne Stephens', '2013-12-04', '2013-11-15', '1928-11-16', 1735, '931176'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1736, false, 'CSRS', 2, 1736, 426073.95, 1736, 2, false, true, 'Aaron Castillo', '2013-10-15', '2013-01-10', '1934-4-17', 1736, '983927'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1737, false, 'CSRS', 2, 1737, 367323.58, 1737, 1, true, false, 'Steve Crawford', '2013-07-04', '2013-09-30', '1924-7-25', 1737, '928251'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1738, false, 'CSRS', 2, 1738, 454497.03, 1738, 1, true, true, 'George Frazier', '2013-11-04', '2013-07-06', '1935-5-13', 1738, '919290'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1739, false, 'CSRS', 2, 1739, 476820.53, 1739, 1, true, false, 'Gloria Garcia', '2013-10-21', '2013-02-05', '1972-11-7', 1739, '949670'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1740, false, 'CSRS', 2, 1740, 249199.55, 1740, 1, true, false, 'Mark Hanson', '2013-09-01', '2013-04-09', '1980-7-13', 1740, '953201'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1741, false, 'CSRS', 2, 1741, 441930.49, 1741, 2, true, false, 'Kelly Johnson', '2013-05-09', '2012-12-24', '1961-5-15', 1741, '980215'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1742, false, 'CSRS', 2, 1742, 260856.87, 1742, 1, true, true, 'Billy Riley', '2013-07-27', '2013-09-16', '1923-3-22', 1742, '937042'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1743, false, 'CSRS', 2, 1743, 492687.7, 1743, 1, true, false, 'Sarah Peters', '2012-12-28', '2013-01-18', '1962-8-24', 1743, '990582'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1744, false, 'CSRS', 2, 1744, 331390.81, 1744, 1, true, true, 'Brandon Long', '2013-04-17', '2013-03-29', '1938-6-6', 1744, '952690'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1745, false, 'CSRS', 2, 1745, 405404.3, 1745, 2, false, true, 'Edward Palmer', '2013-04-15', '2012-12-17', '1935-6-24', 1745, '964384'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1746, false, 'CSRS', 2, 1746, 495158.79, 1746, 2, false, false, 'Jack Mcdonald', '2013-09-09', '2012-12-28', '1948-3-21', 1746, '965760'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1747, false, 'CSRS', 2, 1747, 381411.89, 1747, 1, false, false, 'Arthur Perez', '2013-11-16', '2013-05-18', '1954-7-2', 1747, '998907'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1748, false, 'CSRS', 2, 1748, 306358.42, 1748, 2, false, false, 'Jonathan Freeman', '2013-02-17', '2013-07-28', '1932-2-19', 1748, '988668'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1749, false, 'CSRS', 2, 1749, 301164.26, 1749, 2, true, false, 'Russell Phillips', '2013-02-21', '2013-07-23', '1960-8-13', 1749, '936667'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1750, false, 'CSRS', 2, 1750, 422109.84, 1750, 2, true, false, 'Phyllis Day', '2013-07-14', '2013-05-27', '1925-6-7', 1750, '919801'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1751, false, 'CSRS', 2, 1751, 211944.48, 1751, 2, false, false, 'Marie Gonzalez', '2012-12-31', '2013-08-23', '1951-12-15', 1751, '944437'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1752, false, 'CSRS', 2, 1752, 377752.93, 1752, 2, false, true, 'Kenneth Fields', '2013-10-08', '2013-01-11', '1945-9-1', 1752, '967150'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1753, false, 'CSRS', 2, 1753, 314859.94, 1753, 2, false, false, 'Gerald Peters', '2013-11-14', '2013-06-30', '1938-12-24', 1753, '912928'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1754, false, 'CSRS', 2, 1754, 494846.26, 1754, 1, true, false, 'William Coleman', '2013-02-22', '2013-04-22', '1963-10-6', 1754, '916988'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1755, false, 'CSRS', 2, 1755, 205894.44, 1755, 2, false, false, 'Sean Romero', '2013-01-08', '2013-11-04', '1944-3-26', 1755, '946159'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1756, false, 'CSRS', 2, 1756, 372109.23, 1756, 2, true, true, 'Randy Palmer', '2013-10-25', '2013-09-10', '1950-1-31', 1756, '905320'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1757, false, 'CSRS', 2, 1757, 308316.51, 1757, 1, false, false, 'Samuel Morrison', '2012-12-19', '2013-04-28', '1955-3-18', 1757, '982851'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1758, false, 'CSRS', 2, 1758, 324614.32, 1758, 1, false, false, 'Tina Richardson', '2013-06-26', '2013-08-01', '1932-7-2', 1758, '922365'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1759, false, 'CSRS', 2, 1759, 299462.74, 1759, 1, true, true, 'Nicholas Cruz', '2013-06-21', '2013-08-06', '1938-11-1', 1759, '981514'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1760, false, 'CSRS', 2, 1760, 341720.71, 1760, 2, false, false, 'Harold Crawford', '2013-11-22', '2012-12-30', '1922-9-26', 1760, '999377'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1761, false, 'CSRS', 2, 1761, 290983.04, 1761, 1, true, false, 'Dorothy Lawson', '2013-11-11', '2013-11-12', '1957-10-14', 1761, '987359'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1762, false, 'CSRS', 2, 1762, 225408.49, 1762, 2, false, false, 'Jean Clark', '2013-05-02', '2013-02-22', '1935-11-16', 1762, '949131'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1763, false, 'CSRS', 2, 1763, 457925.99, 1763, 2, false, false, 'John Holmes', '2013-07-10', '2013-06-07', '1949-3-26', 1763, '973762'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1764, false, 'CSRS', 2, 1764, 353668.8, 1764, 2, true, false, 'Brian Harper', '2013-05-03', '2013-05-18', '1925-9-1', 1764, '942633'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1765, false, 'CSRS', 2, 1765, 285885.71, 1765, 1, false, true, 'Judy James', '2013-09-10', '2013-09-22', '1929-10-3', 1765, '905437'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1766, false, 'CSRS', 2, 1766, 256505.68, 1766, 1, true, true, 'Virginia Riley', '2013-01-01', '2013-06-28', '1937-4-4', 1766, '983420'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1767, false, 'CSRS', 2, 1767, 470746.5, 1767, 2, true, false, 'Marie Gonzalez', '2013-03-15', '2013-10-06', '1971-6-11', 1767, '928622'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1768, false, 'CSRS', 2, 1768, 438979.87, 1768, 2, true, true, 'Carlos Thompson', '2013-06-09', '2013-05-03', '1956-10-27', 1768, '969210'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1769, false, 'CSRS', 2, 1769, 328355.32, 1769, 1, true, true, 'Earl Cooper', '2013-09-25', '2013-02-02', '1929-3-2', 1769, '926217'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1770, false, 'CSRS', 2, 1770, 472884.64, 1770, 1, false, true, 'Jessica Alvarez', '2013-06-24', '2013-08-15', '1971-6-16', 1770, '962200'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1771, false, 'CSRS', 2, 1771, 307306.14, 1771, 1, true, false, 'Steve Garcia', '2013-04-16', '2013-02-22', '1961-8-25', 1771, '950738'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1772, false, 'CSRS', 2, 1772, 332328.05, 1772, 2, false, true, 'Janice Chavez', '2013-07-15', '2013-10-22', '1948-3-25', 1772, '984168'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1773, false, 'CSRS', 2, 1773, 290169, 1773, 1, false, false, 'Cheryl Banks', '2013-04-01', '2013-09-22', '1970-10-29', 1773, '937142'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1774, false, 'CSRS', 2, 1774, 251561.47, 1774, 1, false, false, 'Andrea Weaver', '2013-03-23', '2013-04-01', '1978-6-3', 1774, '927748'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1775, false, 'CSRS', 2, 1775, 321374.76, 1775, 1, true, false, 'Phillip Matthews', '2013-10-12', '2013-01-11', '1921-5-10', 1775, '986335'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1776, false, 'CSRS', 2, 1776, 346006.12, 1776, 2, true, false, 'Janet Gardner', '2013-05-14', '2013-03-02', '1923-5-10', 1776, '910061'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1777, false, 'CSRS', 2, 1777, 471363.81, 1777, 2, true, true, 'Cheryl Banks', '2013-10-04', '2012-12-29', '1928-2-8', 1777, '981485'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1778, false, 'CSRS', 2, 1778, 259708.08, 1778, 2, true, true, 'Robin Cunningham', '2013-02-05', '2013-10-31', '1950-11-12', 1778, '990098'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1779, false, 'CSRS', 2, 1779, 477297.01, 1779, 1, false, true, 'Brandon Long', '2013-11-12', '2012-12-16', '1924-2-13', 1779, '940746'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1780, false, 'CSRS', 2, 1780, 423158.78, 1780, 1, true, true, 'Carol Cunningham', '2013-10-15', '2013-02-12', '1926-5-25', 1780, '924703'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1781, false, 'CSRS', 2, 1781, 280882.1, 1781, 2, false, false, 'Jane Collins', '2013-01-10', '2013-05-13', '1932-5-5', 1781, '904778'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1782, false, 'CSRS', 2, 1782, 320168.01, 1782, 2, false, true, 'Roger Williams', '2013-08-24', '2013-02-25', '1925-8-9', 1782, '900826'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1783, false, 'CSRS', 2, 1783, 224428.2, 1783, 1, true, true, 'Johnny Garrett', '2013-07-06', '2013-03-11', '1941-8-9', 1783, '927678'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1784, false, 'CSRS', 2, 1784, 421040.32, 1784, 1, true, true, 'Billy Cook', '2013-05-19', '2013-05-05', '1953-5-4', 1784, '980743'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1785, false, 'CSRS', 2, 1785, 246596.82, 1785, 1, false, true, 'Lori Chavez', '2013-09-22', '2013-06-26', '1933-9-18', 1785, '966993'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1786, false, 'CSRS', 2, 1786, 376689.15, 1786, 2, true, false, 'Andrew Cooper', '2013-01-09', '2013-07-06', '1940-8-20', 1786, '979799'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1787, false, 'CSRS', 2, 1787, 410570.28, 1787, 2, false, true, 'Karen Day', '2013-06-28', '2013-10-06', '1966-1-8', 1787, '917744'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1788, false, 'CSRS', 2, 1788, 432524.65, 1788, 2, true, true, 'Carlos Dunn', '2013-08-22', '2012-12-28', '1962-5-17', 1788, '966368'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1789, false, 'CSRS', 2, 1789, 321258.7, 1789, 2, true, true, 'Paula Kim', '2013-01-27', '2013-03-21', '1963-8-30', 1789, '912270'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1790, false, 'CSRS', 2, 1790, 416581.1, 1790, 1, true, false, 'Louis Owens', '2012-12-21', '2013-09-11', '1968-7-22', 1790, '981571'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1791, false, 'CSRS', 2, 1791, 342423.96, 1791, 1, false, true, 'Betty White', '2013-11-30', '2013-02-24', '1974-4-18', 1791, '979423'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1792, false, 'CSRS', 2, 1792, 375786.81, 1792, 2, true, false, 'Christine Pierce', '2013-01-25', '2013-10-13', '1921-10-13', 1792, '941481'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1793, false, 'CSRS', 2, 1793, 242335.38, 1793, 1, false, true, 'Donald Peters', '2013-05-14', '2013-01-23', '1966-9-22', 1793, '922150'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1794, false, 'CSRS', 2, 1794, 481737.61, 1794, 2, false, false, 'Virginia Rivera', '2013-08-10', '2013-03-24', '1922-12-11', 1794, '920961'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1795, false, 'CSRS', 2, 1795, 462466.5, 1795, 1, true, true, 'Judith Moreno', '2012-12-29', '2013-04-17', '1962-12-22', 1795, '989154'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1796, false, 'CSRS', 2, 1796, 338402.74, 1796, 2, true, false, 'Dennis Morales', '2013-11-30', '2013-11-29', '1970-11-8', 1796, '973480'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1797, false, 'CSRS', 2, 1797, 459436.41, 1797, 2, false, false, 'Willie Burton', '2013-10-04', '2013-07-24', '1964-4-9', 1797, '918072'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1798, false, 'CSRS', 2, 1798, 307505.56, 1798, 2, true, false, 'Roger Hunt', '2013-11-08', '2013-07-06', '1973-6-5', 1798, '949894'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1799, false, 'CSRS', 2, 1799, 310082.61, 1799, 1, false, false, 'Andrea Taylor', '2013-09-24', '2013-01-05', '1942-8-17', 1799, '950755'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1800, false, 'CSRS', 2, 1800, 400936.45, 1800, 1, true, true, 'Randy Jacobs', '2013-10-20', '2013-08-17', '1972-5-6', 1800, '945040'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1801, false, 'CSRS', 2, 1801, 485546.42, 1801, 2, true, false, 'Sean Cunningham', '2013-01-17', '2013-01-26', '1968-10-7', 1801, '974527'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1802, false, 'CSRS', 2, 1802, 222615.16, 1802, 1, false, false, 'Ashley Fields', '2013-05-15', '2013-12-02', '1925-11-14', 1802, '962823'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1803, false, 'CSRS', 2, 1803, 470225.4, 1803, 2, false, false, 'Benjamin Long', '2013-06-04', '2013-03-05', '1950-2-25', 1803, '965070'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1804, false, 'CSRS', 2, 1804, 414166.73, 1804, 2, false, true, 'Pamela Snyder', '2013-10-16', '2013-03-14', '1929-2-28', 1804, '939980'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1805, false, 'CSRS', 2, 1805, 462085.17, 1805, 2, false, false, 'Roger Hunt', '2013-03-11', '2013-02-22', '1973-4-25', 1805, '969707'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1806, false, 'CSRS', 2, 1806, 272347.01, 1806, 1, false, true, 'Sean Howell', '2013-03-30', '2012-12-23', '1952-4-22', 1806, '940035'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1807, false, 'CSRS', 2, 1807, 324469.66, 1807, 2, false, false, 'Sean Romero', '2013-11-04', '2013-05-20', '1940-7-9', 1807, '940176'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1808, false, 'CSRS', 2, 1808, 384553.69, 1808, 2, true, false, 'Joan Phillips', '2013-02-01', '2013-01-04', '1974-5-2', 1808, '944080'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1809, false, 'CSRS', 2, 1809, 210887.13, 1809, 1, false, true, 'Lori Chavez', '2013-09-15', '2013-06-29', '1943-1-29', 1809, '919643'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1810, false, 'CSRS', 2, 1810, 392973.19, 1810, 1, false, false, 'Carl Andrews', '2013-06-27', '2013-11-12', '1943-10-27', 1810, '923317'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1811, false, 'CSRS', 2, 1811, 256776.41, 1811, 1, true, true, 'Martin Scott', '2013-08-13', '2013-08-21', '1966-8-30', 1811, '901547'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1812, false, 'CSRS', 2, 1812, 355205.17, 1812, 2, true, false, 'Harold Payne', '2013-03-24', '2013-06-24', '1942-3-21', 1812, '938941'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1813, false, 'CSRS', 2, 1813, 483612.15, 1813, 2, true, false, 'Laura Hamilton', '2013-09-25', '2013-12-07', '1925-1-21', 1813, '955495'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1814, false, 'CSRS', 2, 1814, 245801.42, 1814, 2, true, true, 'Fred Powell', '2013-06-02', '2013-08-09', '1925-11-16', 1814, '984077'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1815, false, 'CSRS', 2, 1815, 457411.63, 1815, 2, false, true, 'John Holmes', '2013-04-23', '2013-04-05', '1962-1-3', 1815, '917054'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1816, false, 'CSRS', 2, 1816, 351204.22, 1816, 1, true, true, 'Peter Flores', '2013-02-08', '2013-09-19', '1937-3-28', 1816, '927019'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1817, false, 'CSRS', 2, 1817, 269896.28, 1817, 2, true, false, 'Charles Harrison', '2013-09-16', '2013-07-29', '1939-5-18', 1817, '992087'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1818, false, 'CSRS', 2, 1818, 330166.72, 1818, 2, true, true, 'Carlos Harper', '2013-09-14', '2012-12-15', '1979-6-16', 1818, '928548'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1819, false, 'CSRS', 2, 1819, 310929.68, 1819, 1, true, false, 'Earl Bradley', '2013-04-20', '2013-03-29', '1979-11-10', 1819, '940999'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1820, false, 'CSRS', 2, 1820, 321127.76, 1820, 1, true, false, 'Wanda Gardner', '2013-08-26', '2013-04-21', '1966-9-15', 1820, '935793'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1821, false, 'CSRS', 2, 1821, 479052.79, 1821, 2, false, true, 'Amanda Walker', '2013-11-30', '2013-02-20', '1936-6-9', 1821, '979548'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1822, false, 'CSRS', 2, 1822, 261339.27, 1822, 2, true, false, 'Philip Washington', '2013-11-18', '2013-01-01', '1975-1-10', 1822, '963017'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1823, false, 'CSRS', 2, 1823, 238611.27, 1823, 2, true, true, 'Edward Palmer', '2013-07-02', '2013-05-11', '1961-7-12', 1823, '981028'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1824, false, 'CSRS', 2, 1824, 281313.35, 1824, 1, false, false, 'Judy Perry', '2013-10-20', '2013-07-25', '1949-8-23', 1824, '951936'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1825, false, 'CSRS', 2, 1825, 218461.8, 1825, 1, false, true, 'Laura Oliver', '2012-12-17', '2013-02-12', '1978-2-6', 1825, '988062'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1826, false, 'CSRS', 2, 1826, 459051.79, 1826, 2, true, false, 'Antonio Evans', '2013-03-08', '2013-09-10', '1933-5-27', 1826, '916712'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1827, false, 'CSRS', 2, 1827, 332787.37, 1827, 2, true, true, 'Janice Chavez', '2013-06-11', '2012-12-20', '1927-3-10', 1827, '930323'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1828, false, 'CSRS', 2, 1828, 390274.39, 1828, 2, true, false, 'George Howard', '2013-02-13', '2013-11-20', '1923-1-9', 1828, '952184'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1829, false, 'CSRS', 2, 1829, 427209.51, 1829, 1, false, true, 'Marie Bryant', '2012-12-31', '2013-07-27', '1974-4-20', 1829, '937857'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1830, false, 'CSRS', 2, 1830, 277414.61, 1830, 1, false, false, 'Theresa Willis', '2013-10-10', '2013-09-26', '1944-10-15', 1830, '939335'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1831, false, 'CSRS', 2, 1831, 301414.25, 1831, 2, true, false, 'Martin Nichols', '2013-10-10', '2012-12-11', '1954-3-29', 1831, '927803'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1832, false, 'CSRS', 2, 1832, 330367.81, 1832, 2, false, true, 'Cheryl Hunt', '2013-06-09', '2013-02-20', '1927-12-25', 1832, '989732'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1833, false, 'CSRS', 2, 1833, 379891.86, 1833, 2, true, true, 'Craig Wilson', '2013-09-27', '2013-08-18', '1964-5-22', 1833, '929443'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1834, false, 'CSRS', 2, 1834, 372024.12, 1834, 1, true, false, 'Earl Tucker', '2012-12-21', '2013-10-13', '1924-7-8', 1834, '947116'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1835, false, 'CSRS', 2, 1835, 321515.15, 1835, 2, false, false, 'Tina Sullivan', '2013-09-07', '2013-11-12', '1962-11-8', 1835, '992013'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1836, false, 'CSRS', 2, 1836, 437477.97, 1836, 1, true, true, 'Todd Taylor', '2013-06-17', '2013-11-08', '1974-8-6', 1836, '952599'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1837, false, 'CSRS', 2, 1837, 392034.3, 1837, 2, false, false, 'Alice Cook', '2012-12-31', '2013-04-23', '1975-10-29', 1837, '970077'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1838, false, 'CSRS', 2, 1838, 439507.19, 1838, 1, true, true, 'James Ross', '2013-07-26', '2013-03-09', '1962-7-12', 1838, '947389'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1839, false, 'CSRS', 2, 1839, 246474.52, 1839, 2, false, false, 'Sean Howell', '2013-08-17', '2013-09-12', '1961-12-24', 1839, '937738'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1840, false, 'CSRS', 2, 1840, 381945.8, 1840, 1, false, false, 'Lillian Cunningham', '2013-10-21', '2013-10-03', '1965-2-5', 1840, '962252'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1841, false, 'CSRS', 2, 1841, 421306.17, 1841, 2, true, true, 'Michelle Fisher', '2013-01-03', '2013-10-12', '1948-3-25', 1841, '957163'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1842, false, 'CSRS', 2, 1842, 359629.86, 1842, 2, true, false, 'Betty Jenkins', '2013-03-31', '2013-06-11', '1932-2-22', 1842, '929795'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1843, false, 'CSRS', 2, 1843, 352622.92, 1843, 1, false, true, 'Joan Ramos', '2013-07-27', '2013-04-21', '1959-8-8', 1843, '955531'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1844, false, 'CSRS', 2, 1844, 384543.22, 1844, 2, true, true, 'Harold Payne', '2013-04-23', '2013-09-10', '1971-3-9', 1844, '901412'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1845, false, 'CSRS', 2, 1845, 321050.81, 1845, 1, false, false, 'Dennis Morales', '2013-11-14', '2013-03-02', '1974-10-17', 1845, '958395'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1846, false, 'CSRS', 2, 1846, 329092.46, 1846, 1, false, false, 'Earl Ward', '2013-06-29', '2012-12-29', '1966-9-16', 1846, '904981'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1847, false, 'CSRS', 2, 1847, 303816.4, 1847, 1, false, false, 'Jesse Richardson', '2013-10-23', '2013-06-16', '1944-8-2', 1847, '962648'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1848, false, 'CSRS', 2, 1848, 257926.3, 1848, 1, true, false, 'Christopher Scott', '2013-09-04', '2013-08-06', '1975-12-29', 1848, '952256'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1849, false, 'CSRS', 2, 1849, 466635.75, 1849, 1, false, false, 'Carl Andrews', '2012-12-12', '2013-06-23', '1937-3-3', 1849, '998840'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1850, false, 'CSRS', 2, 1850, 448148.09, 1850, 1, true, false, 'Scott Romero', '2013-07-16', '2012-12-20', '1927-1-15', 1850, '992993'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1851, false, 'CSRS', 2, 1851, 378156.19, 1851, 1, true, true, 'Julie Welch', '2013-05-13', '2013-12-08', '1965-12-2', 1851, '966143'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1852, false, 'CSRS', 2, 1852, 420112.64, 1852, 2, true, true, 'Roger Cunningham', '2013-07-28', '2013-09-29', '1976-7-3', 1852, '941178'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1853, false, 'CSRS', 2, 1853, 224571.7, 1853, 2, true, true, 'Ralph Jacobs', '2013-05-03', '2013-08-31', '1937-9-3', 1853, '914746'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1854, false, 'CSRS', 2, 1854, 432515.89, 1854, 1, false, false, 'Lois Sanchez', '2013-03-17', '2013-04-30', '1946-3-10', 1854, '924956'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1855, false, 'CSRS', 2, 1855, 497124.66, 1855, 2, false, true, 'Jimmy Romero', '2013-10-16', '2013-08-18', '1921-12-4', 1855, '930814'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1856, false, 'CSRS', 2, 1856, 469657.14, 1856, 1, true, false, 'Johnny Garrett', '2013-09-08', '2013-04-30', '1964-12-31', 1856, '959780'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1857, false, 'CSRS', 2, 1857, 465630.24, 1857, 1, true, false, 'Howard Hunter', '2013-10-17', '2013-11-04', '1979-6-12', 1857, '960849'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1858, false, 'CSRS', 2, 1858, 446680.23, 1858, 1, false, false, 'Adam Long', '2013-11-05', '2013-11-19', '1960-3-3', 1858, '904457'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1859, false, 'CSRS', 2, 1859, 255651.87, 1859, 2, false, true, 'Carol Cunningham', '2013-02-13', '2013-05-08', '1956-12-14', 1859, '911924'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1860, false, 'CSRS', 2, 1860, 307984.24, 1860, 2, true, false, 'Aaron Castillo', '2013-07-11', '2013-05-29', '1932-9-7', 1860, '933928'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1861, false, 'CSRS', 2, 1861, 283774.77, 1861, 2, false, true, 'Christina Scott', '2013-08-06', '2013-04-07', '1962-11-3', 1861, '924118'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1862, false, 'CSRS', 2, 1862, 449924.27, 1862, 1, true, false, 'Jessica Alvarez', '2013-04-26', '2012-12-18', '1927-10-12', 1862, '907507'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1863, false, 'CSRS', 2, 1863, 442674.35, 1863, 2, false, true, 'Christine Pierce', '2013-11-20', '2013-03-16', '1941-7-29', 1863, '949151'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1864, false, 'CSRS', 2, 1864, 446136.12, 1864, 2, true, false, 'Julia Porter', '2013-10-28', '2013-03-22', '1967-9-17', 1864, '953972'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1865, false, 'CSRS', 2, 1865, 314970.32, 1865, 2, false, false, 'Kathryn Collins', '2013-02-13', '2013-07-21', '1946-2-17', 1865, '937686'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1866, false, 'CSRS', 2, 1866, 283633.45, 1866, 1, true, false, 'Katherine James', '2013-09-16', '2013-03-27', '1934-11-22', 1866, '908625'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1867, false, 'CSRS', 2, 1867, 338089.12, 1867, 1, true, false, 'Karen Rodriguez', '2013-09-07', '2013-02-09', '1975-10-4', 1867, '940683'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1868, false, 'CSRS', 2, 1868, 318735.19, 1868, 2, false, true, 'Billy Price', '2013-06-02', '2013-03-09', '1931-5-3', 1868, '981363'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1869, false, 'CSRS', 2, 1869, 216801.1, 1869, 2, false, false, 'George Frazier', '2013-09-10', '2013-05-23', '1928-7-24', 1869, '993185'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1870, false, 'CSRS', 2, 1870, 208772.34, 1870, 2, false, true, 'Clarence Smith', '2013-10-18', '2013-11-09', '1962-12-27', 1870, '932972'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1871, false, 'CSRS', 2, 1871, 271284, 1871, 1, false, true, 'Jerry West', '2013-09-24', '2013-06-19', '1922-1-17', 1871, '905591'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1872, false, 'CSRS', 2, 1872, 333058.44, 1872, 2, false, true, 'Donald King', '2013-05-28', '2013-07-14', '1931-2-23', 1872, '900097'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1873, false, 'CSRS', 2, 1873, 221538.89, 1873, 1, true, false, 'Christina Parker', '2013-12-09', '2013-03-27', '1937-3-22', 1873, '916851'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1874, false, 'CSRS', 2, 1874, 481998.05, 1874, 2, false, false, 'Louise Bishop', '2013-04-15', '2013-03-04', '1962-9-27', 1874, '953237'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1875, false, 'CSRS', 2, 1875, 309436.72, 1875, 2, false, false, 'Walter Frazier', '2013-11-15', '2013-09-06', '1934-4-4', 1875, '914069'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1876, false, 'CSRS', 2, 1876, 440599.17, 1876, 2, false, true, 'Billy Cook', '2013-09-22', '2013-05-26', '1925-10-11', 1876, '928946'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1877, false, 'CSRS', 2, 1877, 374296.76, 1877, 1, false, true, 'Russell Powell', '2013-05-20', '2013-02-11', '1948-6-29', 1877, '904436'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1878, false, 'CSRS', 2, 1878, 304405.45, 1878, 2, false, true, 'Dennis Alexander', '2013-10-01', '2013-06-07', '1950-2-20', 1878, '911085'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1879, false, 'CSRS', 2, 1879, 391897.55, 1879, 2, false, true, 'James Pierce', '2013-09-14', '2013-06-19', '1926-12-11', 1879, '919712'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1880, false, 'CSRS', 2, 1880, 287667.99, 1880, 1, true, true, 'Ruth Garrett', '2013-04-30', '2013-05-03', '1971-7-28', 1880, '977340'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1881, false, 'CSRS', 2, 1881, 423250.4, 1881, 1, false, true, 'Diane Ward', '2013-10-21', '2013-05-24', '1924-11-14', 1881, '975311'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1882, false, 'CSRS', 2, 1882, 273041.19, 1882, 2, true, true, 'Matthew Wood', '2013-04-13', '2013-08-29', '1955-5-12', 1882, '976753'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1883, false, 'CSRS', 2, 1883, 295736.59, 1883, 1, true, true, 'Richard Scott', '2013-01-27', '2013-05-10', '1924-6-1', 1883, '956844'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1884, false, 'CSRS', 2, 1884, 352766.3, 1884, 2, false, false, 'Edward Palmer', '2013-01-22', '2013-10-13', '1964-8-29', 1884, '921044'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1885, false, 'CSRS', 2, 1885, 250421.44, 1885, 1, false, true, 'Jack Dunn', '2013-08-08', '2013-02-28', '1937-6-25', 1885, '910224'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1886, false, 'CSRS', 2, 1886, 406590.27, 1886, 1, true, true, 'Janice Rogers', '2013-06-08', '2013-02-22', '1936-1-21', 1886, '999043'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1887, false, 'CSRS', 2, 1887, 277558.24, 1887, 1, true, true, 'Gerald Peters', '2013-08-01', '2013-03-17', '1969-1-22', 1887, '913699'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1888, false, 'CSRS', 2, 1888, 377446.73, 1888, 1, false, false, 'Juan Coleman', '2013-01-31', '2013-02-22', '1942-9-2', 1888, '957746'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1889, false, 'CSRS', 2, 1889, 495224.22, 1889, 1, true, true, 'Ruth Ramirez', '2013-08-29', '2013-11-30', '1944-5-9', 1889, '996401'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1890, false, 'CSRS', 2, 1890, 370886.05, 1890, 1, false, true, 'Cheryl Boyd', '2013-06-03', '2012-12-12', '1979-9-11', 1890, '933219'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1891, false, 'CSRS', 2, 1891, 498385.18, 1891, 2, true, true, 'Judith Moreno', '2013-04-18', '2013-07-01', '1954-2-11', 1891, '900005'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1892, false, 'CSRS', 2, 1892, 231907.23, 1892, 2, false, false, 'Laura Hamilton', '2013-10-13', '2013-03-23', '1930-6-11', 1892, '958603'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1893, false, 'CSRS', 2, 1893, 211471.21, 1893, 2, false, true, 'Annie Powell', '2012-12-29', '2013-11-06', '1929-6-10', 1893, '953651'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1894, false, 'CSRS', 2, 1894, 415063.92, 1894, 2, true, false, 'Steve Ford', '2013-06-05', '2013-09-22', '1971-12-22', 1894, '916415'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1895, false, 'CSRS', 2, 1895, 346893.47, 1895, 2, true, true, 'Brian Perkins', '2013-11-29', '2013-12-06', '1945-6-4', 1895, '962985'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1896, false, 'CSRS', 2, 1896, 404415.75, 1896, 2, true, true, 'Fred Garcia', '2013-02-03', '2013-08-10', '1944-9-26', 1896, '914600'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1897, false, 'CSRS', 2, 1897, 465083.87, 1897, 2, false, true, 'Frances Cox', '2013-04-11', '2013-12-09', '1960-8-4', 1897, '922757'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1898, false, 'CSRS', 2, 1898, 333559.03, 1898, 2, true, true, 'Judith Sanders', '2013-09-21', '2013-03-11', '1957-8-24', 1898, '991122'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1899, false, 'CSRS', 2, 1899, 377737.87, 1899, 2, false, false, 'Sarah Chavez', '2013-08-02', '2013-10-22', '1941-11-8', 1899, '935943'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1900, false, 'CSRS', 2, 1900, 440140.3, 1900, 1, true, true, 'Cheryl Austin', '2013-09-23', '2013-11-04', '1937-4-1', 1900, '910346'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1901, false, 'CSRS', 2, 1901, 242233.44, 1901, 1, false, false, 'Mark Peters', '2013-08-15', '2013-06-18', '1925-10-9', 1901, '939714'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1902, false, 'CSRS', 2, 1902, 311195.84, 1902, 1, false, false, 'Mary Turner', '2013-08-04', '2013-03-01', '1977-11-28', 1902, '966069'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1903, false, 'CSRS', 2, 1903, 340513.62, 1903, 1, false, false, 'Arthur Crawford', '2013-07-30', '2013-11-04', '1965-7-4', 1903, '934838'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1904, false, 'CSRS', 2, 1904, 365708.98, 1904, 1, false, true, 'George Bryant', '2013-06-27', '2013-09-20', '1966-3-9', 1904, '954337'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1905, false, 'CSRS', 2, 1905, 260504.37, 1905, 2, true, false, 'Norma Garza', '2013-07-21', '2013-03-13', '1969-2-4', 1905, '908512'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1906, false, 'CSRS', 2, 1906, 322540.88, 1906, 2, true, true, 'Clarence Diaz', '2013-03-16', '2013-01-03', '1971-6-18', 1906, '979454'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1907, false, 'CSRS', 2, 1907, 409237.34, 1907, 1, true, true, 'Joan Ramos', '2013-04-28', '2013-01-29', '1923-11-6', 1907, '912670'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1908, false, 'CSRS', 2, 1908, 338350.31, 1908, 2, false, false, 'Ryan Chapman', '2013-09-30', '2013-04-01', '1972-10-3', 1908, '910209'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1909, false, 'CSRS', 2, 1909, 271603.07, 1909, 1, false, true, 'Judy Oliver', '2013-04-01', '2013-10-11', '1969-7-16', 1909, '952481'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1910, false, 'CSRS', 2, 1910, 356709.64, 1910, 1, false, false, 'Wanda Gardner', '2013-09-28', '2013-01-01', '1974-12-10', 1910, '902423'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1911, false, 'CSRS', 2, 1911, 378581.68, 1911, 2, true, true, 'Kathleen Gilbert', '2013-07-17', '2013-11-15', '1966-4-21', 1911, '944157'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1912, false, 'CSRS', 2, 1912, 382527.97, 1912, 2, true, false, 'Thomas Dean', '2013-11-03', '2013-02-24', '1937-9-7', 1912, '914070'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1913, false, 'CSRS', 2, 1913, 428525.15, 1913, 2, false, false, 'Henry Morgan', '2012-12-12', '2013-09-04', '1966-10-18', 1913, '990579'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1914, false, 'CSRS', 2, 1914, 301207.38, 1914, 2, false, false, 'Gloria Garcia', '2013-01-24', '2013-04-28', '1960-10-16', 1914, '964482'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1915, false, 'CSRS', 2, 1915, 413710, 1915, 2, true, true, 'David Allen', '2013-12-05', '2013-07-10', '1941-9-30', 1915, '983210'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1916, false, 'CSRS', 2, 1916, 380942.76, 1916, 1, false, false, 'Roy Wheeler', '2013-12-05', '2013-04-14', '1962-9-27', 1916, '913374'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1917, false, 'CSRS', 2, 1917, 227082.49, 1917, 2, false, true, 'Russell Mason', '2013-01-07', '2013-10-10', '1959-3-31', 1917, '977148'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1918, false, 'CSRS', 2, 1918, 261986.94, 1918, 2, true, false, 'Earl Cooper', '2013-04-04', '2013-01-01', '1931-12-6', 1918, '978094'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1919, false, 'CSRS', 2, 1919, 321964.55, 1919, 2, false, false, 'Earl Bradley', '2013-05-16', '2013-10-11', '1962-10-30', 1919, '942835'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1920, false, 'CSRS', 2, 1920, 269346.18, 1920, 2, false, false, 'Sarah Fisher', '2013-07-23', '2013-02-05', '1955-5-26', 1920, '907983'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1921, false, 'CSRS', 2, 1921, 273197.96, 1921, 1, false, true, 'Kenneth White', '2013-10-26', '2013-07-05', '1979-2-2', 1921, '920355'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1922, false, 'CSRS', 2, 1922, 396836.53, 1922, 2, false, true, 'Andrew Cooper', '2013-04-03', '2013-07-08', '1963-3-26', 1922, '986638'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1923, false, 'CSRS', 2, 1923, 294962.11, 1923, 2, false, false, 'Judy Oliver', '2013-02-19', '2013-06-28', '1929-4-7', 1923, '903400'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1924, false, 'CSRS', 2, 1924, 217417.42, 1924, 2, false, false, 'Sarah Chavez', '2013-10-18', '2013-03-15', '1964-3-22', 1924, '954493'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1925, false, 'CSRS', 2, 1925, 297691.63, 1925, 1, false, true, 'Kenneth White', '2013-11-30', '2013-07-30', '1975-12-6', 1925, '924541'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1926, false, 'CSRS', 2, 1926, 217288.75, 1926, 1, false, true, 'Fred Garcia', '2013-09-22', '2013-10-17', '1954-10-29', 1926, '936719'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1927, false, 'CSRS', 2, 1927, 312823.5, 1927, 1, true, false, 'Scott Romero', '2013-08-15', '2013-11-15', '1942-5-19', 1927, '937958'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1928, false, 'CSRS', 2, 1928, 455262.07, 1928, 2, true, false, 'Todd Taylor', '2012-12-24', '2013-09-11', '1966-8-28', 1928, '922034'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1929, false, 'CSRS', 2, 1929, 382986.24, 1929, 2, false, false, 'Rachel Harvey', '2013-06-15', '2013-04-13', '1931-10-29', 1929, '972227'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1930, false, 'CSRS', 2, 1930, 487148.33, 1930, 1, true, true, 'Craig Wilson', '2013-01-22', '2013-05-26', '1972-5-19', 1930, '953601'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1931, false, 'CSRS', 2, 1931, 423160.19, 1931, 2, false, true, 'Bobby Holmes', '2013-07-18', '2013-06-20', '1936-8-12', 1931, '980442'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1932, false, 'CSRS', 2, 1932, 200098, 1932, 1, true, true, 'Diana Gray', '2013-08-04', '2013-01-29', '1946-8-25', 1932, '902240'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1933, false, 'CSRS', 2, 1933, 361028.38, 1933, 1, false, true, 'Aaron Castillo', '2013-11-21', '2013-10-09', '1954-3-4', 1933, '901516'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1934, false, 'CSRS', 2, 1934, 311253.51, 1934, 1, false, false, 'Steve Johnston', '2013-10-03', '2012-12-16', '1946-1-1', 1934, '914667'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1935, false, 'CSRS', 2, 1935, 481731.64, 1935, 1, true, false, 'Amy Porter', '2013-09-01', '2013-12-07', '1955-10-22', 1935, '962725'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1936, false, 'CSRS', 2, 1936, 320816.45, 1936, 2, true, false, 'Richard Scott', '2013-07-09', '2013-05-26', '1936-1-14', 1936, '996889'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1937, false, 'CSRS', 2, 1937, 265892.72, 1937, 2, false, false, 'John Holmes', '2013-09-23', '2012-12-28', '1958-1-16', 1937, '996417'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1938, false, 'CSRS', 2, 1938, 402726.88, 1938, 1, false, true, 'Sean Cunningham', '2012-12-14', '2013-06-22', '1980-11-19', 1938, '985477'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1939, false, 'CSRS', 2, 1939, 416224.44, 1939, 2, false, false, 'Jack Mcdonald', '2013-02-27', '2013-06-01', '1964-8-10', 1939, '923165'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1940, false, 'CSRS', 2, 1940, 356448.61, 1940, 1, false, true, 'Ruth Harvey', '2013-02-06', '2013-12-01', '1976-1-7', 1940, '904337'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1941, false, 'CSRS', 2, 1941, 451908.23, 1941, 2, false, false, 'Shirley Simpson', '2013-06-18', '2013-11-30', '1943-4-21', 1941, '946149'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1942, false, 'CSRS', 2, 1942, 369504.93, 1942, 2, true, false, 'Brian Scott', '2013-01-08', '2013-07-26', '1959-6-8', 1942, '924538'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1943, false, 'CSRS', 2, 1943, 489737.86, 1943, 1, false, false, 'Antonio Evans', '2013-05-25', '2013-11-29', '1935-12-20', 1943, '978747'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1944, false, 'CSRS', 2, 1944, 425502.45, 1944, 2, false, false, 'Phyllis Diaz', '2013-08-15', '2013-03-14', '1921-10-19', 1944, '969154'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1945, false, 'CSRS', 2, 1945, 460780.45, 1945, 2, true, true, 'Ruby Cruz', '2013-05-25', '2013-06-06', '1922-8-10', 1945, '948635'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1946, false, 'CSRS', 2, 1946, 221399.27, 1946, 1, false, false, 'Sara Stevens', '2013-01-06', '2013-03-10', '1959-1-10', 1946, '946844'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1947, false, 'CSRS', 2, 1947, 326273.62, 1947, 2, false, false, 'Kathryn Ortiz', '2013-02-21', '2013-05-18', '1960-6-22', 1947, '993028'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1948, false, 'CSRS', 2, 1948, 247449.52, 1948, 1, false, false, 'Louise Mendoza', '2013-07-21', '2013-07-11', '1925-1-17', 1948, '993728'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1949, false, 'CSRS', 2, 1949, 335263.67, 1949, 2, true, false, 'Louise Bishop', '2013-11-17', '2013-02-27', '1942-11-9', 1949, '986939'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1950, false, 'CSRS', 2, 1950, 244368.57, 1950, 2, true, true, 'Frances Gordon', '2013-10-15', '2013-05-19', '1950-10-21', 1950, '912699'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1951, false, 'CSRS', 2, 1951, 277832.71, 1951, 1, false, true, 'Lillian Mitchell', '2013-11-18', '2013-03-21', '1961-12-24', 1951, '960399'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1952, false, 'CSRS', 2, 1952, 375593.7, 1952, 2, false, true, 'Jessica Alvarez', '2013-04-01', '2013-07-15', '1961-3-3', 1952, '913232'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1953, false, 'CSRS', 2, 1953, 337830.99, 1953, 2, false, true, 'Cheryl Austin', '2013-10-04', '2013-04-25', '1948-5-27', 1953, '927118'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1954, false, 'CSRS', 2, 1954, 480566.41, 1954, 1, true, true, 'Karen Day', '2013-02-12', '2013-03-03', '1966-6-26', 1954, '945182'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1955, false, 'CSRS', 2, 1955, 303773.07, 1955, 2, true, true, 'Paul Lawrence', '2013-02-03', '2013-06-30', '1960-6-21', 1955, '937299'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1956, false, 'CSRS', 2, 1956, 459953.31, 1956, 2, true, true, 'Daniel Lynch', '2013-07-11', '2013-08-27', '1967-9-22', 1956, '919825'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1957, false, 'CSRS', 2, 1957, 224504.2, 1957, 2, false, true, 'Johnny Grant', '2013-05-06', '2013-03-27', '1945-3-25', 1957, '986449'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1958, false, 'CSRS', 2, 1958, 408316.66, 1958, 2, false, true, 'Randy Palmer', '2013-08-14', '2013-05-17', '1943-11-19', 1958, '963804'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1959, false, 'CSRS', 2, 1959, 382224.49, 1959, 1, false, true, 'Betty Morrison', '2013-01-07', '2013-06-30', '1924-12-7', 1959, '911248'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1960, false, 'CSRS', 2, 1960, 286357.8, 1960, 1, true, false, 'Doris Burton', '2013-02-23', '2013-03-30', '1945-12-11', 1960, '996737'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1961, false, 'CSRS', 2, 1961, 244010.63, 1961, 2, false, false, 'Peter Cox', '2013-01-25', '2013-06-20', '1951-12-12', 1961, '901807'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1962, false, 'CSRS', 2, 1962, 368044.28, 1962, 1, false, true, 'Wanda Gardner', '2013-03-01', '2013-12-05', '1969-9-22', 1962, '997646'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1963, false, 'CSRS', 2, 1963, 451907.32, 1963, 1, false, true, 'Denise Young', '2013-08-20', '2013-08-27', '1956-1-28', 1963, '948308'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1964, false, 'CSRS', 2, 1964, 392598.07, 1964, 1, false, false, 'Barbara Anderson', '2013-07-20', '2013-11-16', '1950-3-7', 1964, '918222'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1965, false, 'CSRS', 2, 1965, 431474.34, 1965, 1, false, false, 'Gloria Garcia', '2013-05-29', '2013-04-30', '1949-5-28', 1965, '977864'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1966, false, 'CSRS', 2, 1966, 358653.87, 1966, 1, true, true, 'Brenda Mendoza', '2013-03-25', '2013-11-20', '1977-1-14', 1966, '988104'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1967, false, 'CSRS', 2, 1967, 490636.79, 1967, 2, true, false, 'Daniel Richards', '2013-08-30', '2013-08-30', '1976-9-14', 1967, '991794'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1968, false, 'CSRS', 2, 1968, 460419.85, 1968, 1, true, true, 'Mark Peters', '2013-08-24', '2013-08-28', '1978-6-30', 1968, '936677'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1969, false, 'CSRS', 2, 1969, 259590.77, 1969, 1, false, false, 'Craig Alexander', '2013-01-14', '2013-01-29', '1965-4-16', 1969, '993782'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1970, false, 'CSRS', 2, 1970, 202148.02, 1970, 2, true, true, 'Brandon Long', '2013-02-24', '2012-12-29', '1932-10-20', 1970, '981234'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1971, false, 'CSRS', 2, 1971, 377734.47, 1971, 1, false, false, 'Judith Williams', '2013-04-13', '2013-02-13', '1960-10-5', 1971, '907440'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1972, false, 'CSRS', 2, 1972, 352611.97, 1972, 2, true, true, 'Earl Cooper', '2012-12-14', '2013-05-16', '1964-9-16', 1972, '915942'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1973, false, 'CSRS', 2, 1973, 274917.71, 1973, 1, true, true, 'Steven Griffin', '2013-04-25', '2013-08-13', '1938-9-3', 1973, '933415'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1974, false, 'CSRS', 2, 1974, 424805.08, 1974, 2, true, true, 'Harold Welch', '2013-11-09', '2013-02-05', '1931-5-14', 1974, '904060'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1975, false, 'CSRS', 2, 1975, 281687.67, 1975, 2, false, true, 'Earl Tucker', '2013-01-18', '2012-12-31', '1933-3-14', 1975, '932327'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1976, false, 'CSRS', 2, 1976, 458962.33, 1976, 2, true, false, 'Billy Riley', '2013-06-28', '2013-10-12', '1979-7-3', 1976, '916837'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1977, false, 'CSRS', 2, 1977, 463419.32, 1977, 1, false, false, 'Diana Gray', '2013-02-27', '2013-10-25', '1948-12-24', 1977, '970526'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1978, false, 'CSRS', 2, 1978, 381753.48, 1978, 1, false, true, 'Bobby Burton', '2013-06-07', '2013-02-11', '1970-6-26', 1978, '944076'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1979, false, 'CSRS', 2, 1979, 326995.07, 1979, 1, false, false, 'Edward Olson', '2013-11-06', '2013-01-05', '1940-5-13', 1979, '907932'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1980, false, 'CSRS', 2, 1980, 374106.17, 1980, 2, false, false, 'Martin Watkins', '2013-11-13', '2013-01-27', '1957-8-8', 1980, '963824'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1981, false, 'CSRS', 2, 1981, 415496.7, 1981, 2, false, true, 'Roy Cooper', '2013-01-23', '2013-10-28', '1922-4-21', 1981, '939820'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1982, false, 'CSRS', 2, 1982, 497355.9, 1982, 2, true, true, 'Willie Cox', '2013-07-23', '2013-04-26', '1922-4-12', 1982, '992873'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1983, false, 'CSRS', 2, 1983, 373993.73, 1983, 1, true, true, 'Beverly Little', '2013-02-19', '2013-09-10', '1964-2-26', 1983, '907306'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1984, false, 'CSRS', 2, 1984, 475174.24, 1984, 1, false, false, 'Ryan Henry', '2013-10-19', '2013-08-19', '1927-5-28', 1984, '994832'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1985, false, 'CSRS', 2, 1985, 413338.61, 1985, 2, true, true, 'Jean Fernandez', '2012-12-19', '2013-10-23', '1927-9-17', 1985, '922993'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1986, false, 'CSRS', 2, 1986, 318756.68, 1986, 1, false, true, 'Martha Hunt', '2013-10-24', '2013-04-02', '1962-2-18', 1986, '905570'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1987, false, 'CSRS', 2, 1987, 370460.03, 1987, 1, false, false, 'Thomas Dean', '2013-10-24', '2013-02-27', '1946-6-9', 1987, '918316'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1988, false, 'CSRS', 2, 1988, 486103.69, 1988, 2, true, false, 'Craig Alexander', '2013-04-12', '2013-06-27', '1957-1-6', 1988, '927263'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1989, false, 'CSRS', 2, 1989, 218942.2, 1989, 1, false, true, 'Jacqueline Boyd', '2013-05-27', '2013-04-20', '1971-7-21', 1989, '941623'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1990, false, 'CSRS', 2, 1990, 476496.8, 1990, 1, true, false, 'Diana Andrews', '2012-12-29', '2013-10-20', '1927-12-24', 1990, '919803'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1991, false, 'CSRS', 2, 1991, 321246.86, 1991, 2, false, false, 'Robin Ward', '2013-02-16', '2013-08-05', '1958-6-8', 1991, '924647'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1992, false, 'CSRS', 2, 1992, 250117.72, 1992, 1, false, false, 'Bobby Sims', '2013-05-27', '2013-09-15', '1979-11-28', 1992, '953313'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1993, false, 'CSRS', 2, 1993, 334050.38, 1993, 2, false, false, 'Louise Bishop', '2013-02-06', '2013-11-27', '1961-5-29', 1993, '945819'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1994, false, 'CSRS', 2, 1994, 231916.82, 1994, 1, false, false, 'Richard Myers', '2012-12-13', '2013-05-29', '1969-7-22', 1994, '949321'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1995, false, 'CSRS', 2, 1995, 203557.12, 1995, 2, false, false, 'Henry Kelley', '2013-07-14', '2012-12-15', '1926-1-10', 1995, '965829'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1996, false, 'CSRS', 2, 1996, 360351.69, 1996, 1, false, true, 'Richard Scott', '2012-12-22', '2013-03-02', '1968-10-7', 1996, '950875'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1997, false, 'CSRS', 2, 1997, 279504.87, 1997, 1, true, false, 'Albert Adams', '2013-08-04', '2013-11-30', '1930-7-15', 1997, '920698'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1998, false, 'CSRS', 2, 1998, 247752.09, 1998, 1, true, false, 'Roy Reid', '2013-07-11', '2013-05-12', '1954-3-4', 1998, '973872'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(1999, false, 'CSRS', 2, 1999, 336977.49, 1999, 2, false, true, 'Bruce Walker', '2013-10-04', '2013-07-02', '1959-1-18', 1999, '955404'); INSERT INTO opm.account(id, deleted, plan_type, form_type_id, account_holder_id, balance, billing_summary_id, account_status_id, grace, frozen, claim_officer, claim_officer_assignment_date, returned_from_record_date, claimant_birthdate, account_confirmation_validation_id, claim_number) VALUES(2000, false, 'CSRS', 2, 2000, 282744.99, 2000, 1, true, true, 'Sean Cunningham', '2013-05-18', '2013-09-08', '1944-5-25', 2000, '960313'); UPDATE opm.account set billing_summary_id = null where id > 1; ALTER SEQUENCE opm.account_id_seq RESTART WITH 3001;
429.055445
485
0.790427
3608c0324787df9b11da4e1c38e523a1e6cbcc90
3,825
dart
Dart
lib/components/swipe/pet_card.dart
adoptandlove/1.0
8a51d68fb1ddda4d185e9d99f2151eab9d1ef14c
[ "Apache-2.0" ]
3
2019-01-26T13:45:14.000Z
2020-06-04T07:11:57.000Z
lib/components/swipe/pet_card.dart
adoptandlove/1.0
8a51d68fb1ddda4d185e9d99f2151eab9d1ef14c
[ "Apache-2.0" ]
1
2020-05-25T17:22:26.000Z
2020-05-25T18:44:26.000Z
lib/components/swipe/pet_card.dart
adoptandlove/1.0
8a51d68fb1ddda4d185e9d99f2151eab9d1ef14c
[ "Apache-2.0" ]
2
2019-02-20T06:48:19.000Z
2022-01-29T16:21:56.000Z
import 'package:flutter/material.dart'; import 'package:getpet/pets.dart'; import 'package:getpet/utils/image_utils.dart'; import 'package:getpet/utils/screen_utils.dart'; import 'package:getpet/widgets/getpet_network_image.dart'; class PetCard extends StatelessWidget { final Pet pet; const PetCard({ Key key, @required this.pet, }) : assert(pet != null), super(key: key); @override Widget build(BuildContext context) { final screenWidth = getScreenWidth(context); final imageUrl = getSizedImageUrl( pet.profilePhoto, screenWidth, ceilToHundreds: true, ); return ClipRRect( borderRadius: BorderRadius.circular(30), child: Card( child: Stack( fit: StackFit.expand, children: <Widget>[ ColoredBox( color: Theme.of(context).primaryColor, child: Hero( tag: "pet-${pet.id}-photo-image-cover", child: GetPetNetworkImage( url: imageUrl, color: Colors.white, ), ), ), PetCardInformation( pet: pet, iconData: Icons.info, ), ], ), ), ); } } class PetCardInformation extends StatelessWidget { final Pet pet; final IconData iconData; const PetCardInformation({ Key key, @required this.pet, this.iconData, }) : assert(pet != null), super(key: key); // https://github.com/flutter/flutter/issues/12463 Widget _flightShuttleBuilder( BuildContext flightContext, Animation<double> animation, HeroFlightDirection flightDirection, BuildContext fromHeroContext, BuildContext toHeroContext, ) { return DefaultTextStyle( style: DefaultTextStyle.of(toHeroContext).style, child: toHeroContext.widget, ); } @override Widget build(BuildContext context) { return IgnorePointer( child: Hero( tag: "pet-${pet.id}-card-information", flightShuttleBuilder: _flightShuttleBuilder, child: Align( alignment: Alignment.bottomLeft, child: Container( decoration: BoxDecoration( gradient: LinearGradient( begin: Alignment.topCenter, end: Alignment.bottomCenter, colors: [ Colors.transparent, Colors.black.withOpacity(0.8), ], ), ), padding: const EdgeInsets.all(24.0), child: Row( mainAxisSize: MainAxisSize.max, children: <Widget>[ Expanded( child: new Column( crossAxisAlignment: CrossAxisAlignment.start, mainAxisSize: MainAxisSize.min, children: <Widget>[ Text( pet.name, maxLines: 1, style: new TextStyle( color: Colors.white, fontWeight: FontWeight.bold, fontSize: 26.0, ), ), Text( pet.shortDescription, maxLines: 2, style: TextStyle( color: Colors.white, fontSize: 18.0, ), ), ], ), ), if (iconData != null) Icon( iconData, color: Colors.white, ), ], ), ), ), ), ); } }
27.717391
65
0.48549
48fed106f4ee04905af06ad6781b07930071d31d
723
cpp
C++
components/render/opengl_driver/sources/render_target_manager/swap_chain_manager/gl_swap_chain_null_frame_buffer.cpp
untgames/funner
c91614cda55fd00f5631d2bd11c4ab91f53573a3
[ "MIT" ]
7
2016-03-30T17:00:39.000Z
2017-03-27T16:04:04.000Z
components/render/opengl_driver/sources/render_target_manager/swap_chain_manager/gl_swap_chain_null_frame_buffer.cpp
untgames/Funner
c91614cda55fd00f5631d2bd11c4ab91f53573a3
[ "MIT" ]
4
2017-11-21T11:25:49.000Z
2018-09-20T17:59:27.000Z
components/render/opengl_driver/sources/render_target_manager/swap_chain_manager/gl_swap_chain_null_frame_buffer.cpp
untgames/Funner
c91614cda55fd00f5631d2bd11c4ab91f53573a3
[ "MIT" ]
4
2016-11-29T15:18:40.000Z
2017-03-27T16:04:08.000Z
#include "shared.h" using namespace render::low_level; using namespace render::low_level::opengl; using namespace common; /* Конструктор */ SwapChainNullFrameBuffer::SwapChainNullFrameBuffer (const FrameBufferManagerPtr& in_frame_buffer_manager) : ContextObject (in_frame_buffer_manager->GetContextManager ()), frame_buffer_manager (in_frame_buffer_manager) {} /* Установка буфера в контекст OpenGL */ void SwapChainNullFrameBuffer::Bind () { try { frame_buffer_manager->SetFrameBuffer ((ISwapChain*)0, GL_NONE, 0, 0); } catch (xtl::exception& exception) { exception.touch ("render::low_level::opengl::SwapChainNullFrameBuffer::Bind"); throw; } }
22.59375
106
0.71231
0ef70f74f0c7c8db8fcb1c09a0b478e0e93562fa
4,174
ts
TypeScript
src/ts/data/megido/so/So14.ts
aruta2525/megido-tool
2dcdd91c877aa1b60195402c4fc37483c1df222e
[ "MIT" ]
null
null
null
src/ts/data/megido/so/So14.ts
aruta2525/megido-tool
2dcdd91c877aa1b60195402c4fc37483c1df222e
[ "MIT" ]
null
null
null
src/ts/data/megido/so/So14.ts
aruta2525/megido-tool
2dcdd91c877aa1b60195402c4fc37483c1df222e
[ "MIT" ]
null
null
null
import {IMegido} from '../../../interface/IMegido'; import {SkillType, Attribute, ClassType, StyleType, ClockType} from '../../../enum/Megido'; export const So14: IMegido[] = [ { clockType: ClockType.So, no: 14, id: 1, name: 'レラジェ', styleType: StyleType.Counter, classType: ClassType.Sniper, hp: 5980, offense: 1386, defense: 424, speed: 475, ability: {name: 'ビーストハンター', text: '獣系のモンスターに2倍のダメージ'}, skills: [ { name: 'アタック', type: SkillType.Attack, levels: [ { level: 1, magnification: 1, hit: 1 } ] }, { name: 'シャープショット+', type: SkillType.Skill, levels: [ { level: 1, label: '通常', magnification: 1.25, hit: 1, text: '敵単体に攻撃力1.25倍のダメージ。さらに60%の確率で、自身にアタックフォトンを1つ追加する' }, { level: 1, label: 'Bアーツ', magnification: 1.25, hit: 1, text: 'バレットを消費し、敵単体に攻撃力1.25倍のダメージ。さらに80%の確率で自身にアタックフォトンを1つ追加する' } ] }, { name: 'クランブルアロー+', type: SkillType.AwakeningSkill, levels: [ { level: 1, label: '通常', magnification: 2, hit: 1, text: '敵単体に攻撃力2倍のダメージ。さらに積まれているフォトンを1つ破壊する' }, { level: 1, label: 'Bアーツ', magnification: 2.5, hit: 1, text: 'バレットを消費し、敵単体に攻撃力2.5倍のダメージ。さらに積まれているフォトンを1つ破壊する' } ] }, { name: 'パワースナイプ+', type: SkillType.Mysteries, levels: [ { level: 1, magnification: 2.75, hit: 1, text: '敵単体に攻撃力2.75倍のダメージ。さらに55%の確率で、敵を即死させる【攻撃を2回受けるたびにスキルLv上昇】' }, { level: 2, magnification: 3.75, hit: 1, text: '敵単体に攻撃力3.75倍のダメージ。さらに55%の確率で、敵を即死させる【攻撃を2回受けるたびにスキルLv上昇】' }, { level: 3, magnification: 4.75, hit: 1, text: '敵単体に攻撃力4.75倍のダメージ。さらに55%の確率で、敵を即死させる【攻撃を2回受けるたびにスキルLv上昇】' }, { level: 4, magnification: 5.75, hit: 1, text: '敵単体に攻撃力5.75倍のダメージ。さらに55%の確率で、敵を即死させる' } ], increment: 0.05 } ] }, { clockType: ClockType.So, no: 14, id: 2, name: 'レラジェ', styleType: StyleType.Rush, classType: ClassType.Sniper, hp: 6116, offense: 1210, defense: 644, speed: 430, ability: {name: '手堅い一手', text: '自身の点穴が69以下のとき、攻撃時に点穴の効果発動と消費がされない'}, skills: [ { name: 'アタック', type: SkillType.Attack, levels: [ { level: 1, magnification: 1, hit: 1 } ] }, { name: '凛然の一矢+', type: SkillType.Skill, levels: [ { level: 1, label: '通常', magnification: 1.5, hit: 1, text: '敵単体に攻撃力1.5倍のダメージ。さらに敵が悪魔のときダメージが2倍になる' }, { level: 1, label: 'Bアーツ', magnification: 1.5, hit: 1, text: 'バレットを消費し、敵単体に攻撃力1.5倍のダメージ。敵が悪魔のときダメージが2倍になる。さらに、自身の点穴を+20する' } ] }, { name: '不失正鵠之舞+', type: SkillType.AwakeningSkill, text: '自身の点穴を+25する', levels: [ { level: 1, magnification: 0, hit: 0 } ] }, { name: 'この矢外させ給ふな+', type: SkillType.Mysteries, levels: [ { level: 1, label: '通常', magnification: 2, hit: 1, text: '敵単体に攻撃力2倍のダメージ。さらに自身の点穴を+20する' }, { level: 1, label: 'Bアーツ', magnification: 2, hit: 1, text: 'バレットを消費し、敵単体に攻撃力2倍のダメージ。さらに自身の点穴を+35する' } ], increment: 0.05 } ] } ]; /* */
22.684783
91
0.428606
04ca5cea8200becd14606366bf794cbbf752c247
7,211
java
Java
platform/src/main/java/com/adobe/cq/testing/it/platform/compile/jsp/JSPCompileErrorPublish.java
bogdananton/aem-test-samples
598b658e4125644d14ffe448c8e1041091c2c8d9
[ "Apache-2.0" ]
null
null
null
platform/src/main/java/com/adobe/cq/testing/it/platform/compile/jsp/JSPCompileErrorPublish.java
bogdananton/aem-test-samples
598b658e4125644d14ffe448c8e1041091c2c8d9
[ "Apache-2.0" ]
null
null
null
platform/src/main/java/com/adobe/cq/testing/it/platform/compile/jsp/JSPCompileErrorPublish.java
bogdananton/aem-test-samples
598b658e4125644d14ffe448c8e1041091c2c8d9
[ "Apache-2.0" ]
null
null
null
/* * Copyright 2018 Adobe Systems Incorporated * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.adobe.cq.testing.it.platform.compile.jsp; import com.adobe.cq.testing.client.CQClient; import com.adobe.cq.testing.junit.rules.CQPublishClassRule; import com.adobe.cq.testing.junit.rules.CQRule; import com.adobe.cq.testing.util.LoginUtil; import org.apache.sling.testing.clients.ClientException; import org.apache.sling.testing.clients.SlingHttpResponse; import org.codehaus.jackson.JsonNode; import org.junit.Assert; import org.junit.Before; import org.junit.ClassRule; import org.junit.Rule; import org.junit.Test; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.Map; /** * Simple smoke tests to check roughly if cq pages throw a JSP compile error */ public class JSPCompileErrorPublish extends JSPCompileUtil { @ClassRule public static CQPublishClassRule cqPublishBaseClassRule = new CQPublishClassRule(); @Rule public CQRule cqBaseRule = new CQRule(); private String loginToken; private CQClient anonymousPublish; private CQClient adminPublish; @Before public void prepareLogin() throws IOException { anonymousPublish = cqPublishBaseClassRule.publishRule.getClient(CQClient.class, "anonymous", "anonymous"); adminPublish = cqPublishBaseClassRule.publishRule.getAdminClient(CQClient.class); loginToken = LoginUtil.getLoginToken(anonymousPublish, ""); } /** * Check JSP compile errors in login page * * @throws ClientException */ @Test public void testLogin() throws ClientException { SlingHttpResponse exec = anonymousPublish.doGet("/libs/granite/core/content/login.html"); Assert.assertFalse("Login page has JSP Compile errors!", checkHtmlForCompileError(exec.getContent())); } /** * Check JSP compile errors in libs pages * * @throws ClientException */ @Test public void testLibs() throws ClientException, InterruptedException { JsonNode exec = searchCQPages(adminPublish, "/libs"); // Ignore handles in check ArrayList<String> ignoreHandles = new ArrayList<>(); // loop through result and find pages which shows JSP compile errors Map<String, List<String>> list = getFailures(anonymousPublish, loginToken, exec, ignoreHandles); Assert.assertTrue("Following " + list.size() + " template(s) contains components with JSP Compile errors in " + "following handles: \n" + formatFailureString(list), list.size() == 0); } /** * Check JSP compile errors in apps pages * * @throws ClientException */ @Test public void testApps() throws ClientException, InterruptedException { JsonNode results = searchCQPages(adminPublish, "/apps"); // Ignore handles in check ArrayList<String> ignoreHandles = new ArrayList<>(); // loop through result and find pages which shows JSP compile errors Map<String, List<String>> list = getFailures(anonymousPublish, loginToken, results, ignoreHandles); Assert.assertTrue("Following " + list.size() + " template(s) contains components with JSP Compile errors in " + "following handles: \n" + formatFailureString(list), list.size() == 0); } /** * Check JSP compile errors in etc pages * * @throws ClientException */ @Test public void testEtc() throws ClientException, IOException, InterruptedException { JsonNode results = searchCQPages(adminPublish, "/etc"); // Ignore handles in check ArrayList<String> ignoreHandles = new ArrayList<>(); // loop through result and find pages which shows JSP compile errors Map<String, List<String>> list = getFailures(anonymousPublish, loginToken, results, ignoreHandles); Assert.assertTrue("Following " + list.size() + " template(s) contains components with JSP Compile errors in " + "following handles: \n" + formatFailureString(list), list.size() == 0); } /** * Check JSP compile errors in content pages * * @throws ClientException */ @Test public void testContent() throws ClientException, InterruptedException { JsonNode results = searchCQPages(adminPublish, "/content"); // Ignore handles in check ArrayList<String> ignoreHandles = new ArrayList<>(); // skip communities' templates ignoreHandles.add("/content/communities/templates/basetemplate/profile"); ignoreHandles.add("/content/communities/templates/basetemplate/messaging/trash"); ignoreHandles.add("/content/communities/templates/basetemplate/messaging/sent"); ignoreHandles.add("/content/communities/templates/basetemplate/messaging/compose"); ignoreHandles.add("/content/communities/templates/basetemplate/messaging"); ignoreHandles.add("/content/communities/templates/basetemplate/search"); ignoreHandles.add("/content/communities/templates/basetemplate/signup"); ignoreHandles.add("/content/communities/templates/basetemplate/signin"); ignoreHandles.add("/content/communities/templates/basetemplate/notifications"); ignoreHandles.add("/content/communities/templates/functions/activitystream"); ignoreHandles.add("/content/communities/templates/functions/assignments"); ignoreHandles.add("/content/communities/templates/functions/blog"); ignoreHandles.add("/content/communities/templates/functions/calendar"); ignoreHandles.add("/content/communities/templates/functions/catalog"); ignoreHandles.add("/content/communities/templates/functions/filelibrary"); ignoreHandles.add("/content/communities/templates/functions/forum"); ignoreHandles.add("/content/communities/templates/functions/groups"); ignoreHandles.add("/content/communities/templates/functions/page"); ignoreHandles.add("/content/communities/templates/functions/qna"); ignoreHandles.add("/content/communities/templates/grouptemplate/members"); ignoreHandles.add("/content/geometrixx-outdoors/en/user/smartlist"); // loop through result and find pages which shows JSP compile errors Map<String, List<String>> list = getFailures(anonymousPublish, loginToken, results, ignoreHandles); Assert.assertTrue("Following " + list.size() + " template(s) contains components with JSP Compile errors in " + "following handles: \n" + formatFailureString(list), list.size() == 0); } }
41.682081
119
0.702676
dd7991f1e7cf0f94dc51b43a95be8b27f6c99ab3
1,811
php
PHP
temp/templates_c/gm/141721d89fb641df72739bfb1a5a7903e579159f_0.file.footer.html.php
ajsong/single
6d8c78e9dbd858b85433f1e59c01e9482d02429a
[ "MIT" ]
null
null
null
temp/templates_c/gm/141721d89fb641df72739bfb1a5a7903e579159f_0.file.footer.html.php
ajsong/single
6d8c78e9dbd858b85433f1e59c01e9482d02429a
[ "MIT" ]
null
null
null
temp/templates_c/gm/141721d89fb641df72739bfb1a5a7903e579159f_0.file.footer.html.php
ajsong/single
6d8c78e9dbd858b85433f1e59c01e9482d02429a
[ "MIT" ]
null
null
null
<?php /* Smarty version 3.1.32-dev-45, created on 2021-11-01 10:36:35 from '/Users/ajsong/Sites/Web/PHP/website_/application/gm/view/footer.html' */ /* @var Smarty_Internal_Template $_smarty_tpl */ if ($_smarty_tpl->_decodeProperties($_smarty_tpl, array ( 'version' => '3.1.32-dev-45', 'unifunc' => 'content_617f52b35df291_48599140', 'has_nocache_code' => false, 'file_dependency' => array ( '141721d89fb641df72739bfb1a5a7903e579159f' => array ( 0 => '/Users/ajsong/Sites/Web/PHP/website_/application/gm/view/footer.html', 1 => 1567394314, 2 => 'file', ), ), 'includes' => array ( ), ),false)) { function content_617f52b35df291_48599140 (Smarty_Internal_Template $_smarty_tpl) { ?> <!-- PAGE CONTENT ENDS --> </div><!-- /.col --> </div><!-- /.row --> </div><!-- /.page-content --> </div> </div><!-- /.main-content --> <div class="footer"> <div class="footer-inner"> <!-- #section:basics/footer --> <div class="footer-content" style="text-align:center"> <span class="bigger"> <?php echo $_smarty_tpl->tpl_vars['WEB_NAME']->value;?> &copy; <?php echo date('Y');?> <?php if (strlen($_smarty_tpl->tpl_vars['configs']->value['GLOBAL_SUPPORT'])) {?>&nbsp; | &nbsp; <copyright>技术支持:<a href="<?php echo $_smarty_tpl->tpl_vars['configs']->value['GLOBAL_SUPPORT_URL'];?> " target="_blank"><?php echo $_smarty_tpl->tpl_vars['configs']->value['GLOBAL_SUPPORT'];?> </a></copyright><?php }?> </span> </div> <!-- /section:basics/footer --> </div> </div> <a href="#" id="btn-scroll-up" class="btn-scroll-up btn btn-sm btn-inverse"> <i class="ace-icon fa fa-angle-double-up icon-only bigger-110"></i> </a> </div><!-- /.main-container --> </body> </html><?php } }
31.77193
205
0.604638
74834d438344f5fc0f7852d605bee01f9b9044ba
755
h
C
userspace/libraries/libwidget/layouts/Grid.h
feliwir/skift
8909ff0b15f4a965d803a0a37268a3c915fb380c
[ "MIT" ]
null
null
null
userspace/libraries/libwidget/layouts/Grid.h
feliwir/skift
8909ff0b15f4a965d803a0a37268a3c915fb380c
[ "MIT" ]
null
null
null
userspace/libraries/libwidget/layouts/Grid.h
feliwir/skift
8909ff0b15f4a965d803a0a37268a3c915fb380c
[ "MIT" ]
null
null
null
#pragma once #include <libwidget/Element.h> namespace Widget { static inline RefPtr<Element> grid(int hcells, int vcells, int hspacing, int vspacing, Vector<RefPtr<Element>> childs) { auto layout = make<Element>(); layout->layout(GRID(hcells, vcells, hspacing, vspacing)); layout->add(childs); return layout; } static inline RefPtr<Element> vgrid(int spacing, Vector<RefPtr<Element>> childs) { auto layout = make<Element>(); layout->layout(VGRID(spacing)); layout->add(childs); return layout; } static inline RefPtr<Element> hgrid(int spacing, Vector<RefPtr<Element>> childs) { auto layout = make<Element>(); layout->layout(HGRID(spacing)); layout->add(childs); return layout; } } // namespace Widget
22.878788
118
0.69404
809d07569873db52a5166a91ffeb4ef491adba91
4,854
java
Java
databases/orientdb/src/test/java/com/gentics/mesh/graphdb/orientdb/index/IndexRegression5Test.java
kdima001/mesh
4751923aca14aa536482712c34777ce8672ca5ee
[ "Apache-2.0" ]
563
2017-07-21T11:43:25.000Z
2022-03-31T04:11:06.000Z
databases/orientdb/src/test/java/com/gentics/mesh/graphdb/orientdb/index/IndexRegression5Test.java
kdima001/mesh
4751923aca14aa536482712c34777ce8672ca5ee
[ "Apache-2.0" ]
765
2017-07-24T07:53:26.000Z
2022-03-14T15:51:41.000Z
databases/orientdb/src/test/java/com/gentics/mesh/graphdb/orientdb/index/IndexRegression5Test.java
kdima001/mesh
4751923aca14aa536482712c34777ce8672ca5ee
[ "Apache-2.0" ]
121
2017-11-05T16:11:08.000Z
2022-03-13T16:36:20.000Z
package com.gentics.mesh.graphdb.orientdb.index; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import java.util.Collections; import java.util.List; import java.util.stream.Collectors; import java.util.stream.StreamSupport; import org.junit.Before; import org.junit.Test; import com.orientechnologies.orient.core.index.OIndex; import com.orientechnologies.orient.core.metadata.schema.OClass.INDEX_TYPE; import com.orientechnologies.orient.core.metadata.schema.OType; import com.orientechnologies.orient.core.record.impl.ODocument; import com.tinkerpop.blueprints.Direction; import com.tinkerpop.blueprints.Vertex; import com.tinkerpop.blueprints.impls.orient.OrientGraph; import com.tinkerpop.blueprints.impls.orient.OrientGraphFactory; /** * This test creates a parent child relationship graph without edges. The edges are substituted by embedded sets of uuids. */ public class IndexRegression5Test extends AbstractOrientTest { // Types public static final String NODE_TYPE = "NodeImpl"; public static final String CONTENT_TYPE = "ContentImpl"; public static final String CONTENT_EDGE_LABEL = "HAS_CONTENT"; // Indices public static final String IDX_POSTFIX = "_parents"; public static final String INDEX_NAME = NODE_TYPE + IDX_POSTFIX; // Props public static final String PARENTS_KEY = "parent"; public static final String UUID_KEY = "uuid"; private OrientGraphFactory factory; @Before public void setupDB() { factory = new OrientGraphFactory("memory:tinkerpop" + System.currentTimeMillis()).setupPool(16, 100); addTypesAndIndices(); } private void addTypesAndIndices() { addEdgeType(factory::getNoTx, CONTENT_EDGE_LABEL, null, null); addVertexType(factory::getNoTx, NODE_TYPE, null, type -> { type.createProperty(UUID_KEY, OType.STRING); type.createProperty(PARENTS_KEY, OType.EMBEDDEDSET, OType.STRING); String indexType = INDEX_TYPE.NOTUNIQUE_HASH_INDEX.toString(); ODocument meta = new ODocument().fields("ignoreNullValues", true); String fields[] = { PARENTS_KEY }; OIndex idx = type.createIndex(INDEX_NAME, indexType, null, meta, fields); assertNotNull("Index was not created.", idx); }); addVertexType(factory::getNoTx, CONTENT_TYPE, null, null); } @Test public void testVertexLookup() { addGraph(); System.out.println(); // Now iterate tree and delete the elements. // During iteration the index on NodeImpl vertices will be utilized. OrientGraph tx = factory.getTx(); try { delete(tx, "R0"); tx.commit(); } finally { tx.shutdown(); } } private void delete(OrientGraph tx, String uuid) { List<String> children = getChildren(uuid, tx); switch (uuid) { case "A": case "B": assertEquals("Each element on level one should have two children", 2, children.size()); break; case "R0": assertEquals("The root level element should have 2 children", 2, children.size()); break; default: assertEquals("Leaves should not have children", 0, children.size()); } for (String childUuid : children) { delete(tx, childUuid); } System.out.println("Deleting content of child " + uuid); Vertex vertex = tx.getVertices(UUID_KEY, uuid).iterator().next(); System.out.println("Loaded vertex " + uuid + " " + vertex.getId()); vertex.getEdges(Direction.OUT, CONTENT_EDGE_LABEL).forEach(e -> { e.remove(); System.out.println("Removed edge " + e.getId()); }); } private Object addGraph() { OrientGraph tx = factory.getTx(); try { Vertex root = createNode(tx, null, "R0"); Vertex A = createNode(tx, root, "A"); Vertex A_1 = createNode(tx, A, "A_1"); Vertex A_2 = createNode(tx, A, "A_2"); Vertex B = createNode(tx, root, "B"); Vertex B_1 = createNode(tx, B, "B_1"); Vertex B_2 = createNode(tx, B, "B_2"); tx.commit(); return root.getId(); } finally { tx.shutdown(); } } private List<String> getChildren(String parentUuid, OrientGraph tx) { System.out.println("Index lookup with key: " + parentUuid); String key[] = { PARENTS_KEY }; String value[] = { parentUuid }; return StreamSupport.stream(tx.getVertices(NODE_TYPE, key, value).spliterator(), false).map(v -> { String uuid = v.getProperty(UUID_KEY); return uuid; }).collect(Collectors.toList()); } private Vertex createNode(OrientGraph tx, Vertex parent, String uuid) { Vertex node = tx.addVertex("class:" + NODE_TYPE); node.setProperty(UUID_KEY, uuid); if (parent != null) { String parentUuid = parent.getProperty(UUID_KEY); node.setProperty(PARENTS_KEY, Collections.singleton(parentUuid)); System.out.println("Created node " + uuid + " with parent " + parentUuid); } // Add a content vertex to the given node vertex Vertex content = tx.addVertex("class:" + CONTENT_TYPE); node.addEdge(CONTENT_EDGE_LABEL, content); return node; } }
31.519481
122
0.721467
5965bc95e4d721bba2f02b942a5f4568eb55f7e9
2,704
h
C
debug.h
ClairBerlin/clairchen
bec5b4652b99a31c8776677e589f1a8c0e68bec1
[ "MIT" ]
1
2020-11-26T07:52:43.000Z
2020-11-26T07:52:43.000Z
debug.h
ClairBerlin/clairchen
bec5b4652b99a31c8776677e589f1a8c0e68bec1
[ "MIT" ]
2
2020-12-18T14:28:42.000Z
2020-12-18T14:33:26.000Z
debug.h
ClairBerlin/clairchen
bec5b4652b99a31c8776677e589f1a8c0e68bec1
[ "MIT" ]
1
2020-11-23T13:58:14.000Z
2020-11-23T13:58:14.000Z
#ifndef DEBUG_H #define DEBUG_H #ifndef DEBUG #define DEBUG 1 // enable (1) / disable (0) Serial prints #endif #if DEBUG #include <Arduino.h> #include <stdint.h> #define PRINT_INIT() do { \ while (!Serial); \ Serial.begin(9600); \ Serial.println(F("Let's clean some air!")); \ } while (0) #define PRINT_FLUSH() Serial.flush() #define PRINT(ARG) Serial.print(ARG) #define PRINT_HEX(ARG) Serial.print(ARG, HEX) #define PRINTLN(ARG) Serial.println(ARG) /* According to DR enums in lmic/lorabase_X.h */ #define PRINT_DATARATE(ARG) do { \ switch (ARG) { \ case 0: \ PRINT("DR_SF12"); \ break; \ case 1: \ PRINT("DR_SF11"); \ break; \ case 2: \ PRINT("DR_SF10"); \ break; \ case 3: \ PRINT("DR_SF9"); \ break; \ case 4: \ PRINT("DR_SF8"); \ break; \ case 5: \ PRINT("DR_SF7"); \ break; \ case 6: \ PRINT("DR_SF7B"); \ break; \ case 7: \ PRINT("DR_FSK"); \ break; \ case 8: \ PRINT("DR_NONE"); \ break; \ default: \ PRINT("INVALID DATARATE"); \ } \ } while (0) #define PRINT_RECEIVED_MSG() do { \ PRINT(F(" Received downlink message with ")); \ PRINT(LMIC.dataLen); \ PRINTLN(F(" bytes of payload")); \ PRINT(F(" RSSI [dBm]: ")); \ PRINTLN(LMIC.rssi); \ PRINT(F(" SNR [dB]: ")); \ PRINTLN(LMIC.snr / 4); \ u1_t bPort = 0; \ if (LMIC.txrxFlags & TXRX_PORT) { \ bPort = LMIC.frame[LMIC.dataBeg - 1]; \ PRINT(F(" Received message on port ")); \ PRINTLN(bPort); \ } \ if (LMIC.txrxFlags & TXRX_ACK) { \ PRINTLN(F(" Received ack")); \ } \ } while (0) #define PRINT_KEY(KEY) do { \ for (uint8_t i = 0; i < sizeof(KEY); i++) { \ if (i != 0) PRINT("-"); \ if (KEY[i] < 16) PRINT(0); \ PRINT_HEX(KEY[i]); \ } \ } while (0) #define PRINT_ADDRESSES_AND_KEYS() do { \ u4_t netid = 0; \ devaddr_t devaddr = 0; \ u1_t nwkKey[16]; \ u1_t artKey[16]; \ LMIC_getSessionKeys(&netid, &devaddr, nwkKey, artKey); \ PRINT(F("netid: ")); PRINTLN(netid); \ PRINT(F("devaddr: ")); PRINT_HEX(devaddr); PRINTLN(""); \ PRINT(F("AppSKey: ")); PRINT_KEY(artKey); PRINTLN(""); \ PRINT(F("NwSKey: ")); PRINT_KEY(nwkKey); PRINTLN(""); \ PRINT_FLUSH(); \ } while (0) #else // DEBUG #define PRINT_INIT() do {} while (0) #define PRINT_FLUSH() do {} while (0) #define PRINT(ARG) do {} while (0) #define PRINT_HEX(ARG) do {} while (0) #define PRINTLN(ARG) do {} while (0) #define PRINT_RECEIVED_MSG() do {} while (0) #define PRINT_DATARATE(ARG) do {} while (0) #define PRINT_ADDRESSES_AND_KEYS() do {} while (0) #endif // DEBUG #endif /* DEBUG_H */
23.111111
59
0.56324
49bcd6b1509763604aafd78ec5cc790893267f1b
9,548
html
HTML
app/content/texts/english_web/JG18.html
binu-alexander/thevachanonlineproject
33c318bfc8b37de035d9c8e6b2a9bf8dea153b98
[ "MIT" ]
5
2019-12-18T05:17:19.000Z
2020-04-04T07:07:21.000Z
app/content/texts/english_web/JG18.html
binu-alexander/thevachanonlineproject
33c318bfc8b37de035d9c8e6b2a9bf8dea153b98
[ "MIT" ]
1
2020-04-30T01:25:38.000Z
2020-04-30T01:25:38.000Z
app/content/texts/english_web/JG18.html
binu-alexander/thevachanonlineproject
33c318bfc8b37de035d9c8e6b2a9bf8dea153b98
[ "MIT" ]
null
null
null
<!DOCTYPE html> <html><head><meta charset='UTF-8' /> <meta name='viewport' content='width=device-width, initial-scale=1.0, user-scalable=no' /> <title>World English Bible Judges 18</title> <link href='latin.css' rel='stylesheet' /> <link href='fallback.css' rel='stylesheet' /> </head><body dir='ltr' class='section-document'> <div class='header'><div class='nav'> <a class='home' href='index.html'> &#9776; </a><a class='location latin' href='JG.html'> Judges 18 </a> <a class='prev' href='JG17.html'> &#9664; </a> <a class='next' href='JG19.html'> &#9654; </a> </div></div> <div class='chapter section JG18 engwebp eng JG latin' dir='ltr' data-id='JG18' data-nextid='JG19' data-previd='JG17' lang='en-US'> <br><div class='c'>18</div> <div class='p'> <span class='v JG18_1' data-id='JG18_1'><span class='verse1 v-num v-1'>1&nbsp;</span>In those days there was no king in Israel. In those days the tribe of the Danites sought an inheritance to dwell in; for to that day, their inheritance had not fallen to them among the tribes of Israel. </span> <span class='v JG18_2' data-id='JG18_2'><span class='v-num v-2'>2&nbsp;</span>The children of Dan sent five men of their family from their whole number, men of valor, from Zorah and from Eshtaol, to spy out the land and to search it. They said to them, “Go, explore the land!” </span></div> <div class='p'> <span class='v JG18_2' data-id='JG18_2'>They came to the hill country of Ephraim, to the house of Micah, and lodged there. </span> <span class='v JG18_3' data-id='JG18_3'><span class='v-num v-3'>3&nbsp;</span>When they were by the house of Micah, they knew the voice of the young man the Levite; so they went over there and said to him, “Who brought you here? What do you do in this place? What do you have here?” </span></div> <div class='p'> <span class='v JG18_4' data-id='JG18_4'><span class='v-num v-4'>4&nbsp;</span>He said to them, “Thus and thus has Micah dealt with me, and he has hired me, and I have become his priest.” </span></div> <div class='p'> <span class='v JG18_5' data-id='JG18_5'><span class='v-num v-5'>5&nbsp;</span>They said to him, “Please ask counsel of God, that we may know whether our way which we go shall be prosperous.” </span></div> <div class='p'> <span class='v JG18_6' data-id='JG18_6'><span class='v-num v-6'>6&nbsp;</span>The priest said to them, “Go in peace. Your way in which you go is before Yahweh.” </span></div> <div class='p'> <span class='v JG18_7' data-id='JG18_7'><span class='v-num v-7'>7&nbsp;</span>Then the five men departed and came to Laish and saw the people who were there, how they lived in safety, in the way of the Sidonians, quiet and secure; for there was no one in the land possessing authority, that might put them to shame in anything, and they were far from the Sidonians, and had no dealings with anyone else. </span> <span class='v JG18_8' data-id='JG18_8'><span class='v-num v-8'>8&nbsp;</span>They came to their brothers at Zorah and Eshtaol; and their brothers asked them, “What do you say?” </span></div> <div class='p'> <span class='v JG18_9' data-id='JG18_9'><span class='v-num v-9'>9&nbsp;</span>They said, “Arise, and let’s go up against them; for we have seen the land, and behold, it is very good. Do you stand still? Don’t be slothful to go and to enter in to possess the land. </span> <span class='v JG18_10' data-id='JG18_10'><span class='v-num v-10'>10&nbsp;</span>When you go, you will come to an unsuspecting people, and the land is large; for God has given it into your hand, a place where there is no lack of anything that is in the earth.” </span></div> <div class='p'> <span class='v JG18_11' data-id='JG18_11'><span class='v-num v-11'>11&nbsp;</span>The family of the Danites set out from Zorah and Eshtaol with six hundred men armed with weapons of war. </span> <span class='v JG18_12' data-id='JG18_12'><span class='v-num v-12'>12&nbsp;</span>They went up and encamped in Kiriath Jearim in Judah. Therefore they call that place Mahaneh Dan to this day. Behold, it is behind Kiriath Jearim. </span> <span class='v JG18_13' data-id='JG18_13'><span class='v-num v-13'>13&nbsp;</span>They passed from there to the hill country of Ephraim, and came to the house of Micah. </span></div> <div class='p'> <span class='v JG18_14' data-id='JG18_14'><span class='v-num v-14'>14&nbsp;</span>Then the five men who went to spy out the country of Laish answered and said to their brothers, “Do you know that there is in these houses an ephod, and teraphim,<span class='note' id='footnote-209'><a href='#note-209' class='key'>*</a></span> and a carved image, and a molten image? Now therefore consider what you have to do.” </span> <span class='v JG18_15' data-id='JG18_15'><span class='v-num v-15'>15&nbsp;</span>They went over there and came to the house of the young Levite man, even to the house of Micah, and asked him how he was doing. </span> <span class='v JG18_16' data-id='JG18_16'><span class='v-num v-16'>16&nbsp;</span>The six hundred men armed with their weapons of war, who were of the children of Dan, stood by the entrance of the gate. </span> <span class='v JG18_17' data-id='JG18_17'><span class='v-num v-17'>17&nbsp;</span>The five men who went to spy out the land went up, and came in there, and took the engraved image, the ephod, the teraphim, and the molten image; and the priest stood by the entrance of the gate with the six hundred men armed with weapons of war. </span></div> <div class='p'> <span class='v JG18_18' data-id='JG18_18'><span class='v-num v-18'>18&nbsp;</span>When these went into Micah’s house, and took the engraved image, the ephod, the teraphim, and the molten image, the priest said to them, “What are you doing?” </span></div> <div class='p'> <span class='v JG18_19' data-id='JG18_19'><span class='v-num v-19'>19&nbsp;</span>They said to him, “Hold your peace, put your hand on your mouth, and go with us. Be a father and a priest to us. Is it better for you to be priest to the house of one man, or to be priest to a tribe and a family in Israel?” </span></div> <div class='p'> <span class='v JG18_20' data-id='JG18_20'><span class='v-num v-20'>20&nbsp;</span>The priest’s heart was glad, and he took the ephod, the teraphim, and the engraved image, and went with the people. </span> <span class='v JG18_21' data-id='JG18_21'><span class='v-num v-21'>21&nbsp;</span>So they turned and departed, and put the little ones, the livestock, and the goods before them. </span> <span class='v JG18_22' data-id='JG18_22'><span class='v-num v-22'>22&nbsp;</span>When they were a good way from the house of Micah, the men who were in the houses near Micah’s house gathered together and overtook the children of Dan. </span> <span class='v JG18_23' data-id='JG18_23'><span class='v-num v-23'>23&nbsp;</span>As they called to the children of Dan, they turned their faces, and said to Micah, “What ails you, that you come with such a company?” </span></div> <div class='p'> <span class='v JG18_24' data-id='JG18_24'><span class='v-num v-24'>24&nbsp;</span>He said, “You have taken away my gods which I made, and the priest, and have gone away! What more do I have? How can you ask me, ‘What ails you?’ ” </span></div> <div class='p'> <span class='v JG18_25' data-id='JG18_25'><span class='v-num v-25'>25&nbsp;</span>The children of Dan said to him, “Don’t let your voice be heard among us, lest angry fellows fall on you, and you lose your life, with the lives of your household.” </span></div> <div class='p'> <span class='v JG18_26' data-id='JG18_26'><span class='v-num v-26'>26&nbsp;</span>The children of Dan went their way; and when Micah saw that they were too strong for him, he turned and went back to his house. </span> <span class='v JG18_27' data-id='JG18_27'><span class='v-num v-27'>27&nbsp;</span>They took that which Micah had made, and the priest whom he had, and came to Laish, to a people quiet and unsuspecting, and struck them with the edge of the sword; then they burned the city with fire. </span> <span class='v JG18_28' data-id='JG18_28'><span class='v-num v-28'>28&nbsp;</span>There was no deliverer, because it was far from Sidon, and they had no dealings with anyone else; and it was in the valley that lies by Beth Rehob. They built the city and lived in it. </span> <span class='v JG18_29' data-id='JG18_29'><span class='v-num v-29'>29&nbsp;</span>They called the name of the city Dan, after the name of Dan their father, who was born to Israel; however the name of the city used to be Laish. </span> <span class='v JG18_30' data-id='JG18_30'><span class='v-num v-30'>30&nbsp;</span>The children of Dan set up for themselves the engraved image; and Jonathan, the son of Gershom, the son of Moses, and his sons were priests to the tribe of the Danites until the day of the captivity of the land. </span> <span class='v JG18_31' data-id='JG18_31'><span class='v-num v-31'>31&nbsp;</span>So they set up for themselves Micah’s engraved image which he made, and it remained all the time that God’s house was in Shiloh. </span></div></div> <div class='footnotes'> <span class='footnote' id='note-209'><span class='key'>* </span><a href='#footnote-209' class='backref'>18:14</a> <span class='text'> <span class="ft">teraphim were household idols that may have been associated with inheritance rights to the household property.</span></span></span> </div> <div class='footer'><div class='nav'> <a class='prev' href='JG17.html'>&#9664;</a> <a class='home' href='index.html'>&#9776;</a> <a class='next' href='JG19.html'>&#9654;</a> </div></div> </body></html>
130.794521
418
0.714286
1dace3d17752740617d3e5bfbac6db8a422348cc
270,771
sql
SQL
sql/kf_chat.sql
Altercode99/spekta
9b8cb69f63b93d594714a28a36a3709aa18d0f24
[ "MIT" ]
null
null
null
sql/kf_chat.sql
Altercode99/spekta
9b8cb69f63b93d594714a28a36a3709aa18d0f24
[ "MIT" ]
null
null
null
sql/kf_chat.sql
Altercode99/spekta
9b8cb69f63b93d594714a28a36a3709aa18d0f24
[ "MIT" ]
null
null
null
-- phpMyAdmin SQL Dump -- version 4.9.10 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: Mar 03, 2022 at 10:54 AM -- Server version: 8.0.28-0ubuntu0.20.04.3 -- PHP Version: 7.4.27 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `kf_chat` -- -- -------------------------------------------------------- -- -- Table structure for table `gr_ads` -- CREATE TABLE `gr_ads` ( `id` bigint NOT NULL, `name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `adslot` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `adheight` int NOT NULL DEFAULT '100', `xtras` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `tms` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `gr_ads` -- INSERT INTO `gr_ads` (`id`, `name`, `content`, `adslot`, `adheight`, `xtras`, `tms`) VALUES (1, 'Tes Iklan', '<p style=\'color:#166171\'>Hardware & Network Team <br/>©Copyright 2022</p>', 'leftside', 100, '0', '2022-01-30 22:58:10'); -- -------------------------------------------------------- -- -- Table structure for table `gr_alerts` -- CREATE TABLE `gr_alerts` ( `id` bigint NOT NULL, `uid` bigint DEFAULT NULL, `type` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '10', `v1` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `v2` bigint DEFAULT NULL, `v3` bigint DEFAULT NULL, `tms` datetime DEFAULT NULL, `seen` int DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `gr_alerts` -- INSERT INTO `gr_alerts` (`id`, `uid`, `type`, `v1`, `v2`, `v3`, `tms`, `seen`) VALUES (1, 2, 'newmsg', '1', 1, 1, '2022-01-30 09:39:52', 1), (2, 2, 'newmsg', '1', 2, 1, '2022-01-30 09:40:00', 1), (3, 2, 'newmsg', '1', 3, 1, '2022-01-30 09:40:04', 1), (4, 2, 'newmsg', '1', 4, 1, '2022-01-30 09:40:07', 1), (5, 2, 'newmsg', '1', 10, 1, '2022-01-30 22:45:06', 1), (6, 4, 'newmsg', '1', 28, 1, '2022-01-31 10:06:58', 0), (7, 2, 'newmsg', '1', 29, 1, '2022-01-31 10:08:34', 1), (8, 2, 'newmsg', '1', 30, 1, '2022-01-31 10:10:36', 1), (9, 4, 'newmsg', '1', 39, 1, '2022-01-31 10:28:24', 0), (10, 2, 'newmsg', '1', 51, 1, '2022-02-02 07:46:23', 1), (11, 2, 'newmsg', '1', 52, 1, '2022-02-02 07:46:30', 1), (12, 2, 'newmsg', '1', 53, 1, '2022-02-02 07:46:47', 1), (13, 2, 'newmsg', '1', 54, 1, '2022-02-02 07:47:15', 1), (14, 4, 'newmsg', '1', 57, 1, '2022-02-02 09:51:02', 0), (15, 2, 'newmsg', '1', 61, 1, '2022-02-02 10:15:21', 1), (16, 2, 'newmsg', '1', 62, 1, '2022-02-02 10:15:28', 1), (17, 1, 'replied', '43', 77, 2, '2022-02-02 12:00:42', 1), (18, 2, 'newmsg', '1', 96, 1, '2022-02-02 22:21:05', 1), (19, 2, 'newmsg', '1', 140, 1, '2022-02-04 17:20:00', 1), (20, 3, 'liked', '43', 142, 1, '2022-02-04 17:40:11', 1), (21, 2, 'liked', '43', 130, 1, '2022-02-04 17:40:17', 1), (22, 3, 'liked', '43', 148, 1, '2022-02-06 04:16:39', 1), (23, 24, 'newmsg', '2', 283, 2, '2022-02-10 12:55:18', 1), (24, 24, 'newmsg', '2', 284, 2, '2022-02-10 12:55:35', 1), (25, 24, 'newmsg', '2', 285, 2, '2022-02-10 12:55:42', 1), (26, 24, 'newmsg', '2', 286, 2, '2022-02-10 12:55:48', 1), (27, 24, 'newmsg', '1', 288, 1, '2022-02-10 12:58:37', 1), (28, 24, 'newmsg', '1', 289, 1, '2022-02-10 12:59:57', 1), (29, 26, 'newmsg', '14', 310, 14, '2022-02-23 07:48:01', 0), (30, 14, 'newmsg', '29', 311, 29, '2022-02-23 07:49:58', 0), (31, 1, 'newmsg', '41', 329, 41, '2022-03-01 11:15:07', 1), (32, 41, 'newmsg', '1', 331, 1, '2022-03-01 12:15:19', 1), (33, 8, 'newmsg', '2', 332, 2, '2022-03-02 06:54:22', 1), (34, 2, 'newmsg', '1', 335, 1, '2022-03-02 20:48:25', 1); -- -------------------------------------------------------- -- -- Table structure for table `gr_complaints` -- CREATE TABLE `gr_complaints` ( `id` bigint NOT NULL, `gid` bigint DEFAULT NULL, `uid` bigint DEFAULT NULL, `msid` bigint DEFAULT NULL, `type` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `comment` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` int DEFAULT '1', `tms` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `gr_complaints` -- INSERT INTO `gr_complaints` (`id`, `gid`, `uid`, `msid`, `type`, `comment`, `status`, `tms`) VALUES (1, 43, 2, 74, 'inappropriate', 'Just test', 3, '2022-02-02 12:00:33'); -- -------------------------------------------------------- -- -- Table structure for table `gr_customize` -- CREATE TABLE `gr_customize` ( `id` bigint NOT NULL, `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `element` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `device` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'all', `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `v1` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `v2` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `xtra` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `gr_customize` -- INSERT INTO `gr_customize` (`id`, `name`, `element`, `device`, `type`, `v1`, `v2`, `xtra`) VALUES (1, 'custom_css', '', 'all', 'custom', '', '', '0'), (2, 'aside_left_header_bg', '.swr-grupo .lside > .head', 'all', 'background', '#FFFFFF', '#FFFFFF', '0'), (3, 'aside_left_header_icon_color', '.swr-grupo .aside > .head i', 'all', 'color', '#A9A9A9', '', '0'), (4, 'aside_left_header_icon_size', '.swr-grupo .lside > .head i', 'all', 'font-size', '25', '', '0'), (5, 'aside_left_search_bg', '.swr-grupo .lside > .search', 'all', 'background', '#F7F9FB', '#F7F9FB', '0'), (6, 'aside_left_search_input_bg', '.swr-grupo .lside > .search > input', 'all', 'background', '#FFFFFF', '#FFFFFF', '0'), (7, 'aside_left_search_input_text_color', '.swr-grupo .lside > .search > input,.swr-grupo .lside > .search > i', 'all', 'color', '#676767', '', '0'), (8, 'aside_left_search_input_font_size', '.swr-grupo .lside > .search > input', 'all', 'font-size', '14', '', '0'), (9, 'aside_left_search_input_icon_size', '.swr-grupo .lside > .search > i', 'all', 'font-size', '16', '', '0'), (10, 'aside_left_tabs_bg', '.swr-grupo .lside > .tabs', 'all', 'background', '#FFFFFF', '#FFFFFF', '0'), (11, 'aside_left_tabs_text_color', '.swr-grupo .lside > .tabs > ul > li', 'all', 'color', '#808080', '', '0'), (12, 'aside_left_active_tab_text_color', '.swr-grupo .lside > .tabs > ul > li.active', 'all', 'color', '#000000', '', '0'), (13, 'aside_left_active_tab_border_color', '.swr-grupo .lside > .tabs > ul > li.active', 'all', 'border-color', '#616161', '', 'easyedit'), (14, 'aside_left_contents_bg', '.swr-grupo .lside', 'all', 'background', '#FFFFFF', '#FFFFFF', '0'), (15, 'aside_left_list_title_text_color', '.swr-grupo .lside > .content > .list > li > div > .center > b > span', 'all', 'color', '#696767', '', '0'), (16, 'aside_left_list_sub_text_color', '.swr-grupo .lside > .content > .list > li > div > .center > span', 'all', 'color', '#828588', '', '0'), (17, 'aside_left_list_title_font-size', '.swr-grupo .lside > .content > .list > li > div > .center > b > span', 'all', 'font-size', '13', '', '0'), (18, 'aside_left_list_sub_font-size', '.swr-grupo .lside > .content > .list > li > div > .center > span', 'all', 'font-size', '12', '', '0'), (19, 'aside_left_list_options_text_color', '.swr-grupo .lside > .content > .list > li > div > .right', 'all', 'color', '#A4A5A7', '', '0'), (20, 'aside_left_list_options_font_size', '.swr-grupo .lside > .content > .list > li > div > .right', 'all', 'font-size', '11', '', '0'), (21, 'aside_left_list_options_hover_bg', '.swr-grupo .lside .opt > ul > li:hover', 'all', 'background', '#616161', '#115D61', 'easyedit'), (22, 'aside_left_list_options_hover_text_color', '.swr-grupo .lside .opt > ul > li:hover', 'all', 'color', '#FFFFFF', '', '0'), (23, 'aside_left_list_add_icon_bg', '.swr-grupo .lside > .content > .addmore > span', 'all', 'background', '#616161', '#115D61', 'easyedit'), (24, 'aside_left_list_add_icon_color', '.swr-grupo .lside > .content > .addmore > span', 'all', 'color', '#FFFFFF', '', '0'), (25, 'aside_left_list_add_icon_size', '.swr-grupo .lside > .content > .addmore > span > i', 'all', 'font-size', '16', '', '0'), (26, 'aside_right_header_bg', '.swr-grupo .rside > .head', 'all', 'background', '#FFFFFF', '#FFFFFF', '0'), (27, 'aside_right_profile_name_text_color', '.swr-grupo .rside > .top > .left > span > span', 'all', 'color', '#5A5A5A', '', '0'), (28, 'aside_right_username_text_color', '.swr-grupo .rside > .top > .left > span > span > span', 'all', 'color', '#8B8E90', '', '0'), (29, 'aside_right_search_bg', '.swr-grupo .rside > .search', 'all', 'background', '#F7F9FB', '#F7F9FB', '0'), (30, 'aside_right_search_input_bg', '.swr-grupo .rside > .search > input', 'all', 'background', '#FFFFFF', '#FFFFFF', '0'), (31, 'aside_right_search_input_text_color', '.swr-grupo .rside > .search > input,.swr-grupo .rside > .search > i', 'all', 'color', '#676767', '', '0'), (32, 'aside_right_search_input_font_size', '.swr-grupo .rside > .search > input', 'all', 'font-size', '14', '', '0'), (33, 'aside_right_search_input_icon_size', '.swr-grupo .rside > .search > i', 'all', 'font-size', '16', '', '0'), (34, 'aside_right_tabs_bg', '.swr-grupo .rside > .tabs', 'all', 'background', '#FFFFFF', '#FFFFFF', '0'), (35, 'aside_right_tabs_text_color', '.swr-grupo .rside > .tabs > ul > li', 'all', 'color', '#808080', '', '0'), (36, 'aside_right_active_tab_text_color', '.swr-grupo .rside > .tabs > ul > li.active', 'all', 'color', '#000000', '', '0'), (37, 'aside_right_active_tab_border_color', '.swr-grupo .rside > .tabs > ul > li.active', 'all', 'border-color', '#616161', '', 'easyedit'), (38, 'aside_right_contents_bg', '.swr-grupo .rside', 'all', 'background', '#FFFFFF', '#FFFFFF', '0'), (39, 'aside_right_list_title_text_color', '.swr-grupo .rside > .content > .list > li > div > .center > b > span', 'all', 'color', '#696767', '', '0'), (40, 'aside_right_list_sub_text_color', '.swr-grupo .rside > .content > .list > li > div > .center > span', 'all', 'color', '#828588', '', '0'), (41, 'aside_right_list_title_font-size', '.swr-grupo .rside > .content > .list > li > div > .center > b > span', 'all', 'font-size', '13', '', '0'), (42, 'aside_right_list_sub_font-size', '.swr-grupo .rside > .content > .list > li > div > .center > span', 'all', 'font-size', '12', '', '0'), (43, 'aside_right_list_options_text_color', '.swr-grupo .rside > .content > .list > li > div > .right', 'all', 'color', '#A4A5A7', '', '0'), (44, 'aside_right_list_options_font_size', '.swr-grupo .rside > .content > .list > li > div > .right', 'all', 'font-size', '11', '', '0'), (45, 'aside_right_list_options_hover_bg', '.swr-grupo .rside .opt > ul > li:hover', 'all', 'background', '#616161', '#115D61', 'easyedit'), (46, 'aside_right_list_options_hover_text_color', '.swr-grupo .rside .opt > ul > li:hover', 'all', 'color', '#FFFFFF', '', '0'), (47, 'aside_right_list_add_icon_bg', '.swr-grupo .rside > .content > .addmore > span', 'all', 'background', '#616161', '#115D61', 'easyedit'), (48, 'aside_right_list_add_icon_color', '.swr-grupo .rside > .content > .addmore > span', 'all', 'color', '#FFFFFF', '', '0'), (49, 'aside_right_list_add_icon_size', '.swr-grupo .rside > .content > .addmore > span > i', 'all', 'font-size', '16', '', '0'), (50, 'menu_background', '.swr-menu', 'all', 'background', '#FFFFFF', '#FFFFFF', 'easyedit'), (51, 'menu_text_color', '.swr-menu', 'all', 'color', '#000000', '', '0'), (52, 'menu_active_bg', '.swr-menu > ul > li:hover, .swr-menu > ul > li.active', 'all', 'background', '#101010', '#101010', '0'), (53, 'menu_active_text_color', '.swr-menu > ul > li:hover, .swr-menu > ul > li.active', 'all', 'color', '#FFFFFF', '', '0'), (54, 'chatbox_bg', '.swr-grupo .panel', 'all', 'background', '#F7F9FB', '#F7F9FB', '0'), (55, 'chatbox_welcome_text_color', '.swr-grupo .zeroelem > .welcome > span > i', 'all', 'color', '#6B6B6B', '', '0'), (56, 'chatbox_welcome_heading_font_size', '.swr-grupo .zeroelem > .welcome > span > i.title', 'all', 'font-size', '21', '', '0'), (57, 'chatbox_welcome_desc_font_size', '.swr-grupo .zeroelem > .welcome > span > i.desc', 'all', 'font-size', '15', '', '0'), (58, 'chatbox_welcome_footer_font_size', '.swr-grupo .zeroelem > .welcome > span> i.foot', 'all', 'font-size', '13', '', '0'), (59, 'chatbox_header_bg', '.swr-grupo .panel > .head', 'all', 'background', '#FFFFFF', '#FFFFFF', '0'), (60, 'chatbox_header_title_text_color', '.swr-grupo .panel > .head > .left > span > span', 'all', 'color', '#616161', '', 'easyedit'), (61, 'chatbox_header_title_font_size', '.swr-grupo .panel > .head > .left > span > span', 'all', 'font-size', '13', '', '0'), (62, 'chatbox_header_sub_text_color', '.swr-grupo .panel > .head > .left > span > span > span,.swr-grupo .panel > .head > .left > span > span > .typing', 'all', 'color', '#8B8E90', '', '0'), (63, 'chatbox_header_sub_font_size', '.swr-grupo .panel > .head > .left > span > span > span,.swr-grupo .panel > .head > .left > span > span > .typing', 'all', 'font-size', '12', '', '0'), (64, 'chatbox_header_icon_color', '.swr-grupo .panel > .head > .right > i', 'all', 'color', '#8B8E90', '', '0'), (65, 'chatbox_header_icon_size', '.swr-grupo .panel > .head > .right > i', 'all', 'font-size', '19', '', '0'), (66, 'chatbox_searchbox_bg', '.swr-grupo .panel > .searchbar > span > input', 'all', 'background', '#FFFFFF', '#FFFFFF', '0'), (67, 'chatbox_searchbox_text_color', '.swr-grupo .panel > .searchbar > span,.swr-grupo .panel > .searchbar > span > input', 'all', 'color', '#6B6B6B', '', '0'), (68, 'chatbox_searchbox_font_size', '.swr-grupo .panel > .searchbar > span > input', 'all', 'font-size', '14', '', '0'), (69, 'chatbox_searchbox_icon_size', '.swr-grupo .panel > .searchbar > span > i', 'all', 'font-size', '16', '', '0'), (70, 'received_message_bg', '.swr-grupo .panel > .room > .msgs > li > div > .msg > i', 'all', 'background', '#FFFFFF', '#FFFFFF', '0'), (71, 'received_message_text_color', '.swr-grupo .panel > .room > .msgs > li > div > .msg > i', 'all', 'color', '#333333', '', '0'), (72, 'received_message_mention_text_color', '.swr-grupo .panel > .room > .msgs > li > div > .msg > i i.mentnd', 'all', 'color', '#FF9800', '', '0'), (73, 'received_message_font_size', '.swr-grupo .panel > .room > .msgs > li > div > .msg > i', 'all', 'font-size', '13', '', '0'), (74, 'received_message_time_text_color', '.swr-grupo .panel > .room > .msgs > li > div i.info', 'all', 'color', '#333333', '', '0'), (75, 'received_message_time_font_size', '.swr-grupo .panel > .room > .msgs > li > div i.info', 'all', 'font-size', '10', '', '0'), (76, 'sent_message_bg', '.swr-grupo .panel > .room > .msgs > li.you > div > .msg > i', 'all', 'background', '#616161', '#115D61', 'easyedit'), (77, 'sent_message_text_color', '.swr-grupo .panel > .room > .msgs > li.you > div > .msg > i', 'all', 'color', '#FFFFFF', '', '0'), (78, 'sent_message_mention_text_color', '.swr-grupo .panel > .room > .msgs > li.you > div > .msg > i i.mentnd', 'all', 'color', '#FFEB3B', '', '0'), (79, 'sent_message_font_size', '.swr-grupo .panel > .room > .msgs > li.you > div > .msg > i', 'all', 'font-size', '13', '', '0'), (80, 'sent_message_time_text_color', '.swr-grupo .panel > .room > .msgs > li.you > div i.info', 'all', 'color', '#FFFFFF', '', '0'), (81, 'sent_message_time_font_size', '.swr-grupo .panel > .room > .msgs > li.you > div i.info', 'all', 'font-size', '10', '', '0'), (82, 'audio_player_bg', '.swr-grupo .panel > .room > .msgs > li > div > .msg > i > span.audioplay', 'all', 'background', '#607D8B', '#607D8B', '0'), (83, 'audio_player_controls_color', '.swr-grupo .panel > .room > .msgs > li > div > .msg > i > span.audioplay > span.play', 'all', 'color', '#FFFFFF', '', '0'), (84, 'audio_player_seek_bar_bg', '.swr-grupo .panel > .room > .msgs > li > div > .msg > i > span.audioplay > span.seek > i.bar', 'all', 'background', '#616161', '#616161', '0'), (85, 'audio_player_slider_color', '.swr-grupo .panel > .room > .msgs > li > div > .msg > i > span.audioplay > span.seek > i.bar > i', 'all', 'background', '#FFFFFF', '#FFFFFF', '0'), (86, 'audio_player_icon_bg', '.swr-grupo .panel > .room > .msgs > li > div > .msg > i > span.audioplay > span.icon', 'all', 'background', '#3F535D', '#3F535D', '0'), (87, 'audio_player_icon_color', '.swr-grupo .panel > .room > .msgs > li > div > .msg > i > span.audioplay > span.icon', 'all', 'color', '#FFFFFF', '', '0'), (88, 'chatbox_textarea_bg', '.swr-grupo .panel > .textbox > .box', 'all', 'background', '#F7F9FB', '#F7F9FB', '0'), (89, 'chatbox_textarea_input_bg', '.emojionearea.focused, .emojionearea > .emojionearea-editor, .emojionearea', 'all', 'background', '#FFFFFF', '#FFFFFF', '0'), (90, 'chatbox_textarea_input_text_color', '.emojionearea.focused, .emojionearea > .emojionearea-editor, .emojionearea', 'all', 'color', '#676767', '', '0'), (91, 'mobile_aside_left_header_bg', '.swr-grupo .lside > .head', 'mobile', 'background', '#616161', '#115D61', 'easyedit'), (92, 'mobile_aside_left_header_icon_color', '.swr-grupo .aside > .head i', 'mobile', 'color', '#FFFFFF', '', '0'), (93, 'mobile_aside_left_header_icon_size', '.swr-grupo .lside > .head i', 'mobile', 'font-size', '25', '', '0'), (94, 'mobile_aside_left_search_bg', '.swr-grupo .lside > .search', 'mobile', 'background', '#000000', '#000000', '0'), (95, 'mobile_aside_left_search_input_bg', '.swr-grupo .lside > .search > input', 'mobile', 'background', '#000000', '#000000', '0'), (96, 'mobile_aside_left_search_input_text_color', '.swr-grupo .lside > .search > input,.swr-grupo .lside > .search > i', 'mobile', 'color', '#FFFFFF', '', '0'), (97, 'mobile_aside_left_search_input_font_size', '.swr-grupo .lside > .search > input', 'mobile', 'font-size', '14', '', '0'), (98, 'mobile_aside_left_search_input_icon_size', '.swr-grupo .lside > .search > i', 'mobile', 'font-size', '16', '', '0'), (99, 'mobile_aside_left_tabs_bg', '.swr-grupo .lside > .tabs', 'mobile', 'background', '#FFFFFF', '#FFFFFF', '0'), (100, 'mobile_aside_left_tabs_text_color', '.swr-grupo .lside > .tabs > ul > li', 'mobile', 'color', '#808080', '', '0'), (101, 'mobile_aside_left_active_tab_text_color', '.swr-grupo .lside > .tabs > ul > li.active', 'mobile', 'color', '#000000', '', '0'), (102, 'mobile_aside_left_active_tab_border_color', '.swr-grupo .lside > .tabs > ul > li.active', 'mobile', 'custom', '#616161', '#E91E63', 'easyedit'), (103, 'mobile_aside_left_contents_bg', '.swr-grupo .lside', 'mobile', 'background', '#FFFFFF', '#FFFFFF', '0'), (104, 'mobile_aside_left_list_title_text_color', '.swr-grupo .lside > .content > .list > li > div > .center > b > span', 'mobile', 'color', '#696767', '', '0'), (105, 'mobile_aside_left_list_sub_text_color', '.swr-grupo .lside > .content > .list > li > div > .center > span', 'mobile', 'color', '#828588', '', '0'), (106, 'mobile_aside_left_list_title_font-size', '.swr-grupo .lside > .content > .list > li > div > .center > b > span', 'mobile', 'font-size', '13', '', '0'), (107, 'mobile_aside_left_list_sub_font-size', '.swr-grupo .lside > .content > .list > li > div > .center > span', 'mobile', 'font-size', '12', '', '0'), (108, 'mobile_aside_left_list_options_text_color', '.swr-grupo .lside > .content > .list > li > div > .right', 'mobile', 'color', '#A4A5A7', '', '0'), (109, 'mobile_aside_left_list_options_font_size', '.swr-grupo .lside > .content > .list > li > div > .right', 'mobile', 'font-size', '11', '', '0'), (110, 'mobile_aside_left_list_options_hover_bg', '.swr-grupo .lside .opt > ul > li:hover', 'mobile', 'background', '#616161', '#115D61', 'easyedit'), (111, 'mobile_aside_left_list_options_hover_text_color', '.swr-grupo .lside .opt > ul > li:hover', 'mobile', 'color', '#FFFFFF', '', '0'), (112, 'mobile_aside_left_list_add_icon_bg', '.swr-grupo .lside > .content > .addmore > span', 'mobile', 'background', '#616161', '#115D61', 'easyedit'), (113, 'mobile_aside_left_list_add_icon_color', '.swr-grupo .lside > .content > .addmore > span', 'mobile', 'color', '#FFFFFF', '', '0'), (114, 'mobile_aside_left_list_add_icon_size', '.swr-grupo .lside > .content > .addmore > span > i', 'mobile', 'font-size', '16', '', '0'), (115, 'mobile_aside_right_header_bg', '.swr-grupo .aside > .head, .swr-grupo .panel > .head, .swr-grupo .rside > .top', 'mobile', 'background', '#616161', '#115D61', 'easyedit'), (116, 'mobile_aside_right_profile_name_text_color', '.swr-grupo .rside > .top > .left > span > span', 'mobile', 'color', '#FFFFFF', '', '0'), (117, 'mobile_aside_right_username_text_color', '.swr-grupo .rside > .top > .left > span > span > span', 'mobile', 'color', '#FFFFFF', '', '0'), (118, 'mobile_aside_right_search_bg', '.swr-grupo .rside > .search', 'mobile', 'background', '#000000', '#000000', '0'), (119, 'mobile_aside_right_search_input_bg', '.swr-grupo .rside > .search > input', 'mobile', 'background', '#000000', '#000000', '0'), (120, 'mobile_aside_right_search_input_text_color', '.swr-grupo .rside > .search > input,.swr-grupo .rside > .search > i', 'mobile', 'color', '#FFFFFF', '', '0'), (121, 'mobile_aside_right_search_input_font_size', '.swr-grupo .rside > .search > input', 'mobile', 'font-size', '14', '', '0'), (122, 'mobile_aside_right_search_input_icon_size', '.swr-grupo .rside > .search > i', 'mobile', 'font-size', '16', '', '0'), (123, 'mobile_aside_right_tabs_bg', '.swr-grupo .rside > .tabs', 'mobile', 'background', '#FFFFFF', '#FFFFFF', '0'), (124, 'mobile_aside_right_tabs_text_color', '.swr-grupo .rside > .tabs > ul > li', 'mobile', 'color', '#808080', '', '0'), (125, 'mobile_aside_right_active_tab_text_color', '.swr-grupo .rside > .tabs > ul > li.active', 'mobile', 'color', '#000000', '', '0'), (126, 'mobile_aside_right_active_tab_border_color', '.swr-grupo .rside > .tabs > ul > li.active', 'mobile', 'border-color', '#616161', '', 'easyedit'), (127, 'mobile_aside_right_contents_bg', '.swr-grupo .rside', 'mobile', 'background', '#FFFFFF', '#FFFFFF', '0'), (128, 'mobile_aside_right_list_title_text_color', '.swr-grupo .rside > .content > .list > li > div > .center > b > span', 'mobile', 'color', '#696767', '', '0'), (129, 'mobile_aside_right_list_sub_text_color', '.swr-grupo .rside > .content > .list > li > div > .center > span', 'mobile', 'color', '#828588', '', '0'), (130, 'mobile_aside_right_list_title_font-size', '.swr-grupo .rside > .content > .list > li > div > .center > b > span', 'mobile', 'font-size', '13', '', '0'), (131, 'mobile_aside_right_list_sub_font-size', '.swr-grupo .rside > .content > .list > li > div > .center > span', 'mobile', 'font-size', '12', '', '0'), (132, 'mobile_aside_right_list_options_text_color', '.swr-grupo .rside > .content > .list > li > div > .right', 'mobile', 'color', '#A4A5A7', '', '0'), (133, 'mobile_aside_right_list_options_font_size', '.swr-grupo .rside > .content > .list > li > div > .right', 'mobile', 'font-size', '11', '', '0'), (134, 'mobile_aside_right_list_options_hover_bg', '.swr-grupo .rside .opt > ul > li:hover', 'mobile', 'background', '#616161', '#115D61', 'easyedit'), (135, 'mobile_aside_right_list_options_hover_text_color', '.swr-grupo .rside .opt > ul > li:hover', 'mobile', 'color', '#FFFFFF', '', '0'), (136, 'mobile_aside_right_list_add_icon_bg', '.swr-grupo .rside > .content > .addmore > span', 'mobile', 'background', '#616161', '#115D61', 'easyedit'), (137, 'mobile_aside_right_list_add_icon_color', '.swr-grupo .rside > .content > .addmore > span', 'mobile', 'color', '#FFFFFF', '', '0'), (138, 'mobile_aside_right_list_add_icon_size', '.swr-grupo .rside > .content > .addmore > span > i', 'mobile', 'font-size', '16', '', '0'), (139, 'mobile_menu_background', '.swr-menu', 'mobile', 'background', '#616161', '#115D61', 'easyedit'), (140, 'mobile_menu_text_color', '.swr-menu', 'mobile', 'color', '#FFFFFF', '', '0'), (141, 'mobile_menu_active_bg', '.swr-menu > ul > li:hover, .swr-menu > ul > li.active', 'mobile', 'background', '#101010', '#101010', '0'), (142, 'mobile_menu_active_text_color', '.swr-menu > ul > li:hover, .swr-menu > ul > li.active', 'mobile', 'color', '#FFFFFF', '', '0'), (143, 'mobile_chatbox_bg', '.swr-grupo .panel', 'mobile', 'background', '#F7F9FB', '#F7F9FB', '0'), (144, 'mobile_chatbox_welcome_text_color', '.swr-grupo .zeroelem > .welcome > span > i', 'mobile', 'color', '#6B6B6B', '', '0'), (145, 'mobile_chatbox_welcome_heading_font_size', '.swr-grupo .zeroelem > .welcome > span > i.title', 'mobile', 'font-size', '21', '', '0'), (146, 'mobile_chatbox_welcome_desc_font_size', '.swr-grupo .zeroelem > .welcome > span > i.desc', 'mobile', 'font-size', '15', '', '0'), (147, 'mobile_chatbox_welcome_footer_font_size', '.swr-grupo .zeroelem > .welcome > span> i.foot', 'mobile', 'font-size', '13', '', '0'), (148, 'mobile_chatbox_header_bg', '.swr-grupo .panel > .head', 'mobile', 'background', '#616161', '#115D61', 'easyedit'), (149, 'mobile_chatbox_header_title_text_color', '.swr-grupo .panel > .head > .left > span > span', 'mobile', 'color', '#FFFFFF', '', '0'), (150, 'mobile_chatbox_header_title_font_size', '.swr-grupo .panel > .head > .left > span > span', 'mobile', 'font-size', '13', '', '0'), (151, 'mobile_chatbox_header_sub_text_color', '.swr-grupo .panel > .head > .left > span > span > span,.swr-grupo .panel > .head > .left > span > span > .typing', 'mobile', 'color', '#FFFFFF', '', '0'), (152, 'mobile_chatbox_header_sub_font_size', '.swr-grupo .panel > .head > .left > span > span > span,.swr-grupo .panel > .head > .left > span > span > .typing', 'mobile', 'font-size', '12', '', '0'), (153, 'mobile_chatbox_header_icon_color', '.swr-grupo .panel > .head > .right > i', 'mobile', 'color', '#FFFFFF', '', '0'), (154, 'mobile_chatbox_header_icon_size', '.swr-grupo .panel > .head > .right > i', 'mobile', 'font-size', '22', '', '0'), (155, 'mobile_chatbox_searchbox_bg', '.swr-grupo .panel > .searchbar > span > input', 'mobile', 'background', '#FFFFFF', '#FFFFFF', '0'), (156, 'mobile_chatbox_searchbox_text_color', '.swr-grupo .panel > .searchbar > span,.swr-grupo .panel > .searchbar > span > input', 'mobile', 'color', '#6B6B6B', '', '0'), (157, 'mobile_chatbox_searchbox_font_size', '.swr-grupo .panel > .searchbar > span > input', 'mobile', 'font-size', '14', '', '0'), (158, 'mobile_chatbox_searchbox_icon_size', '.swr-grupo .panel > .searchbar > span > i', 'mobile', 'font-size', '16', '', '0'), (159, 'mobile_received_message_bg', '.swr-grupo .panel > .room > .msgs > li > div > .msg > i', 'mobile', 'background', '#FFFFFF', '#FFFFFF', '0'), (160, 'mobile_received_message_text_color', '.swr-grupo .panel > .room > .msgs > li > div > .msg > i', 'mobile', 'color', '#333333', '', '0'), (161, 'mobile_received_message_mention_text_color', '.swr-grupo .panel > .room > .msgs > li > div > .msg > i > i.mentnd', 'mobile', 'color', '#FF9800', '', '0'), (162, 'mobile_received_message_font_size', '.swr-grupo .panel > .room > .msgs > li > div > .msg > i', 'mobile', 'font-size', '13', '', '0'), (163, 'mobile_received_message_time_text_color', '.swr-grupo .panel > .room > .msgs > li > div i.info', 'mobile', 'color', '#333333', '', '0'), (164, 'mobile_received_message_time_font_size', '.swr-grupo .panel > .room > .msgs > li > div i.info', 'mobile', 'font-size', '10', '', '0'), (165, 'mobile_sent_message_bg', '.swr-grupo .panel > .room > .msgs > li.you > div > .msg > i', 'mobile', 'background', '#616161', '#115D61', 'easyedit'), (166, 'mobile_sent_message_text_color', '.swr-grupo .panel > .room > .msgs > li.you > div > .msg > i', 'mobile', 'color', '#FFFFFF', '', '0'), (167, 'mobile_sent_message_mention_text_color', '.swr-grupo .panel > .room > .msgs > li.you > div > .msg > i > i.mentnd', 'mobile', 'color', '#FFEB3B', '', '0'), (168, 'mobile_sent_message_font_size', '.swr-grupo .panel > .room > .msgs > li.you > div > .msg > i', 'mobile', 'font-size', '13', '', '0'), (169, 'mobile_sent_message_time_text_color', '.swr-grupo .panel > .room > .msgs > li.you > div i.info', 'mobile', 'color', '#FFFFFF', '', '0'), (170, 'mobile_sent_message_time_font_size', '.swr-grupo .panel > .room > .msgs > li.you > div i.info', 'mobile', 'font-size', '10', '', '0'), (171, 'mobile_audio_player_bg', '.swr-grupo .panel > .room > .msgs > li > div > .msg > i > span.audioplay', 'mobile', 'background', '#607D8B', '#607D8B', '0'), (172, 'mobile_audio_player_controls_color', '.swr-grupo .panel > .room > .msgs > li > div > .msg > i > span.audioplay > span.play', 'mobile', 'color', '#FFFFFF', '', '0'), (173, 'mobile_audio_player_seek_bar_bg', '.swr-grupo .panel > .room > .msgs > li > div > .msg > i > span.audioplay > span.seek > i.bar', 'mobile', 'background', '#616161', '#616161', '0'), (174, 'mobile_audio_player_slider_color', '.swr-grupo .panel > .room > .msgs > li > div > .msg > i > span.audioplay > span.seek > i.bar > i', 'mobile', 'background', '#FFFFFF', '#FFFFFF', '0'), (175, 'mobile_audio_player_icon_bg', '.swr-grupo .panel > .room > .msgs > li > div > .msg > i > span.audioplay > span.icon', 'mobile', 'background', '#3F535D', '#3F535D', '0'), (176, 'mobile_audio_player_icon_color', '.swr-grupo .panel > .room > .msgs > li > div > .msg > i > span.audioplay > span.icon', 'mobile', 'color', '#FFFFFF', '', '0'), (177, 'mobile_chatbox_textarea_bg', '.swr-grupo .panel > .textbox > .box', 'mobile', 'background', '#F7F9FB', '#F7F9FB', '0'), (178, 'mobile_chatbox_textarea_input_bg', '.emojionearea.focused, .emojionearea > .emojionearea-editor, .emojionearea', 'mobile', 'background', '#FFFFFF', '#FFFFFF', '0'), (179, 'mobile_chatbox_textarea_input_text_color', '.emojionearea.focused, .emojionearea > .emojionearea-editor, .emojionearea', 'mobile', 'color', '#676767', '', '0'), (180, 'form_popup_header_bg', '.grupo-pop > div > form > .head', 'all', 'background', '#616161', '#115D61', 'easyedit'), (181, 'form_popup_header_textcolor', '.grupo-pop > div > form > .head', 'all', 'color', '#FFFFFF', '', '0'), (182, 'form_popup_header_font_size', '.grupo-pop > div > form > .head', 'all', 'font-size', '14', '', '0'), (183, 'form_popup_search_bg', '.grupo-pop > div > form > .search', 'all', 'background', '#181A21', '#181A21', '0'), (184, 'form_popup_search_text_color', '.grupo-pop > div > form > .search > i, .grupo-pop > div > form > .search > input', 'all', 'color', '#E2E2E2', '', '0'), (185, 'form_popup_bg', '.grupo-pop > div > form', 'all', 'background', '#232630', '#252D40', '0'), (186, 'form_popup_field_text_color', '.grupo-pop > div > form > div > div > label', 'all', 'color', '#FFFFFF', '', '0'), (187, 'form_popup_field_font_size', '.grupo-pop > div > form > div > div > label', 'all', 'font-size', '14', '', '0'), (188, 'form_popup_input_text_color', '.grupo-pop > div > form > .fields > div > span, .grupo-pop > div > form > div > div > input, .grupo-pop > div > form > div > div > select, .grupo-pop > div > form > div > div > textarea', 'all', 'color', '#9FABB1', '', '0'), (189, 'form_popup_input_font_size', '.grupo-pop > div > form > .fields > div > span, .grupo-pop > div > form > div > div > input, .grupo-pop > div > form > div > div > select, .grupo-pop > div > form > div > div > textarea', 'all', 'font-size', '15', '', '0'), (190, 'form_popup_submit_btn_bg', '.grupo-pop > div > form > input[type=\"submit\"]', 'all', 'background', '#616161', '#115D61', 'easyedit'), (191, 'form_popup_submit_btn_text_color', '.grupo-pop > div > form > input[type=\"submit\"]', 'all', 'color', '#FFFFFF', '', '0'), (192, 'form_popup_submit_btn_font_size', '.grupo-pop > div > form > input[type=\"submit\"]', 'all', 'font-size', '14', '', '0'), (193, 'form_popup_cancel_btn_font_size', '.grupo-pop > div > form > span.cancel', 'all', 'font-size', '13', '', '0'), (194, 'form_popup_cancel_btn_text_color', '.grupo-pop > div > form > span.cancel', 'all', 'color', '#C7C7C7', '', '0'), (195, 'profile_name_text_color', '.swr-grupo .aside > .content .profile > .top > span.name', 'all', 'color', '#FFFFFF', '', '0'), (196, 'profile_username_text_color', '.swr-grupo .aside > .content .profile > .top > span.role', 'all', 'color', '#FFFFFF', '', '0'), (197, 'profile_username_font_size', '.swr-grupo .aside > .content .profile > .top > span.role', 'all', 'font-size', '14', '', '0'), (198, 'profile_name_font_size', '.swr-grupo .aside > .content .profile > .top > span.name', 'all', 'font-size', '15', '', '0'), (199, 'profile_btn_bg', '.swr-grupo .aside > .content .profile > .middle > span.pm', 'all', 'background', '#E91E63', '#FF9C07', '0'), (200, 'profile_btn_text_color', '.swr-grupo .aside > .content .profile > .middle > span.pm', 'all', 'color', '#FFFFFF', '', '0'), (201, 'profile_btn_font_size', '.swr-grupo .aside > .content .profile > .middle > span.pm', 'all', 'font-size', '14', '', '0'), (202, 'profile_editbtn_font_size', '.swr-grupo .aside > .content .profile > .top > span.edit > i', 'all', 'font-size', '13', '', '0'), (203, 'profile_editbtn_text_color', '.swr-grupo .aside > .content .profile > .top > span.edit > i', 'all', 'color', '#FFC107', '', '0'), (204, 'profile_statistics_bg', '.swr-grupo .aside > .content .profile > .middle', 'all', 'background', '#FFFFFF', '#FFFFFF', '0'), (205, 'profile_statistics_result_text_color', '.swr-grupo .aside > .content .profile > .middle > span.stats > span', 'all', 'color', '#727273', '', '0'), (206, 'profile_statistics_result_font_size', '.swr-grupo .aside > .content .profile > .middle > span.stats > span', 'all', 'font-size', '19', '', '0'), (207, 'profile_statistics_title_text_color', '.swr-grupo .aside > .content .profile > .middle > span.stats > span > i', 'all', 'color', '#9A9A9A', '', '0'), (208, 'profile_statistics_title_font_size', '.swr-grupo .aside > .content .profile > .middle > span.stats > span > i', 'all', 'font-size', '12', '', '0'), (209, 'profile_fields_bg', '.swr-grupo .aside > .content .profile > .bottom', 'all', 'background', '#F7F9FB', '#F7F9FB', '0'), (210, 'profile_field_name_text_color', '.swr-grupo .aside > .content .profile > .bottom > div > ul > li > b', 'all', 'color', '#212529', '', '0'), (211, 'profile_field_name_font_size', '.swr-grupo .aside > .content .profile > .bottom > div > ul > li > b', 'all', 'font-size', '14', '', '0'), (212, 'profile_field_value_text_color', '.swr-grupo .aside > .content .profile > .bottom > div > ul > li > span', 'all', 'color', '#212529', '', '0'), (213, 'profile_field_value_font_size', '.swr-grupo .aside > .content .profile > .bottom > div > ul > li > span', 'all', 'font-size', '14', '', '0'), (214, 'loader_color', '.ajx-ripple div', 'all', 'border-color', '#FFFFFF', '', '0'), (215, 'loader_title_text_color', '.ajxprocess > div > span', 'all', 'color', '#FFFFFF', '', '0'), (216, 'loader_sub_text_color', '.ajxprocess > div > span > span', 'all', 'color', '#FFFFFF', '', '0'), (217, 'loader_bg', '.ajxprocess > div', 'all', 'background', '#616161', '#115D61', 'easyedit'), (218, 'login_box_bg', '.two > section > div > div > .box', 'all', 'background', '#FFFFFF', '#FFFFFF', '0'), (219, 'login_box_logo_bg', '.two > section > div > div .logo', 'all', 'background', '#000000', '#000000', '0'), (220, 'login_box_text_color', '.two > section', 'all', 'color', '#636363', '', '0'), (221, 'login_box_tab_active', '.two > section > div > div > .box .swithlogin > ul > li.active', 'all', 'color', '#616161', '', 'easyedit'), (222, 'login_box_font_size', '.two > section', 'all', 'font-size', '14', '', '0'), (223, 'login_box_field_bg', '.two > section > div > div form label', 'all', 'background', '#EEF2F5', '#EEF2F5', '0'), (224, 'login_box_field_text_color', '.two > section > div > div form label > input,.two > section > div > div form label > i', 'all', 'color', '#636363', '', '0'), (225, 'login_box_field_font_size', '.two > section > div > div form label > input', 'all', 'font-size', '13', '', '0'), (226, 'login_box_field_icon_size', '.two > section > div > div form label > i', 'all', 'font-size', '14', '', '0'), (227, 'login_box_submit_btn_bg', '.two > section > div > div form .submit', 'all', 'background', '#616161', '#115D61', 'easyedit'), (228, 'login_box_submit_btn_text_color', '.two > section > div > div form .submit', 'all', 'color', '#FFFFFF', '', '0'), (229, 'login_box_submit_btn_font_size', '.two > section > div > div form .submit', 'all', 'font-size', '14', '', '0'), (230, 'login_box_footer_bg', '.sign > section > div > div form > .switch', 'all', 'background', '#EEF2F5', '#EEF2F5', '0'), (231, 'login_box_footer_text_color', '.sign > section > div > div form > .switch > i', 'all', 'color', '#636363', '', '0'), (232, 'login_box_footer_font_size', '.sign > section > div > div form > .switch > i', 'all', 'font-size', '12', '', '0'), (233, 'login_box_secondary_btn_bg', '.two > section > div > div form > .switch > span', 'all', 'background', '#000000', '#000000', '0'), (234, 'login_box_secondary_btn_hover_bg', '.two > section > div > div form > .switch > span:hover', 'all', 'background', '#000000', '#000000', '0'), (235, 'login_box_secondary_btn_hover_text_color', '.two > section > div > div form > .switch > span:hover', 'all', 'color', '#FFFFFF', '', '0'), (236, 'login_box_secondary_btn_text_color', '.two > section > div > div form > .switch > span', 'all', 'color', '#FFFFFF', '', '0'), (237, 'login_box_secondary_btn_font_size', '.two > section > div > div form > .switch > span', 'all', 'font-size', '12', '', '0'), (238, 'cookie_constent_bg', '.gr-consent', 'all', 'background', '#1C2123', '#1C2123', '0'), (239, 'cookie_constent_text_color', '.gr-consent', 'all', 'color', '#FFFFFF', '', '0'), (240, 'site_tos_btn_text_color', '.gr-consent > span > span >i', 'all', 'color', '#FFC107', '', '0'), (241, 'site_tos_heading_text_color', '.sign > section > div > div .tos > h4 > span', 'all', 'color', '#FFC107', '', '0'), (242, 'site_tos_close_btn_color', '.sign > section > div > div .tos > h4 > i', 'all', 'color', '#636363', '', '0'), (243, 'cookie_constent_btn_bg', '.gr-consent > span > i', 'all', 'background', '#F44336', '#E91E63', '0'), (244, 'cookie_constent_btn_text_color', '.gr-consent > span > i', 'all', 'color', '#FFFFFF', '', '0'), (245, 'coverpic_bg', '.swr-grupo .aside > .content .profile > .top', 'all', 'background', '#616161', '#115D61', 'easyedit'), (246, 'reload_button_bg', '.swr-grupo .panel > .room > .groupreload > i', 'all', 'background', '#000000', '#000000', '0'), (247, 'reload_button_font_size', '.swr-grupo .panel > .room > .groupreload > i', 'all', 'font-size', '13', '', '0'), (248, 'reload_button_text_color', '.swr-grupo .panel > .room > .groupreload > i', 'all', 'color', '#FFFFFF', '', '0'), (249, 'uploading_icon_bg', '.gruploader', 'all', 'background', '#616161', '#115D61', 'easyedit'), (250, 'uploading_icon_color', '.gruploader', 'all', 'color', '#FFFFFF', '', '0'), (251, 'uploading_icon_size', '.gruploader', 'all', 'font-size', '11', '', '0'), (252, 'message_unread_icon_color', '.swr-grupo .panel > .room > .msgs > li.right > div i.info > i.tick', 'all', 'color', '#FFFFFF', '', '0'), (253, 'message_read_icon_color', '.swr-grupo .panel > .room > .msgs > li.right > div i.info > i.tick.read > i', 'all', 'color', '#FFEB3B', '', '0'), (254, 'send_btn_color', '.swr-grupo .panel > .textbox > .box > i', 'all', 'background', '#616161', '#115D61', 'easyedit'), (255, 'options_items_bg', '.swr-grupo .opt > ul', 'all', 'background', '#FFFFFF', '#FFFFFF', '0'), (256, 'options_items_text_color', '.swr-grupo .opt > ul', 'all', 'color', '#A4A5A7', '', '0'), (257, 'tab_drop_down_bg', '.swr-grupo .aside > .tabs > ul > li > .subtab', 'all', 'background', '#FFFFFF', '#FFFFFF', '0'), (258, 'tab_drop_down_text_color', '.swr-grupo .aside > .tabs > ul > li > .subtab', 'all', 'color', '#000000', '#808080', '0'), (259, 'tab_drop_down_hover_text_color', '.swr-grupo .aside > .tabs > ul > li > .subtab', 'all', 'color', '#808080', '', '0'), (260, 'tab_drop_down_hover_bg', '.swr-grupo .aside > .tabs > ul > li > .subtab > li:hover, .swr-grupo .aside > .tabs > ul > li > .subtab > li.active', 'all', 'background', '#F7F9FB', '#F7F9FB', '0'), (261, 'sent_message_link_preview_bg', '.swr-grupo .panel > .room > .msgs > li.you > div > .msg > .urlpreview', 'all', 'background', '#616161', '#115D61', 'easyedit'), (262, 'sent_message_link_preview_text_color', '.swr-grupo .panel > .room > .msgs > li.you > div > .msg > .urlpreview', 'all', 'color', '#FFFFFF', '', '0'), (263, 'recieved_message_link_preview_bg', '.swr-grupo .panel > .room > .msgs > li > div > .msg > .urlpreview', 'all', 'background', '#FFFFFF', '#FFFFFF', '0'), (264, 'recieved_message_link_preview_text_color', '.swr-grupo .panel > .room > .msgs > li > div > .msg > .urlpreview', 'all', 'color', '#4C4C4C', '', '0'), (265, 'more_icon_bg', '.swr-grupo .panel > .textbox > .box > .icon > .gr-moreico > ul > li > span', 'all', 'background', '#FFFFFF', '#FFFFFF', '0'), (266, 'more_icon_hover_bg', '.swr-grupo .panel > .textbox > .box > .icon > .gr-moreico > ul > li > span:hover', 'all', 'background', '#616161', '#115D61', 'easyedit'), (267, 'dark_aside_left_header_bg', '.dark .swr-grupo .lside &gt; .head', 'all', 'background', '#212529', '#212529', '0'), (268, 'dark_aside_left_header_icon_color', '.dark .swr-grupo .aside &gt; .head i', 'all', 'color', '#A9A9A9', '', '0'), (269, 'dark_aside_left_header_icon_size', '.dark .swr-grupo .lside &gt; .head i', 'all', 'font-size', '25', '', '0'), (270, 'dark_aside_left_search_bg', '.dark .swr-grupo .lside &gt; .search', 'all', 'background', '#1C1F22', '#1C1F22', '0'), (271, 'dark_aside_left_search_input_bg', '.dark .swr-grupo .lside &gt; .search &gt; input', 'all', 'background', '#282D31', '#282D31', '0'), (272, 'dark_aside_left_search_input_text_color', '.dark .swr-grupo .lside &gt; .search &gt; input,.dark .swr-grupo .lside &gt; .search &gt; i', 'all', 'color', '#A7A7A7', '', '0'), (273, 'dark_aside_left_search_input_font_size', '.dark .swr-grupo .lside &gt; .search &gt; input', 'all', 'font-size', '14', '', '0'), (274, 'dark_aside_left_search_input_icon_size', '.dark .swr-grupo .lside &gt; .search &gt; i', 'all', 'font-size', '16', '', '0'), (275, 'dark_aside_left_tabs_bg', '.dark .swr-grupo .lside &gt; .tabs', 'all', 'background', '#191B1E', '#191B1E', '0'), (276, 'dark_aside_left_tabs_text_color', '.dark .swr-grupo .lside &gt; .tabs &gt; ul &gt; li', 'all', 'color', '#808080', '', '0'), (277, 'dark_aside_left_active_tab_text_color', '.dark .swr-grupo .lside &gt; .tabs &gt; ul &gt; li.active', 'all', 'color', '#ADADAD', '', '0'), (278, 'dark_aside_left_active_tab_border_color', '.dark .swr-grupo .lside &gt; .tabs &gt; ul &gt; li.active', 'all', 'border-color', '#616161', '', 'easyedit'), (279, 'dark_aside_left_contents_bg', '.dark .swr-grupo .lside', 'all', 'background', '#222529', '#222529', '0'), (280, 'dark_aside_left_list_title_text_color', '.dark .swr-grupo .lside &gt; .content &gt; .list &gt; li &gt; div &gt; .center &gt; b &gt; span', 'all', 'color', '#ABABAB', '', '0'), (281, 'dark_aside_left_list_sub_text_color', '.dark .swr-grupo .lside &gt; .content &gt; .list &gt; li &gt; div &gt; .center &gt; span', 'all', 'color', '#828588', '', '0'), (282, 'dark_aside_left_list_title_font-size', '.dark .swr-grupo .lside &gt; .content &gt; .list &gt; li &gt; div &gt; .center &gt; b &gt; span', 'all', 'font-size', '13', '', '0'), (283, 'dark_aside_left_list_sub_font-size', '.dark .swr-grupo .lside &gt; .content &gt; .list &gt; li &gt; div &gt; .center &gt; span', 'all', 'font-size', '12', '', '0'), (284, 'dark_aside_left_list_options_text_color', '.dark .swr-grupo .lside &gt; .content &gt; .list &gt; li &gt; div &gt; .right', 'all', 'color', '#A4A5A7', '', '0'), (285, 'dark_aside_left_list_options_font_size', '.dark .swr-grupo .lside &gt; .content &gt; .list &gt; li &gt; div &gt; .right', 'all', 'font-size', '11', '', '0'), (286, 'dark_aside_left_list_options_hover_bg', '.dark .swr-grupo .lside .opt &gt; ul &gt; li:hover', 'all', 'background', '#616161', '#115D61', 'easyedit'), (287, 'dark_aside_left_list_options_hover_text_color', '.dark .swr-grupo .lside .opt &gt; ul &gt; li:hover', 'all', 'color', '#FFFFFF', '', '0'), (288, 'dark_aside_left_list_add_icon_bg', '.dark .swr-grupo .lside &gt; .content &gt; .addmore &gt; span', 'all', 'background', '#616161', '#115D61', 'easyedit'), (289, 'dark_aside_left_list_add_icon_color', '.dark .swr-grupo .lside &gt; .content &gt; .addmore &gt; span', 'all', 'color', '#FFFFFF', '', '0'), (290, 'dark_aside_left_list_add_icon_size', '.dark .swr-grupo .lside &gt; .content &gt; .addmore &gt; span &gt; i', 'all', 'font-size', '16', '', '0'), (291, 'dark_aside_right_header_bg', '.dark .swr-grupo .rside &gt; .head', 'all', 'background', '#212529', '#212529', '0'), (292, 'dark_aside_right_profile_name_text_color', '.dark .swr-grupo .rside &gt; .top &gt; .left &gt; span &gt; span', 'all', 'color', '#B5B5B5', '', '0'), (293, 'dark_aside_right_username_text_color', '.dark .swr-grupo .rside &gt; .top &gt; .left &gt; span &gt; span &gt; span', 'all', 'color', '#8B8E90', '', '0'), (294, 'dark_aside_right_search_bg', '.dark .swr-grupo .rside &gt; .search', 'all', 'background', '#1C1F22', '#1C1F22', '0'), (295, 'dark_aside_right_search_input_bg', '.dark .swr-grupo .rside &gt; .search &gt; input', 'all', 'background', '#282D31', '#282D31', '0'), (296, 'dark_aside_right_search_input_text_color', '.dark .swr-grupo .rside &gt; .search &gt; input,.dark .swr-grupo .rside &gt; .search &gt; i', 'all', 'color', '#A7A7A7', '', '0'), (297, 'dark_aside_right_search_input_font_size', '.dark .swr-grupo .rside &gt; .search &gt; input', 'all', 'font-size', '14', '', '0'), (298, 'dark_aside_right_search_input_icon_size', '.dark .swr-grupo .rside &gt; .search &gt; i', 'all', 'font-size', '16', '', '0'), (299, 'dark_aside_right_tabs_bg', '.dark .swr-grupo .rside &gt; .tabs', 'all', 'background', '#191B1E', '#191B1E', '0'), (300, 'dark_aside_right_tabs_text_color', '.dark .swr-grupo .rside &gt; .tabs &gt; ul &gt; li', 'all', 'color', '#808080', '', '0'), (301, 'dark_aside_right_active_tab_text_color', '.dark .swr-grupo .rside &gt; .tabs &gt; ul &gt; li.active', 'all', 'color', '#E9E9E9', '', '0'), (302, 'dark_aside_right_active_tab_border_color', '.dark .swr-grupo .rside &gt; .tabs &gt; ul &gt; li.active', 'all', 'border-color', '#616161', '', 'easyedit'), (303, 'dark_aside_right_contents_bg', '.dark .swr-grupo .rside', 'all', 'background', '#222529', '#222529', '0'), (304, 'dark_aside_right_list_title_text_color', '.dark .swr-grupo .rside &gt; .content &gt; .list &gt; li &gt; div &gt; .center &gt; b &gt; span', 'all', 'color', '#ABABAB', '', '0'), (305, 'dark_aside_right_list_sub_text_color', '.dark .swr-grupo .rside &gt; .content &gt; .list &gt; li &gt; div &gt; .center &gt; span', 'all', 'color', '#828588', '', '0'), (306, 'dark_aside_right_list_title_font-size', '.dark .swr-grupo .rside &gt; .content &gt; .list &gt; li &gt; div &gt; .center &gt; b &gt; span', 'all', 'font-size', '13', '', '0'), (307, 'dark_aside_right_list_sub_font-size', '.dark .swr-grupo .rside &gt; .content &gt; .list &gt; li &gt; div &gt; .center &gt; span', 'all', 'font-size', '12', '', '0'), (308, 'dark_aside_right_list_options_text_color', '.dark .swr-grupo .rside &gt; .content &gt; .list &gt; li &gt; div &gt; .right', 'all', 'color', '#A4A5A7', '', '0'), (309, 'dark_aside_right_list_options_font_size', '.dark .swr-grupo .rside &gt; .content &gt; .list &gt; li &gt; div &gt; .right', 'all', 'font-size', '11', '', '0'), (310, 'dark_aside_right_list_options_hover_bg', '.dark .swr-grupo .rside .opt &gt; ul &gt; li:hover', 'all', 'background', '#616161', '#115D61', 'easyedit'), (311, 'dark_aside_right_list_options_hover_text_color', '.dark .swr-grupo .rside .opt &gt; ul &gt; li:hover', 'all', 'color', '#FFFFFF', '', '0'), (312, 'dark_aside_right_list_add_icon_bg', '.dark .swr-grupo .rside &gt; .content &gt; .addmore &gt; span', 'all', 'background', '#616161', '#115D61', 'easyedit'), (313, 'dark_aside_right_list_add_icon_color', '.dark .swr-grupo .rside &gt; .content &gt; .addmore &gt; span', 'all', 'color', '#FFFFFF', '', '0'), (314, 'dark_aside_right_list_add_icon_size', '.dark .swr-grupo .rside &gt; .content &gt; .addmore &gt; span &gt; i', 'all', 'font-size', '16', '', '0'), (315, 'dark_menu_background', '.dark .swr-menu', 'all', 'background', '#000000', '#000000', 'easyedit'), (316, 'dark_menu_text_color', '.dark .swr-menu', 'all', 'color', '#FFFFFF', '', '0'), (317, 'dark_menu_active_bg', '.dark .swr-menu &gt; ul &gt; li:hover, .dark .swr-menu &gt; ul &gt; li.active', 'all', 'background', '#101010', '#101010', '0'), (318, 'dark_menu_active_text_color', '.dark .swr-menu &gt; ul &gt; li:hover, .dark .swr-menu &gt; ul &gt; li.active', 'all', 'color', '#FFFFFF', '', '0'), (319, 'dark_chatbox_bg', '.dark .swr-grupo .panel', 'all', 'background', '#191B1E', '#191B1E', '0'), (320, 'dark_chatbox_welcome_text_color', '.dark .swr-grupo .zeroelem &gt; .welcome &gt; span &gt; i', 'all', 'color', '#B9B9B9', '', '0'), (321, 'dark_chatbox_welcome_heading_font_size', '.dark .swr-grupo .zeroelem &gt; .welcome &gt; span &gt; i.title', 'all', 'font-size', '21', '', '0'), (322, 'dark_chatbox_welcome_desc_font_size', '.dark .swr-grupo .zeroelem &gt; .welcome &gt; span &gt; i.desc', 'all', 'font-size', '15', '', '0'), (323, 'dark_chatbox_welcome_footer_font_size', '.dark .swr-grupo .zeroelem &gt; .welcome &gt; span&gt; i.foot', 'all', 'font-size', '13', '', '0'), (324, 'dark_chatbox_header_bg', '.dark .swr-grupo .panel &gt; .head', 'all', 'background', '#212529', '#212529', '0'), (325, 'dark_chatbox_header_title_text_color', '.dark .swr-grupo .panel &gt; .head &gt; .left &gt; span &gt; span', 'all', 'color', '#616161', '', 'easyedit'), (326, 'dark_chatbox_header_title_font_size', '.dark .swr-grupo .panel &gt; .head &gt; .left &gt; span &gt; span', 'all', 'font-size', '13', '', '0'), (327, 'dark_chatbox_header_sub_text_color', '.dark .swr-grupo .panel &gt; .head &gt; .left &gt; span &gt; span &gt; span,.dark .swr-grupo .panel &gt; .head &gt; .left &gt; span &gt; span &gt; .typing', 'all', 'color', '#8B8E90', '', '0'), (328, 'dark_chatbox_header_sub_font_size', '.dark .swr-grupo .panel &gt; .head &gt; .left &gt; span &gt; span &gt; span,.dark .swr-grupo .panel &gt; .head &gt; .left &gt; span &gt; span &gt; .typing', 'all', 'font-size', '12', '', '0'), (329, 'dark_chatbox_header_icon_color', '.dark .swr-grupo .panel &gt; .head &gt; .right &gt; i', 'all', 'color', '#8B8E90', '', '0'), (330, 'dark_chatbox_header_icon_size', '.dark .swr-grupo .panel &gt; .head &gt; .right &gt; i', 'all', 'font-size', '19', '', '0'), (331, 'dark_chatbox_searchbox_bg', '.dark .swr-grupo .panel &gt; .searchbar &gt; span &gt; input', 'all', 'background', '#24272B', '#24272B', '0'), (332, 'dark_chatbox_searchbox_text_color', '.dark .swr-grupo .panel &gt; .searchbar &gt; span,.dark .swr-grupo .panel &gt; .searchbar &gt; span &gt; input', 'all', 'color', '#6B6B6B', '', '0'), (333, 'dark_chatbox_searchbox_font_size', '.dark .swr-grupo .panel &gt; .searchbar &gt; span &gt; input', 'all', 'font-size', '14', '', '0'), (334, 'dark_chatbox_searchbox_icon_size', '.dark .swr-grupo .panel &gt; .searchbar &gt; span &gt; i', 'all', 'font-size', '16', '', '0'), (335, 'dark_received_message_bg', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; i', 'all', 'background', '#24272B', '#24272B', '0'), (336, 'dark_received_message_text_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; i', 'all', 'color', '#B1B1B1', '', '0'), (337, 'dark_received_message_mention_text_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; i i.mentnd', 'all', 'color', '#FF9800', '', '0'), (338, 'dark_received_message_font_size', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; i', 'all', 'font-size', '13', '', '0'), (339, 'dark_received_message_time_text_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div i.info', 'all', 'color', '#ADADAD', '', '0'), (340, 'dark_received_message_time_font_size', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div i.info', 'all', 'font-size', '10', '', '0'), (341, 'dark_sent_message_bg', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li.you &gt; div &gt; .msg &gt; i', 'all', 'background', '#616161', '#115D61', 'easyedit'), (342, 'dark_sent_message_text_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li.you &gt; div &gt; .msg &gt; i', 'all', 'color', '#FFFFFF', '', '0'), (343, 'dark_sent_message_mention_text_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li.you &gt; div &gt; .msg &gt; i i.mentnd', 'all', 'color', '#FFEB3B', '', '0'), (344, 'dark_sent_message_font_size', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li.you &gt; div &gt; .msg &gt; i', 'all', 'font-size', '13', '', '0'), (345, 'dark_sent_message_time_text_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li.you &gt; div i.info', 'all', 'color', '#FFFFFF', '', '0'), (346, 'dark_sent_message_time_font_size', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li.you &gt; div i.info', 'all', 'font-size', '10', '', '0'), (347, 'dark_audio_player_bg', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; i &gt; span.audioplay', 'all', 'background', '#607D8B', '#607D8B', '0'), (348, 'dark_audio_player_controls_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; i &gt; span.audioplay &gt; span.play', 'all', 'color', '#FFFFFF', '', '0'), (349, 'dark_audio_player_seek_bar_bg', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; i &gt; span.audioplay &gt; span.seek &gt; i.bar', 'all', 'background', '#616161', '#616161', '0'), (350, 'dark_audio_player_slider_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; i &gt; span.audioplay &gt; span.seek &gt; i.bar &gt; i', 'all', 'background', '#FFFFFF', '#FFFFFF', '0'), (351, 'dark_audio_player_icon_bg', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; i &gt; span.audioplay &gt; span.icon', 'all', 'background', '#3F535D', '#3F535D', '0'), (352, 'dark_audio_player_icon_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; i &gt; span.audioplay &gt; span.icon', 'all', 'color', '#FFFFFF', '', '0'), (353, 'dark_chatbox_textarea_bg', '.dark .swr-grupo .panel &gt; .textbox &gt; .box', 'all', 'background', '#24272B', '#24272B', '0'), (354, 'dark_chatbox_textarea_input_bg', '.dark .emojionearea.focused, .dark .emojionearea &gt; .emojionearea-editor, .dark .emojionearea', 'all', 'background', '#191B1E', '#191B1E', '0'), (355, 'dark_chatbox_textarea_input_text_color', '.dark .emojionearea.focused, .dark .emojionearea &gt; .emojionearea-editor, .dark .emojionearea', 'all', 'color', '#676767', '', '0'), (356, 'dark_mobile_aside_left_header_bg', '.dark .swr-grupo .lside &gt; .head', 'mobile', 'background', '#212529', '#212529', '0'), (357, 'dark_mobile_aside_left_header_icon_color', '.dark .swr-grupo .aside &gt; .head i', 'mobile', 'color', '#A9A9A9', '', '0'), (358, 'dark_mobile_aside_left_header_icon_size', '.dark .swr-grupo .lside &gt; .head i', 'mobile', 'font-size', '25', '', '0'), (359, 'dark_mobile_aside_left_search_bg', '.dark .swr-grupo .lside &gt; .search', 'mobile', 'background', '#1C1F22', '#1C1F22', '0'), (360, 'dark_mobile_aside_left_search_input_bg', '.dark .swr-grupo .lside &gt; .search &gt; input', 'mobile', 'background', '#282D31', '#282D31', '0'), (361, 'dark_mobile_aside_left_search_input_text_color', '.dark .swr-grupo .lside &gt; .search &gt; input,.dark .swr-grupo .lside &gt; .search &gt; i', 'mobile', 'color', '#A7A7A7', '', '0'); INSERT INTO `gr_customize` (`id`, `name`, `element`, `device`, `type`, `v1`, `v2`, `xtra`) VALUES (362, 'dark_mobile_aside_left_search_input_font_size', '.dark .swr-grupo .lside &gt; .search &gt; input', 'mobile', 'font-size', '14', '', '0'), (363, 'dark_mobile_aside_left_search_input_icon_size', '.dark .swr-grupo .lside &gt; .search &gt; i', 'mobile', 'font-size', '16', '', '0'), (364, 'dark_mobile_aside_left_tabs_bg', '.dark .swr-grupo .lside &gt; .tabs', 'mobile', 'background', '#191B1E', '#191B1E', '0'), (365, 'dark_mobile_aside_left_tabs_text_color', '.dark .swr-grupo .lside &gt; .tabs &gt; ul &gt; li', 'mobile', 'color', '#808080', '', '0'), (366, 'dark_mobile_aside_left_active_tab_text_color', '.dark .swr-grupo .lside &gt; .tabs &gt; ul &gt; li.active', 'mobile', 'color', '#ADADAD', '', '0'), (367, 'dark_mobile_aside_left_active_tab_border_color', '.dark .swr-grupo .lside &gt; .tabs &gt; ul &gt; li.active', 'mobile', 'custom', '#616161', '#E91E63', 'easyedit'), (368, 'dark_mobile_aside_left_contents_bg', '.dark .swr-grupo .lside', 'mobile', 'background', '#222529', '#222529', '0'), (369, 'dark_mobile_aside_left_list_title_text_color', '.dark .swr-grupo .lside &gt; .content &gt; .list &gt; li &gt; div &gt; .center &gt; b &gt; span', 'mobile', 'color', '#ABABAB', '', '0'), (370, 'dark_mobile_aside_left_list_sub_text_color', '.dark .swr-grupo .lside &gt; .content &gt; .list &gt; li &gt; div &gt; .center &gt; span', 'mobile', 'color', '#828588', '', '0'), (371, 'dark_mobile_aside_left_list_title_font-size', '.dark .swr-grupo .lside &gt; .content &gt; .list &gt; li &gt; div &gt; .center &gt; b &gt; span', 'mobile', 'font-size', '13', '', '0'), (372, 'dark_mobile_aside_left_list_sub_font-size', '.dark .swr-grupo .lside &gt; .content &gt; .list &gt; li &gt; div &gt; .center &gt; span', 'mobile', 'font-size', '12', '', '0'), (373, 'dark_mobile_aside_left_list_options_text_color', '.dark .swr-grupo .lside &gt; .content &gt; .list &gt; li &gt; div &gt; .right', 'mobile', 'color', '#A4A5A7', '', '0'), (374, 'dark_mobile_aside_left_list_options_font_size', '.dark .swr-grupo .lside &gt; .content &gt; .list &gt; li &gt; div &gt; .right', 'mobile', 'font-size', '11', '', '0'), (375, 'dark_mobile_aside_left_list_options_hover_bg', '.dark .swr-grupo .lside .opt &gt; ul &gt; li:hover', 'mobile', 'background', '#616161', '#115D61', 'easyedit'), (376, 'dark_mobile_aside_left_list_options_hover_text_color', '.dark .swr-grupo .lside .opt &gt; ul &gt; li:hover', 'mobile', 'color', '#FFFFFF', '', '0'), (377, 'dark_mobile_aside_left_list_add_icon_bg', '.dark .swr-grupo .lside &gt; .content &gt; .addmore &gt; span', 'mobile', 'background', '#616161', '#115D61', 'easyedit'), (378, 'dark_mobile_aside_left_list_add_icon_color', '.dark .swr-grupo .lside &gt; .content &gt; .addmore &gt; span', 'mobile', 'color', '#FFFFFF', '', '0'), (379, 'dark_mobile_aside_left_list_add_icon_size', '.dark .swr-grupo .lside &gt; .content &gt; .addmore &gt; span &gt; i', 'mobile', 'font-size', '16', '', '0'), (380, 'dark_mobile_aside_right_header_bg', '.dark .swr-grupo .aside &gt; .head, .dark .swr-grupo .panel &gt; .head, .dark .swr-grupo .rside &gt; .top', 'mobile', 'background', '#212529', '#212529', '0'), (381, 'dark_mobile_aside_right_profile_name_text_color', '.dark .swr-grupo .rside &gt; .top &gt; .left &gt; span &gt; span', 'mobile', 'color', '#B5B5B5', '', '0'), (382, 'dark_mobile_aside_right_username_text_color', '.dark .swr-grupo .rside &gt; .top &gt; .left &gt; span &gt; span &gt; span', 'mobile', 'color', '#FFFFFF', '', '0'), (383, 'dark_mobile_aside_right_search_bg', '.dark .swr-grupo .rside &gt; .search', 'mobile', 'background', '#1C1F22', '#1C1F22', '0'), (384, 'dark_mobile_aside_right_search_input_bg', '.dark .swr-grupo .rside &gt; .search &gt; input', 'mobile', 'background', '#282D31', '#282D31', '0'), (385, 'dark_mobile_aside_right_search_input_text_color', '.dark .swr-grupo .rside &gt; .search &gt; input,.dark .swr-grupo .rside &gt; .search &gt; i', 'mobile', 'color', '#A7A7A7', '', '0'), (386, 'dark_mobile_aside_right_search_input_font_size', '.dark .swr-grupo .rside &gt; .search &gt; input', 'mobile', 'font-size', '14', '', '0'), (387, 'dark_mobile_aside_right_search_input_icon_size', '.dark .swr-grupo .rside &gt; .search &gt; i', 'mobile', 'font-size', '16', '', '0'), (388, 'dark_mobile_aside_right_tabs_bg', '.dark .swr-grupo .rside &gt; .tabs', 'mobile', 'background', '#191B1E', '#191B1E', '0'), (389, 'dark_mobile_aside_right_tabs_text_color', '.dark .swr-grupo .rside &gt; .tabs &gt; ul &gt; li', 'mobile', 'color', '#808080', '', '0'), (390, 'dark_mobile_aside_right_active_tab_text_color', '.dark .swr-grupo .rside &gt; .tabs &gt; ul &gt; li.active', 'mobile', 'color', '#E9E9E9', '', '0'), (391, 'dark_mobile_aside_right_active_tab_border_color', '.dark .swr-grupo .rside &gt; .tabs &gt; ul &gt; li.active', 'mobile', 'border-color', '#616161', '', 'easyedit'), (392, 'dark_mobile_aside_right_contents_bg', '.dark .swr-grupo .rside', 'mobile', 'background', '#222529', '#222529', '0'), (393, 'dark_mobile_aside_right_list_title_text_color', '.dark .swr-grupo .rside &gt; .content &gt; .list &gt; li &gt; div &gt; .center &gt; b &gt; span', 'mobile', 'color', '#ABABAB', '', '0'), (394, 'dark_mobile_aside_right_list_sub_text_color', '.dark .swr-grupo .rside &gt; .content &gt; .list &gt; li &gt; div &gt; .center &gt; span', 'mobile', 'color', '#828588', '', '0'), (395, 'dark_mobile_aside_right_list_title_font-size', '.dark .swr-grupo .rside &gt; .content &gt; .list &gt; li &gt; div &gt; .center &gt; b &gt; span', 'mobile', 'font-size', '13', '', '0'), (396, 'dark_mobile_aside_right_list_sub_font-size', '.dark .swr-grupo .rside &gt; .content &gt; .list &gt; li &gt; div &gt; .center &gt; span', 'mobile', 'font-size', '12', '', '0'), (397, 'dark_mobile_aside_right_list_options_text_color', '.dark .swr-grupo .rside &gt; .content &gt; .list &gt; li &gt; div &gt; .right', 'mobile', 'color', '#A4A5A7', '', '0'), (398, 'dark_mobile_aside_right_list_options_font_size', '.dark .swr-grupo .rside &gt; .content &gt; .list &gt; li &gt; div &gt; .right', 'mobile', 'font-size', '11', '', '0'), (399, 'dark_mobile_aside_right_list_options_hover_bg', '.dark .swr-grupo .rside .opt &gt; ul &gt; li:hover', 'mobile', 'background', '#616161', '#115D61', 'easyedit'), (400, 'dark_mobile_aside_right_list_options_hover_text_color', '.dark .swr-grupo .rside .opt &gt; ul &gt; li:hover', 'mobile', 'color', '#FFFFFF', '', '0'), (401, 'dark_mobile_aside_right_list_add_icon_bg', '.dark .swr-grupo .rside &gt; .content &gt; .addmore &gt; span', 'mobile', 'background', '#616161', '#115D61', 'easyedit'), (402, 'dark_mobile_aside_right_list_add_icon_color', '.dark .swr-grupo .rside &gt; .content &gt; .addmore &gt; span', 'mobile', 'color', '#FFFFFF', '', '0'), (403, 'dark_mobile_aside_right_list_add_icon_size', '.dark .swr-grupo .rside &gt; .content &gt; .addmore &gt; span &gt; i', 'mobile', 'font-size', '16', '', '0'), (404, 'dark_mobile_menu_background', '.dark .swr-menu', 'mobile', 'background', '#616161', '#115D61', 'easyedit'), (405, 'dark_mobile_menu_text_color', '.dark .swr-menu', 'mobile', 'color', '#FFFFFF', '', '0'), (406, 'dark_mobile_menu_active_bg', '.dark .swr-menu &gt; ul &gt; li:hover, .dark .swr-menu &gt; ul &gt; li.active', 'mobile', 'background', '#101010', '#101010', '0'), (407, 'dark_mobile_menu_active_text_color', '.dark .swr-menu &gt; ul &gt; li:hover, .dark .swr-menu &gt; ul &gt; li.active', 'mobile', 'color', '#FFFFFF', '', '0'), (408, 'dark_mobile_chatbox_bg', '.dark .swr-grupo .panel', 'mobile', 'background', '#191B1E', '#191B1E', '0'), (409, 'dark_mobile_chatbox_welcome_text_color', '.dark .swr-grupo .zeroelem &gt; .welcome &gt; span &gt; i', 'mobile', 'color', '#B9B9B9', '', '0'), (410, 'dark_mobile_chatbox_welcome_heading_font_size', '.dark .swr-grupo .zeroelem &gt; .welcome &gt; span &gt; i.title', 'mobile', 'font-size', '21', '', '0'), (411, 'dark_mobile_chatbox_welcome_desc_font_size', '.dark .swr-grupo .zeroelem &gt; .welcome &gt; span &gt; i.desc', 'mobile', 'font-size', '15', '', '0'), (412, 'dark_mobile_chatbox_welcome_footer_font_size', '.dark .swr-grupo .zeroelem &gt; .welcome &gt; span&gt; i.foot', 'mobile', 'font-size', '13', '', '0'), (413, 'dark_mobile_chatbox_header_bg', '.dark .swr-grupo .panel &gt; .head', 'mobile', 'background', '#212529', '#212529', '0'), (414, 'dark_mobile_chatbox_header_title_text_color', '.dark .swr-grupo .panel &gt; .head &gt; .left &gt; span &gt; span', 'mobile', 'color', '#A9A9A9', '', '0'), (415, 'dark_mobile_chatbox_header_title_font_size', '.dark .swr-grupo .panel &gt; .head &gt; .left &gt; span &gt; span', 'mobile', 'font-size', '13', '', '0'), (416, 'dark_mobile_chatbox_header_sub_text_color', '.dark .swr-grupo .panel &gt; .head &gt; .left &gt; span &gt; span &gt; span,.dark .swr-grupo .panel &gt; .head &gt; .left &gt; span &gt; span &gt; .typing', 'mobile', 'color', '#8B8E90', '', '0'), (417, 'dark_mobile_chatbox_header_sub_font_size', '.dark .swr-grupo .panel &gt; .head &gt; .left &gt; span &gt; span &gt; span,.dark .swr-grupo .panel &gt; .head &gt; .left &gt; span &gt; span &gt; .typing', 'mobile', 'font-size', '12', '', '0'), (418, 'dark_mobile_chatbox_header_icon_color', '.dark .swr-grupo .panel &gt; .head &gt; .right &gt; i', 'mobile', 'color', '#A9A9A9', '', '0'), (419, 'dark_mobile_chatbox_header_icon_size', '.dark .swr-grupo .panel &gt; .head &gt; .right &gt; i', 'mobile', 'font-size', '22', '', '0'), (420, 'dark_mobile_chatbox_searchbox_bg', '.dark .swr-grupo .panel &gt; .searchbar &gt; span &gt; input', 'mobile', 'background', '#24272B', '#24272B', '0'), (421, 'dark_mobile_chatbox_searchbox_text_color', '.dark .swr-grupo .panel &gt; .searchbar &gt; span,.dark .swr-grupo .panel &gt; .searchbar &gt; span &gt; input', 'mobile', 'color', '#6B6B6B', '', '0'), (422, 'dark_mobile_chatbox_searchbox_font_size', '.dark .swr-grupo .panel &gt; .searchbar &gt; span &gt; input', 'mobile', 'font-size', '14', '', '0'), (423, 'dark_mobile_chatbox_searchbox_icon_size', '.dark .swr-grupo .panel &gt; .searchbar &gt; span &gt; i', 'mobile', 'font-size', '16', '', '0'), (424, 'dark_mobile_received_message_bg', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; i', 'mobile', 'background', '#24272B', '#24272B', '0'), (425, 'dark_mobile_received_message_text_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; i', 'mobile', 'color', '#B1B1B1', '', '0'), (426, 'dark_mobile_received_message_mention_text_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; i &gt; i.mentnd', 'mobile', 'color', '#FF9800', '', '0'), (427, 'dark_mobile_received_message_font_size', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; i', 'mobile', 'font-size', '13', '', '0'), (428, 'dark_mobile_received_message_time_text_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div i.info', 'mobile', 'color', '#ADADAD', '', '0'), (429, 'dark_mobile_received_message_time_font_size', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div i.info', 'mobile', 'font-size', '10', '', '0'), (430, 'dark_mobile_sent_message_bg', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li.you &gt; div &gt; .msg &gt; i', 'mobile', 'background', '#616161', '#115D61', 'easyedit'), (431, 'dark_mobile_sent_message_text_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li.you &gt; div &gt; .msg &gt; i', 'mobile', 'color', '#FFFFFF', '', '0'), (432, 'dark_mobile_sent_message_mention_text_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li.you &gt; div &gt; .msg &gt; i &gt; i.mentnd', 'mobile', 'color', '#FFEB3B', '', '0'), (433, 'dark_mobile_sent_message_font_size', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li.you &gt; div &gt; .msg &gt; i', 'mobile', 'font-size', '13', '', '0'), (434, 'dark_mobile_sent_message_time_text_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li.you &gt; div i.info', 'mobile', 'color', '#FFFFFF', '', '0'), (435, 'dark_mobile_sent_message_time_font_size', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li.you &gt; div i.info', 'mobile', 'font-size', '10', '', '0'), (436, 'dark_mobile_audio_player_bg', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; i &gt; span.audioplay', 'mobile', 'background', '#607D8B', '#607D8B', '0'), (437, 'dark_mobile_audio_player_controls_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; i &gt; span.audioplay &gt; span.play', 'mobile', 'color', '#FFFFFF', '', '0'), (438, 'dark_mobile_audio_player_seek_bar_bg', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; i &gt; span.audioplay &gt; span.seek &gt; i.bar', 'mobile', 'background', '#616161', '#616161', '0'), (439, 'dark_mobile_audio_player_slider_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; i &gt; span.audioplay &gt; span.seek &gt; i.bar &gt; i', 'mobile', 'background', '#FFFFFF', '#FFFFFF', '0'), (440, 'dark_mobile_audio_player_icon_bg', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; i &gt; span.audioplay &gt; span.icon', 'mobile', 'background', '#3F535D', '#3F535D', '0'), (441, 'dark_mobile_audio_player_icon_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; i &gt; span.audioplay &gt; span.icon', 'mobile', 'color', '#FFFFFF', '', '0'), (442, 'dark_mobile_chatbox_textarea_bg', '.dark .swr-grupo .panel &gt; .textbox &gt; .box', 'mobile', 'background', '#24272B', '#24272B', '0'), (443, 'dark_mobile_chatbox_textarea_input_bg', '.dark .emojionearea.focused, .dark .emojionearea &gt; .emojionearea-editor, .dark .emojionearea', 'mobile', 'background', '#191B1E', '#191B1E', '0'), (444, 'dark_mobile_chatbox_textarea_input_text_color', '.dark .emojionearea.focused, .dark .emojionearea &gt; .emojionearea-editor, .dark .emojionearea', 'mobile', 'color', '#676767', '', '0'), (445, 'dark_form_popup_header_bg', '.dark .grupo-pop &gt; div &gt; form &gt; .head', 'all', 'background', '#616161', '#115D61', 'easyedit'), (446, 'dark_form_popup_header_textcolor', '.dark .grupo-pop &gt; div &gt; form &gt; .head', 'all', 'color', '#FFFFFF', '', '0'), (447, 'dark_form_popup_header_font_size', '.dark .grupo-pop &gt; div &gt; form &gt; .head', 'all', 'font-size', '14', '', '0'), (448, 'dark_form_popup_search_bg', '.dark .grupo-pop &gt; div &gt; form &gt; .search', 'all', 'background', '#181A21', '#181A21', '0'), (449, 'dark_form_popup_search_text_color', '.dark .grupo-pop &gt; div &gt; form &gt; .search &gt; i, .dark .grupo-pop &gt; div &gt; form &gt; .search &gt; input', 'all', 'color', '#E2E2E2', '', '0'), (450, 'dark_form_popup_bg', '.dark .grupo-pop &gt; div &gt; form', 'all', 'background', '#232630', '#252D40', '0'), (451, 'dark_form_popup_field_text_color', '.dark .grupo-pop &gt; div &gt; form &gt; div &gt; div &gt; label', 'all', 'color', '#FFFFFF', '', '0'), (452, 'dark_form_popup_field_font_size', '.dark .grupo-pop &gt; div &gt; form &gt; div &gt; div &gt; label', 'all', 'font-size', '14', '', '0'), (453, 'dark_form_popup_input_text_color', '.dark .grupo-pop &gt; div &gt; form &gt; .fields &gt; div &gt; span, .dark .grupo-pop &gt; div &gt; form &gt; div &gt; div &gt; input, .dark .grupo-pop &gt; div &gt; form &gt; div &gt; div &gt; select, .dark .grupo-pop &gt; div &gt; form &gt; div &gt; div &gt; textarea', 'all', 'color', '#9FABB1', '', '0'), (454, 'dark_form_popup_input_font_size', '.dark .grupo-pop &gt; div &gt; form &gt; .fields &gt; div &gt; span, .dark .grupo-pop &gt; div &gt; form &gt; div &gt; div &gt; input, .dark .grupo-pop &gt; div &gt; form &gt; div &gt; div &gt; select, .dark .grupo-pop &gt; div &gt; form &gt; div &gt; div &gt; textarea', 'all', 'font-size', '15', '', '0'), (455, 'dark_form_popup_submit_btn_bg', '.dark .grupo-pop &gt; div &gt; form &gt; input[type=&quot;submit&quot;]', 'all', 'background', '#616161', '#115D61', 'easyedit'), (456, 'dark_form_popup_submit_btn_text_color', '.dark .grupo-pop &gt; div &gt; form &gt; input[type=&quot;submit&quot;]', 'all', 'color', '#FFFFFF', '', '0'), (457, 'dark_form_popup_submit_btn_font_size', '.dark .grupo-pop &gt; div &gt; form &gt; input[type=&quot;submit&quot;]', 'all', 'font-size', '14', '', '0'), (458, 'dark_form_popup_cancel_btn_font_size', '.dark .grupo-pop &gt; div &gt; form &gt; span.cancel', 'all', 'font-size', '13', '', '0'), (459, 'dark_form_popup_cancel_btn_text_color', '.dark .grupo-pop &gt; div &gt; form &gt; span.cancel', 'all', 'color', '#C7C7C7', '', '0'), (460, 'dark_profile_name_text_color', '.dark .swr-grupo .aside &gt; .content .profile &gt; .top &gt; span.name', 'all', 'color', '#FFFFFF', '', '0'), (461, 'dark_profile_username_text_color', '.dark .swr-grupo .aside &gt; .content .profile &gt; .top &gt; span.role', 'all', 'color', '#FFFFFF', '', '0'), (462, 'dark_profile_username_font_size', '.dark .swr-grupo .aside &gt; .content .profile &gt; .top &gt; span.role', 'all', 'font-size', '14', '', '0'), (463, 'dark_profile_name_font_size', '.dark .swr-grupo .aside &gt; .content .profile &gt; .top &gt; span.name', 'all', 'font-size', '15', '', '0'), (464, 'dark_profile_btn_bg', '.dark .swr-grupo .aside &gt; .content .profile &gt; .middle &gt; span.pm', 'all', 'background', '#E91E63', '#FF9C07', '0'), (465, 'dark_profile_btn_text_color', '.dark .swr-grupo .aside &gt; .content .profile &gt; .middle &gt; span.pm', 'all', 'color', '#FFFFFF', '', '0'), (466, 'dark_profile_btn_font_size', '.dark .swr-grupo .aside &gt; .content .profile &gt; .middle &gt; span.pm', 'all', 'font-size', '14', '', '0'), (467, 'dark_profile_editbtn_font_size', '.dark .swr-grupo .aside &gt; .content .profile &gt; .top &gt; span.edit &gt; i', 'all', 'font-size', '13', '', '0'), (468, 'dark_profile_editbtn_text_color', '.dark .swr-grupo .aside &gt; .content .profile &gt; .top &gt; span.edit &gt; i', 'all', 'color', '#FFC107', '', '0'), (469, 'dark_profile_statistics_bg', '.dark .swr-grupo .aside &gt; .content .profile &gt; .middle', 'all', 'background', '#191B1E', '#191B1E', '0'), (470, 'dark_profile_statistics_result_text_color', '.dark .swr-grupo .aside &gt; .content .profile &gt; .middle &gt; span.stats &gt; span', 'all', 'color', '#727273', '', '0'), (471, 'dark_profile_statistics_result_font_size', '.dark .swr-grupo .aside &gt; .content .profile &gt; .middle &gt; span.stats &gt; span', 'all', 'font-size', '19', '', '0'), (472, 'dark_profile_statistics_title_text_color', '.dark .swr-grupo .aside &gt; .content .profile &gt; .middle &gt; span.stats &gt; span &gt; i', 'all', 'color', '#9A9A9A', '', '0'), (473, 'dark_profile_statistics_title_font_size', '.dark .swr-grupo .aside &gt; .content .profile &gt; .middle &gt; span.stats &gt; span &gt; i', 'all', 'font-size', '12', '', '0'), (474, 'dark_profile_fields_bg', '.dark .swr-grupo .aside &gt; .content .profile &gt; .bottom', 'all', 'background', '#222529', '#222529', '0'), (475, 'dark_profile_field_name_text_color', '.dark .swr-grupo .aside &gt; .content .profile &gt; .bottom &gt; div &gt; ul &gt; li &gt; b', 'all', 'color', '#CECECE', '', '0'), (476, 'dark_profile_field_name_font_size', '.dark .swr-grupo .aside &gt; .content .profile &gt; .bottom &gt; div &gt; ul &gt; li &gt; b', 'all', 'font-size', '14', '', '0'), (477, 'dark_profile_field_value_text_color', '.dark .swr-grupo .aside &gt; .content .profile &gt; .bottom &gt; div &gt; ul &gt; li &gt; span', 'all', 'color', '#969292', '', '0'), (478, 'dark_profile_field_value_font_size', '.dark .swr-grupo .aside &gt; .content .profile &gt; .bottom &gt; div &gt; ul &gt; li &gt; span', 'all', 'font-size', '14', '', '0'), (479, 'dark_loader_color', '.dark .ajx-ripple div', 'all', 'border-color', '#FFFFFF', '', '0'), (480, 'dark_loader_title_text_color', '.dark .ajxprocess &gt; div &gt; span', 'all', 'color', '#FFFFFF', '', '0'), (481, 'dark_loader_sub_text_color', '.dark .ajxprocess &gt; div &gt; span &gt; span', 'all', 'color', '#FFFFFF', '', '0'), (482, 'dark_loader_bg', '.dark .ajxprocess &gt; div', 'all', 'background', '#616161', '#115D61', 'easyedit'), (483, 'dark_cookie_constent_bg', '.dark .gr-consent', 'all', 'background', '#1C2123', '#1C2123', '0'), (484, 'dark_cookie_constent_text_color', '.dark .gr-consent', 'all', 'color', '#FFFFFF', '', '0'), (485, 'dark_cookie_constent_btn_bg', '.dark .gr-consent &gt; span &gt; i', 'all', 'background', '#F44336', '#E91E63', '0'), (486, 'dark_cookie_constent_btn_text_color', '.dark .gr-consent &gt; span &gt; i', 'all', 'color', '#FFFFFF', '', '0'), (487, 'dark_coverpic_bg', '.dark .swr-grupo .aside &gt; .content .profile &gt; .top', 'all', 'background', '#616161', '#115D61', 'easyedit'), (488, 'dark_reload_button_bg', '.dark .swr-grupo .panel &gt; .room &gt; .groupreload &gt; i', 'all', 'background', '#000000', '#000000', '0'), (489, 'dark_reload_button_font_size', '.dark .swr-grupo .panel &gt; .room &gt; .groupreload &gt; i', 'all', 'font-size', '13', '', '0'), (490, 'dark_reload_button_text_color', '.dark .swr-grupo .panel &gt; .room &gt; .groupreload &gt; i', 'all', 'color', '#FFFFFF', '', '0'), (491, 'dark_uploading_icon_bg', '.dark .gruploader', 'all', 'background', '#616161', '#115D61', 'easyedit'), (492, 'dark_uploading_icon_color', '.dark .gruploader', 'all', 'color', '#FFFFFF', '', '0'), (493, 'dark_uploading_icon_size', '.dark .gruploader', 'all', 'font-size', '11', '', '0'), (494, 'dark_message_unread_icon_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li.right &gt; div i.info &gt; i.tick', 'all', 'color', '#FFFFFF', '', '0'), (495, 'dark_message_read_icon_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li.right &gt; div i.info &gt; i.tick.read &gt; i', 'all', 'color', '#FFEB3B', '', '0'), (496, 'dark_send_btn_color', '.dark .swr-grupo .panel &gt; .textbox &gt; .box &gt; i', 'all', 'background', '#616161', '#115D61', 'easyedit'), (497, 'dark_options_items_bg', '.dark .swr-grupo .opt &gt; ul', 'all', 'background', '#434242', '#434242', '0'), (498, 'dark_options_items_text_color', '.dark .swr-grupo .opt &gt; ul', 'all', 'color', '#A4A5A7', '', '0'), (499, 'dark_tab_drop_down_bg', '.dark .swr-grupo .aside &gt; .tabs &gt; ul &gt; li &gt; .subtab', 'all', 'background', '#24272B', '#24272B', '0'), (500, 'dark_tab_drop_down_text_color', '.dark .swr-grupo .aside &gt; .tabs &gt; ul &gt; li &gt; .subtab', 'all', 'color', '#A7A7A7', '#808080', '0'), (501, 'dark_tab_drop_down_hover_text_color', '.dark .swr-grupo .aside &gt; .tabs &gt; ul &gt; li &gt; .subtab', 'all', 'color', '#BDBCBC', '', '0'), (502, 'dark_tab_drop_down_hover_bg', '.dark .swr-grupo .aside &gt; .tabs &gt; ul &gt; li &gt; .subtab &gt; li:hover, .dark .swr-grupo .aside &gt; .tabs &gt; ul &gt; li &gt; .subtab &gt; li.active', 'all', 'background', '#202121', '#202121', '0'), (503, 'dark_sent_message_link_preview_bg', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li.you &gt; div &gt; .msg &gt; .urlpreview', 'all', 'background', '#616161', '#115D61', 'easyedit'), (504, 'dark_sent_message_link_preview_text_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li.you &gt; div &gt; .msg &gt; .urlpreview', 'all', 'color', '#FFFFFF', '', '0'), (505, 'dark_recieved_message_link_preview_bg', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; .urlpreview', 'all', 'background', '#24272B', '#24272B', '0'), (506, 'dark_recieved_message_link_preview_text_color', '.dark .swr-grupo .panel &gt; .room &gt; .msgs &gt; li &gt; div &gt; .msg &gt; .urlpreview', 'all', 'color', '#B1B1B1', '', '0'), (507, 'dark_more_icon_bg', '.dark .swr-grupo .panel &gt; .textbox &gt; .box &gt; .icon &gt; .gr-moreico &gt; ul &gt; li &gt; span', 'all', 'background', '#191B1E', '#191B1E', '0'), (508, 'dark_more_icon_hover_bg', '.dark .swr-grupo .panel &gt; .textbox &gt; .box &gt; .icon &gt; .gr-moreico &gt; ul &gt; li &gt; span:hover', 'all', 'background', '#616161', '#115D61', 'easyedit'), (509, 'chatbox_textarea_font_size', '.emojionearea > .emojionearea-editor', 'all', 'font-size', '13', '', '0'), (510, 'radio_player_bg', '.swr-grupo .grradioplayer', 'all', 'background', '#FFFFFF', '#FFFFFF', '0'), (511, 'dark_radio_player_bg', '.dark .swr-grupo .grradioplayer', 'all', 'background', '#1C1F23', '#1C1F23', '0'), (512, 'radio_player_play_button_bg', '.swr-grupo .grradioplayer > div > .rcontrols > i.rplay', 'all', 'background', '#616161', '#115D61', 'easyedit'), (513, 'dark_radio_player_play_button_bg', '.dark .swr-grupo .grradioplayer > div > .rcontrols > i.rplay', 'all', 'background', '#616161', '#115D61', 'easyedit'), (514, 'switch_gif_sticker_active_button', '.grgif > .wrap > .switchtabs > ul > li.active', 'all', 'background', '#616161', '#115D61', 'easyedit'), (515, 'dark_switch_gif_sticker_active_button', '.dark .grgif > .wrap > .switchtabs > ul > li.active', 'all', 'background', '#616161', '#115D61', 'easyedit'); -- -------------------------------------------------------- -- -- Table structure for table `gr_defaults` -- CREATE TABLE `gr_defaults` ( `id` bigint NOT NULL, `type` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `v1` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '0', `v2` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `v3` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '0', `v4` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `v5` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `v6` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `v7` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `tms` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `gr_defaults` -- INSERT INTO `gr_defaults` (`id`, `type`, `v1`, `v2`, `v3`, `v4`, `v5`, `v6`, `v7`, `tms`) VALUES (1, 'default', 'sitename', 'S.P.E.K.T.A Chat', '0', '0', '0', '', '', NULL), (2, 'default', 'sitedesc', 'Aplikasi Chatting PT. Kimia Farma Tbk. Plant Jakarta', '0', '0', '0', '', '', NULL), (3, 'default', 'siteslogan', 'Go Fast To The Next Level', '0', '0', '0', '', '', NULL), (4, 'default', 'sysemail', 'alert.kfpj@gmail.com', '0', '0', '0', '', '', NULL), (5, 'default', 'sendername', 'S.P.E.K.T.A Chat', '0', '0', '0', '', '', NULL), (6, 'default', 'userreg', 'enable', '0', '0', '0', '', '', NULL), (7, 'default', 'timezone', 'Asia/Jakarta', '0', '0', '0', '', '', '2019-04-06 18:10:19'), (8, 'default', 'recaptcha', 'disable', '0', '0', '0', '', '', NULL), (9, 'default', 'rsecretkey', '', '0', '0', '0', '', '', NULL), (10, 'default', 'rsitekey', '', '0', '0', '0', '', '', NULL), (11, 'default', 'language', '1', '0', '0', '0', '', '', NULL), (12, 'default', 'delmsgexpiry', '10', '0', '0', '0', '', '', NULL), (13, 'default', 'autogroupjoin', '52', '0', '0', '0', '', '', NULL), (14, 'default', 'fileexpiry', '720', '0', '0', '0', '', '', NULL), (15, 'default', 'boxed', 'disable', '0', '0', '0', '', '', NULL), (16, 'blacklist', 'ip', '112.121.153.0 - 112.121.153.255\n51.89.23.57\n183.80.183.88\n223.241.166.96\n51.79.62.116\n35.172.136.41\n137.169.63.241\n18.207.142.233\n3.227.233.55\n36.69.93.218\n125.118.73.41\n185.102.139.15\n216.244.66.250\n196.196.193.196\n195.154.123.46\n196.240.54.38\n35.171.146.16\n116.7.162.205\n54.36.148.250\n195.154.122.95\n61.154.64.45\n54.227.117.173\n39.88.21.134\n61.154.197.55\n2.176.205.209\n46.183.221.15\n82.102.21.52\n113.123.0.47\n27.31.102.142\n171.80.187.37\n58.54.221.49\n117.78.58.30\n185.106.94.133\n27.31.102.152\n117.78.58.25\n3.93.169.195\n117.78.58.24\n117.78.58.18\n114.95.205.13\n117.78.58.16\n119.62.208.204\n192.69.90.178\n117.78.58.17\n2.191.43.217\n103.115.41.90\n117.78.58.22\n117.78.58.28\n195.154.123.18\n117.78.58.27\n117.78.58.19\n117.78.58.14\n185.112.81.55\n100.25.38.220\n216.170.126.176\n195.154.104.5\n163.172.71.139\n195.154.104.4\n185.102.137.85\n111.202.100.123\n216.186.243.70\n212.115.122.89\n52.23.204.195\n84.75.207.109\n68.139.206.214\n163.172.71.6\n185.112.100.33\n52.90.162.255\n213.202.253.46\n163.172.71.84\n13.59.168.16\n195.154.104.170\n85.208.96.65\n144.168.163.119\n218.69.225.124\n34.76.178.121\n35.189.255.190\n54.209.162.70\n111.177.117.36\n185.112.81.140\n27.157.90.195\n34.234.54.252\n221.193.124.122\n46.183.222.15\n83.110.248.130\n2.61.214.145\n54.166.130.16\n185.106.94.128\n91.242.162.7\n36.90.89.64\n200.159.250.2\n61.132.225.40\n18.205.109.82\n34.226.234.20\n207.180.226.173\n91.242.162.10\n149.202.211.239\n54.36.150.108\n41.87.207.142\n123.14.219.83\n213.74.79.34\n166.62.84.121\n89.163.242.239\n77.168.164.74\n83.178.235.206\n35.172.100.232\n51.77.70.4\n129.56.117.163\n81.92.203.62\n3.93.75.30\n104.248.247.150\n195.154.123.57\n104.248.243.235\n185.167.160.83\n34.80.141.133\n162.216.115.103\n85.208.96.66\n123.14.63.250\n134.19.176.22\n185.248.12.162\n109.245.36.65\n91.79.52.84\n100.26.182.28\n216.244.66.195\n67.220.186.137\n91.242.162.57\n46.217.82.6\n3.86.206.185\n165.16.181.172\n5.62.34.46\n18.204.2.53\n192.3.136.27\n37.49.231.118\n3.226.243.130\n3.227.254.12\n193.124.191.215\n92.99.144.189\n54.36.148.217\n45.61.48.64\n34.204.176.189\n185.117.118.252\n182.110.22.115\n102.68.77.254\n218.70.200.139\n141.8.189.76\n62.210.80.82\n92.53.33.154\n91.242.162.22\n27.187.58.159\n34.237.76.91\n163.172.30.236\n79.143.28.100\n192.243.53.51\n106.38.241.116\n36.90.89.53\n190.152.180.58\n18.206.48.142\n103.45.100.168\n61.230.210.31\n117.78.58.23\n66.160.140.184\n182.253.245.114\n37.148.46.175\n185.24.233.187\n131.203.43.48\n23.18.139.79\n36.222.72.101\n112.25.188.171\n2.61.231.144\n85.208.96.68\n117.78.58.20\n160.120.4.171\n117.78.58.15\n111.206.221.86\n109.102.111.58\n111.226.236.217\n46.240.189.44\n37.140.159.2\n46.4.105.251\n69.167.38.186\n85.208.96.67\n207.241.226.107\n47.92.84.119\n111.172.66.52\n217.170.202.237\n122.11.135.159\n123.136.135.98\n218.77.57.10\n18.206.16.123\n173.63.217.134\n92.255.195.226\n3.87.134.248\n45.123.43.30\n89.163.146.110\n185.36.81.39\n196.50.5.97\n3.91.51.153\n60.184.109.226\n103.219.207.39\n104.131.75.86\n195.91.155.132\n69.30.226.234\n169.159.119.98\n45.137.17.167\n196.70.251.73\n199.96.83.9\n80.77.42.209\n145.239.2.240\n54.165.90.203\n197.210.44.208\n89.163.146.71\n194.110.84.100\n84.38.129.31\n129.56.78.30\n5.9.6.51\n17.122.128.175\n2.61.193.59\n125.121.51.147\n52.9.20.166\n125.121.49.168\n103.137.12.206\n203.186.170.66\n5.188.84.184\n36.27.111.3\n41.217.86.96\n218.70.201.123\n121.239.108.165\n183.25.179.204\n39.53.130.136\n103.195.238.158\n51.255.134.131\n185.248.13.186\n59.55.202.68\n73.171.83.254\n105.208.57.92\n109.252.20.243\n36.90.88.149\n78.46.174.55\n34.227.91.38\n95.168.191.169\n109.93.249.91\n60.176.78.81\n195.154.122.66\n178.149.88.114\n93.158.166.139\n167.86.73.202\n119.62.205.177\n66.160.140.183\n86.52.207.82\n106.120.173.156\n54.191.53.48\n39.188.104.180\n172.245.13.162\n69.77.176.154\n46.229.168.142\n195.154.123.127\n195.154.123.87\n94.130.10.89\n17.58.101.49\n223.80.227.88\n123.21.196.161\n59.55.241.38\n2.61.170.40\n37.140.159.0\n54.36.149.82\n199.168.140.151\n54.36.150.16\n54.36.150.93\n85.208.96.69\n188.68.226.106\n54.36.150.175\n185.5.251.207\n54.36.150.56\n54.36.150.2\n54.90.161.92\n54.36.150.65\n54.36.150.12\n54.36.148.68\n54.36.148.56\n54.36.150.183\n54.36.148.166\n188.68.226.102\n54.36.150.81\n54.36.149.29\n54.36.148.191\n54.36.150.22\n5.2.183.39\n54.36.150.50\n117.239.48.242\n116.206.137.146\n23.228.90.13\n54.36.150.97\n54.36.150.1\n81.166.130.184\n54.36.150.86\n54.36.150.156\n54.36.148.245\n106.9.137.118\n54.36.150.83\n54.36.148.33\n54.36.148.10\n35.239.58.193\n54.36.150.141\n54.36.150.188\n54.36.148.49\n54.36.148.147\n188.68.226.103\n54.36.149.30\n54.36.148.237\n185.38.251.59\n54.36.150.88\n182.253.14.20\n54.36.150.167\n54.36.150.101\n54.36.149.90\n54.36.148.96\n113.102.166.15\n5.188.84.138\n54.36.150.116\n54.36.149.65\n54.36.148.118\n123.126.113.125\n198.204.229.90\n45.76.20.179\n54.36.149.70\n54.36.150.47\n54.36.149.80\n54.36.148.111\n41.82.92.83\n54.36.150.51\n54.36.148.132\n46.4.100.132\n195.88.253.235\n54.36.149.5\n54.36.150.132\n129.18.156.246\n109.238.247.83\n54.36.150.62\n54.36.148.34\n54.36.150.29\n54.36.150.128\n54.36.150.136\n54.36.148.198\n218.70.200.192\n46.229.168.154\n23.226.130.76\n54.36.148.194\n183.156.22.199\n54.36.150.55\n85.208.96.4\n54.36.148.221\n54.36.149.63\n59.41.24.26\n111.224.13.119\n54.36.148.173\n54.36.150.130\n195.154.61.130\n205.134.171.79\n54.36.150.184\n188.68.226.105\n54.36.149.1\n54.36.148.226\n54.36.150.171\n170.130.205.87\n82.57.55.118\n54.36.149.42\n54.36.150.11\n188.68.226.108\n103.88.233.5\n54.36.150.76\n188.68.226.107\n121.40.224.143\n54.36.148.18\n114.103.64.50\n47.111.102.108\n112.73.24.219\n121.40.130.229\n103.133.104.170\n54.36.148.70\n121.40.225.125\n54.36.148.180\n54.36.150.75\n194.99.105.243\n47.111.65.9\n121.40.210.30\n54.36.150.160\n207.148.102.16\n188.68.226.101\n54.36.149.72\n54.36.150.15\n54.36.148.121\n23.254.202.98\n54.36.148.137\n54.36.150.102\n107.6.156.2\n47.111.136.117\n94.25.168.181\n54.36.148.46\n176.9.4.111\n62.210.111.58\n121.40.207.234\n3.230.119.16\n54.36.150.71\n121.40.244.177\n54.38.19.73\n190.156.243.166\n37.140.159.1\n157.55.201.215\n75.162.79.99\n54.36.150.161\n195.154.122.234\n124.41.228.15\n105.159.249.101\n46.229.168.132\n188.68.226.100\n54.36.150.91\n192.243.56.76\n103.212.33.223\n54.36.149.57\n121.40.103.29\n121.40.76.239\n54.36.150.143\n17.58.97.31\n103.7.79.79\n54.36.148.107\n54.36.150.23\n54.36.148.254\n118.71.107.73\n141.8.188.178\n47.111.111.174\n54.36.150.98\n105.112.32.58\n54.36.148.64\n192.3.8.36\n54.36.150.121\n93.180.64.137\n198.50.183.1\n54.36.148.105\n47.92.222.191\n203.133.169.184\n184.75.211.107\n47.111.156.198\n159.69.189.218\n46.229.168.139\n52.4.105.228\n46.229.168.161\n121.40.249.129\n46.229.168.137\n182.74.103.193\n81.106.8.37\n216.244.66.203\n46.229.161.131\n54.36.148.190\n95.216.172.180\n46.229.168.162\n178.159.37.125\n54.36.148.43\n46.229.168.129\n173.44.40.49\n54.36.150.35\n202.49.183.168\n121.40.129.130\n46.229.168.141\n121.40.142.193\n46.229.168.153\n116.31.102.8\n54.36.150.39\n39.100.157.106\n159.65.137.115\n164.68.96.84\n210.2.157.130\n88.248.23.216\n27.189.34.35\n46.229.168.140\n203.133.169.241\n141.8.188.201\n141.8.188.145\n54.36.149.37\n178.159.37.55\n141.8.143.170\n54.36.150.43\n141.8.188.196\n46.229.168.147\n54.36.148.171\n141.8.188.143\n121.40.101.160\n54.36.148.126\n85.208.96.7\n121.40.246.140\n54.36.150.61\n121.40.238.244\n46.4.60.249\n195.154.123.53\n93.158.166.10\n121.40.219.58\n42.113.50.23\n13.57.217.89\n46.229.168.136\n54.36.150.145\n54.36.150.90\n14.226.203.62\n121.40.113.77\n47.111.125.140\n212.7.208.140\n54.36.148.51\n46.229.168.149\n103.63.158.254\n121.40.228.36\n64.44.131.61\n93.158.166.146\n121.40.164.34\n46.229.168.163\n95.236.18.183\n112.34.110.149\n142.252.249.91\n121.40.225.4\n83.221.88.181\n213.174.147.83\n45.89.197.195\n23.100.232.233\n121.40.153.27\n223.241.79.240\n188.165.200.217\n41.103.204.206\n102.165.33.20\n46.229.168.143\n52.162.161.148\n107.173.222.196\n18.208.178.230\n46.140.101.194\n3.212.81.28\n62.210.80.58\n122.224.204.36\n216.244.66.228\n46.229.168.131\n46.229.168.146\n46.229.168.135\n111.206.198.44\n39.100.158.151\n46.229.168.130\n2.61.172.111\n110.86.19.26\n39.98.128.208\n39.98.129.207\n46.229.168.145\n39.100.147.54\n47.92.214.153\n46.229.168.152\n218.70.204.84\n85.208.96.1\n206.189.56.14\n46.229.168.138\n46.229.168.133\n13.66.139.0\n18.222.24.144\n84.25.85.171\n112.34.110.156\n46.229.168.151\n62.210.80.98\n113.66.252.206\n192.69.95.250\n121.40.144.114\n66.206.0.173\n173.249.18.133\n90.188.236.43\n62.210.80.25\n188.68.226.104\n60.169.115.55\n46.229.168.150\n121.40.111.18\n121.40.189.110\n121.40.118.135\n45.123.41.94\n195.206.104.237\n121.40.219.187\n206.81.31.194\n121.40.110.89\n47.111.133.130\n47.111.127.121\n111.206.221.29\n162.221.200.177\n93.182.109.32\n185.160.100.26\n112.34.110.29\n121.40.114.207\n112.34.110.28\n47.111.64.179\n188.2.211.28\n121.40.150.14\n46.229.168.144\n164.68.123.23\n157.55.199.147\n121.40.192.236\n46.229.168.134\n46.229.168.148\n47.111.89.120\n121.40.175.46\n47.99.196.186\n151.80.200.152\n193.56.28.150\n45.141.71.22\n2.61.224.130\n121.40.248.200\n121.40.106.86\n210.56.127.217\n190.90.140.55\n85.208.96.71\n1.179.180.98\n75.159.84.200\n94.21.118.140\n27.255.193.172\n2001:1c06:8c2:e300:6c36:11af:25e:a81f\n2001:1c06:8c2:e300:e5f2:b2b5:1c17:7afd\n2001:1c06:8c2:e300:f55f:559f:2f34:f2d0\n2401:4900:16bc:6f12:e4c5:b2dc:39eb:f244\n2001:e68:5422:28a1:a433:b10:645d:b9a1\n2607:fea8:91c0:40a:548:ae6b:ff7f:18f3\n2001:1c06:8c2:e300:e912:206b:b0d7:e7b4\n2001:e68:5422:28a1:2936:b9e4:7ca0:89e\n2001:e68:5420:2a0c:e08a:d855:1cef:92a5', '0', '0', '0', '', '', NULL), (17, 'filterwords', 'words', 'bordel\r\nbuzna\r\nčumět\r\nčurák\r\ndebil\r\ndršťka\r\ndržka\r\nflundra\r\nhajzl\r\nhovno\r\nchcanky\r\nchuj\r\njebat\r\nkokot\r\nkokotina\r\nkoňomrd\r\nkunda\r\nkurva\r\nmamrd\r\nmrdat\r\nmrdka\r\nmrdník\r\noslošoust\r\npiča\r\npíčus\r\npíchat\r\npizda\r\nprcat\r\nprdel\r\nprdelka\r\nsračka\r\nsrát\r\nšoustat\r\nšulin\r\nvypíčenec\r\nzkurvit\r\nzkurvysyn\r\nzmrd\r\nžrát\r\nanus\r\nbøsserøv\r\ncock\r\nfisse\r\nfissehår\r\nfuck\r\nfuckoff\r\nhestepik\r\nkussekryller\r\nlort\r\nluder\r\npik\r\npikhår\r\npikslugeri\r\npiksutteri\r\npis\r\nrøv\r\nrøvhul\r\nrøvskæg\r\nrøvspræke\r\nshit\r\nanalritter\r\narsch\r\narschficker\r\narschlecker\r\narschloch\r\nbimbo\r\nbratze\r\nbumsen\r\nbonze\r\ndödel\r\nfick\r\nficken\r\nflittchen\r\nfotze\r\nfratze\r\nhackfresse\r\nhure\r\nhurensohn\r\nische\r\nkackbratze\r\nkacke\r\nkacken\r\nkackwurst\r\nkampflesbe\r\nkanake\r\nkimme\r\nlümmel\r\nMILF\r\nmöpse\r\nmorgenlatte\r\nmöse\r\nmufti\r\nmuschi\r\nnackt\r\nneger\r\nnigger\r\nnippel\r\nnutte\r\nonanieren\r\norgasmus\r\npenis\r\npimmel\r\npimpern\r\npinkeln\r\npissen\r\npisser\r\npopel\r\npoppen\r\nporno\r\nreudig\r\nrosette\r\nschabracke\r\nschlampe\r\nscheiße\r\nscheisser\r\nschiesser\r\nschnackeln\r\nschwanzlutscher\r\nschwuchtel\r\ntittchen\r\ntitten\r\nvögeln\r\nvollpfosten\r\nwichse\r\nwichsen\r\nwichser\r\n2g1c\r\nacrotomophilia\r\nanal\r\nanilingus\r\nanus\r\napeshit\r\narsehole\r\nass\r\nasshole\r\nassmunch\r\nautoerotic\r\nbabeland\r\nbangbros\r\nbangbus\r\nbareback\r\nbarenaked\r\nbastard\r\nbastardo\r\nbastinado\r\nbbw\r\nbdsm\r\nbeaner\r\nbeaners\r\nbeastiality\r\nbestiality\r\nbimbos\r\nbirdlock\r\nbitch\r\nbitches\r\nblowjob\r\nblumpkin\r\nbollocks\r\nbondage\r\nboner\r\nboob\r\nboobs\r\nbukkake\r\nbulldyke\r\nbullshit\r\nbunghole\r\nbusty\r\nbutt\r\nbuttcheeks\r\nbutthole\r\ncamgirl\r\ncamslut\r\ncamwhore\r\ncarpetmuncher\r\ncialis\r\ncirclejerk\r\nclit\r\nclitoris\r\nclusterfuck\r\ncock\r\ncocks\r\ncoprolagnia\r\ncoprophilia\r\ncornhole\r\ncoon\r\ncoons\r\ncreampie\r\ncum\r\ncumming\r\ncumshot\r\ncumshots\r\ncunnilingus\r\ncunt\r\ndarkie\r\ndaterape\r\ndeepthroat\r\ndendrophilia\r\ndick\r\ndildo\r\ndingleberry\r\ndingleberries\r\ndoggiestyle\r\ndoggystyle\r\ndolcett\r\ndomination\r\ndominatrix\r\ndommes\r\ndvda\r\necchi\r\nejaculation\r\nerotic\r\nerotism\r\nescort\r\neunuch\r\nfag\r\nfaggot\r\nfecal\r\nfelch\r\nfellatio\r\nfeltch\r\nfemdom\r\nfigging\r\nfingerbang\r\nfingering\r\nfisting\r\nfootjob\r\nfrotting\r\nfuck\r\nfuckin\r\nfucking\r\nfucktards\r\nfudgepacker\r\nfutanari\r\ngangbang\r\ngenitals\r\ngoatcx\r\ngoatse\r\ngokkun\r\ngoodpoop\r\ngoregasm\r\ngrope\r\nguro\r\nhandjob\r\nhardcore\r\nhentai\r\nhomoerotic\r\nhonkey\r\nhooker\r\nhorny\r\nhumping\r\nincest\r\nintercourse\r\njailbait\r\njigaboo\r\njiggaboo\r\njiggerboo\r\njizz\r\njuggs\r\nkike\r\nkinbaku\r\nkinkster\r\nkinky\r\nknobbing\r\nlivesex\r\nlolita\r\nlovemaking\r\nmasturbate\r\nmasturbating\r\nmasturbation\r\nmilf\r\nmong\r\nmotherfucker\r\nmuffdiving\r\nnambla\r\nnawashi\r\nnegro\r\nneonazi\r\nnigga\r\nnigger\r\nnimphomania\r\nnipple\r\nnipples\r\nnsfw\r\nnude\r\nnudity\r\nnutten\r\nnympho\r\nnymphomania\r\noctopussy\r\nomorashi\r\norgasm\r\norgy\r\npaedophile\r\npaki\r\npanties\r\npanty\r\npedobear\r\npedophile\r\npegging\r\npenis\r\npikey\r\npissing\r\npisspig\r\nplayboy\r\nponyplay\r\npoof\r\npoon\r\npoontang\r\npunany\r\npoopchute\r\nporn\r\nporno\r\npornography\r\npthc\r\npubes\r\npussy\r\nqueaf\r\nqueef\r\nquim\r\nraghead\r\nrape\r\nraping\r\nrapist\r\nrectum\r\nrimjob\r\nrimming\r\nsadism\r\nsantorum\r\nscat\r\nschlong\r\nscissoring\r\nsemen\r\nsex\r\nsexcam\r\nsexo\r\nsexy\r\nsexual\r\nsexually\r\nsexuality\r\nshemale\r\nshibari\r\nshit\r\nshitblimp\r\nshitty\r\nshota\r\nshrimping\r\nskeet\r\nslanteye\r\nslut\r\ns&amp;m\r\nsmut\r\nsnatch\r\nsnowballing\r\nsodomize\r\nsodomy\r\nspastic\r\nspic\r\nsplooge\r\nspooge\r\nspunk\r\nstrapon\r\nstrappado\r\nsuck\r\nsucks\r\nswastika\r\nswinger\r\nthreesome\r\nthroating\r\nthumbzilla\r\ntit\r\ntits\r\ntitties\r\ntitty\r\ntopless\r\ntosser\r\ntowelhead\r\ntranny\r\ntribadism\r\ntubgirl\r\ntushy\r\ntwat\r\ntwink\r\ntwinkie\r\nundressing\r\nupskirt\r\nurophilia\r\nvagina\r\nviagra\r\nvibrator\r\nvorarephilia\r\nvoyeur\r\nvoyeurweb\r\nvoyuer\r\nvulva\r\nwank\r\nwetback\r\nwhore\r\nworldsex\r\nxx\r\nxxx\r\nyaoi\r\nyiffy\r\nzoophilia\r\nbugren\r\nbugri\r\nbugru\r\nĉiesulino\r\nĉiesulo\r\ndiofek\r\ndiofeka\r\nfek\r\nfeken\r\nfekfikanto\r\nfeklekulo\r\nfekulo\r\nfik\r\nfikado\r\nfikema\r\nfikfek\r\nfiki\r\nfikiĝi\r\nfikiĝu\r\nfikilo\r\nfikklaŭno\r\nfikota\r\nfiku\r\nforfiki\r\nforfikiĝu\r\nforfiku\r\nforfurzu\r\nforpisi\r\nforpisu\r\nfurzulo\r\nkacen\r\nkaco\r\nkacsuĉulo\r\nkojono\r\npiĉen\r\npiĉo\r\nzamenfek\r\nAsesinato\r\nasno\r\nbastardo\r\nBollera\r\nCabrón\r\nCaca\r\nChupada\r\nChupapollas\r\nChupetón\r\nconcha\r\nCoño\r\nCoprofagía\r\nCulo\r\nDrogas\r\nEsperma\r\nFollador\r\nFollar\r\nGilipichis\r\nGilipollas\r\nHeroína\r\nHijaputa\r\nHijoputa\r\nIdiota\r\nImbécil\r\ninfierno\r\nJilipollas\r\nKapullo\r\nLameculos\r\nMaciza\r\nMacizorra\r\nmaldito\r\nMamada\r\nMarica\r\nMaricón\r\nMariconazo\r\nmartillo\r\nMierda\r\nNazi\r\nOrina\r\nPedo\r\nPendejo\r\nPervertido\r\nPezón\r\nPinche\r\nPis\r\nProstituta\r\nPuta\r\nRacista\r\nRamera\r\nSádico\r\nSemen\r\nSexo\r\nSoplagaitas\r\nSoplapollas\r\nTravesti\r\nTrio\r\nVerga\r\nVulva\r\nbylsiä\r\nhaahka\r\nhatullinen\r\nhelvetisti\r\nhevonkuusi\r\nhevonpaska\r\nhevonperse\r\nhevonvittu\r\nhevonvitunperse\r\nhitosti\r\nhitto\r\nhuorata\r\nhässiä\r\njutku\r\njutsku\r\njätkä\r\nkananpaska\r\nkoiranpaska\r\nkulli\r\nkullinluikaus\r\nkuppainen\r\nkusaista\r\nkuseksia\r\nkusettaa\r\nkusi\r\nkusipää\r\nkusta\r\nkyrpiintynyt\r\nkyrpiintyä\r\nkyrpiä\r\nkyrpä\r\nkyrpänaama\r\nkyrvitys\r\nlahtari\r\nlutka\r\nmolo\r\nmolopää\r\nmulkero\r\nmulkku\r\nmulkvisti\r\nmuna\r\nmunapää\r\nmunaton\r\nmutakuono\r\nmutiainen\r\nnaida\r\nnainti\r\nnarttu\r\nneekeri\r\nnekru\r\nnussia\r\nnussija\r\nnussinta\r\npaljaalla\r\npalli\r\npallit\r\npaneskella\r\npanettaa\r\npanna\r\npano\r\npantava\r\npaska\r\npaskainen\r\npaskamainen\r\npaskanmarjat\r\npaskantaa\r\npaskapuhe\r\npaskapää\r\npaskattaa\r\npaskiainen\r\npaskoa\r\npehko\r\npentele\r\nperkele\r\nperkeleesti\r\npersaukinen\r\nperse\r\nperseennuolija\r\npersereikä\r\nperseääliö\r\npersläpi\r\nperspano\r\npersvako\r\npilkunnussija\r\npillu\r\npillut\r\npipari\r\npiru\r\npistää\r\npyllyvako\r\nreikä\r\nreva\r\nripsipiirakka\r\nrunkata\r\nrunkkari\r\nrunkkaus\r\nrunkku\r\nryssä\r\nrättipää\r\nsaatanasti\r\nsuklaaosasto\r\ntavara\r\ntoosa\r\ntuhkaluukku\r\ntumputtaa\r\nturpasauna\r\ntussu\r\ntussukka\r\ntussut\r\nvakipano\r\nviiksi\r\nvittu\r\nvittuilla\r\nvittuilu\r\nvittumainen\r\nvittuuntua\r\nvittuuntunut\r\nvitun\r\nvitusti\r\nvituttaa\r\nvitutus\r\näpärä\r\ntangina\r\nburat\r\nbayag\r\nbobo\r\nnognog\r\ntanga\r\nulol\r\nkantot\r\nulol\r\njakol\r\nbaiser\r\nbander\r\nbigornette\r\nbite\r\nbitte\r\nbloblos\r\nbordel\r\nbourré\r\nbourrée\r\nbrackmard\r\nbranlage\r\nbranler\r\nbranlette\r\nbranleur\r\nbranleuse\r\ncaca\r\nchatte\r\nchiasse\r\nchier\r\nchiottes\r\nclito\r\nclitoris\r\ncon\r\nconnard\r\nconnasse\r\nconne\r\ncouilles\r\ncramouille\r\ncul\r\ndéconne\r\ndéconner\r\nemmerdant\r\nemmerder\r\nemmerdeur\r\nemmerdeuse\r\nenculé\r\nenculée\r\nenculeur\r\nenculeurs\r\nenfoiré\r\nenfoirée\r\nétron\r\nfolle\r\nfoutre\r\ngerbe\r\ngerber\r\ngouine\r\ngrogniasse\r\ngueule\r\njouir\r\nMALPT\r\nmerde\r\nmerdeuse\r\nmerdeux\r\nmeuf\r\nnègre\r\nnegro\r\npalucher\r\npédale\r\npédé\r\npéter\r\npipi\r\npisser\r\npouffiasse\r\nputain\r\npute\r\nramoner\r\nsalaud\r\nsalope\r\nsuce\r\ntapette\r\ntanche\r\nteuch\r\ntringler\r\ntrique\r\ntroncher\r\nturlute\r\nzigounette\r\nzizi\r\naand\r\naandu\r\nbalatkar\r\nbalatkari\r\nbhadva\r\nbhadve\r\nbhandve\r\nbhangi\r\nbhosad\r\nboobe\r\nchakke\r\nchinaal\r\nchinki\r\nchod\r\nchodu\r\nchooche\r\nchoochi\r\nchoope\r\nchoot\r\nchootia\r\nchootiya\r\nchuche\r\nchuchi\r\nchudaap\r\nchude\r\nchut\r\nchutad\r\nchutadd\r\nchutan\r\nchutia\r\nchutiya\r\ngaand\r\ngaandfat\r\ngaandmasti\r\ngaandufad\r\ngandfattu\r\ngandu\r\ngashti\r\ngasti\r\nghassa\r\nghasti\r\ngucchi\r\ngucchu\r\nharami\r\nharamzade\r\nhawas\r\nhijda\r\nhijra\r\njhant\r\njhantu\r\nkamine\r\nkaminey\r\nkanjar\r\nkutta\r\nkuttiya\r\nloda\r\nlodu\r\nlund\r\nlundtopi\r\nlundure\r\nmaal\r\nmadarchod\r\nmadhavchod\r\nmutth\r\nmutthal\r\nnajayaz\r\npaki\r\npataka\r\npatakha\r\nraand\r\nrandaap\r\nrandi\r\nsaala\r\nsuar\r\ntatte\r\ntatti\r\ntharak\r\ntharki\r\nbalfasz\r\nbalfaszok\r\nbalfaszokat\r\nbalfaszt\r\nbarmok\r\nbarmokat\r\nbarmot\r\nbarom\r\nbaszik\r\nbazmeg\r\nbuksza\r\nbukszák\r\nbukszákat\r\nbukszát\r\nbúr\r\nbúrok\r\ncsöcs\r\ncsöcsök\r\ncsöcsöket\r\ncsöcsöt\r\nfasz\r\nfaszfej\r\nfaszfejek\r\nfaszfejeket\r\nfaszfejet\r\nfaszok\r\nfaszokat\r\nfaszt\r\nfing\r\nfingok\r\nfingokat\r\nfingot\r\nfranc\r\nfrancok\r\nfrancokat\r\nfrancot\r\ngeci\r\ngecibb\r\ngecik\r\ngeciket\r\ngecit\r\nkibaszott\r\nkibaszottabb\r\nkúr\r\nkurafi\r\nkurafik\r\nkurafikat\r\nkurafit\r\nkurva\r\nkurvák\r\nkurvákat\r\nkurvát\r\nleggecibb\r\nlegkibaszottabb\r\nlegszarabb\r\nmarha\r\nmarhák\r\nmarhákat\r\nmarhát\r\nmegdöglik\r\npele\r\npelék\r\npicsa\r\npicsákat\r\npicsát\r\npina\r\npinák\r\npinákat\r\npinát\r\npofa\r\npofákat\r\npofát\r\npöcs\r\npöcsök\r\npöcsöket\r\npöcsöt\r\npunci\r\npuncik\r\nsegg\r\nseggek\r\nseggeket\r\nsegget\r\nseggfej\r\nseggfejek\r\nseggfejeket\r\nseggfejet\r\nszajha\r\nszajhák\r\nszajhákat\r\nszajhát\r\nszar\r\nszarabb\r\nszarik\r\nszarok\r\nszarokat\r\nszart\r\nallupato\r\nammucchiata\r\nanale\r\narrapato\r\narrusa\r\narruso\r\nassatanato\r\nbagascia\r\nbagassa\r\nbagnarsi\r\nbaldracca\r\nballe\r\nbattere\r\nbattona\r\nbelino\r\nbiga\r\nbocchinara\r\nbocchino\r\nbofilo\r\nboiata\r\nbordello\r\nbrinca\r\nbucaiolo\r\nbudiùlo\r\nbusone\r\ncacca\r\ncaciocappella\r\ncadavere\r\ncagare\r\ncagata\r\ncagna\r\ncasci\r\ncazzata\r\ncazzimma\r\ncazzo\r\ncesso\r\ncazzone\r\nchecca\r\nchiappa\r\nchiavare\r\nchiavata\r\nciospo\r\ncoglione\r\ncoglioni\r\ncornuto\r\ncozza\r\nculattina\r\nculattone\r\nculo\r\nditalino\r\nfava\r\nfemminuccia\r\nfica\r\nfiga\r\nfigone\r\nfinocchio\r\nfottere\r\nfottersi\r\nfracicone\r\nfregna\r\nfrocio\r\nfroscio\r\ngoldone\r\nguardone\r\nimbecille\r\nincazzarsi\r\nincoglionirsi\r\ningoio\r\nleccaculo\r\nlecchino\r\nlofare\r\nloffa\r\nloffare\r\nmannaggia\r\nmerda\r\nmerdata\r\nmerdoso\r\nmignotta\r\nminchia\r\nminchione\r\nmona\r\nmonta\r\nmontare\r\nmussa\r\nnerchia\r\npadulo\r\npalle\r\npalloso\r\npatacca\r\npatonza\r\npecorina\r\npesce\r\npicio\r\npincare\r\npippa\r\npinnolone\r\npipì\r\npippone\r\npirla\r\npisciare\r\npiscio\r\npisello\r\npistolotto\r\npomiciare\r\npompa\r\npompino\r\nporca\r\nporco\r\npotta\r\npuppami\r\nputtana\r\nquaglia\r\nrecchione\r\nregina\r\nrincoglionire\r\nrizzarsi\r\nrompiballe\r\nrompipalle\r\nruffiano\r\nsbattere\r\nsbattersi\r\nsborra\r\nsborrata\r\nsborrone\r\nsbrodolata\r\nscopare\r\nscopata\r\nscorreggiare\r\nsega\r\nslinguare\r\nslinguata\r\nsmandrappata\r\nsoccia\r\nsocmel\r\nsorca\r\nspagnola\r\nspompinare\r\nsticchio\r\nstronza\r\nstronzata\r\nstronzo\r\nsucchiami\r\nsucchione\r\nsveltina\r\nsverginare\r\ntarzanello\r\nterrone\r\ntette\r\ntirare\r\ntopa\r\ntroia\r\ntrombare\r\nvacca\r\nvaffanculo\r\nvangare\r\nzinne\r\nzoccola\r\nabbuc\r\naεeṭṭuḍ\r\naḥeččun\r\ntaḥeččunt\r\naxuzziḍ\r\nasxuẓeḍ\r\nqqu\r\nqquɣ\r\nqqiɣ\r\nqqan\r\nqqant\r\ntteqqun\r\ntteqqunt\r\ntteqqun\r\naqerqur\r\najeḥniḍ\r\nawellaq\r\niwellaqen\r\niḥeččan\r\niḥeččunen\r\nuqan\r\ntaxna\r\nafberen\r\naflebberen\r\nafrossen\r\nafrukken\r\naftrekken\r\nafwerkplaats\r\nafzeiken\r\nafzuigen\r\nanita\r\nasbak\r\naso\r\nbalen\r\nbedonderen\r\nbefborstel\r\nbeffen\r\nbekken\r\nbelazeren\r\nbesodemieteren\r\nbeurt\r\nboemelen\r\nboerelul\r\nboerenpummel\r\nbokkelul\r\nbotergeil\r\nbroekhoesten\r\nbrugpieper\r\nbuffelen\r\ndel\r\ndombo\r\ndraaikont\r\ndrol\r\ndrooggeiler\r\ndroogkloot\r\neikel\r\nengerd\r\nflamoes\r\nflikken\r\nflikker\r\ngadverdamme\r\ngalbak\r\ngat\r\ngedoogzone\r\ngeilneef\r\ngesodemieter\r\ngodverdomme\r\ngraftak\r\ngratenkut\r\ngreppeldel\r\ngriet\r\nhoempert\r\nhoer\r\nhoerenbuurt\r\nhoerenloper\r\nhoerig\r\nhol\r\nhufter\r\nhuisdealer\r\njohny\r\nkanen\r\nkettingzeug\r\nklaarkomen\r\nklerebeer\r\nklojo\r\nklooien\r\nklootjesvolk\r\nklootoog\r\nklootzak\r\nkloten\r\nknor\r\nkont\r\nkontneuken\r\nkrentekakker\r\nkut\r\nkuttelikkertje\r\nkwakkie\r\nliefdesgrot\r\nlul\r\nlulhannes\r\nlummel\r\nmafketel\r\nmatennaaier\r\nmatje\r\nmof\r\nmuts\r\nnaaien\r\nnaakt\r\nneuken\r\nneukstier\r\nnicht\r\noetlul\r\nopgeilen\r\nopkankeren\r\noprotten\r\nopsodemieteren\r\nopzouten\r\nouwehoer\r\nouwehoeren\r\npaal\r\npaardelul\r\npalen\r\npenoze\r\npiesen\r\npijpbekkieg\r\npijpen\r\npik\r\npleurislaaier\r\npoep\r\npoepen\r\npoot\r\nportiekslet\r\npot\r\npotverdorie\r\npubliciteitsgeil\r\nraaskallen\r\nreet\r\nreetridder\r\nremsporen\r\nreutelen\r\nrothoer\r\nrotzak\r\nrukhond\r\nrukken\r\nschatje\r\nschijt\r\nschijten\r\nschoft\r\nschuinsmarcheerder\r\nshit\r\nslempen\r\nslet\r\nsletterig\r\nsnol\r\nspuiten\r\nstandje\r\nstoephoer\r\nstootje\r\nstront\r\nsufferd\r\ntapijtnek\r\nteef\r\ntemeier\r\nteringlijer\r\ntoeter\r\ntongzoeng\r\ntriootjeg\r\ntrottoirteef\r\nvergallen\r\nverkloten\r\nverneuken\r\nviespeuk\r\nvingeren\r\nvleesroos\r\nwatje\r\nwelzijnsmafia\r\nwijf\r\nwippen\r\nwuftje\r\nzaadje\r\nzakkenwasser\r\nzeiken\r\nzeiker\r\nzuigen\r\nzuiplap\r\nasshole\r\ndritt\r\ndrittsekk\r\nfaen\r\nfan\r\nfanken\r\nfitte\r\nforbanna\r\nforbannet\r\nforjævlig\r\nfuck\r\nføkk\r\nføkka\r\nføkkings\r\njævla\r\njævlig\r\nhelvete\r\nhelvetet\r\nkuk\r\nkukene\r\nkuker\r\nmorraknuller\r\nmorrapuler\r\nnigger\r\npakkis\r\npikk\r\npokker\r\nræva\r\nræven\r\nsatan\r\nshit\r\nsinnsykt\r\nskitt\r\nsotrør\r\nståpikk\r\nståpikkene\r\nståpikker\r\nsvartheiteste\r\nburdel\r\nburdelmama\r\nchuj\r\nchujnia\r\nciota\r\ncipa\r\ncyc\r\ndebil\r\ndmuchać\r\ndupa\r\ndupek\r\nduperele\r\ndziwka\r\nfiut\r\ngówno\r\nhuj\r\njajco\r\njajko\r\njebać\r\njebany\r\nkurwa\r\nkurwy\r\nkutafon\r\nkutas\r\npieprzyć\r\npierdolec\r\npierdolić\r\npierdolnąć\r\npierdolnięty\r\npierdoła\r\npierdzieć\r\npizda\r\npojeb\r\npojebany\r\npopierdolony\r\nruchać\r\nrzygać\r\nskurwysyn\r\nsraczka\r\nsrać\r\nsuka\r\nsyf\r\nwkurwiać\r\nzajebisty\r\naborto\r\namador\r\nânus\r\naranha\r\nariano\r\nbalalao\r\nbastardo\r\nbicha\r\nbiscate\r\nbissexual\r\nboceta\r\nboob\r\nbosta\r\nbumbum\r\nburro\r\ncabrao\r\ncacete\r\ncagar\r\ncamisinha\r\ncaralho\r\ncerveja\r\nchochota\r\nchupar\r\nclitoris\r\ncocaína\r\ncoito\r\ncolhoes\r\ncomer\r\ncona\r\nconsolo\r\ncorno\r\ncu\r\nesporra\r\nfecal\r\nfoda\r\nfoder\r\ngozar\r\ngrelho\r\nheroína\r\nheterosexual\r\nhomoerótico\r\nhomosexual\r\ninferno\r\nlésbica\r\nlolita\r\nmama\r\nmerda\r\npaneleiro\r\npau\r\npeidar\r\npênis\r\npinto\r\nporra\r\nputa\r\nqueca\r\nsacanagem\r\nsaco\r\ntorneira\r\ntransar\r\nvadia\r\nveado\r\nvibrador\r\nxana\r\nxochota\r\nbychara\r\nbyk\r\nchernozhopyi\r\ndolboy&#039;eb\r\nebalnik\r\nebalo\r\ngol\r\nmudack\r\nopizdenet\r\nosto&#039;eblo\r\nostokhuitel&#039;no\r\not&#039;ebis\r\notmudohat\r\notpizdit\r\notsosi\r\npadlo\r\npedik\r\nperdet\r\npetuh\r\npizda\r\npizdato\r\npizdatyi\r\npiz&#039;det\r\npizdetc\r\npizd&#039;uk\r\npiz`dyulina\r\npoeben\r\nprissat\r\nproebat\r\npropezdoloch\r\nprosrat\r\nraspeezdeyi\r\nraspizdatyi\r\nraz&#039;yebuy\r\nraz&#039;yoba\r\ns&#039;ebat&#039;sya\r\nshalava\r\nstyervo\r\nsvoloch\r\ntrakhat&#039;sya\r\nubl&#039;yudok\r\nuboy\r\nu&#039;ebitsche\r\nvafl&#039;a\r\nvyperdysh\r\nvzdrochennyi\r\nza&#039;ebat\r\nzaebis\r\nzalupa\r\nzalupat\r\nzasranetc\r\nzassat\r\nzlo&#039;ebuchy\r\nбздёнок\r\nблядки\r\nблядовать\r\nблядство\r\nблядь\r\nбугор\r\nвыёбываться\r\nгандон\r\nговно\r\nговнюк\r\nголый\r\nдерьмо\r\nдрочить\r\nёбарь\r\nебать\r\nебло\r\nебнуть\r\nжопа\r\nжополиз\r\nизмудохать\r\nмалофья\r\nманда\r\nмандавошка\r\nмент\r\nмуда\r\nмудило\r\nмудозвон\r\nнаебать\r\nнаебениться\r\nнаебнуться\r\nнахуячиться\r\nневебенный\r\nобнаженный\r\nопесдол\r\nофигеть\r\nохуеть\r\nохуительно\r\nсекс\r\nсиськи\r\nспиздить\r\nсрать\r\nссать\r\nтраxать\r\nфига\r\nхапать\r\nхохол\r\nхрен\r\nхуёво\r\nхуёвый\r\nхуеплет\r\nхуило\r\nхуиня\r\nхуй\r\nхуйнуть\r\narsle\r\nbrutta\r\ndiscofitta\r\nfan\r\nfitta\r\nfittig\r\nhelvete\r\nhård\r\njävlar\r\nknulla\r\nkuk\r\nkuksås\r\nkötthuvud\r\nköttnacke\r\nmoona\r\nmoonade\r\nmoonar\r\nmoonat\r\nmutta\r\nnigger\r\nneger\r\nolla\r\npippa\r\npitt\r\nprutt\r\npök\r\nrunka\r\nröv\r\nrövhål\r\nrövknulla\r\nsatan\r\nskita\r\nskäggbiff\r\nsnedfitta\r\nsnefitta\r\nstake\r\nsubba\r\nsås\r\ntusan\r\namcıkta\r\namcıktan\r\namı\r\namlar\r\nçingene\r\nÇingenede\r\nÇingeneden\r\nÇingeneler\r\nÇingenelerde\r\nÇingenelerden\r\nÇingenelere\r\nÇingeneleri\r\nÇingenelerin\r\nÇingenenin\r\nÇingeneye\r\nÇingeneyi\r\ngöt\r\ngöte\r\ngötler\r\ngötlerde\r\ngötlerden\r\ngötlere\r\ngötleri\r\ngötlerin\r\ngötte\r\ngötten\r\ngötü\r\ngötün\r\ngötveren\r\ngötverende\r\ngötverenden\r\ngötverene\r\ngötvereni\r\ngötverenin\r\ngötverenler\r\ngötverenlerde\r\ngötverenlerden\r\ngötverenlere\r\ngötverenleri\r\ngötverenlerin\r\nkaltağa\r\nkaltağı\r\nkaltağın\r\nkaltak\r\nkaltaklar\r\nkaltaklara\r\nkaltaklarda\r\nkaltaklardan\r\nkaltakları\r\nkaltakların\r\nkaltakta\r\nkaltaktan\r\norospu\r\norospuda\r\norospudan\r\norospular\r\norospulara\r\norospularda\r\norospulardan\r\norospuları\r\norospuların\r\norospunun\r\norospuya\r\norospuyu\r\nsaksocu\r\nsaksocuda\r\nsaksocudan\r\nsaksocular\r\nsaksoculara\r\nsaksocularda\r\nsaksoculardan\r\nsaksocuları\r\nsaksocuların\r\nsaksocunun\r\nsaksocuya\r\nsaksocuyu\r\nsıçmak\r\nsik\r\nsike\r\nsiki\r\nsikin\r\nsikler\r\nsiklerde\r\nsiklerden\r\nsiklere\r\nsikleri\r\nsiklerin\r\nsikmek\r\nsikmemek\r\nsikte\r\nsikten\r\nsiktir\r\ntaşağa\r\ntaşağı\r\ntaşağın\r\ntaşak\r\ntaşaklar\r\ntaşaklara\r\ntaşaklarda\r\ntaşaklardan\r\ntaşakları\r\ntaşakların\r\ntaşakta\r\ntaşaktan\r\nyarağa\r\nyarağı\r\nyarağın\r\nyarak\r\nyaraklar\r\nyaraklara\r\nyaraklarda\r\nyaraklardan\r\nyarakları\r\nyarakların\r\nyarakta\r\nyaraktan', '0', '0', '0', '', '', NULL), (18, 'default', 'guest_login', 'disable', '0', '0', '0', '', '', NULL), (19, 'default', 'autodeletemsg', '7200', '0', '0', '0', '', '', NULL), (20, 'default', 'email_verification', 'enable', '0', '0', '0', '', '', NULL), (21, 'default', 'smtp_authentication', 'enable', '0', '0', '0', '', '', NULL), (22, 'default', 'smtp_host', 'ssl://smtp.gmail.com', '0', '0', '0', '', '', NULL), (23, 'default', 'smtp_user', 'alert.kfpj@gmail.com', '0', '0', '0', '', '', NULL), (24, 'default', 'smtp_pass', 'j@nuari1993', '0', '0', '0', '', '', NULL), (25, 'default', 'smtp_protocol', 'ssl', '0', '0', '0', '', '', NULL), (26, 'default', 'smtp_port', '465', '0', '0', '0', '', '', NULL), (27, 'default', 'alert', 'gem/ore/grupo/alerts/alert005.mp3', '0', '0', '0', '', '', NULL), (28, 'default', 'maxmsgsperload', '25', '0', '0', '0', '', '', NULL), (29, 'default', 'refreshrate', '1500', '0', '0', '0', '', '', NULL), (30, 'default', 'max_login_attempts', '10', '0', '0', '0', '', '', NULL), (31, 'default', 'google_analytics_id', '', '0', '0', '0', '', '', NULL), (32, 'default', 'time_format', '24', '0', '0', '0', '0', '0', NULL), (33, 'default', 'default_font', 'montserrat', '0', '0', '0', '0', '0', NULL), (34, 'default', 'tenor_enable', 'enable', '0', '0', '0', '0', '0', NULL), (35, 'default', 'tenor_api', '', '0', '0', '0', '0', '0', NULL), (36, 'default', 'tenor_limit', '12', '0', '0', '0', '0', '0', NULL), (37, 'default', 'aside_results_perload', '12', '0', '0', '0', '0', '0', NULL), (38, 'default', 'min_msg_length', '1', '0', '0', '0', '0', '0', NULL), (39, 'default', 'max_msg_length', 'Off', '0', '0', '0', '0', '0', NULL), (40, 'default', 'add_readmore_after', '300', '0', '0', '0', '0', '0', NULL), (41, 'default', 'sent_msg_align', 'right', '0', '0', '0', '0', '0', NULL), (42, 'default', 'received_msg_align', 'left', '0', '0', '0', '0', '0', NULL), (43, 'default', 'pagespeed_api', '', '0', '0', '0', '0', '0', NULL), (44, 'default', 'unsplash_enable', 'disable', '0', '0', '0', '0', '0', NULL), (45, 'default', 'unsplash_load', 'collection/17098/', '0', '0', '0', '0', '0', NULL), (46, 'default', 'update_list_periodically', 'disable', '0', '0', '0', '0', '0', NULL), (47, 'default', 'force_https', 'disable', '0', '0', '0', '0', '0', NULL), (48, 'default', 'pingroup', '52', '0', '0', '0', '0', '0', NULL), (49, 'default', 'send_btn_visible', 'enable', '0', '0', '0', '0', '0', NULL), (50, 'default', 'non_latin_usernames', 'enable', '0', '0', '0', '0', '0', NULL), (51, 'default', 'sending_limit', '15', '0', '0', '0', '0', '0', NULL), (52, 'default', 'sysmessages', 'enable', '0', '0', '0', '0', '0', NULL), (53, 'default', 'releaseguestuser', 'disable', '0', '0', '0', '0', '0', NULL), (54, 'default', 'send_email_notification', '2', '0', '0', '0', '0', '0', NULL), (55, 'default', 'ascii_smileys', 'enable', '0', '0', '0', '0', '0', NULL), (56, 'default', 'use_enter_as_send', 'enable', '0', '0', '0', '0', '0', NULL), (57, 'default', 'random_guest_username', 'disable', '0', '0', '0', '0', '0', NULL), (58, 'default', 'login_cookie_validity', '30', '0', '0', '0', '0', '0', NULL), (59, 'default', 'gravatar', 'disable', '0', '0', '0', '0', '0', NULL), (60, 'default', 'show_sender_name', 'disable', '0', '0', '0', '0', '0', NULL), (61, 'default', 'request_timeout', '5', '0', '0', '0', '0', '0', NULL), (62, 'default', 'show_online_tab', 'disable', '0', '0', '0', '0', '0', NULL), (63, 'default', 'default_skin_mode', 'light_mode', '0', '0', '0', '0', '0', NULL), (64, 'default', 'mobile_page_transition', '4', '0', '0', '0', '0', '0', NULL), (65, 'default', 'message_style', 'style2', '0', '0', '0', '0', '0', NULL), (66, 'default', 'min_username_length', '4', '0', '0', '0', '0', '0', NULL), (67, 'default', 'max_username_length', '30', '0', '0', '0', '0', '0', NULL), (68, 'default', 'hide_grouptab', 'disable', '0', '0', '0', '0', '0', NULL), (69, 'default', 'first_load_guestlogin', 'disable', '0', '0', '0', '0', '0', NULL), (70, 'default', 'ad_delay', '180', '0', '0', '0', '0', '0', NULL), (71, 'default', 'join_confirm', 'enable', '0', '0', '0', '0', '0', NULL), (72, 'default', 'viewgroups_nologin', 'disable', '0', '0', '0', '0', '0', NULL), (73, 'default', 'grconnect_secretkey', 'N1REfYfj5i', '0', '0', '0', '0', '0', NULL), (74, 'default', 'dateformat', 'dmy', '0', '0', '0', '0', '0', NULL), (75, 'default', 'autoplay_radio', 'disable', '0', '0', '0', '0', '0', NULL), (76, 'default', 'cookie_consent', 'enable', '0', '0', '0', '0', '0', NULL); -- -------------------------------------------------------- -- -- Table structure for table `gr_logs` -- CREATE TABLE `gr_logs` ( `id` bigint NOT NULL, `type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `v1` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `v2` bigint DEFAULT NULL, `v3` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `xtra` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tms` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `gr_logs` -- INSERT INTO `gr_logs` (`id`, `type`, `v1`, `v2`, `v3`, `xtra`, `tms`) VALUES (1, 'cache', '1606903987', 0, '0', '0', '2020-07-20 03:32:31'), (2, 'browsing', '1', NULL, '1-2', 'user', '2022-03-02 21:42:25'), (3, 'typing', '1-2', 1, '0', NULL, '2022-03-02 20:55:43'), (4, 'browsing', '2', NULL, '1-2', 'user', '2022-03-02 20:52:13'), (5, 'browsing', '4', NULL, '13', 'group', '2022-01-31 09:55:35'), (6, 'typing', '13', 4, '0', NULL, '2022-01-31 09:55:25'), (7, 'typing', '1-2', 2, '0', NULL, '2022-03-02 20:52:42'), (8, 'browsing', '3', NULL, '52', 'group', '2022-03-03 08:51:33'), (9, 'typing', '43', 3, '0', NULL, '2022-02-05 20:13:53'), (10, 'browsing', '53', NULL, '0', 'group', '2022-02-07 05:56:57'), (11, 'browsing', '62', NULL, '0', 'group', '2022-02-10 12:26:14'), (12, 'browsing', '26', NULL, '52', 'group', '2022-02-10 13:15:12'), (13, 'browsing', '14', NULL, '52', 'group', '2022-02-23 12:10:01'), (14, 'typing', '14-26', 26, '0', NULL, '2022-02-10 12:26:52'), (15, 'typing', '14-26', 14, '0', NULL, '2022-02-23 07:48:00'), (16, 'browsing', '24', NULL, '52', 'group', '2022-02-11 07:30:31'), (17, 'browsing', '23', NULL, '52', 'group', '2022-02-10 17:37:00'), (18, 'browsing', '48', NULL, '52', 'group', '2022-02-10 18:09:10'), (19, 'browsing', '46', NULL, '52', 'group', '2022-02-11 05:50:15'), (20, 'browsing', '11', NULL, '52', 'group', '2022-02-11 12:14:51'), (21, 'browsing', '41', NULL, '1-41', 'user', '2022-03-01 14:17:09'), (22, 'browsing', '29', NULL, '0', 'user', '2022-02-23 08:01:53'), (23, 'typing', '14-29', 29, '0', NULL, '2022-02-23 07:50:34'), (24, 'browsing', '65', NULL, '0', 'group', '2022-02-23 08:33:08'), (25, 'typing', '1-41', 41, '0', NULL, '2022-03-01 11:15:05'), (26, 'browsing', '8', NULL, '0', 'group', '2022-03-02 06:59:40'), (27, 'typing', '2-8', 8, '0', NULL, '2022-03-02 06:54:30'); -- -------------------------------------------------------- -- -- Table structure for table `gr_mails` -- CREATE TABLE `gr_mails` ( `id` bigint NOT NULL, `uid` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `type` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `valz` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sent` int NOT NULL DEFAULT '0', `tms` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `gr_mails` -- INSERT INTO `gr_mails` (`id`, `uid`, `type`, `valz`, `code`, `sent`, `tms`) VALUES (1, '29', 'reset', '0', 'MdtFQ', 1, '2022-02-23 07:43:36'), (2, '29', 'reset', '0', 'sBn7N', 1, '2022-02-23 07:59:46'), (3, '1', 'reset', '0', '6jxEw', 1, '2022-02-23 08:07:08'), (4, '29', 'reset', '0', 'PLVGN', 1, '2022-02-23 08:08:18'), (5, '1', 'reset', '0', 'ohahs', 1, '2022-02-23 08:11:51'), (6, '1', 'reset', '0', 's41Qy', 1, '2022-02-23 08:12:47'), (7, '1', 'reset', '0', 'Qk0kv', 1, '2022-02-23 08:15:04'), (8, '29', 'reset', '0', 'IF2Xq', 1, '2022-02-23 08:16:01'), (9, '2', 'reset', '0', '5NQmR', 1, '2022-02-23 08:16:12'), (10, '1', 'reset', '0', 'pXGfZ', 1, '2022-02-23 08:18:30'), (11, '1', 'reset', '0', 'vTNbW', 1, '2022-02-23 08:19:31'), (12, '65', 'verify', '0', 'w0cpk', 1, '2022-02-23 08:26:17'); -- -------------------------------------------------------- -- -- Table structure for table `gr_msgs` -- CREATE TABLE `gr_msgs` ( `id` bigint NOT NULL, `gid` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `uid` bigint DEFAULT NULL, `msg` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `type` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'msg', `rtxt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `rid` bigint DEFAULT NULL, `rmid` bigint DEFAULT NULL, `rtype` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'msg', `cat` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'group', `lnurl` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `lntitle` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '0', `lndesc` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '0', `lnimg` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `xtra` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `tms` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `gr_msgs` -- INSERT INTO `gr_msgs` (`id`, `gid`, `uid`, `msg`, `type`, `rtxt`, `rid`, `rmid`, `rtype`, `cat`, `lnurl`, `lntitle`, `lndesc`, `lnimg`, `xtra`, `tms`) VALUES (1, '1-2', 1, 'Tes', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-01-30 09:39:52'), (2, '1-2', 1, 'tes', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-01-30 09:40:00'), (3, '1-2', 1, 'tes', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-01-30 09:40:04'), (4, '1-2', 1, 'apa', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-01-30 09:40:07'), (10, '1-2', 1, 'tes', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-01-30 22:45:06'), (28, '1-4', 1, 'Tes Azizah', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-01-31 10:06:58'), (29, '1-2', 1, 'Oi sep', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-01-31 10:08:34'), (30, '1-2', 1, ':slight_smile:', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-01-31 10:10:36'), (51, '1-2', 1, 'OI', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-02-02 07:46:23'), (52, '1-2', 1, 'sakit apa anak bini ?', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-02-02 07:46:30'), (53, '1-2', 1, ':innocent:', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-02-02 07:46:47'), (54, '1-2', 1, 'http://103.111.82.210:1101/spektachat/gem/ore/grupo/stickers/Simpsons/sticker-uqaykx.png|512|512', 'stickers', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', 'http://103.111.82.210:1101/spektachat/gem/ore/grupo/stickers/Simpsons/sticker-uqaykx.png', '2022-02-02 07:47:15'), (61, '1-2', 1, 'dfsdfsd', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-02-02 10:15:21'), (62, '1-2', 1, 'sfzdgsd', 'qrcode', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-02-02 10:15:28'), (96, '1-2', 1, 'aah', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-02-02 22:21:05'), (97, '1-2', 2, 'kenapa man ?', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-02-02 22:21:27'), (140, '1-2', 1, 'Sep', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-02-04 17:20:00'), (259, '1-53', 1, '<div style=\"display:flex;flex-direction:column;justify-content:space-between;align-items:center;width:100%;height:auto\"><div style=\"font-family:sans-serif;text-align:center;width:100%;color:#ccc;padding-top:10px\"><p>PT. Kimia Farma Tbk. Plant Jakarta</p><hr style=\"border; 1px solid #ccc\" /></div><div style=\"width:100%;color:#ccc\"><div style=\"text-align:left;padding:10px\"><p>Jadwal Pekerjaan</p><br /><p style=\"text-align:left\">Dear Bapak/Ibu</p><p style=\"text-align:left\">Berikut ini adalah <b>Jadwal Pekerjaan</b> Bagian Teknik & Pemeliharaan Februari 2022 yang dikirim oleh <b>Administrator</b></p><p style=\"text-align:left\">Untuk info lebih lanjut, silahkan klik <a target=\'_blank\' href=\'http://spekta.id/index.php?c=PublicController&m=ganttChart&token=MnIrZXZHRmFXVFNUeXVsUkRib2tJdz09\'><i>di sini.</i></a></p></div></div>\n</div>', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', NULL), (272, '14-26', 26, 'assalamualaikum Ibu', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-02-10 12:25:34'), (273, '14-26', 14, 'hi', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-02-10 12:25:39'), (274, '14-26', 14, 'waalaikumsalam', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-02-10 12:25:48'), (275, '14-26', 14, ':heart_eyes:', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-02-10 12:25:54'), (276, '14-26', 14, 'https://spekta.id/spektachat/gem/ore/grupo/stickers/Covid19/sticker-xsfhyg.png|512|512', 'stickers', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', 'https://spekta.id/spektachat/gem/ore/grupo/stickers/Covid19/sticker-xsfhyg.png', '2022-02-10 12:26:28'), (277, '14-26', 26, ':heartpulse:', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-02-10 12:26:52'), (283, '2-24', 2, 'tes', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-02-10 12:55:18'), (284, '2-24', 2, 'disini bisa kita pakai buat koordinasi kerjaan pak is', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-02-10 12:55:35'), (285, '2-24', 2, ':grin:', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-02-10 12:55:42'), (286, '2-24', 2, ':smiley:', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-02-10 12:55:48'), (288, '1-24', 1, 'Hallo pak', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-02-10 12:58:37'), (289, '1-24', 1, 'Untuk cara membuka di HP silahkan ikuti petunjuk di Group KFUPJ', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-02-10 12:59:57'), (302, '1-1', 1, '<div style=\"display:flex;flex-direction:column;justify-content:space-between;align-items:center;width:100%;height:auto\"><div style=\"font-family:sans-serif;text-align:center;width:100%;color:#ccc;padding-top:10px\"><p>PT. Kimia Farma Tbk. Plant Jakarta</p><hr style=\"border; 1px solid #ccc\" /></div><div style=\"width:100%;color:#ccc\"><div style=\"text-align:left;padding:10px\"><p>Jadwal Pekerjaan</p><br /><p style=\"text-align:left\">Dear Bapak/Ibu</p><p style=\"text-align:left\">Berikut ini adalah <b>Jadwal Pekerjaan</b> Bagian Teknik & Pemeliharaan Februari 2022 yang dikirim oleh <b>Administrator</b></p><p style=\"text-align:left\">Untuk info lebih lanjut, silahkan klik <a target=\'_blank\' href=\'https://spekta.id/index.php?c=PublicController&m=ganttChart&token=MnIrZXZHRmFXVFNUeXVsUkRib2tJdz09\'><i>di sini.</i></a></p></div></div>\n</div>', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', NULL), (310, '14-26', 14, 'Uyyy', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-02-23 07:48:01'), (311, '14-29', 29, 'https://spekta.id/spektachat/gem/ore/grupo/stickers/Simpsons/sticker-92f1gm.png|512|512', 'stickers', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', 'https://spekta.id/spektachat/gem/ore/grupo/stickers/Simpsons/sticker-92f1gm.png', '2022-02-23 07:49:58'), (315, '52', 65, 'joined_group', 'system', '0', 0, 0, 'msg', 'group', '', NULL, NULL, '', '0', '2022-02-23 08:31:28'), (321, '52', 1, 'renamed_group', 'system', '0', 0, 0, 'msg', 'group', '', NULL, NULL, '', '0', '2022-02-25 19:40:42'), (323, '43', 1, 'renamed_group', 'system', '0', 0, 0, 'msg', 'group', '', NULL, NULL, '', '0', '2022-02-28 15:55:17'), (324, '43', 1, 'renamed_group', 'system', '0', 0, 0, 'msg', 'group', '', NULL, NULL, '', '0', '2022-02-28 15:55:35'), (326, '52', 1, 'Tes', 'msg', '0', 0, 0, 'msg', 'group', '', NULL, NULL, '', '0', '2022-03-01 11:14:26'), (327, '52', 1, 'kkk', 'msg', '0', 0, 0, 'msg', 'group', '', NULL, NULL, '', '0', '2022-03-01 11:14:36'), (329, '1-41', 41, 'tes', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-03-01 11:15:06'), (330, '1-41', 1, 'Tes', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-03-01 11:15:20'), (331, '1-41', 1, 'Gas mas', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-03-01 12:15:18'), (332, '2-8', 2, 'Tes', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-03-02 06:54:22'), (333, '2-8', 8, 'tes', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-03-02 06:54:31'), (335, '1-2', 1, '8qFSF4Swr-gr-Sosialisasi_#1.pptx', 'file', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', 'Sosialisasi_#1.pptx', '2022-03-02 20:48:25'), (337, '1-2', 1, 'mbee', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-03-02 20:50:32'), (340, '1-2', 2, 'Nais, blm k donlot klo dri hp ting', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-03-02 20:51:35'), (341, '1-2', 1, 'gak ada notif downloadnya ?', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-03-02 20:51:58'), (342, '1-2', 1, 'di hp gua bisa sep', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-03-02 20:52:03'), (343, '1-2', 1, 'dari laptop atuh', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-03-02 20:52:14'), (344, '1-2', 2, 'Iya ntr w coba dri laptop', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-03-02 20:52:35'), (345, '1-2', 2, 'Bocah blm tdr', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-03-02 20:52:46'), (346, '1-2', 1, 'tidurin sep', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-03-02 20:55:39'), (347, '1-2', 1, 'kasih susu', 'msg', '0', 0, 0, 'msg', 'user', '', NULL, NULL, '', '0', '2022-03-02 20:55:45'), (348, '52', 1, 'changed_group_icon', 'system', '0', 0, 0, 'msg', 'group', '', NULL, NULL, '', '0', '2022-03-02 20:56:41'); -- -------------------------------------------------------- -- -- Table structure for table `gr_options` -- CREATE TABLE `gr_options` ( `id` bigint NOT NULL, `type` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `v1` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '0', `v2` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `v3` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '0', `v4` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '0', `v5` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '0', `v6` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '0', `v7` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '0', `tms` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `gr_options` -- INSERT INTO `gr_options` (`id`, `type`, `v1`, `v2`, `v3`, `v4`, `v5`, `v6`, `v7`, `tms`) VALUES (1, 'profile', 'name', 'ARMAN SEPTIAN', '1', 'superuser', '#007761', '', '', '2020-11-15 10:40:17'), (4, 'usrole', '421aa90e079fa326b6494f812ad13e79', '9gfQKxvoHd', 'rzDFT', '0', '0', '0', '0', NULL), (5, 'profile', 'status', 'offline', '1', '0', '0', '0', '0', '2022-03-03 08:51:11'), (6, 'profile', 'autotmz', 'America/New_York', '1', '0', '0', '0', '0', '2022-03-02 21:42:19'), (8, 'profile', 'name', 'ASEP DIKI ARIYANTO', '2', 'asep.diki', '#193C87', '0', '0', '2022-01-30 09:39:13'), (9, 'profile', 'status', 'offline', '2', '0', '0', '0', '0', '2022-03-02 21:42:19'), (10, 'profile', 'autotmz', 'America/New_York', '2', '0', '0', '0', '0', '2022-03-02 20:52:10'), (11, 'lview', '1-2', '1', '347', '0', '0', '0', '0', '2022-03-02 21:42:25'), (12, 'lview', '1-2', '2', '345', '0', '0', '0', '0', '2022-03-02 20:52:46'), (25, 'profile', 'alert', 'gem/ore/grupo/alerts/alert005.mp3', '2', '0', '0', '0', '0', '2022-02-07 18:06:31'), (26, 'profile', 'skinmode', 'light', '1', '0', '0', '0', '0', '2022-02-07 05:57:08'), (29, 'profile', 'name', 'FIKRI AGIL ROYHAM MURTHADO', '3', 'fikri.agil', '#BC6A04', '0', '0', '2022-01-31 05:38:55'), (31, 'clearchat', '2', '1', '62', '0', '0', '0', '0', '2022-02-02 11:59:39'), (32, 'profile', 'status', 'online', '3', '0', '0', '0', '0', '2022-03-03 14:23:02'), (33, 'profile', 'autotmz', 'America/New_York', '3', '0', '0', '0', '0', '2022-03-03 14:23:04'), (34, 'profile', 'alert', 'gem/ore/grupo/alerts/alert005.mp3', '3', '0', '0', '0', '0', '2022-02-06 04:29:43'), (35, 'profile', 'name', 'azizah', '4', 'azizah', '#6A96CE', '0', '0', '2022-01-31 09:54:57'), (37, 'profile', 'status', 'offline', '4', '0', '0', '0', '0', '2022-01-31 18:08:37'), (38, 'profile', 'autotmz', 'America/New_York', '4', '0', '0', '0', '0', '2022-01-31 09:54:59'), (40, 'profile', 'skinmode', 'dark', '2', '0', '0', '0', '0', '2022-02-10 23:01:56'), (41, 'lview', '1-4', '1', '76', '0', '0', '0', '0', '2022-02-02 11:59:00'), (42, 'lview', '1-4', '4', '0', '0', '0', '0', '0', '2022-01-31 10:06:58'), (43, 'group', 'Distorcy', '172f58ab41c290e7da29bb93b514c834', '0', 'rtqFWn', '0', 'unleavable', '0', '2022-02-28 15:58:40'), (44, 'groupslug', '43', 'hnn', '0', '0', '0', '0', '0', '2022-01-31 11:53:17'), (45, 'gruser', '43', '1', '2', '0', '0', '0', '0', '2022-01-31 11:53:17'), (46, 'lview', '43', '1', '324', '0', '0', '0', '0', '2022-03-02 20:55:55'), (47, 'profile', 'alert', 'gem/ore/grupo/alerts/alert005.mp3', '1', '0', '0', '0', '0', '2022-02-06 04:22:52'), (48, 'gruser', '43', '2', '0', '0', '0', '0', '0', '2022-02-01 00:30:25'), (49, 'lview', '43', '2', '325', '0', '0', '0', '0', '2022-02-28 22:12:40'), (50, 'clearchat', '1', '2', '62', '0', '0', '0', '0', '2022-02-02 11:58:46'), (51, 'clearchat', '1', '4', '76', '0', '0', '0', '0', '2022-02-02 11:59:03'), (52, 'group', 'KFPJ', '282e9777d3b649e4f60c5e3f941b42b0', '0', 'VMoReo', '0', 'unleavable', '0', '2022-03-02 20:56:41'), (53, 'groupslug', '52', 'kfpj', '0', '0', '0', '0', '0', '2022-02-25 19:40:51'), (54, 'gruser', '52', '1', '2', '0', '0', '0', '0', '2022-02-02 21:31:05'), (55, 'lview', '52', '1', '348', '0', '0', '0', '0', '2022-03-02 20:57:01'), (56, 'gruser', '52', '2', '0', '0', '0', '0', '0', '2022-02-02 22:12:23'), (57, 'lview', '52', '2', '327', '0', '0', '0', '0', '2022-03-02 20:49:03'), (58, 'gruser', '52', '3', '0', '0', '0', '0', '0', '2022-02-04 14:18:13'), (59, 'lview', '52', '3', '348', '0', '0', '0', '0', '2022-03-03 08:51:33'), (60, 'gruser', '43', '3', '0', '0', '0', '0', '0', '2022-02-04 17:24:43'), (61, 'lview', '43', '3', '324', '0', '0', '0', '0', '2022-03-03 08:51:17'), (62, 'profile', 'skinmode', 'dark', '3', '0', '0', '0', '0', NULL), (63, 'profile', 'name', 'AFIFI HILMIYANTI', '5', 'afifihilmiyanti89@gmail.com', '#A10BA8', '0', '0', '2022-02-06 04:21:57'), (64, 'gruser', '52', '5', '0', '0', '0', '0', '0', '2022-02-06 04:21:57'), (65, 'profile', 'name', 'AGUNG GUSTIMAN', '6', 'agung.gustiman@kimiafarma.co.id', '#09BF19', '0', '0', '2022-02-06 04:23:49'), (66, 'gruser', '52', '6', '0', '0', '0', '0', '0', '2022-02-06 04:23:50'), (67, 'profile', 'name', 'AHMAD SARMALI', '7', 'ahmad.sarmali1003@kimiafarma.co.id', '#79D4C6', '0', '0', '2022-02-06 04:24:59'), (68, 'gruser', '52', '7', '0', '0', '0', '0', '0', '2022-02-06 04:24:59'), (69, 'profile', 'name', 'Anindya Hana I', '8', 'anindya.hana', '#125ABA', '0', '0', '2022-02-06 04:25:36'), (70, 'gruser', '52', '8', '0', '0', '0', '0', '0', '2022-02-06 04:25:36'), (71, 'profile', 'name', 'ANITA ELSYA UTARI', '9', 'anita.eu@kimiafarma.co.id', '#E0AF88', '0', '0', '2022-02-06 04:25:55'), (72, 'gruser', '52', '9', '0', '0', '0', '0', '0', '2022-02-06 04:25:55'), (73, 'profile', 'name', 'ARI GUNAWAN', '10', 'ari.gunawan@kimiafarma.co.id', '#784186', '0', '0', '2022-02-06 04:26:15'), (74, 'gruser', '52', '10', '0', '0', '0', '0', '0', '2022-02-06 04:26:15'), (75, 'profile', 'name', 'ASTRID PERMATASARI ISNAN', '11', 'astrid.permatasari@kimiafarma.co.id', '#AF263B', '0', '0', '2022-02-06 04:26:35'), (76, 'gruser', '52', '11', '0', '0', '0', '0', '0', '2022-02-06 04:26:35'), (77, 'profile', 'name', 'AWANDA MUSTIKA DEWI', '12', 'wanda.angel123@gmail.com', '#D99865', '0', '0', '2022-02-06 04:26:57'), (78, 'gruser', '52', '12', '0', '0', '0', '0', '0', '2022-02-06 04:26:57'), (79, 'profile', 'name', 'DENA FANANDRA ALSAKINA', '13', 'denafand@gmail.com', '#D10AA9', '0', '0', '2022-02-06 04:27:18'), (80, 'gruser', '52', '13', '0', '0', '0', '0', '0', '2022-02-06 04:27:18'), (81, 'profile', 'name', 'DESTRIA RAHMADINI', '14', 'destria.rahmadini', '#101165', '0', '0', '2022-02-06 04:27:40'), (82, 'gruser', '52', '14', '0', '0', '0', '0', '0', '2022-02-06 04:27:40'), (83, 'profile', 'name', 'DEVISCAR TITO', '15', 'deviscar.tito@kimiafarma.co.id', '#567F1A', '0', '0', '2022-02-06 04:31:00'), (84, 'gruser', '52', '15', '0', '0', '0', '0', '0', '2022-02-06 04:31:00'), (85, 'profile', 'name', 'DIMAS PRASETYA KUSUMA', '16', 'dimas.p@kimiafarma.co.id', '#8253EE', '0', '0', '2022-02-06 04:31:22'), (86, 'gruser', '52', '16', '0', '0', '0', '0', '0', '2022-02-06 04:31:22'), (87, 'profile', 'name', 'DWI OKTARINI', '17', 'oktarini9052@gmail.com', '#34D054', '0', '0', '2022-02-06 04:31:47'), (88, 'gruser', '52', '17', '0', '0', '0', '0', '0', '2022-02-06 04:31:47'), (89, 'profile', 'name', 'EVENDY SIREGAR', '18', 'siregar.evendy@kimiafarma.co.id', '#60EF97', '0', '0', '2022-02-06 04:32:07'), (90, 'gruser', '52', '18', '0', '0', '0', '0', '0', '2022-02-06 04:32:07'), (91, 'profile', 'name', 'FAHRIADI', '19', 'fahririsi2873@gmail.com', '#0A4F1C', '0', '0', '2022-02-06 04:32:26'), (92, 'gruser', '52', '19', '0', '0', '0', '0', '0', '2022-02-06 04:32:26'), (93, 'profile', 'name', 'GETA SETYOWATI', '20', 'geta.setyowati@kimiafarma.co.id', '#5EFB93', '0', '0', '2022-02-06 04:32:44'), (94, 'gruser', '52', '20', '0', '0', '0', '0', '0', '2022-02-06 04:32:44'), (95, 'profile', 'name', 'GIAN SYAHFITRIA', '21', 'gian.syahfitria@kimiafarma.co.id', '#D83F30', '0', '0', '2022-02-06 04:33:03'), (96, 'gruser', '52', '21', '0', '0', '0', '0', '0', '2022-02-06 04:33:03'), (97, 'profile', 'name', 'GITA MAHDI TIARA', '22', 'gita.mt@kimiafarma.co.id', '#4FAA3A', '0', '0', '2022-02-06 04:33:22'), (98, 'gruser', '52', '22', '0', '0', '0', '0', '0', '2022-02-06 04:33:22'), (99, 'profile', 'name', 'IRVAN BASTIAN', '23', 'irvan.bastian@kimiafarma.co.id', '#BA538F', '0', '0', '2022-02-06 04:33:43'), (100, 'gruser', '52', '23', '0', '0', '0', '0', '0', '2022-02-06 04:33:43'), (101, 'profile', 'name', 'ISKANDAR', '24', 'iskandar@kimiafarma.co.id', '#28DF03', '0', '0', '2022-02-06 04:34:19'), (102, 'gruser', '52', '24', '0', '0', '0', '0', '0', '2022-02-06 04:34:19'), (103, 'profile', 'name', 'IVAN SANTOSO', '25', 'ivan.santosokimiafarma.co.id', '#A682C5', '0', '0', '2022-02-06 04:34:35'), (104, 'gruser', '52', '25', '0', '0', '0', '0', '0', '2022-02-06 04:34:35'), (105, 'profile', 'alert', 'gem/ore/grupo/alerts/alert005.mp3', '25', '0', '0', '0', '0', '2022-02-06 04:34:54'), (106, 'profile', 'name', 'KATRIN DAYATRI', '26', 'katrin.dayatri20@gmail.com', '#09A5A9', '0', '0', '2022-02-06 04:35:33'), (107, 'gruser', '52', '26', '0', '0', '0', '0', '0', '2022-02-06 04:35:33'), (108, 'profile', 'name', 'KRESMA OKY KURNIAWAN', '27', 'kresma.oky@kimiafarma.co.id', '#F3F808', '0', '0', '2022-02-06 04:35:51'), (109, 'gruser', '52', '27', '0', '0', '0', '0', '0', '2022-02-06 04:35:51'), (110, 'profile', 'name', 'KURNIAWATI HIDAYAH', '28', 'kurniawati.hidayah@gmail.com', '#F93907', '0', '0', '2022-02-06 04:36:59'), (111, 'gruser', '52', '28', '0', '0', '0', '0', '0', '2022-02-06 04:36:59'), (112, 'profile', 'name', 'LUTFI RATNA WAHYUNINGTYAS', '29', 'lutfi.ratna', '#A0C713', '0', '0', '2022-02-06 04:37:14'), (113, 'gruser', '52', '29', '0', '0', '0', '0', '0', '2022-02-06 04:37:14'), (114, 'profile', 'name', 'MUHAMAD ISAPUDIN JANUAR', '30', 'isapudin.januar@kimiafarma.co.id', '#30C4EC', '0', '0', '2022-02-06 04:37:30'), (115, 'gruser', '52', '30', '0', '0', '0', '0', '0', '2022-02-06 04:37:30'), (116, 'profile', 'name', 'MUHAMAD ZEFRI', '31', 'muhamad.zefri@kimiafarma.co.id', '#D87DC8', '0', '0', '2022-02-06 04:37:45'), (117, 'gruser', '52', '31', '0', '0', '0', '0', '0', '2022-02-06 04:37:45'), (118, 'profile', 'name', 'MUJI SULIATINI', '32', 'muji.s@kimiafarma.co.id', '#839A99', '0', '0', '2022-02-06 04:38:03'), (119, 'gruser', '52', '32', '0', '0', '0', '0', '0', '2022-02-06 04:38:03'), (120, 'profile', 'name', 'MUSLIM', '33', 'muslim.mz@kimiafarma.co.id', '#49A958', '0', '0', '2022-02-06 04:38:18'), (121, 'gruser', '52', '33', '0', '0', '0', '0', '0', '2022-02-06 04:38:18'), (122, 'profile', 'name', 'NURDIN SUGANDI', '34', 'sarananurdin@gmail.com', '#C6A17E', '0', '0', '2022-02-06 04:38:35'), (123, 'gruser', '52', '34', '0', '0', '0', '0', '0', '2022-02-06 04:38:35'), (124, 'profile', 'name', 'NURLELI', '35', 'nurleli@kimiafarma.co.id', '#49626C', '0', '0', '2022-02-06 04:38:51'), (125, 'gruser', '52', '35', '0', '0', '0', '0', '0', '2022-02-06 04:38:51'), (126, 'profile', 'name', 'NURUL IKHSANI LUAYA', '36', 'nurul.ikhsani@kimiafarma.co.id', '#550E9F', '0', '0', '2022-02-06 04:39:07'), (127, 'gruser', '52', '36', '0', '0', '0', '0', '0', '2022-02-06 04:39:07'), (128, 'profile', 'name', 'NURYESI', '37', 'nuryesi@kimiafarma.co.id', '#56BCA0', '0', '0', '2022-02-06 04:39:22'), (129, 'gruser', '52', '37', '0', '0', '0', '0', '0', '2022-02-06 04:39:22'), (130, 'profile', 'name', 'RIA HASANAH PUTRI', '38', 'ria.hasanah.putri@kimiafarma.co.id', '#583323', '0', '0', '2022-02-06 04:39:37'), (131, 'gruser', '52', '38', '0', '0', '0', '0', '0', '2022-02-06 04:39:37'), (132, 'profile', 'name', 'RIMA PRIMAGDA', '39', 'rima.primagda@kimiafarma.co.id', '#9D394E', '0', '0', '2022-02-06 04:39:50'), (133, 'gruser', '52', '39', '0', '0', '0', '0', '0', '2022-02-06 04:39:50'), (134, 'profile', 'name', 'RONI SOFYAR', '40', 'roni.sofyar@kimiafarma.co.id', '#083EC5', '0', '0', '2022-02-06 04:40:04'), (135, 'gruser', '52', '40', '0', '0', '0', '0', '0', '2022-02-06 04:40:04'), (136, 'profile', 'name', 'SANDY ARISKA ALI FANDI', '41', 'sandy.ariska@kimiafarma.co.id', '#C645D8', '0', '0', '2022-02-06 04:40:19'), (137, 'gruser', '52', '41', '0', '0', '0', '0', '0', '2022-02-06 04:40:19'), (138, 'profile', 'name', 'SITI ASMAWIYAH', '42', 'siti_as@kimiafarma.co.id', '#DE297B', '0', '0', '2022-02-06 04:40:34'), (139, 'gruser', '52', '42', '0', '0', '0', '0', '0', '2022-02-06 04:40:34'), (140, 'profile', 'name', 'SRI SUSILOWATI', '43', 'usilowatis@gmail.com', '#821084', '0', '0', '2022-02-06 04:40:48'), (141, 'gruser', '52', '43', '0', '0', '0', '0', '0', '2022-02-06 04:40:49'), (142, 'profile', 'name', 'SUDARMADI', '44', 'sudarmadi@kimiafarma.co.id', '#6FCCDD', '0', '0', '2022-02-06 04:41:03'), (143, 'gruser', '52', '44', '0', '0', '0', '0', '0', '2022-02-06 04:41:03'), (144, 'profile', 'name', 'THERESIA NINDYA PURBORINI', '45', 'theresia.nindya@kimiafarma.co.id', '#347B51', '0', '0', '2022-02-06 04:42:03'), (145, 'gruser', '52', '45', '0', '0', '0', '0', '0', '2022-02-06 04:42:03'), (146, 'profile', 'name', 'UDIN MUJAHIDIN', '46', 'mujahidin@kimiafarma.co.id', '#4E5ACC', '0', '0', '2022-02-06 04:42:19'), (147, 'gruser', '52', '46', '0', '0', '0', '0', '0', '2022-02-06 04:42:19'), (148, 'profile', 'name', 'WAHYUDIN', '47', 'wahyudin@kimiafarma.co.id', '#95DF66', '0', '0', '2022-02-06 04:42:36'), (149, 'gruser', '52', '47', '0', '0', '0', '0', '0', '2022-02-06 04:42:36'), (150, 'profile', 'name', 'WIEDITHA YUDHA RAMADHAN', '48', 'wieditha.yudha@kimiafarma.co.id', '#7D0EC9', '0', '0', '2022-02-06 04:42:51'), (151, 'gruser', '52', '48', '0', '0', '0', '0', '0', '2022-02-06 04:42:51'), (152, 'profile', 'name', 'WILDAN ANDIANA', '49', 'wildan.andiana@kimiafarma.co.id', '#5BC4A7', '0', '0', '2022-02-06 04:43:14'), (153, 'gruser', '52', '49', '0', '0', '0', '0', '0', '2022-02-06 04:43:14'), (154, 'profile', 'name', 'YUSTIKA SYAMSU', '50', 'yustika.syamsu@kimiafarma.co.id', '#04836E', '0', '0', '2022-02-06 04:43:29'), (155, 'gruser', '52', '50', '0', '0', '0', '0', '0', '2022-02-06 04:43:29'), (156, 'profile', 'name', 'BRAM HIK ANUGRAHA', '51', 'bramhik@kimiafarma.co.id', '#F0CEDD', '0', '0', '2022-02-06 04:45:09'), (157, 'gruser', '52', '51', '0', '0', '0', '0', '0', '2022-02-06 04:45:09'), (158, 'profile', 'name', 'EDFANO STIAWAN ARMAY', '52', 'armay.edfano@kimiafarma.co.id', '#6673BF', '0', '0', '2022-02-06 04:45:36'), (159, 'gruser', '52', '52', '0', '0', '0', '0', '0', '2022-02-06 04:45:36'), (160, 'profile', 'name', 'FAJAR FIRMANSYAH', '53', 'fajar.firmansyah', '#4BC2AA', '0', '0', '2022-02-06 04:45:59'), (161, 'gruser', '52', '53', '0', '0', '0', '0', '0', '2022-02-06 04:45:59'), (162, 'profile', 'name', 'FIKRIANTO', '54', 'fikrianto@kimiafarma.co.id', '#E54CFB', '0', '0', '2022-02-06 04:46:18'), (163, 'gruser', '52', '54', '0', '0', '0', '0', '0', '2022-02-06 04:46:18'), (164, 'profile', 'name', 'IRVING WIDYAWAN', '55', 'irving@kimiafarma.co.id', '#18127E', '0', '0', '2022-02-06 04:46:34'), (165, 'gruser', '52', '55', '0', '0', '0', '0', '0', '2022-02-06 04:46:34'), (166, 'profile', 'name', 'LARASTUTI JAMI MUKTI SABATANI', '56', 'larastuti@kimiafarma.co.id', '#EEED55', '0', '0', '2022-02-06 04:46:49'), (167, 'gruser', '52', '56', '0', '0', '0', '0', '0', '2022-02-06 04:46:49'), (168, 'profile', 'name', 'MUKHARIJ NUR ALAM', '57', 'nur.alam@kimiafarma.co.id', '#3F1FC5', '0', '0', '2022-02-06 04:47:04'), (169, 'gruser', '52', '57', '0', '0', '0', '0', '0', '2022-02-06 04:47:04'), (170, 'profile', 'name', 'SRI ASTUTI', '58', 'sri.astuti@kimiafarma.co.id', '#50CA2B', '0', '0', '2022-02-06 04:47:17'), (171, 'gruser', '52', '58', '0', '0', '0', '0', '0', '2022-02-06 04:47:17'), (172, 'profile', 'name', 'TIN RAHAYU SRI MULYAWATI', '59', 'tien@kimiafarma.co.id', '#3BCA0C', '0', '0', '2022-02-06 04:47:30'), (173, 'gruser', '52', '59', '0', '0', '0', '0', '0', '2022-02-06 04:47:30'), (174, 'profile', 'name', 'TITIS DANASTRI', '60', 'titis.danastri@kimiafarma.co.id', '#C04912', '0', '0', '2022-02-06 04:47:48'), (175, 'gruser', '52', '60', '0', '0', '0', '0', '0', '2022-02-06 04:47:48'), (176, 'profile', 'name', 'YANTI HARDIYANTI', '61', 'yanti.hardiyanti@kimiafarma.co.id', '#63C71B', '0', '0', '2022-02-06 04:48:02'), (177, 'gruser', '52', '61', '0', '0', '0', '0', '0', '2022-02-06 04:48:02'), (178, 'profile', 'name', 'ANGGA SAENAGRI', '62', 'angga.saenagri@kimiafarma.co.id', '#948ED9', '0', '0', '2022-02-06 04:48:41'), (179, 'gruser', '52', '62', '0', '0', '0', '0', '0', '2022-02-06 04:48:41'), (180, 'profile', 'name', 'YOGI SUGIANTO', '63', 'yogi.sugianto@kimiafarma.co.id', '#213CEE', '0', '0', '2022-02-06 04:49:43'), (181, 'gruser', '52', '63', '0', '0', '0', '0', '0', '2022-02-06 04:49:43'), (182, 'profile', 'name', 'YURISTA GILANG IKHTIARSYAH', '64', 'yurista.gilang@gmail.com', '#50F46F', '0', '0', '2022-02-06 04:50:38'), (183, 'gruser', '52', '64', '0', '0', '0', '0', '0', '2022-02-06 04:50:38'), (184, 'gruser', '43', '53', '0', '0', '0', '0', '0', '2022-02-06 04:51:14'), (185, 'lview', '43', '53', '257', '0', '0', '0', '0', '2022-02-07 05:56:46'), (186, 'profile', 'alert', 'gem/ore/grupo/alerts/alert005.mp3', '53', '0', '0', '0', '0', '2022-02-06 13:13:24'), (187, 'profile', 'status', 'offline', '53', '0', '0', '0', '0', '2022-02-07 05:56:57'), (188, 'profile', 'autotmz', 'Asia/Jakarta', '53', '0', '0', '0', '0', '2022-02-07 05:56:44'), (189, 'lview', '52', '53', NULL, '0', '0', '0', '0', '2022-02-07 05:56:55'), (190, 'profile', 'language', '', '2', '0', '0', '0', '0', '2022-02-10 00:46:15'), (191, 'profile', 'status', 'offline', '62', '0', '0', '0', '0', '2022-02-10 12:26:14'), (192, 'profile', 'autotmz', 'Asia/Jakarta', '62', '0', '0', '0', '0', '2022-02-10 12:14:01'), (193, 'lview', '52', '62', '269', '0', '0', '0', '0', '2022-02-10 12:14:01'), (194, 'profile', 'status', 'offline', '26', '0', '0', '0', '0', '2022-02-10 14:26:20'), (195, 'profile', 'autotmz', 'America/New_York', '26', '0', '0', '0', '0', '2022-02-10 12:30:18'), (196, 'lview', '52', '26', '282', '0', '0', '0', '0', '2022-02-10 13:15:12'), (197, 'profile', 'status', 'offline', '14', '0', '0', '0', '0', '2022-02-24 14:29:00'), (198, 'profile', 'autotmz', 'America/New_York', '14', '0', '0', '0', '0', '2022-02-23 12:09:58'), (199, 'profile', 'skinmode', 'dark', '26', '0', '0', '0', '0', '2022-02-10 12:30:17'), (200, 'profile', 'alert', 'gem/ore/grupo/alerts/alert005.mp3', '14', '0', '0', '0', '0', '2022-02-10 12:24:58'), (201, 'lview', '52', '14', '315', '0', '0', '0', '0', '2022-02-23 12:10:01'), (202, 'lview', '14-26', '26', '277', '0', '0', '0', '0', '2022-02-10 12:26:53'), (203, 'lview', '14-26', '14', '310', '0', '0', '0', '0', '2022-02-23 07:48:03'), (204, 'profile', 'status', 'offline', '24', '0', '0', '0', '0', '2022-02-11 12:14:45'), (205, 'profile', 'autotmz', 'America/New_York', '24', '0', '0', '0', '0', '2022-02-11 07:29:52'), (206, 'lview', '52', '24', '282', '0', '0', '0', '0', '2022-02-11 07:30:31'), (207, 'profile', 'language', '', '24', '0', '0', '0', '0', '2022-02-10 12:48:54'), (208, 'lview', '2-26', '2', NULL, '0', '0', '0', '0', '2022-02-10 12:55:07'), (209, 'lview', '2-24', '2', '286', '0', '0', '0', '0', '2022-02-10 12:55:48'), (210, 'lview', '2-24', '24', '286', '0', '0', '0', '0', '2022-02-10 13:00:24'), (211, 'lview', '1-24', '1', '289', '0', '0', '0', '0', '2022-02-11 05:50:09'), (212, 'lview', '1-24', '24', '289', '0', '0', '0', '0', '2022-02-11 07:29:58'), (213, 'profile', 'status', 'offline', '23', '0', '0', '0', '0', '2022-02-10 18:08:57'), (214, 'profile', 'autotmz', 'Asia/Jakarta', '23', '0', '0', '0', '0', '2022-02-10 17:36:55'), (215, 'lview', '52', '23', '282', '0', '0', '0', '0', '2022-02-10 17:37:00'), (216, 'profile', 'status', 'offline', '48', '0', '0', '0', '0', '2022-02-10 21:43:48'), (217, 'profile', 'autotmz', 'Asia/Jakarta', '48', '0', '0', '0', '0', '2022-02-10 18:08:57'), (218, 'lview', '52', '48', '282', '0', '0', '0', '0', '2022-02-10 18:09:10'), (219, 'profile', 'status', 'offline', '46', '0', '0', '0', '0', '2022-02-11 06:22:33'), (220, 'profile', 'autotmz', 'America/New_York', '46', '0', '0', '0', '0', '2022-02-11 05:49:56'), (221, 'lview', '1-53', '1', '259', '0', '0', '0', '0', '2022-02-11 05:50:15'), (222, 'lview', '52', '46', '282', '0', '0', '0', '0', '2022-02-11 05:50:15'), (223, 'profile', 'status', 'offline', '11', '0', '0', '0', '0', '2022-02-14 10:18:05'), (224, 'profile', 'autotmz', 'America/New_York', '11', '0', '0', '0', '0', '2022-02-11 12:14:45'), (225, 'lview', '52', '11', '282', '0', '0', '0', '0', '2022-02-11 12:14:51'), (226, 'profile', 'status', 'offline', '41', '0', '0', '0', '0', '2022-03-02 06:40:55'), (227, 'profile', 'autotmz', 'America/New_York', '41', '0', '0', '0', '0', '2022-03-01 11:13:07'), (228, 'lview', '52', '41', '328', '0', '0', '0', '0', '2022-03-01 11:15:28'), (229, 'profile', 'alert', 'gem/ore/grupo/alerts/alert005.mp3', '29', '0', '0', '0', '0', '2022-02-23 08:01:12'), (230, 'profile', 'status', 'offline', '29', '0', '0', '0', '0', '2022-02-23 09:31:32'), (231, 'profile', 'autotmz', 'Asia/Jakarta', '29', '0', '0', '0', '0', '2022-02-23 08:23:16'), (232, 'lview', '52', '29', '282', '0', '0', '0', '0', '2022-02-23 07:50:17'), (233, 'lview', '14-29', '29', '311', '0', '0', '0', '0', '2022-02-23 08:01:36'), (234, 'lview', '14-29', '14', '0', '0', '0', '0', '0', '2022-02-23 07:49:58'), (235, 'lview', '1-14', '1', NULL, '0', '0', '0', '0', '2022-02-23 07:51:15'), (236, 'profile', 'name', 'Arman Septian 2', '65', 'alternate.septian', '#6C54AA', '0', '0', '2022-02-23 08:26:17'), (237, 'gruser', '52', '65', '0', '0', '0', '0', '0', '2022-02-23 08:31:28'), (238, 'profile', 'status', 'offline', '65', '0', '0', '0', '0', '2022-02-23 08:33:09'), (239, 'profile', 'autotmz', 'America/New_York', '65', '0', '0', '0', '0', '2022-02-23 08:31:53'), (240, 'profile', 'autotmz', 'America/New_York', '65', '0', '0', '0', '0', '2022-02-23 08:31:53'), (241, 'lview', '52', '65', '315', '0', '0', '0', '0', '2022-02-23 08:31:32'), (242, 'deaccount', 'yes', NULL, '65', '0', '0', '0', '0', NULL), (243, 'profile', 'alert', 'gem/ore/grupo/alerts/alert005.mp3', '65', '0', '0', '0', '0', '2022-02-23 08:33:09'), (244, 'lview', '1-41', '41', '331', '0', '0', '0', '0', '2022-03-01 14:17:09'), (245, 'lview', '1-41', '1', '331', '0', '0', '0', '0', '2022-03-01 12:15:19'), (246, 'profile', 'status', 'offline', '8', '0', '0', '0', '0', '2022-03-02 06:59:40'), (247, 'profile', 'autotmz', 'Asia/Jakarta', '8', '0', '0', '0', '0', '2022-03-02 06:54:09'), (248, 'lview', '52', '8', '328', '0', '0', '0', '0', '2022-03-02 06:55:17'), (249, 'profile', 'skinmode', 'dark', '8', '0', '0', '0', '0', '2022-03-02 06:53:32'), (250, 'profile', 'tmz', 'Asia/Jakarta', '8', '0', '0', '0', '0', '2022-03-02 06:53:18'), (251, 'profile', 'alert', 'gem/ore/grupo/alerts/alert005.mp3', '8', '0', '0', '0', '0', '2022-03-02 06:53:18'), (252, 'lview', '2-8', '2', '333', '0', '0', '0', '0', '2022-03-02 06:54:33'), (253, 'lview', '2-8', '8', '333', '0', '0', '0', '0', '2022-03-02 06:54:32'); -- -------------------------------------------------------- -- -- Table structure for table `gr_permissions` -- CREATE TABLE `gr_permissions` ( `id` bigint NOT NULL, `name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `groups` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `features` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `files` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `users` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `languages` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sys` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `roles` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fields` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `privatemsg` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `autodel` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'off', `autounjoin` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'off', `xtras` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `gr_permissions` -- INSERT INTO `gr_permissions` (`id`, `name`, `groups`, `features`, `files`, `users`, `languages`, `sys`, `roles`, `fields`, `privatemsg`, `autodel`, `autounjoin`, `xtras`) VALUES (1, 'Unverified', '', '1,9', '', '', '', '', '', '', '1,2', 'Off', 'Off', '{\"maxgroup\":\"100\",\"maxfileuploadsize\":\"10\"}'), (2, 'Site Administrator', '1,13,14,15,2,3,4,5,12,6,11,8,9,10,7,16,18,17', '1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17', '1,2,3,4,5', '1,2,3,4,7,9,5,6,8,10,11,12', '1,2,3,4', '1,2,3,4,5,6,7,8', '1,2,3', '1,2,3,4', '1,2,3,4', 'Off', 'Off', '{\"maxgroup\":\"999999\",\"maxfileuploadsize\":\"100000\"}'), (3, 'Verified', '4,5,6,8,9,10,16,18', '1,3,4,5,6,7,8,9,10,11,12,15,17', '1,2,3,4,5', '5,10', '', '', '', '', '1,2,3,4', 'Off', 'Off', '{\"maxgroup\":\"100\",\"maxfileuploadsize\":\"1000\"}'), (4, 'Banned', '', '', '', '', '', '', '', '', '', 'Off', 'Off', '{\"maxgroup\":0,\"maxfileuploadsize\":1000}'), (5, 'Guest', '1,13,14,15,2,3,4,5,6,8,9,10,16,18,17', '1,2,3,4,5,6,7,8,10,11,12,15,17', '1,2,3,4,5', '5,10', '', '', '', '', '1,2,3,4', 'Off', 'Off', '{\"maxgroup\":\"100\",\"maxfileuploadsize\":\"10\"}'); -- -------------------------------------------------------- -- -- Table structure for table `gr_phrases` -- CREATE TABLE `gr_phrases` ( `id` bigint NOT NULL, `type` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'phrase', `short` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `full` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `lid` bigint DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `gr_phrases` -- INSERT INTO `gr_phrases` (`id`, `type`, `short`, `full`, `lid`) VALUES (1, 'lang', 'English', 'ltr', 0), (2, 'phrase', 'edit_profile', 'Edit Profile', 1), (3, 'phrase', 'users', 'Users', 1), (4, 'phrase', 'roles', 'Site Roles', 1), (5, 'phrase', 'languages', 'Languages', 1), (6, 'phrase', 'appearance', 'Appearance', 1), (7, 'phrase', 'header_footer', 'Header/Footer', 1), (8, 'phrase', 'settings', 'Settings', 1), (9, 'phrase', 'shortcodes', 'Shortcodes', 1), (10, 'phrase', 'zero_users', 'Users Found', 1), (11, 'phrase', 'zero_roles', 'Roles Found', 1), (12, 'phrase', 'zero_languages', 'Languages Found', 1), (13, 'phrase', 'zero_shortcodes', 'Shortcodes Found', 1), (14, 'phrase', 'upload_file', 'Upload File', 1), (15, 'phrase', 'create_group', 'Create Group', 1), (16, 'phrase', 'create_user', 'Create User', 1), (17, 'phrase', 'create_role', 'Create Role', 1), (18, 'phrase', 'add_language', 'Add Language', 1), (19, 'phrase', 'create', 'Create', 1), (20, 'phrase', 'edit', 'Edit', 1), (21, 'phrase', 'update', 'Update', 1), (22, 'phrase', 'add', 'Add', 1), (23, 'phrase', 'delete', 'Delete', 1), (24, 'phrase', 'report', 'Report', 1), (25, 'phrase', 'reply', 'Reply', 1), (26, 'phrase', 'login', 'Login', 1), (27, 'phrase', 'share', 'Share', 1), (28, 'phrase', 'zip', 'Save', 1), (29, 'phrase', 'download', 'Download', 1), (30, 'phrase', 'view', 'View', 1), (31, 'phrase', 'search_here', 'Search here', 1), (32, 'phrase', 'zero_groups', 'Groups Found', 1), (33, 'phrase', 'zero_online', 'No one is online', 1), (34, 'phrase', 'zero_files', 'Empty File manager', 1), (35, 'phrase', 'edit_group', 'Edit Group', 1), (36, 'phrase', 'export_chat', 'Export Chat', 1), (37, 'phrase', 'leave_group', 'Leave Group', 1), (38, 'phrase', 'invite', 'Invite', 1), (39, 'phrase', 'delete_group', 'Delete Group', 1), (40, 'phrase', 'no_group_selected', 'Empty Inbox', 1), (41, 'phrase', 'logout', 'Logout', 1), (42, 'phrase', 'go_offline', 'Go Offline', 1), (43, 'phrase', 'go_online', 'Go Online', 1), (44, 'phrase', 'online', 'Online', 1), (45, 'phrase', 'offline', 'Offline', 1), (46, 'phrase', 'idle', 'Idle', 1), (47, 'phrase', 'search_messages', 'Search messages', 1), (48, 'phrase', 'alerts', 'Alerts', 1), (49, 'phrase', 'crew', 'Members', 1), (50, 'phrase', 'zero_crew', 'Members', 1), (51, 'phrase', 'cancel', 'Cancel', 1), (52, 'phrase', 'files', 'Files', 1), (53, 'phrase', 'zero_alerts', 'Alerts', 1), (54, 'phrase', 'groups', 'Groups', 1), (55, 'phrase', 'deny_default_role', 'Permission Denied : Default Roles', 1), (56, 'phrase', 'deleted', 'Deleted', 1), (57, 'phrase', 'deny_system_msg', 'Permission Denied : System Message', 1), (58, 'phrase', 'deny_file_deletion', 'Permission Denied : Allotted time Expired', 1), (59, 'phrase', 'invalid_group_password', 'Invalid Group Password', 1), (60, 'phrase', 'already_exists', 'Already Exists', 1), (61, 'phrase', 'invalid_value', 'Invalid Input or Field Empty', 1), (62, 'phrase', 'created', 'Created', 1), (63, 'phrase', 'updated', 'Updated', 1), (64, 'phrase', 'username_exists', 'Username Already Taken', 1), (65, 'phrase', 'email_exists', 'Email Already Exists', 1), (66, 'phrase', 'files_uploaded', 'Files Uploaded', 1), (67, 'phrase', 'error_uploading', 'Error Uploading Files', 1), (68, 'phrase', 'file_expired', 'File Expired', 1), (69, 'phrase', 'select_group', 'Select a Group or Chat', 1), (70, 'phrase', 'group_name', 'Group Name', 1), (71, 'phrase', 'username', 'Username', 1), (72, 'phrase', 'password', 'Password', 1), (73, 'phrase', 'email_address', 'Email Address', 1), (74, 'phrase', 'icon', 'Image', 1), (75, 'phrase', 'language', 'Language', 1), (76, 'phrase', 'role_name', 'Role Name', 1), (77, 'phrase', 'system_variables', 'System Variables', 1), (78, 'phrase', 'confirm_delete', 'Are you sure you Want to Delete?', 1), (79, 'phrase', 'full_name', 'Full Name', 1), (80, 'phrase', 'mail_login_info', 'Mail Login Info', 1), (81, 'phrase', 'confirm_join', 'Do You Want to Join?', 1), (82, 'phrase', 'confirm_leave', 'Do You Want to Leave?', 1), (83, 'phrase', 'role', 'Role', 1), (84, 'phrase', 'confirm_export', 'Do You Want to Export?', 1), (85, 'phrase', 'email_username', 'Email/Username', 1), (86, 'phrase', 'separate_commas', 'Separate with commas', 1), (87, 'phrase', 'timezone', 'TimeZone', 1), (88, 'phrase', 'custom_avatar', 'Custom Avatar', 1), (89, 'phrase', 'custom_bg', 'Custom Bg', 1), (90, 'phrase', 'options', 'options', 1), (91, 'phrase', 'switch', 'Switch', 1), (92, 'phrase', 'ban', 'Ban', 1), (93, 'phrase', 'msgs', 'Msgs', 1), (94, 'phrase', 'new', 'New', 1), (95, 'phrase', 'members', 'Members', 1), (96, 'phrase', 'join_group', 'Join Group', 1), (97, 'phrase', 'join', 'Join', 1), (98, 'phrase', 'member', 'Member', 1), (99, 'phrase', 'admin', 'Admin', 1), (100, 'phrase', 'moderator', 'Moderator', 1), (101, 'phrase', 'blocked', 'Blocked', 1), (102, 'phrase', 'confirm', 'Confirm', 1), (103, 'phrase', 'edit_role', 'Edit Role', 1), (104, 'phrase', 'device_blocked', 'Device Blocked. Reset Password to Unblock this device.', 1), (105, 'phrase', 'invalid_login', 'Invalid Login Credentials', 1), (106, 'phrase', 'denied', 'Permission Denied', 1), (107, 'phrase', 'unknown', 'Unknown', 1), (108, 'phrase', 'shared_file', 'Shared a File', 1), (109, 'phrase', 'banned', 'Banned', 1), (110, 'phrase', 'unban', 'Unban', 1), (111, 'phrase', 'created_group', 'Created Group', 1), (112, 'phrase', 'zero_complaints', 'Petitions', 1), (113, 'phrase', 'complaints', 'Petitions', 1), (114, 'phrase', 'report_message', 'Report Message', 1), (115, 'phrase', 'reported', 'Reported', 1), (116, 'phrase', 'spam', 'Spam', 1), (117, 'phrase', 'abuse', 'Abuse', 1), (118, 'phrase', 'inappropriate', 'Inappropriate', 1), (119, 'phrase', 'other', 'Other', 1), (120, 'phrase', 'under_investigation', 'Under Investigation', 1), (121, 'phrase', 'rejected', 'Rejected', 1), (122, 'phrase', 'action_taken', 'Action Taken', 1), (123, 'phrase', 'view_complaint', 'View Grief', 1), (124, 'phrase', 'proof', 'Proof', 1), (125, 'phrase', 'timestamp', 'Timestamp', 1), (126, 'phrase', 'report_group', 'Report Group', 1), (127, 'phrase', 'invited', 'Invited', 1), (128, 'phrase', 'alert_invitation', 'Invited you to Join', 1), (129, 'phrase', 'alert_mentioned', 'Mentioned you', 1), (130, 'phrase', 'open', 'Open', 1), (131, 'phrase', 'view_message', 'View Message', 1), (132, 'phrase', 'message', 'Message', 1), (133, 'phrase', 'change_avatar', 'Change Avatar', 1), (134, 'phrase', 'choose_avatar', 'Choose an Avatar', 1), (135, 'phrase', 'left_group', 'Left the Group Chat', 1), (136, 'phrase', 'joined_group', 'Joined the Group Chat', 1), (137, 'phrase', 'alert_replied', 'Sent you a response', 1), (138, 'phrase', 'datetime', 'Date &amp; Time', 1), (139, 'phrase', 'sender', 'Sender', 1), (140, 'phrase', 'you', 'You', 1), (141, 'phrase', 'exporting', 'Exporting', 1), (142, 'phrase', 'invalid_captcha', 'Invalid Captcha', 1), (143, 'phrase', 'remember_me', 'Remember Me', 1), (144, 'phrase', 'forgot_password', 'Forgot Password', 1), (145, 'phrase', 'register', 'Register', 1), (146, 'phrase', 'reset', 'Reset', 1), (147, 'phrase', 'already_have_account', 'Already have an account?', 1), (148, 'phrase', 'dont_have_account', 'Don&amp;#039;t have an account?', 1), (149, 'phrase', 'tos', 'Terms of Service', 1), (150, 'phrase', 'cookie_constent', 'Situs web ini menggunakan cookie untuk memastikan Anda mendapatkan pengalaman terbaik di situs web kami.', 1), (151, 'phrase', 'got_it', 'Got It', 1), (152, 'phrase', 'user_does_not_exist', 'User Does not Exist', 1), (153, 'phrase', 'check_inbox', 'We have sent an email to your email address. Please check your Inbox.', 1), (154, 'phrase', 'email_reset_title', 'Punya Masalah Saat Login ?', 1), (155, 'phrase', 'email_reset_desc', 'Menyetel ulang kata sandi Anda mudah. Cukup tekan tombol di bawah dan setelah masuk, Anda dapat mengubah kata sandi dari tab edit profil.', 1), (156, 'phrase', 'email_reset_btn', 'Auto Login', 1), (157, 'phrase', 'email_replied_title', 'Awaiting your reply', 1), (158, 'phrase', 'email_replied_desc', 'You received this email because someone has replied to your message', 1), (159, 'phrase', 'email_replied_btn', 'View Reply', 1), (160, 'phrase', 'email_invitation_title', 'You got an Invitation', 1), (161, 'phrase', 'email_invitation_desc', 'You received this email because someone has invited you to join a group', 1), (162, 'phrase', 'email_invitation_btn', 'View Message', 1), (163, 'phrase', 'email_mentioned_title', 'Someone Mentioned You', 1), (164, 'phrase', 'email_mentioned_desc', 'You received this email because someone has mentioned you in a group chat', 1), (165, 'phrase', 'email_mentioned_btn', 'View Message', 1), (166, 'phrase', 'email_signup_title', 'Profile Registered', 1), (167, 'phrase', 'email_signup_desc', 'Congratulations! Your account has been created. Just press the button below and once logged in, you can change your password from edit profile tab.', 1), (168, 'phrase', 'email_signup_btn', 'Auto Login', 1), (169, 'phrase', 'email_reset_sub', 'Lupa Password', 1), (170, 'phrase', 'email_replied_sub', 'You got a Reply', 1), (171, 'phrase', 'email_invitation_sub', 'Group Invitation', 1), (172, 'phrase', 'email_mentioned_sub', 'Mentioned you', 1), (173, 'phrase', 'email_signup_sub', 'Account Created', 1), (174, 'phrase', 'email_verify_title', 'Sedikit Langkah Lagi Untuk Bergabung', 1), (175, 'phrase', 'email_verify_desc', 'Kami telah selesai menyiapkan akun Anda. Saatnya untuk mengkonfirmasi alamat email Anda. Cukup klik tombol di bawah ini untuk memulai', 1), (176, 'phrase', 'email_verify_btn', 'Confirm Email', 1), (177, 'phrase', 'email_footer', 'Jika Anda tidak tahu mengapa Anda menerima email ini, harap beri tahu kami segera agar kami dapat memperbaikinya untuk Anda.', 1), (178, 'phrase', 'email_complimentary_close', 'Salam,', 1), (179, 'phrase', 'email_verify_sub', 'Verifikasi Email S.P.E.K.T.A Chat', 1), (180, 'phrase', 'email_copy_link', 'Atau salin tautan ini dan tempel di browser web Anda', 1), (181, 'phrase', 'sitename', 'Site Name', 1), (182, 'phrase', 'sitedesc', 'Description', 1), (183, 'phrase', 'sysemail', 'Email Address', 1), (184, 'phrase', 'sendername', 'Sender Name', 1), (185, 'phrase', 'userreg', 'User Registration', 1), (186, 'phrase', 'fileexpiry', 'Download Expires (Minutes)', 1), (187, 'phrase', 'delmsgexpiry', 'Users can delete Messages Within (Minutes)', 1), (188, 'phrase', 'recaptcha', 'Recaptcha', 1), (189, 'phrase', 'rsecretkey', 'Recaptcha Secret Key', 1), (190, 'phrase', 'rsitekey', 'Recaptcha Site Key', 1), (191, 'phrase', 'autogroupjoin', 'Auto Group Join', 1), (192, 'phrase', 'enable', 'Enable', 1), (193, 'phrase', 'disable', 'Disable', 1), (194, 'phrase', 'logo', 'Logo', 1), (195, 'phrase', 'favicon', 'Favicon', 1), (196, 'phrase', 'emaillogo', 'Logo (Email)', 1), (197, 'phrase', 'defaultbg', 'Default Bg', 1), (198, 'phrase', 'loginbg', 'Login Bg', 1), (199, 'phrase', 'terms', '1. Terms\r\nBy accessing this website, you are agreeing to be bound by the Terms and Conditions of Use, all applicable laws and regulations, and agree that you are responsible for compliance with any applicable local laws. If you do not agree with any of these terms, you are prohibited from using or accessing this website. The content contained here are protected by applicable copyright and trade mark laws. Please take the time to review our privacy policy.\r\n\r\n2. Use License\r\nPermission is granted for the temporary use of the group chat, filemanager on web site for personal, non-commercial use only. This is the grant of the services, not a transfer of title, and under this license you may not: modify or copy the materials; use the materials for any commercial purpose, or for any public display (commercial or non-commercial); attempt to decompile or reverse engineer any software contained on the website; remove any copyright or other proprietary notations from the materials; or transfer the materials to another person or &quot;mirror&quot; the materials on any other website or server. This license shall automatically terminate if you violate any of these restrictions and may be terminated by the website at any time.\r\n\r\n3. Disclaimer\r\nThe content on the website are provided &quot;as is&quot;. We makes no warranties, expressed or implied, and hereby disclaims and negates all other warranties, including without limitation, implied warranties or conditions of merchantability, fitness for a particular purpose, or non-infringement of intellectual property or other violation of rights. Furthermore, We does not warrant or make any representations concerning the accuracy, likely results, or reliability of the use of the content on its website or otherwise relating to such content or on any sites linked to this site.\r\n\r\n4. Limitations\r\nIn no event shall we be liable for any damages (including, without limitation, damages for loss of data or profit, due to business interruption, or criminal charges filed against you) arising out of the use or inability to use the content on the website, even if we or a authorized representative has been notified orally or in writing of the possibility of such damage. This applies to the use of our chat rooms and filemanager. Because some jurisdictions do not allow limitations on implied warranties, or limitations of liability for consequential or incidental damages, these limitations may not apply to you.\r\n\r\n5. Revisions and Errata\r\nThe materials appearing on the website could include technical, typos, or image errors. We does not warrant that any of the content on its website are accurate, complete, or current. We may make changes to the content on its website at any time without any noticeWe does not, however, make any commitment to update the content.\r\n\r\n6. Links\r\nWe has not reviewed all of the sites linked from its website and is not responsible for the contents contained within. The inclusion of any link does not imply endorsement by us. Use of any such linked web site is at the user&#039;s own risk.\r\n\r\n7. Age Limitations\r\nIn general, the age minimum for this webs site is 13. This website will not be held responsible for users who do not comply with the given age range as this information is not verifiable.\r\n\r\n8. Hateful Content\r\nWe does not tolerate any form of hateful or violent content in our chat rooms or on our forums. This includes threats, promotion of violence or direct attacks towards other users based upon ethnicity, race, religion, sexual orientation, religion affiliation, age, disability, serious diseases and gender. Users also are prohibited from using hateful images for their profile pictures/avatars. This includes usernames. All such comment will be removed when noticed or reported to our staff.\r\n\r\n9. Illegal Content\r\nWe does not tolerate any form of illegal content in our chat rooms or on our forums. Users also are prohibited from using or uploading illegal images including child pornography or other illegal content. This includes, but not limited to, profile pictures/avatars and any image transfers or uploads. This includes usernames. If you do so, you will be subject to being kicked, banned and, in some cases, reported to law enforcement. We will, to its highest ability, remove all illegal content when it is discovered or reported to us. We will not be held responsible for such content unless it is noticed and reported to our staff.\r\n\r\n10. Terms of Use Changes\r\nWe may revise these terms of use for its web site at any time without notice. By using this web site you are agreeing to be bound by the then current version of these Terms and Conditions of Use. If you cannot agree to this, please do not use this website.', 1), (200, 'phrase', '404_page_title', '404 - Page not found', 1), (201, 'phrase', '404_page_oops', 'Oops!', 1), (202, 'phrase', '404_page_heading', '404 - Page not found', 1), (203, 'phrase', '404_page_desc', 'The page you are looking for might have been removed had its name changed or is temporarily unavailable.', 1), (204, 'phrase', '404_page_go_to_btn', 'Go To Homepage', 1), (205, 'phrase', 'reload', 'Reload', 1), (206, 'phrase', 'reason', 'Reason', 1), (207, 'phrase', 'comments', 'Comments', 1), (208, 'phrase', 'category', 'Category', 1), (209, 'phrase', 'group', 'Group', 1), (210, 'phrase', 'view_visible', 'View all Visible Groups', 1), (211, 'phrase', 'admin_controls', 'Full Control of all Groups', 1), (212, 'phrase', 'upload', 'Upload', 1), (213, 'phrase', 'attach', 'Share Files', 1), (214, 'phrase', 'login_as_user', 'Login as User', 1), (215, 'phrase', 'yes', 'Yes', 1), (216, 'phrase', 'no', 'No', 1), (217, 'phrase', 'remove_password', 'Remove Password', 1), (218, 'phrase', 'edit_language', 'Edit Language', 1), (219, 'phrase', 'siteslogan', 'Site Slogan', 1), (220, 'phrase', 'boxed', 'Boxed Layout', 1), (221, 'phrase', 'ip_blocked', 'Your IP has been blocked', 1), (222, 'phrase', 'act', 'Act', 1), (223, 'phrase', 'take_action', 'Take Action', 1), (224, 'phrase', 'select_option', 'Select Option from Dropdown', 1), (225, 'phrase', 'banip', 'Ban IP', 1), (226, 'phrase', 'unbanip', 'Unban IP', 1), (227, 'phrase', 'choosefiletxt', 'Choose a file', 1), (228, 'phrase', 'private_chat', 'Private Chat', 1), (229, 'phrase', 'pm', 'PM', 1), (230, 'phrase', 'zero_pm', 'Empty Inbox', 1), (231, 'phrase', 'cf_about_me', 'About Me', 1), (232, 'phrase', 'cf_birth_date', 'Birth Date', 1), (233, 'phrase', 'cf_gender', 'Gender', 1), (234, 'phrase', 'cf_phone', 'Phone', 1), (235, 'phrase', 'cf_location', 'Location', 1), (236, 'phrase', 'alert_newmsg', 'Sent you a new msg', 1), (237, 'phrase', 'refresh', 'Refresh', 1), (238, 'phrase', 'hearts', 'Likes', 1), (239, 'phrase', 'shares', 'Shares', 1), (240, 'phrase', 'last_login', 'Last Login', 1), (241, 'phrase', 'empty_profile', 'Empty Profile', 1), (242, 'phrase', 'delete_account', 'Delete Account', 1), (243, 'phrase', 'remove_user', 'Remove User', 1), (244, 'phrase', 'login_as_guest', 'Login as Guest', 1), (245, 'phrase', 'guest_login', 'Guest Login', 1), (246, 'phrase', 'filterwords', 'Swear Filter', 1), (247, 'phrase', 'fields', 'Fields', 1), (248, 'phrase', 'stand_by', 'Stand By', 1), (249, 'phrase', 'add_custom_field', 'Add Field', 1), (250, 'phrase', 'banned_page_title', 'You Are Banned', 1), (251, 'phrase', 'banned_page_ouch', 'ouch', 1), (252, 'phrase', 'banned_page_heading', 'You are banned', 1), (253, 'phrase', 'banned_page_desc', 'Access denied. Your IP address or Account is blacklisted. If you feel this is in error please contact website&#039;s administrator.', 1), (254, 'phrase', 'banned_page_go_to_btn', 'Reach Us', 1), (255, 'phrase', 'conversation_with', 'Conversation With', 1), (256, 'phrase', 'email_newmsg_title', 'New Message', 1), (257, 'phrase', 'email_newmsg_btn', 'View Message', 1), (258, 'phrase', 'email_newmsg_desc', 'You have a new message. Your have received a message from Someone.', 1), (259, 'phrase', 'account_reactivated', 'Account Reactivated. Welcome Back', 1), (260, 'phrase', 'renamed_group', 'Changed the Group Name', 1), (261, 'phrase', 'changed_group_pass', 'Changed the Group Password', 1), (262, 'phrase', 'removed_group_pass', 'Removed the Group Password', 1), (263, 'phrase', 'changed_group_icon', 'Changed the Group Icon', 1), (264, 'phrase', 'blocked_group_user', 'Got Blocked', 1), (265, 'phrase', 'unblocked_group_user', 'Got Unblocked', 1), (266, 'phrase', 'removed_from_group', 'Got removed from Group', 1), (267, 'phrase', 'deactivate_account', 'Deactivate Account', 1), (268, 'phrase', 'longtext', 'Long Text', 1), (269, 'phrase', 'datefield', 'Date Field', 1), (270, 'phrase', 'shorttext', 'Short Text', 1), (271, 'phrase', 'numfield', 'Numbers', 1), (272, 'phrase', 'deactivated', 'Deactivated', 1), (273, 'phrase', 'converse', 'Converse', 1), (274, 'phrase', 'blacklist', 'Blacklisted', 1), (275, 'phrase', 'block_user', 'Block User', 1), (276, 'phrase', 'zero_fields', 'Fields', 1), (277, 'phrase', 'fieldname', 'Field Name', 1), (278, 'phrase', 'fieldtype', 'Field Type', 1), (279, 'phrase', 'ban_user', 'Ban Users', 1), (280, 'phrase', 'view_likes', 'View Likes', 1), (281, 'phrase', 'like_msgs', 'Like Messages', 1), (282, 'phrase', 'view_profile', 'View Profile', 1), (283, 'phrase', 'privatemsg', 'Private Message', 1), (284, 'phrase', 'autodeletemsg', 'Auto Delete Group Msgs (Minutes)', 1), (285, 'phrase', 'chat', 'Chat', 1), (286, 'phrase', 'sending', 'Sending', 1), (287, 'phrase', 'uploading', 'Uploading', 1), (288, 'phrase', 'read_more', 'Read More', 1), (289, 'phrase', 'edit_custom_field', 'Edit Custom Field', 1), (290, 'phrase', 'email_verification', 'Email Verification', 1), (291, 'phrase', 'today', 'Today', 1), (292, 'phrase', 'yesterday', 'Yesterday', 1), (293, 'phrase', 'failed', 'Failed. Try again', 1), (294, 'phrase', 'smtp_authentication', 'SMTP Authentication', 1), (295, 'phrase', 'smtp_host', 'SMTP Host', 1), (296, 'phrase', 'smtp_user', 'SMTP User', 1), (297, 'phrase', 'smtp_pass', 'SMTP Password', 1), (298, 'phrase', 'smtp_protocol', 'SMTP (SSL/TLS)', 1), (299, 'phrase', 'smtp_port', 'SMTP Port', 1), (300, 'phrase', 'view_hidden', 'View all Hidden Groups', 1), (301, 'phrase', 'visible', 'Visible', 1), (302, 'phrase', 'hidden', 'Hidden', 1), (303, 'phrase', 'visibility', 'Visibility', 1), (304, 'phrase', 'protected_group', 'Protected Group', 1), (305, 'phrase', 'secret_group', 'Secret Group', 1), (306, 'phrase', 'changed_group_visibility', 'Changed the Group Visibility ', 1), (307, 'phrase', 'cover_pic', 'Cover Pic', 1), (308, 'phrase', 'email_newmsg_sub', 'You have a new message.', 1), (309, 'phrase', 'notification_tone', 'Notification Tone', 1), (310, 'phrase', 'default_notification_tone', 'Default Notification Tone', 1), (311, 'phrase', 'autodelusrs', 'Auto Delete Users (Minutes)', 1), (312, 'phrase', 'maxmsgsperload', 'Messages Per Load', 1), (313, 'phrase', 'confirm_unblock', 'Are you sure you want to unblock this user ?', 1), (314, 'phrase', 'confirm_block', 'Are you sure you want to block this user from sending you messages?', 1), (315, 'phrase', 'unblock_user', 'Unblock User', 1), (316, 'phrase', 'unblock', 'Unblock', 1), (317, 'phrase', 'refreshrate', 'Chat Refresh Rate (milliseconds)', 1), (318, 'phrase', 'dropdownfield', 'Dropdown', 1), (319, 'phrase', 'requiredfield', 'Required', 1), (320, 'phrase', 'fieldoptions', 'Options', 1), (321, 'phrase', 'newmsgalert', 'You have a new message!', 1), (322, 'phrase', 'username_condition', 'Your username must contain at least one letter', 1), (323, 'phrase', 'max_login_attempts', 'Max Login Attempts', 1), (324, 'phrase', 'google_analytics_id', 'Google Analytics ID', 1), (325, 'phrase', 'alert_liked', 'Liked your message', 1), (326, 'phrase', 'invite_link', 'Invite Link', 1), (327, 'phrase', 'email_invitenonmember_title', 'You got an Invitation', 1), (328, 'phrase', 'email_invitenonmember_sub', 'Group Invitation', 1), (329, 'phrase', 'email_invitenonmember_desc', 'You received this email because someone has invited you to join a group', 1), (330, 'phrase', 'email_invitenonmember_btn', 'Accept', 1), (331, 'phrase', 'time_format', 'Time Format', 1), (332, 'phrase', 'default_font', 'Default Font', 1), (333, 'phrase', 'profile_noexists', 'Invalid or Doesn&amp;#039;t exist', 1), (334, 'phrase', 'joined_group_invitelink', 'Joined via the Invite Link', 1), (335, 'phrase', 'already_deactivated', 'Already Deactivated', 1), (336, 'phrase', 'name_color', 'Name Color', 1), (337, 'phrase', 'search', 'Search', 1), (338, 'phrase', 'zero_search', 'Search Results', 1), (339, 'phrase', 'search_min', 'Type at least 3 characters', 1), (340, 'phrase', 'search_gifs_tenor', 'Search GIFs via Tenor', 1), (341, 'phrase', 'type_message', 'Type a Message', 1), (342, 'phrase', 'shared_gif', 'Shared a GIF', 1), (343, 'phrase', 'auto_deleted_after', 'Auto Deleted After', 1), (344, 'phrase', 'download_file', 'Download File', 1), (345, 'phrase', 'tenor_enable', 'Tenor GIFs', 1), (346, 'phrase', 'tenor_api', 'Tenor API', 1), (347, 'phrase', 'tenor_limit', 'Tenor Limit', 1), (348, 'phrase', 'aside_results_perload', 'Results per load (Aside)', 1), (349, 'phrase', 'max_msg_length', 'Maximum send msg length', 1), (350, 'phrase', 'exceeded_max_msg_length', 'Exceeded Maximum Message Length', 1), (351, 'phrase', 'min_msg_length', 'Minimum send msg length', 1), (352, 'phrase', 'req_min_msg_length', 'Required Minimum number of characters', 1), (353, 'phrase', 'add_readmore_after', 'Add Read More After', 1), (354, 'phrase', 'set_default_language', 'Set as Default Language', 1), (355, 'phrase', 'default', 'Default', 1), (356, 'phrase', 'sent_msg_align', 'Sent Msg Align', 1), (357, 'phrase', 'received_msg_align', 'Received Msg Align', 1), (358, 'phrase', 'left', 'Left', 1), (359, 'phrase', 'right', 'Right', 1), (360, 'phrase', 'please_wait', 'Please Wait', 1), (361, 'phrase', 'loading', 'Loading', 1), (362, 'phrase', 'shared_qrcode', 'Shared a QR Code', 1), (363, 'phrase', 'emojis', 'Emojis', 1), (364, 'phrase', 'gifs', 'GIFs', 1), (365, 'phrase', 'qrcode', 'QR Code', 1), (366, 'phrase', 'voice_message', 'Voice Message', 1), (367, 'phrase', 'confirm_msgdelete', 'Are you sure you Want to Delete this message? You have :', 1), (368, 'phrase', 'confirm_download', 'Are you sure you want to continue downloading?', 1), (369, 'phrase', 'welcome_user', 'Selamat datang di S.P.E.K.T.A Chat', 1), (370, 'phrase', 'welcome_msg', 'S.P.E.K.T.A Chat adalah Aplikasi Chat PT.Kimia Farma Tbk. Plant Jakarta yang dapat kamu gunakan untuk keperluan kamu selama bekerja :) Enjoy!', 1), (371, 'phrase', 'welcome_footer', 'Developed By Hardware &amp;amp; Network ©Copyright 2022', 1), (372, 'phrase', 'welcomeimg', 'Welcome Image', 1), (373, 'phrase', 'hide', 'Hide', 1), (374, 'phrase', 'hide_language', 'Hide Language', 1), (375, 'phrase', 'confirm_hide', 'Are you sure you want to make this hidden?', 1), (376, 'phrase', 'done', 'Done', 1), (377, 'phrase', 'show', 'Show', 1), (378, 'phrase', 'show_language', 'Show Language', 1), (379, 'phrase', 'confirm_show', 'Are you sure you want to make this visible?', 1), (380, 'phrase', 'public_group', 'Public Group', 1), (381, 'phrase', 'addgroupuser', 'Add Users', 1), (382, 'phrase', 'adduser_noinvite', 'Add Users without Invite', 1), (383, 'phrase', 'send_audiomsg', 'Send an Audio Msg', 1), (384, 'phrase', 'send_messages', 'Send Messages', 1), (385, 'phrase', 'group_members', 'Group Members', 1), (386, 'phrase', 'admins_moderators', 'Admins &amp; Moderators', 1), (387, 'phrase', 'changed_message_settings', 'Changed Message Settings', 1), (388, 'phrase', 'seen_by', 'Seen By', 1), (389, 'phrase', 'zero_seen', 'Users Seen', 1), (390, 'phrase', 'play', 'Play', 1), (391, 'phrase', 'visit', 'Visit', 1), (392, 'phrase', 'pagespeed_api', 'PageSpeed Insights API', 1), (393, 'phrase', 'autounjoin', 'Auto Leave Groups (Minutes)', 1), (394, 'phrase', 'group_link', 'Group URL', 1), (395, 'phrase', 'unblocked', 'Unblocked', 1), (396, 'phrase', 'email_invitenonm_sub', 'You got an Invitation', 1), (397, 'phrase', 'email_invitenonm_title', 'You got an Invitation', 1), (398, 'phrase', 'email_invitenonm_desc', 'You received this email because someone has invited you to join a group', 1), (399, 'phrase', 'email_invitenonm_btn', 'Accept', 1), (400, 'phrase', 'cronjob', 'Cron Jobs', 1), (401, 'phrase', 'sendgifs', 'Send GIFs', 1), (402, 'phrase', 'sendaudiomsgs', 'Send Audio Message', 1), (403, 'phrase', 'createqrcode', 'Create QR Code', 1), (404, 'phrase', 'previewmsgs', 'Preview Attachments', 1), (405, 'phrase', 'sharescreenshot', 'Share Screenshot', 1), (406, 'phrase', 'sharelinks', 'Share Links', 1), (407, 'phrase', 'whoistyping', 'Whos Typing', 1), (408, 'phrase', 'features', 'Features', 1), (409, 'phrase', 'sendtxtmsgs', 'Send Text Messages', 1), (410, 'phrase', 'emailnotifications', 'Email Notifications', 1), (411, 'phrase', 'notxtmsg', 'Sending disabled. You wont be able to send messages.', 1), (412, 'phrase', 'nickname', 'Nickname', 1), (413, 'phrase', 'unsplash_enable', 'UnSplash Slideshow', 1), (414, 'phrase', 'unsplash_load', 'UnSplash Parameters', 1), (415, 'phrase', 'signin_logo', 'Logo (Login)', 1), (416, 'phrase', 'mobile_logo', 'Logo (Mobile)', 1), (417, 'phrase', 'header', 'Header', 1), (418, 'phrase', 'footer', 'Footer', 1), (419, 'phrase', 'easycustomizer', 'Easy Customizer', 1), (420, 'phrase', 'startcolor', 'Start Color', 1), (421, 'phrase', 'endcolor', 'End Color', 1), (422, 'phrase', 'ltr', 'Left to Right', 1), (423, 'phrase', 'rtl', 'Right to Left', 1), (424, 'phrase', 'txt_direction', 'Text direction', 1), (425, 'phrase', 'cf_country', 'Country', 1), (426, 'phrase', 'embed_code', 'Embed Code', 1), (427, 'phrase', 'is_typing', 'is typing', 1), (428, 'phrase', 'update_list_periodically', 'Real-time Individual Unread Count', 1), (429, 'phrase', 'force_https', 'Force HTTPS', 1), (430, 'phrase', 'pingroup', 'Pin Group', 1), (431, 'phrase', 'pinned_group', 'Pinned', 1), (432, 'phrase', 'unleavable', 'Unleavable', 1), (433, 'phrase', 'unleavable_group', 'Unleavable Group', 1), (434, 'phrase', 'changed_leavable_group', 'Changed to Leavable', 1), (435, 'phrase', 'changed_unleavable_group', 'Changed to Unleavable', 1), (436, 'phrase', 'send_btn_visible', 'Send Button', 1), (437, 'phrase', 'non_latin_usernames', 'Non Latin Usernames', 1), (438, 'phrase', 'sending_limit', 'Sending Limit (Per Minute)', 1), (439, 'phrase', 'sending_limit_reached', 'Sending Limit Reached. Please wait : ', 1), (440, 'phrase', 'seconds', 'Seconds', 1), (441, 'phrase', 'addtosignup', 'Add to Sign Up Page', 1), (444, 'phrase', 'sysmessages', 'System Messages', 1), (445, 'phrase', 'after_body_open_tag', 'After Body Open Tag', 1), (446, 'phrase', 'before_body_closing_tag', 'Before Body Closing Tag', 1), (447, 'phrase', 'releaseguestuser', 'Release Guest Username', 1), (448, 'phrase', 'send_email_notification', 'Send Email Notification', 1), (449, 'phrase', 'someone_mentions', 'Someone Mentions', 1), (450, 'phrase', 'on_group_invitation', 'Group Invitation', 1), (451, 'phrase', 'receiving_new_message', 'Receiving new message', 1), (452, 'phrase', 'message_replies', 'Message Replies', 1), (453, 'phrase', 'ascii_smileys', 'ASCII Smileys', 1), (454, 'phrase', 'use_enter_as_send', 'Use Enter as send', 1), (455, 'phrase', 'random_guest_username', 'Generate Random Guest Username', 1), (456, 'phrase', 'group_info', 'Group Info', 1), (457, 'phrase', 'created_on', 'Created', 1), (458, 'phrase', 'profile', 'Profile', 1), (459, 'phrase', 'description', 'Description', 1), (460, 'phrase', 'login_cookie_validity', 'Login Cookie Validity (Days)', 1), (461, 'phrase', 'delete_only_offline_users', 'Delete Only Offline Users', 1), (462, 'phrase', 'add_menu_item', 'Add Menu Item', 1), (463, 'phrase', 'link_text', 'Link Text', 1), (464, 'phrase', 'url', 'URL', 1), (465, 'phrase', 'order', 'Order', 1), (466, 'phrase', 'custom_menu', 'Menu', 1), (467, 'phrase', 'zero_items', 'Items', 1), (468, 'phrase', 'menu_item', 'Menu Item', 1), (469, 'phrase', 'edit_menu_item', 'Edit Menu Item', 1), (470, 'phrase', 'gravatar', 'Gravatar', 1), (471, 'phrase', 'show_sender_name', 'Show Senders Name', 1), (472, 'phrase', 'nav_about', 'About', 1), (473, 'phrase', 'nav_terms', 'Terms', 1), (474, 'phrase', 'nav_privacy', 'Privacy', 1), (475, 'phrase', 'nav_contact', 'Contact', 1), (476, 'phrase', 'pg_about', 'This is a simple and easy to use chatroom. Join us now and talk to people from all over the world. \r\n\r\nOur mission is to share and grow the world’s knowledge. A vast amount of the knowledge that would be valuable to many people is currently only available to a few — either locked in people’s heads, or only accessible to select groups. We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge for the benefit of the rest of the world.\r\n\r\n\r\nTo modify this page - Menu &amp;gt; Languages &amp;gt; Options &amp;gt; Edit &amp;gt; Find pg_about &amp;gt; Replace with yours.', 1), (477, 'phrase', 'pg_privacy', 'This Privacy Policy governs the manner in which we collects, uses, maintains and discloses information collected from users (each, a &quot;User&quot;) of our website (&quot;Site&quot;). This privacy policy applies to the Site and all products and services offered by us.\r\n\r\n1) Personal identification information\r\nWe may collect personal identification information from Users in a variety of ways, including, but not limited to, when Users visit our site, subscribe to the newsletter, fill out a form, and in connection with other activities, services, features or resources we make available on our Site.. Users may visit our Site anonymously. We will collect personal identification information from Users only if they voluntarily submit such information to us. Users can always refuse to supply personally identification information, except that it may prevent them from engaging in certain Site related activities.\r\n\r\n2) Non-personal identification information\r\nWe may collect non-personal identification information about Users whenever they interact with our Site. Non-personal identification information may include the browser name, the type of computer and technical information about Users means of connection to our Site, such as the operating system and the Internet service providers utilized and other similar information.\r\n\r\n3) Chat Room Privacy\r\nAdministrators and Moderators of the Chat Rooms can see the I.P. of the Users who are chatting. We do not save I.P. addresses of the Users, neither do we share I.P addresses with others. As long as you do not provide (not recommended) your real name, address, Email ID and any other personal information in the chat room, you are completely anonymous to other users.\r\n\r\n4) How we use collected information\r\n\r\nWe may collect and use Users personal information for the following purposes:\r\n\r\n– To improve customer service Information you provide helps us respond to your customer service requests and support needs more efficiently. \r\n– To improve our Site We may use feedback you provide to improve our products and services. \r\n– To run a promotion, contest, survey or other Site feature. To send Users information they agreed to receive about topics we think will be of interest to them. \r\n– To send periodic emails We may use the email address to respond to their inquiries, questions, and/or other requests. \r\n\r\n5) How we protect your information\r\nWe adopt appropriate data collection, storage and processing practices and security measures to protect against unauthorized access, alteration, disclosure or destruction of your personal information, username, password, transaction information and data stored on our Site.\r\n\r\n6) Sharing your personal information\r\nWe do not sell, trade, or rent Users personal identification information to others. We may share generic aggregated demographic information not linked to any personal identification information regarding visitors and users with our business partners, trusted affiliates and advertisers for the purposes outlined above.\r\n\r\n7) Third party websites\r\nUsers may find advertising or other content on our Site that link to the sites and services of our partners, suppliers, advertisers, sponsors, licensors and other third parties. We do not control the content or links that appear on these sites and are not responsible for the practices employed by websites linked to or from our Site. In addition, these sites or services, including their content and links, may be constantly changing. These sites and services may have their own privacy policies and customer service policies. Browsing and interaction on any other website, including websites which have a link to our Site, is subject to that website’s own terms and policies.\r\n\r\n8) Advertising\r\nAds appearing on our site may be delivered to Users by advertising partners, who may set cookies. These cookies allow the ad server to recognize your computer each time they send you an online advertisement to compile non personal identification information about you or others who use your computer. This information allows ad networks to, among other things, deliver targeted advertisements that they believe will be of most interest to you. This privacy policy does not cover the use of cookies by any advertisers.\r\n\r\n9) Log Files\r\nAs with most other websites, we collect and use the data contained in log files. The information in the log files include your IP (internet protocol) address, your ISP (internet service provider, such as AOL or Shaw Cable), the browser you used to visit our site (such as Internet Explorer or Firefox), the time you visited our site and which pages you visited throughout our site.\r\n\r\n10) Cookies and Web Beacons\r\nWe do use cookies to store information, such as your personal preferences when you visit our site. This could include only showing you a popup once in your visit, or the ability to login to some of our features, such as forums.\r\n\r\nWe also use third party advertisements to support our site. Some of these advertisers may use technology such as cookies and web beacons when they advertise on our site, which will also send these advertisers (such as Google through the Google AdSense program) information including your IP address, your ISP , the browser you used to visit our site, and in some cases, whether you have Flash installed. This is generally used for geotargeting purposes (showing New York real estate ads to someone in New York, for example) or showing certain ads based on specific sites visited (such as showing cooking ads to someone who frequents cooking sites).\r\n\r\n11) Compliance with children’s online privacy protection act\r\nProtecting the privacy of the very young is especially important. For that reason, we never collect or maintain information at our Site from those we actually know are under 13, and no part of our website is structured to attract anyone under 13.\r\n\r\n12) Changes to this privacy policy\r\nWe has the discretion to update this privacy policy at any time. When we do, we will revise the updated date at the bottom of this page. We encourage Users to frequently check this page for any changes to stay informed about how we are helping to protect the personal information we collect. You acknowledge and agree that it is your responsibility to review this privacy policy periodically and become aware of modifications.\r\n\r\n13) Your acceptance of these terms\r\nBy using this Site, you signify your acceptance of this policy and terms of service. If you do not agree to this policy, please do not use our Site. Your continued use of the Site following the posting of changes to this policy will be deemed your acceptance of those changes.', 1), (478, 'phrase', 'pg_contact', 'To modify this page - Menu &amp;gt; Languages &amp;gt; Options &amp;gt; Edit &amp;gt; Find pg_contact &amp;gt; Replace with yours.', 1), (479, 'phrase', 'all', 'All', 1), (480, 'phrase', 'joined', 'Joined', 1), (481, 'phrase', 'unjoined', 'Unjoined', 1), (482, 'phrase', 'favorites', 'Favorites', 1), (483, 'phrase', 'request_timeout', 'Timeout Seconds (Long Polling)', 1), (484, 'phrase', 'show_online_tab', 'Show Online Tab', 1), (486, 'phrase', 'offline_page_alas', 'alas!', 1), (487, 'phrase', 'offline_page_title', 'You are Offline', 1), (488, 'phrase', 'offline_page_heading', 'You Are Offline', 1), (489, 'phrase', 'offline_page_desc', 'It looks like you have lost your internet connection. Perhaps you went into a tunnel or turned on airplane mode on your phone.', 1), (490, 'phrase', 'offline_page_go_to_btn', 'Refresh', 1), (491, 'phrase', 'dark_mode', 'Dark Mode', 1), (492, 'phrase', 'light_mode', 'Light Mode', 1), (493, 'phrase', 'default_skin_mode', 'Default Skin Mode', 1), (494, 'phrase', 'defaultbgdark', 'Default Bg (Dark Mode)', 1), (495, 'phrase', 'create_unleavable_group', 'Create Unleavable Group', 1), (496, 'phrase', 'create_secret_group', 'Create Secret Group', 1), (497, 'phrase', 'create_protected_group', 'Create Protected Group', 1), (498, 'phrase', 'zero_results', 'Results', 1), (499, 'phrase', 'ip_logs', 'Logs', 1), (500, 'phrase', 'ip_log', 'IP Log', 1), (501, 'phrase', 'pwa_icon', 'PWA icon', 1), (502, 'phrase', 'mobile_page_transition', 'Mobile Page Transition', 1), (503, 'phrase', 'is_now_admin', 'Is now Admin', 1), (504, 'phrase', 'is_now_moderator', 'Is now Moderator', 1), (505, 'phrase', 'is_no_longer_admin_moderator', 'Is no longer Admin or Moderator', 1), (506, 'phrase', 'remove_custom_bg', 'Remove Custom BG', 1), (507, 'phrase', 'delete_all', 'Delete All', 1), (508, 'phrase', 'delete_all_messages', 'Delete All Messages', 1), (509, 'phrase', 'confirm_deletemsgs', 'Are you sure you Want to Delete all Chat Messages?', 1), (510, 'phrase', 'blocklist', 'Blocklist', 1), (511, 'phrase', 'img_social_media', 'Default Image (Social Sharing)', 1), (512, 'phrase', 'profile_link', 'Profile URL', 1), (514, 'phrase', 'view_full_name', 'View Full Name', 1), (515, 'phrase', 'deleteallmsgs', 'Delete All Msgs (One Click)', 1), (516, 'phrase', 'viewmemberslist', 'View List of Members', 1), (517, 'phrase', 'selectnamecolor', 'Select Name Color', 1), (518, 'phrase', 'unbanned', 'Unbanned', 1), (519, 'phrase', 'newest', 'Newest', 1), (520, 'phrase', 'browsing', 'Browsing', 1), (521, 'phrase', 'viewbrowsingmembers', 'View Currently Browsing', 1), (522, 'phrase', 'clear_chat', 'Clear Chat', 1), (523, 'phrase', 'confirm_clearchat', 'Are you sure you Want to Clear Chat History?', 1), (524, 'phrase', 'cleared', 'Cleared', 1), (525, 'phrase', 'export', 'Export', 1), (526, 'phrase', 'import', 'Import', 1), (527, 'phrase', 'select_an_option', 'Select an Option', 1), (528, 'phrase', 'import_json', 'Select JSON File', 1), (529, 'phrase', 'recent_images', 'Recent Images', 1), (530, 'phrase', 'message_style', 'Message Style', 1), (531, 'phrase', 'min_username_length', 'Minimum Username Length', 1), (532, 'phrase', 'max_username_length', 'Maximum Username Length', 1), (533, 'phrase', 'req_min_username_length', 'Required Minimum Username Length', 1), (534, 'phrase', 'max_username_length_exceeds', 'Exceeds Maximum Username Length', 1), (535, 'phrase', 'send_as_user', 'Send as another User', 1), (536, 'phrase', 'users_chat', 'Users Chat', 1), (537, 'phrase', 'view_users_chat', 'View all Users Chat', 1), (538, 'phrase', 'stickers', 'Stickers', 1), (539, 'phrase', 'zero_stickers', 'Stickers Found', 1), (540, 'phrase', 'slug', 'Slug', 1), (541, 'phrase', 'slug_already_exists', 'Slug Already Exists', 1), (542, 'phrase', 'username_already_exists', 'Username Already Exists', 1), (543, 'phrase', 'hide_grouptab', 'Hide Groups Tab When Accessing via Group Link', 1), (544, 'phrase', 'maxgroupjoin', 'Maximum Number of Groups Users can Join', 1), (545, 'phrase', 'exceeded_maxgroupjoin', 'Exceeded Maximum Number of Groups You can Join', 1), (546, 'phrase', 'first_load_guestlogin', 'Open Guest Login Window on Load (Login Page)', 1), (547, 'phrase', 'slug_condition', 'Slug must contain at least one letter', 1), (548, 'phrase', 'add_radio_station', 'Add Radio Station', 1), (549, 'phrase', 'station_name', 'Station Name', 1), (550, 'phrase', 'stream_url', 'Stream URL', 1), (551, 'phrase', 'radiostations', 'Stations', 1), (552, 'phrase', 'zero_stations', 'Stations', 1), (553, 'phrase', 'edit_radiostation', 'Edit Station', 1), (554, 'phrase', 'manage_radiostations', 'Manage Radiostations', 1), (555, 'phrase', 'listen_radio', 'Listen to Radio', 1), (556, 'phrase', 'edit_grouprole', 'Edit Group Role', 1), (557, 'phrase', 'manage_ads', 'Manage Ads', 1), (558, 'phrase', 'create_ad', 'Create Ads', 1), (559, 'phrase', 'ad_name', 'Ad Name', 1), (560, 'phrase', 'adslot', 'Ad Slot', 1), (561, 'phrase', 'chatmessage', 'Chat Message', 1), (562, 'phrase', 'siginpagefooter', 'Login Page Footer', 1), (563, 'phrase', 'siginpageheader', 'Login Page Header', 1), (564, 'phrase', 'welcomewindow', 'Welcome Window', 1), (565, 'phrase', 'rightside', 'Right Side', 1), (566, 'phrase', 'leftside', 'Left Side', 1), (567, 'phrase', 'adheight', 'Ad Height (px)', 1), (568, 'phrase', 'adcontent', 'HTML Content', 1), (569, 'phrase', 'invalid_htmlcontent', 'Invalid HTML Content', 1), (570, 'phrase', 'zero_ads', 'Ads', 1), (571, 'phrase', 'edit_ad', 'Edit Ad', 1), (572, 'phrase', 'welcome', 'Welcome', 1), (573, 'phrase', 'ad_delay', 'Chat Message Ad Delay (Seconds)', 1), (574, 'phrase', 'manage_social_login', 'Manage Social Login', 1), (575, 'phrase', 'add_provider', 'Add Provider', 1), (576, 'phrase', 'identity_provider', 'Identity Provider', 1), (577, 'phrase', 'appsecretkey', 'APP Secret/Client Secret Key', 1), (578, 'phrase', 'appid', 'APP/Client ID', 1), (579, 'phrase', 'providers', 'Providers', 1), (580, 'phrase', 'zero_providers', 'Providers', 1), (581, 'phrase', 'edit_provider', 'Edit Provider', 1), (582, 'phrase', 'sendstickers', 'Send Stickers', 1), (583, 'phrase', 'manage_stickers', 'Manage Stickers', 1), (584, 'phrase', 'create_stickerpack', 'Create Sticker Pack', 1), (585, 'phrase', 'pack_name', 'Pack Name', 1), (586, 'phrase', 'upload_stickers', 'Upload Stickers', 1), (587, 'phrase', 'edit_stickerpack', 'Edit Sticker Pack', 1), (588, 'phrase', 'stickerpack', 'Sticker Pack', 1), (589, 'phrase', 'shared_sticker', 'Shared a Sticker', 1), (590, 'phrase', 'temporary_ban', 'Temporary Ban', 1), (591, 'phrase', 'ban_till', 'Ban Till (Minutes)', 1), (592, 'phrase', 'temp_ban_group_user', 'Got Temporarily Banned', 1), (593, 'phrase', 'temp_banned', 'Temporarily Banned', 1), (594, 'phrase', 'join_confirm', 'Join Confirmation Message', 1), (595, 'phrase', 'maxfileuploadsize', 'Max File Upload Size (MB)', 1), (596, 'phrase', 'exceeds_maxfilesizelimit', 'Exceeds Maximum File Upload Size Limit', 1), (598, 'phrase', 'viewgroups_nologin', 'View Public Groups without Login', 1), (599, 'phrase', 'login_register_msg', 'Login or Register to Join Chat', 1), (600, 'phrase', 'gifs_stickers', 'Gifs &amp; Stickers', 1), (601, 'phrase', 'temp_banned_for', 'Temporarily Banned for', 1), (602, 'phrase', 'minutes', 'Minutes', 1), (603, 'phrase', 'grconnect_secretkey', 'Grupo Connect Secret Key', 1), (604, 'phrase', 'dateformat', 'Date Format', 1), (605, 'phrase', 'callbackurl', 'Callback URL', 1), (606, 'phrase', 'autoplay_radio', 'Auto Play Radio', 1), (607, 'phrase', 'delete_users_chats', 'Delete Users Chats', 1), (608, 'phrase', 'conversation', 'Conversation', 1), (609, 'phrase', 'deleting', 'Deleting', 1), (610, 'phrase', 'cookie_consent', 'Cookie Consent', 1), (612, 'phrase', 'identifier', 'Identifier', 1), (613, 'phrase', 'appkey', 'APP Key', 1); -- -------------------------------------------------------- -- -- Table structure for table `gr_profiles` -- CREATE TABLE `gr_profiles` ( `id` bigint NOT NULL, `type` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `uid` bigint NOT NULL DEFAULT '0', `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cat` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `v1` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `v2` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `req` int NOT NULL DEFAULT '0', `tms` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `gr_profiles` -- INSERT INTO `gr_profiles` (`id`, `type`, `uid`, `name`, `cat`, `v1`, `v2`, `req`, `tms`) VALUES (1, 'field', 0, 'cf_about_me', 'longtext', '0', NULL, 0, '2020-11-15 10:52:55'), (2, 'field', 0, 'cf_birth_date', 'datefield', '0', NULL, 0, '2020-11-15 10:52:58'), (3, 'field', 0, 'cf_gender', 'dropdownfield', 'Male,Female,Non-binary', NULL, 0, '2020-11-15 10:53:03'), (4, 'field', 0, 'cf_phone', 'numfield', NULL, NULL, 0, '2020-11-15 10:53:06'), (5, 'field', 0, 'cf_location', 'shorttext', '0', NULL, 0, '2020-11-15 10:53:09'), (6, 'field', 0, 'cf_country', 'dropdownfield', 'Afghanistan,Albania,Algeria,Andorra,Angola,Antigua &amp;amp; Deps,Argentina,Armenia,Australia,Austria,Azerbaijan,Bahamas,Bahrain,Bangladesh,Barbados,Belarus,Belgium,Belize,Benin,Bhutan,Bolivia,Bosnia Herzegovina,Botswana,Brazil,Brunei,Bulgaria,Burkina,Burma,Burundi,Cambodia,Cameroon,Canada,Cape Verde,Central African Rep,Chad,Chile,People&amp;#039;s Republic of China,Republic of China,Colombia,Comoros,Democratic Republic of the Congo,Republic of the Congo,Costa Rica,Croatia,Cuba,Cyprus,Czech Republic,Danzig,Denmark,Djibouti,Dominica,Dominican Republic,East Timor,Ecuador,Egypt,El Salvador,Equatorial Guinea,Eritrea,Estonia,Ethiopia,Fiji,Finland,France,Gabon,Gaza Strip,The Gambia,Georgia,Germany,Ghana,Greece,Grenada,Guatemala,Guinea,Guinea-Bissau,Guyana,Haiti,Holy Roman Empire,Honduras,Hungary,Iceland,India,Indonesia,Iran,Iraq,Republic of Ireland,Israel,Italy,Ivory Coast,Jamaica,Japan,Jonathanland,Jordan,Kazakhstan,Kenya,Kiribati,North Korea,South Korea,Kosovo,Kuwait,Kyrgyzstan,Laos,Latvia,Lebanon,Lesotho,Liberia,Libya,Liechtenstein,Lithuania,Luxembourg,Macedonia,Madagascar,Malawi,Malaysia,Maldives,Mali,Malta,Marshall Islands,Mauritania,Mauritius,Mexico,Micronesia,Moldova,Monaco,Mongolia,Montenegro,Morocco,Mount Athos,Mozambique,Namibia,Nauru,Nepal,Newfoundland,Netherlands,New Zealand,Nicaragua,Niger,Nigeria,Norway,Oman,Ottoman Empire,Pakistan,Palau,Panama,Papua New Guinea,Paraguay,Peru,Philippines,Poland,Portugal,Prussia,Qatar,Romania,Rome,Russian Federation,Rwanda,St Kitts &amp;amp; Nevis,St Lucia,Saint Vincent &amp;amp; the,Grenadines,Samoa,San Marino,Sao Tome &amp;amp; Principe,Saudi Arabia,Senegal,Serbia,Seychelles,Sierra Leone,Singapore,Slovakia,Slovenia,Solomon Islands,Somalia,South Africa,Spain,Sri Lanka,Sudan,Suriname,Swaziland,Sweden,Switzerland,Syria,Tajikistan,Tanzania,Thailand,Togo,Tonga,Trinidad &amp;amp; Tobago,Tunisia,Turkey,Turkmenistan,Tuvalu,Uganda,Ukraine,United Arab Emirates,United Kingdom,United States of America,Uruguay,Uzbekistan,Vanuatu,Vatican City,Venezuela,Vietnam,Yemen,Zambia,Zimbabwe', NULL, 0, '2020-11-15 10:52:30'), (8, 'group', 43, 'description', NULL, 'Spektakuler', NULL, 0, '2022-02-28 15:55:35'), (9, 'group', 52, 'description', NULL, 'Go Fast To The Next Level', NULL, 0, '2022-03-02 20:56:41'); -- -------------------------------------------------------- -- -- Table structure for table `gr_session` -- CREATE TABLE `gr_session` ( `id` bigint NOT NULL, `uid` bigint DEFAULT NULL, `device` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tms` datetime DEFAULT NULL, `try` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `gr_session` -- INSERT INTO `gr_session` (`id`, `uid`, `device`, `code`, `tms`, `try`) VALUES (9, 2, '::1mozilla5.0macintoshintelmacosx10157applewebkit605.1.15khtmllikegeckoversion15.2safari605.1.15', 'CYQuuHj6u7zZqR', '2022-01-30 09:39:13', '0'), (22, 4, '10.9.115.226mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 'O9dsGDY4OMerfq', '2022-01-31 09:54:57', '0'), (28, 2, '10.9.113.77mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 'nDstldrU0KBfEH', '2022-01-31 11:56:30', '0'), (34, 2, '10.9.113.77mozilla5.0macintoshintelmacosx10.15rv96.0gecko20100101firefox96.0', 'fOsv90cvsGh2TK', '2022-01-31 13:47:07', '0'), (36, 2, '182.2.169.181mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome97.0.4692.98mobilesafari537.36', 'vF6vrSSx8rr9F7', '2022-01-31 18:08:34', '0'), (38, 2, '182.2.169.181mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 'MEtKEuMIJVg5qP', '2022-01-31 18:11:44', '0'), (60, 2, '10.9.115.65mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 'P6d5kh3FELMQVi', '2022-02-03 07:07:43', '0'), (68, 2, '10.9.113.77mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 'cKN3ErIDM1rmGR', '2022-02-04 09:43:44', '0'), (72, 2, '::1mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 'YQ4m2Kk7woWZwC', '2022-02-04 12:13:24', '0'), (76, 3, '10.9.113.84mozilla5.0linuxandroid11sma515fapplewebkit537.36khtmllikegeckochrome97.0.4692.98mobilesafari537.36', 'JP1xgtf0zsPfRv', '2022-02-04 14:17:42', '0'), (78, 3, '114.79.6.74mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 'nqoo4EAlftikOi', '2022-02-04 17:23:27', '0'), (91, 0, '::1mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 'YjvzyaiHzCloT6', '2022-02-06 13:26:25', '0'), (97, 2, '::1mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', '4A8sqNKQjMysOf', '2022-02-06 20:05:01', '0'), (113, 2, '114.124.193.62mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 'ANzL0QnfzOlqAV', '2022-02-10 00:45:09', '0'), (132, 26, '192.168.10.2mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 'qMCm2q5cTqBb7C', '2022-02-10 12:22:11', '0'), (133, 2, '10.9.115.61mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome98.0.4758.87mobilesafari537.36', 'tg3g2B8MpMZhsV', '2022-02-10 12:22:16', '0'), (145, 24, '182.0.176.158mozilla5.0windowsnt10.0win64x64rv96.0gecko20100101firefox96.0', 'gdTjQW5rFe8dIN', '2022-02-10 12:57:44', '0'), (147, 2, '10.9.115.11mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', '9wOOyjcoIAtUBi', '2022-02-10 13:00:08', '0'), (149, 24, '182.0.176.158mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 'Atlw9drKhgOFck', '2022-02-10 13:04:57', '0'), (151, 3, '10.9.113.84mozilla5.0linuxandroid11samsungsma515fapplewebkit537.36khtmllikegeckosamsungbrowser16.0chrome92.0.4515.166mobilesafari537.36', 'gTBHsIoq5sZAaI', '2022-02-10 13:51:41', '0'), (155, 23, '114.124.195.165mozilla5.0linuxandroid11sma525fapplewebkit537.36khtmllikegeckochrome96.0.4664.45mobilesafari537.36', 'JTfGm6DLLz35kt', '2022-02-10 17:36:51', '0'), (159, 48, '118.137.81.74mozilla5.0macintoshintelmacosx10157applewebkit605.1.15khtmllikegeckoversion15.3safari605.1.15', 'c51Q2Q2TcWaq3L', '2022-02-10 18:08:54', '0'), (161, 46, '10.9.115.196mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 'RHjD5agCQvbuTd', '2022-02-11 05:49:55', '0'), (165, 41, '10.9.113.186mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 'mgpyLenw63M8wp', '2022-02-11 07:14:46', '0'), (167, 11, '10.9.113.15mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 'fUJ21yZbi6Hsf6', '2022-02-11 12:14:42', '0'), (171, 2, '182.0.151.146mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome98.0.4758.87mobilesafari537.36', 'O2OQIy6LjKvvJ8', '2022-02-14 18:38:43', '0'), (173, 2, '192.168.10.2mozilla5.0windowsnt6.1applewebkit537.36khtmllikegeckochrome98.0.4758.102safari537.36', '6kezJIyjjwV66D', '2022-02-17 15:19:18', '0'), (179, 2, '114.124.212.219mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome98.0.4758.101mobilesafari537.36', 'UUSEHzhAL4Anz3', '2022-02-17 18:50:54', '0'), (181, 14, '182.0.143.209mozilla5.0linuxandroid11smm215fapplewebkit537.36khtmllikegeckochrome98.0.4758.101mobilesafari537.36', 'sCmiP0O4iN6b0l', '2022-02-23 07:39:03', '0'), (182, 29, 'bs.114.124.244.181mozilla5.0iphonecpuiphoneos142likemacosxapplewebkit605.1.15khtmllikegeckoversion14.0.1mobile15e148safari604.1', 'spjWJz1dyJ5rLEpgJpvA', '2022-02-23 07:40:25', '10'), (187, 29, 'bs.114.124.245.36mozilla5.0iphonecpuiphoneos142likemacosxapplewebkit605.1.15khtmllikegeckoversion14.0.1mobile15e148safari604.1', 'lFJcieXc9OK84OCmrZZj', '2022-02-23 07:49:28', '8'), (225, 29, '114.124.213.4mozilla5.0iphonecpuiphoneos142likemacosxapplewebkit605.1.15khtmllikegeckoversion14.0.1mobile15e148safari604.1', 'CTGAUxpwWuYBMD', '2022-02-23 08:23:13', '0'), (229, 1, '10.9.115.10mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', '5EEE4OKUDcz0mp', '2022-02-23 08:27:23', '0'), (233, 1, '10.9.115.10mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 'U7c7fD4bRPMzWq', '2022-02-23 08:32:02', '0'), (235, 1, '10.9.114.134mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.102safari537.36', '9drVAkEt3lho8z', '2022-02-23 09:30:56', '0'), (237, 1, '10.9.115.10mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 'ctLni5bJcLciCP', '2022-02-23 09:32:12', '0'), (239, 1, '10.9.115.10mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 'H5PAnVe5XXnvZW', '2022-02-24 14:28:59', '0'), (241, 1, '154.28.188.182mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 'njW9N3TQQbFWqI', '2022-02-25 19:17:12', '0'), (243, 1, '114.79.7.159mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', '7PM99yV5tQL2HB', '2022-02-28 15:53:45', '0'), (251, 1, '115.178.216.196mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 'yCubu0QRjqTzKx', '2022-03-02 20:44:24', '0'); -- -------------------------------------------------------- -- -- Table structure for table `gr_users` -- CREATE TABLE `gr_users` ( `id` bigint NOT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `pass` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `mask` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `depict` int NOT NULL DEFAULT '1', `role` bigint NOT NULL DEFAULT '1', `created` datetime NOT NULL, `altered` datetime NOT NULL, `extra` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `gr_users` -- INSERT INTO `gr_users` (`id`, `name`, `email`, `pass`, `mask`, `depict`, `role`, `created`, `altered`, `extra`) VALUES (1, 'superuser', 'septian.arman009@gmail.com', 'a28ee80c037348e0a4da62ca645b5034', 'WQ4zWUTb', 8, 2, '2019-04-11 16:54:11', '2022-02-06 04:22:52', '0'), (2, 'asep.diki', 'asep.diki@kimiafarma.co.id', 'ae4c2fac1c528dfa9e6060349d245850', 'PAQAg7XBOscUD', 2, 3, '2022-01-30 09:39:13', '2022-01-30 09:39:13', '0'), (3, 'fikri.agil', 'hn.kfupj@gmail.com', 'b30e9fac30c89314586885bc57a0884d', 'Jpxs9o4gn19jF', 2, 3, '2022-01-31 05:38:55', '2022-01-31 05:38:55', '0'), (4, 'azizah', 'teknik.kfupj@kimiafarma.co.id', 'fcb56386c95d6fd2d039d5b9ee99ce0f', 'wbMz05YQv', 8, 3, '2022-01-31 09:54:57', '2022-01-31 09:54:57', '0'), (5, 'afifi.hilmiyanti', 'afifi.hilmiyanti@kimiafarma.co.id', '1dad84a5aa6d755beabf6415e4687ad0', 'dJ0NIGIfCBKKL', 4, 3, '2022-02-06 04:21:57', '2022-02-06 04:21:57', '0'), (6, 'agung.gustiman', 'agung.gustiman@kimiafarma.co.id', '5e75ccb6061b44fdb52a4b09037def82', 'snTMLLnbKT2T', 4, 3, '2022-02-06 04:23:49', '2022-02-06 04:23:49', '0'), (7, 'ahmad.sarmali1003', 'ahmad.sarmali1003@kimiafarma.co.id', '0c1df043283b7c43d1cdd3dd7ac12c94', 'zmrEMSHgmRlp', 7, 3, '2022-02-06 04:24:58', '2022-02-06 04:24:58', '0'), (8, 'anindya.hana', 'anindya.hana@kimiafarma.co.id', '5bd506188779d4ec113678114a085d09', 'uExidGrRAukHM', 6, 3, '2022-02-06 04:25:36', '2022-02-06 04:25:36', '0'), (9, 'anita.eu', 'anita.eu@kimiafarma.co.id', '4d40011ff5e62910c8eeb95345a8dfa4', 'J4nhmyEDNua', 8, 3, '2022-02-06 04:25:55', '2022-02-06 04:25:55', '0'), (10, 'ari.gunawan', 'ari.gunawan@kimiafarma.co.id', '3b5284206aa938770a4ce06ed1e78dec', 'QfekFWy8XSXhwx', 8, 3, '2022-02-06 04:26:15', '2022-02-06 04:26:15', '0'), (11, 'astrid.permatasari', 'astrid.permatasari@kimiafarma.co.id', 'fb0270d591edd232a9c35fab7869faee', 'FBPGuM8fN', 4, 3, '2022-02-06 04:26:34', '2022-02-06 04:26:34', '0'), (12, 'awanda.mustika', 'awanda.mustika@kimiafarma.co.id', 'd982f9e407e4edc961b560f6eab75e4c', 'FVs6OLwf', 10, 3, '2022-02-06 04:26:57', '2022-02-06 04:26:57', '0'), (13, 'dena.fanandra', 'dena.fanandra@kimiafarma.co.id', '814eacd953fe1495c932ac1114ebcaeb', 'rEsRtFSi', 10, 3, '2022-02-06 04:27:18', '2022-02-06 04:27:18', '0'), (14, 'destria.rahmadini', 'destria.rahmadini@kimiafarma.co.id', 'ba57f632fa30fdfbe38804113bf7c167', 'G1g8lU1wM5Tl', 1, 3, '2022-02-06 04:27:40', '2022-02-10 12:24:57', '0'), (15, 'deviscar.tito', 'deviscar.tito@kimiafarma.co.id', '4b565b400b471008e973763f2aa19fe8', '2p7C33M1XQ3fqj', 7, 3, '2022-02-06 04:31:00', '2022-02-06 04:31:00', '0'), (16, 'dimas.p', 'dimas.p@kimiafarma.co.id', 'd4bc7ab6d676d751ff185bf1e25245ac56faef2786920a960a495bf1985f49d6', 'bOby7Jh43c6', 3, 3, '2022-02-06 04:31:22', '2022-02-06 04:31:22', '0'), (17, 'dwi.oktarini', 'dwi.oktarini@kimiafarma.co.id', 'ee0e92f584197b5302ea76c405064a58', 'hCX3YUuPdsXWY7', 2, 3, '2022-02-06 04:31:47', '2022-02-06 04:31:47', '0'), (18, 'siregar.evendy', 'siregar.evendy@kimiafarma.co.id', 'bad943553dcfe7f397685634cf0ef9d1', 'LKKB7MwT', 6, 3, '2022-02-06 04:32:07', '2022-02-06 04:32:07', '0'), (19, 'fahriadi', 'fahriadi@kimiafarma.co.id', '26cfafa09c5be52a065cef8c14704705', 'EfN1UKTIoZCAiBY', 4, 3, '2022-02-06 04:32:26', '2022-02-06 04:32:26', '0'), (20, 'geta.setyowati', 'geta.setyowati@kimiafarma.co.id', '69dcd4e56b03d31ddfc2185334c490246147aece', '15LW25phFy', 9, 3, '2022-02-06 04:32:44', '2022-02-06 04:32:44', '0'), (21, 'gian.syahfitria', 'gian.syahfitria@kimiafarma.co.id', '9152b9cf5cec729b798d999d6a5463f2', 'irZ8e3ky4K95L4i', 8, 3, '2022-02-06 04:33:03', '2022-02-06 04:33:03', '0'), (22, 'gita.mt', 'gita.mt@kimiafarma.co.id', '9e666d7d4489e39531636f28489eec4a', 'Hg92Vp0JQFDP', 8, 3, '2022-02-06 04:33:22', '2022-02-06 04:33:22', '0'), (23, 'irvan.bastian', 'irvan.bastian@kimiafarma.co.id', 'fbb817fc9ed03bc0704c99b9097aca0fdd3b10dfda7b82a18dc3f0dc946a4c7d', 'wzEBhi8bKTMWP', 3, 3, '2022-02-06 04:33:43', '2022-02-06 04:33:43', '0'), (24, 'iskandar', 'iskandar@kimiafarma.co.id', '6327b063eacc35b24351a31fcdf5bd54', 'pRPECPOaU', 10, 3, '2022-02-06 04:34:19', '2022-02-06 04:34:19', '0'), (25, 'ivan.santoso', 'ivan.santoso@kimiafarma.co.id', '7ecacf85d004f8617dd3d6c4638bbae5', 'PXt6xeYNsd', 1, 3, '2022-02-06 04:34:35', '2022-02-06 04:34:54', '0'), (26, 'katrin.dayatri', 'katrin.dayatri@kimiafarma.co.id', 'd2bb514b9b8ac2161196623e0c2ce15c', 'TheZjSe4wtGHtJ', 8, 3, '2022-02-06 04:35:33', '2022-02-06 04:35:33', '0'), (27, 'kresma.oky', 'kresma.oky@kimiafarma.co.id', 'a5b083dcf7048cbb00a9e510df7ade1f', 'zzPArfTw', 8, 3, '2022-02-06 04:35:51', '2022-02-06 04:35:51', '0'), (28, 'kurniawati.hidayah', 'kurniawati.hidayah@gmail.com', '237b63f3877a5a4e8a0a38efb2e1871d', 'UMrRanFPqtt38y0', 4, 3, '2022-02-06 04:36:59', '2022-02-06 04:36:59', '0'), (29, 'lutfi.ratna', 'lutfi.ratna@kimiafarma.co.id', '9853794b25ecdd67f65a623283cd2827', 'hWtrItEks8nv6', 5, 3, '2022-02-06 04:37:14', '2022-02-23 08:01:12', '0'), (30, 'isapudin.januar', 'isapudin.januar@kimiafarma.co.id', '4825ebd53646ec95c969e53ab3a817b52bf06950', 'CyebEzElM2fGR', 9, 3, '2022-02-06 04:37:30', '2022-02-06 04:37:30', '0'), (31, 'muhamad.zefri', 'muhamad.zefri@kimiafarma.co.id', 'a88252893dd5ef74b00a88602f5079ce', 'jn2W1tFd7Pt', 5, 3, '2022-02-06 04:37:45', '2022-02-06 04:37:45', '0'), (32, 'muji.s', 'muji.s@kimiafarma.co.id', '35a5c5df07d41ff1d5b2b1d19d421942', 'xdzrKA1pf', 1, 3, '2022-02-06 04:38:03', '2022-02-06 04:38:03', '0'), (33, 'muslim.mz', 'muslim.mz@kimiafarma.co.id', 'c1ac22cdfc70631407684ce7d0f1ef5e', 'LpI1E3X8u', 6, 3, '2022-02-06 04:38:18', '2022-02-06 04:38:18', '0'), (34, 'sarananurdin', 'sarananurdin@gmail.com', '2b26aece3ed095d586e434fc5a02b03b', '3HedzIsISaP45', 5, 3, '2022-02-06 04:38:35', '2022-02-06 04:38:35', '0'), (35, 'nurleli', 'nurleli@kimiafarma.co.id', '167f8524b68991ad6b632d7233a1f903', 'unBTnDw5SeQLxY', 5, 3, '2022-02-06 04:38:50', '2022-02-06 04:38:50', '0'), (36, 'nurul.ikhsani', 'nurul.ikhsani@kimiafarma.co.id', '1d6965baae964596fd7291dfaccd4d82', 'tJ57lUSbhD', 2, 3, '2022-02-06 04:39:07', '2022-02-06 04:39:07', '0'), (37, 'nuryesi', 'nuryesi@kimiafarma.co.id', 'e066b7127d4b5d5bced625aeb7390cb2', 'uHrXz7hC3MG', 10, 3, '2022-02-06 04:39:22', '2022-02-06 04:39:22', '0'), (38, 'ria.hasanah.putri', 'ria.hasanah.putri@kimiafarma.co.id', '1687e754731a9d371fcf0f3d4b96703e', 'J3aiN0sxDzj8Qr', 6, 3, '2022-02-06 04:39:37', '2022-02-06 04:39:37', '0'), (39, 'rima.primagda', 'rima.primagda@kimiafarma.co.id', 'f49286e15b964c759cadf42792b43f66', 'BF5DtkGWd', 6, 3, '2022-02-06 04:39:50', '2022-02-06 04:39:50', '0'), (40, 'roni.sofyar', 'roni.sofyar@kimiafarma.co.id', 'cb5b23d3bf8b7ffc166877300d6d3cdd', 'IxLaSEw8Pm', 10, 3, '2022-02-06 04:40:04', '2022-02-06 04:40:04', '0'), (41, 'sandy.ariska', 'sandy.ariska@kimiafarma.co.id', '7d30518cb61d2b55dfdc4034de92013d', 'KQCiaqnFuTVKf', 10, 3, '2022-02-06 04:40:19', '2022-02-06 04:40:19', '0'), (42, 'siti_as', 'siti_as@kimiafarma.co.id', '23750e4cae471d57ebc3615bf9733211', 'wWHfsFKALGeRpU', 7, 3, '2022-02-06 04:40:34', '2022-02-06 04:40:34', '0'), (43, 'usilowatis', 'usilowatis@gmail.com', '0949b0dcdd2b692aa98c15ae877171a5', '39r51e8J5PSAz', 8, 3, '2022-02-06 04:40:48', '2022-02-06 04:40:48', '0'), (44, 'sudarmadi', 'sudarmadi@kimiafarma.co.id', '762635b55aa565838314bec31e9ed56b1e1c64ce314f8485ad0025f999ca61e9', '83vksbLVS', 3, 3, '2022-02-06 04:41:03', '2022-02-06 04:41:03', '0'), (45, 'theresia.nindya', 'theresia.nindya@kimiafarma.co.id', '83684ed124f992b7e7c674e1bb051ec7c73a5d80', 'pzGJmxER', 9, 3, '2022-02-06 04:42:03', '2022-02-06 04:42:03', '0'), (46, 'mujahidin', 'mujahidin@kimiafarma.co.id', '3dc4d0b84437e5aab569a87d7d989cd0', 'fZpghYyMJPpQa2', 4, 3, '2022-02-06 04:42:19', '2022-02-06 04:42:19', '0'), (47, 'wahyudin', 'wahyudin@kimiafarma.co.id', '791c10e8e374ca876cf28d298b7d7b3dd8b9f636', 'lCz2eIQiVPCtAT', 9, 3, '2022-02-06 04:42:36', '2022-02-06 04:42:36', '0'), (48, 'wieditha.yudha', 'wieditha.yudha@kimiafarma.co.id', 'b16c1cc085973ea2051670042ff104953ea5f048', 'v2LNK1PzOlH0ma', 9, 3, '2022-02-06 04:42:51', '2022-02-06 04:42:51', '0'), (49, 'wildan.andiana', 'wildan.andiana@kimiafarma.co.id', '0806d497e85251eae8c04f68eff75557', 'xvqFx9IC', 6, 3, '2022-02-06 04:43:14', '2022-02-06 04:43:14', '0'), (50, 'yustika.syamsu', 'yustika.syamsu@kimiafarma.co.id', '30e387d4d8ed4d48ac687f73a33c9fa1', 'UApEEHN8oTR7', 5, 3, '2022-02-06 04:43:29', '2022-02-06 04:43:29', '0'), (51, 'bramhik', 'bramhik@kimiafarma.co.id', '69aa7b4d9ef2fd3eb20b433b5c8b0596', 'AiHV1VDwm4Ndro8', 8, 3, '2022-02-06 04:45:09', '2022-02-06 04:45:09', '0'), (52, 'armay.edfano', 'armay.edfano@kimiafarma.co.id', '89af9d2016d3a8663a6a865c1b52357b', 'bcNdcVfL', 10, 3, '2022-02-06 04:45:36', '2022-02-06 04:45:36', '0'), (53, 'fajar.firmansyah', 'fajar.firmansyah@kimiafarma.co.id', '48b3d1552fc59af396ac2a3d6479a7a2', 'e30frlOu', 10, 3, '2022-02-06 04:45:59', '2022-02-06 13:13:24', '0'), (54, 'fikrianto', 'fikrianto@kimiafarma.co.id', 'fa14000c490b3ea3a6acc73df9993719', 'WcZHvyzzW', 6, 3, '2022-02-06 04:46:17', '2022-02-06 04:46:17', '0'), (55, 'irving', 'irving@kimiafarma.co.id', '786e88f665762856813bab451687afb2e6a67a92', 'xQn8hpdN', 9, 3, '2022-02-06 04:46:34', '2022-02-06 04:46:34', '0'), (56, 'larastuti', 'larastuti@kimiafarma.co.id', '473259cfc6e9df71bb25d4593d7a4285', 'jpajQK2mvjI', 7, 3, '2022-02-06 04:46:49', '2022-02-06 04:46:49', '0'), (57, 'nur.alam', 'nur.alam@kimiafarma.co.id', '0df9ae9823059e05905fe15e1a73f334', 'DI3Y98Ax9wRDnVN', 10, 3, '2022-02-06 04:47:04', '2022-02-06 04:47:04', '0'), (58, 'sri.astuti', 'sri.astuti@kimiafarma.co.id', 'a917105e5769cffa6b351a6135ade49d', 'oGktSZuTxUYQ', 8, 3, '2022-02-06 04:47:17', '2022-02-06 04:47:17', '0'), (59, 'tien', 'tien@kimiafarma.co.id', 'f8ef501fe06913e987ae3822afa9989d', 'xsaqET7pFjd', 1, 3, '2022-02-06 04:47:30', '2022-02-06 04:47:30', '0'), (60, 'titis.danastri', 'titis.danastri@kimiafarma.co.id', '269b20ee9d3a87158958a4af7a94e657', 'KJSwcuOxMfSkMQ', 8, 3, '2022-02-06 04:47:48', '2022-02-06 04:47:48', '0'), (61, 'yanti.hardiyanti', 'yanti.hardiyanti@kimiafarma.co.id', '417c3fca4408055b994020c6de8acd12', 'oHiLoa131Z', 1, 3, '2022-02-06 04:48:02', '2022-02-06 04:48:02', '0'), (62, 'angga.saenagri', 'angga.saenagri@kimiafarma.co.id', '8dd6dde7d65fadad080c1af8c24f3687', '327mV4K1J', 5, 3, '2022-02-06 04:48:41', '2022-02-06 04:48:41', '0'), (63, 'yogi.sugianto', 'yogi.sugianto@kimiafarma.co.id', '816601e5d9f3070955c974b81e260e00', 'SqAcfELF723HBWl', 1, 3, '2022-02-06 04:49:43', '2022-02-06 04:49:43', '0'), (64, 'yurista.gilang', 'yurista.gilang@kimiafarma.co.id', '40e6728bb76fcc9b5499f4f897c1c6df', 'VQZnayXuWQZN', 1, 3, '2022-02-06 04:50:38', '2022-02-06 04:50:38', '0'), (65, 'alternate.septian', 'alternate.septian@gmail.com', '807b4e546645f0c4e3fb476ff5a5d6d900556b54', 'XZpOYqI5btNBI9', 9, 3, '2022-02-23 08:26:17', '2022-02-23 08:33:08', '0'); -- -------------------------------------------------------- -- -- Table structure for table `gr_utrack` -- CREATE TABLE `gr_utrack` ( `id` bigint NOT NULL, `ip` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `dev` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `uid` bigint DEFAULT NULL, `status` int DEFAULT '0', `tms` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `gr_utrack` -- INSERT INTO `gr_utrack` (`id`, `ip`, `dev`, `uid`, `status`, `tms`) VALUES (1, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-30 06:15:48'), (2, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-30 06:20:56'), (3, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-30 06:27:43'), (4, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-30 06:32:59'), (5, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-30 06:54:21'), (6, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-30 07:32:02'), (7, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-30 07:37:30'), (8, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit605.1.15khtmllikegeckoversion15.2safari605.1.15', 2, 0, '2022-01-30 09:39:13'), (9, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-30 13:02:51'), (10, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-30 13:09:54'), (11, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-30 13:15:08'), (12, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-30 13:20:10'), (13, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-30 13:25:51'), (14, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-30 13:32:57'), (15, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 2, 0, '2022-01-30 13:33:46'), (16, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 2, 0, '2022-01-30 19:23:11'), (17, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 2, 0, '2022-01-30 22:42:09'), (18, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-30 22:42:26'), (19, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-30 22:47:40'), (20, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-30 22:53:59'), (21, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-30 22:59:27'), (22, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-31 05:36:27'), (23, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 2, 0, '2022-01-31 05:40:02'), (24, '::1', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 3, 0, '2022-01-31 05:40:46'), (25, '::1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 1, 0, '2022-01-31 09:50:49'), (26, '10.9.113.86', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 2, 0, '2022-01-31 09:52:20'), (27, '10.9.115.226', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 4, 0, '2022-01-31 09:54:57'), (28, '::1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 1, 0, '2022-01-31 09:59:22'), (29, '10.9.113.86', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 2, 0, '2022-01-31 10:00:32'), (30, '10.9.113.86', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 2, 0, '2022-01-31 10:05:35'), (31, '10.9.113.86', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-01-31 10:07:40'), (32, '::1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 1, 0, '2022-01-31 10:15:40'), (33, '10.9.113.86', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-01-31 10:20:06'), (34, '::1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 1, 0, '2022-01-31 10:22:36'), (35, '127.0.0.1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 1, 0, '2022-01-31 10:28:15'), (36, '::1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 1, 0, '2022-01-31 10:31:57'), (37, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-31 11:49:06'), (38, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-31 11:56:03'), (39, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 2, 0, '2022-01-31 11:56:30'), (40, '10.9.115.10', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 2, 0, '2022-01-31 13:39:03'), (41, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 2, 0, '2022-01-31 13:44:39'), (42, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-31 13:45:22'), (43, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10.15rv96.0gecko20100101firefox96.0', 2, 0, '2022-01-31 13:47:07'), (44, '182.2.169.181', 'mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome97.0.4692.98mobilesafari537.36', 2, 0, '2022-01-31 18:08:35'), (45, '182.2.169.181', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 2, 0, '2022-01-31 18:11:44'), (46, '114.79.5.60', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-01-31 18:50:22'), (47, '114.79.5.60', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-01-31 20:05:19'), (48, '114.79.5.60', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-01-31 20:22:44'), (49, '114.79.5.60', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 2, 0, '2022-02-01 00:29:40'), (50, '114.79.5.60', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-01 00:34:35'), (51, '114.79.5.60', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-02-01 05:45:53'), (52, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-02 07:25:13'), (53, '114.124.214.230', 'mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome97.0.4692.98mobilesafari537.36', 2, 0, '2022-02-02 07:44:37'), (54, '::1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 1, 0, '2022-02-02 09:51:38'), (55, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-02 09:59:12'), (56, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-02 11:51:15'), (57, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-02 11:56:57'), (58, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 2, 0, '2022-02-02 11:59:23'), (59, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 2, 0, '2022-02-02 12:46:12'), (60, '115.178.200.196', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-02-02 12:47:01'), (61, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-02 12:47:11'), (62, '115.178.200.217', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome96.0.4664.93safari537.36', 1, 0, '2022-02-02 21:30:08'), (63, '115.178.200.217', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-02 21:38:38'), (64, '115.178.200.217', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 2, 0, '2022-02-02 22:12:06'), (65, '115.178.200.217', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome96.0.4664.93safari537.36', 1, 0, '2022-02-02 22:14:53'), (66, '115.178.200.217', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome96.0.4664.93safari537.36', 1, 0, '2022-02-02 22:20:35'), (67, '115.178.200.217', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-02 22:22:34'), (68, '115.178.200.217', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-02 22:31:18'), (69, '115.178.200.217', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-02 22:36:42'), (70, '115.178.200.217', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 1, 0, '2022-02-02 22:41:18'), (71, '115.178.200.217', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-02-02 22:44:23'), (72, '10.9.115.65', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 1, 0, '2022-02-03 07:04:43'), (73, '10.9.115.10', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-03 07:07:25'), (74, '10.9.115.65', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 2, 0, '2022-02-03 07:07:44'), (75, '10.9.115.10', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-03 07:13:24'), (76, '10.9.115.65', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 2, 0, '2022-02-03 07:13:29'), (77, '10.9.115.56', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-02-03 08:22:57'), (78, '::1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 1, 0, '2022-02-03 11:33:49'), (79, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-03 11:35:36'), (80, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-03 13:54:54'), (81, '10.9.115.57', 'mozilla5.0windowsnt6.1wow64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 2, 0, '2022-02-04 09:42:37'), (82, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 2, 0, '2022-02-04 09:43:44'), (83, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 2, 0, '2022-02-04 12:08:07'), (84, '::1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 1, 0, '2022-02-04 12:12:51'), (85, '::1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 2, 0, '2022-02-04 12:13:25'), (86, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-04 12:16:55'), (87, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-04 12:28:21'), (88, '::1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 2, 0, '2022-02-04 12:38:44'), (89, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-04 12:43:26'), (90, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-04 13:08:05'), (91, '10.9.115.61', 'mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome98.0.4758.87mobilesafari537.36', 2, 0, '2022-02-04 14:06:42'), (92, '10.9.113.86', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-02-04 14:12:05'), (93, '10.9.115.61', 'mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome98.0.4758.87mobilesafari537.36', 2, 0, '2022-02-04 14:12:46'), (94, '10.9.113.84', 'mozilla5.0linuxandroid11sma515fapplewebkit537.36khtmllikegeckochrome97.0.4692.98mobilesafari537.36', 3, 0, '2022-02-04 14:17:42'), (95, '114.79.6.74', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 1, 0, '2022-02-04 16:50:14'), (96, '114.79.6.74', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 1, 0, '2022-02-04 17:05:47'), (97, '114.79.6.74', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-02-04 17:17:00'), (98, '114.79.6.74', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 1, 0, '2022-02-04 17:17:24'), (99, '114.79.6.74', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 3, 0, '2022-02-04 17:23:28'), (100, '114.79.6.74', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 3, 0, '2022-02-04 17:34:49'), (101, '223.255.229.24', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-04 19:39:55'), (102, '114.79.6.74', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-02-04 20:16:52'), (103, '223.255.229.24', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-04 20:20:21'), (104, '114.79.6.74', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-05 00:37:09'), (105, '114.79.6.74', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-05 04:51:40'), (106, '114.5.250.13', 'mozilla5.0linuxandroid11sma515fapplewebkit537.36khtmllikegeckochrome97.0.4692.98mobilesafari537.36', 3, 0, '2022-02-05 20:10:38'), (107, '115.178.208.16', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-06 04:16:14'), (108, '115.178.208.16', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-06 04:22:52'), (109, '115.178.208.16', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 2, 0, '2022-02-06 04:28:40'), (110, '115.178.208.16', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 3, 0, '2022-02-06 04:29:12'), (111, '115.178.208.16', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-06 04:30:31'), (112, '115.178.208.16', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-06 04:36:27'), (113, '115.178.208.16', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-06 04:44:01'), (114, '115.178.208.16', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-06 04:50:48'), (115, '115.178.198.35', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-06 10:47:00'), (116, '115.178.198.35', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-06 13:08:11'), (117, '115.178.198.35', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 53, 0, '2022-02-06 13:14:45'), (118, '::1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 2, 0, '2022-02-06 13:17:56'), (119, '::1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 1, 0, '2022-02-06 13:27:00'), (120, '115.178.198.35', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 53, 0, '2022-02-06 13:30:45'), (121, '::1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 1, 0, '2022-02-06 13:38:31'), (122, '115.178.198.35', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 53, 0, '2022-02-06 13:38:51'), (123, '::1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 1, 0, '2022-02-06 20:02:44'), (124, '::1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 2, 0, '2022-02-06 20:05:01'), (125, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 53, 0, '2022-02-07 05:56:43'), (126, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-07 05:57:02'), (127, '10.9.115.65', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 2, 0, '2022-02-07 06:12:02'), (128, '10.9.115.61', 'mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome98.0.4758.87mobilesafari537.36', 2, 0, '2022-02-07 08:30:04'), (129, '114.124.242.61', 'mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome98.0.4758.87mobilesafari537.36', 2, 0, '2022-02-07 09:13:14'), (130, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-07 12:22:13'), (131, '::1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 2, 0, '2022-02-07 12:25:04'), (132, '182.0.142.206', 'mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome98.0.4758.87mobilesafari537.36', 2, 0, '2022-02-07 18:04:40'), (133, '114.79.2.202', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-02-07 18:08:07'), (134, '182.0.142.206', 'mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome98.0.4758.87mobilesafari537.36', 2, 0, '2022-02-07 18:11:09'), (135, '114.79.2.202', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-02-07 19:12:59'), (136, '114.79.2.202', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-02-07 19:22:26'), (137, '182.0.172.90', 'mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome98.0.4758.87mobilesafari537.36', 2, 0, '2022-02-07 19:38:08'), (138, '10.9.115.65', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 2, 0, '2022-02-08 09:04:36'), (139, '115.178.197.202', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-09 10:07:11'), (140, '::1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 2, 0, '2022-02-09 10:08:46'), (141, '115.178.197.202', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-09 11:26:13'), (142, '115.178.197.202', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-09 11:43:31'), (143, '114.79.6.247', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-02-09 23:01:09'), (144, '114.79.6.247', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 2, 0, '2022-02-09 23:46:06'), (145, '114.79.6.247', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-09 23:46:31'), (146, '114.124.193.62', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 2, 0, '2022-02-10 00:45:09'), (147, '10.9.115.56', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-02-10 05:30:10'), (148, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-10 05:43:55'), (149, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-10 05:49:30'), (150, '127.0.0.1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 1, 0, '2022-02-10 05:54:49'), (151, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-10 05:57:00'), (152, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-10 06:44:11'), (153, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-10 06:49:21'), (154, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-10 07:02:17'), (155, '127.0.0.1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 1, 0, '2022-02-10 07:29:45'), (156, '127.0.0.1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 1, 0, '2022-02-10 07:35:50'), (157, '127.0.0.1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 1, 0, '2022-02-10 09:38:36'), (158, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-10 11:09:48'), (159, '114.79.4.119', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-02-10 11:11:07'), (160, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-10 11:19:40'), (161, '127.0.0.1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 1, 0, '2022-02-10 11:37:37'), (162, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-10 11:38:04'), (163, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-10 12:08:55'), (164, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 62, 0, '2022-02-10 12:10:54'), (165, '192.168.10.2', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 26, 0, '2022-02-10 12:22:11'), (166, '10.9.115.61', 'mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome98.0.4758.87mobilesafari537.36', 2, 0, '2022-02-10 12:22:16'), (167, '192.168.10.2', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 14, 0, '2022-02-10 12:24:41'), (168, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-10 12:26:23'), (169, '192.168.10.2', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 26, 0, '2022-02-10 12:27:52'), (170, '192.168.10.2', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 14, 0, '2022-02-10 12:36:39'), (171, '182.0.176.158', 'mozilla5.0windowsnt10.0win64x64rv96.0gecko20100101firefox96.0', 24, 0, '2022-02-10 12:45:40'), (172, '10.9.115.11', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 2, 0, '2022-02-10 12:54:36'), (173, '182.0.176.158', 'mozilla5.0windowsnt10.0win64x64rv96.0gecko20100101firefox96.0', 24, 0, '2022-02-10 12:57:18'), (174, '10.9.115.11', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 2, 0, '2022-02-10 13:00:08'), (175, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-10 13:01:00'), (176, '182.0.176.158', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 24, 0, '2022-02-10 13:04:58'), (177, '192.168.10.2', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 14, 0, '2022-02-10 13:32:52'), (178, '10.9.113.84', 'mozilla5.0linuxandroid11samsungsma515fapplewebkit537.36khtmllikegeckosamsungbrowser16.0chrome92.0.4515.166mobilesafari537.36', 3, 0, '2022-02-10 13:51:42'), (179, '10.9.115.61', 'mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome98.0.4758.87mobilesafari537.36', 2, 0, '2022-02-10 13:54:12'), (180, '127.0.0.1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 1, 0, '2022-02-10 14:30:40'), (181, '120.188.34.226', 'mozilla5.0linuxandroid11samsungsma515fapplewebkit537.36khtmllikegeckosamsungbrowser16.0chrome92.0.4515.166mobilesafari537.36', 3, 0, '2022-02-10 15:49:20'), (182, '115.178.200.99', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-10 17:20:00'), (183, '::1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 1, 0, '2022-02-10 17:23:39'), (184, '114.124.195.165', 'mozilla5.0linuxandroid11sma525fapplewebkit537.36khtmllikegeckochrome96.0.4664.45mobilesafari537.36', 23, 0, '2022-02-10 17:36:51'), (185, '115.178.214.151', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-10 17:37:11'), (186, '::1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 1, 0, '2022-02-10 17:40:35'), (187, '118.137.81.74', 'mozilla5.0macintoshintelmacosx10157applewebkit605.1.15khtmllikegeckoversion15.3safari605.1.15', 48, 0, '2022-02-10 18:08:54'), (188, '120.188.34.226', 'mozilla5.0linuxandroid11samsungsma515fapplewebkit537.36khtmllikegeckosamsungbrowser16.0chrome92.0.4515.166mobilesafari537.36', 3, 0, '2022-02-10 21:43:47'), (189, '182.0.149.232', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 2, 0, '2022-02-10 23:01:46'), (190, '10.9.115.56', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-02-11 05:29:24'), (191, '10.9.115.196', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 46, 0, '2022-02-11 05:49:55'), (192, '10.9.115.56', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-02-11 05:49:59'), (193, '10.9.113.15', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 11, 0, '2022-02-11 06:22:32'), (194, '10.9.113.84', 'mozilla5.0linuxandroid11samsungsma515fapplewebkit537.36khtmllikegeckosamsungbrowser16.0chrome92.0.4515.166mobilesafari537.36', 3, 0, '2022-02-11 07:02:25'), (195, '10.9.113.186', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 41, 0, '2022-02-11 07:14:47'), (196, '182.0.177.10', 'mozilla5.0windowsnt10.0win64x64rv97.0gecko20100101firefox97.0', 24, 0, '2022-02-11 07:29:50'), (197, '10.9.113.186', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 41, 0, '2022-02-11 07:50:45'), (198, '10.9.113.15', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 11, 0, '2022-02-11 12:14:42'), (199, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-14 10:18:04'), (200, '::1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 1, 0, '2022-02-14 10:18:31'), (201, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-14 14:14:45'), (202, '182.0.151.146', 'mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome98.0.4758.87mobilesafari537.36', 2, 0, '2022-02-14 18:38:43'), (203, '115.178.194.212', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-14 20:09:39'), (204, '::1', 'mozilla5.0windowsnt6.3win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 1, 0, '2022-02-14 20:10:37'), (205, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-17 13:41:41'), (206, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-17 13:50:28'), (207, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-17 13:58:02'), (208, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-17 14:09:38'), (209, '10.9.113.77', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-17 14:20:52'), (210, '192.168.10.2', 'mozilla5.0windowsnt6.1applewebkit537.36khtmllikegeckochrome98.0.4758.102safari537.36', 2, 0, '2022-02-17 15:19:18'), (211, '10.9.115.57', 'mozilla5.0windowsnt6.1wow64applewebkit537.36khtmllikegeckochrome98.0.4758.82safari537.36', 1, 0, '2022-02-17 12:16:15'), (212, '10.9.112.45', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-02-17 12:17:46'), (213, '10.9.115.11', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.102safari537.36', 2, 0, '2022-02-17 14:33:53'), (214, '114.79.0.163', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-02-17 14:46:42'), (215, '10.9.115.11', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.102safari537.36', 2, 0, '2022-02-17 15:15:10'), (216, '114.124.212.219', 'mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome98.0.4758.101mobilesafari537.36', 2, 0, '2022-02-17 18:50:39'), (217, '114.5.219.154', 'mozilla5.0linuxandroid11samsungsma515fapplewebkit537.36khtmllikegeckosamsungbrowser16.0chrome92.0.4515.166mobilesafari537.36', 3, 0, '2022-02-18 15:01:10'), (218, '182.2.139.13', 'mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome98.0.4758.101mobilesafari537.36', 2, 0, '2022-02-21 22:46:10'), (219, '114.5.211.122', 'mozilla5.0linuxandroid11samsungsma515fapplewebkit537.36khtmllikegeckosamsungbrowser16.0chrome92.0.4515.166mobilesafari537.36', 3, 0, '2022-02-22 08:11:20'), (220, '115.178.212.31', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-02-22 12:42:38'), (221, '182.0.143.209', 'mozilla5.0linuxandroid11smm215fapplewebkit537.36khtmllikegeckochrome98.0.4758.101mobilesafari537.36', 14, 0, '2022-02-23 07:39:03'), (222, '10.9.115.10', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-23 07:46:54'), (223, '182.0.143.209', 'mozilla5.0linuxandroid11smm215fapplewebkit537.36khtmllikegeckochrome98.0.4758.101mobilesafari537.36', 14, 0, '2022-02-23 07:47:26'), (224, '10.9.115.10', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 29, 0, '2022-02-23 07:47:40'), (225, '10.9.115.10', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-23 08:00:32'), (226, '10.9.115.10', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 29, 0, '2022-02-23 08:01:27'), (227, '10.9.115.10', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-23 08:07:20'), (228, '10.9.115.10', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-23 08:12:36'), (229, '110.50.81.197', 'mozilla5.0windowsnt10.0wow64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 1, 0, '2022-02-23 08:15:42'), (230, '10.9.115.10', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-23 08:18:21'), (231, '114.124.213.4', 'mozilla5.0iphonecpuiphoneos142likemacosxapplewebkit605.1.15khtmllikegeckoversion14.0.1mobile15e148safari604.1', 29, 0, '2022-02-23 08:23:14'), (232, '10.9.115.10', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-23 08:24:21'), (233, '10.9.115.10', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-23 08:31:26'), (234, '10.9.115.10', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 65, 0, '2022-02-23 08:31:29'), (235, '175.45.186.196', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome97.0.4692.99safari537.36', 65, 0, '2022-02-23 08:31:38'), (236, '10.9.113.89', 'mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome98.0.4758.101mobilesafari537.36', 2, 0, '2022-02-23 08:48:49'), (237, '10.9.114.134', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.102safari537.36', 1, 0, '2022-02-23 09:30:58'), (238, '10.9.115.10', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-23 09:32:12'), (239, '182.0.175.39', 'mozilla5.0linuxandroid11smm215fapplewebkit537.36khtmllikegeckochrome98.0.4758.101mobilesafari537.36', 14, 0, '2022-02-23 12:09:56'), (240, '10.9.115.10', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-24 14:28:59'), (241, '120.188.65.109', 'mozilla5.0linuxandroid11samsungsma515fapplewebkit537.36khtmllikegeckosamsungbrowser16.0chrome92.0.4515.166mobilesafari537.36', 3, 0, '2022-02-24 14:31:15'), (242, '182.2.136.69', 'mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome98.0.4758.101mobilesafari537.36', 2, 0, '2022-02-24 21:41:40'), (243, '10.9.113.170', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.102safari537.36', 2, 0, '2022-02-25 13:42:10'), (244, '154.28.188.182', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-25 19:17:14'), (245, '114.79.0.206', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-02-25 19:41:54'), (246, '182.3.36.95', 'mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome98.0.4758.101mobilesafari537.36', 2, 0, '2022-02-26 20:22:14'), (247, '182.3.36.95', 'mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome98.0.4758.101mobilesafari537.36', 2, 0, '2022-02-26 20:30:07'), (248, '114.79.7.159', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-02-28 15:53:45'), (249, '114.124.247.238', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.102safari537.36', 2, 0, '2022-02-28 22:12:35'), (250, '10.9.113.186', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.102safari537.36', 41, 0, '2022-03-01 11:13:05'), (251, '115.178.210.157', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-03-01 11:14:06'), (252, '115.178.199.22', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-03-01 12:15:04'), (253, '10.9.115.226', 'mozilla5.0windowsnt10.0win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.102safari537.36', 1, 0, '2022-03-01 13:14:03'), (254, '10.9.112.13', 'mozilla5.0windowsnt10.0win64x64rv97.0gecko20100101firefox97.0', 8, 0, '2022-03-02 06:40:53'), (255, '10.9.112.13', 'mozilla5.0windowsnt10.0win64x64rv97.0gecko20100101firefox97.0', 8, 0, '2022-03-02 06:50:30'), (256, '114.124.172.2', 'mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome98.0.4758.101mobilesafari537.36', 2, 0, '2022-03-02 06:53:37'), (257, '10.9.115.132', 'mozilla5.0windowsnt6.1win64x64applewebkit537.36khtmllikegeckochrome98.0.4758.102safari537.36', 1, 0, '2022-03-02 08:37:36'), (258, '115.178.216.196', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-03-02 20:44:24'), (259, '182.0.215.76', 'mozilla5.0linuxandroid8.1.0redmi5plusapplewebkit537.36khtmllikegeckochrome98.0.4758.101mobilesafari537.36', 2, 0, '2022-03-02 20:48:58'), (260, '115.178.216.196', 'mozilla5.0macintoshintelmacosx10157applewebkit537.36khtmllikegeckochrome95.0.4638.69safari537.36', 1, 0, '2022-03-02 20:56:53'), (261, '115.178.216.196', 'mozilla5.0linuxandroid7.1.2redmi4xapplewebkit537.36khtmllikegeckochrome96.0.4664.104mobilesafari537.36', 1, 0, '2022-03-02 21:42:15'), (262, '114.4.212.125', 'mozilla5.0linuxandroid11samsungsma515fapplewebkit537.36khtmllikegeckosamsungbrowser16.0chrome92.0.4515.166mobilesafari537.36', 3, 0, '2022-03-03 08:51:10'), (263, '114.4.212.125', 'mozilla5.0linuxandroid11samsungsma515fapplewebkit537.36khtmllikegeckosamsungbrowser16.0chrome92.0.4515.166mobilesafari537.36', 3, 0, '2022-03-03 14:23:02'); -- -- Indexes for dumped tables -- -- -- Indexes for table `gr_ads` -- ALTER TABLE `gr_ads` ADD PRIMARY KEY (`id`), ADD KEY `idx__adslot` (`adslot`) USING BTREE; -- -- Indexes for table `gr_alerts` -- ALTER TABLE `gr_alerts` ADD PRIMARY KEY (`id`), ADD KEY `idx__uid` (`uid`), ADD KEY `idx__uid_seen` (`uid`,`seen`); -- -- Indexes for table `gr_complaints` -- ALTER TABLE `gr_complaints` ADD PRIMARY KEY (`id`), ADD KEY `idx__gid_id` (`gid`,`id`), ADD KEY `idx__status_gid` (`status`,`gid`); -- -- Indexes for table `gr_customize` -- ALTER TABLE `gr_customize` ADD PRIMARY KEY (`id`); -- -- Indexes for table `gr_defaults` -- ALTER TABLE `gr_defaults` ADD PRIMARY KEY (`id`); -- -- Indexes for table `gr_logs` -- ALTER TABLE `gr_logs` ADD PRIMARY KEY (`id`), ADD KEY `idx__v1_type_v2` (`v1`,`type`,`v2`), ADD KEY `idx__v1_type_tms` (`v1`,`type`,`tms`); -- -- Indexes for table `gr_mails` -- ALTER TABLE `gr_mails` ADD PRIMARY KEY (`id`); -- -- Indexes for table `gr_msgs` -- ALTER TABLE `gr_msgs` ADD PRIMARY KEY (`id`), ADD KEY `idx__gid_id` (`gid`,`id`), ADD KEY `idx__gid_type` (`gid`,`type`), ADD KEY `idx__xtra_type` (`xtra`,`type`), ADD KEY `idx__uid_type` (`uid`,`type`), ADD KEY `idx__gid_cat_id` (`gid`,`cat`,`id`), ADD KEY `idx__id_gid_type` (`id`,`gid`,`type`), ADD KEY `idx__gid_cat_type_xtra` (`gid`,`cat`,`type`,`xtra`), ADD KEY `idx__msg_gid_uid_type` (`msg`(191),`gid`,`uid`,`type`); -- -- Indexes for table `gr_options` -- ALTER TABLE `gr_options` ADD PRIMARY KEY (`id`), ADD KEY `idx__v3_v1_type` (`v3`,`v1`,`type`), ADD KEY `idx__v2_v1_type` (`v2`,`v1`,`type`), ADD KEY `idx__type_id_tms` (`type`,`id`,`tms`), ADD KEY `idx__v1_type` (`v1`,`type`), ADD KEY `idx__v2_type` (`v2`,`type`), ADD KEY `idx__v1_type_v3` (`v1`,`type`,`v3`), ADD KEY `idx__v1_type_v2` (`v1`,`type`,`v2`), ADD KEY `idx__v1_type_v2_id` (`v1`,`type`,`v2`,`id`), ADD KEY `idx__type_v3` (`type`,`v3`), ADD KEY `idx__v3_v1_v2_type` (`v3`,`v1`(50),`v2`(50),`type`); -- -- Indexes for table `gr_permissions` -- ALTER TABLE `gr_permissions` ADD PRIMARY KEY (`id`), ADD KEY `idx__name` (`name`); -- -- Indexes for table `gr_phrases` -- ALTER TABLE `gr_phrases` ADD PRIMARY KEY (`id`), ADD KEY `idx__type_short` (`type`,`short`), ADD KEY `idx__lid_type` (`lid`,`type`); -- -- Indexes for table `gr_profiles` -- ALTER TABLE `gr_profiles` ADD PRIMARY KEY (`id`), ADD KEY `idx__type_id` (`type`,`id`), ADD KEY `idx__uid_type` (`uid`,`type`); -- -- Indexes for table `gr_session` -- ALTER TABLE `gr_session` ADD PRIMARY KEY (`id`), ADD KEY `idx__code_device` (`code`,`device`); -- -- Indexes for table `gr_users` -- ALTER TABLE `gr_users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `name` (`name`), ADD UNIQUE KEY `email` (`email`), ADD KEY `idx__role` (`role`); -- -- Indexes for table `gr_utrack` -- ALTER TABLE `gr_utrack` ADD PRIMARY KEY (`id`), ADD KEY `idx__uid_ip` (`uid`,`ip`), ADD KEY `idx__uid_tms` (`uid`,`tms`), ADD KEY `idx__ip_dev_uid` (`ip`,`dev`,`uid`) USING BTREE, ADD KEY `idx__uid_ip_dev` (`uid`,`ip`,`dev`), ADD KEY `idx__uid_ip_dev_tms` (`uid`,`ip`,`dev`,`tms`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `gr_ads` -- ALTER TABLE `gr_ads` MODIFY `id` bigint NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `gr_alerts` -- ALTER TABLE `gr_alerts` MODIFY `id` bigint NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=35; -- -- AUTO_INCREMENT for table `gr_complaints` -- ALTER TABLE `gr_complaints` MODIFY `id` bigint NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `gr_customize` -- ALTER TABLE `gr_customize` MODIFY `id` bigint NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=516; -- -- AUTO_INCREMENT for table `gr_defaults` -- ALTER TABLE `gr_defaults` MODIFY `id` bigint NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=77; -- -- AUTO_INCREMENT for table `gr_logs` -- ALTER TABLE `gr_logs` MODIFY `id` bigint NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=28; -- -- AUTO_INCREMENT for table `gr_mails` -- ALTER TABLE `gr_mails` MODIFY `id` bigint NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `gr_msgs` -- ALTER TABLE `gr_msgs` MODIFY `id` bigint NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=349; -- -- AUTO_INCREMENT for table `gr_options` -- ALTER TABLE `gr_options` MODIFY `id` bigint NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=254; -- -- AUTO_INCREMENT for table `gr_permissions` -- ALTER TABLE `gr_permissions` MODIFY `id` bigint NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `gr_phrases` -- ALTER TABLE `gr_phrases` MODIFY `id` bigint NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=614; -- -- AUTO_INCREMENT for table `gr_profiles` -- ALTER TABLE `gr_profiles` MODIFY `id` bigint NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `gr_session` -- ALTER TABLE `gr_session` MODIFY `id` bigint NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=252; -- -- AUTO_INCREMENT for table `gr_users` -- ALTER TABLE `gr_users` MODIFY `id` bigint NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=66; -- -- AUTO_INCREMENT for table `gr_utrack` -- ALTER TABLE `gr_utrack` MODIFY `id` bigint NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=264; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
105.976908
18,058
0.669422
84d7c3ac1da002818fea119f96db388ca7eda168
3,654
dart
Dart
lib/src/element_type.dart
devoncarew/dartdoc
0641be94a8c33689820984010a4af3f22c414a2f
[ "BSD-3-Clause" ]
null
null
null
lib/src/element_type.dart
devoncarew/dartdoc
0641be94a8c33689820984010a4af3f22c414a2f
[ "BSD-3-Clause" ]
null
null
null
lib/src/element_type.dart
devoncarew/dartdoc
0641be94a8c33689820984010a4af3f22c414a2f
[ "BSD-3-Clause" ]
null
null
null
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. /// The models used to represent Dart code. library dartdoc.element_type; import 'package:analyzer/dart/element/element.dart'; import 'package:analyzer/dart/element/type.dart'; import 'model.dart'; class ElementType { final DartType _type; final ModelElement element; String _linkedName; ElementType(this._type, this.element); bool get isDynamic => _type.isDynamic; bool get isFunctionType => (_type is FunctionType); bool get isParameterizedType { if (_type is FunctionType) { return (_type as FunctionType).typeFormals.isNotEmpty; } else if (_type is ParameterizedType) { return (_type as ParameterizedType).typeArguments.isNotEmpty; } return false; } bool get isParameterType => (_type is TypeParameterType); String get linkedName { if (_linkedName != null) return _linkedName; StringBuffer buf = new StringBuffer(); if (isParameterType) { buf.write(name); } else { buf.write(element.linkedName); } // not TypeParameterType or Void or Union type if (isParameterizedType) { if (typeArguments.every((t) => t.linkedName == 'dynamic')) { _linkedName = buf.toString(); return _linkedName; } if (typeArguments.isNotEmpty) { buf.write('&lt;'); buf.writeAll(typeArguments.map((t) => t.linkedName), ', '); buf.write('&gt;'); } } _linkedName = buf.toString(); return _linkedName; } String get name => _type.name; ModelElement get returnElement { Element e = _returnTypeCore.element; if (e == null) { return null; } Library lib = element.package.findLibraryFor(e); if (lib == null) { lib = new Library(e.library, element.package); } return (new ModelElement.from(e, lib)); } List<ElementType> get typeArguments { if (_type is FunctionType) { return (_type as FunctionType) .typeFormals .map((f) => _getElementTypeFrom(f.type)) .toList(); } else { return (_type as ParameterizedType) .typeArguments .map((f) => _getElementTypeFrom(f)) .toList(); } } ElementType get _returnType { var rt = _returnTypeCore; Library lib = element.package.findLibraryFor(rt.element); if (lib == null) { lib = new Library(rt.element.library, element.package); } return new ElementType(rt, new ModelElement.from(rt.element, lib)); } DartType get _returnTypeCore => (_type as FunctionType).returnType; String get _returnTypeName => _returnTypeCore.name; String createLinkedReturnTypeName() { if (_returnTypeCore.element == null || _returnTypeCore.element.library == null) { if (_returnTypeName != null) { if (_returnTypeName == 'dynamic' && element.isAsynchronous) { // TODO(keertip): for SDK docs it should be a link return 'Future'; } return _returnTypeName; } else { return ''; } } else { return _returnType.linkedName; } } String toString() => "$_type"; ElementType _getElementTypeFrom(DartType f) { Library lib; // can happen if element is dynamic lib = element.package.findLibraryFor(f.element); if (lib == null && f.element.library != null) { lib = new Library(f.element.library, element.package); } return new ElementType(f, new ModelElement.from(f.element, lib)); } }
27.473684
77
0.644226
f27fff3d566d2e4d25a68853308c4733995e4f7a
6,833
swift
Swift
XCode/GordianServer-macOS/View Controllers/QRDisplayer.swift
henkvancann/GordianServer-macOS
e6f44db71b1fd812c94b3fe1b99551d8afcbb986
[ "BSD-2-Clause-Patent" ]
null
null
null
XCode/GordianServer-macOS/View Controllers/QRDisplayer.swift
henkvancann/GordianServer-macOS
e6f44db71b1fd812c94b3fe1b99551d8afcbb986
[ "BSD-2-Clause-Patent" ]
null
null
null
XCode/GordianServer-macOS/View Controllers/QRDisplayer.swift
henkvancann/GordianServer-macOS
e6f44db71b1fd812c94b3fe1b99551d8afcbb986
[ "BSD-2-Clause-Patent" ]
null
null
null
// // QRDisplayer.swift // StandUp // // Created by Peter on 07/10/19. // Copyright © 2019 Blockchain Commons, LLC // import Cocoa class QRDisplayer: NSViewController { var window: NSWindow? var rpcpassword = "" var rpcuser = "" var rpcport = "" var torHostname = "" var nodeLabel = "" var network = "" var httpPass = "" @IBOutlet var imageView: NSImageView! @IBOutlet var spinner: NSProgressIndicator! @IBOutlet var spinnerDescription: NSTextField! override func viewDidLoad() { super.viewDidLoad() spinner.alphaValue = 0 spinnerDescription.alphaValue = 0 getValues() setQR() } override func viewDidAppear() { window = self.view.window! self.view.window?.title = "\(network)" } private func showSpinner() { DispatchQueue.main.async { [unowned vc = self] in vc.spinner.startAnimation(vc) vc.spinner.alphaValue = 1 vc.spinnerDescription.alphaValue = 1 } } private func hideSpinner() { DispatchQueue.main.async { [unowned vc = self] in vc.spinner.stopAnimation(vc) vc.spinner.alphaValue = 0 vc.spinnerDescription.alphaValue = 0 } } private func setQR() { var url = "btcstandup://\(rpcuser):\(rpcpassword)@\(torHostname):\(rpcport)/?label=\(nodeLabel)%20-%20\(network)" if network == "lightning" { url = "clightning-rpc://lightning:\(httpPass)@\(torHostname):1312/?label=Lightning" } imageView.frame = CGRect(x: 30, y: 30, width: 100, height: 100) imageView.image = getQRCode(textInput: url) } private func getValues() { let ud = UserDefaults.standard nodeLabel = ud.object(forKey: "nodeLabel") as? String ?? "StandUp%20Node" if nodeLabel.contains(" ") { nodeLabel = nodeLabel.replacingOccurrences(of: " ", with: "%20") } } private func getQRCode(textInput: String) -> NSImage { let data = textInput.data(using: .ascii) let filter = CIFilter(name: "CIQRCodeGenerator") filter!.setValue(data, forKey: "inputMessage") let transform = CGAffineTransform(scaleX: 10, y: 10) let output = filter?.outputImage?.transformed(by: transform) let colorParameters = [ "inputColor0": CIColor(color: NSColor.black), // Foreground "inputColor1": CIColor(color: NSColor.white) // Background ] let colored = (output!.applyingFilter("CIFalseColor", parameters: colorParameters as [String : Any])) let rep = NSCIImageRep(ciImage: colored) let nsImage = NSImage(size: rep.size) nsImage.addRepresentation(rep) return nsImage } @IBAction func refreshHS(_ sender: Any) { actionAlert(message: "Refresh \(network) hidden service?", info: "This refreshes your hidden service so that any clients that were connected to your node will no longer be able to connect, it's a good idea to do this if for some reason you think someone may have access to your node if for example your phone was lost or stolen.") { [unowned vc = self] (response) in if response { vc.spinnerDescription.stringValue = "refreshing..." vc.showSpinner() vc.refreshHS { vc.getHostname() } } } } private func refreshHS(completion: @escaping () -> Void) { DispatchQueue.main.async { [unowned vc = self] in var script:SCRIPT! switch vc.rpcport { case "1309": script = .refreshMainHS case "1310": script = .refreshTestHS case "1311": script = .refreshRegHS default: break } guard let path = Bundle.main.path(forResource: script.rawValue, ofType: "command") else { return } let stdOut = Pipe() let task = Process() task.launchPath = path task.standardOutput = stdOut task.launch() task.waitUntilExit() let data = stdOut.fileHandleForReading.readDataToEndOfFile() var result = "" if let output = String(data: data, encoding: .utf8) { #if DEBUG print("output: \(output)") #endif result += output vc.setLog(content: result) completion() } } } private func getHostname() { DispatchQueue.main.async { [unowned vc = self] in guard let path = Bundle.main.path(forResource: SCRIPT.getTorHostname.rawValue, ofType: "command") else { return } let stdOut = Pipe() let task = Process() task.launchPath = path task.standardOutput = stdOut task.launch() task.waitUntilExit() let data = stdOut.fileHandleForReading.readDataToEndOfFile() if let output = String(data: data, encoding: .utf8) { #if DEBUG print("output: \(output)") #endif let hostnames = output.split(separator: "\n") if hostnames.count == 3 { switch vc.rpcport { case "1309": vc.torHostname = "\(hostnames[0])" case "1310": vc.torHostname = "\(hostnames[1])" case "1311": vc.torHostname = "\(hostnames[2])" default: break } } vc.updateImage() } } } private func updateImage() { DispatchQueue.main.async { [unowned vc = self] in vc.hideSpinner() let url = "btcstandup://\(vc.rpcuser):\(vc.rpcpassword)@\(vc.torHostname):\(vc.rpcport)/?label=\(vc.nodeLabel)%20-%20\(vc.network)" let newImage = vc.getQRCode(textInput: url) let transition = CATransition() //create transition transition.duration = 0.75 //set duration time in seconds transition.type = .fade //animation type transition.timingFunction = CAMediaTimingFunction(name: CAMediaTimingFunctionName.easeInEaseOut) vc.imageView.layer?.add(transition, forKey: nil) //add animation to your imageView's layer vc.imageView.image = newImage //set the image } } private func setLog(content: String) { Log.writeToLog(content: content) } }
36.153439
374
0.548515
290ba503318832f8317ebd8aef0fd14167794f2e
27,358
py
Python
server/api/run.py
lab-grid/labflow
967c0ac041e2b1000a2624fc3adf1b27fce135c9
[ "MIT" ]
4
2020-10-20T00:23:28.000Z
2021-09-14T10:31:02.000Z
server/api/run.py
lab-grid/flow
967c0ac041e2b1000a2624fc3adf1b27fce135c9
[ "MIT" ]
104
2020-10-17T22:41:18.000Z
2021-04-13T18:52:58.000Z
server/api/run.py
lab-grid/labflow
967c0ac041e2b1000a2624fc3adf1b27fce135c9
[ "MIT" ]
2
2020-10-17T21:27:52.000Z
2021-01-10T08:02:47.000Z
import csv import io import casbin import jsonpatch import re import json import logging from functools import reduce, wraps from typing import List, Optional, Any, Tuple, Union from fastapi import Depends, HTTPException, File, UploadFile, Request, Response from fastapi.responses import StreamingResponse from fastapi_utils.timing import add_timing_middleware, record_timing from server import Auth0ClaimsPatched from sqlalchemy.orm import Session from sqlalchemy.orm.session import make_transient from server import app, get_db, get_current_user from settings import settings from authorization import check_access, add_policy, delete_policy, get_enforcer, get_policies, get_roles from database import filter_by_plate_label, filter_by_reagent_label, filter_by_sample_label, versioned_row_to_dict, json_row_to_dict, strip_metadata, Run, RunVersion, Protocol, run_to_sample, Sample, SampleVersion, Attachment from models import AttachmentModel, SampleResult, SampleResults, Policy, RunModel, RunsModel, SuccessResponse, success from pydantic_jsonpatch.jsonpatch import JSONPatch from pydantic import BaseModel from api.utils import change_allowed, add_owner, add_updator, paginatify from crud.run import crud_get_runs, crud_get_run, crud_get_run_samples, crud_get_run_sample logger = logging.getLogger(__name__) def run_to_dict(run, run_version, include_large_fields=True): run_dict = versioned_row_to_dict(run, run_version, include_large_fields) run_dict['protocol'] = versioned_row_to_dict(run.protocol_version.protocol, run.protocol_version, include_large_fields) return run_dict def extract_protocol_id(run_dict): if 'protocol' in run_dict and 'id' in run_dict['protocol']: return int(run_dict['protocol']['id']) if 'protocol_id' in run_dict: return int(run_dict['protocol_id']) return None def get_samples(run_version, protocol_version): sample_ids = set() samples = [] markers = {} results = {} signers = [] witnesses = [] lots = [] if not run_version.data['sections']: return samples for section in run_version.data['sections']: if 'signature' in section: signers.append(section['signature']) if 'witness' in section: witnesses.append(section['witness']) if 'blocks' not in section: continue for block in section['blocks']: if 'plateLot' in block: lots.append(block['plateLot']) if block['type'] == 'plate-sampler' and 'plates' in block and block['plates'] is not None: for plate_mapping in block['plates']: if plate_mapping is None: continue plate_id = plate_mapping.get('label') if 'coordinates' in plate_mapping: for plate_sample in plate_mapping['coordinates']: if not plate_sample or 'sampleLabel' not in plate_sample: continue if f"{plate_id}-{plate_sample['sampleLabel']}" in sample_ids: logger.warn(f"Skipping duplicate sample: {json.dumps(plate_sample)}") continue sample_ids.add(f"{plate_id}-{plate_sample['sampleLabel']}") sample = Sample( sample_id=f"{plate_sample['sampleLabel']}", plate_id=plate_id, ) sample_version = SampleVersion( data={ 'plateRow': plate_sample['row'], 'plateCol': plate_sample['col'], 'plateIndex': plate_sample['plateIndex'], }, sample=sample, server_version=settings.server_version, ) sample.run_version = run_version sample.protocol_version_id = run_version.run.protocol_version_id sample.current = sample_version samples.append(sample) if block['type'] == 'end-plate-sequencer' and 'plateSequencingResults' in block and block['plateSequencingResults'] is not None: for result in block['plateSequencingResults']: results[f"{result['marker1']}-{result['marker2']}"] = result if protocol_version.data['sections']: for section in protocol_version.data['sections']: if 'blocks' not in section: continue for block in section['blocks']: if block['type'] == 'end-plate-sequencer' and 'plateMarkers' in block and block['plateMarkers'] is not None: for marker in block['plateMarkers']: markers[f"{marker['plateIndex']}-{marker['plateRow']}-{marker['plateColumn']}"] = marker logger.info(f"Found {len(samples)} samples, {len(markers)} markers, {len(results)} results") for sample in samples: sample.current.data['signers'] = signers sample.current.data['witnesses'] = witnesses sample.current.data['plateLots'] = lots marker = markers.get(f"{sample.current.data['plateIndex']}-{sample.current.data['plateRow']}-{sample.current.data['plateCol']}", None) if not marker: continue sample.current.data['marker1'] = marker['marker1'] sample.current.data['marker2'] = marker['marker2'] result = results.get(f"{marker['marker1']}-{marker['marker2']}", None) if not result: continue if 'classification' in result: sample.current.data['result'] = result['classification'] return samples def all_samples(db: Session, run, include_archived=False): query = db.query(Sample)\ .filter(Sample.run_version_id == run.version_id) if not include_archived: query = query\ .filter(Sample.is_deleted != True) return query def clone_model(db: Session, model, **kwargs): db.expunge(model) make_transient(model) for (field, value) in kwargs.items(): setattr(model, field, value) return model @app.get('/run', tags=['runs'], response_model=RunsModel, response_model_exclude_none=True) async def get_runs( protocol: Optional[int] = None, plate: Optional[str] = None, reagent: Optional[str] = None, sample: Optional[str] = None, creator: Optional[str] = None, archived: Optional[bool] = None, page: Optional[int] = None, per_page: Optional[int] = None, enforcer: casbin.Enforcer = Depends(get_enforcer), db: Session = Depends(get_db), current_user: Auth0ClaimsPatched = Depends(get_current_user) ): return crud_get_runs( item_to_dict=lambda run: run_to_dict(run, run.current, include_large_fields=False), enforcer=enforcer, db=db, current_user=current_user, protocol=protocol, plate=plate, reagent=reagent, sample=sample, creator=creator, archived=archived, page=page, per_page=per_page, ) @app.post('/run', tags=['runs'], response_model=RunModel, response_model_exclude_none=True) async def create_run(run: RunModel, enforcer: casbin.Enforcer = Depends(get_enforcer), db: Session = Depends(get_db), current_user: Auth0ClaimsPatched = Depends(get_current_user)): run_dict = run.dict() protocol_id = extract_protocol_id(run_dict) run_dict.pop('protocol', None) if not protocol_id: raise HTTPException(status_code=400, detail='Invalid Protocol ID') protocol = db.query(Protocol).get(protocol_id) if not protocol: raise HTTPException(status_code=400, detail='Invalid Protocol (Not Found)') new_run = Run() new_run_version = RunVersion(data=strip_metadata(run_dict), server_version=settings.server_version) new_run_version.run = new_run new_run.current = new_run_version new_run.protocol_version_id = protocol.version_id add_owner(new_run, current_user.username) db.add_all([new_run, new_run_version]) samples = get_samples(new_run_version, protocol.current) if samples: for sample in samples: db.merge(sample) db.commit() add_policy(enforcer, user=current_user.username, path=f"/run/{str(new_run.id)}", method="GET") add_policy(enforcer, user=current_user.username, path=f"/run/{str(new_run.id)}", method="PUT") add_policy(enforcer, user=current_user.username, path=f"/run/{str(new_run.id)}", method="DELETE") return run_to_dict(new_run, new_run_version) @app.get('/run/{run_id}', tags=['runs'], response_model=RunModel, response_model_exclude_none=True) async def get_run(run_id: int, version_id: Optional[int] = None, enforcer: casbin.Enforcer = Depends(get_enforcer), db: Session = Depends(get_db), current_user: Auth0ClaimsPatched = Depends(get_current_user)): return crud_get_run( item_to_dict=lambda run: run_to_dict(run, run.current), enforcer=enforcer, db=db, current_user=current_user, run_id=run_id, version_id=version_id, ) @app.put('/run/{run_id}', tags=['runs'], response_model=RunModel, response_model_exclude_none=True) async def update_run(run_id: int, run: RunModel, enforcer: casbin.Enforcer = Depends(get_enforcer), db: Session = Depends(get_db), current_user: Auth0ClaimsPatched = Depends(get_current_user)): if not check_access(enforcer, user=current_user.username, path=f"/run/{str(run_id)}", method="PUT"): raise HTTPException(status_code=403, detail='Insufficient Permissions') run_dict = run.dict() # This field shouldn't be updated by users. run_dict.pop('protocol', None) new_run = db.query(Run).get(run_id) if not new_run or new_run.is_deleted: raise HTTPException(status_code=404, detail='Run Not Found') if not change_allowed(run_to_dict(new_run, new_run.current), run_dict): raise HTTPException(status_code=403, detail='Insufficient Permissions') new_run_version = RunVersion(data=strip_metadata(run_dict), server_version=settings.server_version) new_run_version.run = new_run add_updator(new_run_version, current_user.username) new_run.current = new_run_version db.add(new_run_version) samples = get_samples(new_run_version, new_run.protocol_version) if samples: for sample in samples: db.merge(sample) db.commit() return run_to_dict(new_run, new_run.current) @app.patch('/run/{run_id}', tags=['runs'], response_model=RunModel, response_model_exclude_none=True) async def patch_run(request: Request, run_id: int, patch: list, enforcer: casbin.Enforcer = Depends(get_enforcer), db: Session = Depends(get_db), current_user: Auth0ClaimsPatched = Depends(get_current_user)): if not check_access(enforcer, user=current_user.username, path=f"/run/{str(run_id)}", method="PUT"): raise HTTPException(status_code=403, detail='Insufficient Permissions') new_run = db.query(Run).get(run_id) original_run_version = new_run.current if not new_run or new_run.is_deleted: raise HTTPException(status_code=404, detail='Run Not Found') record_timing(request, note=f"Fetched run {run_id}") run_dict = versioned_row_to_dict(new_run, new_run.current) run_dict.pop('protocol', None) json_patch = jsonpatch.JsonPatch(patch) run_dict.pop('protocol', None) run_dict = json_patch.apply(run_dict) if not change_allowed(run_to_dict(new_run, new_run.current), run_dict): raise HTTPException(status_code=403, detail='Insufficient Permissions') new_run_version = RunVersion(data=strip_metadata(run_dict), server_version=settings.server_version) new_run_version.run = new_run add_updator(new_run_version, current_user.username) original_run_version = new_run.current new_run.current = new_run_version db.add(new_run_version) db.commit() record_timing(request, note=f"Saved changes to run {run_id}") samples_dirty = False for operation in patch: operation_path = operation.get('path', '') # Check for changes to the path: /sections/*/blocks/*/plates if re.search("^/(sections/([^/]+/(blocks/([^/]+/(plates(/.*)?)?)?)?)?)?$", operation_path): samples_dirty = True break # Check for changes to the path: /sections/*/blocks/*/plateSequencingResults if re.search("^/(sections/([^/]+/(blocks/([^/]+/(plateSequencingResults(/.*)?)?)?)?)?)?$", operation_path): samples_dirty = True break # Check for changes to the path: /protocol/sections/*/blocks/*/plateMarkers if re.search("^/(protocol/(sections/([^/]+/(blocks/([^/]+/(plateMarkers(/.*)?)?)?)?)?)?)?$", operation_path): samples_dirty = True break if samples_dirty: logger.info("======================================") logger.info(f"Regenerating samples for run_version: ({new_run.id}, {new_run_version.id})") samples = get_samples(new_run_version, new_run.protocol_version) record_timing(request, note=f"Regenerated run {new_run.id} samples (len: {len(samples)})") if samples: for sample in samples: db.merge(sample) logger.info(f"Generated {len(samples)} samples for run_version: ({new_run.id}, {new_run_version.id})") logger.info("======================================") record_timing(request, note=f"Saved {len(samples)} regenerated samples to run {new_run.id}") else: logger.info("======================================") logger.info(f"Using old samples for run_version: ({new_run.id}, {new_run_version.id})") samples = db.query(Sample)\ .filter(Sample.run_version_id == original_run_version.id)\ .distinct() sample_count = 0 for sample in samples: new_sample_version = clone_model(db, sample.current, run_version_id=new_run_version.id) new_sample = clone_model(db, sample, current=new_sample_version, run_version_id=new_run_version.id) db.merge(new_sample) sample_count += 1 logger.info(f"Attached {sample_count} existing samples to run_version: ({new_run.id}, {new_run_version.id})") logger.info("======================================") record_timing(request, note=f"Attached {sample_count} existing samples to run {new_run.id}") db.commit() return run_to_dict(new_run, new_run.current) @app.delete('/run/{run_id}', tags=['runs'], response_model=SuccessResponse, response_model_exclude_none=True) async def delete_run(run_id: int, purge: bool = False, enforcer: casbin.Enforcer = Depends(get_enforcer), db: Session = Depends(get_db), current_user: Auth0ClaimsPatched = Depends(get_current_user)): if not check_access(enforcer, user=current_user.username, path=f"/run/{str(run_id)}", method="DELETE"): raise HTTPException(status_code=403, detail='Insufficient Permissions') run = db.query(Run).get(run_id) if not run or run.is_deleted: raise HTTPException(status_code=404, detail='Run Not Found') if purge: db.delete(run) else: run.is_deleted = True # TODO: Mark all samples as deleted/archived? db.commit() delete_policy(enforcer, path=f"/run/{str(run.id)}") return success # Permissions ----------------------------------------------------------------- @app.get('/run/{run_id}/permission', tags=['runs'], response_model=List[Policy], response_model_exclude_none=True) async def get_permissions(run_id: int, enforcer: casbin.Enforcer = Depends(get_enforcer), current_user: Auth0ClaimsPatched = Depends(get_current_user)): if not check_access(enforcer, user=current_user.username, path=f"/run/{str(run_id)}", method="GET"): raise HTTPException(status_code=403, detail='Insufficient Permissions') return get_policies(enforcer, path=f"/run/{run_id}") @app.post('/run/{run_id}/permission/{method}/{user_id}', tags=['protocols'], response_model=Policy, response_model_exclude_none=True) async def create_permission(run_id: int, method: str, user_id: str, enforcer: casbin.Enforcer = Depends(get_enforcer), current_user: Auth0ClaimsPatched = Depends(get_current_user)): if not check_access(enforcer, user=current_user.username, path=f"/run/{str(run_id)}", method="PUT"): raise HTTPException(status_code=403, detail='Insufficient Permissions') add_policy(enforcer, user=user_id, path=f"/run/{run_id}", method=method) return success @app.delete('/run/{run_id}/permission/{method}/{user_id}', tags=['protocols'], response_model=SuccessResponse, response_model_exclude_none=True) async def delete_permission(run_id: int, method: str, user_id: str, enforcer: casbin.Enforcer = Depends(get_enforcer), current_user: Auth0ClaimsPatched = Depends(get_current_user)): if not check_access(enforcer, user=current_user.username, path=f"/run/{str(run_id)}", method="PUT"): raise HTTPException(status_code=403, detail='Insufficient Permissions') delete_policy(enforcer, user=user_id, path=f"/run/{run_id}", method=method) return success # Samples --------------------------------------------------------------------- @app.get('/run/{run_id}/sample', tags=['runs'], response_model=SampleResults, response_model_exclude_none=True) async def get_run_samples( run_id: Optional[int] = None, protocol: Optional[int] = None, plate: Optional[str] = None, reagent: Optional[str] = None, creator: Optional[str] = None, archived: Optional[bool] = None, page: Optional[int] = None, per_page: Optional[int] = None, enforcer: casbin.Enforcer = Depends(get_enforcer), db: Session = Depends(get_db), current_user: Auth0ClaimsPatched = Depends(get_current_user) ): return crud_get_run_samples( item_to_dict=lambda sample: run_to_sample(sample), enforcer=enforcer, db=db, current_user=current_user, run_id=run_id, protocol=protocol, plate=plate, reagent=reagent, creator=creator, archived=archived, page=page, per_page=per_page, ) def list_or_dict_items(collection: Union[list, dict]): if type(collection) == list: for i, value in enumerate(collection): yield (f"{i}", value) elif type(collection) == dict: for key, value in collection.items(): yield (key, value) else: raise TypeError(f"Expected a list or a dict type. Found: {type(collection)}") def flatten_list_or_dict(nested: Union[list, dict], regex: Optional[str] = None, current_path: str = "") -> Tuple[dict]: result = {} if regex is None or re.search(regex, current_path) is None: for key, value in list_or_dict_items(nested): sub_path = f"{key}" if current_path == "" else f"{current_path}__{key}" if type(value) == list or type(value) == dict: result.update(flatten_list_or_dict(value, regex, sub_path)) else: result[sub_path] = value return result @app.get('/run/{run_id}/sample.csv', tags=['runs'], response_model_exclude_none=True) async def export_run_samples_csv( run_id: Optional[int] = None, protocol: Optional[int] = None, plate: Optional[str] = None, reagent: Optional[str] = None, creator: Optional[str] = None, archived: Optional[bool] = None, enforcer: casbin.Enforcer = Depends(get_enforcer), db: Session = Depends(get_db), current_user: Auth0ClaimsPatched = Depends(get_current_user) ): if not check_access(enforcer, user=current_user.username, path=f"/run/{str(run_id)}", method="GET"): raise HTTPException(status_code=403, detail='Insufficient Permissions') run = db.query(Run).get(run_id) if not run or run.is_deleted: raise HTTPException(status_code=404, detail='Run Not Found') samples = crud_get_run_samples( item_to_dict=lambda sample: run_to_sample(sample), enforcer=enforcer, db=db, current_user=current_user, run_id=run_id, protocol=protocol, plate=plate, reagent=reagent, creator=creator, archived=archived, ) # Process each sample and add in flattened run data (with a filter). flattened_run = flatten_list_or_dict(run_to_dict(run, run.current, False), '(attachments|type|definition|protocol|plates|plateSequencingResults|plateMarkers)') flattened_samples = [] sample_headers = set() for sample in samples['samples']: flattened_sample = {**flattened_run, **flatten_list_or_dict(sample)} flattened_samples.append(flattened_sample) sample_headers.update(flattened_sample.keys()) sample_headers = list(sample_headers) sample_headers.sort() csvfile = io.StringIO() writer = csv.writer(csvfile, quoting=csv.QUOTE_NONNUMERIC) writer.writerow(sample_headers) for flattened_sample in flattened_samples: writer.writerow([flattened_sample.get(header, '') for header in sample_headers]) return Response(csvfile.getvalue(), media_type='text/csv') @app.get('/run/{run_id}/sample/{sample_id}', tags=['runs'], response_model=SampleResults, response_model_exclude_none=True) async def get_run_sample(run_id: int, sample_id: str, version_id: Optional[int] = None, enforcer: casbin.Enforcer = Depends(get_enforcer), db: Session = Depends(get_db), current_user: Auth0ClaimsPatched = Depends(get_current_user)): return crud_get_run_sample( item_to_dict=lambda sample: run_to_sample(sample), enforcer=enforcer, db=db, current_user=current_user, run_id=run_id, sample_id=sample_id, version_id=version_id, ) @app.put('/run/{run_id}/sample/{sample_id}', tags=['runs'], response_model=SampleResults, response_model_exclude_none=True) async def update_run_sample(run_id: int, sample_id: str, sample: SampleResult, enforcer: casbin.Enforcer = Depends(get_enforcer), db: Session = Depends(get_db), current_user: Auth0ClaimsPatched = Depends(get_current_user)): if not check_access(enforcer, user=current_user.username, path=f"/run/{str(run_id)}", method="PUT"): raise HTTPException(status_code=403, detail='Insufficient Permissions') run = db.query(Run).get(run_id) if not run or run.is_deleted: raise HTTPException(status_code=404, detail='Run Not Found') sample_dict = sample.dict() new_sample = db.query(Sample).filter(Sample.sample_version_id == new_sample.version_id).filter(Sample.sample_id == sample_id).first() if not new_sample or new_sample.is_deleted: raise HTTPException(status_code=404, detail='Sample Not Found') if not change_allowed(run_to_dict(run, run.current), {}): raise HTTPException(status_code=403, detail='Insufficient Permissions') new_sample_version = SampleVersion(data=strip_metadata(sample_dict), server_version=settings.server_version) new_sample_version.sample = new_sample add_updator(new_sample_version, current_user.username) new_sample.current = new_sample_version db.add(new_sample_version) db.commit() return run_to_sample(new_sample) # Attachments ----------------------------------------------------------------- @app.get('/run/{run_id}/attachment', tags=['runs'], response_model=List[AttachmentModel], response_model_exclude_none=True) async def get_run_attachments(run_id: int, enforcer: casbin.Enforcer = Depends(get_enforcer), db: Session = Depends(get_db), current_user: Auth0ClaimsPatched = Depends(get_current_user)): if not check_access(enforcer, user=current_user.username, path=f"/run/{str(run_id)}", method="GET"): raise HTTPException(status_code=403, detail='Insufficient Permissions') run = db.query(Run).get(run_id) if not run or run.is_deleted: raise HTTPException(status_code=404, detail='Run Not Found') return [ AttachmentModel(id=attachment.id, name=attachment.name) for attachment in run.attachments if check_access(enforcer, user=current_user.username, path=f"/run/{str(run.id)}", method="GET") and attachment ] @app.post('/run/{run_id}/attachment', tags=['runs'], response_model=AttachmentModel, response_model_exclude_none=True) async def create_run_attachment(run_id: int, file: UploadFile = File(...), enforcer: casbin.Enforcer = Depends(get_enforcer), db: Session = Depends(get_db), current_user: Auth0ClaimsPatched = Depends(get_current_user)): if not check_access(enforcer, user=current_user.username, path=f"/run/{str(run_id)}", method="GET"): raise HTTPException(status_code=403, detail='Insufficient Permissions') run = db.query(Run).get(run_id) if not run or run.is_deleted: raise HTTPException(status_code=404, detail='Run Not Found') attachment = Attachment( name=file.filename, mimetype=file.content_type, data=await file.read(), ) db.add(attachment) db.commit() return AttachmentModel(id=attachment.id, name=attachment.name) @app.get('/run/{run_id}/attachment/{attachment_id}', tags=['runs'], response_model_exclude_none=True) async def get_run_attachment(run_id: int, attachment_id: int, enforcer: casbin.Enforcer = Depends(get_enforcer), db: Session = Depends(get_db), current_user: Auth0ClaimsPatched = Depends(get_current_user)): if not check_access(enforcer, user=current_user.username, path=f"/run/{str(run_id)}", method="GET"): raise HTTPException(status_code=403, detail='Insufficient Permissions') run = db.query(Run).get(run_id) if not run or run.is_deleted: raise HTTPException(status_code=404, detail='Run Not Found') attachment = db.query(Attachment).get(attachment_id) if not attachment or attachment.is_deleted: raise HTTPException(status_code=404, detail='Attachment Not Found') return StreamingResponse(io.BytesIO(attachment.data), media_type=attachment.mimetype if attachment.mimetype else 'application/octet-stream') @app.delete('/run/{run_id}/attachment/{attachment_id}', tags=['runs'], response_model=SuccessResponse, response_model_exclude_none=True) async def delete_run_attachment(run_id: int, attachment_id: int, purge: bool = False, enforcer: casbin.Enforcer = Depends(get_enforcer), db: Session = Depends(get_db), current_user: Auth0ClaimsPatched = Depends(get_current_user)): if not check_access(enforcer, user=current_user.username, path=f"/run/{str(run_id)}", method="GET"): raise HTTPException(status_code=403, detail='Insufficient Permissions') run = db.query(Run).get(run_id) if not run or run.is_deleted: raise HTTPException(status_code=404, detail='Run Not Found') attachment = db.query(Attachment).get(attachment_id) if not attachment or attachment.is_deleted: raise HTTPException(status_code=404, detail='Attachment Not Found') if purge: db.delete(attachment) else: attachment.is_deleted = True db.commit() return success
46.765812
232
0.676694
c1c751a2c8ca0f9a892589d1d04527ecb45238e2
5,605
swift
Swift
MyRide/UI/Maps/MapsViewController.swift
sicardf/MyRide
ec798e3a17d463bd4abaec090c0abd392ef9814d
[ "MIT" ]
null
null
null
MyRide/UI/Maps/MapsViewController.swift
sicardf/MyRide
ec798e3a17d463bd4abaec090c0abd392ef9814d
[ "MIT" ]
null
null
null
MyRide/UI/Maps/MapsViewController.swift
sicardf/MyRide
ec798e3a17d463bd4abaec090c0abd392ef9814d
[ "MIT" ]
null
null
null
// // MapsViewController.swift // MyRide // // Created by Flavien SICARD on 24/05/2017. // Copyright © 2017 sicardf. All rights reserved. // import UIKit import Mapbox import SwiftyJSON import CoreData class MapsViewController: UIViewController, SearchAddressDelegate, MapDelegate { // private var mapboxView: MapboxView! private var mapView:MapView! private var searchAddressView: SearchAddressView! private let apiGoogle = APIGoogle() private let sideMenuController = SideMenuViewController() var history: [NSManagedObject] = [] override func viewDidLoad() { super.viewDidLoad() setup() } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() } private func setup() { mapView = MapboxView(frame: view.frame) //MapboxView(frame: view.frame) - MapKitView(frame: view.frame) mapView.delegate = self view.addSubview(mapView) searchAddressView = SearchAddressView(frame: CGRect(x: 20, y: 30, width: self.view.frame.size.width - 40, height: 250)) searchAddressView.delegate = self view.addSubview(searchAddressView) addSideMenuController() } private func addSideMenuController() { addChildViewController(self.sideMenuController) self.sideMenuController.view.frame = CGRect(x: -self.view.frame.size.width, y: 0, width: self.view.frame.size.width, height: self.view.frame.size.height) view.addSubview(self.sideMenuController.view) self.sideMenuController.didMove(toParentViewController: self) self.sideMenuController.mapsViewController = self } private func alertView(message: String) { let alert = UIAlertController(title: "Error", message: message, preferredStyle: UIAlertControllerStyle.alert) alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.default, handler: nil)) self.present(alert, animated: true, completion: nil) } private func saveHistory(address: String, lat: String, lng: String) { guard let appDelegate = UIApplication.shared.delegate as? AppDelegate else { return } let managedContext = appDelegate.managedObjectContext let entity = NSEntityDescription.entity(forEntityName: "History", in: managedContext)! let ride = NSManagedObject(entity: entity, insertInto: managedContext) ride.setValue(address, forKeyPath: "address") ride.setValue(lat, forKeyPath: "lat") ride.setValue(lng, forKeyPath: "lng") let fetchRequest = NSFetchRequest<NSManagedObject>(entityName: "History") do { history = try managedContext.fetch(fetchRequest) if history.count == 16 { appDelegate.managedObjectContext.delete(history[0]) } try managedContext.save() history.append(ride) } catch let error as NSError { print("Could not fetch. \(error), \(error.userInfo)") } } // MARK : SearchAddressDelegate func editTextField(address: String) { apiGoogle.getPlaceAutocomplete(address: address) { (success, data, error) in if success { self.searchAddressView.updateAutoCompletion(json: JSON(data!)) } else { self.view.endEditing(true) self.alertView(message: error!.localizedDescription as String) } } } func getAddressMap(address: String) { apiGoogle.getGeocodeAddress(address: address) { (success, data, error) in self.view.endEditing(true) if success { let json = JSON(data!) let lat = json["results"][0]["geometry"]["location"]["lat"].doubleValue let lng = json["results"][0]["geometry"]["location"]["lng"].doubleValue self.saveHistory(address: address, lat: String(lat), lng: String(lng)) self.mapView.changeCenterCoordinate(coordinate: CLLocationCoordinate2D(latitude: lat, longitude: lng)) self.mapView.displayPin() } else { self.alertView(message: error!.localizedDescription as String) } } } func displayMenu() { self.sideMenuController.displayMenu() } // MARK : MapDelegate func centerCoordinateMapChange(coordinate: CLLocationCoordinate2D) { print("OCUOCUOC") let addressTmp = self.searchAddressView.address self.searchAddressView.address = "Update of location ..." apiGoogle.getGeocodeLatlng(lat: String(coordinate.latitude), lng: String(coordinate.longitude)) { (success, data, error) in if success { let json = JSON(data!) self.searchAddressView.address = json["results"][0]["formatted_address"].stringValue self.saveHistory(address: self.searchAddressView.address, lat: String(coordinate.latitude), lng: String(coordinate.longitude)) } else { self.searchAddressView.address = addressTmp self.alertView(message: error!.localizedDescription as String) } } } func updateLocation(address: String, lat: Double, lng: Double) { searchAddressView.address = address self.mapView.changeCenterCoordinate(coordinate: CLLocationCoordinate2D(latitude: lat, longitude: lng)) self.mapView.displayPin() } }
37.61745
161
0.635861
4aaa27960539b90fb23dcad500d0a7e11b7e88d6
250
cs
C#
LeaderEngine/Data/CharsPair.cs
UserTCQ/LeaderEngine
6d13acb8e77245a70893dea916c726423d5a0088
[ "MIT" ]
3
2022-01-02T07:27:03.000Z
2022-02-15T15:27:54.000Z
LeaderEngine/Data/CharsPair.cs
UserTCQ/LeaderEngine
6d13acb8e77245a70893dea916c726423d5a0088
[ "MIT" ]
null
null
null
LeaderEngine/Data/CharsPair.cs
UserTCQ/LeaderEngine
6d13acb8e77245a70893dea916c726423d5a0088
[ "MIT" ]
1
2021-04-30T15:29:57.000Z
2021-04-30T15:29:57.000Z
namespace LeaderEngine { public struct CharsPair { public char First; public char Second; public CharsPair(char first, char second) { First = first; Second = second; } } }
16.666667
49
0.516
988720b289eaec85102682dd26e92d434e26034d
34,930
html
HTML
src/issues/5/index.html
philipp-spiess/this-week-in-react
a6da2a8ddad201dfaa3073a371b6e3ee3ac4f55b
[ "MIT" ]
22
2018-09-22T10:27:36.000Z
2020-10-05T20:39:19.000Z
src/issues/5/index.html
philipp-spiess/this-week-in-react
a6da2a8ddad201dfaa3073a371b6e3ee3ac4f55b
[ "MIT" ]
19
2018-10-03T19:58:42.000Z
2022-02-17T23:09:36.000Z
src/issues/5/index.html
philipp-spiess/this-week-in-react
a6da2a8ddad201dfaa3073a371b6e3ee3ac4f55b
[ "MIT" ]
7
2018-10-03T20:06:28.000Z
2020-05-28T15:51:28.000Z
<!doctype html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office"> <head> <title> This Week in React – Issue 5 – 19 Oct 2018 </title> <!--[if !mso]><!-- --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!--<![endif]--> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <style type="text/css"> #outlook a { padding:0; } .ReadMsgBody { width:100%; } .ExternalClass { width:100%; } .ExternalClass * { line-height:100%; } body { margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%; } table, td { border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt; } img { border:0;height:auto;line-height:100%; outline:none;text-decoration:none;-ms-interpolation-mode:bicubic; } p { display:block;margin:13px 0; } </style> <!--[if !mso]><!--> <style type="text/css"> @media only screen and (max-width:480px) { @-ms-viewport { width:320px; } @viewport { width:320px; } } </style> <!--<![endif]--> <!--[if mso]> <xml> <o:OfficeDocumentSettings> <o:AllowPNG/> <o:PixelsPerInch>96</o:PixelsPerInch> </o:OfficeDocumentSettings> </xml> <![endif]--> <!--[if lte mso 11]> <style type="text/css"> .outlook-group-fix { width:100% !important; } </style> <![endif]--> <!--[if !mso]><!--> <link href="https://fonts.googleapis.com/css?family=Droid+Sans:300,400,500,700" rel="stylesheet" type="text/css"> <style type="text/css"> @import url(https://fonts.googleapis.com/css?family=Droid+Sans:300,400,500,700); </style> <!--<![endif]--> <style type="text/css"> @media only screen and (min-width:480px) { .mj-column-per-100 { width:100% !important; max-width: 100%; } } </style> <style type="text/css"> </style> <style type="text/css">a { color: #c45000; text-decoration: underline; } @media screen and (max-width: 480px) { .small-padding-mobile>table>tbody>tr>td { padding: 10px 10px !important; } u ~ div { min-width: 100vw; } }</style> </head> <body style="background-color:white;"> <div style="background-color:white;"> <!--[if mso | IE]> <table align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600" > <tr> <td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"> <![endif]--> <div style="background:white;background-color:white;Margin:0px auto;max-width:600px;"> <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background:white;background-color:white;width:100%;"> <tbody> <tr> <td style="direction:ltr;font-size:0px;padding:10px 0;text-align:center;vertical-align:top;"> <!--[if mso | IE]> <table role="presentation" border="0" cellpadding="0" cellspacing="0"> <tr> <td class="small-padding-mobile-outlook" style="vertical-align:top;width:600px;" > <![endif]--> <div class="mj-column-per-100 outlook-group-fix small-padding-mobile" style="font-size:13px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"> <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%"> <tr> <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;"> <div style="font-family:-apple-system,BlinkMacSystemFont,Helvetica,sans-serif;font-size:15px;line-height:150%;text-align:left;color:#5b5b5b;"> <p style="margin: 0;">It's time for another This Week in React ⚛️. Next week, the official React Conf 2018 is happening and we will learn more about the future of React - all of which will of course be covered in this newsletter.</p> </div> </td> </tr> </table> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> </tbody> </table> </div> <!--[if mso | IE]> </td> </tr> </table> <table align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600" > <tr> <td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"> <![endif]--> <div style="background:white;background-color:white;Margin:0px auto;max-width:600px;"> <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background:white;background-color:white;width:100%;"> <tbody> <tr> <td style="direction:ltr;font-size:0px;padding:10px 0;padding-top:0;text-align:center;vertical-align:top;"> <!--[if mso | IE]> <table role="presentation" border="0" cellpadding="0" cellspacing="0"> <tr> <td class="small-padding-mobile-outlook" style="vertical-align:top;width:600px;" > <![endif]--> <div class="mj-column-per-100 outlook-group-fix small-padding-mobile" style="font-size:13px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"> <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%"> <tr> <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;"> <div style="font-family:-apple-system,BlinkMacSystemFont,Helvetica,sans-serif;font-size:15px;line-height:150%;text-align:left;color:#5b5b5b;"> <h2 style="font-size: 20px; margin-top: 10px;">🔥 RFC: React.pure()</h2> <p style="margin: 0;">The Core team filed an RFC for <code style="font-size: 13px; background: #ececec; padding: 2px 5px; color: #5b5b5b; text-shadow: 0 1px rgba(255, 255, 255, .5); border-radius: 4px; font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', 'Droid Sans Mono', 'Source Code Pro', monospace;">React.pure</code> - an API that lets you bail out of updates from a function component, similar to <code style="font-size: 13px; background: #ececec; padding: 2px 5px; color: #5b5b5b; text-shadow: 0 1px rgba(255, 255, 255, .5); border-radius: 4px; font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', 'Droid Sans Mono', 'Source Code Pro', monospace;">React.PureComponent</code> for classes.</p> <table border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%; margin-top: 10px;" width="100%"> <tbody> <tr> <td width="30px" valign="middle"> <a target="_top" href="https://github.com/reactjs/rfcs/pull/63" style="color: #c45000; text-decoration: underline;"> <img src="https://avatars0.githubusercontent.com/u/810438?s=400&v=4" width="30" style="max-width: 100%; border-radius: 30px; margin: 0;"> </a> </td> <td style="line-height:1.3; padding-left: 10px;"> <a target="_top" href="https://github.com/reactjs/rfcs/pull/63" style="color: #c45000; text-decoration: underline;">https://github.com/reactjs/rfcs/pull/63</a> </td> </tr> </tbody> </table> </div> </td> </tr> </table> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> </tbody> </table> </div> <!--[if mso | IE]> </td> </tr> </table> <table align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600" > <tr> <td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"> <![endif]--> <div style="background:white;background-color:white;Margin:0px auto;max-width:600px;"> <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background:white;background-color:white;width:100%;"> <tbody> <tr> <td style="direction:ltr;font-size:0px;padding:10px 0;padding-top:0;text-align:center;vertical-align:top;"> <!--[if mso | IE]> <table role="presentation" border="0" cellpadding="0" cellspacing="0"> <tr> <td class="small-padding-mobile-outlook" style="vertical-align:top;width:600px;" > <![endif]--> <div class="mj-column-per-100 outlook-group-fix small-padding-mobile" style="font-size:13px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"> <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%"> <tr> <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;"> <div style="font-family:-apple-system,BlinkMacSystemFont,Helvetica,sans-serif;font-size:15px;line-height:150%;text-align:left;color:#5b5b5b;"> <h2 style="font-size: 20px; margin-top: 10px;">💥 RFC: React.lazy()</h2> <p style="margin: 0;">To make it easier to code split individual components in React, the new <code style="font-size: 13px; background: #ececec; padding: 2px 5px; color: #5b5b5b; text-shadow: 0 1px rgba(255, 255, 255, .5); border-radius: 4px; font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', 'Droid Sans Mono', 'Source Code Pro', monospace;">React.lazy()</code> API adds first-class support by embracing dynamic imports.</p> <table border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%; margin-top: 10px;" width="100%"> <tbody> <tr> <td width="30px" valign="middle"> <a target="_top" href="https://github.com/reactjs/rfcs/pull/64" style="color: #c45000; text-decoration: underline;"> <img src="https://avatars0.githubusercontent.com/u/810438?s=400&v=4" width="30" style="max-width: 100%; border-radius: 30px; margin: 0;"> </a> </td> <td style="line-height:1.3; padding-left: 10px;"> <a target="_top" href="https://github.com/reactjs/rfcs/pull/64" style="color: #c45000; text-decoration: underline;">https://github.com/reactjs/rfcs/pull/64</a> </td> </tr> </tbody> </table> </div> </td> </tr> </table> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> </tbody> </table> </div> <!--[if mso | IE]> </td> </tr> </table> <table align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600" > <tr> <td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"> <![endif]--> <div style="background:white;background-color:white;Margin:0px auto;max-width:600px;"> <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background:white;background-color:white;width:100%;"> <tbody> <tr> <td style="direction:ltr;font-size:0px;padding:10px 0;padding-top:0;text-align:center;vertical-align:top;"> <!--[if mso | IE]> <table role="presentation" border="0" cellpadding="0" cellspacing="0"> <tr> <td class="small-padding-mobile-outlook" style="vertical-align:top;width:600px;" > <![endif]--> <div class="mj-column-per-100 outlook-group-fix small-padding-mobile" style="font-size:13px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"> <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%"> <tr> <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;"> <div style="font-family:-apple-system,BlinkMacSystemFont,Helvetica,sans-serif;font-size:15px;line-height:150%;text-align:left;color:#5b5b5b;"> <h2 style="font-size: 20px; margin-top: 10px;">🚀 RFC: Static contextType</h2> <p style="margin: 0;">The address some of the problems with render props for the new Context API, the Core team is working on <code style="font-size: 13px; background: #ececec; padding: 2px 5px; color: #5b5b5b; text-shadow: 0 1px rgba(255, 255, 255, .5); border-radius: 4px; font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', 'Droid Sans Mono', 'Source Code Pro', monospace;">static contextType</code> as a new consuming mechanism. You can also look at the <a target="_top" href="https://github.com/reactjs/reactjs.org/pull/1265" style="color: #c45000; text-decoration: underline;">preliminary documentation PR</a>.</p> <table border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%; margin-top: 10px;" width="100%"> <tbody> <tr> <td width="30px" valign="middle"> <a target="_top" href="https://github.com/reactjs/rfcs/pull/65" style="color: #c45000; text-decoration: underline;"> <img src="https://avatars0.githubusercontent.com/u/810438?s=400&v=4" width="30" style="max-width: 100%; border-radius: 30px; margin: 0;"> </a> </td> <td style="line-height:1.3; padding-left: 10px;"> <a target="_top" href="https://github.com/reactjs/rfcs/pull/65" style="color: #c45000; text-decoration: underline;">https://github.com/reactjs/rfcs/pull/65</a> </td> </tr> </tbody> </table> </div> </td> </tr> </table> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> </tbody> </table> </div> <!--[if mso | IE]> </td> </tr> </table> <table align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600" > <tr> <td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"> <![endif]--> <div style="background:white;background-color:white;Margin:0px auto;max-width:600px;"> <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background:white;background-color:white;width:100%;"> <tbody> <tr> <td style="direction:ltr;font-size:0px;padding:10px 0;padding-top:0;text-align:center;vertical-align:top;"> <!--[if mso | IE]> <table role="presentation" border="0" cellpadding="0" cellspacing="0"> <tr> <td class="small-padding-mobile-outlook" style="vertical-align:top;width:600px;" > <![endif]--> <div class="mj-column-per-100 outlook-group-fix small-padding-mobile" style="font-size:13px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"> <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%"> <tr> <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;"> <div style="font-family:-apple-system,BlinkMacSystemFont,Helvetica,sans-serif;font-size:15px;line-height:150%;text-align:left;color:#5b5b5b;"> <h2 style="font-size: 20px; margin-top: 10px;">⚡️ RFC: shouldComponentRemount</h2> <p style="margin: 0;">Alex Krolick (<a target="_top" href="https://github.com/alexkrolick" style="color: #c45000; text-decoration: underline;">alexkrolick</a>) published an RFC for <code style="font-size: 13px; background: #ececec; padding: 2px 5px; color: #5b5b5b; text-shadow: 0 1px rgba(255, 255, 255, .5); border-radius: 4px; font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', 'Droid Sans Mono', 'Source Code Pro', monospace;">shouldComponentRemount</code>, a new lifecycle method to control when React mounts and unmounts a component.</p> <table border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%; margin-top: 10px;" width="100%"> <tbody> <tr> <td width="30px" valign="middle"> <a target="_top" href="https://github.com/reactjs/rfcs/pull/62" style="color: #c45000; text-decoration: underline;"> <img src="https://avatars2.githubusercontent.com/u/1571667?s=400&v=4" width="30" style="max-width: 100%; border-radius: 30px; margin: 0;"> </a> </td> <td style="line-height:1.3; padding-left: 10px;"> <a target="_top" href="https://github.com/reactjs/rfcs/pull/62" style="color: #c45000; text-decoration: underline;">https://github.com/reactjs/rfcs/pull/62</a> </td> </tr> </tbody> </table> </div> </td> </tr> </table> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> </tbody> </table> </div> <!--[if mso | IE]> </td> </tr> </table> <table align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600" > <tr> <td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"> <![endif]--> <div style="background:white;background-color:white;Margin:0px auto;max-width:600px;"> <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background:white;background-color:white;width:100%;"> <tbody> <tr> <td style="direction:ltr;font-size:0px;padding:10px 0;padding-top:0;text-align:center;vertical-align:top;"> <!--[if mso | IE]> <table role="presentation" border="0" cellpadding="0" cellspacing="0"> <tr> <td class="small-padding-mobile-outlook" style="vertical-align:top;width:600px;" > <![endif]--> <div class="mj-column-per-100 outlook-group-fix small-padding-mobile" style="font-size:13px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"> <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%"> <tr> <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;"> <div style="font-family:-apple-system,BlinkMacSystemFont,Helvetica,sans-serif;font-size:15px;line-height:150%;text-align:left;color:#5b5b5b;"> <h2 style="font-size: 20px; margin-top: 10px;">⏱ Rename Priority Levels</h2> <p style="margin: 0;">The Core team also made small changes to some of the API names for the scheduler - one of the building blocks of React’s upcoming concurrent mode. The API is not final and we can expect an RFC soon.</p> <table border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%; margin-top: 10px;" width="100%"> <tbody> <tr> <td width="30px" valign="middle"> <a target="_top" href="https://github.com/facebook/react/pull/13842" style="color: #c45000; text-decoration: underline;"> <img src="https://avatars3.githubusercontent.com/u/3624098?s=400&v=4" width="30" style="max-width: 100%; border-radius: 30px; margin: 0;"> </a> </td> <td style="line-height:1.3; padding-left: 10px;"> <a target="_top" href="https://github.com/facebook/react/pull/13842" style="color: #c45000; text-decoration: underline;">https://github.com/facebook/react/pull/13842</a> </td> </tr> </tbody> </table> </div> </td> </tr> </table> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> </tbody> </table> </div> <!--[if mso | IE]> </td> </tr> </table> <table align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600" > <tr> <td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"> <![endif]--> <div style="background:white;background-color:white;Margin:0px auto;max-width:600px;"> <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background:white;background-color:white;width:100%;"> <tbody> <tr> <td style="direction:ltr;font-size:0px;padding:10px 0;padding-top:0;text-align:center;vertical-align:top;"> <!--[if mso | IE]> <table role="presentation" border="0" cellpadding="0" cellspacing="0"> <tr> <td class="small-padding-mobile-outlook" style="vertical-align:top;width:600px;" > <![endif]--> <div class="mj-column-per-100 outlook-group-fix small-padding-mobile" style="font-size:13px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"> <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%"> <tr> <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;"> <div style="font-family:-apple-system,BlinkMacSystemFont,Helvetica,sans-serif;font-size:15px;line-height:150%;text-align:left;color:#5b5b5b;"> <h2 style="font-size: 20px; margin-top: 10px;">🕵️‍♀️ Deprecate findDOMNode in StrictMode</h2> <p style="margin: 0;">In an attempt to make React applications easier to maintain, the Core team considers deprecating <code style="font-size: 13px; background: #ececec; padding: 2px 5px; color: #5b5b5b; text-shadow: 0 1px rgba(255, 255, 255, .5); border-radius: 4px; font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', 'Droid Sans Mono', 'Source Code Pro', monospace;">findDOMNode</code>. The current API is breaking abstraction levels which leads to refactoring hazard.</p> <table border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%; margin-top: 10px;" width="100%"> <tbody> <tr> <td width="30px" valign="middle"> <a target="_top" href="https://github.com/facebook/react/pull/13841" style="color: #c45000; text-decoration: underline;"> <img src="https://avatars1.githubusercontent.com/u/63648?s=400&v=4" width="30" style="max-width: 100%; border-radius: 30px; margin: 0;"> </a> </td> <td style="line-height:1.3; padding-left: 10px;"> <a target="_top" href="https://github.com/facebook/react/pull/13841" style="color: #c45000; text-decoration: underline;">https://github.com/facebook/react/pull/13841</a> </td> </tr> </tbody> </table> </div> </td> </tr> </table> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> </tbody> </table> </div> <!--[if mso | IE]> </td> </tr> </table> <table align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600" > <tr> <td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"> <![endif]--> <div style="background:white;background-color:white;Margin:0px auto;max-width:600px;"> <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background:white;background-color:white;width:100%;"> <tbody> <tr> <td style="direction:ltr;font-size:0px;padding:10px 0;padding-top:0;text-align:center;vertical-align:top;"> <!--[if mso | IE]> <table role="presentation" border="0" cellpadding="0" cellspacing="0"> <tr> <td class="small-padding-mobile-outlook" style="vertical-align:top;width:600px;" > <![endif]--> <div class="mj-column-per-100 outlook-group-fix small-padding-mobile" style="font-size:13px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"> <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%"> <tr> <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;"> <div style="font-family:-apple-system,BlinkMacSystemFont,Helvetica,sans-serif;font-size:15px;line-height:150%;text-align:left;color:#5b5b5b;"> <h2 style="font-size: 20px; margin-top: 10px;">⏪ Revert: React.pure() Automatically Forwards Ref</h2> <p style="margin: 0;">Last week we were covering a PR that added <code style="font-size: 13px; background: #ececec; padding: 2px 5px; color: #5b5b5b; text-shadow: 0 1px rgba(255, 255, 255, .5); border-radius: 4px; font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', 'Droid Sans Mono', 'Source Code Pro', monospace;">forwardRef</code> behavior to <code style="font-size: 13px; background: #ececec; padding: 2px 5px; color: #5b5b5b; text-shadow: 0 1px rgba(255, 255, 255, .5); border-radius: 4px; font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', 'Droid Sans Mono', 'Source Code Pro', monospace;">React.pure()</code> by default. The PR was since reverted while the Core team is working on the future of ref forwarding.</p> <table border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%; margin-top: 10px;" width="100%"> <tbody> <tr> <td width="30px" valign="middle"> <a target="_top" href="https://github.com/facebook/react/pull/13887" style="color: #c45000; text-decoration: underline;"> <img src="https://avatars1.githubusercontent.com/u/6820?s=400&v=4" width="30" style="max-width: 100%; border-radius: 30px; margin: 0;"> </a> </td> <td style="line-height:1.3; padding-left: 10px;"> <a target="_top" href="https://github.com/facebook/react/pull/13887" style="color: #c45000; text-decoration: underline;">https://github.com/facebook/react/pull/13887</a> </td> </tr> </tbody> </table> </div> </td> </tr> </table> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> </tbody> </table> </div> <!--[if mso | IE]> </td> </tr> </table> <table align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600" > <tr> <td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"> <![endif]--> <div style="background:white;background-color:white;Margin:0px auto;max-width:600px;"> <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background:white;background-color:white;width:100%;"> <tbody> <tr> <td style="direction:ltr;font-size:0px;padding:10px 0;padding-top:0;text-align:center;vertical-align:top;"> <!--[if mso | IE]> <table role="presentation" border="0" cellpadding="0" cellspacing="0"> <tr> <td class="small-padding-mobile-outlook" style="vertical-align:top;width:600px;" > <![endif]--> <div class="mj-column-per-100 outlook-group-fix small-padding-mobile" style="font-size:13px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"> <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%"> <tr> <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;"> <div style="font-family:-apple-system,BlinkMacSystemFont,Helvetica,sans-serif;font-size:15px;line-height:150%;text-align:left;color:#5b5b5b;"> <h2 style="font-size: 20px; margin-top: 10px;">👏 First-Time Contributors</h2> <p style="margin: 0;">New contributors land their first PR in the <a target="_top" href="https://github.com/facebook/react" style="color: #c45000; text-decoration: underline;">react</a> or <a target="_top" href="https://github.com/reactjs/reactjs.org" style="color: #c45000; text-decoration: underline;">reactjs.org</a> repositories every week. Thank you this week to: Alex Wilmer (<a target="_top" href="https://github.com/alex-wilmer" style="color: #c45000; text-decoration: underline;">alex-wilmer</a>), Pablo Javier D. A. (<a target="_top" href="https://github.com/devpda" style="color: #c45000; text-decoration: underline;">devpda</a>), Trivikram Kamat (<a target="_top" href="http://github.com/trivikr" style="color: #c45000; text-decoration: underline;">trivikr</a>), Tyler McGinnis (<a target="_top" href="https://github.com/tylermcginnis" style="color: #c45000; text-decoration: underline;">tylermcginnis</a>), and Vasil Raev (<a target="_top" href="https://github.com/Xizario" style="color: #c45000; text-decoration: underline;">Xizario</a>).</p> </div> </td> </tr> </table> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> </tbody> </table> </div> <!--[if mso | IE]> </td> </tr> </table> <table align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600" > <tr> <td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"> <![endif]--> <div style="background:white;background-color:white;Margin:0px auto;max-width:600px;"> <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background:white;background-color:white;width:100%;"> <tbody> <tr> <td style="direction:ltr;font-size:0px;padding:10px 0;padding-top:0;text-align:center;vertical-align:top;"> <!--[if mso | IE]> <table role="presentation" border="0" cellpadding="0" cellspacing="0"> <tr> <td class="small-padding-mobile-outlook" style="vertical-align:top;width:600px;" > <![endif]--> <div class="mj-column-per-100 outlook-group-fix small-padding-mobile" style="font-size:13px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"> <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%"> <tr> <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;"> <div style="font-family:-apple-system,BlinkMacSystemFont,Helvetica,sans-serif;font-size:15px;line-height:150%;text-align:left;color:#5b5b5b;"> <p style="margin: 0;">That was it for this week. If you have any feedback for us, please let us know (simply reply to this newsletter or reach me out via <a target="_top" href="https://twitter.com/PhilippSpiess" style="color: #c45000; text-decoration: underline;">Twitter</a>).</p> </div> </td> </tr> </table> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </td> </tr> </tbody> </table> </div> <!--[if mso | IE]> </td> </tr> </table> <![endif]--> </div> </body> </html>
42.288136
1,056
0.546665
c490330d2953adaa33719956468df415e922fdb5
3,066
dart
Dart
lib/pages/navigation/NavigationBar.dart
browndddddd/favoury_app
b01876c2a71f6018d07dae7b3d549c0d1e59962b
[ "Unlicense" ]
null
null
null
lib/pages/navigation/NavigationBar.dart
browndddddd/favoury_app
b01876c2a71f6018d07dae7b3d549c0d1e59962b
[ "Unlicense" ]
null
null
null
lib/pages/navigation/NavigationBar.dart
browndddddd/favoury_app
b01876c2a71f6018d07dae7b3d549c0d1e59962b
[ "Unlicense" ]
null
null
null
import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:postme_app/pages/HomePage.dart'; import 'package:postme_app/pages/NotificationsPage.dart'; import 'package:postme_app/pages/ProfilePage.dart'; import 'package:postme_app/pages/SearchPage.dart'; import 'package:postme_app/pages/TimeLinePage.dart'; import 'package:postme_app/pages/UploadPage.dart'; import 'package:postme_app/widgets/NavBarIconsWidget.dart'; class NavigationBar extends StatefulWidget { @override _NavigationBarState createState() => _NavigationBarState(); } class _NavigationBarState extends State<NavigationBar> with SingleTickerProviderStateMixin { TabController _tabController; @override void initState() { super.initState(); _tabController = TabController(length: 5, vsync: this); } @override void dispose() { super.dispose(); _tabController.dispose(); } @override Widget build(BuildContext context) { return Scaffold( body: TabBarView( children: <Widget>[ TimeLinePage(), SearchPage(), UploadPage(), NotificationsPage(), ProfilePage(userProfileId: currentUser?.id), ], controller: _tabController, //onPageChanged: whenPageChanged, physics: NeverScrollableScrollPhysics(), ), extendBody: true, bottomNavigationBar: Container( height: 135, padding: EdgeInsets.only(left: 37, right: 37, top: 40, bottom: 35), child: ClipRRect( borderRadius: BorderRadius.all( Radius.circular(30.0), ), child: Container( color: Color(0xff607dd9), child: TabBar( labelColor: Colors.white, unselectedLabelColor: Color(0xFF99B6F2), labelStyle: TextStyle(fontSize: 10.0), indicator: UnderlineTabIndicator( borderSide: BorderSide(color: Colors.black54, width:0.0), ), //For Indicator Show and Customization indicatorColor: Colors.black54, tabs: <Widget>[ Tab( icon: Icon( NavBarIcons.home, size: 20.0, ), ), Tab( icon: Icon( NavBarIcons.magnifiying_glass, size: 20.0, ), ), Tab( icon: Icon( NavBarIcons.plus, size: 30.0, ), ), Tab( icon: Icon( NavBarIcons.like, size: 20.0, ), ), Tab( icon: Icon( NavBarIcons.user, size: 20.0, ), ), ], controller: _tabController, ), ), ), ), ); } }
28.924528
92
0.5212
9c5aa1cab56c623f433dc40b304f6bfdb34eebc5
3,352
hpp
C++
api/net/addr.hpp
JohnCoconut/IncludeOS
65da7a7348807f7dd7910cf640ed370c68ad73b2
[ "Apache-2.0" ]
5
2016-10-01T11:50:51.000Z
2019-10-24T12:54:36.000Z
api/net/addr.hpp
JohnCoconut/IncludeOS
65da7a7348807f7dd7910cf640ed370c68ad73b2
[ "Apache-2.0" ]
1
2016-11-25T22:37:41.000Z
2016-11-25T22:37:41.000Z
api/net/addr.hpp
AndreasAakesson/IncludeOS
891b960a0a7473c08cd0d93a2bba7569c6d88b48
[ "Apache-2.0" ]
3
2016-09-28T18:15:50.000Z
2017-07-18T17:02:25.000Z
// This file is a part of the IncludeOS unikernel - www.includeos.org // // Copyright 2018 IncludeOS AS, Oslo, Norway // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #pragma once #include <net/ip4/addr.hpp> #include <net/ip6/addr.hpp> namespace net { union Addr { public: static const Addr addr_any; constexpr Addr() noexcept : ip6_{} {} Addr(ip4::Addr addr) noexcept : ip4_{0, ip4_sign_be, std::move(addr)} {} Addr(ip6::Addr addr) noexcept : ip6_{std::move(addr)} {} // IP4 variant Addr(uint8_t a, uint8_t b, uint8_t c, uint8_t d) : ip4_{0, ip4_sign_be, {a, b, c, d}} {} // IP6 variant Addr(uint16_t a, uint16_t b, uint16_t c, uint16_t d, uint16_t e, uint16_t f, uint16_t g, uint16_t h) : ip6_{a, b, c, d, e, f, g, h} {} bool is_v4() const noexcept { return ip4_.big == 0 and ip4_.sign == ip4_sign_be; } bool is_v6() const noexcept { return not is_v4(); } void set_v4(ip4::Addr addr) noexcept { ip4_.big = 0; ip4_.sign = ip4_sign_be; ip4_.addr = std::move(addr); } void set_v6(ip6::Addr addr) noexcept { ip6_ = std::move(addr); } ip4::Addr v4() const { if(UNLIKELY(not is_v4())) throw ip4::Invalid_address{"Address is not v4"}; return ip4_.addr; } const ip6::Addr& v6() const noexcept { return ip6_; } bool is_any() const noexcept { return ip6_ == ip6::Addr::addr_any or (is_v4() and ip4_.addr == 0); } Addr any_addr() const noexcept { return is_v4() ? Addr{ip4::Addr::addr_any} : Addr{ip6::Addr::addr_any}; } std::string to_string() const { return is_v4() ? ip4_.addr.to_string() : ip6_.to_string(); } Addr(const Addr& other) noexcept : ip6_{other.ip6_} {} Addr(Addr&& other) noexcept : ip6_{std::move(other.ip6_)} {} Addr& operator=(const Addr& other) noexcept { ip6_ = other.ip6_; return *this; } Addr& operator=(Addr&& other) noexcept { ip6_ = std::move(other.ip6_); return *this; } //operator ip4::Addr() const //{ return v4(); } //operator const ip6::Addr&() const //{ return v6(); } bool operator==(const Addr& other) const noexcept { return ip6_ == other.ip6_; } bool operator!=(const Addr& other) const noexcept { return ip6_ != other.ip6_; } bool operator<(const Addr& other) const noexcept { return ip6_ < other.ip6_; } bool operator>(const Addr& other) const noexcept { return ip6_ > other.ip6_; } bool operator>=(const Addr& other) const noexcept { return (*this > other or *this == other); } bool operator<=(const Addr& other) const noexcept { return (*this < other or *this == other); } private: struct { uint64_t big; uint32_t sign; ip4::Addr addr; } ip4_; ip6::Addr ip6_; static constexpr uint32_t ip4_sign_be{0xFFFF0000}; }; static_assert(sizeof(Addr) == sizeof(ip6::Addr)); }
24.115108
77
0.65006
2f027356b3bcba369e50edbb5256132a32f11060
9,924
cs
C#
DoubleDoubleTest/DDouble/GammaFunctionTests.cs
tk-yoshimura/DoubleDouble
58bebd7e90bb7c7f8b4222357a8942844f06de55
[ "MIT" ]
1
2022-01-15T23:33:39.000Z
2022-01-15T23:33:39.000Z
DoubleDoubleTest/DDouble/GammaFunctionTests.cs
tk-yoshimura/DoubleDouble
58bebd7e90bb7c7f8b4222357a8942844f06de55
[ "MIT" ]
null
null
null
DoubleDoubleTest/DDouble/GammaFunctionTests.cs
tk-yoshimura/DoubleDouble
58bebd7e90bb7c7f8b4222357a8942844f06de55
[ "MIT" ]
null
null
null
using DoubleDouble; using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using System.Numerics; namespace DoubleDoubleTest.DDouble { [TestClass] public class GammaFunctionTests { [TestMethod] public void GammaTest() { for (BigInteger i = 1, y = 1; i <= 36; i++, y = y * (i - 1)) { ddouble x = ddouble.Gamma(i); Assert.AreEqual(y, x); } ddouble sqrtpi = ddouble.Sqrt(ddouble.PI); for (BigInteger i = 1, y = 1, z = 1; i <= 40; i++, y *= 2, z *= 2 * i - 3) { ddouble x = ddouble.Gamma((2 * (int)i - 1) * 0.5d); ddouble v = sqrtpi * z / y; HPAssert.NeighborBits(v, x, 16); } HPAssert.NeighborBits(sqrtpi * 4 / 3, ddouble.Gamma(-1.5), 16); HPAssert.NeighborBits(sqrtpi * -2, ddouble.Gamma(-0.5), 16); HPAssert.NeighborBits("1.2254167024651776451290983033628905268512", ddouble.Gamma(0.75), 16); HPAssert.NeighborBits("9.3326215443944152681699238856266700490716e155", ddouble.Gamma(100), 64); HPAssert.NeighborBits("2.9467022724950383265043395073512148621950e282", ddouble.Gamma(160), 64); ddouble gamma_pzero = ddouble.Gamma(0d); ddouble gamma_mzero = ddouble.Gamma(-0d); ddouble gamma_mone = ddouble.Gamma(-1d); ddouble gamma_pinf = ddouble.Gamma(double.PositiveInfinity); ddouble gamma_ninf = ddouble.Gamma(double.NegativeInfinity); ddouble gamma_nan = ddouble.Gamma(double.NaN); Assert.IsTrue(ddouble.IsPositiveInfinity(gamma_pzero), nameof(gamma_pzero)); Assert.IsTrue(ddouble.IsPositiveInfinity(gamma_mzero), nameof(gamma_mzero)); Assert.IsTrue(ddouble.IsNaN(gamma_mone), nameof(gamma_mone)); Assert.IsTrue(ddouble.IsPositiveInfinity(gamma_pinf), nameof(gamma_pinf)); Assert.IsTrue(ddouble.IsNaN(gamma_ninf), nameof(gamma_ninf)); Assert.IsTrue(ddouble.IsNaN(gamma_nan), nameof(gamma_nan)); } [TestMethod] public void LogGammaTest() { for (BigInteger i = 1, y = 1; i <= 35; i++, y = y * (i - 1)) { ddouble x = ddouble.LogGamma(i); ddouble v = ddouble.Log(y); HPAssert.NeighborBits(v, x, 32); } ddouble sqrtpi = ddouble.Sqrt(ddouble.PI); for (BigInteger i = 1, y = 1, z = 1; i <= 30; i++, y *= 2, z *= 2 * i - 3) { ddouble x = ddouble.LogGamma((2 * (int)i - 1) * 0.5d); ddouble v = ddouble.Log(sqrtpi * z / y); HPAssert.NeighborBits(v, x, 32); } HPAssert.NeighborBits("1.288022524698077457370610440219717295925", ddouble.LogGamma(0.25), 32); HPAssert.NeighborBits("2.032809514312953714814329718624296997597e-1", ddouble.LogGamma(0.75), 32); HPAssert.NeighborBits("3.591342053695753987760440104602869096126e2", ddouble.LogGamma(100), 128); HPAssert.NeighborBits("8.579336698258574368182534016573082801626e2", ddouble.LogGamma(200), 128); foreach ((ddouble x, ddouble expected) in new (ddouble, ddouble)[] { (1 - Math.ScaleB(1, -3), "8.5858707225334323502365583769487702270e-2"), (1 + Math.ScaleB(1, -3), "-6.0023184126039582931405843207430114278e-2"), (2 - Math.ScaleB(1, -3), "-4.7672685399188299643978037161862272345e-2"), (2 + Math.ScaleB(1, -3), "5.7759851530343871607388266263091590793e-2"), }) { ddouble x_dec = ddouble.BitDecrement(x), x_dec2 = ddouble.BitDecrement(x_dec), x_dec3 = ddouble.BitDecrement(x_dec2); ddouble x_inc = ddouble.BitIncrement(x), x_inc2 = ddouble.BitIncrement(x_inc), x_inc3 = ddouble.BitIncrement(x_inc2); Console.WriteLine(expected); Console.WriteLine(ddouble.LogGamma(x_dec3)); Console.WriteLine(ddouble.LogGamma(x_dec2)); Console.WriteLine(ddouble.LogGamma(x_dec)); Console.WriteLine(ddouble.LogGamma(x)); Console.WriteLine(ddouble.LogGamma(x_inc)); Console.WriteLine(ddouble.LogGamma(x_inc2)); Console.WriteLine(ddouble.LogGamma(x_inc3)); Console.WriteLine(""); HPAssert.AreEqual(expected, ddouble.LogGamma(x_dec), 1e-30); HPAssert.AreEqual(expected, ddouble.LogGamma(x), 1e-30); HPAssert.AreEqual(expected, ddouble.LogGamma(x_inc), 1e-30); } ddouble loggamma_pzero = ddouble.LogGamma(0d); ddouble loggamma_mzero = ddouble.LogGamma(-0d); ddouble loggamma_mone = ddouble.LogGamma(-1d); ddouble loggamma_pinf = ddouble.LogGamma(double.PositiveInfinity); ddouble loggamma_ninf = ddouble.LogGamma(double.NegativeInfinity); ddouble loggamma_nan = ddouble.LogGamma(double.NaN); Assert.IsTrue(ddouble.IsPositiveInfinity(loggamma_pzero), nameof(loggamma_pzero)); Assert.IsTrue(ddouble.IsNaN(loggamma_mzero), nameof(loggamma_mzero)); Assert.IsTrue(ddouble.IsNaN(loggamma_mone), nameof(loggamma_mone)); Assert.IsTrue(ddouble.IsPositiveInfinity(loggamma_pinf), nameof(loggamma_pinf)); Assert.IsTrue(ddouble.IsNaN(loggamma_ninf), nameof(loggamma_ninf)); Assert.IsTrue(ddouble.IsNaN(loggamma_nan), nameof(loggamma_nan)); } [TestMethod] public void DigammaTest() { for (int i = 1; i <= 35; i++) { ddouble x = ddouble.Digamma(i); ddouble y = ddouble.HarmonicNumber(i - 1) - ddouble.EulerGamma; HPAssert.NeighborBits(y, x, 32); } HPAssert.NeighborBits(-2 * ddouble.Log(2) - ddouble.EulerGamma, ddouble.Digamma(0.5d), 32); HPAssert.NeighborBits(2 * (ddouble)340028535787 / 145568097675 - 2 * ddouble.Log(2) - ddouble.EulerGamma, ddouble.Digamma(15.5d), 32); HPAssert.NeighborBits(2 * (ddouble)10686452707072 / 4512611027925 - 2 * ddouble.Log(2) - ddouble.EulerGamma, ddouble.Digamma(16.5d), 32); HPAssert.NeighborBits("-2.8941202000429320747561968127633502440339e0", ddouble.Digamma(-0.75), 32); HPAssert.NeighborBits("3.6489973978576520559023667001244432806840e-2", ddouble.Digamma(-0.5), 32); HPAssert.NeighborBits("2.9141391202135278303731132371828193068299e0", ddouble.Digamma(-0.25), 2); HPAssert.NeighborBits("-4.2274535333762654080895301460966835773672e0", ddouble.Digamma(0.25), 32); HPAssert.NeighborBits("-1.9635100260214234794409763329987555671932e0", ddouble.Digamma(0.5), 32); HPAssert.NeighborBits("-1.0858608797864721696268867628171806931701e0", ddouble.Digamma(0.75), 32); HPAssert.NeighborBits("-2.2745353337626540808953014609668357736724e-1", ddouble.Digamma(1.25), 32); HPAssert.NeighborBits("3.6489973978576520559023667001244432806840e-2", ddouble.Digamma(1.5), 32); HPAssert.NeighborBits("2.4747245354686116370644657051615264016326e-1", ddouble.Digamma(1.75), 32); HPAssert.NeighborBits("4.6001618527380874001986055855758507268668e0", ddouble.Digamma(100), 128); HPAssert.NeighborBits("5.2958152832199116154508743070484592057952e0", ddouble.Digamma(200), 128); ddouble zeropoint = "1.461632144968362341262659542325721328468196204006446351295988408598"; Console.WriteLine(ddouble.Digamma(zeropoint)); foreach ((ddouble x, ddouble expected) in new (ddouble, ddouble)[] { (zeropoint - Math.ScaleB(1, -3), "-0.128425703997196096307000073904848726435618594702456926759961027"), (zeropoint + Math.ScaleB(1, -3), "+0.114508749996322817880325006697673040445328929804493417473187312"), }) { ddouble x_dec = ddouble.BitDecrement(x), x_dec2 = ddouble.BitDecrement(x_dec), x_dec3 = ddouble.BitDecrement(x_dec2); ddouble x_inc = ddouble.BitIncrement(x), x_inc2 = ddouble.BitIncrement(x_inc), x_inc3 = ddouble.BitIncrement(x_inc2); Console.WriteLine(expected); Console.WriteLine(ddouble.Digamma(x_dec3)); Console.WriteLine(ddouble.Digamma(x_dec2)); Console.WriteLine(ddouble.Digamma(x_dec)); Console.WriteLine(ddouble.Digamma(x)); Console.WriteLine(ddouble.Digamma(x_inc)); Console.WriteLine(ddouble.Digamma(x_inc2)); Console.WriteLine(ddouble.Digamma(x_inc3)); Console.WriteLine(""); HPAssert.AreEqual(expected, ddouble.Digamma(x_dec), 1e-31); HPAssert.AreEqual(expected, ddouble.Digamma(x), 1e-31); HPAssert.AreEqual(expected, ddouble.Digamma(x_inc), 1e-31); } ddouble digamma_pzero = ddouble.Digamma(0d); ddouble digamma_mzero = ddouble.Digamma(-0d); ddouble digamma_mone = ddouble.Digamma(-1d); ddouble digamma_pinf = ddouble.Digamma(double.PositiveInfinity); ddouble digamma_ninf = ddouble.Digamma(double.NegativeInfinity); ddouble digamma_nan = ddouble.Digamma(double.NaN); Assert.IsTrue(ddouble.IsPositiveInfinity(digamma_pzero), nameof(digamma_pzero)); Assert.IsTrue(ddouble.IsPositiveInfinity(digamma_mzero), nameof(digamma_mzero)); Assert.IsTrue(ddouble.IsNaN(digamma_mone), nameof(digamma_mone)); Assert.IsTrue(ddouble.IsPositiveInfinity(digamma_pinf), nameof(digamma_pinf)); Assert.IsTrue(ddouble.IsNaN(digamma_ninf), nameof(digamma_ninf)); Assert.IsTrue(ddouble.IsNaN(digamma_nan), nameof(digamma_nan)); } } }
54.828729
133
0.63291
80c02a6c4b61e14e9e7ae2dfc6f43f82bfa35f4e
211
java
Java
src/cellsociety/control/NeighborPolicy.java
weiwu99/CA
58f0678958b44eb81c4bca333d9bb7e74de45247
[ "MIT" ]
null
null
null
src/cellsociety/control/NeighborPolicy.java
weiwu99/CA
58f0678958b44eb81c4bca333d9bb7e74de45247
[ "MIT" ]
null
null
null
src/cellsociety/control/NeighborPolicy.java
weiwu99/CA
58f0678958b44eb81c4bca333d9bb7e74de45247
[ "MIT" ]
null
null
null
package cellsociety.control; /** * stores the various possible NeighborPolicies for different simulations * * @author Luke Turkovich */ public enum NeighborPolicy { COMPLETE, CARDINAL, VERTEX }
19.181818
74
0.725118
5d5a04909a7da7ce5e92d878d8ed4e6e2fffaa3a
822
go
Go
libs/common.go
ChamPly/QuickMock
75504ba244693ef19203ce2aef7d560464a02593
[ "Apache-2.0" ]
12
2017-09-24T14:34:00.000Z
2018-06-16T05:04:26.000Z
libs/common.go
ChamPly/QuickMock
75504ba244693ef19203ce2aef7d560464a02593
[ "Apache-2.0" ]
null
null
null
libs/common.go
ChamPly/QuickMock
75504ba244693ef19203ce2aef7d560464a02593
[ "Apache-2.0" ]
null
null
null
package libs import ( "encoding/json" "fmt" "io/ioutil" "os" "os/exec" "path/filepath" "github.com/ChamPly/quick-mock/conf" "github.com/ChamPly/quick-mock/model" ) func ReadProperty() (property model.Property, err error) { path := fmt.Sprintf("%s/%s", GetLocalPath(), conf.PropertityFileName) fileInput, err := os.Open(path) if err != nil { err = fmt.Errorf("打开文件错误,确认文件:%s存在,错误:%+v", path, err) } contentByte, err := ioutil.ReadAll(fileInput) if err != nil { err = fmt.Errorf("读取文件:%s错误:%+v", path, err) } property = model.Property{} err = json.Unmarshal(contentByte, &property) if err != nil { err = fmt.Errorf("配置文件格式错误,具体配置详见:readme") } return } func GetLocalPath() (path string) { file, _ := exec.LookPath(os.Args[0]) path, _ = filepath.Abs(file) path = filepath.Dir(path) return }
20.55
70
0.66545
3b4f1e3d5efa23ae56329c95fb351951be5870b3
3,855
c
C
src/npf/rproc/npf_ext_app.c
srinivasknarayan/vyatta-dataplane
d66f721b04fc510c01e5cf0fd786e3ff42aec408
[ "BSD-2-Clause" ]
29
2019-11-18T20:02:45.000Z
2021-11-19T11:59:45.000Z
src/npf/rproc/npf_ext_app.c
srinivasknarayan/vyatta-dataplane
d66f721b04fc510c01e5cf0fd786e3ff42aec408
[ "BSD-2-Clause" ]
10
2019-12-09T15:32:17.000Z
2021-04-28T14:34:34.000Z
src/npf/rproc/npf_ext_app.c
srinivasknarayan/vyatta-dataplane
d66f721b04fc510c01e5cf0fd786e3ff42aec408
[ "BSD-2-Clause" ]
24
2019-11-16T07:13:22.000Z
2022-03-29T15:56:42.000Z
/* * Copyright (c) 2018-2020, AT&T Intellectual Property. All rights reserved. * * SPDX-License-Identifier: LGPL-2.1-only */ /* * User-defined application rproc. */ #include <rte_mbuf.h> #include <time.h> #include <ini.h> #include <rte_jhash.h> #include "ip_funcs.h" #include "ip6_funcs.h" #include "pktmbuf_internal.h" #include "npf/npf_ruleset.h" #include "npf/rproc/npf_rproc.h" #include "npf/dpi/dpi_internal.h" #include "npf/dpi/dpi_user.h" #include "npf/dpi/npf_appdb.h" #include "npf/dpi/npf_typedb.h" /* App information to be saved for later. */ struct app_info { struct adb_entry *ai_app_name; struct adb_entry *ai_app_proto; struct tdb_entry *ai_app_type; }; /* * App rproc constructor. * Save application information from the rule for later matching. */ static int app_ctor(npf_rule_t *rl __unused, const char *params, void **handle) { /* Ensure the user DPI engine is enabled */ int ret = dpi_init(IANA_USER); if (ret != 0) return ret; /* * Application name, type, and proto are received from the config layer * as comma-separated strings. * * Here we convert the strings to IDs and save them for later matching. */ /* Take a copy of params which we can modify. */ char *name = strdup(params); if (!name) return -ENOMEM; /* Memory to store the app info. */ struct app_info *app_info = zmalloc_aligned(sizeof(struct app_info)); if (!app_info) { free(name); return -ENOMEM; } /* * The name and type are comma-separated, * so we find the comma at position X, * overwrite it with a '\0' * and get the type string at X+1. */ char *type = strchr(name, ','); if (type == NULL) goto err_bad_args; *type = '\0'; type++; /* Now "name" contains the null-terminated app name. */ app_info->ai_app_name = appdb_find_or_alloc(name); char *proto = strchr(type, ','); if (!proto) { appdb_dealloc(app_info->ai_app_name); goto err_bad_args; } *proto = '\0'; proto++; app_info->ai_app_type = typedb_find_or_alloc(type); /* * "proto" points to the comma between the type and the proto. * The proto follows the type at proto+1. */ app_info->ai_app_proto = appdb_find_or_alloc(proto); *handle = app_info; free(name); return 0; err_bad_args: free(name); free(app_info); return -EINVAL; } /* * App rproc destructor. * Destroy previously saved app information. */ static void app_dtor(void *handle) { if (!handle) return; struct app_info *app_info = handle; appdb_dealloc(app_info->ai_app_name); appdb_dealloc(app_info->ai_app_proto); typedb_dealloc(app_info->ai_app_type); free(handle); dpi_terminate(IANA_USER); } /* * App rproc action function. * * A packet matched the rules, * so store the classification in the session's dpi_flow structure. */ static bool app_action(npf_cache_t *npc __unused, struct rte_mbuf **nbuf __unused, void *arg, npf_session_t *se, npf_rproc_result_t *result) { /* NB: we don't modify decision. */ if (result->decision == NPF_DECISION_BLOCK) return true; if (!se) return true; if (!arg) return true; struct user_flow *dpi_flow = (struct user_flow *)dpi_get_engine_flow( npf_session_get_dpi(se), IANA_USER); if (!dpi_flow) return true; struct app_info *app_info = arg; /* * Use DPI_APP_USER_NA rather than DPI_APP_NA if there's no name / proto * else appfw_decision will exit early. */ dpi_flow->application = appdb_entry_get_id(app_info->ai_app_name); dpi_flow->protocol = appdb_entry_get_id(app_info->ai_app_proto); dpi_flow->type = typedb_entry_get_id(app_info->ai_app_type); return true; /* Continue rproc processing. */ } /* App RPROC ops. */ const npf_rproc_ops_t npf_app_ops = { .ro_name = "app", .ro_type = NPF_RPROC_TYPE_ACTION, .ro_id = NPF_RPROC_ID_APP, .ro_bidir = true, .ro_ctor = app_ctor, .ro_dtor = app_dtor, .ro_action = app_action, };
21.903409
77
0.700908
f75017aad31316009f586870094e89cefc3751b1
261
h
C
mp3gain/id3tag.h
Sappharad/aacgain
afeaf0173f3b3b37af1f5db4418089a2786a4bb6
[ "Unlicense" ]
13
2019-08-07T09:39:12.000Z
2022-02-24T12:56:49.000Z
mp3gain/id3tag.h
Sappharad/aacgain
afeaf0173f3b3b37af1f5db4418089a2786a4bb6
[ "Unlicense" ]
1
2019-07-23T01:23:27.000Z
2019-07-23T01:23:27.000Z
mp3gain/id3tag.h
Sappharad/aacgain
afeaf0173f3b3b37af1f5db4418089a2786a4bb6
[ "Unlicense" ]
3
2019-07-22T22:29:31.000Z
2020-09-02T05:42:58.000Z
#ifndef ID3TAG_H #define ID3TAG_H int ReadMP3GainID3Tag(char *filename, struct MP3GainTagInfo *info); int WriteMP3GainID3Tag(char *filename, struct MP3GainTagInfo *info, int saveTimeStamp); int RemoveMP3GainID3Tag(char *filename, int saveTimeStamp); #endif
23.727273
87
0.812261
bb96a6a6694e77a3da849e97ebe6ae983be670a3
350
swift
Swift
Sources/Catoci/API/ErrorUtility.swift
iSapozhnik/Catoci
b3d5b8be771d7d0e727c1f418ca247a7668cd7c4
[ "MIT" ]
null
null
null
Sources/Catoci/API/ErrorUtility.swift
iSapozhnik/Catoci
b3d5b8be771d7d0e727c1f418ca247a7668cd7c4
[ "MIT" ]
null
null
null
Sources/Catoci/API/ErrorUtility.swift
iSapozhnik/Catoci
b3d5b8be771d7d0e727c1f418ca247a7668cd7c4
[ "MIT" ]
null
null
null
// // ErrorUtility.swift // Catoci // // Created by Ivan Sapozhnik on 1/26/18. // // import Foundation extension Error { var userFriendlyMessage: String { if let string = self as? String { return string } else { return self.localizedDescription } } } extension String: Error {}
14.583333
44
0.568571
48d3585c96325ef9f7264bc588e46276ee41f776
217
h
C
libyaul/lib/lib/crc.h
robertoduarte/libyaul
980279d95f362643c72e2784924a271da44126b8
[ "MIT" ]
90
2015-04-10T03:42:21.000Z
2022-03-25T11:58:11.000Z
libyaul/lib/lib/crc.h
robertoduarte/libyaul
980279d95f362643c72e2784924a271da44126b8
[ "MIT" ]
73
2015-07-13T21:22:10.000Z
2022-03-21T00:46:44.000Z
libyaul/lib/lib/crc.h
hitomi2500/libyaul
2ae3544f983c1ab47e024ea1dfdc6b99aa2c358d
[ "MIT" ]
19
2016-04-16T22:52:23.000Z
2022-02-24T15:42:44.000Z
#ifndef _LIB_CRC_H_ #define _LIB_CRC_H_ #include <stdint.h> #include <sys/cdefs.h> typedef uint8_t crc_t; __BEGIN_DECLS extern crc_t crc_calculate(const uint8_t *, size_t); __END_DECLS #endif /* _LIB_CRC_H_ */
12.764706
52
0.760369
47fbb0e5b154d6e09f38d5dbdc73ce829fae2aea
764
asm
Assembly
data/mapObjects/celadonmansion1.asm
adhi-thirumala/EvoYellow
6fb1b1d6a1fa84b02e2d982f270887f6c63cdf4c
[ "Unlicense" ]
16
2018-08-28T21:47:01.000Z
2022-02-20T20:29:59.000Z
data/mapObjects/celadonmansion1.asm
adhi-thirumala/EvoYellow
6fb1b1d6a1fa84b02e2d982f270887f6c63cdf4c
[ "Unlicense" ]
5
2019-04-03T19:53:11.000Z
2022-03-11T22:49:34.000Z
data/mapObjects/celadonmansion1.asm
adhi-thirumala/EvoYellow
6fb1b1d6a1fa84b02e2d982f270887f6c63cdf4c
[ "Unlicense" ]
2
2019-12-09T19:46:02.000Z
2020-12-05T21:36:30.000Z
CeladonMansion1Object: db $f ; border block db $5 ; warps db $b, $4, $2, $ff db $b, $5, $2, $ff db $0, $4, $4, $ff db $1, $7, $1, CELADON_MANSION_2 db $1, $2, $2, CELADON_MANSION_2 db $1 ; signs db $9, $4, $5 ; CeladonMansion1Text5 db $4 ; objects object SPRITE_SLOWBRO, $0, $5, STAY, RIGHT, $1 ; person object SPRITE_OLD_MEDIUM_WOMAN, $1, $5, STAY, DOWN, $2 ; person object SPRITE_CLEFAIRY, $1, $8, WALK, $2, $3 ; person object SPRITE_SLOWBRO, $4, $4, WALK, $1, $4 ; person ; warp-to EVENT_DISP CELADON_MANSION_1_WIDTH, $b, $4 EVENT_DISP CELADON_MANSION_1_WIDTH, $b, $5 EVENT_DISP CELADON_MANSION_1_WIDTH, $0, $4 EVENT_DISP CELADON_MANSION_1_WIDTH, $1, $7 ; CELADON_MANSION_2 EVENT_DISP CELADON_MANSION_1_WIDTH, $1, $2 ; CELADON_MANSION_2
29.384615
64
0.679319
1ece5258ebde87d55fe3ee38f40c520eeb25ba20
9,829
dart
Dart
lib/src/api/side_navigation_bar.dart
jksevend/side_navigation
ad3eb658224c66d6eea7ca6511bfc26729e84bcc
[ "MIT" ]
9
2021-07-26T16:07:12.000Z
2022-01-14T16:14:57.000Z
lib/src/api/side_navigation_bar.dart
jksevend/side_navigation
ad3eb658224c66d6eea7ca6511bfc26729e84bcc
[ "MIT" ]
13
2021-08-14T09:46:28.000Z
2022-03-30T18:54:47.000Z
lib/src/api/side_navigation_bar.dart
jksevend/side_navigation
ad3eb658224c66d6eea7ca6511bfc26729e84bcc
[ "MIT" ]
3
2021-08-13T17:41:42.000Z
2022-02-05T20:47:57.000Z
import 'package:flutter/material.dart'; import 'package:side_navigation/side_navigation.dart'; import 'package:side_navigation/src/core/bar_footer.dart'; import 'package:side_navigation/src/core/bar_header.dart'; import 'package:side_navigation/src/core/bar_item.dart'; import 'package:side_navigation/src/core/bar_toggler.dart'; /// The main widget for building a side navigation bar. /// /// * [selectedIndex] defines what item of the navigation options is currently selected. /// * [items] are the main options for creating different routes /// * [onTap] provides a callback that [selectedIndex] has changed. /// * [header] is the widget to display at the top of the bar /// * [footer] is the widget to display at the bottom of the bar. it also includes the toggler widget /// * [toggler] is the toggler used when expanding/shrinking the bar. /// * [theme] provides a configuration to customize certain parts of the bar /// * [expandable] defines whether this bar should be expandable at all. /// * [initiallyExpanded] defines if the bar should be expanded on startup. class SideNavigationBar extends StatefulWidget { /// The current index of the navigation bar final int selectedIndex; /// The items to put into the bar final List<SideNavigationBarItem> items; /// What to do when an item as been tapped final ValueChanged<int> onTap; /// The header of the bar final SideNavigationBarHeader? header; /// The footer of the bar final SideNavigationBarFooter? footer; /// Optional toggler widget final SideBarToggler? toggler; /// Theme data of the bar. /// If nothing or null is passed it defaults to [SideNavigationBarTheme.standard] final SideNavigationBarTheme? theme; /// Specifies whether that [SideNavigationBar] is expandable or not /// True by default final bool expandable; /// Specifies whether [SideNavigationBar] should be expanded when building it. /// True by default final bool initiallyExpanded; const SideNavigationBar({ Key? key, required this.selectedIndex, required this.items, required this.onTap, this.header, this.footer, this.toggler, this.theme, this.expandable = true, this.initiallyExpanded = true, }) : super(key: key); @override _SideNavigationBarState createState() => _SideNavigationBarState(); /// Access [_SideNavigationBarState] from outside based on [context] static _SideNavigationBarState of(final BuildContext context) { final _SideNavigationBarState? state = context.findAncestorStateOfType<_SideNavigationBarState>(); if (state == null) { throw StateError('Trying to access null state _SideNavigationBarState'); } return state; } } class _SideNavigationBarState extends State<SideNavigationBar> { /// TODO: Maybe find some way using layout out builder here final double _minWidth = 50; final double _maxWidth = 230; /// The width of the bar used for animation late double _width; /// Whether this bar is in its expanded state late bool _expanded; /// Chooses [SideNavigationBarTheme.standard] or [widget.theme] late SideNavigationBarTheme theme; @override void initState() { super.initState(); _evaluateInitialStructure(); } @override Widget build(BuildContext context) { return Container( decoration: BoxDecoration( color: theme.backgroundColor, border: _evaluateMainDivider(), ), child: AnimatedSize( curve: Curves.easeIn, duration: const Duration(milliseconds: 350), child: SizedBox( width: _width, height: double.infinity, child: Column( children: [ // Header _evaluateHeaderWidget(), _evaluateHeaderDivider(), // Navigation content Expanded( child: Scrollbar( child: ListView( children: _generateItems(), ), ), ), _evaluateFooterDivider(), // Footer _evaluateFooterWidget(), _evaluateTogglerWidget(), ], ), ), ), ); } /// Toggles this widget. Determine width here for now. /// Optionally calls a [SideBarToggler.onToggle] call to react to [_expanded] changes void _toggle() { setState(() { if (_expanded) { _width = _minWidth; } else { _width = _maxWidth; } _expanded = !_expanded; }); // Check if a custom onToggle is provided and call after (or before?) internal logic widget.toggler?.onToggle?.call(); } /// Evaluate whether [theme] should be the [SideNavigationBarTheme.standard] or provided /// [SideNavigationBar.theme]. /// /// Also ,it sets the [_width] value of the container which is animated /// This happens based on whether the bar is [expandable] (Default true) at all and /// if the bar should be [initiallyExpanded] (Default true) void _evaluateInitialStructure() { // Evaluate the theme theme = widget.theme ?? SideNavigationBarTheme.standard(); // If the bar need to be expandable if (widget.expandable) { _evaluateInitiallyExpanded(); } else { _evaluateInitiallyExpanded(); } } /// Evaluate that initial state of the [SideNavigationBar] void _evaluateInitiallyExpanded() { if (widget.initiallyExpanded) { _expanded = widget.initiallyExpanded; _width = _maxWidth; } else { _expanded = widget.initiallyExpanded; _width = _minWidth; } } /// Generates [SideNavigationBarItemWidget] based on data provided in the interface /// [SideNavigationBarItem] List<Widget> _generateItems() { List<Widget> _items = widget.items .asMap() .entries .map<SideNavigationBarItemWidget>( (MapEntry<int, SideNavigationBarItem> entry) => SideNavigationBarItemWidget( itemData: entry.value, onTap: widget.onTap, itemTheme: theme.itemTheme, index: entry.key, expanded: _expanded, )) .toList(); return _items; } /// Determines if a [SideNavigationBarHeader] was provided Widget _evaluateHeaderWidget() { if (widget.header != null) { return SideNavigationBarHeaderWidget( headerData: widget.header!, expandable: widget.expandable, expanded: _expanded, initiallyExpanded: widget.initiallyExpanded, ); } return Container(); } /// Determines if a [SideNavigationBarFooter] was provided Widget _evaluateFooterWidget() { if (widget.footer != null) { return SideNavigationBarFooterWidget( footerData: widget.footer!, expandable: widget.expandable, expanded: _expanded, initiallyExpanded: widget.initiallyExpanded, ); } return Container(); } /// Logic to handle building the toggler widget. /// /// If [SideNavigationBar.expandable] is false but a [SideBarToggler] is provided /// a StateError is thrown. /// /// If [SideNavigationBar.expandable] is false no toggler is returned. /// /// Then figure out if a toggler was provided or not and build the [SideBarTogglerWidget] Widget _evaluateTogglerWidget() { // We dont want that if (!widget.expandable && widget.toggler != null) { throw StateError( 'SideNavigationBar is not expandable but a SideBarToggler is given.'); } // Toggler is not needed if the bar is not expandable if (!widget.expandable) { return Container(); } // Toggler is provided, use it if (widget.toggler != null) { return SideBarTogglerWidget( togglerTheme: theme.togglerTheme, togglerData: widget.toggler!, expanded: _expanded, onToggle: () => _toggle(), ); } else { // Create the default toggler and use it const SideBarToggler barToggler = SideBarToggler(); return SideBarTogglerWidget( togglerTheme: theme.togglerTheme, togglerData: barToggler, expanded: _expanded, onToggle: () => _toggle(), ); } } /// Determines whether to put a [Border] between the bar and the main content /// /// Influenced by [SideNavigationBarTheme.showMainDivider] Border? _evaluateMainDivider() { if (!theme.showMainDivider) { return null; } return Border( right: BorderSide( width: 0.5, color: MediaQuery.of(context).platformBrightness == Brightness.light ? Colors.grey[700]! : Colors.white, ), ); } /// Determines if a [Divider] should be displayed between the [SideNavigationBarHeaderWidget] and /// the [SideNavigationBar.items] /// /// Influenced by [SideNavigationBarTheme.showHeaderDivider] /// If no [SideNavigationBarHeader] was provided no Divider is returned Widget _evaluateHeaderDivider() { if (!theme.showHeaderDivider) { return Container(); } if (widget.header == null) { return Container(); } return const Divider(); } /// Determines if a [Divider] should be displayed between the [SideNavigationBarFooterWidget] and /// the [SideNavigationBar.items] /// /// Influenced by [SideNavigationBarTheme.showFooterDivider] /// If no [SideNavigationBarFooter] was provided no Divider is returned /// If [SideNavigationBar.expandable] is false no Divider is returned Widget _evaluateFooterDivider() { if (!theme.showFooterDivider) { return Container(); } if (widget.footer == null) { return Container(); } if (!widget.expandable) { return Container(); } return const Divider(); } }
31.006309
101
0.656018
84d86ebdc9930014145a5242f893f19e68243561
8,223
h
C
include/math/math_am9511.h
dikdom/z88dk
40c55771062b0ea9bb2f0d5b73e2f754fc12b6b0
[ "ClArtistic" ]
1
2022-03-08T11:55:58.000Z
2022-03-08T11:55:58.000Z
include/math/math_am9511.h
dikdom/z88dk
40c55771062b0ea9bb2f0d5b73e2f754fc12b6b0
[ "ClArtistic" ]
2
2022-03-20T22:17:35.000Z
2022-03-24T16:10:00.000Z
include/math/math_am9511.h
jorgegv/z88dk
127130cf11f9ff268ba53e308138b12d2b9be90a
[ "ClArtistic" ]
null
null
null
#ifndef __MATH_AM9511_H #define __MATH_AM9511_H #include <sys/compiler.h> #include <sys/types.h> #include <limits.h> #define FLT_ROUNDS 1 #define FLT_RADIX 2 #define FLT_MANT_DIG 23 #define DBL_MANT_DIG 23 #define FLT_DIG 7 #define DBL_DIG 7 #define HUGE_POS_F32 (+9.2e+18) #define TINY_POS_F32 (+2.7e-20) #define HUGE_NEG_F32 (-9.2e+18) #define TINY_NEG_F32 (-2.7e-20) #define MAXL2_F32 (+63.0) #define MINL2_F32 (-64.0) #define MAXLOG_F32 (+43.6657) #define MINLOG_F32 (−45.0) #define MAXL10_F32 (+18.9638) #define MINL10_F32 (−19.5686) #define HUGE_VAL_F32 (0x7F800000) #define INFINITY_POS_F32 (0x7F800000) #define INFINITY_NEG_F32 (0xFF800000) #ifdef __SCCZ80 /* Trigonometric functions */ extern double_t __LIB__ sin(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ cos(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ tan(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ asin(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ acos(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ atan(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ atan2(double_t y,double_t x) __smallc; extern double_t __LIB__ atan2_callee(double_t y,double_t x) __smallc __z88dk_callee; #define atan2(a,b) atan2_callee(a,b) /* Hyperbolic functions */ extern double_t __LIB__ sinh(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ cosh(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ tanh(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ asinh(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ acosh(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ atanh(double_t x) __smallc __z88dk_fastcall; /* Power functions */ extern double_t __LIB__ sqr(double_t a) __smallc __z88dk_fastcall; extern double_t __LIB__ sqrt(double_t a) __smallc __z88dk_fastcall; extern double_t __LIB__ pow(double_t x,double_t y) __smallc; extern double_t __LIB__ pow_callee(double_t x,double_t y) __smallc __z88dk_callee; #define pow(a,b) pow_callee(a,b) /* Exponential */ extern double_t __LIB__ exp(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ exp2(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ exp10(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ log(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ log2(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ log10(double_t x) __smallc __z88dk_fastcall; #define log1p(x) log(1.+x) #define expm1(x) (exp(x)-1.) /* Nearest integer, absolute value, and remainder functions */ extern double_t __LIB__ ceil(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ floor(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ round(double_t x) __smallc __z88dk_fastcall; #define trunc(a) (a>0.?floor(a):ceil(a)) //#define round(a) (a>0.?floor(a+0.5):ceil(a-0.5)) #define rint(a) ceil(a) /* Manipulation */ extern double_t __LIB__ div2(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ mul2(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ mul10u(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ ldexp(double_t x,int exp) __smallc; extern double_t __LIB__ ldexp_callee(double_t x,int exp) __smallc __z88dk_callee; #define ldexp(a,b) ldexp_callee(a,b) #define scalbn(x,pw2) ldexp(x,pw2) extern double_t __LIB__ modf(double_t value,double_t *iptr) __smallc; extern double_t __LIB__ modf_callee(double_t value,double_t *iptr) __smallc __z88dk_callee; #define modf(a,b) modf_callee(a,b) extern double_t __LIB__ frexp(double_t value,int *exp) __smallc; extern double_t __LIB__ frexp_callee(double_t value,int *exp) __smallc __z88dk_callee; #define frexp(a,b) frexp_callee(a,b) /* General */ extern double_t __LIB__ fabs(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ fmod(double_t x,double_t y) __smallc; extern double_t __LIB__ fmod_callee(double_t x,double_t y) __smallc __z88dk_callee; #define fmod(a,b) fmod_callee(a,b) extern double_t __LIB__ hypot(double_t x,double_t y) __smallc; extern double_t __LIB__ hypot_callee(double_t x,double_t y) __smallc __z88dk_callee; #define hypot(a,b) hypot_callee(a,b) /* Helper functions */ extern double_t __LIB__ atof(char *) __smallc __z88dk_fastcall; extern void __LIB__ ftoa(double_t, int, char *) __smallc; extern void __LIB__ ftoe(double_t, int, char *) __smallc; extern double_t __LIB__ f32_fam9511(double_t x) __smallc __z88dk_fastcall; extern double_t __LIB__ fam9511_f32(double_t x) __smallc __z88dk_fastcall; #endif #ifdef __SDCC /* Trigonometric functions */ extern double_t sin(double_t x) __z88dk_fastcall; extern double_t cos(double_t x) __z88dk_fastcall; extern double_t tan(double_t x) __z88dk_fastcall; extern double_t asin(double_t x) __z88dk_fastcall; extern double_t acos(double_t x) __z88dk_fastcall; extern double_t atan(double_t x) __z88dk_fastcall; extern double_t atan2(double_t y,double_t x); extern double_t atan2_callee(double_t y,double_t x) __z88dk_callee; #define atan2(a,b) atan2_callee(a,b) /* Hyperbolic functions */ extern double_t sinh(double_t x) __z88dk_fastcall; extern double_t cosh(double_t x) __z88dk_fastcall; extern double_t tanh(double_t x) __z88dk_fastcall; extern double_t asinh(double_t x) __z88dk_fastcall; extern double_t acosh(double_t x) __z88dk_fastcall; extern double_t atanh(double_t x) __z88dk_fastcall; /* Power functions */ extern double_t sqr(double_t a) __z88dk_fastcall; extern double_t sqrt(double_t a) __z88dk_fastcall; extern double_t pow(double_t x,double_t y); extern double_t pow_callee(double_t x,double_t y) __z88dk_callee; #define pow(a,b) pow_callee(a,b) /* Exponential */ extern double_t exp(double_t x) __z88dk_fastcall; extern double_t exp2(double_t x) __z88dk_fastcall; extern double_t exp10(double_t x) __z88dk_fastcall; extern double_t log(double_t x) __z88dk_fastcall; extern double_t log2(double_t x) __z88dk_fastcall; extern double_t log10(double_t x) __z88dk_fastcall; #define log1p(x) log(1.+x) #define expm1(x) (exp(x)-1.) /* Nearest integer, absolute value, and remainder functions */ extern double_t ceil(double_t x) __z88dk_fastcall; extern double_t floor(double_t x) __z88dk_fastcall; extern double_t round(double_t x) __z88dk_fastcall; #define trunc(a) (a>0.?floor(a):ceil(a)) //#define round(a) (a>0.?floor(a+0.5):ceil(a-0.5)) #define rint(a) ceil(a) /* Manipulation */ extern double_t div2(double_t x) __z88dk_fastcall; extern double_t mul2(double_t x) __z88dk_fastcall; extern double_t mul10u(double_t x) __z88dk_fastcall; extern double_t ldexp(double_t x,int exp); extern double_t ldexp_callee(double_t x,int exp) __z88dk_callee; #define ldexp(a,b) ldexp_callee(a,b) #define scalbn(x,pw2) ldexp(x,pw2) extern double_t modf(double_t value,double_t *iptr); extern double_t modf_callee(double_t value,double_t *iptr) __z88dk_callee; #define modf(a,b) modf_callee(a,b) extern double_t frexp(double_t value,int *exp); extern double_t frexp_callee(double_t value,int *exp) __z88dk_callee; #define frexp(a,b) frexp_callee(a,b) /* General */ extern double_t fabs(double_t x) __z88dk_fastcall; extern double_t fmod(double_t x,double_t y); extern double_t fmod_callee(double_t x,double_t y) __z88dk_callee; #define fmod(a,b) fmod_callee(a,b) extern double_t hypot(double_t x,double_t y); extern double_t hypot_callee(double_t x,double_t y) __z88dk_callee; #define hypot(a,b) hypot_callee(a,b) /* Helper functions */ extern double_t atof(char *); extern void ftoa(double_t, int, char *); extern void ftoe(double_t, int, char *); extern double_t f32_fam9511(double_t x) __z88dk_fastcall; extern double_t fam9511_f32(double_t x) __z88dk_fastcall; #endif /* Classification functions */ #define FP_NORMAL 0 #define FP_ZERO 1 #define FP_NAN 2 #define FP_INFINITE 3 #define FP_SUBNORMAL 4 extern int fpclassify(double_t x) __smallc; #define isinf(x) ( fpclassify(x) == FP_INFINITE ) #define isnan(x) ( fpclassify(x) == FP_NAN ) #define isnormal(x) 1 #define isfinite(x) ( fpclassify(x) == FP_NORMAL ) #endif
38.971564
91
0.782318
e8b711a2e3cbe61fa8bb734d6c6e7af255e87de5
23,671
cpp
C++
clipper/qtclipper.cpp
kopoli/paperless
ec41bdb671d45875536035129b55266a67f11bff
[ "MIT" ]
14
2016-04-12T04:44:00.000Z
2021-05-31T17:16:17.000Z
clipper/qtclipper.cpp
kopoli/paperless
ec41bdb671d45875536035129b55266a67f11bff
[ "MIT" ]
null
null
null
clipper/qtclipper.cpp
kopoli/paperless
ec41bdb671d45875536035129b55266a67f11bff
[ "MIT" ]
2
2018-01-31T05:00:30.000Z
2021-03-22T09:18:31.000Z
/* * Copyright (c) 2012 Kalle Kankare <kalle.kankare@iki.fi> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include <functional> #include <QtDebug> #include <QApplication> #include <QCommandLineParser> #include <QGraphicsPixmapItem> #include <QGraphicsScene> #include <QGraphicsSceneMouseEvent> #include <QGraphicsSceneWheelEvent> #include <QGraphicsView> #include <QKeyEvent> #include <QStack> #include <QUndoCommand> #include <QFileInfo> #include <QDir> #include <QJsonObject> #include <QJsonArray> #include <QJsonDocument> #define CLIPPER_VERSION "1.0" struct Options { QStringList infiles; QString outpattern; bool discardNoChange; }; class ClipperScene; class SceneChanger { public: virtual QString saveImage(const QImage &, int, bool) = 0; virtual bool deleteImage(const QString&) = 0; virtual bool popScene() = 0; enum Direction { NEXT, PREVIOUS, SUBIMAGE }; virtual bool pushScene(const QImage&, Direction = NEXT, int = 0) = 0; virtual ClipperScene* getScene() = 0; virtual void pushCmd(QUndoCommand *) = 0; virtual void redo() = 0; virtual void undo() = 0; virtual void quit() = 0; }; enum CustomItemTypes { ClipperRectType = QGraphicsItem::UserType + 1, }; class ClipperRect : public QGraphicsRectItem { public: enum Style { LASSO_SELECTION, SELECTED, SAVED, }; struct rect_t { QRectF rect; Style style; int position; QTransform transform; QTransform createTransform; }; ClipperRect(QRectF rect = QRectF(), QGraphicsItem *parent = 0) : QGraphicsRectItem(rect, parent), m_style(LASSO_SELECTION), m_pos(0) {} void setStyle(Style style) { m_style = style; QPen pen; QBrush brush; switch(m_style) { case LASSO_SELECTION: pen.setColor(Qt::black); pen.setWidth(3); break; case SELECTED: pen.setColor(Qt::green); pen.setWidth(2); brush.setColor(Qt::darkGreen); brush.setStyle(Qt::BDiagPattern); setBrush(brush); break; case SAVED: pen.setColor(Qt::gray); pen.setWidth(2); brush.setColor(Qt::gray); brush.setStyle(Qt::BDiagPattern); setBrush(brush); default: break; } setPen(pen); } Style style() const { return m_style; } void setPosition(const int pos) {m_pos = pos;} int position() const { return m_pos; } virtual int type() const { return ClipperRectType; } QTransform createTransform() const { return m_createTransform; } void setCreateTransform(QTransform transform) { m_createTransform = transform; } QRectF createRect() { QTransform bak = transform(); QRectF ret; setTransform(m_createTransform); ret = boundingRect(); setTransform(bak); return ret; } rect_t save() { rect_t ret; ret.rect = rect(); ret.style = m_style; ret.position = m_pos; ret.transform = transform(); ret.createTransform = m_createTransform; return ret; } void load(const rect_t& r) { setRect(r.rect); m_style = r.style; m_pos = r.position; setTransform(r.transform); m_createTransform = r.createTransform; } private: Style m_style; int m_pos; QTransform m_createTransform; }; template<typename... Locals> class ClipperCommand : public QUndoCommand { public: typedef std::tuple<Locals...> locals_t; template<typename C> ClipperCommand(C&& cmd): QUndoCommand(0) { m_cmd = std::bind(cmd, std::placeholders::_1, this); } template<typename... Locals2> void set(Locals2&&... locals) { m_local = std::forward_as_tuple(locals...); } template<std::size_t I> typename std::tuple_element<I,locals_t>::type get() { return std::get<I>(m_local); } virtual void undo() { m_cmd(false); } virtual void redo() { m_cmd(true); } private: locals_t m_local; std::function<void(bool)> m_cmd; }; class ClipperScene : public QGraphicsScene { public: ClipperScene(const QImage &img, SceneChanger* changer, QObject *parent = 0) : QGraphicsScene(parent), changer(changer), m_pic(0), m_rectpos(0), m_changed(false), m_size(img.size()) { m_pic = addPixmap(QPixmap::fromImage(img)); fitPicInView(); } protected: virtual void keyPressEvent(QKeyEvent *event) { switch(event->key()) { case Qt::Key_Q: changer->quit(); break; // toggle fullscreen case Qt::Key_F: { QGraphicsView *view = getView(); if(view->isFullScreen()) view->showNormal(); else view->showFullScreen(); break; } case Qt::Key_U: changer->undo(); break; case Qt::Key_R: changer->redo(); break; default: break; } } virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event) { debugMouseEvent("release",event); QPointF p1 = event->buttonDownScenePos(event->button()), p2 = event->scenePos(); SceneChanger *ch = changer; switch(event->button()) { case Qt::LeftButton: { QRectF rect(p1,p2); rect = rect.normalized(); // Add a new rectangle if(!rect.size().isNull()) { qDebug() << "Added rect of size " << rect; typedef ClipperCommand<int> cmd_rect_t; changer->pushCmd(new cmd_rect_t( [rect, ch] (bool redo, cmd_rect_t* ptr) { if(redo) { int pos = -1; if (ptr->get<0>()) pos = ptr->get<0>(); ClipperRect *cr = ch->getScene()->addRect(rect, pos); ptr->set(cr->position()); } else { ch->getScene()->removeRect(ptr->get<0>()); } })); } // A normal click else { ClipperRect *cr = getClipperRect(event->scenePos()); // Save the whole current image if(!cr) { rect = sceneRect(); bool changed = m_changed; QTransform tr = m_pic->transform(); typedef ClipperCommand<QString,QImage,RectData> cmd_saveimg_t; changer->pushCmd(new cmd_saveimg_t( [rect, ch, changed, tr] (bool redo, cmd_saveimg_t* ptr) { if(redo){ QImage img = ch->getScene()->createImage(rect, tr); RectData saved = ch->getScene()->saveRects(); ptr->set(ch->saveImage(img, 0, changed), img, saved); ch->popScene(); } else { ch->deleteImage(ptr->get<0>()); ch->pushScene(ptr->get<1>(), SceneChanger::PREVIOUS); ch->getScene()->loadRects(ptr->get<2>()); } })); } // save a subimage limited by the ClipperRect else { rect = cr->boundingRect(); typedef ClipperCommand<QString> cmd_savesubimg_t; changer->pushCmd(new cmd_savesubimg_t( [rect, cr, ch] (bool redo, cmd_savesubimg_t* ptr){ if(redo){ QImage img = ch->getScene()->createImage(rect, cr->createTransform()); ptr->set(ch->saveImage(img, cr->position(), true)); cr->setStyle(ClipperRect::SAVED); } else { ch->deleteImage(ptr->get<0>()); cr->setStyle(ClipperRect::SELECTED); } })); } } break; } case Qt::RightButton: { ClipperRect *cr = getClipperRect(event->scenePos()); QRectF rect; // Discard the whole image and switch to the next if (!cr) { rect = sceneRect(); QTransform tr = m_pic->transform(); typedef ClipperCommand<QImage,RectData> cmd_discardimg_t; changer->pushCmd(new cmd_discardimg_t ( [rect, ch, tr](bool redo, cmd_discardimg_t *ptr) { if (redo) { ptr->set(ch->getScene()->createImage(rect, tr), ch->getScene()->saveRects()); ch->popScene(); } else { ch->pushScene(ptr->get<0>(), SceneChanger::PREVIOUS); ch->getScene()->loadRects(ptr->get<1>()); } })); } // Discard a rectangle unless it has already been saved else if(cr->style() != ClipperRect::SAVED) { rect = cr->boundingRect(); int rectpos = cr->position(); typedef ClipperCommand<QRectF, int> cmd_removerect_t; changer->pushCmd(new cmd_removerect_t( [rect, rectpos, ch] (bool redo, cmd_removerect_t* ptr) { if (redo) { int pos = rectpos; if (ptr->get<1>() != 0) pos = ptr->get<1>(); ch->getScene()->removeRect(pos); ptr->set(rect, pos); } else { ClipperRect *re = ch->getScene()->addRect( ptr->get<0>(), ptr->get<1>()); ptr->set(ptr->get<0>(), re->position()); } })); } break; } case Qt::MiddleButton: { ClipperRect *cr = getClipperRect(event->scenePos()); // zoom to a given rectangle if (cr) { QRectF rect = cr->createRect(); int imagepos = cr->position(); typedef ClipperCommand<> cmd_zoomimg_t; QTransform tr = cr->createTransform(); qDebug() << "Current transform" << m_pic->transform() << "createtransform" << tr; changer->pushCmd(new cmd_zoomimg_t( [rect, ch, imagepos, tr](bool redo, cmd_zoomimg_t*){ if (redo) { QImage img = ch->getScene()->createImage(rect, tr); ch->pushScene(img, SceneChanger::SUBIMAGE, imagepos); } else { ch->popScene(); }})); } break; } default: break; } } virtual void wheelEvent(QGraphicsSceneWheelEvent *event) { qDebug() << "Wheel: " << " modifiers: " << event->modifiers() << " delta: " << event->delta() << " orientation: " << event->orientation(); QTransform tr; // rotation if(event->modifiers() & Qt::ShiftModifier) { qreal amount = 2; if(event->modifiers() & Qt::ControlModifier) amount = 90; qreal deg = amount * sgn(event->delta()); tr = QTransform() .translate(m_size.width() / 2, m_size.height() / 2) .rotate(deg) .translate(- m_size.width() / 2, - m_size.height() / 2); m_changed = true; } #if 0 // disable scaling for now // scaling else if (event->modifiers() & Qt::ControlModifier) { qreal factor = 1.15; if(event->delta() < 0 ) factor = 1.0 / factor; tr = QTransform().scale(factor,factor); m_changed = true; } #endif m_pic->setTransform(tr, true); for (int i = 0; i < rects.size(); i++) rects.at(i)->setTransform(tr, true); } private: template <typename T> int sgn(T val) { return (T(0) < val) - (val < T(0)); } ClipperRect *addRect(const QRectF &coords, int pos = -1) { ClipperRect *rect = new ClipperRect(); if (pos < 0) pos = ++m_rectpos; rect->setRect(coords); rect->setStyle(ClipperRect::SELECTED); rect->setPosition(pos); rect->setCreateTransform(m_pic->transform()); rects.push_back(rect); addItem(rect); rect->show(); return rect; } ClipperRect *addRect(const ClipperRect::rect_t &r) { ClipperRect *ret = addRect(r.rect, r.position); ret->load(r); return ret; } void removeRect(int pos) { QList<ClipperRect*>::iterator it = rects.begin(); for(;it != rects.end(); ++it) if((*it)->position() == pos) { removeItem(*it); rects.erase(it); break; } } void displayRects(bool visible) { for (int i = 0; i < rects.size(); i++) if(!visible) rects.at(i)->hide(); else rects.at(i)->show(); } QGraphicsItem* getItem(QPointF at) { return itemAt(at,QTransform()); } bool pointsAtPic(QPointF at) { return getItem(at) == m_pic; } QRectF getSubItemRect(QPointF at) { QGraphicsItem *it = getItem(at); QRectF ret; if (!it || it->type() != ClipperRectType) return ret; return it->boundingRect(); } ClipperRect *getClipperRect(QPointF at) { QGraphicsItem *it = getItem(at); if(!it || it->type() != ClipperRectType) return 0; return static_cast<ClipperRect*>(it); } QGraphicsView *getView() { return (views().count()) ? views().first() : 0; } void fitPicInView() { if(!m_pic || !views().count()) return; QGraphicsView *view = getView(); view->centerOn(m_pic); view->fitInView(m_pic,Qt::KeepAspectRatio); } QImage createImage(const QRectF &rect, QTransform tr = QTransform()) { QImage img(rect.size().toSize(),QImage::Format_ARGB32); img.fill(Qt::white); QPainter pt(&img); displayRects(false); QTransform bak = m_pic->transform(); m_pic->setTransform(tr); render(&pt, QRectF(), rect); m_pic->setTransform(bak); displayRects(true); return img; } void debugMouseEvent(char const* name, QGraphicsSceneMouseEvent *event) { qDebug() << name << ":" << event->button() << "pos: " << event->buttonDownScenePos(event->button()) << " last: " << event->scenePos(); } typedef QList<ClipperRect::rect_t> RectData; RectData saveRects() { RectData ret; for (int i = 0; i < rects.size(); i++) ret.push_back(rects.at(i)->save()); return ret; } void loadRects(const RectData &data) { for (int i = 0; i < data.size(); i++) addRect(data.at(i)); } SceneChanger *changer; QGraphicsPixmapItem *m_pic; ClipperRect selectionRect; QList<ClipperRect*> rects; int m_rectpos; bool m_changed; QSize m_size; }; class ClipperView : public QGraphicsView { public: explicit ClipperView(QWidget *parent = 0) : QGraphicsView(parent) { setRenderHints(QPainter::Antialiasing | QPainter::SmoothPixmapTransform); setDragMode(QGraphicsView::RubberBandDrag); } void setClipperScene(ClipperScene *scene) { setScene(scene); fitInView(scene->sceneRect(),Qt::KeepAspectRatio); } void resizeEvent(QResizeEvent *) { fitInView(scene()->sceneRect(),Qt::KeepAspectRatio); } }; class ClipperJsonFile { QJsonArray images; public: void add(const QString& name, const QString& parent = QString()) { QJsonObject item; item["name"] = name; if(!parent.isEmpty()) item["parent"] = parent; images.push_back(item); } void remove(const QString& name) { QJsonArray::iterator it = images.begin(); for (; it != images.end(); it++) { QJsonObject ob = (*it).toObject(); if (ob["name"].toString() == name) { images.erase(it); break; } } } bool save(const QString& filename) { QJsonDocument doc(images); QString tmp = ""; tmp.append(doc.toJson()); qDebug() << "Generating the following json into " << filename << ":\n" << tmp; QFile fp(filename); if(!fp.open(QIODevice::WriteOnly)) { qWarning() << "Could not open file " << filename << " for writing."; return false; } return fp.write(doc.toJson()) >= 0; } }; class SceneHandler : public SceneChanger { public: SceneHandler(Options &opts) : sceneStack(), view(), opts(opts) { scenePosStack.push(0); popScene(); cmdStack.setUndoLimit(10); } virtual QString saveImage(const QImage &img, int subImageNumber, bool changed) { if(img.isNull() || (!changed && opts.discardNoChange)) return QString(); QString name = opts.outpattern; QString parent; for (int i = 0; i < scenePosStack.size(); i++) name += QString("-") + QString::number(scenePosStack.at(i)); if (subImageNumber > 0) { parent = name + ".jpg"; name = name + "+" + QString::number(subImageNumber); } name += ".jpg"; qDebug() << "Saving image to " << name; json.add(name, parent); img.save(name); return name; } virtual bool deleteImage(const QString& name) { qDebug() << "removing file " << name; if(name.isNull()) return false; json.remove(name); return QFile::remove(name); } void quit() { json.save("clipper-images.json"); QCoreApplication::exit(); } // replaces current scene with a new one or quits if not available. bool popScene() { QGraphicsScene *top = 0; if(!sceneStack.empty()) top = sceneStack.pop(); if(sceneStack.empty()) { QString fname; do { if(opts.infiles.empty()) { this->quit(); return false; } fname = opts.infiles.first(); opts.infiles.removeFirst(); ++scenePosStack.top(); qDebug()<< "Filename is here" << fname << "and position " << scenePosStack.top(); } while(newScene(fname).isNull()); } else if(scenePosStack.size() > 1) scenePosStack.pop(); view.setClipperScene(sceneStack.top()); view.show(); if(top) top->deleteLater(); return true; } bool pushScene(const QImage& img, Direction dir = NEXT, int pos = 0) { if (dir == PREVIOUS) scenePosStack.top()--; else if(dir == SUBIMAGE) scenePosStack.push(pos); newScene(img); view.setClipperScene(sceneStack.top()); return true; } ClipperScene *getScene() { return !sceneStack.empty() ? sceneStack.top() : 0; } void pushCmd(QUndoCommand *cmd) { cmdStack.push(cmd); } void undo() { cmdStack.undo(); } void redo() { cmdStack.redo(); } private: QImage newScene(const QImage &img) { sceneStack.push(new ClipperScene(img, this)); return img; } QImage newScene(const QString &name) { QImage img; if (!img.load(name)) return QImage(); return newScene(img); } QStack<ClipperScene* > sceneStack; QUndoStack cmdStack; QStack<int> scenePosStack; ClipperView view; Options opts; ClipperJsonFile json; }; int main(int argc, char **argv) { QApplication app(argc, argv); QCommandLineParser parser; Options opts; // Command line handling QCoreApplication::setApplicationName(argv[0]); QCoreApplication::setApplicationVersion(CLIPPER_VERSION); parser.addVersionOption(); parser.addHelpOption(); parser.setApplicationDescription("Image clipping application."); QCommandLineOption OutOpt(QStringList() << "o" << "out", "Pattern of output files.", "outpattern"); parser.addOption(OutOpt); QCommandLineOption DiscardNoChange(QStringList() << "d" << "discard-if-not-changed", "Discard the image when saving if not changed."); parser.addOption(DiscardNoChange); parser.process(app); opts.infiles = parser.positionalArguments(); if (!parser.isSet(OutOpt)) { qCritical() << "Error: --out is a required parameter.\n"; parser.showHelp(1); Q_UNREACHABLE(); } opts.outpattern = parser.value(OutOpt); QFileInfo info(opts.outpattern); if (!info.dir().exists()) { qCritical() << "Error: --out directory" << info.dir().path() << " does not exist.\n"; parser.showHelp(1); Q_UNREACHABLE(); } opts.discardNoChange = false; if (parser.isSet(DiscardNoChange)) opts.discardNoChange = true; if (opts.infiles.empty()) return 0; //DEBUG qDebug() << "infiles:"; for (int i = 0; i < opts.infiles.size(); ++i) qDebug() << opts.infiles.at(i).toLocal8Bit().constData(); qDebug() << "outpattern: " << opts.outpattern.toLocal8Bit().constData(); // The processing SceneHandler sh(opts); return app.exec(); }
28.761847
109
0.507668
8125fb83a61a788967f2c993de94452978e3d49e
299
lua
Lua
MMOCoreORB/bin/scripts/object/custom_content/tangible/item/item_outbreak_stun_baton_hidden_content.lua
V-Fib/FlurryClone
40e0ca7245ec31b3815eb6459329fd9e70f88936
[ "Zlib", "OpenSSL" ]
18
2017-02-09T15:36:05.000Z
2021-12-21T04:22:15.000Z
MMOCoreORB/bin/scripts/object/custom_content/tangible/item/item_outbreak_stun_baton_hidden_content.lua
V-Fib/FlurryClone
40e0ca7245ec31b3815eb6459329fd9e70f88936
[ "Zlib", "OpenSSL" ]
61
2016-12-30T21:51:10.000Z
2021-12-10T20:25:56.000Z
MMOCoreORB/bin/scripts/object/custom_content/tangible/item/item_outbreak_stun_baton_hidden_content.lua
V-Fib/FlurryClone
40e0ca7245ec31b3815eb6459329fd9e70f88936
[ "Zlib", "OpenSSL" ]
71
2017-01-01T05:34:38.000Z
2022-03-29T01:04:00.000Z
object_tangible_item_item_outbreak_stun_baton_hidden_content = object_tangible_item_shared_item_outbreak_stun_baton_hidden_content:new { } ObjectTemplates:addTemplate(object_tangible_item_item_outbreak_stun_baton_hidden_content, "object/tangible/item/item_outbreak_stun_baton_hidden_content.iff")
49.833333
157
0.923077
2f74952e0603f685319239566b57d1a61ab0ae21
11,343
php
PHP
backend/views/usermobile/reply.php
shellinnet/swt
7ed3e749c002d6f25cff41e3ec924d1d5ee13685
[ "BSD-3-Clause" ]
null
null
null
backend/views/usermobile/reply.php
shellinnet/swt
7ed3e749c002d6f25cff41e3ec924d1d5ee13685
[ "BSD-3-Clause" ]
null
null
null
backend/views/usermobile/reply.php
shellinnet/swt
7ed3e749c002d6f25cff41e3ec924d1d5ee13685
[ "BSD-3-Clause" ]
null
null
null
<?php use yii\helpers\Html; $lj='/data/home/hyu4458630001/htdocs/swtmanager'; require $lj . '/vendor/api_sdk/vendor/autoload.php'; use Aliyun\Core\Config; use Aliyun\Core\Profile\DefaultProfile; use Aliyun\Core\DefaultAcsClient; use Aliyun\Api\Sms\Request\V20170525\SendSmsRequest; use Aliyun\Api\Sms\Request\V20170525\SendBatchSmsRequest; use Aliyun\Api\Sms\Request\V20170525\QuerySendDetailsRequest; $conn=mysqli_connect('hdm121115553.my3w.com','hdm121115553','swt62899308swt','hdm121115553_db'); if($conn->connect_errno){ die('连接失败'.$conn->connect_errno); } $conn->set_charset('utf8'); //学生注册 $submit=isset($_POST["submit"])?$_POST["submit"]:''; $studentphone=isset($_POST["studentphone"])?$_POST["studentphone"]:''; $studentname=isset($_POST["studentname"])?$_POST["studentname"]:''; $kname=isset($_POST["kname"])?$_POST["kname"]:''; $teacher=isset($_POST["teacher"])?$_POST["teacher"]:''; $shiduan=isset($_POST["shiduan"])?$_POST["shiduan"]:''; $studentkeshi=isset($_POST["studentkeshi"])?$_POST["studentkeshi"]:''; $studentdates=isset($_POST["studentdate"])?$_POST["studentdate"]:''; $studenttime=isset($_POST["studenttime"])?$_POST["studenttime"]:''; //算出周几 $datetime=$studentdates; $zho=mysqli_query($conn,"select dayofweek('".$datetime."');"); $zhou=mysqli_fetch_array($zho); $week2=$zhou[0]; switch ($week2){ case 1: $weekmsg='周日'; break; case 2: $weekmsg='周一'; break; case 3: $weekmsg='周二'; break; case 4: $weekmsg='周三'; break; case 5: $weekmsg='周四'; break; case 6: $weekmsg='周五'; break; case 7: $weekmsg='周六'; break; default: $weekmsg=''; break; } //获取当前日期 $date=date('Y-m-d',time()); $jj=array(); //计算有效时间 $youxiaotime=date("Y-m-d",strtotime($studentdates."+".$studenttime."day")); $createdtime=date("Y-m-d",time()); //根据$teacher查询老师id号 $ls="select * from admin where m_name='".$teacher."'"; $laoshi=mysqli_query($conn,$ls); while($tt=mysqli_fetch_array($laoshi)){ $teas=$tt['id']; } if($studentphone==''){ echo "<script>alert('请输入手机号!');location.href='http://www.siwutang.vip/swtmanager/backend/web/index.php?r=usermobile/register';</script>"; }else if(strlen($studentphone)!=11){ echo "<script>alert('手机号必须为11位!');location.href='http://www.siwutang.vip/swtmanager/backend/web/index.php?r=usermobile/register';</script>"; }else if(is_numeric($studentphone)) { //查询该课程的座位总数,上课学生总数 $zs="SELECT state,count(xueyuan) FROM course where time='".$studentdates."' and kid='".$kname."' and ktime='".$shiduan."' and teacherid='".$teas."' group by time,kid,ktime,teacherid"; $zong=mysqli_query($conn,$zs); $row= mysqli_num_rows($zong); if($row>0){ while($state=mysqli_fetch_array($zong)){ $weizi=$state['state']; $totalxue=$state['count(xueyuan)']; } //有空位则添加,否则跳到注册不成功界面 if($totalxue<$weizi){ $ls="INSERT INTO student(mobile,password,sname,knameid,teacherid,duan,zkeshi,date,oktime,created_at,syks,week) VALUES('".$studentphone."','000000','".$studentname."','".$kname."','".$teas."','".$shiduan."','".$studentkeshi."','".$studentdates."','".$youxiaotime."','".$createdtime."','".$studentkeshi."','".$weekmsg."')"; $student=mysqli_query($conn,$ls); $ma="select max(id) from student"; $max=mysqli_query($conn,$ma); $shu=mysqli_fetch_array($max); $maxid=$shu['max(id)']; //获取时间 $sj="select date,id from student where id='".$maxid."'"; $dates=mysqli_query($conn,$sj); $date2=mysqli_fetch_array($dates); //读取输入的总课时和时间,计算时间,循环每次+7天 //排课 $pk="INSERT INTO course(time,kid,ktime,teacherid,xueyuan,total,syks,week) VALUES('".$studentdates."','".$kname."','".$shiduan."','".$teas."','".$studentname."','".$studentkeshi."','".$studentkeshi."','".$weekmsg."') "; $pks=mysqli_query($conn,$pk); for($i=2;$i<=$studentkeshi;$i++){ $studentdates=date("Y-m-d",strtotime($studentdates."+7day")); //查询该日期是否在休假日期内 $sfrest="SELECT * FROM rest"; $sfrests=mysqli_query($conn,$sfrest); while($xiuxi=mysqli_fetch_array($sfrests)){ $startTime=$xiuxi['begintime']; $endTime=$xiuxi['endtime']; $rq=rangeTime($startTime,$endTime,$studentdates); if($rq=='true'){ $i=$i-1; }else{ $pk2="INSERT INTO course(time,kid,ktime,teacherid,xueyuan,total,syks,week) VALUES('".$studentdates."','".$kname."','".$shiduan."','".$teas."','".$studentname."','".$studentkeshi."','".$studentkeshi."','".$weekmsg."') "; $pks2=mysqli_query($conn,$pk2); } } } }else{ echo "<script>alert('该课程已满!');location.href='http://www.siwutang.vip/swtmanager/backend/web/index.php?r=usermobile/register';</script>"; } }else{ $ls="INSERT INTO student(mobile,password,sname,knameid,teacherid,duan,zkeshi,date,oktime,created_at,syks,week) VALUES('".$studentphone."','000000','".$studentname."','".$kname."','".$teas."','".$shiduan."','".$studentkeshi."','".$studentdates."','".$youxiaotime."','".$createdtime."','".$studentkeshi."','".$weekmsg."')"; $student=mysqli_query($conn,$ls); $ma="select max(id) from student"; $max=mysqli_query($conn,$ma); $shu=mysqli_fetch_array($max); $maxid=$shu['max(id)']; //获取时间 $sj="select date,id from student where id='".$maxid."'"; $dates=mysqli_query($conn,$sj); $date2=mysqli_fetch_array($dates); $weizi=8; $xs="INSERT INTO course(time,kid,ktime,total,teacherid,xueyuan,state,syks,week) VALUES('".$studentdates."','".$kname."','".$shiduan."','".$studentkeshi."','".$teas."','".$studentname."','".$weizi."','".$studentkeshi."','".$weekmsg."')"; $xue=mysqli_query($conn,$xs); for($i=2;$i<=$studentkeshi;$i++){ $studentdates=date("Y-m-d",strtotime($studentdates."+7day")); //查询该日期是否在休假日期内 $sfrest="SELECT * FROM rest"; $sfrests=mysqli_query($conn,$sfrest); while($xiuxi=mysqli_fetch_array($sfrests)){ $startTime=$xiuxi['begintime']; $endTime=$xiuxi['endtime']; $rq=rangeTime($startTime,$endTime,$studentdates); if($rq=='true'){ $i=$i-1; }else{ $pk2="INSERT INTO course(time,kid,ktime,teacherid,xueyuan,total,syks,week) VALUES('".$studentdates."','".$kname."','".$shiduan."','".$teas."','".$studentname."','".$studentkeshi."','".$studentkeshi."','".$weekmsg."') "; $pks2=mysqli_query($conn,$pk2); } } } } }else{ echo "<script>alert('手机号必须为数字!');location.href='http://www.siwutang.vip/swtmanager/backend/web/index.php?r=usermobile/register';</script>"; } function rangeTime($startTime,$endTime,$studentdates){ $start = strtotime($startTime); $end = strtotime($endTime); //当前时间 $now = strtotime($studentdates); if($now >=$start && $now<=$end){ $uu='true'; return $uu; }else{ $uu='false'; return $uu; } } //$kname查课程名 $km="select * from ke where id='".$kname."'"; $ke=mysqli_query($conn,$km); while($kcm=mysqli_fetch_array($ke)){ $kcname=$kcm['kname']; } //发送报名成功短信通知,学生名$studentname,手机名:$studentphone,课程名:$kcname // class SmsDemo // { // static $acsClient = null; // public static function getAcsClient() { // //产品名称:云通信短信服务API产品,开发者无需替换 // $product = "Dysmsapi"; // //产品域名,开发者无需替换 // $domain = "dysmsapi.aliyuncs.com"; // // TODO 此处需要替换成开发者自己的AK (https://ak-console.aliyun.com/) // $accessKeyId = "LTAIUgNdwZrVD68Z"; // AccessKeyId // $accessKeySecret = "RfmHNKea6VpAEAJFM98Muq8P1CviZO"; // AccessKeySecret // // 暂时不支持多Region // $region = "cn-hangzhou"; // // 服务结点 // $endPointName = "cn-hangzhou"; // if(static::$acsClient == null) { // //初始化acsClient,暂不支持region化 // $profile = DefaultProfile::getProfile($region, $accessKeyId, $accessKeySecret); // // 增加服务结点 // DefaultProfile::addEndpoint($endPointName, $region, $product, $domain); // // 初始化AcsClient用于发起请求 // static::$acsClient = new DefaultAcsClient($profile); // } // return static::$acsClient; // } // /** // * 发送短信 // * @return stdClass // */ // public static function sendSms($studentname,$kcname,$studentphone) { // $a=$studentname; // // 初始化SendSmsRequest实例用于设置发送短信的参数 // $request = new SendSmsRequest(); // //可选-启用https协议 // //$request->setProtocol("https"); // // 必填,设置短信接收号码 // $request->setPhoneNumbers("13764041075"); // // 必填,设置签名名称,应严格按"签名名称"填写,请参考: https://dysms.console.aliyun.com/dysms.htm#/develop/sign // $request->setSignName("四物堂"); // // 必填,设置模板CODE,应严格按"模板CODE"填写, 请参考: https://dysms.console.aliyun.com/dysms.htm#/develop/template // $request->setTemplateCode("SMS_161592852"); // // 可选,设置模板参数, 假如模板中存在变量需要替换则为必填项 // $request->setTemplateParam(json_encode(array( // 短信模板中字段的值 // "name"=>$studentname, // "kcname"=>$kcname // ), JSON_UNESCAPED_UNICODE)); // // 可选,设置流水号 // $request->setOutId("yourOutId"); // // 选填,上行短信扩展码(扩展码字段控制在7位或以下,无特殊需求用户请忽略此字段) // $request->setSmsUpExtendCode("1234567"); // // 发起访问请求 // $acsResponse = static::getAcsClient()->getAcsResponse($request); // return $acsResponse; // } // } // $response = SmsDemo::sendSms($studentname,$kcname,$studentphone); // echo "发送短信(sendSms)接口返回的结果:\n"; // print_r($response); ?> <style> .ziti{ font-size: 16px; font-family: 微软雅黑; } .juli{ width: 300px; height: 15px; } .left{ width: 50px; float:left; display: inline; } .leftbig{ width: 400px; float:left; display: inline; } </style> <script type="text/javascript" src="http://www.siwutang.vip/swtmanager/backend/web/statics/js/jquery-1.4.2.min.js"></script> <div class="main"> <div class="juli"></div> <div class="kuan ziti"><a href="http://www.siwutang.vip/swtmanager/backend/web/index.php?r=usermobile/main">返回所有学员管理</a></div> <div style="width: 697px;height: 440px;background-image: url(/swtmanager/backend/web/statics/images/zhuceok.jpg);margin: auto;"></div> </div>
34.794479
333
0.553381
98def6e5cb9ee648f685d8c83a4407d14e32ee33
149
html
HTML
preprocessed/f3.html
AbhinavChanduChenumalla/startbootstrap-grayscale
40d2c9181511430893bf54e19941f7d2450cb203
[ "MIT" ]
1
2022-03-13T13:07:57.000Z
2022-03-13T13:07:57.000Z
preprocessed/f3.html
Akashmallareddy/Rejolt
40d2c9181511430893bf54e19941f7d2450cb203
[ "MIT" ]
null
null
null
preprocessed/f3.html
Akashmallareddy/Rejolt
40d2c9181511430893bf54e19941f7d2450cb203
[ "MIT" ]
null
null
null
<html> <head> <style> body{ background-image:url('abdulkalam.jpg'); background-size:100% 100%; } </style> </head> <body> </body> </html>
12.416667
40
0.597315
79cf52e3737e2a47104ffe922d46005bde948d5a
614
asm
Assembly
oeis/170/A170741.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/170/A170741.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/170/A170741.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A170741: Expansion of g.f.: (1+x)/(1-21*x). ; 1,22,462,9702,203742,4278582,89850222,1886854662,39623947902,832102905942,17474161024782,366957381520422,7706105011928862,161828205250506102,3398392310260628142,71366238515473190982,1498691008824937010622,31472511185323677223062,660922734891797221684302,13879377432727741655370342,291466926087282574762777182,6120805447832934070018320822,128536914404491615470384737262,2699275202494323924878079482502,56684779252380802422439669132542,1190380364299996850871233051783382 add $0,1 mov $3,1 lpb $0 sub $0,1 add $2,$3 div $3,$2 mul $2,21 lpe mov $0,$2 div $0,21
43.857143
470
0.843648
0209d9c8999f05a74642808cae7fd0b439239cde
1,951
dart
Dart
packages/firebase_auth/firebase_auth/lib/firebase_auth.dart
bakboem/flutterfire
47519b920349e85e62927eaa2eaa9726cdd138d9
[ "BSD-3-Clause" ]
7,041
2019-08-21T02:23:18.000Z
2022-03-23T22:19:02.000Z
packages/firebase_auth/firebase_auth/lib/firebase_auth.dart
bakboem/flutterfire
47519b920349e85e62927eaa2eaa9726cdd138d9
[ "BSD-3-Clause" ]
6,385
2019-08-17T00:43:18.000Z
2022-03-23T22:57:07.000Z
packages/firebase_auth/firebase_auth/lib/firebase_auth.dart
bakboem/flutterfire
47519b920349e85e62927eaa2eaa9726cdd138d9
[ "BSD-3-Clause" ]
3,675
2019-08-16T21:49:44.000Z
2022-03-23T14:28:50.000Z
// ignore_for_file: require_trailing_commas // Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. library firebase_auth; import 'dart:async'; import 'package:firebase_core_platform_interface/firebase_core_platform_interface.dart'; import 'package:firebase_auth_platform_interface/firebase_auth_platform_interface.dart'; import 'package:firebase_core/firebase_core.dart'; import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:meta/meta.dart'; export 'package:firebase_auth_platform_interface/firebase_auth_platform_interface.dart' show FirebaseAuthException, IdTokenResult, UserMetadata, UserInfo, ActionCodeInfo, ActionCodeSettings, AdditionalUserInfo, ActionCodeInfoOperation, Persistence, PhoneVerificationCompleted, PhoneVerificationFailed, PhoneCodeSent, PhoneCodeAutoRetrievalTimeout, AuthCredential, EmailAuthProvider, EmailAuthCredential, FacebookAuthProvider, FacebookAuthCredential, GithubAuthProvider, GithubAuthCredential, GoogleAuthProvider, GoogleAuthCredential, OAuthProvider, OAuthCredential, PhoneAuthProvider, PhoneAuthCredential, SAMLAuthProvider, TwitterAuthProvider, TwitterAuthCredential, RecaptchaVerifierOnSuccess, RecaptchaVerifierOnExpired, RecaptchaVerifierOnError, RecaptchaVerifierSize, RecaptchaVerifierTheme; export 'package:firebase_core_platform_interface/firebase_core_platform_interface.dart' show FirebaseException; part 'src/firebase_auth.dart'; part 'src/user_credential.dart'; part 'src/user.dart'; part 'src/confirmation_result.dart'; part 'src/recaptcha_verifier.dart';
31.467742
88
0.738596
2563775d9d911791e666fa61036559e4a071c659
1,655
kts
Kotlin
build.gradle.kts
radzio/Viking
644b865c0e7fd149a6afae0187eef7fcdf4c450b
[ "MIT" ]
3
2020-04-23T12:28:00.000Z
2020-11-23T21:27:07.000Z
build.gradle.kts
radzio/Viking
644b865c0e7fd149a6afae0187eef7fcdf4c450b
[ "MIT" ]
59
2019-10-21T14:05:18.000Z
2021-10-31T17:50:51.000Z
build.gradle.kts
radzio/Viking
644b865c0e7fd149a6afae0187eef7fcdf4c450b
[ "MIT" ]
null
null
null
// Top-level build file where you can add configuration options common to all sub-projects/modules. subprojects { repositories { google() mavenCentral() maven ( url = "https://plugins.gradle.org/m2/" ) maven ( url = "https://jitpack.io" ) } buildscript { repositories { google() jcenter() mavenCentral() maven ( url = "https://plugins.gradle.org/m2/" ) maven ( url = "https://jitpack.io" ) } dependencies { classpath( "com.android.tools.build:gradle:7.0.0") //classpath( "com.novoda:bintray-release:0.9.2") classpath( "com.github.marandaneto:bintray-release:3bde108072") classpath( "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10") classpath ("de.mannodermaus.gradle.plugins:android-junit5:1.7.0.0") //classpath( "org.jetbrains.dokka:dokka-android-gradle-plugin:1.4.20") classpath( "org.jetbrains.dokka:dokka-gradle-plugin:1.4.20") classpath( "me.tatarka:gradle-retrolambda:3.7.0") //classpath( "com.dicedmelon.gradle:jacoco-android:0.1.4") classpath( "com.github.arturdm:jacoco-android-gradle-plugin:dd9d8ceaa9") } } } allprojects { repositories { google() jcenter() mavenCentral() maven ( url = "https://plugins.gradle.org/m2/" ) maven ( url = "https://jitpack.io" ) } } buildscript { repositories { google() jcenter() mavenCentral() maven ( url = "https://plugins.gradle.org/m2/" ) maven ( url = "https://jitpack.io" ) } val kotlin_version by extra("1.5.10") dependencies { classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version") } }
26.693548
99
0.639879
28f1d54aa783d20ff5eb4f96620b3c4581b66601
1,083
cpp
C++
UFAL/PAA/divideAndConquer/11876N+NOD(N).cpp
NelsonGomesNeto/ProgramC
e743b1b869f58f7f3022d18bac00c5e0b078562e
[ "MIT" ]
3
2018-12-18T13:39:42.000Z
2021-06-23T18:05:18.000Z
UFAL/PAA/divideAndConquer/11876N+NOD(N).cpp
NelsonGomesNeto/ProgramC
e743b1b869f58f7f3022d18bac00c5e0b078562e
[ "MIT" ]
1
2018-11-02T21:32:40.000Z
2018-11-02T22:47:12.000Z
UFAL/PAA/divideAndConquer/11876N+NOD(N).cpp
NelsonGomesNeto/ProgramC
e743b1b869f58f7f3022d18bac00c5e0b078562e
[ "MIT" ]
6
2018-10-27T14:07:52.000Z
2019-11-14T13:49:29.000Z
#include <bits/stdc++.h> #define DEBUG if(0) int seq[(int) 1e6]; int binSearch(int lo, int hi, int target, int lower) { int mid = (lo + hi) / 2; if (lo >= hi) if (lower) return(seq[lo] >= target ? lo : lo + 1); else return(seq[lo] <= target ? lo : lo - 1); if (target <= seq[mid]) return(binSearch(lo, mid, target, lower)); else return(binSearch(mid + 1, hi, target, lower)); } int nod(int n) { int d = 0; for (int i = 1; i <= sqrt(n); i ++) { d += !(n % i); if ((n / i) != i) d += !(n % (n / i)); } return(d); } int main() { int n = 1, at = 0; seq[0] = 1; while (at <= 1e6) { seq[n] = seq[n - 1] + nod(seq[n - 1]); at = seq[n ++]; } DEBUG for (int i = 0; i < 1000; i ++) printf("%d%c", seq[i], i < 1000 - 1 ? ' ' : '\n'); int tests, run = 0; scanf("%d", &tests); while (run ++ < tests) { int a, b; scanf("%d %d", &a, &b); printf("Case %d: %d\n", run, binSearch(0, n - 1, b, 0) - binSearch(0, n - 1, a, 1) + 1); DEBUG printf("%d %d\n", binSearch(0, n - 1, b, 0), binSearch(0, n - 1, a, 1)); } return(0); }
24.613636
92
0.478301
d96082b8bb5a6077f8ea2aad1b79fdf27565faed
62,838
ps1
PowerShell
PowerShellModulesUpdater.ps1
luke-evans-git/powershell-modules
977a087bc1c8b4aff1ccf32e204395f35e4bcec5
[ "MIT" ]
null
null
null
PowerShellModulesUpdater.ps1
luke-evans-git/powershell-modules
977a087bc1c8b4aff1ccf32e204395f35e4bcec5
[ "MIT" ]
null
null
null
PowerShellModulesUpdater.ps1
luke-evans-git/powershell-modules
977a087bc1c8b4aff1ccf32e204395f35e4bcec5
[ "MIT" ]
null
null
null
#Requires -Version 5.1 -PSEdition Desktop <# .NAME PowerShellModulesUpdater.ps1 .SYNOPSIS Updates, installs and removes PowerShell modules on your system based on settings in the "Settings & Variables" region. .DESCRIPTION Updates, installs and removes PowerShell modules on your system based on settings in the "Settings & Variables" region. How to use: 1. Remember to allow script execution! Set-ExecutionPolicy -ExecutionPolicy 'Unrestricted' -Scope 'CurrentUser' -Force -Confirm:$false 2. Some modules requires you to accept a license. This can be passed as a parameter to "Install-Module". Set $AcceptLicenses to $true (default) if you want these modules to be installed as well. Some modules that requires $AcceptLicenses to be $true: * Az.ApplicationMonitor Requirements * Package Providers * NuGet * PowerShell Modules * PackageManagement https://www.powershellgallery.com/packages/PackageManagement * PowerShellGet https://www.powershellgallery.com/packages/PowerShellGet .NOTES Author: Olav Rønnestad Birkeland (https://github.com/o-l-a-v) Created: 190310 Modified: 210914 .EXAMPLE # Run from PowerShell ISE & $psISE.'CurrentFile'.'FullPath' .EXAMPLE # Run from PowerShell ISE, bypass script execution policy & powershell.exe -ExecutionPolicy 'Bypass' -NoLogo -NonInteractive -NoProfile -WindowStyle 'Hidden' -File $psISE.'CurrentFile'.'FullPath' #> # Input parameters [OutputType($null)] Param () #region Settings & Variables # Install-Module preferences ## Scope $SystemContext = [bool] $true ## Accept licenses - Some modules requires you to accept licenses. $AcceptLicenses = [bool] $true ## Skip Publisher Check - Security, checks signing of the module against alleged publisher. $SkipPublisherCheck = [bool] $true # Action - What Options Would You Like To Perform $InstallMissingModules = [bool] $true $InstallMissingSubModules = [bool] $true $InstallUpdatedModules = [bool] $true $UninstallOutdatedModules = [bool] $true $UninstallUnwantedModules = [bool] $true # List of modules ## Modules you want to install and keep installed $ModulesWanted = [string[]]$( 'Az', # Microsoft. Used for Azure Resources. Combines and extends functionality from AzureRM and AzureRM.Netcore. # 'AzSK', # Microsoft. Azure Secure DevOps Kit. https://azsk.azurewebsites.net/00a-Setup/Readme.html # 'Azure', # Microsoft. Used for managing Classic Azure resources/ objects. 'AzureAD', # Microsoft. Used for managing Azure Active Directory resources/ objects. 'AzureADPreview', # -^- # 'AzureRM', # (DEPRECATED, "Az" is it's successor). Microsoft. Used for managing Azure Resource Manager resources/ objects. # 'AzViz', # Prateek Singh. Used for visualizing a Azure environment. 'Evergreen', # By Aaron Parker @ Stealth Puppy. For getting URL etc. to latest version of various applications on Windows. 'ExchangeOnlineManagement', # Microsoft. Used for managing Exchange Online. # 'GetBIOS', # Damien Van Robaeys. Used for getting BIOS settings for Lenovo, Dell and HP. 'ImportExcel', # dfinke. Used for import/export to Excel. 'Intune.USB.Creator', # Ben Reader @ powers-hell.com. Used to create Autopilot WinPE. 'IntuneBackupAndRestore', # John Seerden. Uses "MSGraphFunctions" module to backup and restore Intune config. # 'Invokeall', # Santhosh Sethumadhavan. Multithread PowerShell commands. # 'JWTDetails', # Darren J. Robinson. Used for decoding JWT, JSON Web Tokens. # 'Mailozaurr', # Przemyslaw Klys. Used for various email related tasks. 'Microsoft.Graph', # Microsoft. Works with PowerShell Core. 'Microsoft.Online.SharePoint.PowerShell', # Microsoft. Used for managing SharePoint Online. # 'Microsoft.PowerShell.ConsoleGuiTools', # Microsoft. 'Microsoft.PowerShell.SecretManagement', # Microsoft. Used for securely managing secrets. 'Microsoft.PowerShell.SecretStore', # Microsoft. Used for securely storing secrets locally. # 'Microsoft.RDInfra.RDPowerShell', # Microsoft. Used for managing Windows Virtual Desktop. # 'MicrosoftGraphSecurity', # Microsoft. Used for interacting with Microsoft Graph Security API. 'MicrosoftPowerBIMgmt', # Microsoft. Used for managing Power BI. 'MicrosoftTeams', # Microsoft. Used for managing Microsoft Teams. 'MSAL.PS', # Microsoft. Used for MSAL authentication. # 'MSGraphFunctions', # John Seerden. Wrapper for Microsoft Graph Rest API. # 'MSOnline', # (DEPRECATED, "AzureAD" is it's successor) Microsoft. Used for managing Microsoft Cloud Objects (Users, Groups, Devices, Domains...) 'Nevergreen', # Dan Gough. Evergreen alternative that scrapes websites for getting latest version and URL to a package. # 'newtonsoft.json', # Serialize/Deserialize Json using Newtonsoft.json 'Office365DnsChecker', # Colin Cogle. Checks a domain's Office 365 DNS records for correctness. # 'Optimized.Mga', # Bas Wijdenes. Microsoft Graph batch operations. 'PartnerCenter', # Microsoft. Used for interacting with PartnerCenter API. 'PackageManagement', # Microsoft. Used for installing/ uninstalling modules. 'PnP.PowerShell', # Microsoft. Used for managing SharePoint Online. 'Pester', # PowerShell testing # 'platyPS', # Microsoft. Used for converting markdown to PowerShell XML external help files. # 'PolicyFileEditor', # Microsoft. Used for local group policy / gpedit.msc. 'PoshRSJob', # Boe Prox. Used for parallel execution of PowerShell. 'PowerShellGet', # Microsoft. Used for installing updates. 'PSIntuneAuth', # Nickolaj Andersen. Get auth token to Intune. 'PSLogging', # Logging module # 'PSPKI', # Vadims Podans. Used for infrastructure and certificate management. 'PSReadLine', # Microsoft. Used for helping when scripting PowerShell. 'PSScriptAnalyzer', # Microsoft. Used to analyze PowerShell scripts to look for common mistakes + give advice. 'PSWindowsUpdate', # Michal Gajda. Used for updating Windows. # 'RunAsUser', # Kelvin Tegelaar. Allows running as current user while running as SYSTEM using impersonation. 'SetBIOS', # Damien Van Robaeys. Used for setting BIOS settings for Lenovo, Dell and HP. 'Terminal-Icons', # Terminal Icons # 'SpeculationControl', # Microsoft, by Matt Miller. To query speculation control settings (Meltdown, Spectr) 'WindowsAutoPilotIntune', # Michael Niehaus @ Microsoft. Used for Intune AutoPilot stuff. 'Microsoft.PowerApps.Administration.PowerShell' ) ## Modules you don't want - Will Remove Every Related Module, for AzureRM for instance will also search for AzureRM.* $ModulesUnwanted = [string[]]$( 'AzureAutomationAuthoringToolkit', # Microsoft, Azure Automation Account add-on for PowerShell ISE. 'ISESteroids', # Power The Shell, ISE Steroids. Used for extending PowerShell ISE functionality. 'PartnerCenterModule' # (DEPRECATED, "PartnerCenter" is it's successor). Microsoft. Used for interacting with Partner Center API. <# Still required for "WindowsAutopilotIntune" module, for exporting Autopilot profile 'Microsoft.Graph.Intune' # Microsoft, old Microsoft Graph module for Intune. Replaced by Microsoft.Graph.Device*. #> ) ## Modules you don't want to get updated - Will not update named modules in this list $ModulesDontUpdate = [string[]]$( '' ) ## Module versions you don't want removed $ModulesVersionsDontRemove = [ordered]@{ #'Az.Resources' = [System.Version[]] '2.3.0' } # List of wanted scripts $ScriptsWanted = [string[]]( 'Get-WindowsAutoPilotInfo', # Microsoft, Michael Niehaus. Get Windows AutoPilot info. 'Get-AutopilotDiagnostics', # Microsoft, Michael Niehaus. Display diagnostics information. 'Upload-WindowsAutopilotDeviceInfo' # Nickolaj Andersen. Upload autopilot hash straight to Intune. ) # Settings - PowerShell Output Streams $ConfirmPreference = 'High' $DebugPreference = 'SilentlyContinue' $ErrorActionPreference = 'Stop' $InformationPreference = 'Continue' $ProgressPreference = 'SilentlyContinue' $VerbosePreference = 'SilentlyContinue' $WarningPreference = 'Continue' #endregion Settings & Variables #region Functions #region Get-ModuleInstalledVersions function Get-ModuleInstalledVersions { <# .SYNOPSIS Gets all available versions of a module name. .PARAMETER ModuleName String, name of the module you want to check. #> [CmdletBinding(SupportsPaging = $false)] [OutputType([System.Version[]])] Param ( [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [string] $ModuleName ) Begin {} Process { # Return installed versions of $ModuleName return [System.Version[]]$( $Versions = [System.Version[]]$() $Path = [string] '{0}\{1}' -f $Script:ModulesPath, $ModuleName if ($ModuleName -notin 'PackageManagement', 'PowerShellGet' -and [System.IO.Directory]::Exists($Path)) { $Versions = [System.Version[]]( $( [array]( Get-ChildItem -Path $Path -Depth 0 ) ).'FullName'.ForEach{ $_.Split('\')[-1] }.Where{ Try { $null = $_ -as [System.Version] $? } Catch { $false } } ) } if ($Versions.'Count' -le 0) { $Versions = [System.Version[]]( Get-InstalledModule -Name $ModuleName -AllVersions | Where-Object -Property 'Repository' -EQ 'PSGallery' | Select-Object -ExpandProperty 'Version' ) } $Versions ) } End {} } #endregion Get-ModuleInstalledVersions #region Get-PowerShellGalleryPackageLatestVersion function Get-PowerShellGalleryPackageLatestVersion { <# .SYNAPSIS Fetches latest version number of a given pacakge (module or script) from PowerShellGallery. .PARAMETER ModuleName String, name of the package (module or script) you want to check. #> [CmdletBinding(SupportsPaging = $false)] [OutputType([System.Version])] param( [Parameter(Mandatory, HelpMessage = 'Name of the PowerShellGallery package (module or script) to fetch.')] [ValidateNotNullOrEmpty()] [Alias('ModuleName', 'ScriptName')] [string] $PackageName ) Begin {} Process { # Access the main module page, and add a random number to trick proxies $Url = [string]('https://www.powershellgallery.com/packages/{0}/?dummy={1}' -f ($PackageName, $Script:Random.Next(9999))) Write-Debug -Message ('URL for module "{0}" = "{1}".' -f ($PackageName, $Url)) # Create Request Url $Request = [System.Net.WebRequest]::Create($Url) # Do not allow to redirect. The result is a "MovedPermanently" $Request.'AllowAutoRedirect' = $false $Request.'Proxy' = $null # Try to get published version number Try { # Send the request $Response = $Request.GetResponse() # Get back the URL of the true destination page, and split off the version $Version = [System.Version]$($Response.GetResponseHeader('Location').Split('/')[-1]) } Catch { # Write warning if it failed & return blank version number. Write-Warning -Message ($_.'Exception'.'Message') $Version = [System.Version]('0.0.0.0') } Finally { # Make sure to clean up connection $Response.Close() $Response.Dispose() } # Return Version return $Version } End {} } #endregion Get-PowerShellGalleryPackageLatestVersion #region Modules #region Refresh-ModulesInstalled function Refresh-ModulesInstalled { <# .SYNAPSIS Gets all currentlyy installed modules. #> [CmdletBinding(SupportsPaging = $false)] [OutputType([PSCustomObject[]])] Param( [Parameter()] [switch] $AllVersions, [Parameter()] [switch] $ForceRefresh ) Begin {} Process { # Check if variable needs refresh if ($ForceRefresh -or $Script:ModulesInstalledNeedsRefresh -or -not [bool]$($null = Get-Variable -Name 'ModulesInstalledNeedsRefresh' -Scope 'Script' -ErrorAction 'SilentlyContinue'; $?)) { # Reset Script Scrope Variable "ModulesInstalledNeedsRefresh" to $false $null = Set-Variable -Scope 'Script' -Option 'None' -Force -Name 'ModulesInstalledNeedsRefresh' -Value ([bool]$false) # Get installed modules given the scope $InstalledModulesGivenScope = [array]( (Get-ChildItem -Path $Script:ModulesPath -Directory -Depth 0) ) # Get installed modules given scope with author information $null = Set-Variable -Scope 'Script' -Option 'ReadOnly' -Force -Name 'ModulesInstalled' -Value ( [PSCustomObject[]]( PackageManagement\Get-Package -Name '*' -ProviderName 'PowerShellGet' -AllVersions:$AllVersions | ` Where-Object -FilterScript { $_.'Name' -in $InstalledModulesGivenScope.'Name' -and $([System.Version]$_.'Version') -in $([System.Version[]]((Get-ChildItem -Path $InstalledModulesGivenScope.'FullName' -Directory -Depth 0).'Name')) } | ` Select-Object -Property 'Name', 'Version', @{'Name' = 'Author'; 'Expression' = { $_.'Entities'.Where{ $_.'role' -eq 'author' }.'Name' } } | ` Sort-Object -Property 'Name', 'Version' ) ) } } End {} } #endregion Refresh-ModulesInstalled #region Update-ModulesInstalled function Update-ModulesInstalled { <# .SYNAPSIS Fetches latest version number of a given module from PowerShellGallery. #> [CmdletBinding(SupportsPaging = $false)] [OutputType($null)] Param() Begin {} Process { # Refresh Installed Modules variable $null = Refresh-ModulesInstalled # Skip if no installed modules was found if ($Script:ModulesInstalled.'Count' -le 0) { Write-Information -MessageData ('No installed modules where found, no modules to update.') Break } # Help Variables $C = [uint16] 1 $CTotal = [string] $Script:ModulesInstalled.'Count' $Digits = [string] '0' * $CTotal.'Length' $ModulesInstalledNames = [string[]]($Script:ModulesInstalled.'Name' | Sort-Object) # Update Modules :ForEachModule foreach ($ModuleName in $ModulesInstalledNames) { # Get Latest Available Version $VersionAvailable = [System.Version]$(Get-PowerShellGalleryPackageLatestVersion -PackageName $ModuleName) # Get Version Installed $VersionInstalled = [System.Version]$($Script:ModulesInstalled.Where{ $_.'Name' -eq $ModuleName }.'Version') # Get Version Installed - Get Fresh Version Number if newer version is available and current module is a sub module if ([System.Version]($VersionAvailable) -gt [System.Version]$($VersionInstalled) -and $ModuleName -like '*?.?*' -and [string[]]$($ModulesInstalledNames) -contains [string]$($ModuleName.Replace(('.{0}' -f ($ModuleName.Split('.')[-1])), ''))) { $VersionInstalled = [System.Version](Get-ModuleInstalledVersions -ModuleName $ModuleName | Sort-Object -Descending | Select-Object -First 1) } # Present Current Module Write-Information -MessageData ('{0}/{1} {2} v{3}' -f (($C++).ToString($Digits), $CTotal, $ModuleName, $VersionInstalled.ToString())) # Compare Version Installed vs Version Available if ([System.Version]$($VersionInstalled) -ge [System.Version]$($VersionAvailable)) { Write-Information -MessageData ('{0}Current version is latest version.' -f ("`t")) Continue ForEachModule } else { Write-Information -MessageData ('{0}Newer version available, v{1}.' -f ("`t", $VersionAvailable.ToString())) if ([bool]$($null = Find-Package -Name $ModuleName -Source 'PSGallery' -AllVersions:$false -Force -ErrorAction 'SilentlyContinue'; $?)) { if ($ModulesDontUpdate -contains $ModuleName) { Write-Information -MessageData ('{0}{0}Will not update as module is specified in script settings. ($ModulesDontUpdate).' -f ("`t", $Success.ToString)) } else { # Install module $Success = [bool]$(Try { $null = PackageManagement\Install-Package -Name $ModuleName -RequiredVersion $VersionAvailable -Scope $Scope -AllowClobber -AcceptLicense:$AcceptLicenses -SkipPublisherCheck:$SkipPublisherCheck -Confirm:$false -Verbose:$false -Debug:$false -Force 2>$null; $? }Catch { $false }) # Doubles check for success if ($Success) { $Success = [bool](Test-Path -Path ('{0}\WindowsPowerShell\Modules\{1}\{2}' -f $env:ProgramW6432, $ModuleName, $VersionAvailable.ToString())) } # Output success Write-Information -MessageData ('{0}Install success? {1}' -f ([string]$("`t" * 2), $Success.ToString())) # Count as installed if success if ($Success) { # Stats $Script:ModulesUpdated += [string[]]$($ModuleName) # Updated cache of installed modules and version if current module has sub modules if ([uint16]$([string[]]$($ModulesInstalledNames.Where{ $_ -like ('{0}.?*' -f $Module) }).'Count') -ge 1) { Get-ModulesInstalled } # Else, set flag to update cache of installed modules later else { $Script:ModulesInstalledNeedsRefresh = [bool] $true } } else { Write-Warning -Message ( 'Failed to install "{0}". Here is the error:{1}"{2}"' -f ( $ModuleName, [System.Environment]::NewLine, $Error[0].ToString() ) ) } } } else { Write-Warning -Message ('Did not find "{0}" in PSGallery, probably deprecated, delisted or something similar. Will skip.' -f ($ModuleName)) } } } } End {} } #endregion Update-ModulesInstalled #region Install-ModulesMissing function Install-ModulesMissing { <# .SYNAPSIS Installs missing modules by comparing installed modules vs input parameter $ModulesWanted. .PARAMETER ModulesWanted A string array containing names of wanted modules. #> [CmdletBinding(SupportsPaging = $false)] [OutputType($null)] Param( [Parameter(Mandatory)] [string[]] $ModulesWanted ) Begin {} Process { # Refresh Installed Modules variable $null = Refresh-ModulesInstalled # Help Variables $C = [uint16](1) $CTotal = [string]($ModulesWanted.'Count') $Digits = [string]('0' * $CTotal.'Length') $ModulesInstalledNames = [string[]]($Script:ModulesInstalled.'Name' | Sort-Object) # Loop each wanted module. If not found in installed modules: Install it foreach ($ModuleWanted in $ModulesWanted) { Write-Information -MessageData ('{0}/{1} {2}' -f (($C++).ToString($Digits), $CTotal, $ModuleWanted)) # Install if not already installed if ($ModulesInstalledNames.Where{ $_ -eq $ModuleWanted }.'Count' -ge 1) { Write-Information -MessageData ('{0}Already Installed. Next!' -f ("`t")) } else { Write-Information -MessageData ('{0}Not already installed. Installing.' -f ("`t")) if ([bool]$($null = Find-Package -Name $ModuleWanted -Source 'PSGallery' -AllVersions:$false -Force -ErrorAction 'SilentlyContinue'; $?)) { # Install The Missing Sub Module $Success = [bool]$(Try { $null = PackageManagement\Install-Package -Name $ModuleWanted -Scope $Scope -AllowClobber -AcceptLicense:$AcceptLicenses -SkipPublisherCheck:$SkipPublisherCheck -Confirm:$false -Verbose:$false -Debug:$false -Force 2>$null; $? }Catch { $false }) # Output success Write-Information -MessageData ('{0}Install success? {1}' -f ([string]$("`t" * 2), $Success.ToString())) # Count if success if ($Success) { # Stats $Script:ModulesInstalledMissing += [string[]]$($ModuleWanted) # Make sure list of installed modules gets refreshed $Script:ModulesInstalledNeedsRefresh = $true } else { Write-Warning -Message ('Failed to install "{0}". Here is the error:{1}"{2}"' -f ($ModuleWanted, [System.Environment]::NewLine, $Error[0].ToString())) } } else { Write-Warning -Message ('Did not find "{0}" in PSGallery, probably deprecated, delisted or something similar. Will skip.' -f ($ModuleWanted)) } } } } End {} } #endregion Install-ModulesMissing #region Install-SubModulesMissing function Install-SubModulesMissing { <# .SYNAPSIS Installs Eventually Missing Submodules .PARAMETER ModulesName String containing the name of the parent module you want to check for missing submodules. #> [CmdletBinding(SupportsPaging = $false)] [OutputType($null)] Param() Begin {} Process { # Refresh Installed Modules variable $null = Refresh-ModulesInstalled # Skip if no installed modules was found if ($Script:ModulesInstalled.'Count' -le 0) { Write-Information -MessageData ('No installed modules where found, no modules to check against.') Break } # Help Variables - Both Foreach $ParentModulesInstalled = [array]( $ModulesInstalled.Where{ [bool]($_.'Name' -in $ModulesWanted) -or [bool]($_.'Name' -notlike '*.*') -or [bool]( $_.'Name' -like '*.*' -and $_.'Name' -notlike '*.*.*' -and [string[]]$($ModulesInstalled.'Name') -notcontains [string]$($_.'Name'.Replace(('.{0}' -f ($_.'Name'.Split('.')[-1])), '')) ) } | Select-Object -Property 'Name', 'Author' | Sort-Object -Property 'Name' -Unique ) # Help Variables - Outer Foreach $OC = [uint16]$(1) $OCTotal = [string]$($ParentModulesInstalled.'Count'.ToString()) $ODigits = [string]$('0' * $OCTotal.'Length') # Loop Through All Installed Modules :ForEachModule foreach ($Module in $ParentModulesInstalled) { # Present Current Module Write-Information -MessageData ('{0}/{1} {2} by "{3}"' -f (($OC++).ToString($ODigits), $OCTotal, $Module.'Name', $Module.'Author')) # Get all installed sub modules $SubModulesInstalled = [string[]]$( $ModulesInstalled.Where{ $_.'Name' -like ('{0}.*' -f $Module.'Name') -and $_.'Author' -eq $Module.'Author' }.'Name' | Sort-Object ) # Get all available sub modules $SubModulesAvailable = [string[]]( $( [array]( Find-Module -Name ('{0}.*' -f ($Module.'Name')) | Where-Object -FilterScript { $_.'Author' -eq $Module.'Author' -and $_.'Name' -notin $ModulesUnwanted } ) ).'Name' | Sort-Object ) # If either $SubModulesAvailable is 0, Continue Outer Foreach if ($SubModulesAvailable.'Count' -eq 0) { Write-Information -MessageData ('{0}Found {1} avilable sub module{2}.' -f ("`t", $SubModulesAvailable.'Count'.ToString(), [string]$(if ($SubModulesAvailable.'Count' -ne 1) { 's' }))) Continue ForEachModule } # Compare objects to see which are missing $SubModulesMissing = [string[]]$( if ($SubModulesInstalled.'Count' -eq 0) { $SubModulesAvailable } else { $SubModulesAvailable.Where{ $_ -notin $SubModulesInstalled } } ) ## Output result Write-Information -MessageData ( '{0}Found {1} missing sub module{2}.' -f ( "`t", $SubModulesMissing.'Count'.ToString(), [string]$(if ($SubModulesMissing.'Count' -ne 1) { 's' }) ) ) # Install missing sub modules if ($SubModulesMissing.'Count' -gt 0) { # Help Variables - Inner Foreach $IC = [uint16]$(1) $ICTotal = [string]$($SubModulesMissing.'Count'.ToSTring()) $IDigits = [string]$('0' * $ICTotal.'Length') # Install Modules :ForEachSubModule foreach ($SubModuleName in $SubModulesMissing) { # Present Current Sub Module Write-Information -MessageData ('{0}{1}/{2} {3}' -f ([string]$("`t" * 2), ($IC++).ToString($IDigits), $ICTotal, $SubModuleName)) # Make sure package is actually available $PackageAvailable = Find-Package -Name $SubModuleName -Source 'PSGallery' -AllVersions:$false -Force -ErrorAction 'SilentlyContinue' # Install if package available if ($?) { # Install The Missing Sub Module $Success = [bool]$(Try { $null = PackageManagement\Install-Package -Name $SubModuleName -RequiredVersion $PackageAvailable.'Version' -Scope $Scope -AllowClobber -AcceptLicense:$AcceptLicenses -SkipPublisherCheck:$SkipPublisherCheck -Confirm:$false -Verbose:$false -Debug:$false -Force 2>$null; $? }Catch { $false }) # Doubles check for success if ($Success) { $Success = [bool](Test-Path -Path ('{0}\WindowsPowerShell\Modules\{1}' -f ($env:ProgramW6432, $SubModuleName, $PackageAvailable.'Version'.ToString()))) } # Output success Write-Information -MessageData ('{0}Install success? {1}' -f ([string]$("`t" * 3), $Success.ToString())) # Count as installed if success if ($Success) { # Stats $Script:ModulesSubInstalledMissing += [string[]]$($SubModuleName) # Make sure list of installed modules gets refreshed $Script:ModulesInstalledNeedsRefresh = $true } else { Write-Warning -Message ('Failed to install "{0}". Here is the error:{1}"{2}"' -f ($SubModuleName, [System.Environment]::NewLine, $Error[0].ToString())) } } else { Write-Warning -Message ('Did not find "{0}" in PSGallery, probably deprecated, delisted or something similar. Will skip.' -f ($SubModuleName)) } } } } } End {} } #endregion Install-SubModulesMissing #region Uninstall-ModuleManually function Uninstall-ModuleManually { <# .SYNOPSIS Uninstalls a module version by trying to find the folder, then delete it. If that fails "Remove-Package" is called instead. .DESCRIPTION Uninstalls a module version by trying to find the folder, then delete it. If that fails "Remove-Package" is called instead. * Created because "Uninstall-Module" and "Remove-Package" is very slow. #> [CmdletBinding()] [OutputType($null)] Param ( # Mandatory [Parameter(Mandatory)] [ValidateNotNullOrEmpty()] [string] $ModuleName, [Parameter(Mandatory)] [System.Version] $Version, # Optional [Parameter()] [bool] $SystemContext = $true, [Parameter()] [bool] $64BitModuleOn64BitOS = $true, [Parameter()] [string] $ModulePath ) Begin { # Check if running as admin if $SystemContext if ($SystemContext -and -not $([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)) { Throw 'ERROR - Admin permissions are required if running in system context.' } } Process { # Unload module if currently in use if ($(Get-Module -Name $ModuleName).Where{ [System.Version]$_.'Version' -eq $Version }.'Count' -gt 0) { $null = Remove-Module -Name $ModuleName -Force } # Create path to module if (-not $ModulePath -or [string]::IsNullOrEmpty($ModulePath)) { $ModulePath = [string]( '{0}\{1}\Modules\{2}\{3}' -f ( [string[]]$( if ($SystemContext) { if ($64BitModuleOn64BitOS) { $env:ProgramW6432 } else { ${env:ProgramFiles(x86)} }, 'WindowsPowerShell' } else { [System.Environment]::GetFolderPath('MyDocuments'), 'PowerShell' } ) + $ModuleName, $Version.ToString() ) ) } # If path does not exist, try to check for versions and create path more dynamically if (-not [System.IO.Directory]::Exists($ModulePath)) { # Create module path $ModulePath = [string]( '{0}\WindowsPowerShell\Modules\{1}' -f ( $( if ($SystemContext) { $env:ProgramW6432 } else { [System.Environment]::GetFolderPath('MyDocuments') } ), $ModuleName ) ) # Get all versions $Versions = [PSCustomObject[]]( $([array](Get-ChildItem -Path $ModulePath -Directory -Depth 0)).ForEach{ Try { [PSCustomObject]@{ 'Path' = $_.'FullName' 'Version' = [System.Version] $_.'Name' } } Catch { } } ) # Cut ending 0 if more version numbers than input $Version $Versions.ForEach{ if ($_.'Version'.ToString().Split('.').'Count' -gt $Version.ToString().Split('.').'Count' -and $([uint16]$_.'Version'.ToString().Split('.')[-1]) -eq 0) { $_.'Version' = [System.Version][string]($_.'Version'.ToString().Split('.')[0..$($([byte]($Version.ToString().Split('.').'Count')) - 1)] -join '.') } } # Set path if ([System.Version[]]($Versions.'Version') -contains $Version) { $ModulePath = [string]($Versions.Where{ $_.'Version' -eq $Version }.'Path') } } # Delete folder if it exists / Uninstall module version if ([bool]$(Try { $null = [System.Version]$ModulePath.Split('\')[-1]; $? }Catch { $false }) -and [System.IO.Directory]::Exists($ModulePath)) { $null = [System.IO.Directory]::Delete($ModulePath, $true) if ($? -and -not [System.IO.Directory]::Exists($ModulePath)) { return } } # Else, uninstall with commandlet $null = PackageManagement\Uninstall-Package -Name $ModuleName -RequiredVersion $Version -Scope $Scope -Force } End {} } #endregion Uninstall-ModuleManually #region Uninstall-ModulesOutdated function Uninstall-ModulesOutdated { <# .SYNAPSIS Uninstalls outdated modules / currently installed modules with more than one version. #> [CmdletBinding(SupportsPaging = $false)] [OutputType($null)] Param() Begin {} Process { # Refresh Installed Modules variable $null = Refresh-ModulesInstalled # Skip if no installed modules were found if ($Script:ModulesInstalled.'Count' -le 0) { Write-Information -MessageData ('No installed modules where found, no outdated modules to uninstall.') Break } # Help Variables $ModulesInstalledNames = [string[]]$($Script:ModulesInstalled.'Name' | Sort-Object -Unique) $C = [uint16]$(1) $CTotal = [string]$($ModulesInstalledNames.'Count') $Digits = [string]$('0' * $CTotal.'Length') # Get Versions of Installed Main Modules :ForEachModuleName foreach ($ModuleName in $ModulesInstalledNames) { Write-Information -MessageData ('{0}/{1} {2}' -f (($C++).ToString($Digits), $CTotal, $ModuleName)) # Get all versions installed $VersionsAll = [System.Version[]]$(Get-ModuleInstalledVersions -ModuleName $ModuleName | Sort-Object -Descending) Write-Information -MessageData ( '{0}{1} got {2} installed version{3} ({4}).' -f ( "`t", $ModuleName, $VersionsAll.'Count'.ToString(), [string]$(if ($VersionsAll.'Count' -gt 1) { 's' }), [string]($VersionsAll -join ', ') ) ) # Remove old versions if more than 1 versions if ($VersionsAll.'Count' -gt 1) { # Find newest version $VersionNewest = [System.Version]($VersionsAll | Sort-Object -Descending | Select-Object -First 1) $VersionsAllButNewest = [System.Version[]]($VersionsAll.Where{ $_ -ne $VersionNewest }) # If current module is PackageManagement or PowerShellGet if ($ModuleName -in 'PackageManagement', 'PowerShellGet') { # Assets $VersionsInUse = [System.Version[]]((Get-Module -Name $ModuleName).'Version') # Check if version currently loaded is the newest. If not, load newest version. if ($VersionsInUse.'Count' -gt 1 -or $VersionsInUse[0] -ne $VersionNewest) { $null = Get-Module -Name $ModuleName | Remove-Module -Force $null = Import-Module -Name $ModuleName -Version $VersionNewest } } # Uninstall all but newest foreach ($Version in $VersionsAllButNewest) { Write-Information -MessageData ('{0}{0}Uninstalling module "{1}" version "{2}".' -f "`t", $ModuleName, $Version.ToString()) # Check if current version is not to be uninstalled / specified in $ModulesVersionsDontRemove if ($([System.Version[]]($ModulesVersionsDontRemove.$ModuleName) -contains $([System.Version]($Version)))) { Write-Information -MessageData ('{0}{0}{0}This version is not to be uninstalled because it`s specified in $ModulesVersionsDontRemove.' -f ("`t")) } else { # Uninstall $Success = [bool]$( Try { $null = Uninstall-ModuleManually -ModuleName $ModuleName -Version $Version -WarningAction 'SilentlyContinue' -ErrorAction 'SilentlyContinue' $? } Catch { $false } ) # Check for success $Success = [bool]$( if ($Success) { $([array](PackageManagement\Get-Package -Name $ModuleName -RequiredVersion $Version -ErrorAction 'SilentlyContinue')).'Count' -eq 0 } else { $Success } ) # Output Write-Information -MessageData ('{0}{0}{0}Success? {1}.' -f ("`t", $Success.ToString())) if ($Success) { # Stats $Script:ModulesUninstalledOutdated += [string[]]($ModuleName) # Make sure list of installed modules gets refreshed $Script:ModulesInstalledNeedsRefresh = $true } else { # Special case for module "PackageManagement" if ($ModuleName -eq 'PackageManagement') { Write-Warning -Message ('{0}{0}{0}{0}"PackageManagement" often can`t be removed before exiting current PowerShell session.' -f ("`t")) -WarningAction 'Continue' } Continue ForEachModuleName } } } } } } End {} } #endregion Uninstall-ModulesOutdated #region Uninstall-ModulesUnwanted function Uninstall-ModulesUnwanted { <# .SYNAPSIS Uninstalls installed modules that matches any value in the input parameter $ModulesUnwanted. .PARAMETER ModulesUnwanted String Array containig modules you don't want to be installed on your system. #> [CmdletBinding(SupportsPaging = $false)] [OutputType($null)] Param( [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [string[]] $ModulesUnwanted ) Begin {} Process { # Refresh Installed Modules variable $null = Refresh-ModulesInstalled # Skip if no installed modules was found if ($Script:ModulesInstalled.'Count' -le 0) { Write-Information -MessageData ('No installed modules where found, no modules to uninstall.') Break } # Find out if we got unwated modules installed based on input parameter $ModulesUnwanted vs $InstalledModulesAll $ModulesToRemove = [string[]]$( :ForEachInstalledModule foreach ($ModuleInstalled in [string[]]$($Script:ModulesInstalled.'Name')) { :ForEachUnwantedModule foreach ($ModuleUnwanted in $ModulesUnwanted) { if ($ModuleInstalled -eq $ModuleUnwanted -or $ModuleInstalled -like ('{0}.*' -f $ModuleUnwanted)) { $ModuleInstalled Continue ForEachInstalledModule } } } ) | Sort-Object # Write Out How Many Unwanted Modules Was Found Write-Information -MessageData ( 'Found {0} unwanted module{1}.{2}' -f ( $ModulesToRemove.'Count'.ToString(), $(if ($ModulesToRemove.'Count' -ne 1) { 's' }), $(if ($ModulesToRemove.'Count' -gt 0) { ' Will proceed to uninstall {0}.' -f $(if ($ModulesToRemove.'Count' -eq 1) { 'it' }else { 'them' }) }) ) ) # Uninstall Unwanted Modules If More Than 0 Was Found if ([uint16]$($ModulesToRemove.'Count') -gt 0) { # Assets $C = [uint16]$(1) $CTotal = [string]$($ModulesToRemove.'Count'.ToString()) $Digits = [string]$('0' * $CTotal.'Length') $LengthModuleLongestName = [byte]($([byte[]]($([string[]]($ModulesToRemove)).ForEach{ $_.'Length' } | Sort-Object)) | Select-Object -Last 1) # Loop foreach ($Module in $ModulesToRemove) { # Write information Write-Information -MessageData ( '{0}{1}/{2} {3}{4}' -f ( "`t", ($C++).ToString($Digits), $CTotal, $Module, (' ' * [byte]$([byte]$($LengthModuleLongestName) - [byte]$($Module.'Length'))) ) ) # Do not uninstall "PowerShellGet" if ($Module -eq 'PowerShellGet') { Write-Information -MessageData ('{0}{0}Will not uninstall "PowerShellGet" as it`s a requirement for this script.' -f ("`t")) Continue } # Remove Current Module Uninstall-Module -Name $Module -Confirm:$false -AllVersions -Force -ErrorAction 'SilentlyContinue' $Success = [bool]$($?) # Write Out Success Write-Information -MessageData ('{0}{0}Success? {1}.' -f ("`t", $Success.ToString())) if ($Success) { # Stats $Script:ModulesUninstalledUnwanted += [string[]]($Module) # Make sure list of installed modules gets refreshed $Script:ModulesInstalledNeedsRefresh = $true } } } } End {} } #endregion Uninstall-ModulesUnwanted #endregion Modules #region Scripts #region Install-ScriptsMissing function Install-ScriptsMissing { <# .SYNOPSIS Installs scripts that is not already installed.' #> [OutputType($null)] Param( [Parameter(Mandatory, HelpMessage = 'String array with script names from PowerShell Gallery.')] [string[]] $Scripts, [Parameter(Mandatory, HelpMessage = 'Scope')] [ValidateSet('AllUsers', 'CurrentUser')] [string] $Scope ) Begin { } Process { $Scripts.ForEach{ Write-Information -MessageData ( '{0} / {1} "{2}"' -f ( (1 + $Scripts.IndexOf($_)).ToString('0' * $Scripts.'Count'.ToString().'Length'), $Scripts.'Count'.Tostring(), $_ ) ) if ($(Try { $null = PackageManagement\Get-Package -Type 'Script' -Name $_ -AllVersions -Scope $Scope 2>$null; $? }Catch { $false })) { Write-Information -MessageData 'Already installed.' } else { Write-Information -MessageData 'Not already installed.' if ( [string]::IsNullOrEmpty( (PackageManagement\Find-Package -Name $_ -Source (PackageManagement\Get-PackageSource -Name 'PSGallery').'Location').'Name' ) ) { Write-Warning -Message 'Not found on PowerShellGaellery.' } else { $null = PowerShellGet\Install-Script -Name $_ -Scope $Scope -Force -Repository 'PSGallery' $Script:ScriptsMissing += [string[]]($_) Write-Information -MessageData ('{0}Successfully installed.' -f "`t") } } } } End { } } #endregion Install-ScriptsMissing #region Update-ScriptsInstalled function Update-ScriptsInstalled { <# .SYNOPSIS Updates installed scripts originating from PowerShell Gallery. #> # Input parameters [OutputType($null)] Param( [Parameter(Mandatory, HelpMessage = 'Scope.')] [ValidateSet('AllUsers', 'CurrentUser')] [string] $Scope ) Begin { } Process { $ScriptsInstalled = [array]( PackageManagement\Get-Package -Type 'Script' -Scope $Scope ) $ScriptsInstalled.ForEach{ # Output current script Write-Information -MessageData ( '{0} / {1} "{2}" v{3} by "{4}"' -f ( (1 + $ScriptsInstalled.IndexOf($_)).ToString('0' * $ScriptsInstalled.'Count'.ToString().'Length'), $ScriptsInstalled.'Count'.Tostring(), $_.'Name', $_.'Version'.ToString(), $_.'Entities'.Where{ $_.'Role' -eq 'author' }.'Name' ) ) # Find package on PowerShell Gallery $Package = PackageManagement\Find-Package -Name $_.'Name' -Source (PackageManagement\Get-PackageSource -Name 'PSGallery').'Location' 2>$null # Skip if can't be found on PowerShell Gallery if ([string]::IsNullOrEmpty($Package.'Name')) { Write-Information -MessageData 'Not from PowerShell Gallery, or at least could not be found.' } else { if ($Package.'Version' -gt $_.'Version') { Write-Information -MessageData ('Newer version available, v{0}.' -f $_.'Version'.ToString()) $null = PowerShellGet\Install-Script -Name $_.'Name' -Scope $Scope -Force -Repository 'PSGallery' $Script:ScriptsUpdated += [string[]]($_.'Name') Write-Information -MessageData ('{0}Successfully installed.' -f "`t") } else { Write-Information -MessageData 'No newer version available.' } } } } } #endregion Update-ScriptsInstalled #endregion Scripts #region Output-Statistics function Output-Statistics { [CmdletBinding()] [OutputType($null)] Param () Begin {} Process { # Help variables $FormatDescriptionLength = [byte]$($Script:StatisticsVariables.ForEach{ $_.'Description'.'Length' } | Sort-Object -Descending | Select-Object -First 1) $FormatNewLineTab = [string]$("`r`n`t") # Output stats foreach ($Variable in $Script:StatisticsVariables) { $CurrentObject = [string[]]$(Get-Variable -Name $Variable.'VariableName' -Scope 'Script' -ValueOnly -ErrorAction 'SilentlyContinue') $CurrentDescription = [string]$($Variable.'Description' + ':' + [string]$(' ' * [byte]$($FormatDescriptionLength - $Variable.'Description'.'Length'))) Write-Information -MessageData ( '{0} {1}{2}' -f ( $CurrentDescription, $CurrentObject.'Count', [string]$(if ($CurrentObject.'Count' -ge 1) { $FormatNewLineTab + [string]$($CurrentObject -join $FormatNewLineTab) }) ) ) } } End {} } #endregion Output-Statistics #endregion Functions #region Main # Help variables ## Start time $null = New-Variable -Scope 'Script' -Option 'ReadOnly' -Force -Name 'TimeTotalStart' -Value ([datetime]::Now) ## Random number generator $null = New-Variable -Scope 'Script' -Option 'ReadOnly' -Force -Name 'Random' -Value ([System.Random]::New()) ## Scope $null = New-Variable -Scope 'Script' -Option 'ReadOnly' -Force -Name 'Scope' -Value ( [string]$( if ($SystemContext) { 'AllUsers' } else { 'CurrentUser' } ) ) ## Modules path $null = Set-Variable -Scope 'Script' -Option 'ReadOnly' -Force -Name 'ModulesPath' -Value ( [string]( '{0}\WindowsPowerShell\Modules' -f ( $( if ($SystemContext) { if ([System.Environment]::Is64BitOperatingSystem) { $env:ProgramW6432 } else { ${env:ProgramFiles(x86)} } } else { [System.Environment]::GetFolderPath('MyDocuments') } ) ) ) ) # Make sure statistics are cleared for each run foreach ($VariableName in [string[]]($Script:StatisticsVariables | Select-Object -ExpandProperty 'VariableName')) { $null = Get-Variable -Name $VariableName -Scope 'Script' -ErrorAction 'SilentlyContinue' | Remove-Variable -Scope 'Script' -Force } # Introduce script run Write-Information -MessageData ('# Script start at {0}' -f $TimeTotalStart.ToString('yyyy-MM-dd HH:mm:ss')) Write-Information -MessageData ( 'Scope: "{0}" ("{1}").' -f ( $(if ($SystemContext) { 'System' }else { 'User' }), $Script:Scope ) ) # Failproof ## Running as admin if $SystemContext if ($SystemContext) { $IsAdmin = [bool]$([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator) if ((-not($IsAdmin)) -or ([System.Environment]::Is64BitOperatingSystem -and (-not([System.Environment]::Is64BitProcess)))) { Write-Information -MessageData ('Run this script with 64 bit PowerShell as Admin!') Exit 1 } } ## User errors ### Check that same module is not specified in both $ModulesWanted and $ModulesUnwanted if (($ModulesWanted | Where-Object -FilterScript { $ModulesUnwanted -contains $_ }).'Count' -ge 1) { Throw ('ERROR - Same module(s) are specified in both $ModulesWanted and $ModulesUnwanted.') } ### Check that neccesary modules are not specified in $ModulesUnwanted if ([byte]($([string[]]($([string[]]('PackageManagement', 'PowerShellGet')).Where{ $ModulesUnwanted -contains $_ })).'Count') -gt 0) { Throw ('ERROR - Either "PackageManagement" or "PowerShellGet" was specified in $ModulesUnwanted. This is not supported as the script would not work correctly without them.') } ## Dependencies for the script to run successfully ### Check that PowerShellGallery is available if (-not(Test-NetConnection -ComputerName 'powershellgallery.com' -Port 443 -InformationLevel 'Quiet' -WarningAction 'SilentlyContinue')) { Throw ('ERROR - Could not connect to powershellgallery.com. Do you have internet connection, or is the web site down?') } ### Check that PowerShellGallery is responding within reasonable time if (-not[bool]$(Try { $null = Invoke-RestMethod -Method 'Get' -Uri 'https://www.powershellgallery.com' -TimeoutSec 2; $? }Catch { $false })) { Throw ('ERROR - Could ping powershellgallery.com, but it did not manage to provide a response within reasonable time.') } # Set Script Scope Variables $Script:ModulesInstalledNeedsRefresh = [bool] $true $Script:StatisticsVariables = [PSCustomObject[]]( [PSCustomObject]@{'VariableName' = 'ModulesInstalledMissing'; 'Description' = 'Modules installed (was missing)' }, [PSCustomObject]@{'VariableName' = 'ModulesSubInstalledMissing'; 'Description' = 'Submodules installed (was missing)' }, [PSCustomObject]@{'VariableName' = 'ModulesUpdated'; 'Description' = 'Modules updated' }, [PSCustomObject]@{'VariableName' = 'ModulesUninstalledOutdated'; 'Description' = 'Modules uninstalled (outdated)' }, [PSCustomObject]@{'VariableName' = 'ModulesUninstalledUnwanted'; 'Description' = 'Modules uninstalled (unwanted)' }, [PSCustomObject]@{'VariableName' = 'ScriptsMissing'; 'Description' = 'Scripts installed (was missing)' }, [PSCustomObject]@{'VariableName' = 'ScriptsUpdated'; 'Description' = 'Scripts updated' } ) # Set settings ## Disable proxies for speed [System.Net.WebRequest]::DefaultWebProxy = $null ## Use TLS 1.2 [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12 # Prerequirements ## Introduce step Write-Information -MessageData ('{0}# Prerequirements' -f ([System.Environment]::NewLine * 2)) ## See of PackageManagement module is installed $PackageManagementModuleIsInstalled = [bool]( $( [array]( Get-Module -ListAvailable 'PackageManagement' ) ).Where{ $_.'Path' -like ('{0}\*' -f $Script:ModulesPath).Replace('\\', '\') -and $_.'ModuleType' -eq 'Script' }.'Count' -gt 0 ) ## Proceed depending on whether the PackageManagement module is installed if ($PackageManagementModuleIsInstalled) { Write-Information -MessageData 'Prerequirements were met.' } else { # Import required modules $null = Import-Module -Name 'PackageManagement' -RequiredVersion '1.0.0.1' -Force # Package provider "NuGet", which is required for modules "PackageManagement" and "PowerShellGet" Write-Information -MessageData ('## Package Provider "NuGet"') if ([byte]$([string[]]$(Get-Module -Name 'PackageManagement', 'PowerShellGet' -ListAvailable -ErrorAction 'SilentlyContinue' | Where-Object -Property 'ModuleType' -EQ 'Script' | Select-Object -ExpandProperty 'Name' -Unique).'Count') -lt 2) { $VersionNuGetMinimum = [System.Version]$(Find-PackageProvider -Name 'NuGet' -Force -Verbose:$false -Debug:$false | Select-Object -ExpandProperty 'Version') $VersionNuGetInstalled = [System.Version]$(Get-PackageProvider -ListAvailable -Name 'NuGet' -ErrorAction 'SilentlyContinue' | Select-Object -ExpandProperty 'Version' | Sort-Object -Descending | Select-Object -First 1) if (-not $VersionNuGetInstalled -or $VersionNuGetInstalled -lt $VersionNuGetMinimum) { $null = Install-PackageProvider 'NuGet' –Force -Verbose:$false -Debug:$false -Scope $Script:Scope -ErrorAction 'Stop' Write-Information -MessageData ('{0}Not installed, or newer version available. Installing... Success? {1}' -f "`t", $?.ToString()) } else { Write-Information -MessageData ('{0}NuGet (Package Provider) is already installed.' -f "`t") } } else { Write-Information -MessageData ('"NuGet" is already present.') } # PowerShell modules "PackageManagement" and "PowerShellGet" (PowerShell Module) ## Introduce step Write-Information -MessageData ('{0}## PowerShell Modules "PackageManagement" & "PowerShellGet"' -f [System.Environment]::NewLine) ## Foreach the required modules foreach ($ModuleName in 'PackageManagement', 'PowerShellGet') { Write-Information -MessageData $ModuleName # Get version available $VersionAvailable = [System.Version](Get-PowerShellGalleryPackageLatestVersion -PackageName $ModuleName) # Get version installed $VersionInstalled = [System.Version]( Get-Module -ListAvailable -Name $ModuleName -ErrorAction 'SilentlyContinue' | ` Where-Object -FilterScript { $_.'Path' -like ('{0}\*' -f $Script:ModulesPath) -and $_.'ModuleType' -ne 'Binary' } | Sort-Object -Property @{'Expression' = { [System.Version]$_.'Version' }; 'Descending' = $true } | Select-Object -ExpandProperty 'Version' -First 1 ) # Install module if not already installed, or if available version is newer if (-not $VersionInstalled -or $VersionInstalled -lt $VersionAvailable) { Write-Information -MessageData ('{0}Not installed, or newer version available. Installing...' -f ("`t")) # Install module $null = Install-Package -Source 'PSGallery' -Name $ModuleName -Scope $Script:Scope -AllowClobber -Verbose:$false -Debug:$false -Confirm:$false -Force -ErrorAction 'Stop' 3>$null # Check success $Success = [bool]$($?) Write-Information -MessageData ('{0}{0}Success? {1}' -f ("`t", $Success.ToString())) # Load newest version of the module if success if ($Success) { $null = Get-Module -Name $ModuleName | Where-Object -Property 'Version' -NE $VersionAvailable | Remove-Module -Force $null = Import-Module -Name $ModuleName -RequiredVersion $VersionAvailable -Force -ErrorAction 'Stop' } } else { Write-Information -MessageData ('{0}"{1}" v{2} (PowerShell Module) is already installed.' -f "`t", $ModuleName, $VersionAvailable.Tostring()) } } # Only continue if PowerShellGet is installed, and either already imported, or can be imported successfully if ($([array](Get-Module -Name 'PowerShellGet')).'Count' -le 0) { if (-not([bool]$($null = Import-Module -Name 'PowerShellGet' -Force -ErrorAction 'SilentlyContinue'; $?))) { Throw 'ERROR: PowerShell module "PowerShellGet" is required to continue.' } } } # Modules ## Introduce step Write-Information -MessageData ('{0}# Modules' -f ([System.Environment]::NewLine * 2)) ## Uninstall Unwanted Modules Write-Information -MessageData '## Uninstall unwanted modules' if ($UninstallUnwantedModules) { Uninstall-ModulesUnwanted -ModulesUnwanted $ModulesUnwanted } else { Write-Information -MessageData ('{0}Uninstall unwanted modules is set to $false.' -f ("`t")) } ## Update Installed Modules Write-Information -MessageData ('{0}## Update installed modules' -f [System.Environment]::NewLine) if ($InstallUpdatedModules) { Update-ModulesInstalled } else { Write-Information -MessageData ('{0}Update installed modules is set to $false.' -f ("`t")) } ## Install Missing Modules Write-Information -MessageData ('{0}## Install missing modules' -f [System.Environment]::NewLine) if ($InstallMissingModules) { Install-ModulesMissing -ModulesWanted $ModulesWanted } else { Write-Information -MessageData ('{0}Install missing modules is set to $false.' -f ("`t")) } ## Installing Missing Sub Modules Write-Information -MessageData ('{0}## Install missing sub modules' -f [System.Environment]::NewLine) if ($InstallMissingSubModules) { Install-SubModulesMissing } else { Write-Information -MessageData ('{0}Install missing sub modules is set to $false.' -f ("`t")) } ## Remove old modules Write-Information -MessageData ('{0}## Remove outdated modules' -f [System.Environment]::NewLine) if ($UninstallOutdatedModules) { Uninstall-ModulesOutdated } else { Write-Information -MessageData ('{0}Remove outdated modules is set to $false.' -f "`t") } # Scripts ## Introduce step Write-Information -MessageData ('{0}# Scripts' -f ([System.Environment]::NewLine * 2)) ## Install missing scripts Write-Information -MessageData '## Install missing scripts if any' Install-ScriptsMissing -Scripts $Script:ScriptsWanted -Scope $Script:Scope ## Update existing scripts if newer are available Write-Information -MessageData '## Update installed scripts' Update-ScriptsInstalled -Scope $Script:Scope # Write Stats Write-Information -MessageData ('{0}# Finished.' -f ([System.Environment]::NewLine * 2)) Write-Information -MessageData ('## Stats') Output-Statistics Write-Information -MessageData ('{0}## Time' -f [System.Environment]::NewLine) Write-Information -MessageData ('Start time: {0} ({1}).' -f $Script:TimeTotalStart.ToString('HH\:mm\:ss'), $Script:TimeTotalStart.ToString('o')) Write-Information -MessageData ('End time: {0} ({1}).' -f (($Script:TimeTotalEnd = [datetime]::Now).ToString('HH\:mm\:ss'), $Script:TimeTotalEnd.ToString('o'))) Write-Information -MessageData ('Total runtime: {0}.' -f ([string]$([timespan]$($Script:TimeTotalEnd - $Script:TimeTotalStart)).ToString('hh\:mm\:ss'))) #endregion Main
43.820084
348
0.563194
4dc5e657916749173ae0bb4598e55b5cbdd65551
524
asm
Assembly
programs/oeis/037/A037504.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/037/A037504.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
programs/oeis/037/A037504.asm
karttu/loda
9c3b0fc57b810302220c044a9d17db733c76a598
[ "Apache-2.0" ]
null
null
null
; A037504: Base-3 digits are, in order, the first n terms of the periodic sequence with initial period 1,2,0. ; 1,5,15,46,140,420,1261,3785,11355,34066,102200,306600,919801,2759405,8278215,24834646,74503940,223511820,670535461,2011606385,6034819155,18104457466,54313372400,162940117200,488820351601,1466461054805,4399383164415,13198149493246,39594448479740,118783345439220,356350036317661,1069050108952985,3207150326858955 add $0,1 mov $2,6 lpb $0,1 sub $0,1 mul $2,3 mov $1,$2 add $1,3 mov $2,$1 div $1,13 lpe
37.428571
312
0.782443
83e2b3794cf5c34974dd63ab0bc63593002ad568
246
java
Java
Plugins/Instantiation/Model.persistency/src/net/ssehub/easy/instantiation/serializer/xml/Bundle.java
SSEHUB/EASyProducer
769ebe97f9f83963ea814f5e811a562ded7db5d5
[ "Apache-2.0" ]
10
2016-02-09T14:55:59.000Z
2019-06-06T00:23:38.000Z
Plugins/Instantiation/Model.persistency/src/net/ssehub/easy/instantiation/serializer/xml/Bundle.java
SSEHUB/EASyProducer
769ebe97f9f83963ea814f5e811a562ded7db5d5
[ "Apache-2.0" ]
88
2015-09-03T16:06:12.000Z
2021-05-26T12:10:12.000Z
Plugins/Instantiation/Model.persistency/src/net/ssehub/easy/instantiation/serializer/xml/Bundle.java
SSEHUB/EASyProducer
769ebe97f9f83963ea814f5e811a562ded7db5d5
[ "Apache-2.0" ]
1
2016-03-21T16:12:51.000Z
2016-03-21T16:12:51.000Z
package net.ssehub.easy.instantiation.serializer.xml; /** * Bundle/activator class for this plugin. * @author El-Sharkawy * */ public class Bundle { public static final String ID = "net.ssehub.easy.instantiation.serializer.xml"; }
18.923077
83
0.715447
0cf64afbc70433c317b11dd5d7e110098af083f6
1,553
sql
SQL
Definitions/main.mail_server/docker/postfix/1.0.0/Database/proto.init.sql
Server-Factory/Mail-Server-Factory
e2d5b664e0a8d79137addc58ff0b691eeeb34bbf
[ "Apache-2.0" ]
2
2021-01-02T10:41:32.000Z
2021-01-27T22:57:26.000Z
Definitions/main.mail_server/docker/postfix/1.0.0/Database/proto.init.sql
Server-Factory/Mail-Server-Factory
e2d5b664e0a8d79137addc58ff0b691eeeb34bbf
[ "Apache-2.0" ]
null
null
null
Definitions/main.mail_server/docker/postfix/1.0.0/Database/proto.init.sql
Server-Factory/Mail-Server-Factory
e2d5b664e0a8d79137addc58ff0b691eeeb34bbf
[ "Apache-2.0" ]
null
null
null
CREATE TABLE IF NOT EXISTS {{SERVICE.DATABASE.TABLE_DOMAINS}} ( id SERIAL PRIMARY KEY, name VARCHAR(50) NOT NULL UNIQUE ); CREATE TABLE IF NOT EXISTS {{SERVICE.DATABASE.TABLE_USERS}} ( id SERIAL PRIMARY KEY, domain_id INT NOT NULL, account VARCHAR(40) NOT NULL, password VARCHAR(128) NOT NULL, CONSTRAINT UNIQUE_EMAIL UNIQUE (domain_id, account), FOREIGN KEY (domain_id) REFERENCES {{SERVICE.DATABASE.TABLE_DOMAINS}} (id) ON DELETE CASCADE ); CREATE TABLE IF NOT EXISTS {{SERVICE.DATABASE.TABLE_ALIASES}} ( id SERIAL PRIMARY KEY, domain_id INT NOT NULL, source VARCHAR(40) NOT NULL, destination VARCHAR(80) NOT NULL, FOREIGN KEY (domain_id) REFERENCES {{SERVICE.DATABASE.TABLE_DOMAINS}} (id) ON DELETE CASCADE ); CREATE VIEW {{SERVICE.DATABASE.VIEW_USERS}} AS SELECT CONCAT({{SERVICE.DATABASE.TABLE_USERS}}.account, '@', {{SERVICE.DATABASE.TABLE_DOMAINS}}.name) AS email, {{SERVICE.DATABASE.TABLE_USERS}}.password FROM {{SERVICE.DATABASE.TABLE_USERS}} LEFT JOIN {{SERVICE.DATABASE.TABLE_DOMAINS}} ON {{SERVICE.DATABASE.TABLE_USERS}}.domain_id = {{SERVICE.DATABASE.TABLE_DOMAINS}}.id; CREATE VIEW {{SERVICE.DATABASE.VIEW_ALIASES}} AS SELECT CONCAT({{SERVICE.DATABASE.TABLE_ALIASES}}.source, '@', {{SERVICE.DATABASE.TABLE_DOMAINS}}.name) AS email, destination FROM {{SERVICE.DATABASE.TABLE_ALIASES}} LEFT JOIN {{SERVICE.DATABASE.TABLE_DOMAINS}} ON {{SERVICE.DATABASE.TABLE_ALIASES}}.domain_id = {{SERVICE.DATABASE.TABLE_DOMAINS}}.id;
44.371429
153
0.717965
84a8f0bff057f16f60b0ba85de120ddaa3b05c2e
1,795
dart
Dart
src/lib/widgets/input.dart
ilhamitugral/UZEMYO-Mobile-Programming-Visa-Assignment
2567e27b1d92442cdc0442d2e3ba167b3e27b517
[ "MIT" ]
null
null
null
src/lib/widgets/input.dart
ilhamitugral/UZEMYO-Mobile-Programming-Visa-Assignment
2567e27b1d92442cdc0442d2e3ba167b3e27b517
[ "MIT" ]
null
null
null
src/lib/widgets/input.dart
ilhamitugral/UZEMYO-Mobile-Programming-Visa-Assignment
2567e27b1d92442cdc0442d2e3ba167b3e27b517
[ "MIT" ]
null
null
null
import 'package:flutter/material.dart'; class Input extends StatelessWidget { const Input({ Key key, this.text = "", this.margin = const EdgeInsets.all(0.0), this.bgColor = const Color(0xFF363636), this.focusBorderColor = const Color(0xFF000000), this.textColor = const Color(0xFFFFFFFF), this.labelColor = const Color(0xFF999999), this.borderRadius = 25.0, this.onSaved, this.obSecureText = false, }) : super(key: key); final String text; final EdgeInsets margin; final Color bgColor; final Color focusBorderColor; final Color textColor; final double borderRadius; final Color labelColor; final Function onSaved; final bool obSecureText; @override Widget build(BuildContext context) { return Container( margin: this.margin, decoration: BoxDecoration( color: this.bgColor, borderRadius: BorderRadius.circular(borderRadius), ), child: TextFormField( obscureText: this.obSecureText, style: TextStyle( color: this.textColor, decorationColor: this.bgColor, ), onSaved: this.onSaved, decoration: InputDecoration( focusedBorder: OutlineInputBorder( borderSide: BorderSide( color: focusBorderColor, width: 2.0, ), borderRadius: BorderRadius.circular(borderRadius), ), border: OutlineInputBorder( borderSide: BorderSide( color: focusBorderColor, width: 2.0, ), borderRadius: BorderRadius.circular(borderRadius), ), labelText: this.text, labelStyle: TextStyle( color: this.labelColor, ), ), ), ); } }
27.19697
62
0.608357
662f70b4a2ce0718793af18985a2ed46157e7047
817
hpp
C++
platform/platform/HighDPI.hpp
Legacy-LuaSTG-Engine/LuaSTG-Sub
c7d21da53fc86efe4e3907738f8fed324581dee0
[ "MIT" ]
6
2022-02-26T09:21:40.000Z
2022-02-28T11:03:23.000Z
platform/platform/HighDPI.hpp
Legacy-LuaSTG-Engine/LuaSTG-Sub
c7d21da53fc86efe4e3907738f8fed324581dee0
[ "MIT" ]
null
null
null
platform/platform/HighDPI.hpp
Legacy-LuaSTG-Engine/LuaSTG-Sub
c7d21da53fc86efe4e3907738f8fed324581dee0
[ "MIT" ]
null
null
null
#pragma once namespace platform { class HighDPI { public: static void Enable(); static BOOL EnableNonClientDpiScaling(HWND hWnd); static BOOL AdjustWindowRectExForDpi(LPRECT lpRect, DWORD dwStyle, BOOL bMenu, DWORD dwExStyle, UINT dpi); static UINT GetDpiForSystem(); static UINT GetDpiForMonitor(HMONITOR hMonitor); static UINT GetDpiForWindow(HWND hWnd); static FLOAT GetDpiScalingForSystem(); static FLOAT GetDpiScalingForMonitor(HMONITOR hMonitor); static FLOAT GetDpiScalingForWindow(HWND hWnd); template<typename T> static inline T ScalingByDpi(T value, UINT dpi) { return (T)::MulDiv((int)value, (int)dpi, USER_DEFAULT_SCREEN_DPI); } static inline float ScalingFromDpi(UINT dpi) { return (float)dpi / (float)USER_DEFAULT_SCREEN_DPI; } }; }
29.178571
109
0.735618
e8c22c646b8148a4bec6c1451e048c058c3aed90
1,102
cpp
C++
src/polymorphism/poly_inline.cpp
firedtoad/cppbenchmark
328938d9283f89bc97fc4c87a493c676bf7de97a
[ "Apache-2.0" ]
1
2022-01-20T03:58:52.000Z
2022-01-20T03:58:52.000Z
src/polymorphism/poly_inline.cpp
firedtoad/cppbenchmark
328938d9283f89bc97fc4c87a493c676bf7de97a
[ "Apache-2.0" ]
null
null
null
src/polymorphism/poly_inline.cpp
firedtoad/cppbenchmark
328938d9283f89bc97fc4c87a493c676bf7de97a
[ "Apache-2.0" ]
null
null
null
// // Created by dietoad@gmail.com on 2022/1/21. // #include <benchmark/benchmark.h> #include <vector> class Base { public: virtual ~Base() {} virtual uint64_t v_func() = 0; }; class Derived : public Base { protected: uint64_t y; public: uint64_t pure() { return y++; } uint64_t v_func() { return y++; } }; static void BenchPureCall(benchmark::State &state) { auto count = state.range(0); Derived *p = new Derived{}; auto sum = 0; for (auto _ : state) { for (auto i = 0; i < count; i++) { sum += p->pure(); benchmark::DoNotOptimize(sum); } } delete p; } static void BenchVirtualCall(benchmark::State &state) { auto count = state.range(0); Base *p = new Derived{}; auto sum = 0; for (auto _ : state) { for (auto i = 0; i < count; i++) { sum += p->v_func(); benchmark::DoNotOptimize(sum); } } delete p; } BENCHMARK(BenchPureCall)->Range(1024, 1024); BENCHMARK(BenchVirtualCall)->Range(1024, 1024); int main(int argc, char **argv) { benchmark::Initialize(&argc, argv); benchmark::RunSpecifiedBenchmarks(); return 0; }
19.678571
55
0.618875
c59cd38645df981a864f7e8a914be006a0331eea
2,376
cpp
C++
flite/src/wavesynth/sts.cpp
Barath-Kannan/flite
236f91a9a1e60fd25f1deed6d48022567cd7100f
[ "Apache-2.0" ]
7
2017-12-10T23:02:22.000Z
2021-08-05T21:12:11.000Z
flite/src/wavesynth/sts.cpp
Barath-Kannan/flite
236f91a9a1e60fd25f1deed6d48022567cd7100f
[ "Apache-2.0" ]
null
null
null
flite/src/wavesynth/sts.cpp
Barath-Kannan/flite
236f91a9a1e60fd25f1deed6d48022567cd7100f
[ "Apache-2.0" ]
3
2018-10-28T03:47:09.000Z
2020-06-04T08:54:23.000Z
#include "flite/wavesynth/sts.hpp" #include "flite/wavesynth/sigpr.hpp" #include "flite/hrg/hrg.hpp" #include "flite/synthcommon/wave.hpp" #include "flite/utils/math.hpp" CST_VAL_REGISTER_TYPE_NODEL(sts_list, cst_sts_list) cst_sts_list* new_sts_list() { cst_sts_list* l = cst_alloc(struct cst_sts_list_struct, 1); return l; } void delete_sts_list(cst_sts_list* l) { if (l) { /* sub data is always const so can't free it */ cst_free(l); } return; } int get_unit_size(const cst_sts_list* s, int start, int end) { /* returns size (in samples) of unit */ int i, size; for (i = start, size = 0; i < end; i++) size += get_frame_size(s, i); return size; } int get_frame_size(const cst_sts_list* sts_list, int frame) { if (sts_list->sts) { return sts_list->sts[frame].size; } else if (sts_list->sts_paged) { return sts_list->sts_paged[frame].res_size; } else if (sts_list->ressizes) return sts_list->ressizes[frame]; else { /* This assumes that the voice compiler has generated an extra offset at the end of the array. */ return sts_list->resoffs[frame + 1] - sts_list->resoffs[frame]; } } const unsigned short* get_sts_frame(const cst_sts_list* sts_list, int frame) { if (sts_list->sts) return sts_list->sts[frame].frame; else if (sts_list->sts_paged) return &sts_list->sts_paged[frame].frame_page[sts_list->num_channels * sts_list->sts_paged[frame].frame_offset]; else return sts_list->frames + (frame * sts_list->num_channels); } const unsigned char* get_sts_residual(const cst_sts_list* sts_list, int frame) { if (sts_list->sts) return sts_list->sts[frame].residual; else if (sts_list->sts_paged) return &sts_list->sts_paged[frame].res_page[sts_list->sts_paged[frame].res_offset]; else return sts_list->residuals + sts_list->resoffs[frame]; } const unsigned char* get_sts_residual_fixed(const cst_sts_list* sts_list, int frame) { /* Actually for mceps */ if (sts_list->sts) return sts_list->sts[frame].residual; else if (sts_list->sts_paged) return &sts_list->sts_paged[frame].res_page[sts_list->sts_paged[frame].res_offset]; else return (const unsigned char*)sts_list->residuals + (frame * sts_list->num_channels); }
28.626506
120
0.672559
3bf024e0032bb44bca21bcb83c848501ad146e07
2,600
html
HTML
dist/contact.html
ganeshkatta39/portfolio-website
5d2cd42d0287b93eba67faa9d1678cf1a9ffc321
[ "MIT" ]
null
null
null
dist/contact.html
ganeshkatta39/portfolio-website
5d2cd42d0287b93eba67faa9d1678cf1a9ffc321
[ "MIT" ]
null
null
null
dist/contact.html
ganeshkatta39/portfolio-website
5d2cd42d0287b93eba67faa9d1678cf1a9ffc321
[ "MIT" ]
null
null
null
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="css/style.css"> <!-- icons from font-awsome website --> <script src="https://kit.fontawesome.com/38a548e0d1.js" crossorigin="anonymous"></script> <title>Contact Katta Ganesh</title> </head> <body> <header> <div class="menu-btn"> <span class="menu-btn__burger"> </span> </div> <nav class="nav"> <ul class="menu-nav"> <li class="menu-nav__item "> <a href="index.html" class="menu-nav__link">Home</a> </li> <li class="menu-nav__item "> <a href="about.html" class="menu-nav__link">About Me</a> </li> <li class="menu-nav__item "> <a href="projects.html" class="menu-nav__link">My Projects</a> </li> <li class="menu-nav__item active"> <a href="contact.html" class="menu-nav__link">Contact Me</a> </li> </ul> </nav> </header> <main> <section class="contact"> <h2>Contact Me..</h2> <div class="contact__list"> <div class="contact__email"> <i class="fas fa-envalope"></i> Email <div class="text-secondary">email@email.com</div> </div> <div class="contact__phone"> <i class="fas fa-mobile-alt"></i> Phone <div class="text-secondary">000-000-0000</div> </div> <div class="contact__address"> <i class="fas fa-marker-alt"></i> address <div class="text-secondary">0-0-0 at _____ , ______ </div> </div> </div> <div class="social--icons"> <a href="#!"> <i class="fab fa-twitter fa-2x"></i> </a> <a href="#!"> <i class="fab fa-facebook fa-2x"></i> <a href="#!"> <i class="fab fa-instagram fa-2x"></i> </a> <a href="#!"> <i class="fab fa-github fa-2x"></i> </a> </div> <footer>&copy; Copyright 2020</footer> </section> </main> <script src="js/script.js"></script> </body> </html>
35.135135
94
0.44
753f4445630a774aed1af8335132460aecfd3a1b
414
cs
C#
apps/apps-docs/docs.microsoft.com/dotnet/csharp/programming-guide/events/how-to-implement-interface-events/intro2WrapTwoInterfaceEvents/intro/Subscriber1.cs
reyou/Ggg.GitHub
059e825b985b89c18f91b8627ec1a67d0ffb8db5
[ "Apache-2.0" ]
2
2018-11-21T16:23:19.000Z
2019-12-18T23:24:39.000Z
apps/apps-docs/docs.microsoft.com/dotnet/csharp/programming-guide/events/how-to-implement-interface-events/intro2WrapTwoInterfaceEvents/intro/Subscriber1.cs
reyou/Ggg.Csharp
3a7a81a443e697160f86cae86a2a7de851639f7d
[ "Apache-2.0" ]
null
null
null
apps/apps-docs/docs.microsoft.com/dotnet/csharp/programming-guide/events/how-to-implement-interface-events/intro2WrapTwoInterfaceEvents/intro/Subscriber1.cs
reyou/Ggg.Csharp
3a7a81a443e697160f86cae86a2a7de851639f7d
[ "Apache-2.0" ]
null
null
null
using System; namespace intro { public class Subscriber1 { // References the shape object as an IDrawingObject public Subscriber1(Shape shape) { IDrawingObject d = shape; d.OnDraw += d_OnDraw; } void d_OnDraw(object sender, EventArgs e) { Console.WriteLine("Sub1 receives the IDrawingObject event."); } } }
20.7
73
0.567633
66de2e568ee023c63b65050f6938da89274a24bb
1,007
cc
C++
2021/quals/rev-polymorph/solution/alternate/gather_one_bit.cc
BearerPipelineTest/google-ctf
a0cab9cb6663ab908b9186d5428aa9674253c5c3
[ "Apache-2.0" ]
2,757
2018-04-28T21:41:36.000Z
2022-03-29T06:33:36.000Z
2021/quals/rev-polymorph/solution/alternate/gather_one_bit.cc
BearerPipelineTest/google-ctf
a0cab9cb6663ab908b9186d5428aa9674253c5c3
[ "Apache-2.0" ]
20
2019-07-23T15:29:32.000Z
2022-01-21T12:53:04.000Z
2021/quals/rev-polymorph/solution/alternate/gather_one_bit.cc
BearerPipelineTest/google-ctf
a0cab9cb6663ab908b9186d5428aa9674253c5c3
[ "Apache-2.0" ]
449
2018-05-09T05:54:05.000Z
2022-03-30T14:54:18.000Z
// Copyright 2021 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // Author: Ian Eldred Pudney #include <string> #include <iostream> #include <fstream> #include <streambuf> #include <unordered_set> #include <vector> #include <filesystem> #include <thread> #include <mutex> #include "public_handling.h" int main(int argc, char** argv) { uint32_t hash = hash_file(argv[1]); deal_with_public(hash); bool relevant_bit_set = hash & (1 << TARGET_BIT); return relevant_bit_set; }
28.771429
75
0.734856
83cc81f03250aece57d32a7b3d6db06167587485
12,985
java
Java
exec/java-exec/src/test/java/org/apache/drill/exec/expr/fn/impl/TestTypeFns.java
julien-faye/drill
4422dad981725c80df41dadd10ea2add89b60ec7
[ "Apache-2.0" ]
1,510
2015-01-04T01:35:19.000Z
2022-03-28T23:36:02.000Z
exec/java-exec/src/test/java/org/apache/drill/exec/expr/fn/impl/TestTypeFns.java
julien-faye/drill
4422dad981725c80df41dadd10ea2add89b60ec7
[ "Apache-2.0" ]
1,979
2015-01-28T03:18:38.000Z
2022-03-31T13:49:32.000Z
exec/java-exec/src/test/java/org/apache/drill/exec/expr/fn/impl/TestTypeFns.java
julien-faye/drill
4422dad981725c80df41dadd10ea2add89b60ec7
[ "Apache-2.0" ]
940
2015-01-01T01:39:39.000Z
2022-03-25T08:46:59.000Z
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.drill.exec.expr.fn.impl; import static org.junit.Assert.assertEquals; import org.apache.drill.exec.ExecConstants; import org.apache.drill.exec.planner.physical.PlannerSettings; import org.apache.drill.exec.rpc.RpcException; import org.apache.drill.test.ClusterFixture; import org.apache.drill.test.ClusterFixtureBuilder; import org.apache.drill.test.ClusterTest; import org.junit.BeforeClass; import org.junit.Test; public class TestTypeFns extends ClusterTest { @BeforeClass public static void setup() throws Exception { // Use the following three lines if you add a function // to avoid the need for a full Drill build. ClusterFixtureBuilder builder = ClusterFixture.builder(dirTestWatcher) .configProperty("drill.classpath.scanning.cache.enabled", false); startCluster(builder); // Use the following line if a full Drill build has been // done since adding new functions. // startCluster(ClusterFixture.builder(dirTestWatcher).maxParallelization(1)); } @Test public void testTypeOf() throws RpcException { // SMALLINT not supported in CAST //doTypeOfTest("SMALLINT"); doTypeOfTest("INT"); doTypeOfTest("BIGINT"); doTypeOfTest("VARCHAR"); doTypeOfTest("FLOAT", "FLOAT4"); doTypeOfTest("DOUBLE", "FLOAT8"); doTypeOfTestSpecial("a", "true", "BIT"); doTypeOfTestSpecial("a", "CURRENT_DATE", "DATE"); doTypeOfTestSpecial("a", "CURRENT_TIME", "TIME"); doTypeOfTestSpecial("a", "CURRENT_TIMESTAMP", "TIMESTAMP"); doTypeOfTestSpecial("a", "AGE(CURRENT_TIMESTAMP)", "INTERVAL"); doTypeOfTestSpecial("BINARY_STRING(a)", "'\\xde\\xad\\xbe\\xef'", "VARBINARY"); try { client.alterSession(PlannerSettings.ENABLE_DECIMAL_DATA_TYPE_KEY, true); doTypeOfTestSpecial("CAST(a AS DECIMAL)", "1", "VARDECIMAL"); doTypeOfTestSpecial("CAST(a AS DECIMAL(6, 3))", "1", "VARDECIMAL"); } finally { client.resetSession(PlannerSettings.ENABLE_DECIMAL_DATA_TYPE_KEY); } } private void doTypeOfTest(String type) throws RpcException { doTypeOfTest(type, type); } private void doTypeOfTest(String castType, String resultType) throws RpcException { // typeof() returns types using the internal names. String sql = "SELECT typeof(CAST(a AS " + castType + ")) FROM (VALUES (1)) AS T(a)"; String result = queryBuilder().sql(sql).singletonString(); assertEquals(resultType, result); // For typeof(), null values annoyingly report a type of "NULL" sql = "SELECT typeof(CAST(a AS " + castType + ")) FROM cp.`functions/null.json`"; result = queryBuilder().sql(sql).singletonString(); assertEquals(resultType, result); } private void doTypeOfTestSpecial(String expr, String value, String resultType) throws RpcException { String sql = "SELECT typeof(" + expr + ") FROM (VALUES (" + value + ")) AS T(a)"; String result = queryBuilder().sql(sql).singletonString(); assertEquals(resultType, result); } @Test public void testSqlTypeOf() throws RpcException { // SMALLINT not supported in CAST //doSqlTypeOfTest("SMALLINT"); doSqlTypeOfTest("INTEGER"); doSqlTypeOfTest("BIGINT"); doSqlTypeOfTest("CHARACTER VARYING"); doSqlTypeOfTest("FLOAT"); doSqlTypeOfTest("DOUBLE"); doSqlTypeOfTestSpecial("a", "true", "BOOLEAN"); doSqlTypeOfTestSpecial("a", "CURRENT_DATE", "DATE"); doSqlTypeOfTestSpecial("a", "CURRENT_TIME", "TIME"); doSqlTypeOfTestSpecial("a", "CURRENT_TIMESTAMP", "TIMESTAMP"); doSqlTypeOfTestSpecial("a", "AGE(CURRENT_TIMESTAMP)", "INTERVAL"); doSqlTypeOfTestSpecial("BINARY_STRING(a)", "'\\xde\\xad\\xbe\\xef'", "BINARY VARYING"); try { client.alterSession(PlannerSettings.ENABLE_DECIMAL_DATA_TYPE_KEY, true); // These should include precision and scale: DECIMAL(p, s) // But, see DRILL-6378 doSqlTypeOfTestSpecial("CAST(a AS DECIMAL)", "1", "DECIMAL(38, 0)"); doSqlTypeOfTestSpecial("CAST(a AS DECIMAL(6, 3))", "1", "DECIMAL(6, 3)"); } finally { client.resetSession(PlannerSettings.ENABLE_DECIMAL_DATA_TYPE_KEY); } } private void doSqlTypeOfTest(String type) throws RpcException { // sqlTypeOf() returns SQL type names: the names used in CAST. String sql = "SELECT sqlTypeOf(CAST(a AS " + type + ")) FROM (VALUES (1)) AS T(a)"; String result = queryBuilder().sql(sql).singletonString(); assertEquals(type, result); // sqlTypeOf() returns SQL type names: the names used in CAST. sql = "SELECT sqlTypeOf(CAST(1 AS " + type + "))"; result = queryBuilder().sql(sql).singletonString(); assertEquals(type, result); // Returns same type even value is null. sql = "SELECT sqlTypeOf(CAST(a AS " + type + ")) FROM cp.`functions/null.json`"; result = queryBuilder().sql(sql).singletonString(); assertEquals(type, result); } private void doSqlTypeOfTestSpecial(String expr, String value, String resultType) throws RpcException { String sql = "SELECT sqlTypeof(" + expr + ") FROM (VALUES (" + value + ")) AS T(a)"; String result = queryBuilder().sql(sql).singletonString(); assertEquals(resultType, result); } @Test public void testDrillTypeOf() throws RpcException { // SMALLINT not supported in CAST //doDrillTypeOfTest("SMALLINT"); doDrillTypeOfTest("INTEGER", "INT"); doDrillTypeOfTest("BIGINT"); doDrillTypeOfTest("CHARACTER VARYING", "VARCHAR"); doDrillTypeOfTest("FLOAT", "FLOAT4"); doDrillTypeOfTest("DOUBLE", "FLOAT8"); // Omitting the other types. Internal code is identical to // typeof() except for null handling. } private void doDrillTypeOfTest(String type) throws RpcException { doDrillTypeOfTest(type, type); } private void doDrillTypeOfTest(String castType, String resultType) throws RpcException { // drillTypeOf() returns types using the internal names. String sql = "SELECT drillTypeOf(CAST(a AS " + castType + ")) FROM (VALUES (1)) AS T(a)"; String result = queryBuilder().sql(sql).singletonString(); assertEquals(resultType, result); sql = "SELECT drillTypeOf(CAST(1 AS " + castType + "))"; result = queryBuilder().sql(sql).singletonString(); assertEquals(resultType, result); // Returns same type even value is null. sql = "SELECT drillTypeOf(CAST(a AS " + castType + ")) FROM cp.`functions/null.json`"; result = queryBuilder().sql(sql).singletonString(); assertEquals(resultType, result); } @Test public void testModeOf() throws RpcException { // CSV files with headers use REQUIRED mode String sql = "SELECT modeOf(`name`) FROM cp.`store/text/data/cars.csvh`"; String result = queryBuilder().sql(sql).singletonString(); assertEquals("NOT NULL", result); // CSV files without headers use REPEATED mode sql = "SELECT modeOf(`columns`) FROM cp.`textinput/input2.csv`"; result = queryBuilder().sql(sql).singletonString(); assertEquals("ARRAY", result); // JSON files use OPTIONAL mode sql = "SELECT modeOf(`name`) FROM cp.`jsoninput/specialchar.json`"; result = queryBuilder().sql(sql).singletonString(); assertEquals("NULLABLE", result); } @Test public void testTypeOfLiteral() throws Exception { String sql = "SELECT typeOf(1) c1," + "typeOf('a') c2," + "typeOf(date '2018-01-22') c3," + "typeOf(time '01:00:20.123') c4," + "typeOf(timestamp '2018-01-22 01:00:20.123') c5," + "typeOf(false) c6," + "typeOf(12.3) c7," + "typeOf(1>2) c8," + "typeOf(cast(null as int)) c9"; testBuilder() .sqlQuery(sql) .unOrdered() .baselineColumns("c1", "c2", "c3", "c4", "c5", "c6", "c7", "c8", "c9") .baselineValues("INT", "VARCHAR", "DATE", "TIME", "TIMESTAMP", "BIT", "VARDECIMAL", "BIT", "INT") .go(); } @Test public void testSqlTypeOfLiteral() throws Exception { String sql = "SELECT sqlTypeOf(1) c1," + "sqlTypeOf('a') c2," + "sqlTypeOf(date '2018-01-22') c3," + "sqlTypeOf(time '01:00:20.123') c4," + "sqlTypeOf(timestamp '2018-01-22 01:00:20.123') c5," + "sqlTypeOf(false) c6," + "sqlTypeOf(12.3) c7," + "sqlTypeOf(1>2) c8," + "sqlTypeOf(cast(null as int)) c9"; testBuilder() .sqlQuery(sql) .unOrdered() .baselineColumns("c1", "c2", "c3", "c4", "c5", "c6", "c7", "c8", "c9") .baselineValues("INTEGER", "CHARACTER VARYING", "DATE", "TIME", "TIMESTAMP", "BOOLEAN", "DECIMAL(3, 1)", "BOOLEAN", "INTEGER") .go(); } @Test public void testDrillTypeOfLiteral() throws Exception { String sql = "SELECT drillTypeOf(1) c1," + "drillTypeOf('a') c2," + "drillTypeOf(date '2018-01-22') c3," + "drillTypeOf(time '01:00:20.123') c4," + "drillTypeOf(timestamp '2018-01-22 01:00:20.123') c5," + "drillTypeOf(false) c6," + "drillTypeOf(12.3) c7," + "drillTypeOf(1>2) c8," + "drillTypeOf(cast(null as int)) c9"; testBuilder() .sqlQuery(sql) .unOrdered() .baselineColumns("c1", "c2", "c3", "c4", "c5", "c6", "c7", "c8", "c9") .baselineValues("INT", "VARCHAR", "DATE", "TIME", "TIMESTAMP", "BIT", "VARDECIMAL", "BIT", "INT") .go(); } @Test public void testModeOfLiteral() throws Exception { String sql = "SELECT modeOf(1) c1," + "modeOf('a') c2," + "modeOf(cast(null as int)) c3," + "modeOf(case when true then null else 'a' end) c4," + "modeOf(case when false then null else 'a' end) c5"; testBuilder() .sqlQuery(sql) .unOrdered() .baselineColumns("c1", "c2", "c3", "c4", "c5") .baselineValues("NOT NULL", "NOT NULL", "NULLABLE", "NULLABLE", "NULLABLE") .go(); } @Test public void testCompareTypeLiteral() throws Exception { String sql = "SELECT compareType(1, 2) c1," + "compareType('a', 1) c2," + "compareType(1, 'a') c3," + "compareType(a, '01:00:20.123') c4," + "compareType(3, t.a) c5," + "compareType(t.a, 3) c6\n" + "from (values(1)) t(a)"; testBuilder() .sqlQuery(sql) .unOrdered() .baselineColumns("c1", "c2", "c3", "c4", "c5", "c6") .baselineValues(0, 1, -1, -1, 0, 0) .go(); } @Test public void testTypeOfWithFile() throws Exception { // Column `x` does not actually appear in the file. String sql ="SELECT typeof(bi) AS bi_t, typeof(fl) AS fl_t, typeof(st) AS st_t,\n" + " typeof(mp) AS mp_t, typeof(ar) AS ar_t, typeof(nu) AS nu_t,\n" + " typeof(x) AS x_t\n" + "FROM cp.`jsoninput/allTypes.json`"; testBuilder() .sqlQuery(sql) .ordered() .baselineColumns("bi_t", "fl_t", "st_t", "mp_t", "ar_t", "nu_t", "x_t") .baselineValues( "BIGINT", "FLOAT8", "VARCHAR", "MAP", "BIGINT", "NULL", "NULL") .go(); } @Test public void testUnionType() throws Exception { String sql ="SELECT typeof(a) AS t, modeof(a) AS m, drilltypeof(a) AS dt\n" + "FROM cp.`jsoninput/union/c.json`"; try { testBuilder() .optionSettingQueriesForTestQuery("alter session set `exec.enable_union_type` = true") .sqlQuery(sql) .ordered() .baselineColumns("t", "m", "dt") .baselineValues( "VARCHAR", "NULLABLE", "UNION") .baselineValues( "BIGINT", "NULLABLE", "UNION") .baselineValues( "FLOAT8", "NULLABLE", "UNION") // The following should probably provide the type of the list, // and report cardinality as ARRAY. .baselineValues( "LIST", "NULLABLE", "UNION") .baselineValues( "NULL", "NULLABLE", "UNION") .go(); } finally { client.resetSession(ExecConstants.ENABLE_UNION_TYPE_KEY); } } }
37.206304
105
0.6268
b97f886384a3bc4e018187697ec0b53249985d66
498
dart
Dart
lib/models/custom_query.dart
mate-app/mate_app
411e64b085426d5d9eafc5dfeea22b743b9fc660
[ "MIT" ]
3
2021-05-20T06:17:50.000Z
2021-05-20T13:52:20.000Z
lib/models/custom_query.dart
mate-app/mate_app
411e64b085426d5d9eafc5dfeea22b743b9fc660
[ "MIT" ]
17
2020-11-20T09:23:18.000Z
2020-12-10T21:43:11.000Z
lib/models/custom_query.dart
mate-app/mate_app
411e64b085426d5d9eafc5dfeea22b743b9fc660
[ "MIT" ]
null
null
null
import 'package:flutter/foundation.dart'; class CustomQuery { String field; String operation; dynamic value; CustomQuery( {@required this.field, @required this.operation, @required this.value}) : assert(field != null), assert([ '==', '>', '<', '<=', '>=', 'isNull', 'arrayContains', 'arrayContainsAny', 'whereIn' ].contains(operation)), assert(value != null); }
20.75
77
0.5
0adfca4bbee42e4ac34fbd7d563a4d8236776c3e
2,068
dart
Dart
lib/modules/users/bloc/users_bloc.dart
SimiPrambos/suitmedia-intern-test
fcf8600ce39a16002ec64e5f97381dd3fe3cd6d4
[ "MIT" ]
null
null
null
lib/modules/users/bloc/users_bloc.dart
SimiPrambos/suitmedia-intern-test
fcf8600ce39a16002ec64e5f97381dd3fe3cd6d4
[ "MIT" ]
null
null
null
lib/modules/users/bloc/users_bloc.dart
SimiPrambos/suitmedia-intern-test
fcf8600ce39a16002ec64e5f97381dd3fe3cd6d4
[ "MIT" ]
null
null
null
import 'package:bloc/bloc.dart'; import 'package:bloc_concurrency/bloc_concurrency.dart'; import 'package:equatable/equatable.dart'; import 'package:stream_transform/stream_transform.dart'; import 'package:suitmedia/data/data.dart'; part 'users_event.dart'; part 'users_state.dart'; EventTransformer<E> throttleDroppable<E>(Duration duration) { return (events, mapper) { return droppable<E>().call(events.throttle(duration), mapper); }; } class UsersBloc extends Bloc<UsersEvent, UsersState> { UsersBloc(this.repository) : super(const UsersState()) { on<UsersRequested>(_onUsersRequested); on<UsersSelected>(_onUsersSelected); on<UsersLoadMoreRequested>( _onUsersLoadMoreRequested, transformer: throttleDroppable(const Duration(milliseconds: 100)), ); } final UserRepository repository; Future<void> _onUsersRequested( UsersRequested event, Emitter<UsersState> emit, ) async { emit(state.copyWith(status: UsersStateStatus.initial)); try { final result = await repository.findAll(); emit( state.copyWith( status: UsersStateStatus.success, users: result.data, page: result.page, hasReachedMax: result.hasReachedMax, ), ); } catch (e) { emit(state.copyWith(status: UsersStateStatus.failure)); } } Future<void> _onUsersLoadMoreRequested( UsersLoadMoreRequested event, Emitter<UsersState> emit, ) async { if (state.hasReachedMax) return; try { final result = await repository.findAll(page: state.page + 1); emit( state.copyWith( status: UsersStateStatus.success, users: List.of(state.users)..addAll(result.data), page: result.page, hasReachedMax: result.hasReachedMax, ), ); } catch (e) { emit(state.copyWith(status: UsersStateStatus.failure)); } } Future<void> _onUsersSelected( UsersSelected event, Emitter<UsersState> emit, ) async { emit(state.copyWith(selected: event.user)); } }
27.210526
72
0.674565
e7addc4a640a474b3cc922fc93625028795523b0
4,063
dart
Dart
test/header_interceptor_test.dart
danijel-tolj/dio_api_version_interceptor
4d664df7e194a9140103fa157023311f9fc61f88
[ "BSD-3-Clause" ]
null
null
null
test/header_interceptor_test.dart
danijel-tolj/dio_api_version_interceptor
4d664df7e194a9140103fa157023311f9fc61f88
[ "BSD-3-Clause" ]
null
null
null
test/header_interceptor_test.dart
danijel-tolj/dio_api_version_interceptor
4d664df7e194a9140103fa157023311f9fc61f88
[ "BSD-3-Clause" ]
null
null
null
import 'dart:async'; import 'package:dio/dio.dart'; import 'package:dio_api_version_interceptor/dio_api_version_interceptor.dart'; import 'package:http_mock_adapter/http_mock_adapter.dart'; import 'package:test/test.dart'; void main() { StreamController<CompatibilityResult> controller = StreamController<CompatibilityResult>(); Stream<CompatibilityResult> stream = controller.stream.asBroadcastStream(); Dio dio = Dio(BaseOptions(baseUrl: 'https://someserver.com/api')) ..interceptors.add(ApiVersionHeaderInterceptor( streamController: controller, appVersion: '1.0.0')); DioAdapter dioAdapter = DioAdapter(dio: dio); group('Tests for Header interceptor responses', () { setUp(() { controller = StreamController<CompatibilityResult>(); stream = controller.stream.asBroadcastStream(); dio.interceptors.clear(); dio.interceptors.add(ApiVersionHeaderInterceptor( streamController: controller, appVersion: '1.0.0')); dioAdapter.onGet( '/request100', (server) => server.reply(200, { 'message': 'Success!' }, headers: { Headers.contentTypeHeader: [Headers.jsonContentType], defaultApiVersionKey: ['1.0.0'], }), ); dioAdapter.onGet( '/request101', (server) => server.reply(200, { 'message': 'Success!' }, headers: { Headers.contentTypeHeader: [Headers.jsonContentType], defaultApiVersionKey: ['1.0.1'], }), ); dioAdapter.onGet( '/request111', (server) => server.reply(200, { 'message': 'Success!' }, headers: { Headers.contentTypeHeader: [Headers.jsonContentType], defaultApiVersionKey: ['1.1.1'], }), ); dioAdapter.onGet( '/request110', (server) => server.reply(200, { 'message': 'Success!' }, headers: { Headers.contentTypeHeader: [Headers.jsonContentType], defaultApiVersionKey: ['1.1.0'], }), ); dioAdapter.onGet( '/request211', (server) => server.reply(200, { 'message': 'Success!' }, headers: { Headers.contentTypeHeader: [Headers.jsonContentType], defaultApiVersionKey: ['2.1.1'], }), ); }); setUpFailure(String version, VersionSupportType supportType) { controller = StreamController<CompatibilityResult>(); stream = controller.stream.asBroadcastStream(); dio.interceptors.clear(); dio.interceptors.add(ApiVersionHeaderInterceptor( streamController: controller, appVersion: version, minSupportedVersion: supportType, )); } tearDown(() async {}); test( 'StreamController adds a CompatibleVersion for the same version of API and app', () async { await dio.get('/request100'); expect(stream, emitsInOrder([CompatibleVersion('1.0.0', '1.0.0')])); }); test( 'StreamController adds a CompatibleVersion when only api fix version is higher ', () async { await dio.get('/request101'); expect(stream, emitsInOrder([CompatibleVersion('1.0.1', '1.0.0')])); }); test( 'StreamController adds a IncompatibleVersion when api minor version is higher ', () async { await dio.get('/request110'); expect(stream, emitsInOrder([IncompatibleVersion('1.1.0', '1.0.0')])); }); test( 'StreamController adds a IncompatibleVersion when api major version is higher ', () async { await dio.get('/request211'); expect(stream, emitsInOrder([IncompatibleVersion('2.1.1', '1.0.0')])); }); test( 'StreamController adds a IncompatibleVersion when api fix version is higher and tolerance is set to VersionSupportType.fix', () async { setUpFailure('1.0.0', VersionSupportType.fix); await dio.get('/request101'); expect(stream, emitsInOrder([IncompatibleVersion('1.0.1', '1.0.0')])); }); }); }
33.303279
132
0.614571
d2dadd93e17f3a008982f404ba012ee7372c32ab
306
php
PHP
resources/lang/pt-BR/home.php
hulkur/goodwork
bb30a2dedeea17ca248b0b34e90da8ac42555700
[ "MIT" ]
1,867
2017-02-14T10:26:10.000Z
2022-03-25T13:43:44.000Z
resources/lang/pt-BR/home.php
hulkur/goodwork
bb30a2dedeea17ca248b0b34e90da8ac42555700
[ "MIT" ]
1,024
2017-02-14T07:44:00.000Z
2021-10-05T23:02:56.000Z
resources/lang/pt-BR/home.php
jack-david/mysecondproject
dc3a5e5f9b9c80da58649ebc47dc45f79f79c5c0
[ "MIT" ]
781
2017-02-17T05:07:10.000Z
2022-03-26T08:11:29.000Z
<?php return [ 'Projects' => 'Projetos', 'Teams' => 'Equipes', 'Offices' => 'Escritórios', 'Add a new project' => 'Adicionar um novo projeto', 'Add a new team' => 'Adicionar um novo time', 'Add a new office' => 'Adicionar um novo escritório', ];
27.818182
58
0.519608
2ff054943fdd4f071610e717245f7a9bf67d00cb
1,324
kt
Kotlin
app/src/main/java/com/github/bassaer/jetpackviewmodel/MainActivity.kt
bassaer/JetpackViewModel
0ef1c3a209704d55843455c9548481c3bea090f2
[ "Apache-2.0" ]
null
null
null
app/src/main/java/com/github/bassaer/jetpackviewmodel/MainActivity.kt
bassaer/JetpackViewModel
0ef1c3a209704d55843455c9548481c3bea090f2
[ "Apache-2.0" ]
null
null
null
app/src/main/java/com/github/bassaer/jetpackviewmodel/MainActivity.kt
bassaer/JetpackViewModel
0ef1c3a209704d55843455c9548481c3bea090f2
[ "Apache-2.0" ]
null
null
null
package com.github.bassaer.jetpackviewmodel import android.os.Bundle import android.widget.TextView import androidx.appcompat.app.AppCompatActivity import androidx.lifecycle.Observer import androidx.lifecycle.ViewModelProviders import com.google.android.material.floatingactionbutton.FloatingActionButton import kotlinx.android.synthetic.main.activity_main.* class MainActivity : AppCompatActivity() { private lateinit var leftText: TextView private lateinit var rightText: TextView private lateinit var fab: FloatingActionButton private lateinit var viewModel: MainViewModel private var count = 0 override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) setSupportActionBar(toolbar) leftText = findViewById(R.id.left_text) rightText = findViewById(R.id.right_text) viewModel = ViewModelProviders.of(this).get(MainViewModel::class.java) viewModel.getData().observe(this, Observer { data -> leftText.text = data.toString() }) fab = findViewById<FloatingActionButton>(R.id.fab).apply { setOnClickListener { viewModel.countUp() rightText.text = (++count).toString() } } } }
33.1
78
0.713746
4a5110bdcfb26b1b34d4f1a434c90428a2adc039
2,726
js
JavaScript
src/components/Content.js
Grintsys/Grintsys-Website
5d0364f807d03978bb4798f9e3dab8d4f21275a2
[ "MIT" ]
null
null
null
src/components/Content.js
Grintsys/Grintsys-Website
5d0364f807d03978bb4798f9e3dab8d4f21275a2
[ "MIT" ]
4
2020-09-06T20:01:54.000Z
2022-02-18T07:07:38.000Z
src/components/Content.js
Grintsys/Grintsys-Website
5d0364f807d03978bb4798f9e3dab8d4f21275a2
[ "MIT" ]
1
2019-12-09T21:31:26.000Z
2019-12-09T21:31:26.000Z
import React from 'react'; import shopping from '../icons/shopping.png'; import curly from '../icons/curly.png'; import bar from '../icons/bar.png'; import database from '../icons/database.png' class Content extends React.Component { render(){ return( <div id="fh5co-features1" data-section="features" className="animated"> <div id="content-1" className="container"> <div id="items-1"> <div className="col-md-offset-2 fh5co-section-heading text-center"> <h2 id="h2-tl" className="fh5co-lead to-animate fadeInUp animated">Explora nuestros servicios</h2> </div> <div id="contentbox-div"> <div id="contentbox1"> <a className="fh5co-feature to-animate hvr-float-shadow" > <span className="fh5co-feature-icon"><img className="icons" src={shopping} alt="shopping"/></span> <h3 className="fh5co-uppercase-sm">POS</h3> <p className="fh5co-feature-text">Controla a tiempo real el estado de cada cliente, pagos, movimientos y flujo.</p> </a> </div> <div id="contentbox2"> <a className="fh5co-feature to-animate hvr-float-shadow"> <span className="fh5co-feature-icon"><img className="icons" src={curly} alt="curly"/></span> <h3 className="fh5co-uppercase-sm">Desarrollo</h3> <p className="fh5co-feature-text">Controla a tiempo real el estado de cada cliente, pagos, movimientos y flujo.</p> </a> </div> <div className="clearfix visible-sm-block"></div> <div id="contentbox3" > <a className="fh5co-feature to-animate hvr-float-shadow"> <span className="fh5co-feature-icon"><img className="icons" src={bar} alt="bar"/></span> <h3 className="fh5co-uppercase-sm">Estadisticas</h3> <p className="fh5co-feature-text">Controla a tiempo real el estado de cada cliente, pagos, movimientos y flujo.</p> </a> </div> <div id="contentbox4"> <a className="fh5co-feature to-animate hvr-float-shadow"> <span className="fh5co-feature-icon"><img className="icons" src={database} alt="database"/></span> <h3 className="fh5co-uppercase-sm">Data</h3> <p className="fh5co-feature-text">Controla a tiempo real el estado de cada cliente, pagos, movimientos y flujo.</p> </a> </div> </div> <div className="clearfix visible-sm-block"></div> <div id="contentbutton" className="col-md-offset-4 text-center"> <a id ="contentbutton-b" href="#" className="btn btn-primary hvr-shadow">Ver todas las funcionalidades</a> </div> </div> </div> </div> ) } } export default Content;
43.967742
124
0.624725
0baef217608644f38efafa26e0d3d5cb5334491d
275
js
JavaScript
XilinxProcessorIPLib/drivers/aiengine/doc/html/api/struct_x_aie_gbl___reg_event_broadcast_clear.js
erique/embeddedsw
4b5fd15c71405844e03f2c276daa38cfcbb6459b
[ "BSD-2-Clause", "MIT" ]
595
2015-02-03T15:07:36.000Z
2022-03-31T18:21:23.000Z
XilinxProcessorIPLib/drivers/aiengine/doc/html/api/struct_x_aie_gbl___reg_event_broadcast_clear.js
erique/embeddedsw
4b5fd15c71405844e03f2c276daa38cfcbb6459b
[ "BSD-2-Clause", "MIT" ]
144
2016-01-08T17:56:37.000Z
2022-03-31T13:23:52.000Z
XilinxProcessorIPLib/drivers/aiengine/doc/html/api/struct_x_aie_gbl___reg_event_broadcast_clear.js
erique/embeddedsw
4b5fd15c71405844e03f2c276daa38cfcbb6459b
[ "BSD-2-Clause", "MIT" ]
955
2015-03-30T00:54:27.000Z
2022-03-31T11:32:23.000Z
var struct_x_aie_gbl___reg_event_broadcast_clear = [ [ "Event", "struct_x_aie_gbl___reg_event_broadcast_clear.html#aee31aa9c01110c830909e1b5b9015619", null ], [ "RegOff", "struct_x_aie_gbl___reg_event_broadcast_clear.html#aaa60ef9f22c7133f3bc09edce5c55692", null ] ];
55
109
0.829091
7118529a91f2ba3dfc16f05a3020670d51f96f1e
3,557
sql
SQL
lab5/lab5.sql
im1sha/databases
ab140a8dbe53603eade802e6774a7aef629373d5
[ "MIT" ]
null
null
null
lab5/lab5.sql
im1sha/databases
ab140a8dbe53603eade802e6774a7aef629373d5
[ "MIT" ]
null
null
null
lab5/lab5.sql
im1sha/databases
ab140a8dbe53603eade802e6774a7aef629373d5
[ "MIT" ]
null
null
null
-- a) -- Создайте scalar-valued функцию, которая будет принимать -- в качестве входного параметра имя группы отделов -- (HumanResources.Department.GroupName) и возвращать -- количество отделов, входящих в эту группу. DROP FUNCTION IF EXISTS [HumanResources].[fDepartmentCount] GO CREATE FUNCTION [HumanResources].[fDepartmentCount] (@GroupName NVARCHAR(50)) RETURNS INT AS BEGIN DECLARE @Count INT SELECT @Count = COUNT(DepartmentID) FROM [HumanResources].[Department] WHERE GroupName = @GroupName RETURN @Count END GO SELECT [HumanResources].[fDepartmentCount](N'Research and Development') AS researchAndDevelopmentCount GO SELECT [HumanResources].[fDepartmentCount](N'Manufacturing') AS manufacturingCount GO -- b) -- Создайте inline table-valued функцию, которая будет -- принимать в качестве входного параметра id отдела -- (HumanResources.Department.DepartmentID), а -- возвращать 3 самых старших сотрудника, -- которые начали работать в отделе с 2005 года. DROP FUNCTION IF EXISTS [HumanResources].[fGetThreeOldestPerson] GO CREATE FUNCTION [HumanResources].[fGetThreeOldestPerson] (@DepartmentID INT) RETURNS TABLE AS RETURN ( SELECT TOP 3 p.[BusinessEntityID] ,p.[PersonType] ,p.[NameStyle] ,p.[Title] ,p.[FirstName] ,p.[MiddleName] ,p.[LastName] ,p.[Suffix] ,p.[EmailPromotion] ,p.[AdditionalContactInfo] ,p.[Demographics] ,p.[rowguid] ,p.[ModifiedDate] FROM [Person].[Person] p JOIN [HumanResources].[EmployeeDepartmentHistory] h ON p.[BusinessEntityID] = h.[BusinessEntityID] WHERE h.[DepartmentID] = @DepartmentID AND h.[StartDate] >= '2005' AND h.[EndDate] IS NULL ORDER BY h.[StartDate] ASC ) GO SELECT * FROM [HumanResources].[fGetThreeOldestPerson](3) GO -- c) -- Вызовите функцию для каждого отдела, применив -- оператор CROSS APPLY. Вызовите функцию для -- каждого отдела, применив оператор OUTER APPLY. SELECT * FROM [HumanResources].[Department] CROSS APPLY [HumanResources].[fGetThreeOldestPerson]([DepartmentID]); SELECT * FROM [HumanResources].[Department] OUTER APPLY [HumanResources].[fGetThreeOldestPerson]([DepartmentID]); GO -- d) -- Измените созданную inline table-valued функцию, -- сделав ее multistatement table-valued -- (предварительно сохранив для проверки код -- создания inline table-valued функции). DROP FUNCTION IF EXISTS [HumanResources].[fGetThreeOldestPerson] GO CREATE FUNCTION [HumanResources].[fGetThreeOldestPerson] (@DepartmentID INT) RETURNS @table TABLE ( [BusinessEntityID] INT NOT NULL ,[PersonType] NCHAR(2) NOT NULL ,[NameStyle] BIT NOT NULL ,[Title] NVARCHAR(8) ,[FirstName] NVARCHAR(50) NOT NULL ,[MiddleName] NVARCHAR(50) ,[LastName] NVARCHAR(50) NOT NULL ,[Suffix] NVARCHAR(10) ,[EmailPromotion] INT NOT NULL ,[AdditionalContactInfo] XML ,[Demographics] XML ,[rowguid] UNIQUEIDENTIFIER NOT NULL ,[ModifiedDate] DATETIME NOT NULL ) AS BEGIN INSERT INTO @table SELECT TOP 3 p.[BusinessEntityID] ,p.[PersonType] ,p.[NameStyle] ,p.[Title] ,p.[FirstName] ,p.[MiddleName] ,p.[LastName] ,p.[Suffix] ,p.[EmailPromotion] ,p.[AdditionalContactInfo] ,p.[Demographics] ,p.[rowguid] ,p.[ModifiedDate] FROM [Person].[Person] p JOIN [HumanResources].[EmployeeDepartmentHistory] h ON p.[BusinessEntityID] = h.[BusinessEntityID] WHERE h.[DepartmentID] = @DepartmentID AND h.[StartDate] >= '2005' AND h.[EndDate] IS NULL ORDER BY h.[StartDate] ASC RETURN END GO SELECT * FROM [HumanResources].[fGetThreeOldestPerson](3); GO
25.22695
102
0.729829
1bde55e20e2d0362efe94872fca0b424ce7b37a4
6,174
kt
Kotlin
src/test/kotlin/com/ort/firewolf/domain/service/daychange/PrologueDomainServiceTest.kt
h-orito/firewolf-api
efb378501b29f8c22c61d720c93753fc51fdd4b0
[ "MIT" ]
null
null
null
src/test/kotlin/com/ort/firewolf/domain/service/daychange/PrologueDomainServiceTest.kt
h-orito/firewolf-api
efb378501b29f8c22c61d720c93753fc51fdd4b0
[ "MIT" ]
1
2021-11-06T09:27:30.000Z
2021-11-07T10:14:07.000Z
src/test/kotlin/com/ort/firewolf/domain/service/daychange/PrologueDomainServiceTest.kt
h-orito/firewolf-api
efb378501b29f8c22c61d720c93753fc51fdd4b0
[ "MIT" ]
null
null
null
package com.ort.firewolf.domain.service.daychange import com.ort.dbflute.allcommon.CDef import com.ort.firewolf.FirewolfTest import com.ort.firewolf.domain.model.charachip.Charas import com.ort.firewolf.domain.model.village.VillageDays import com.ort.firewolf.domain.model.village.participant.VillageParticipants import com.ort.firewolf.domain.model.village.setting.PersonCapacity import com.ort.firewolf.dummy.DummyDomainModelCreator import org.assertj.core.api.Assertions.assertThat import org.junit.Test import org.junit.runner.RunWith import org.springframework.beans.factory.annotation.Autowired import org.springframework.boot.test.context.SpringBootTest import org.springframework.test.context.junit4.SpringRunner import java.time.LocalDateTime @RunWith(SpringRunner::class) @SpringBootTest class PrologueDomainServiceTest : FirewolfTest() { @Autowired lateinit var prologueDomainService: PrologueDomainService // =================================================================================== // Test // ========= @Test fun test_addDayIfNeeded_開始時刻になっていない() { // ## Arrange ## val dayChange = DummyDomainModelCreator.createDummyDayChange().copy( village = DummyDomainModelCreator.createDummyVillage().copy( day = VillageDays( listOf( DummyDomainModelCreator.createDummyVillageDay().copy( dayChangeDatetime = LocalDateTime.now().plusSeconds(1L) ) ) ) ) ) // ## Act ## val afterDayChange = prologueDomainService.addDayIfNeeded(dayChange) // ## Assert ## assertThat(afterDayChange.isChange).isFalse() } @Test fun test_extendIfNeeded_人数不足() { // ## Arrange ## val dayChange = DummyDomainModelCreator.createDummyDayChange().copy( village = DummyDomainModelCreator.createDummyVillage().copy( day = VillageDays( listOf( DummyDomainModelCreator.createDummyVillageDay().copy( dayChangeDatetime = LocalDateTime.now().minusSeconds(1L) ) ) ) ) ) // ## Act ## val afterDayChange = prologueDomainService.extendIfNeeded(dayChange) // ## Assert ## assertThat(afterDayChange.isChange).isTrue() assertThat(afterDayChange.village.setting.time.startDatetime).isAfter(dayChange.village.setting.time.startDatetime) assertThat(afterDayChange.village.day.latestDay().dayChangeDatetime).isAfter(dayChange.village.day.latestDay().dayChangeDatetime) } @Test fun test_addDayIfNeeded_人数が足りている() { // ## Arrange ## val dayChange = DummyDomainModelCreator.createDummyDayChange().copy( village = DummyDomainModelCreator.createDummyVillage().copy( day = VillageDays( listOf( DummyDomainModelCreator.createDummyVillageDay().copy( dayChangeDatetime = LocalDateTime.now().minusSeconds(1L) ) ) ), setting = DummyDomainModelCreator.createDummyVillageSettings().copy( capacity = PersonCapacity(2, 10) ), participant = VillageParticipants( count = 2, memberList = listOf( DummyDomainModelCreator.createDummyVillageParticipant(), DummyDomainModelCreator.createDummyVillageParticipant() ) ) ) ) // ## Act ## val afterDayChange = prologueDomainService.addDayIfNeeded(dayChange) // ## Assert ## assertThat(afterDayChange.isChange).isTrue() assertThat(afterDayChange.village.day.dayList.size).isEqualTo(2) } @Test fun test_dayChange() { // ## Arrange ## val dummyParticipant = DummyDomainModelCreator.createDummyVillageParticipant() val villagerList = (1..10).toList().map { DummyDomainModelCreator.createDummyVillageParticipant() } val dayChange = DummyDomainModelCreator.createDummyDayChange().copy( village = DummyDomainModelCreator.createDummyVillage().copy( day = VillageDays( listOf( DummyDomainModelCreator.createDummyVillageDay(), DummyDomainModelCreator.createDummyVillageDay() ) ), setting = DummyDomainModelCreator.createDummyVillageSettings().copy( capacity = PersonCapacity(10, 16), charachip = DummyDomainModelCreator.createDummyVillageCharachip().copy( dummyCharaId = dummyParticipant.charaId ) ), participant = VillageParticipants( count = villagerList.size + 2, memberList = villagerList + dummyParticipant ) ) ) val charas = Charas( villagerList.map { DummyDomainModelCreator.createDummyChara().copy(id = it.charaId) } + DummyDomainModelCreator.createDummyChara().copy(id = dummyParticipant.charaId) ) // ## Act ## val afterDayChange = prologueDomainService.dayChange(dayChange, charas) // ## Assert ## assertThat(afterDayChange.isChange).isTrue() assertThat(afterDayChange.messages.list.size).isEqualTo(4) afterDayChange.messages.list.forEach { println(it.content.text) } assertThat(afterDayChange.village.participant.memberList.all { it.skill != null }).`as`("役職が割り振られている").isTrue() assertThat(afterDayChange.village.status.toCdef()).isEqualTo(CDef.VillageStatus.進行中) } }
42
137
0.587626
cb470c60b7baa837db5267e041d1384691f0dc58
523
h
C
naoqi-sdk-2.5.5.5-linux64/include/alextractor/config.h
applejenny66/docker_pepper
2469cc4db6585161a31ac44c8fcf2605d71318b1
[ "MIT" ]
8
2020-08-01T04:31:50.000Z
2021-11-01T08:39:11.000Z
naoqi-sdk-2.5.5.5-linux64/include/alextractor/config.h
applejenny66/docker_pepper
2469cc4db6585161a31ac44c8fcf2605d71318b1
[ "MIT" ]
3
2020-10-26T13:30:06.000Z
2022-02-18T18:12:44.000Z
naoqi-sdk-2.5.5.5-linux64/include/alextractor/config.h
applejenny66/docker_pepper
2469cc4db6585161a31ac44c8fcf2605d71318b1
[ "MIT" ]
null
null
null
/** * Author(s): * - Cedric GESTES <gestes@aldebaran-robotics.com> * * Copyright (C) 2011 Aldebaran Robotics */ /** @file * @brief dll import/export */ #pragma once #ifndef _LIBALEXTRACTOR_ALEXTRACTOR_CONFIG_H_ #define _LIBALEXTRACTOR_ALEXTRACTOR_CONFIG_H_ #include <qi/macro.hpp> #ifdef alextractor_EXPORTS # define ALEXTRACTOR_API QI_EXPORT_API #elif defined(alextractor_IMPORTS) # define ALEXTRACTOR_API QI_IMPORT_API #else # define ALEXTRACTOR_API #endif #endif // _LIBALEXTRACTOR_ALEXTRACTOR_CONFIG_H_
18.678571
51
0.778203
c68c862e16332539e953a8267695ecf4541cf940
142
kt
Kotlin
app/src/main/java/org/stepic/droid/web/model/adaptive/RatingRequest.kt
AlexTsybin/stepik-android
9418c42535ef5c5ff472d9d21b78ec2a8a8cb602
[ "Apache-2.0" ]
null
null
null
app/src/main/java/org/stepic/droid/web/model/adaptive/RatingRequest.kt
AlexTsybin/stepik-android
9418c42535ef5c5ff472d9d21b78ec2a8a8cb602
[ "Apache-2.0" ]
null
null
null
app/src/main/java/org/stepic/droid/web/model/adaptive/RatingRequest.kt
AlexTsybin/stepik-android
9418c42535ef5c5ff472d9d21b78ec2a8a8cb602
[ "Apache-2.0" ]
null
null
null
package org.stepic.droid.web.model.adaptive class RatingRequest( val exp: Long, val course: Long, val token: String?)
23.666667
43
0.647887
c9d2179e8284f99eaeea83b9c35ada1a180f2658
22,467
sql
SQL
database/skripsi.sql
danielreredo/spk_beasiswa_ahp_pm
bdd4f4b3ee762e0e7af7bcd1b118512e614823c3
[ "MIT" ]
null
null
null
database/skripsi.sql
danielreredo/spk_beasiswa_ahp_pm
bdd4f4b3ee762e0e7af7bcd1b118512e614823c3
[ "MIT" ]
null
null
null
database/skripsi.sql
danielreredo/spk_beasiswa_ahp_pm
bdd4f4b3ee762e0e7af7bcd1b118512e614823c3
[ "MIT" ]
null
null
null
-- phpMyAdmin SQL Dump -- version 5.0.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Waktu pembuatan: 17 Nov 2020 pada 06.11 -- Versi server: 10.4.11-MariaDB -- Versi PHP: 7.4.2 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `skripsi` -- -- -------------------------------------------------------- -- -- Struktur dari tabel `facs` -- CREATE TABLE `facs` ( `id_fac` bigint(20) UNSIGNED NOT NULL, `nm_fac` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `persen` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `per` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `facs` -- INSERT INTO `facs` (`id_fac`, `nm_fac`, `persen`, `created_at`, `updated_at`, `per`) VALUES (1, 'Core Factor', 60, '2020-09-05 17:36:57', '2020-09-05 17:36:57', 1), (2, 'Secondary Factor', 40, '2020-09-05 17:36:57', '2020-09-05 17:36:57', 1), (3, 'Core Factor', 55, '2020-09-05 18:00:00', '2020-09-05 18:00:11', 2), (4, 'Secondary Factor', 45, '2020-09-05 18:00:00', '2020-09-05 18:00:11', 2); -- -------------------------------------------------------- -- -- Struktur dari tabel `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `faks` -- CREATE TABLE `faks` ( `id_fak` bigint(20) UNSIGNED NOT NULL, `nm_fak` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `faks` -- INSERT INTO `faks` (`id_fak`, `nm_fak`, `created_at`, `updated_at`) VALUES (1, 'TEKNIK', '2020-07-20 18:00:21', '2020-07-20 18:00:21'), (2, 'FMIPA', '2020-07-22 20:34:34', '2020-07-22 20:34:34'); -- -------------------------------------------------------- -- -- Struktur dari tabel `keps` -- CREATE TABLE `keps` ( `nm_kep` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `angka` double NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `keps` -- INSERT INTO `keps` (`nm_kep`, `angka`, `created_at`, `updated_at`) VALUES ('Cukup Penting', 3, NULL, NULL), ('Lebih Penting', 5, NULL, NULL), ('Mendekati Cukup Penting', 2, NULL, NULL), ('Mendekati Lebih Penting', 4, NULL, NULL), ('Mendekati Mutlak Lebih Penting', 8, NULL, NULL), ('Mendekati Sangat Lebih Penting', 6, NULL, NULL), ('Mutlak Lebih Penting', 9, NULL, NULL), ('Sama Penting', 1, NULL, NULL), ('Sangat Lebih Penting', 7, NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `kets` -- CREATE TABLE `kets` ( `k1` bigint(20) UNSIGNED NOT NULL, `k2` bigint(20) UNSIGNED NOT NULL, `kep` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `per` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `kets` -- INSERT INTO `kets` (`k1`, `k2`, `kep`, `per`) VALUES (1, 2, 'Mendekati Cukup Penting', 1), (1, 3, 'Cukup Penting', 1), (2, 3, 'Mendekati Cukup Penting', 1), (1, 4, 'Mendekati Lebih Penting', 1), (2, 4, 'Cukup Penting', 1), (3, 4, 'Cukup Penting', 1), (1, 5, 'Lebih Penting', 1), (2, 5, 'Mendekati Lebih Penting', 1), (3, 5, 'Cukup Penting', 1), (4, 5, 'Mendekati Cukup Penting', 1), (1, 6, 'Mendekati Sangat Lebih Penting', 1), (2, 6, 'Lebih Penting', 1), (3, 6, 'Lebih Penting', 1), (4, 6, 'Mendekati Cukup Penting', 1), (5, 6, 'Mendekati Cukup Penting', 1), (7, 8, 'Cukup Penting', 2), (7, 9, 'Mendekati Cukup Penting', 2), (8, 9, 'Cukup Penting', 2), (7, 10, 'Mendekati Lebih Penting', 2), (8, 10, 'Mendekati Lebih Penting', 2), (9, 10, 'Cukup Penting', 2), (7, 11, 'Lebih Penting', 2), (8, 11, 'Lebih Penting', 2), (9, 11, 'Mendekati Lebih Penting', 2), (10, 11, 'Mendekati Cukup Penting', 2), (7, 12, 'Sama Penting', 2), (8, 12, 'Sama Penting', 2), (9, 12, 'Sama Penting', 2), (10, 12, 'Sama Penting', 2), (11, 12, 'Sama Penting', 2); -- -------------------------------------------------------- -- -- Struktur dari tabel `kris` -- CREATE TABLE `kris` ( `id_kri` bigint(20) UNSIGNED NOT NULL, `nm_kri` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `fac` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `per` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `kris` -- INSERT INTO `kris` (`id_kri`, `nm_kri`, `fac`, `created_at`, `updated_at`, `per`) VALUES (1, 'IPK', 1, '2020-09-05 17:38:10', '2020-09-05 17:38:10', 1), (2, 'Tingkat Prestasi', 1, '2020-09-05 17:38:33', '2020-09-05 17:38:33', 1), (3, 'Penghasilan Orang Tua', 1, '2020-09-05 17:38:43', '2020-09-05 17:38:43', 1), (4, 'Aktif Organisasi (Intra Kampus)', 2, '2020-09-05 17:39:44', '2020-09-05 17:39:44', 1), (5, 'Pekerjaan Orang Tua', 2, '2020-09-05 17:40:13', '2020-09-05 17:40:13', 1), (6, 'Wawancara', 2, '2020-09-05 17:40:30', '2020-09-05 17:40:30', 1), (7, 'Dampak Covid', 3, '2020-09-05 18:00:49', '2020-09-05 18:00:49', 2), (8, 'Semester', 3, '2020-09-05 18:01:01', '2020-09-05 18:01:01', 2), (9, 'IPK', 3, '2020-09-05 18:01:24', '2020-09-05 18:01:24', 2), (10, 'Jarak Rumah', 4, '2020-09-05 18:01:43', '2020-09-05 18:01:43', 2), (11, 'Tanggungan Orang Tua', 4, '2020-09-05 18:01:53', '2020-09-05 18:01:53', 2), (12, 'Ikut Ormek', 4, '2020-09-06 02:24:52', '2020-09-06 02:24:52', 2); -- -------------------------------------------------------- -- -- Struktur dari tabel `mahs` -- CREATE TABLE `mahs` ( `id_mah` bigint(20) UNSIGNED NOT NULL, `npm` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `nm_mah` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pro` bigint(20) UNSIGNED NOT NULL, `per` bigint(20) UNSIGNED NOT NULL, `jk_mah` enum('Laki-laki','Perempuan') COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `mahs` -- INSERT INTO `mahs` (`id_mah`, `npm`, `nm_mah`, `pro`, `per`, `jk_mah`, `created_at`, `updated_at`) VALUES (1, '1412160009', 'Daniel Reredo', 1, 1, 'Laki-laki', '2020-09-05 17:45:21', '2020-09-05 17:45:21'), (2, '1234512345', 'Ach Budi', 1, 1, 'Laki-laki', '2020-09-05 17:48:41', '2020-09-05 17:49:57'), (3, '1412160031', 'Ita P', 1, 1, 'Perempuan', '2020-09-05 17:50:27', '2020-09-05 17:50:27'), (4, '1412160026', 'Riska E', 1, 1, 'Perempuan', '2020-09-05 17:51:26', '2020-09-05 17:51:26'), (5, '1231234121', 'Ratih A', 1, 1, 'Perempuan', '2020-09-05 17:52:59', '2020-09-05 17:53:09'), (6, '1231231234', 'Kiki L', 1, 1, 'Perempuan', '2020-09-05 17:54:18', '2020-09-05 17:54:18'), (7, '1234123123', 'Iqbal', 1, 1, 'Laki-laki', '2020-09-05 17:55:56', '2020-09-05 17:55:56'), (8, '5432112345', 'Aris Eko', 1, 1, 'Laki-laki', '2020-09-05 17:56:55', '2020-09-05 17:56:55'), (9, '1234561234', 'Jono', 1, 2, 'Laki-laki', '2020-09-05 18:03:35', '2020-09-05 18:03:35'), (10, '5432160987', 'Joni', 1, 2, 'Laki-laki', '2020-09-05 18:04:42', '2020-09-05 18:04:42'); -- -------------------------------------------------------- -- -- Struktur dari tabel `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (50, '2014_10_12_000000_create_users_table', 1), (51, '2019_08_19_000000_create_failed_jobs_table', 1), (52, '2020_07_16_144620_create_table_faks', 1), (53, '2020_07_17_121722_create_pros_table', 1), (54, '2020_07_19_081036_create_facs_table', 1), (55, '2020_07_19_081128_create_kris_table', 1), (56, '2020_07_20_232755_create_opes_table', 2), (57, '2020_07_24_031720_create_pers_table', 3), (59, '2020_07_24_085646_create_mahs_table', 4), (60, '2020_07_26_062320_create_skor_kris_table', 5), (72, '2020_08_03_035047_create_keps_table', 6), (73, '2020_08_03_035338_create_kets_table', 6), (75, '2020_08_08_065021_add_persen_on_facs_table', 7); -- -------------------------------------------------------- -- -- Struktur dari tabel `opes` -- CREATE TABLE `opes` ( `id_ope` bigint(20) UNSIGNED NOT NULL, `nm_ope` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `nidn` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `jk_ope` enum('Laki-laki','Perempuan') COLLATE utf8mb4_unicode_ci NOT NULL, `pro` bigint(20) UNSIGNED NOT NULL, `user` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `opes` -- INSERT INTO `opes` (`id_ope`, `nm_ope`, `nidn`, `jk_ope`, `pro`, `user`, `created_at`, `updated_at`) VALUES (6, 'Andik Adi Suryanto S.kom M.kom', '14121600009', 'Laki-laki', 1, 17, '2020-07-23 08:34:57', '2020-08-22 03:24:08'), (8, 'Daniel Reredo', '14121600000', 'Laki-laki', 2, 19, '2020-10-15 21:27:34', '2020-10-15 21:27:34'); -- -------------------------------------------------------- -- -- Struktur dari tabel `pers` -- CREATE TABLE `pers` ( `id_per` bigint(20) UNSIGNED NOT NULL, `per` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `pers` -- INSERT INTO `pers` (`id_per`, `per`, `created_at`, `updated_at`) VALUES (1, 2020, '2020-09-05 17:36:57', '2020-09-05 17:36:57'), (2, 2021, '2020-09-05 18:00:00', '2020-09-05 18:00:00'); -- -------------------------------------------------------- -- -- Struktur dari tabel `pros` -- CREATE TABLE `pros` ( `id_pro` bigint(20) UNSIGNED NOT NULL, `nm_pro` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `fak` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `pros` -- INSERT INTO `pros` (`id_pro`, `nm_pro`, `fak`, `created_at`, `updated_at`) VALUES (1, 'INFORMATIKA', 1, '2020-07-20 18:04:58', '2020-08-15 21:44:44'), (2, 'INDUSTRI', 1, '2020-07-22 22:47:29', '2020-07-22 22:47:29'); -- -------------------------------------------------------- -- -- Struktur dari tabel `skor_kris` -- CREATE TABLE `skor_kris` ( `id_skor_kri` bigint(20) UNSIGNED NOT NULL, `kri` bigint(20) UNSIGNED NOT NULL, `mah` bigint(20) UNSIGNED NOT NULL, `skor` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `skor_kris` -- INSERT INTO `skor_kris` (`id_skor_kri`, `kri`, `mah`, `skor`, `created_at`, `updated_at`) VALUES (1, 1, 1, 60, '2020-09-05 17:45:21', '2020-09-05 17:47:35'), (2, 2, 1, 20, '2020-09-05 17:45:21', '2020-09-05 17:47:35'), (3, 3, 1, 100, '2020-09-05 17:45:21', '2020-09-05 17:47:35'), (4, 4, 1, 100, '2020-09-05 17:45:21', '2020-09-05 17:47:35'), (5, 5, 1, 30, '2020-09-05 17:45:21', '2020-09-05 17:47:35'), (6, 6, 1, 70, '2020-09-05 17:45:21', '2020-09-05 17:47:35'), (7, 1, 2, 60, '2020-09-05 17:48:41', '2020-09-06 02:21:52'), (8, 2, 2, 20, '2020-09-05 17:48:41', '2020-09-06 02:21:52'), (9, 3, 2, 100, '2020-09-05 17:48:41', '2020-09-06 02:21:52'), (10, 4, 2, 40, '2020-09-05 17:48:41', '2020-09-06 02:21:52'), (11, 5, 2, 45, '2020-09-05 17:48:41', '2020-09-06 02:21:52'), (12, 6, 2, 70, '2020-09-05 17:48:41', '2020-09-06 02:21:52'), (13, 1, 3, 80, '2020-09-05 17:50:27', '2020-09-05 17:51:03'), (14, 2, 3, 20, '2020-09-05 17:50:27', '2020-09-05 17:51:03'), (15, 3, 3, 100, '2020-09-05 17:50:27', '2020-09-05 17:51:03'), (16, 4, 3, 100, '2020-09-05 17:50:27', '2020-09-05 17:51:03'), (17, 5, 3, 30, '2020-09-05 17:50:27', '2020-09-05 17:51:03'), (18, 6, 3, 80, '2020-09-05 17:50:27', '2020-09-05 17:51:03'), (19, 1, 4, 80, '2020-09-05 17:51:26', '2020-09-05 17:52:11'), (20, 2, 4, 20, '2020-09-05 17:51:26', '2020-09-05 17:52:11'), (21, 3, 4, 100, '2020-09-05 17:51:27', '2020-09-05 17:52:11'), (22, 4, 4, 20, '2020-09-05 17:51:27', '2020-09-05 17:52:12'), (23, 5, 4, 30, '2020-09-05 17:51:27', '2020-09-05 17:52:12'), (24, 6, 4, 70, '2020-09-05 17:51:27', '2020-09-05 17:52:12'), (25, 1, 5, 80, '2020-09-05 17:52:59', '2020-09-05 17:53:51'), (26, 2, 5, 20, '2020-09-05 17:52:59', '2020-09-05 17:53:51'), (27, 3, 5, 100, '2020-09-05 17:52:59', '2020-09-05 17:53:51'), (28, 4, 5, 20, '2020-09-05 17:52:59', '2020-09-05 17:53:51'), (29, 5, 5, 45, '2020-09-05 17:52:59', '2020-09-05 17:53:51'), (30, 6, 5, 80, '2020-09-05 17:52:59', '2020-09-05 17:53:51'), (31, 1, 6, 60, '2020-09-05 17:54:18', '2020-09-05 17:55:00'), (32, 2, 6, 20, '2020-09-05 17:54:18', '2020-09-05 17:55:00'), (33, 3, 6, 100, '2020-09-05 17:54:18', '2020-09-05 17:55:00'), (34, 4, 6, 40, '2020-09-05 17:54:18', '2020-09-05 17:55:00'), (35, 5, 6, 45, '2020-09-05 17:54:18', '2020-09-05 17:55:00'), (36, 6, 6, 80, '2020-09-05 17:54:18', '2020-09-05 17:55:00'), (37, 1, 7, 60, '2020-09-05 17:55:57', '2020-09-05 17:56:34'), (38, 2, 7, 20, '2020-09-05 17:55:57', '2020-09-05 17:56:34'), (39, 3, 7, 100, '2020-09-05 17:55:57', '2020-09-05 17:56:34'), (40, 4, 7, 40, '2020-09-05 17:55:57', '2020-09-05 17:56:34'), (41, 5, 7, 45, '2020-09-05 17:55:57', '2020-09-05 17:56:34'), (42, 6, 7, 80, '2020-09-05 17:55:57', '2020-09-05 17:56:34'), (43, 1, 8, 60, '2020-09-05 17:56:55', '2020-09-05 17:57:38'), (44, 2, 8, 20, '2020-09-05 17:56:56', '2020-09-05 17:57:38'), (45, 3, 8, 100, '2020-09-05 17:56:56', '2020-09-05 17:57:38'), (46, 4, 8, 40, '2020-09-05 17:56:56', '2020-09-05 17:57:38'), (47, 5, 8, 45, '2020-09-05 17:56:56', '2020-09-05 17:57:39'), (48, 6, 8, 75, '2020-09-05 17:56:56', '2020-09-05 17:57:39'), (49, 7, 9, 80, '2020-09-05 18:03:35', '2020-09-05 18:04:08'), (50, 8, 9, 75, '2020-09-05 18:03:35', '2020-09-05 18:04:08'), (51, 9, 9, 60, '2020-09-05 18:03:35', '2020-09-05 18:04:08'), (52, 10, 9, 80, '2020-09-05 18:03:35', '2020-09-05 18:04:08'), (53, 11, 9, 70, '2020-09-05 18:03:35', '2020-09-05 18:04:08'), (54, 7, 10, 80, '2020-09-05 18:04:42', '2020-09-05 18:05:06'), (55, 8, 10, 50, '2020-09-05 18:04:42', '2020-09-05 18:05:06'), (56, 9, 10, 60, '2020-09-05 18:04:42', '2020-09-05 18:05:06'), (57, 10, 10, 70, '2020-09-05 18:04:42', '2020-09-05 18:05:06'), (58, 11, 10, 80, '2020-09-05 18:04:42', '2020-09-05 18:05:06'), (59, 12, 9, 0, '2020-09-06 02:24:53', '2020-09-06 02:24:53'), (60, 12, 10, 0, '2020-09-06 02:24:53', '2020-09-06 02:24:53'); -- -------------------------------------------------------- -- -- Struktur dari tabel `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `role` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `username_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `users` -- INSERT INTO `users` (`id`, `role`, `name`, `username`, `username_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES (1, 'admin', 'Daniel Reredo', 'admin', NULL, '$2y$10$/sU7TZeZn6FlJFfWqOy4FOgy29glnByHGMmAKG.FFvenwryCaVfFy', NULL, '2020-07-19 21:52:21', '2020-09-06 18:19:12'), (17, 'operator', 'Andik Adi Suryanto S.kom M.kom', '14121600009', NULL, '$2y$10$yLn6bwloitpBDdx19GQFb.LlS4BmvSWarrqCYmOSP1ZFlOImZNfM.', NULL, '2020-07-23 08:34:57', '2020-08-22 03:24:08'), (19, 'operator', 'Daniel Reredo', '14121600000', NULL, '$2y$10$B8YDUdqnvRpB/qoOZmkJ0eftaOyvcDIjsg6DIcNHPSC9xGk5HoCXO', NULL, '2020-10-15 21:27:34', '2020-10-15 21:27:34'); -- -- Indexes for dumped tables -- -- -- Indeks untuk tabel `facs` -- ALTER TABLE `facs` ADD PRIMARY KEY (`id_fac`), ADD KEY `per` (`per`); -- -- Indeks untuk tabel `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `faks` -- ALTER TABLE `faks` ADD PRIMARY KEY (`id_fak`); -- -- Indeks untuk tabel `keps` -- ALTER TABLE `keps` ADD PRIMARY KEY (`nm_kep`); -- -- Indeks untuk tabel `kets` -- ALTER TABLE `kets` ADD KEY `kets_k1_foreign` (`k1`), ADD KEY `kets_k2_foreign` (`k2`), ADD KEY `kets_kep_foreign` (`kep`), ADD KEY `per` (`per`); -- -- Indeks untuk tabel `kris` -- ALTER TABLE `kris` ADD PRIMARY KEY (`id_kri`), ADD KEY `kris_fac_foreign` (`fac`); -- -- Indeks untuk tabel `mahs` -- ALTER TABLE `mahs` ADD PRIMARY KEY (`id_mah`), ADD KEY `mahs_pro_foreign` (`pro`), ADD KEY `mahs_per_foreign` (`per`); -- -- Indeks untuk tabel `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `opes` -- ALTER TABLE `opes` ADD PRIMARY KEY (`id_ope`), ADD KEY `opes_pro_foreign` (`pro`), ADD KEY `opes_user_foreign` (`user`); -- -- Indeks untuk tabel `pers` -- ALTER TABLE `pers` ADD PRIMARY KEY (`id_per`); -- -- Indeks untuk tabel `pros` -- ALTER TABLE `pros` ADD PRIMARY KEY (`id_pro`), ADD KEY `pros_fak_foreign` (`fak`); -- -- Indeks untuk tabel `skor_kris` -- ALTER TABLE `skor_kris` ADD PRIMARY KEY (`id_skor_kri`), ADD KEY `skor_kris_kri_foreign` (`kri`), ADD KEY `skor_kris_mah_foreign` (`mah`); -- -- Indeks untuk tabel `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_username_unique` (`username`); -- -- AUTO_INCREMENT untuk tabel yang dibuang -- -- -- AUTO_INCREMENT untuk tabel `facs` -- ALTER TABLE `facs` MODIFY `id_fac` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT untuk tabel `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `faks` -- ALTER TABLE `faks` MODIFY `id_fak` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT untuk tabel `kris` -- ALTER TABLE `kris` MODIFY `id_kri` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT untuk tabel `mahs` -- ALTER TABLE `mahs` MODIFY `id_mah` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT untuk tabel `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=76; -- -- AUTO_INCREMENT untuk tabel `opes` -- ALTER TABLE `opes` MODIFY `id_ope` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT untuk tabel `pers` -- ALTER TABLE `pers` MODIFY `id_per` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT untuk tabel `pros` -- ALTER TABLE `pros` MODIFY `id_pro` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT untuk tabel `skor_kris` -- ALTER TABLE `skor_kris` MODIFY `id_skor_kri` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=61; -- -- AUTO_INCREMENT untuk tabel `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20; -- -- Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables) -- -- -- Ketidakleluasaan untuk tabel `facs` -- ALTER TABLE `facs` ADD CONSTRAINT `facs_ibfk_1` FOREIGN KEY (`per`) REFERENCES `pers` (`id_per`) ON DELETE CASCADE; -- -- Ketidakleluasaan untuk tabel `kets` -- ALTER TABLE `kets` ADD CONSTRAINT `kets_ibfk_1` FOREIGN KEY (`per`) REFERENCES `pers` (`id_per`) ON DELETE CASCADE, ADD CONSTRAINT `kets_k1_foreign` FOREIGN KEY (`k1`) REFERENCES `kris` (`id_kri`) ON DELETE CASCADE, ADD CONSTRAINT `kets_k2_foreign` FOREIGN KEY (`k2`) REFERENCES `kris` (`id_kri`) ON DELETE CASCADE, ADD CONSTRAINT `kets_kep_foreign` FOREIGN KEY (`kep`) REFERENCES `keps` (`nm_kep`) ON DELETE CASCADE; -- -- Ketidakleluasaan untuk tabel `kris` -- ALTER TABLE `kris` ADD CONSTRAINT `kris_fac_foreign` FOREIGN KEY (`fac`) REFERENCES `facs` (`id_fac`) ON DELETE CASCADE; -- -- Ketidakleluasaan untuk tabel `mahs` -- ALTER TABLE `mahs` ADD CONSTRAINT `mahs_per_foreign` FOREIGN KEY (`per`) REFERENCES `pers` (`id_per`) ON DELETE CASCADE, ADD CONSTRAINT `mahs_pro_foreign` FOREIGN KEY (`pro`) REFERENCES `pros` (`id_pro`) ON DELETE CASCADE; -- -- Ketidakleluasaan untuk tabel `opes` -- ALTER TABLE `opes` ADD CONSTRAINT `opes_pro_foreign` FOREIGN KEY (`pro`) REFERENCES `pros` (`id_pro`) ON DELETE CASCADE, ADD CONSTRAINT `opes_user_foreign` FOREIGN KEY (`user`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Ketidakleluasaan untuk tabel `pros` -- ALTER TABLE `pros` ADD CONSTRAINT `pros_fak_foreign` FOREIGN KEY (`fak`) REFERENCES `faks` (`id_fak`) ON DELETE CASCADE; -- -- Ketidakleluasaan untuk tabel `skor_kris` -- ALTER TABLE `skor_kris` ADD CONSTRAINT `skor_kris_kri_foreign` FOREIGN KEY (`kri`) REFERENCES `kris` (`id_kri`) ON DELETE CASCADE, ADD CONSTRAINT `skor_kris_mah_foreign` FOREIGN KEY (`mah`) REFERENCES `mahs` (`id_mah`) ON DELETE CASCADE; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
34.196347
188
0.643255
0308c889c9befe7e637dcf5b5b72713809e73a7d
988
dart
Dart
lib/src/models/device.dart
caseycrogers/dart_emulators
a0aa7d0c1b59e1c09da3fbd70dc3cb3dba95762d
[ "MIT" ]
12
2021-06-24T04:30:48.000Z
2022-02-15T06:32:15.000Z
lib/src/models/device.dart
caseycrogers/dart_emulators
a0aa7d0c1b59e1c09da3fbd70dc3cb3dba95762d
[ "MIT" ]
6
2021-08-12T18:06:15.000Z
2022-02-21T23:31:31.000Z
lib/src/models/device.dart
caseycrogers/dart_emulators
a0aa7d0c1b59e1c09da3fbd70dc3cb3dba95762d
[ "MIT" ]
4
2021-11-07T22:10:32.000Z
2022-02-05T20:08:05.000Z
import 'dart:io'; import 'package:fpdt/fpdt.dart'; import 'package:freezed_annotation/freezed_annotation.dart'; part 'device.freezed.dart'; part 'device.g.dart'; /// Indicates what platform the device is for. enum DevicePlatform { IOS, ANDROID, WEB, } /// Represents an emulator or real device. @freezed class Device with _$Device { const Device._(); const factory Device({ required String id, required String name, required DevicePlatform platform, required bool emulator, @Default(false) bool booted, // ignore: invalid_annotation_target @JsonKey(ignore: true) @Default(kNone) Option<Process> process, }) = _Device; factory Device.fromJson(Map<String, dynamic> json) => _$DeviceFromJson(json); /// Check whether this device has a matching id or name to another device /// instance. bool similar(Device other) { final props = [id, name]; return [ other.id, other.name, ].any((p) => props.contains(p)); } }
22.976744
79
0.687247
a79fd1e9633512e54cb2881f1b00400904b26c16
4,662
asm
Assembly
src/fixup-hax.asm
PoroCYon/smol
cf40ad64c31534ef6e128aec01615e113fceaf3d
[ "WTFPL" ]
6
2019-02-27T11:10:04.000Z
2021-11-28T00:53:24.000Z
src/fixup-hax.asm
PoroCYon/smol
cf40ad64c31534ef6e128aec01615e113fceaf3d
[ "WTFPL" ]
12
2019-07-27T16:54:38.000Z
2021-07-18T12:46:59.000Z
src/fixup-hax.asm
PoroCYon/smol
cf40ad64c31534ef6e128aec01615e113fceaf3d
[ "WTFPL" ]
3
2019-02-27T01:58:28.000Z
2021-01-14T23:37:06.000Z
; vim: set ft=nasm et: bits 64 %include "elf.inc" %include "linkscr.inc" org 0x10000 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; global _EHDR _EHDR: ehdr: ; e_ident db 0x7F, "ELF" db EI_CLASS, EI_DATA, EI_VERSION, 0;EI_OSABI db 0;EI_OSABIVERSION times 7 db 0 dw ELF_TYPE ; e_type dw ELF_MACHINE ; e_machine dd EI_VERSION ; e_version dq _smol_start ; e_entry dq phdr - ehdr ; e_phoff dq 0 ; e_shoff dd 0 ; e_flags dw ehdr.end - ehdr ; e_ehsize dw phdr.load - phdr.dynamic ; e_phentsize ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; global _PHDR _PHDR: phdr: phdr.interp: dd PT_INTERP ; p_type ; e_phnum, e_shentsize dd 0 ; p_flags ; e_shnum, e_shstrndx ehdr.end: dq interp - ehdr ; p_offset dq interp, interp ; p_vaddr, p_paddr dq interp.end - interp ; p_filesz dq interp.end - interp ; p_memsz dq 0 ; p_align phdr.dynamic: dd PT_DYNAMIC ; p_type ; e_phnum, e_shentsize dd 0 ; p_flags ; e_shnum, e_shstrndx dq dynamic - ehdr ; p_offset dq dynamic;, 0 ; p_vaddr, p_paddr global _INTERP _INTERP: interp: db "/lib64/ld-linux-x86-64.so.2",0 interp.end: dd 0 ;dq dynamic.end - dynamic ; p_filesz ;dq dynamic.end - dynamic ; p_memsz ;dq 0 ; p_align phdr.load: dd PT_LOAD ; p_type dd PHDR_R | PHDR_W | PHDR_X ; p_flags dq 0 ; p_offset dq ehdr, 0 ; p_vaddr, p_paddr dq END.FILE-ehdr ; p_filesz dq END.MEM-ehdr ; p_memsz dd 0x1000 ; p_align phdr.end: ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;global _INTERP ;_INTERP: ;interp: ; db "/lib64/ld-linux-x86-64.so.2",0 ;interp.end: ; dd 0 global _DYNAMIC _DYNAMIC: dynamic: dynamic.strtab: dq DT_STRTAB ; d_tag dq _dynstr ; d_un.d_ptr ;dynamic.debug: ; dq DT_DEBUG ; d_tag ;_DEBUG: ; dq 0 ; d_un.d_ptr dynamic.needed: dq DT_NEEDED dq (_symbols.libc - _dynstr) dynamic.symtab: dq DT_SYMTAB dq _dynsym;0 ; none ; some magic dynamic.pltgot: dq DT_PLTGOT dq _gotplt ;dynamic.pltrelsz: ; dq DT_PLTRELSZ ; dq 24 ; sizeof(Elf64_Rela) ;dynamic.pltrel: ; dq DT_PLTREL ; dq DT_RELA dynamic.jmprel: dq DT_JMPREL dq _rela_plt dynamic.end: db DT_NULL ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;global _rela_plt ;_rela_plt: ; ;; entry 0 ; dq ehdr ; address ; dq ELF_R_INFO(0,R_JUMP_SLOT) ; symidx, type ; dq 0 ; addend global _dynsym _dynsym: ;; entry 0 dd _symbols.libc.puts - _dynstr ; name db 0 ; info ; rest is ignored ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; %define SYS_exit 60 global _smol_start _smol_start: lea rsi, [rel _gotplt+8] lodsq ; linkmap -> rax xchg rax, rdx lodsq ; fixup -> rax call resolve_first retaddr: ; and now we can call the resolved symbol lea rdi, [rel symname] call rax ; more symbols can also be looked up by calling [ehdr] mov al, SYS_exit ; push 42 ; pop rdi syscall ; %rdi, %rsi, %rdx, %r10, %r8 and %r9 resolve_first: pop rsi push rsi ;mov rsi, [rsp] sub si, retaddr-symname ; %rdi, %rsi, %rdx, %rcx, %r8 and %r9 ; rdi = handle (RTLD_DEFAULT) ; rsi = name (symbol name) ; rdx = who (NULL is fine) push 0 ; symbol ordinal (_dl_sym) push rdx ; link_map push 0 ;push 0 pop rdi ; handle (RTLD_DEFAULT) push rdi pop rdx ; who (NULL, "If the address is not recognized the call comes from ; the main program (we hope)" -glibc src) ;lea rsi, [rel symname] ; symbol name jmp rax ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; symname: db "puts",0 ;helloworld: ; db "hello, world!",0 global _dynstr _dynstr: ; db 0 _symbols.libc: db "libc.so.6",0 _symbols.libc.puts: db "_dl_sym",0 global _rela_plt _rela_plt: dq ehdr ; address db ELF_R_INFO(0,R_JUMP_SLOT) ; symidx, type ;dq 0 ; addend END.FILE: ; yep, GOT in .bss global _GLOBAL_OFFSET_TABLE_ _GLOBAL_OFFSET_TABLE_: _gotplt: resq 1;db _DYNAMIC ; not a requirement! linkmap: resq 1 ; address of link map, filled in by ld.so fixup: resq 1 ; address of _dl_runtime_resolve, which is a trampoline calling _dl_fixup END.MEM:
22.30622
89
0.542471
c07794d7f047ee90c2b6a76dae9bb1871daf4f77
1,013
html
HTML
templates/blog/index.html
MeysamS/cv-tools
037efc94f40edd41c096aa0847a7739eac5851f8
[ "MIT" ]
null
null
null
templates/blog/index.html
MeysamS/cv-tools
037efc94f40edd41c096aa0847a7739eac5851f8
[ "MIT" ]
null
null
null
templates/blog/index.html
MeysamS/cv-tools
037efc94f40edd41c096aa0847a7739eac5851f8
[ "MIT" ]
null
null
null
{% extends 'base.html' %} {% load static %} {% block content %} <div class="pb-2"> <h1 class="title title--h1 title__separate">وبلاگ</h1> </div> <div class="news-grid pb-0"> <!-- Post --> {% for article in articles %} <article class="news-item box" style="width:100%"> <div class="news-item__image-wrap overlay overlay--45"> <div class="news-item__date">{{article.jpublished_at}}</div> <a class="news-item__link" href="{% url 'blog:detail' article.slug %}"></a> <img class="cover ls-is-cached lazyloaded" src="{{article.thumbnail.url}}" alt="" /> </div> <div class="news-item__caption"> <a style="color:#44566C; text-decoration: none !important" href="{% url 'blog:detail' article.slug %}" ><h2 class="title title--h4">{{article.title}}</h2></a > <p>{{article.description|truncatewords:70 | safe}}</p> </div> </article> {% endfor %} </div> {% endblock content %}
31.65625
82
0.565647
753dfe6403ebb729d95e582dccc8aab118d8bdca
13,179
cs
C#
Assets/OpenVRManifest.cs
Thynix/OpenVR-VolumeControl
e67f7124a37169fad02e1537cb3198036a4ce1e0
[ "MIT" ]
3
2019-03-24T13:53:09.000Z
2021-05-18T01:08:53.000Z
Assets/OpenVRManifest.cs
Thynix/OpenVR-VolumeControl
e67f7124a37169fad02e1537cb3198036a4ce1e0
[ "MIT" ]
3
2019-04-08T11:57:11.000Z
2019-04-11T14:01:42.000Z
Assets/OpenVRManifest.cs
Thynix/OpenVR-VolumeControl
e67f7124a37169fad02e1537cb3198036a4ce1e0
[ "MIT" ]
null
null
null
// A script to generate and register an OpenVR manifest in a Unity-friendly way // OpenVR manifest lets you show proper app name in SteamVR status screen instead of process name, set a custom image for the loading screen in compositor or even allow to launch your game from Steam interface // Feel free to do anything you want with this script, but please keep this copyright notice intact. // https://gist.github.com/krzys-h/98464aa2f4a1ad814358f8f078111366 // Author: krzys_h, 2018-02-11 // Usage: // Put this script anywhere in your assets folder // Click Edit > Project Settings > OpenVR Manifest // Fill in the settings // On build, everything will happen automatically! // If you want, you can move the file Assets/Resources/OpenVRManifestSettings.asset wherever you wish, but it must be stored in a folder called "Resources" using System; using System.IO; using System.Collections.Generic; using UnityEngine; using UnityEngine.XR; #if UNITY_EDITOR using UnityEditor; using UnityEditor.Callbacks; #endif #if !UNITY_EDITOR using Valve.VR; #endif public class OpenVRManifest : ScriptableObject { private const string MANIFEST_SETTINGS_ASSET_NAME = "OpenVRManifestSettings"; private const int APP_IMAGE_RECOMMENDED_WIDTH = 460; private const int APP_IMAGE_RECOMMENDED_HEIGHT = 215; [Header("App key")] [Tooltip("App key name to use, should be unique system-wide for your application, e.g. mycompany.myapp")] public string appKey = ""; [Header("App parameters")] [Tooltip("The app image, used for example in loading screen while in compositor. Recommended size is 460x215")] public Texture2D appImage = null; [Tooltip("Alternatively, you can provide the app image as a web URL")] public string appImageUrl = ""; [Tooltip("Launch arguments to use when launching this app via Steam/SteamVR interface")] public string launchArguments = ""; [Header("Manifest settings")] [Tooltip("Whether to register the manifest as temporary. Temporary manifests are loaded only until next SteamVR restart. Recommended during development as otherwise it permanently registers path to the .vrmanifest file somewhere in SteamVR. Note: Apps from temporary manifests can't be launched from Steam")] public bool temporaryManifest = true; // Note: if you want to remove permanently registered manifest, look in <steamdir>/config/appconfig.json public static OpenVRManifest LoadOpenVRManifestSettings() { return Resources.Load<OpenVRManifest>(MANIFEST_SETTINGS_ASSET_NAME); } #if UNITY_EDITOR // A menu option to open VR manifest settings [MenuItem("Edit/Project Settings/OpenVR Manifest")] public static void OpenSettings() { OpenVRManifest manifestSettingsAsset = LoadOpenVRManifestSettings(); if (manifestSettingsAsset == null) { if (!AssetDatabase.IsValidFolder("Assets/Resources")) AssetDatabase.CreateFolder("Assets", "Resources"); manifestSettingsAsset = ScriptableObject.CreateInstance<OpenVRManifest>(); AssetDatabase.CreateAsset(manifestSettingsAsset, "Assets/Resources/" + MANIFEST_SETTINGS_ASSET_NAME + ".asset"); AssetDatabase.SaveAssets(); } Selection.activeObject = manifestSettingsAsset; } [MenuItem("Edit/Project Settings/OpenVR Manifest", true)] public static bool OpenSettingsValidate() { return Array.IndexOf(XRSettings.supportedDevices, "OpenVR") >= 0; } #endif #if UNITY_EDITOR // A class representing the structure of OpenVR manifest JSON [Serializable] public sealed class OpenVRManifestData { [Serializable] public sealed class OpenVRManifestApplicationData { [Serializable] public sealed class OpenVRManifestApplicationStringsData { public string name; } public string app_key; public string launch_type = "binary"; public string binary_path_windows; public string binary_path_osx; // TODO: Add support for binary_path_osx and binary_path_linux public string binary_path_linux; public string arguments = ""; public string arguments_osx; public string arguments_linux; public string image_path = ""; // can be a file name or a URL //public Dictionary<string, OpenVRManifestApplicationStringsData> strings; // keys are language names, e.g. en_us // TODO: JSONUtility doesn't support Dictionary :/ [Serializable] public sealed class OpenVRManifestApplicationStringsArray { public OpenVRManifestApplicationStringsData en_us; } public OpenVRManifestApplicationStringsArray strings; //public List<string> mime_types; // For some special apps? e.g. "mime_types": [ "vr/media_player" ] } public string source = "builtin"; public List<OpenVRManifestApplicationData> applications; } // Code responsible for generating the manifest + copying the logo image in a postprocess hook [PostProcessBuild] public static void OnPostprocessBuild(BuildTarget target, string pathToBuiltProject) { if (Array.IndexOf(XRSettings.supportedDevices, "OpenVR") < 0) return; OpenVRManifest manifestSettingsAsset = LoadOpenVRManifestSettings(); if (manifestSettingsAsset == null) { Debug.Log("OpenVR manifest not configured! Click Edit > Project Settings > OpenVR Manifest"); return; } if (manifestSettingsAsset.appKey == "") { Debug.LogWarning("App key cannot be empty. OpenVR manifest will not be generated. See Edit > Project Settings > OpenVR Manifest"); return; } if (manifestSettingsAsset.appImage != null && manifestSettingsAsset.appImageUrl != "") { Debug.LogWarning("Cannot use app image and app image URL at the same time. See Edit > Project Settings > OpenVR Manifest"); throw new UnityException("Cannot use app image and app image URL at the same time"); } string outputDirName = Path.GetDirectoryName(pathToBuiltProject); string programBinaryName = Path.GetFileName(pathToBuiltProject); string programBinaryNameBase = Path.GetFileNameWithoutExtension(pathToBuiltProject); // Put the app image inside output directory string appImage = ""; if (manifestSettingsAsset.appImageUrl != "") { appImage = manifestSettingsAsset.appImageUrl; } else if (manifestSettingsAsset.appImage) { if (manifestSettingsAsset.appImage.width != APP_IMAGE_RECOMMENDED_WIDTH || manifestSettingsAsset.appImage.width != APP_IMAGE_RECOMMENDED_HEIGHT) { Debug.LogWarning("The OpenVR app image is not using the recommended size of " + APP_IMAGE_RECOMMENDED_WIDTH + "x" + APP_IMAGE_RECOMMENDED_HEIGHT + ", but we'll use it anyway"); } // Make sure we can access the texture with EncodeToPNG TextureImporter importer = AssetImporter.GetAtPath(AssetDatabase.GetAssetPath(manifestSettingsAsset.appImage)) as TextureImporter; if (importer) { bool dirty = false; if (!importer.isReadable) { Debug.Log("Texture " + manifestSettingsAsset.appImage + " did not have script read access enabled, enabling now..."); importer.isReadable = true; dirty = true; } if (importer.textureCompression != TextureImporterCompression.Uncompressed) { Debug.Log("Texture " + manifestSettingsAsset.appImage + " had compression enabled, disabling now..."); importer.textureCompression = TextureImporterCompression.Uncompressed; dirty = true; } if (importer.npotScale != TextureImporterNPOTScale.None) { Debug.Log("Texture " + manifestSettingsAsset.appImage + " had NPOT scaling enabled, disabling now..."); importer.npotScale = TextureImporterNPOTScale.None; dirty = true; } if (importer.mipmapEnabled) { Debug.Log("Texture " + manifestSettingsAsset.appImage + " had mipmaps enabled, disabling now..."); importer.mipmapEnabled = false; dirty = true; } if (dirty) { importer.SaveAndReimport(); } } else { Debug.LogWarning("Unable to access TextureImporter for " + manifestSettingsAsset.appImage.name + " ?"); } // And save the texture in build directory string appImageFilename = programBinaryNameBase + "_vrlogo.png"; string appImagePath = Path.Combine(outputDirName, appImageFilename); byte[] appImageData = manifestSettingsAsset.appImage.EncodeToPNG(); File.WriteAllBytes(appImagePath, appImageData); appImage = appImageFilename; } // Generate the manifest file OpenVRManifestData jsonData = new OpenVRManifestData() { applications = new List<OpenVRManifestData.OpenVRManifestApplicationData>() { new OpenVRManifestData.OpenVRManifestApplicationData() { app_key = manifestSettingsAsset.appKey, binary_path_windows = programBinaryName, arguments = manifestSettingsAsset.launchArguments, image_path = appImage, strings = new OpenVRManifestData.OpenVRManifestApplicationData.OpenVRManifestApplicationStringsArray() { en_us = new OpenVRManifestData.OpenVRManifestApplicationData.OpenVRManifestApplicationStringsData() { name = Application.productName } } } } }; string json = JsonUtility.ToJson(jsonData, true); string vrmanifestPath = Path.Combine(outputDirName, programBinaryNameBase + ".vrmanifest"); File.WriteAllText(vrmanifestPath, json); } #endif // Code to register the manifest on runtime // Note: Don't put the #if !UNITY_EDITOR on the outside of this block, it won't work because of a Unity bug (see https://stackoverflow.com/questions/44655667/runtimeinitializeonload-not-running-with-conditional-compilation) [RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.BeforeSceneLoad)] public static void OnRuntimeLoad() { #if !UNITY_EDITOR OpenVRManifest manifestSettingsAsset = LoadOpenVRManifestSettings(); if (manifestSettingsAsset == null) { Debug.Log("OpenVR manifest not configured!"); return; } // At this point, OpenVR may be already initialized (if SteamVR is enabled by default in the first scene) or not (if None is at top // of supported SDKs list, that is the case e.g. when using VRTK, or your first scene just has no VR enabled at all). // If it's not, we'll have to handle initialization outselves if (XRSettings.loadedDeviceName != "OpenVR") { EVRInitError error = EVRInitError.None; OpenVR.Init(ref error, EVRApplicationType.VRApplication_Utility); if (error != EVRInitError.None) { Debug.LogError("Failed to initialize OpenVR to register manifest, error = " + error.ToString()); return; } } string exePath = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName; // TODO: This is UGLY! Why doesn't Unity have this string exeDir = Path.GetDirectoryName(exePath); string exeNameBase = Path.GetFileNameWithoutExtension(exePath); string vrmanifestPath = Path.Combine(exeDir, exeNameBase + ".vrmanifest"); Debug.Log("Registering the OpenVR manifest from "+vrmanifestPath); OpenVR.Applications.AddApplicationManifest(vrmanifestPath, manifestSettingsAsset.temporaryManifest); // To make sure that the new settings get applied immediately // (without this it works only after app restart) // PS. OpenVR documentation sucks, it says that if you pass 0 instead of process id it will use the calling process automatically but it actually doesn't OpenVR.Applications.IdentifyApplication((uint) System.Diagnostics.Process.GetCurrentProcess().Id, manifestSettingsAsset.appKey); // And don't forget to clean up afterwards! if (XRSettings.loadedDeviceName != "OpenVR") { OpenVR.Shutdown(); } #endif } }
45.602076
312
0.651415
fefd9b4e4e4d008c6bc01a12aa793d02d7e74002
841
asm
Assembly
engine/engine/interrupt/declarations/video-standards/pal-60.asm
neomura/atmega328p-cartridge
e7152425e5253cd4e513cad41dc03d306003e91e
[ "MIT" ]
null
null
null
engine/engine/interrupt/declarations/video-standards/pal-60.asm
neomura/atmega328p-cartridge
e7152425e5253cd4e513cad41dc03d306003e91e
[ "MIT" ]
2
2021-04-17T09:31:24.000Z
2021-04-17T09:31:53.000Z
engine/engine/interrupt/declarations/video-standards/pal-60.asm
neomura/atmega328p-cartridge
e7152425e5253cd4e513cad41dc03d306003e91e
[ "MIT" ]
null
null
null
; Approximately 63.5usec, the duration of a scanline in CPU cycles, rounded to the nearest multiple of the colorburst frequency. .equ SCANLINE_CYCLES = 1127 ; Approximately 4.7usec, the duration of a HSYNC pulse in CPU cycles. .equ HSYNC_PULSE_CYCLES = 83 ; Approximately 58.8usec, the duration of of a VSYNC pulse in CPU cycles. .equ VSYNC_PULSE_CYCLES = 1043 ; Approximately 5.3usec, the point during a line at which the colorburst starts. .equ COLORBURST_START_CYCLES = 94 ; Approximately 12.15usec, the point during a line at which active video starts, plus a safe area border. .equ ACTIVE_VIDEO_START_CYCLES = 216 ; The point during a line at which the interrupt should fire. ; This figure has been set as high as possible without overwhelming the timing jitter correction through experimentation. .equ INTERRUPT_START_CYCLES = 58
44.263158
128
0.794293
fd7d3321809804d251aa172f22bc370cf24d1935
853
h
C
Aplicacion Movil/generated/bundles/login-transition/build/Android/Preview/app/src/main/include/Uno.Diagnostics.ProfileEvent.h
marferfer/SpinOff-LoL
a9dba8ac9dd476ec1ef94712d9a8e76d3b45aca8
[ "Apache-2.0" ]
null
null
null
Aplicacion Movil/generated/bundles/login-transition/build/Android/Preview/app/src/main/include/Uno.Diagnostics.ProfileEvent.h
marferfer/SpinOff-LoL
a9dba8ac9dd476ec1ef94712d9a8e76d3b45aca8
[ "Apache-2.0" ]
null
null
null
Aplicacion Movil/generated/bundles/login-transition/build/Android/Preview/app/src/main/include/Uno.Diagnostics.ProfileEvent.h
marferfer/SpinOff-LoL
a9dba8ac9dd476ec1ef94712d9a8e76d3b45aca8
[ "Apache-2.0" ]
null
null
null
// This file was generated based on C:/Users/JuanJose/AppData/Local/Fusetools/Packages/UnoCore/1.9.0/Source/Uno/Diagnostics/ProfileEvent.uno. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Uno.Object.h> namespace g{namespace Uno{namespace Diagnostics{struct ProfileEvent;}}} namespace g{ namespace Uno{ namespace Diagnostics{ // public abstract class ProfileEvent :4 // { struct ProfileEvent_type : uType { void(*fp_get_Type)(::g::Uno::Diagnostics::ProfileEvent*, int32_t*); }; ProfileEvent_type* ProfileEvent_typeof(); void ProfileEvent__ctor__fn(ProfileEvent* __this); struct ProfileEvent : uObject { double TimeStamp; void ctor_(); int32_t Type() { int32_t __retval; return (((ProfileEvent_type*)__type)->fp_get_Type)(this, &__retval), __retval; } }; // } }}} // ::g::Uno::Diagnostics
26.65625
141
0.742087
10bcc19d2d4b7d31e4b505b063ad6b15797583f3
640
kt
Kotlin
app/src/main/java/hypr/hypergan/com/hypr/Util/GoogleSignIn.kt
HyperGAN/hypr
16b37ef62e8830fe4e87fdec1198a5ee6f0b0c2a
[ "MIT" ]
5
2019-11-01T22:41:14.000Z
2021-08-01T08:35:37.000Z
app/src/main/java/hypr/hypergan/com/hypr/Util/GoogleSignIn.kt
HyperGAN/HyperGAN-android
16b37ef62e8830fe4e87fdec1198a5ee6f0b0c2a
[ "MIT" ]
57
2017-07-18T03:30:51.000Z
2018-02-07T18:16:31.000Z
app/src/main/java/hypr/hypergan/com/hypr/Util/GoogleSignIn.kt
HyperGAN/hypr
16b37ef62e8830fe4e87fdec1198a5ee6f0b0c2a
[ "MIT" ]
1
2021-04-28T03:15:50.000Z
2021-04-28T03:15:50.000Z
package hypr.hypergan.com.hypr.Util import android.content.Context import com.google.android.gms.auth.api.Auth import com.google.android.gms.auth.api.signin.GoogleSignInOptions import com.google.android.gms.common.api.GoogleApiClient class GoogleSignIn(val context: Context){ val gso: GoogleSignInOptions by lazy { GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN) .requestEmail() .build() } val client: GoogleApiClient by lazy { GoogleApiClient.Builder(context) .addApi(Auth.GOOGLE_SIGN_IN_API, gso) .build() } init{ } }
27.826087
72
0.6875
72a3ed43003598d09b8bbb207c1d9b9949302c3c
2,063
dart
Dart
example/lib/main.dart
ErfanRht/flutter_advanced_button
e61c37fe5d37de7036d95c406c932a4f4501ea9a
[ "MIT" ]
1
2021-12-16T20:59:55.000Z
2021-12-16T20:59:55.000Z
example/lib/main.dart
ErfanRht/flutter_advanced_button
e61c37fe5d37de7036d95c406c932a4f4501ea9a
[ "MIT" ]
null
null
null
example/lib/main.dart
ErfanRht/flutter_advanced_button
e61c37fe5d37de7036d95c406c932a4f4501ea9a
[ "MIT" ]
null
null
null
import 'package:flutter/material.dart'; import 'package:flutter_advanced_button/flutter_advanced_button.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Advanced Button Example', theme: ThemeData( primarySwatch: Colors.blue, ), home: Scaffold( body: Column( mainAxisAlignment: MainAxisAlignment.spaceAround, children: [ Center( child: Advanced3DButton( child: Text( "Advanced3DButton", style: TextStyle( color: Colors.white, fontSize: 16, fontWeight: FontWeight.w600), ), onTap: () { print("Tapped"); })), Center( child: AdvancedRoundedButton( width: 250, child: Text( "AdvancedRoundedButton", style: TextStyle( color: Colors.white, fontSize: 15, fontWeight: FontWeight.w600), ), onTap: () { print("Tapped"); }, animationSpeed: 275, )), Center( child: AdvancedFolidButton( width: 270, foldWidth: 200, child: Text( "AdvancedFoldingButton", style: TextStyle( color: Colors.white, fontSize: 15, fontWeight: FontWeight.w600), ), onTap: () { print("Tapped"); })), ], ), )); } }
31.257576
70
0.390208
263e31333946c7ee9c425a1051373f17d7365927
685
java
Java
basic/src/jdbc/ExecuteUpdate.java
harikesh409/javaee
8b19cfb23a7811acd20a2dce7ef93562576362e4
[ "MIT" ]
null
null
null
basic/src/jdbc/ExecuteUpdate.java
harikesh409/javaee
8b19cfb23a7811acd20a2dce7ef93562576362e4
[ "MIT" ]
1
2020-05-19T05:47:26.000Z
2020-05-19T05:47:26.000Z
basic/src/jdbc/ExecuteUpdate.java
harikesh409/javaee
8b19cfb23a7811acd20a2dce7ef93562576362e4
[ "MIT" ]
1
2021-01-24T15:26:13.000Z
2021-01-24T15:26:13.000Z
package jdbc; import java.sql.Connection; import java.sql.DriverManager; import java.sql.Statement; public class ExecuteUpdate { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub try (Connection con=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:xe","hr","hr"); Statement st=con.createStatement()){ int count=st.executeUpdate("update employees set salary=500 where employee_id=120"); if(count==1){ System.out.println("Updation is successful"); } else System.out.println("Updation is unseccessful"); } catch(Exception ex) { ex.printStackTrace(); } } }
25.37037
100
0.677372