diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/README.erb b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/README.erb index 16482cf78b..0aa1d2189f 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/README.erb +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/README.erb @@ -24,9 +24,9 @@ Then use it via `SuperChart`. See [storybook](https://apache-superset.github.io/ width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/plugin/transformProps.erb b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/plugin/transformProps.erb index 23c203c647..3acb701647 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/plugin/transformProps.erb +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/plugin/transformProps.erb @@ -35,8 +35,8 @@ export default function transformProps(chartProps: ChartProps) { * the chart is located * - `formData`: the chart data request payload that was sent to the * backend. - * - `queryData`: the chart data response payload that was received - * from the backend. Some notable properties of `queryData`: + * - `queriesData`: the chart data response payload that was received + * from the backend. Some notable properties of `queriesData`: * - `data`: an array with data, each row with an object mapping * the column/alias to its value. Example: * `[{ col1: 'abc', metric1: 10 }, { col1: 'xyz', metric1: 20 }]` @@ -48,9 +48,9 @@ export default function transformProps(chartProps: ChartProps) { * function during development with hot reloading, changes won't * be seen until restarting the development server. */ - const { width, height, formData, queryData } = chartProps; + const { width, height, formData, queriesData } = chartProps; const { boldText, headerFontSize, headerText } = formData; - const data = queryData.data as TimeseriesDataRecord[]; + const data = queriesData[0].data as TimeseriesDataRecord[]; console.log('formData via TransformProps.ts', formData); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/test/plugin/transformProps.test.erb b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/test/plugin/transformProps.test.erb index 5ab500225d..9b2ee5362d 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/test/plugin/transformProps.test.erb +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/test/plugin/transformProps.test.erb @@ -16,9 +16,9 @@ describe('<%= packageLabel %> tranformProps', () => { formData, width: 800, height: 600, - queryData: { + queriesData: [{ data: [{ name: 'Hulk', sum__num: 1<%if (chartType === 'timeseries') { %>, __timestamp: 599616000000<% } %> }], - }, + }], }); it('should tranform chart props for viz', () => { diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/clients/ChartClient.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/clients/ChartClient.ts index a9d8dd0320..4812c25914 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/clients/ChartClient.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/clients/ChartClient.ts @@ -29,7 +29,7 @@ export interface ChartData { annotationData: AnnotationData; datasource: PlainObject; formData: QueryFormData; - queryData: QueryData; + queriesData: QueryData[]; } export default class ChartClient { @@ -76,7 +76,7 @@ export default class ChartClient { async loadQueryData( formData: QueryFormData, options?: Partial, - ): Promise { + ): Promise { const { viz_type: visType } = formData; const metaDataRegistry = getChartMetadataRegistry(); const buildQueryRegistry = getChartBuildQueryRegistry(); @@ -101,8 +101,7 @@ export default class ChartClient { }; return this.client.post(requestConfig).then(response => { - // let's assume response.json always has the shape of QueryData - return response.json as QueryData; + return Array.isArray(response.json) ? response.json : [response.json]; }); } @@ -156,11 +155,11 @@ export default class ChartClient { this.loadAnnotations(formData.annotation_layers), this.loadDatasource(formData.datasource), this.loadQueryData(formData), - ]).then(([annotationData, datasource, queryData]) => ({ + ]).then(([annotationData, datasource, queriesData]) => ({ annotationData, datasource, formData, - queryData, + queriesData, })), ); } diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/ChartDataProvider.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/ChartDataProvider.tsx index c6aded11e5..174f8cab2b 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/ChartDataProvider.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/ChartDataProvider.tsx @@ -6,7 +6,7 @@ import { QueryData } from '../types/QueryResponse'; interface Payload { formData: Partial; - queryData: QueryData; + queriesData: QueryData[]; datasource?: Datasource; } @@ -33,7 +33,7 @@ export type ChartDataProviderProps = formDataRequestOptions?: Partial; /** Hook to override the datasource request config. */ datasourceRequestOptions?: Partial; - /** Hook to override the queryData request config. */ + /** Hook to override the queriesData request config. */ queryRequestOptions?: Partial; }; @@ -90,12 +90,12 @@ class ChartDataProvider extends React.PureComponent< : Promise.resolve(undefined), this.chartClient.loadQueryData(formData, queryRequestOptions), ]).then( - ([datasource, queryData]) => + ([datasource, queriesData]) => // eslint-disable-next-line @typescript-eslint/consistent-type-assertions ({ datasource, formData, - queryData, + queriesData, } as Payload), ), ) diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/SuperChart.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/SuperChart.tsx index c7e3d0babb..c4fb355759 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/SuperChart.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/SuperChart.tsx @@ -111,14 +111,12 @@ export default class SuperChart extends React.PureComponent { FallbackComponent, onErrorBoundary, Wrapper, - queryData, queriesData, ...rest } = this.props as PropsWithDefault; const chartProps = this.createChartProps({ ...rest, - queryData, queriesData, height, width, @@ -126,14 +124,10 @@ export default class SuperChart extends React.PureComponent { let chart; // Render the no results component if the query data is null or empty - const noResultQuery = - !queryData || - !queryData.data || - (Array.isArray(queryData.data) && queryData.data.length === 0); const noResultQueries = !queriesData || queriesData.every(({ data }) => !data || (Array.isArray(data) && data.length === 0)); - if (noResultQuery && noResultQueries) { + if (noResultQueries) { chart = ; } else { const chartWithoutWrapper = ( diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/models/ChartProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/models/ChartProps.ts index e4015779d5..0b890103cd 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/models/ChartProps.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/models/ChartProps.ts @@ -47,10 +47,7 @@ export interface ChartPropsConfig { height?: number; /** Programmatic overrides such as event handlers, renderers */ hooks?: Hooks; - /** Formerly called "payload". This property going to be deprecated because - * contains only first item in response data array (use `queriesData` instead) */ - queryData?: QueryData; - /** Formerly called "payload" */ + /** The data returned for all queries objects in the request */ queriesData?: QueryData[]; /** Chart width */ width?: number; @@ -78,8 +75,6 @@ export default class ChartProps { hooks: Hooks; - queryData: QueryData; - queriesData: QueryData[]; width: number; @@ -91,7 +86,6 @@ export default class ChartProps { formData = {}, hooks = {}, initialValues = {}, - queryData = {}, queriesData = [], width = DEFAULT_WIDTH, height = DEFAULT_HEIGHT, @@ -105,7 +99,6 @@ export default class ChartProps { this.rawFormData = formData; this.hooks = hooks; this.initialValues = initialValues; - this.queryData = queryData; this.queriesData = queriesData; } } @@ -119,20 +112,9 @@ ChartProps.createSelector = function create(): ChartPropsSelector { input => input.height, input => input.hooks, input => input.initialValues, - input => input.queryData, input => input.queriesData, input => input.width, - ( - annotationData, - datasource, - formData, - height, - hooks, - initialValues, - queryData, - queriesData, - width, - ) => + (annotationData, datasource, formData, height, hooks, initialValues, queriesData, width) => new ChartProps({ annotationData, datasource, @@ -140,7 +122,6 @@ ChartProps.createSelector = function create(): ChartPropsSelector { height, hooks, initialValues, - queryData, queriesData, width, }), diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/clients/ChartClient.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/clients/ChartClient.test.ts index dd9e5f3d41..86635c754e 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/clients/ChartClient.test.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/clients/ChartClient.test.ts @@ -100,10 +100,12 @@ describe('ChartClient', () => { getChartBuildQueryRegistry().registerValue('word_cloud', (formData: QueryFormData) => buildQueryContext(formData), ); - fetchMock.post('glob:*/api/v1/chart/data', { - field1: 'abc', - field2: 'def', - }); + fetchMock.post('glob:*/api/v1/chart/data', [ + { + field1: 'abc', + field2: 'def', + }, + ]); return expect( chartClient.loadQueryData({ @@ -111,10 +113,12 @@ describe('ChartClient', () => { viz_type: 'word_cloud', datasource: '1__table', }), - ).resolves.toEqual({ - field1: 'abc', - field2: 'def', - }); + ).resolves.toEqual([ + { + field1: 'abc', + field2: 'def', + }, + ]); }); it('returns a promise that rejects for unknown chart type', () => expect( @@ -151,10 +155,12 @@ describe('ChartClient', () => { viz_type: 'word_cloud_legacy', datasource: '1__table', }), - ).resolves.toEqual({ - field1: 'abc', - field2: 'def', - }); + ).resolves.toEqual([ + { + field1: 'abc', + field2: 'def', + }, + ]); }); }); @@ -259,11 +265,13 @@ describe('ChartClient', () => { datasource: '1__table', color: 'living-coral', }, - queryData: { - lorem: 'ipsum', - dolor: 'sit', - amet: true, - }, + queriesData: [ + { + lorem: 'ipsum', + dolor: 'sit', + amet: true, + }, + ], }); }); }); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/ChartDataProvider.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/ChartDataProvider.test.tsx index d4ccafed2b..2c20226bb6 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/ChartDataProvider.test.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/ChartDataProvider.test.tsx @@ -17,8 +17,12 @@ function createPromise(input: T) { return Promise.resolve(input); } +function createArrayPromise(input: T) { + return Promise.resolve([input]); +} + const mockLoadDatasource = jest.fn, unknown[]>(createPromise); -const mockLoadQueryData = jest.fn, unknown[]>(createPromise); +const mockLoadQueryData = jest.fn, unknown[]>(createArrayPromise); // ChartClient is now a mock jest.mock('@superset-ui/core/src/chart/clients/ChartClient', () => @@ -202,7 +206,7 @@ describe('ChartDataProvider', () => { payload: { formData: props.formData, datasource: props.formData.datasource, - queryData: props.formData, + queriesData: [props.formData], }, }); done(); @@ -258,7 +262,7 @@ describe('ChartDataProvider', () => { expect(onLoaded.mock.calls[0][0]).toEqual({ formData: props.formData, datasource: props.formData.datasource, - queryData: props.formData, + queriesData: [props.formData], }); done(); }, 0); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/SuperChart.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/SuperChart.test.tsx index 668bdf5676..31b590baa5 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/SuperChart.test.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/SuperChart.test.tsx @@ -73,7 +73,7 @@ describe('SuperChart', () => { const wrapper = mount( , @@ -91,7 +91,7 @@ describe('SuperChart', () => { const wrapper = mount( { mount( { { const wrapper = mount( { const wrapper = mount( { }); describe('supports NoResultsComponent', () => { - it('renders NoResultsComponent when queryData is missing', () => { + it('renders NoResultsComponent when queriesData is missing', () => { const wrapper = mount(); expect(wrapper.find(NoResultsComponent)).toHaveLength(1); }); - it('renders NoResultsComponent when queryData data is null', () => { - const wrapper = mount( - , - ); - - expect(wrapper.find(NoResultsComponent)).toHaveLength(1); - }); - it('renders NoResultsComponent when queriesData data is null', () => { const wrapper = mount( { expect(wrapper.find(NoResultsComponent)).toHaveLength(1); }); - - it('renders NoResultsComponent when queryData data is empty', () => { - const wrapper = mount( - , - ); - - expect(wrapper.find(NoResultsComponent)).toHaveLength(1); - }); - - it('renders NoResultsComponent when queryData and queriesData data is empty (backward compatibility)', () => { - const wrapper = mount( - , - ); - - expect(wrapper.find(NoResultsComponent)).toHaveLength(1); - }); }); describe('supports dynamic width and/or height', () => { @@ -265,7 +224,7 @@ describe('SuperChart', () => { const wrapper = mount( , @@ -281,7 +240,7 @@ describe('SuperChart', () => { const wrapper = mount( { const wrapper = mount( { const wrapper = mount( { const wrapper = mount( , ); @@ -371,7 +330,7 @@ describe('SuperChart', () => { const wrapper = mount( { const wrapper = mount( { }); it('uses preTransformProps when specified', () => { const chartPropsWithPayload = new ChartProps({ - queryData: { message: 'hulk' }, + queriesData: [{ message: 'hulk' }], }); const wrapper = shallow( chartPropsWithPayload} - overrideTransformProps={props => props.queryData} + overrideTransformProps={props => props.queriesData[0]} />, ); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/models/ChartPlugin.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/models/ChartPlugin.test.tsx index 550369c29f..8b0d358bfd 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/models/ChartPlugin.test.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/models/ChartPlugin.test.tsx @@ -107,7 +107,7 @@ describe('ChartPlugin', () => { formData: FORM_DATA, width: 400, height: 400, - queryData: {}, + queriesData: [{}], }); it('defaults to identity function', () => { const plugin = new ChartPlugin({ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/models/ChartProps.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/models/ChartProps.test.ts index 729d3fcfed..b5f9b4fdcf 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/models/ChartProps.test.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/models/ChartProps.test.ts @@ -9,6 +9,7 @@ const RAW_DATASOURCE = { }; const QUERY_DATA = { data: {} }; +const QUERIES_DATA = [QUERY_DATA]; describe('ChartProps', () => { it('exists', () => { @@ -20,7 +21,7 @@ describe('ChartProps', () => { width: 800, height: 600, formData: RAW_FORM_DATA, - queryData: QUERY_DATA, + queriesData: QUERIES_DATA, }); expect(props).toBeInstanceOf(ChartProps); }); @@ -30,7 +31,7 @@ describe('ChartProps', () => { height: 600, datasource: RAW_DATASOURCE, formData: RAW_FORM_DATA, - queryData: QUERY_DATA, + queriesData: QUERIES_DATA, }); expect(props.formData.someField as number).toEqual(1); expect(props.datasource.columnFormats).toEqual(RAW_DATASOURCE.column_formats); @@ -49,14 +50,14 @@ describe('ChartProps', () => { height: 600, datasource: RAW_DATASOURCE, formData: RAW_FORM_DATA, - queryData: QUERY_DATA, + queriesData: QUERIES_DATA, }); const props2 = selector({ width: 800, height: 600, datasource: RAW_DATASOURCE, formData: RAW_FORM_DATA, - queryData: QUERY_DATA, + queriesData: QUERIES_DATA, }); expect(props1).toBe(props2); }); @@ -66,21 +67,21 @@ describe('ChartProps', () => { height: 600, datasource: RAW_DATASOURCE, formData: RAW_FORM_DATA, - queryData: QUERY_DATA, + queriesData: QUERIES_DATA, }); const props2 = selector({ width: 800, height: 600, datasource: RAW_DATASOURCE, formData: { new_field: 3 }, - queryData: QUERY_DATA, + queriesData: QUERIES_DATA, }); const props3 = selector({ width: 800, height: 600, datasource: RAW_DATASOURCE, formData: RAW_FORM_DATA, - queryData: QUERY_DATA, + queriesData: QUERIES_DATA, }); expect(props1).not.toBe(props2); expect(props1).not.toBe(props3); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/createQueryStory.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/createQueryStory.tsx index c59065bd4d..996a1919fd 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/createQueryStory.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/createQueryStory.tsx @@ -48,11 +48,7 @@ export default function createQueryStory({ formData={payload.formData} // @TODO fix typing // all vis's now expect objects but api/v1/ returns an array - queryData={ - Array.isArray(payload.queryData) - ? payload.queryData[0] - : payload.queryData - } + queriesData={payload.queriesData} />
diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-calendar/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-calendar/Stories.tsx index 54a02fc73e..5d52082a61 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-calendar/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-calendar/Stories.tsx @@ -16,7 +16,7 @@ export const basic = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ cellSize: 10, cellPadding: 2, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-chord/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-chord/Stories.tsx index d0b7be3091..ac697b414b 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-chord/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-chord/Stories.tsx @@ -14,7 +14,7 @@ export const basic = () => ( chartType="chord" width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ colorScheme: 'd3Category10', yAxisFormat: '.2f', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-country-map/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-country-map/Stories.tsx index 235ce58234..9bd5296154 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-country-map/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-country-map/Stories.tsx @@ -17,7 +17,7 @@ export const basic = () => ( chartType="country-map" width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ linearColorScheme: 'schemeRdYlBu', numberFormat: '.3s', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-event-flow/Stories.jsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-event-flow/Stories.jsx index 5e84255271..42deee1152 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-event-flow/Stories.jsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-event-flow/Stories.jsx @@ -20,7 +20,7 @@ export const basic = () => ( chartType="event-flow" width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ allColumnsX: 'eventName', entity: 'userId', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-force-directed/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-force-directed/Stories.tsx index b0a6bccd6d..8f1f09711a 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-force-directed/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-force-directed/Stories.tsx @@ -11,5 +11,5 @@ export default { }; export const basic = () => ( - + ); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-heatmap/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-heatmap/Stories.tsx index ca9a200224..5e7787a8f6 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-heatmap/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-heatmap/Stories.tsx @@ -33,12 +33,14 @@ export const basic = () => ( yAxisFormat: '.3s', yscaleInterval: '1', }} - queryData={{ - data: { - records: data, - extents: [0.1, 24.9], + queriesData={[ + { + data: { + records: data, + extents: [0.1, 24.9], + }, }, - }} + ]} /> ); @@ -66,20 +68,22 @@ export const withNullData = () => ( yAxisFormat: '.3s', yscaleInterval: '1', }} - queryData={{ - data: { - records: [ - ...data, - { - x: null, - y: 'Electricity and heat', - v: 25.9, - perc: 0.43, - rank: 1.0, - }, - ], - extents: [0.1, 24.9], + queriesData={[ + { + data: { + records: [ + ...data, + { + x: null, + y: 'Electricity and heat', + v: 25.9, + perc: 0.43, + rank: 1.0, + }, + ], + extents: [0.1, 24.9], + }, }, - }} + ]} /> ); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-histogram/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-histogram/Stories.tsx index ebcbb776b0..0ef50ba349 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-histogram/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-histogram/Stories.tsx @@ -15,7 +15,7 @@ export const basic = () => ( chartType="histogram" width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ colorScheme: 'd3Category10', globalOpacity: 1, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-horizon/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-horizon/Stories.tsx index 9f82417c0b..cf54ad3b67 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-horizon/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-horizon/Stories.tsx @@ -14,7 +14,7 @@ export const basic = () => ( chartType="horizon" width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ horizonColorScale: 'series', seriesHeight: '25', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-map-box/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-map-box/Stories.tsx index cd78c0e8f6..09a81dbe44 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-map-box/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-map-box/Stories.tsx @@ -15,7 +15,7 @@ export const basic = () => ( chartType="map-box" width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ allColumnsX: 'LON', allColumnsY: 'LAT', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-paired-t-test/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-paired-t-test/Stories.tsx index 2808a238e6..4cf1737802 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-paired-t-test/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-paired-t-test/Stories.tsx @@ -15,7 +15,7 @@ export const basic = () => ( chartType="paired-t-test" width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ groupby: ['name'], liftvaluePrecision: 4, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-parallel-coordinates/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-parallel-coordinates/Stories.tsx index 74a5570eb8..672a3cc152 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-parallel-coordinates/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-parallel-coordinates/Stories.tsx @@ -14,7 +14,7 @@ export const basic = () => ( chartType="parallel-coordinates" width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ includeSeries: false, linearColorScheme: 'schemeRdYlBu', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-partition/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-partition/Stories.tsx index 298376700e..c238e59881 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-partition/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-partition/Stories.tsx @@ -16,7 +16,7 @@ export const basic = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ colorScheme: 'd3Category10', dateTimeFormat: '%Y-%m-%d', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-pivot-table/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-pivot-table/Stories.tsx index ae72b857bf..dc2fc91074 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-pivot-table/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-pivot-table/Stories.tsx @@ -23,16 +23,18 @@ export const basic = () => ( width={400} height={400} datasource={datasource} - queryData={{ - data: { - columns: [ - ['sum__num', 'other'], - ['sum__num', 'All'], - ], - html: - '\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
sum__num
stateotherAll
name
Christopher803607803607
David673992673992
James749686749686
Jennifer587540587540
John638450638450
Joshua548044548044
Matthew608212608212
Michael10479961047996
Robert575592575592
William574464574464
All68075836807583
', + queriesData={[ + { + data: { + columns: [ + ['sum__num', 'other'], + ['sum__num', 'All'], + ], + html: + '\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
sum__num
stateotherAll
name
Christopher803607803607
David673992673992
James749686749686
Jennifer587540587540
John638450638450
Joshua548044548044
Matthew608212608212
Michael10479961047996
Robert575592575592
William574464574464
All68075836807583
', + }, }, - }} + ]} formData={{ groupby: ['name'], numberFormat: '.3s', @@ -46,16 +48,18 @@ export const withNull = () => ( width={400} height={400} datasource={datasource} - queryData={{ - data: { - columns: [ - ['sum__num', 'other'], - ['sum__num', 'All'], - ], - html: - '\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
sum__num
stateotherAll
name
Christophernull803607
Davidnull673992
James749686null
Jennifer587540null
John638450638450
Joshuanull548044
Matthew608212608212
Michael10479961047996
Robert575592575592
William574464574464
All68075836807583
', + queriesData={[ + { + data: { + columns: [ + ['sum__num', 'other'], + ['sum__num', 'All'], + ], + html: + '\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
sum__num
stateotherAll
name
Christophernull803607
Davidnull673992
James749686null
Jennifer587540null
John638450638450
Joshuanull548044
Matthew608212608212
Michael10479961047996
Robert575592575592
William574464574464
All68075836807583
', + }, }, - }} + ]} formData={{ groupby: ['name'], numberFormat: '.3s', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-rose/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-rose/Stories.tsx index 0d4a940467..f70fdd662c 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-rose/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-rose/Stories.tsx @@ -15,7 +15,7 @@ export const basic = () => ( chartType="rose" width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ colorScheme: 'd3Category10', dateTimeFormat: '%Y-%m-%d', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey-loop/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey-loop/Stories.tsx index 43a4dceaf8..66643ca6e0 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey-loop/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey-loop/Stories.tsx @@ -15,7 +15,7 @@ export const basic = () => ( chartType="sankey-loop" width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ colorScheme: 'd3Category10', }} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey/Stories.tsx index bcd8545ae2..0a7f01a059 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey/Stories.tsx @@ -15,7 +15,7 @@ export const basic = () => ( chartType="sankey" width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ colorScheme: 'd3Category10', }} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sunburst/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sunburst/Stories.tsx index 4f6193cc02..ce4153c8d9 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sunburst/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sunburst/Stories.tsx @@ -15,7 +15,7 @@ export const basic = () => ( chartType="sunburst" width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ colorScheme: 'd3Category10', metric: 'sum__SP_POP_TOTL', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-time-table/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-time-table/Stories.tsx index 9a7fd26e12..b165816b98 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-time-table/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-time-table/Stories.tsx @@ -15,17 +15,19 @@ export const basic = () => ( chartType="time-table" width={400} height={400} - queryData={{ - data: { - columns: [ - 'East Asia & Pacific', - 'Latin America & Caribbean', - 'Middle East & North Africa', - 'Sub-Saharan Africa', - ], - records: data, + queriesData={[ + { + data: { + columns: [ + 'East Asia & Pacific', + 'Latin America & Caribbean', + 'Middle East & North Africa', + 'Sub-Saharan Africa', + ], + records: data, + }, }, - }} + ]} formData={{ adhocFilters: [], groupby: ['region'], diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-treemap/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-treemap/Stories.tsx index 4d49fda447..4cefb49cf4 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-treemap/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-treemap/Stories.tsx @@ -15,7 +15,7 @@ export const basic = () => ( chartType="treemap" width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ colorScheme: 'd3Category10', numberFormat: '.3s', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-world-map/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-world-map/Stories.tsx index d1e185cb7a..1629b27a65 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-world-map/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-world-map/Stories.tsx @@ -15,7 +15,7 @@ export const basic = () => ( chartType="world-map" width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ maxBubbleSize: '25', showBubbles: true, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumber/BigNumberStories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumber/BigNumberStories.tsx index 955163fe6d..5e0910e1fe 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumber/BigNumberStories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumber/BigNumberStories.tsx @@ -64,7 +64,7 @@ export const basicWithTrendline = () => ( chartType="big-number" width={400} height={400} - queryData={{ data: testData }} + queriesData={[{ data: testData }]} formData={formData} /> ); @@ -74,7 +74,7 @@ export const weeklyTimeGranularity = () => ( chartType="big-number" width={400} height={400} - queryData={{ data: testData }} + queriesData={[{ data: testData }]} formData={{ ...formData, timeGrainSqla: 'P1W', @@ -87,7 +87,7 @@ export const nullInTheMiddle = () => ( chartType="big-number" width={400} height={400} - queryData={{ data: withNulls(testData, 3) }} + queriesData={[{ data: withNulls(testData, 3) }]} formData={formData} /> ); @@ -97,11 +97,13 @@ export const fixedRange = () => ( chartType="big-number" width={400} height={400} - queryData={{ - data: testData.slice(0, 9), - from_dttm: testData[testData.length - 1][TIME_COLUMN], - to_dttm: null, - }} + queriesData={[ + { + data: testData.slice(0, 9), + from_dttm: testData[testData.length - 1][TIME_COLUMN], + to_dttm: null, + }, + ]} formData={{ ...formData, timeRangeFixed: true, @@ -114,11 +116,13 @@ export const noFixedRange = () => ( chartType="big-number" width={400} height={400} - queryData={{ - data: testData.slice(0, 9), - from_dttm: testData[testData.length - 1][TIME_COLUMN], - to_dttm: testData[0][TIME_COLUMN], - }} + queriesData={[ + { + data: testData.slice(0, 9), + from_dttm: testData[testData.length - 1][TIME_COLUMN], + to_dttm: testData[0][TIME_COLUMN], + }, + ]} formData={{ ...formData, timeRangeFixed: false, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumberTotal/BigNumberTotalStories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumberTotal/BigNumberTotalStories.tsx index 066c749d2f..f15cc94c5e 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumberTotal/BigNumberTotalStories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumberTotal/BigNumberTotalStories.tsx @@ -32,7 +32,7 @@ export const totalBasic = () => ( chartType="big-number-total" width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ metric: 'sum__num', subheader: 'total female participants', @@ -47,7 +47,7 @@ export const totalNoData = () => ( chartType="big-number-total" width={400} height={400} - queryData={{ data: [] }} + queriesData={[{ data: [] }]} formData={{ metric: 'sum__num', subheader: 'total female participants', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/controlsShown.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/controlsShown.tsx index ed053bf960..bcf8749c2c 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/controlsShown.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/controlsShown.tsx @@ -9,7 +9,7 @@ export const controlsShown = () => ( datasource={dummyDatasource} width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ bottomMargin: 'auto', colorCcheme: 'd3Category10', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/expanded.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/expanded.tsx index ec8636abcc..36f7d714ca 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/expanded.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/expanded.tsx @@ -9,7 +9,7 @@ export const expanded = () => ( datasource={dummyDatasource} width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ bottomMargin: 'auto', colorCcheme: 'd3Category10', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/stacked.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/stacked.tsx index 5fbb5a5a7b..6a3d78b899 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/stacked.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/stacked.tsx @@ -10,7 +10,7 @@ export const stacked = () => ( datasource={dummyDatasource} width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ bottomMargin: 'auto', colorScheme: 'd3Category10', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/stackedWithBounds.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/stackedWithBounds.tsx index 2366e8d180..7ce9d1f20f 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/stackedWithBounds.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/stackedWithBounds.tsx @@ -9,7 +9,7 @@ export const stackedWithYAxisBounds = () => ( datasource={dummyDatasource} width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ bottomMargin: 'auto', colorCcheme: 'd3Category10', @@ -44,7 +44,7 @@ export const stackedWithYAxisBoundsMinOnly = () => ( datasource={dummyDatasource} width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ bottomMargin: 'auto', colorCcheme: 'd3Category10', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/barWithPositiveAndNegativeValues.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/barWithPositiveAndNegativeValues.tsx index 7feb01eb0c..e46987dfb4 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/barWithPositiveAndNegativeValues.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/barWithPositiveAndNegativeValues.tsx @@ -9,12 +9,14 @@ export const barWithPositiveAndNegativeValues = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ - data: data.map((group, i) => ({ - ...group, - values: group.values.map(pair => ({ ...pair, y: (i % 2 === 0 ? 1 : -1) * pair.y })), - })), - }} + queriesData={[ + { + data: data.map((group, i) => ({ + ...group, + values: group.values.map(pair => ({ ...pair, y: (i % 2 === 0 ? 1 : -1) * pair.y })), + })), + }, + ]} formData={{ bottomMargin: 'auto', colorScheme: 'd3Category10', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/barWithValues.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/barWithValues.tsx index 2bd18eca71..8c04d08f80 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/barWithValues.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/barWithValues.tsx @@ -9,7 +9,7 @@ export const barWithValues = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ bottomMargin: 'auto', colorScheme: 'd3Category10', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/basic.tsx index cb28491734..380c6ba1f1 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/basic.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/basic.tsx @@ -9,7 +9,7 @@ export const basic = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ bottomMargin: 'auto', colorScheme: 'd3Category10', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/stackedBarWithValues.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/stackedBarWithValues.tsx index a7cbd4dd6e..5e30eb7433 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/stackedBarWithValues.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/stackedBarWithValues.tsx @@ -9,7 +9,7 @@ export const stackedBarWithValues = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ barStacked: true, bottomMargin: 'auto', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/stories/basic.tsx index 73a2f06a86..55956108e1 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/stories/basic.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/stories/basic.tsx @@ -9,7 +9,7 @@ export const basic = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ colorScheme: 'd3Category10', vizType: 'box_plot', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/stories/basic.tsx index cd80d81c07..268371f64f 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/stories/basic.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/stories/basic.tsx @@ -9,7 +9,7 @@ export const basic = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ annotationData: {}, bottomMargin: 'auto', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/stories/basic.tsx index c8dfbdf665..1c16d54781 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/stories/basic.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/stories/basic.tsx @@ -9,7 +9,7 @@ export const basic = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ markerLabels: '', markerLineLabels: '', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/stories/basic.tsx index af556e17f7..ffda3e1da1 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/stories/basic.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/stories/basic.tsx @@ -9,7 +9,7 @@ export const basic = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ bottomMargin: 'auto', colorScheme: 'd3Category10', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/stories/timeFormat.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/stories/timeFormat.tsx index 0beca1d984..c20795e2c7 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/stories/timeFormat.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/stories/timeFormat.tsx @@ -8,184 +8,186 @@ export const timeFormat = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ - data: [ - { - key: ['Africa and Middle East'], - values: [ - { - x: 1606348800000, - y: 3985, - }, - { - x: 1606435200000, - y: 5882, - }, - { - x: 1606521600000, - y: 7983, - }, - { - x: 1606608000000, - y: 16462, - }, - { - x: 1606694400000, - y: 5542, - }, - { - x: 1606780800000, - y: 2825, - }, - ], - }, - { - key: ['Asia'], - values: [ - { - x: 1606348800000, - y: 34837, - }, - { - x: 1606435200000, - y: 40718, - }, - { - x: 1606521600000, - y: 58507, - }, - { - x: 1606608000000, - y: 110120, - }, - { - x: 1606694400000, - y: 43443, - }, - { - x: 1606780800000, - y: 33538, - }, - ], - }, - { - key: ['Australia'], - values: [ - { - x: 1606348800000, - y: 12975, - }, - { - x: 1606435200000, - y: 18471, - }, - { - x: 1606521600000, - y: 17880, - }, - { - x: 1606608000000, - y: 52204, - }, - { - x: 1606694400000, - y: 26690, - }, - { - x: 1606780800000, - y: 16423, - }, - ], - }, - { - key: ['Europe'], - values: [ - { - x: 1606348800000, - y: 127029, - }, - { - x: 1606435200000, - y: 177637, - }, - { - x: 1606521600000, - y: 172653, - }, - { - x: 1606608000000, - y: 203654, - }, - { - x: 1606694400000, - y: 79200, - }, - { - x: 1606780800000, - y: 45238, - }, - ], - }, - { - key: ['LatAm'], - values: [ - { - x: 1606348800000, - y: 22513, - }, - { - x: 1606435200000, - y: 24594, - }, - { - x: 1606521600000, - y: 32578, - }, - { - x: 1606608000000, - y: 34733, - }, - { - x: 1606694400000, - y: 71696, - }, - { - x: 1606780800000, - y: 166611, - }, - ], - }, - { - key: ['North America'], - values: [ - { - x: 1606348800000, - y: 104596, - }, - { - x: 1606435200000, - y: 109850, - }, - { - x: 1606521600000, - y: 136873, - }, - { - x: 1606608000000, - y: 133243, - }, - { - x: 1606694400000, - y: 327739, - }, - { - x: 1606780800000, - y: 162711, - }, - ], - }, - ], - }} + queriesData={[ + { + data: [ + { + key: ['Africa and Middle East'], + values: [ + { + x: 1606348800000, + y: 3985, + }, + { + x: 1606435200000, + y: 5882, + }, + { + x: 1606521600000, + y: 7983, + }, + { + x: 1606608000000, + y: 16462, + }, + { + x: 1606694400000, + y: 5542, + }, + { + x: 1606780800000, + y: 2825, + }, + ], + }, + { + key: ['Asia'], + values: [ + { + x: 1606348800000, + y: 34837, + }, + { + x: 1606435200000, + y: 40718, + }, + { + x: 1606521600000, + y: 58507, + }, + { + x: 1606608000000, + y: 110120, + }, + { + x: 1606694400000, + y: 43443, + }, + { + x: 1606780800000, + y: 33538, + }, + ], + }, + { + key: ['Australia'], + values: [ + { + x: 1606348800000, + y: 12975, + }, + { + x: 1606435200000, + y: 18471, + }, + { + x: 1606521600000, + y: 17880, + }, + { + x: 1606608000000, + y: 52204, + }, + { + x: 1606694400000, + y: 26690, + }, + { + x: 1606780800000, + y: 16423, + }, + ], + }, + { + key: ['Europe'], + values: [ + { + x: 1606348800000, + y: 127029, + }, + { + x: 1606435200000, + y: 177637, + }, + { + x: 1606521600000, + y: 172653, + }, + { + x: 1606608000000, + y: 203654, + }, + { + x: 1606694400000, + y: 79200, + }, + { + x: 1606780800000, + y: 45238, + }, + ], + }, + { + key: ['LatAm'], + values: [ + { + x: 1606348800000, + y: 22513, + }, + { + x: 1606435200000, + y: 24594, + }, + { + x: 1606521600000, + y: 32578, + }, + { + x: 1606608000000, + y: 34733, + }, + { + x: 1606694400000, + y: 71696, + }, + { + x: 1606780800000, + y: 166611, + }, + ], + }, + { + key: ['North America'], + values: [ + { + x: 1606348800000, + y: 104596, + }, + { + x: 1606435200000, + y: 109850, + }, + { + x: 1606521600000, + y: 136873, + }, + { + x: 1606608000000, + y: 133243, + }, + { + x: 1606694400000, + y: 327739, + }, + { + x: 1606780800000, + y: 162711, + }, + ], + }, + ], + }, + ]} formData={{ datasource: '24771__table', vizType: 'compare', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/stories/basic.tsx index 078c57a17b..9f7fe05461 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/stories/basic.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/stories/basic.tsx @@ -9,7 +9,7 @@ export const basic = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ barstacked: false, bottomMargin: 'auto', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/stories/manyBars.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/stories/manyBars.tsx index 87df80aa8d..5f804e3bbc 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/stories/manyBars.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/stories/manyBars.tsx @@ -25,7 +25,7 @@ export const manyBars = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ colorScheme: 'd3Category10', showBarValue: false, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/stories/basic.tsx index 6f08b24a8d..f4d0dd8f52 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/stories/basic.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/stories/basic.tsx @@ -9,7 +9,7 @@ export const basic = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ colorScheme: 'd3Category10', vizType: 'dual_line', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/stories/verifyConsistentColors.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/stories/verifyConsistentColors.tsx index ce2ff22a87..66a50ec21b 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/stories/verifyConsistentColors.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/stories/verifyConsistentColors.tsx @@ -15,7 +15,7 @@ export const verifyConsistentColors = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ colorScheme: 'd3Category10', vizType: 'dual_line', @@ -29,7 +29,7 @@ export const verifyConsistentColors = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data: reverseData }} + queriesData={[{ data: reverseData }]} formData={{ colorScheme: 'd3Category10', vizType: 'dual_line', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/basic.tsx index 14afae0d83..61b8cec043 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/basic.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/basic.tsx @@ -9,7 +9,7 @@ export const basic = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ bottomMargin: 'auto', colorScheme: 'd3Category10', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/logScale.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/logScale.tsx index eb355dc6bc..698966d44a 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/logScale.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/logScale.tsx @@ -9,7 +9,7 @@ export const logScale = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ richTooltip: true, vizType: 'line', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/markers.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/markers.tsx index e06a3073c0..ff5d5f77e4 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/markers.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/markers.tsx @@ -9,7 +9,7 @@ export const markers = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ bottomMargin: 'auto', colorScheme: 'd3Category10', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/yAxisBounds.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/yAxisBounds.tsx index 72a9d8efe7..0d826074fd 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/yAxisBounds.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/yAxisBounds.tsx @@ -12,7 +12,7 @@ export const yAxisBounds = () => ( width={400} height={200} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ richTooltip: true, showLegend: false, @@ -25,7 +25,7 @@ export const yAxisBounds = () => ( width={400} height={200} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ richTooltip: true, showLegend: false, @@ -39,7 +39,7 @@ export const yAxisBounds = () => ( width={400} height={200} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ richTooltip: true, showLegend: false, @@ -53,7 +53,7 @@ export const yAxisBounds = () => ( width={400} height={200} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ richTooltip: true, showLegend: false, @@ -67,7 +67,7 @@ export const yAxisBounds = () => ( width={400} height={200} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ richTooltip: true, showLegend: true, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/stories/basic.tsx index ae153517f3..69717eb6a6 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/stories/basic.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/stories/basic.tsx @@ -9,7 +9,7 @@ export const basic = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ colorScheme: 'd3Category10', donut: false, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/stories/noData.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/stories/noData.tsx index 28fd4893e8..205212d913 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/stories/noData.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/stories/noData.tsx @@ -8,7 +8,7 @@ export const noData = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data: [] }} + queriesData={[{ data: [] }]} formData={{ colorScheme: 'd3Category10', donut: false, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-choropleth-map/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-choropleth-map/Stories.tsx index e8ba3192cf..81f86ad504 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-choropleth-map/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-choropleth-map/Stories.tsx @@ -24,7 +24,7 @@ export const WorldMap = () => { chartType="choropleth-map" width={800} height={450} - queryData={{ data: useFakeMapData(map) }} + queriesData={[{ data: useFakeMapData(map) }]} formData={{ map, encoding: { @@ -50,7 +50,7 @@ export const USA = () => ( chartType="choropleth-map" width={800} height={450} - queryData={{ data: useFakeMapData('usa') }} + queriesData={[{ data: useFakeMapData('usa') }]} formData={{ map: 'usa', encoding: { @@ -82,7 +82,7 @@ export const CategoricalColor = () => ( chartType="choropleth-map" width={800} height={450} - queryData={{ data: useFakeMapData('usa') }} + queriesData={[{ data: useFakeMapData('usa') }]} formData={{ map: 'usa', encoding: { diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/BoxPlot/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/BoxPlot/Stories.tsx index b3e2bf8881..5890aebaee 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/BoxPlot/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/BoxPlot/Stories.tsx @@ -21,7 +21,7 @@ export const BoxPlot = ({ width, height }) => { chartType="echarts-boxplot" width={width} height={height} - queryData={{ data }} + queriesData={[{ data }]} formData={{ columns: [], groupby: ['type', 'region'], diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Pie/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Pie/Stories.tsx index e7972de08d..de59561d2d 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Pie/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Pie/Stories.tsx @@ -21,7 +21,7 @@ export const WeekdayPie = ({ width, height }) => { chartType="echarts-pie" width={width} height={height} - queryData={{ data: weekday }} + queriesData={[{ data: weekday }]} formData={{ colorScheme: 'supersetColors', groupby: ['Day'], @@ -50,7 +50,7 @@ export const PopulationPie = ({ width, height }) => { chartType="echarts-pie" width={width} height={height} - queryData={{ data: population }} + queriesData={[{ data: population }]} formData={{ colorScheme: 'supersetColors', groupby: ['Country'], diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Timeseries/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Timeseries/Stories.tsx index e74f7f820b..82c8c6c2b8 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Timeseries/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Timeseries/Stories.tsx @@ -35,7 +35,7 @@ export const Timeseries = ({ width, height }) => { chartType="echarts-timeseries" width={width} height={height} - queryData={{ data: queryData }} + queriesData={[{ data: queryData }]} formData={{ contributionMode: undefined, forecastEnabled, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/TableStories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/TableStories.tsx index c999fb1598..abb7fc5290 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/TableStories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/TableStories.tsx @@ -40,18 +40,20 @@ function loadData( props: TableChartProps, { pageLength = 50, rows = 1042, cols = 8, alignPn = false, showCellBars = true }, ): TableChartProps { - if (!props.queryData) return props; - const records = props.queryData?.data?.records || []; - const columns = props.queryData?.data?.columns || []; + if (!props.queriesData || !props.queriesData[0]) return props; + const records = props.queriesData?.[0].data?.records || []; + const columns = props.queriesData?.[0].data?.columns || []; return { ...props, - queryData: { - ...props.queryData, - data: { - records: expandRecords(records, rows), - columns: expandColumns(columns, cols), + queriesData: [ + { + ...props.queriesData[0], + data: { + records: expandRecords(records, rows), + columns: expandColumns(columns, cols), + }, }, - }, + ], formData: { ...props.formData, alignPn, @@ -70,7 +72,7 @@ export const basic = ({ width, height }) => ( }} width={width} height={height} - queryData={{ data: basicData }} + queriesData={[{ data: basicData }]} formData={basicFormData} /> ); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/birthNames.json b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/birthNames.json index dc2f427918..261771ddb9 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/birthNames.json +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/birthNames.json @@ -330,27 +330,107 @@ "show_cell_bars": true }, "hooks": {}, - "queryData": { - "cache_key": null, - "cached_dttm": null, - "cache_timeout": 86400, - "errors": [], - "form_data": { - "queryFields": { - "groupby": "groupby", - "metrics": "metrics" - }, - "datasource": "3__table", - "viz_type": "table", - "slice_id": 129, - "url_params": {}, - "time_range_endpoints": ["inclusive", "exclusive"], - "granularity_sqla": "ds", - "time_grain_sqla": "P1Y", - "time_range": "100 years ago : now", - "groupby": ["state", "gender", "name"], - "metrics": [ - { + "queriesData": [ + { + "cache_key": null, + "cached_dttm": null, + "cache_timeout": 86400, + "errors": [], + "form_data": { + "queryFields": { + "groupby": "groupby", + "metrics": "metrics" + }, + "datasource": "3__table", + "viz_type": "table", + "slice_id": 129, + "url_params": {}, + "time_range_endpoints": ["inclusive", "exclusive"], + "granularity_sqla": "ds", + "time_grain_sqla": "P1Y", + "time_range": "100 years ago : now", + "groupby": ["state", "gender", "name"], + "metrics": [ + { + "expressionType": "SIMPLE", + "column": { + "id": 336, + "column_name": "num", + "verbose_name": null, + "description": null, + "expression": null, + "filterable": true, + "groupby": true, + "is_dttm": false, + "type": "BIGINT", + "python_date_format": null, + "optionName": "_col_num" + }, + "aggregate": "SUM", + "sqlExpression": null, + "isNew": false, + "hasCustomLabel": true, + "label": "total", + "optionName": "metric_ceklfciof9_18hzc8bp0ce" + }, + { + "expressionType": "SIMPLE", + "column": { + "id": 338, + "column_name": "sum_boys", + "verbose_name": null, + "description": null, + "expression": null, + "filterable": true, + "groupby": true, + "is_dttm": false, + "type": "BIGINT", + "python_date_format": null, + "optionName": "_col_sum_boys" + }, + "aggregate": "SUM", + "sqlExpression": null, + "isNew": false, + "hasCustomLabel": true, + "label": "boys", + "optionName": "metric_7fbu3cczp8v_5iis6jw6y6q" + }, + { + "expressionType": "SIMPLE", + "column": { + "id": 332, + "column_name": "num_california", + "verbose_name": null, + "description": null, + "expression": "CASE WHEN state = 'CA' THEN num ELSE 0 END", + "filterable": true, + "groupby": true, + "is_dttm": false, + "type": null, + "python_date_format": null, + "optionName": "_col_num_california" + }, + "aggregate": "SUM", + "sqlExpression": null, + "isNew": false, + "hasCustomLabel": false, + "label": "SUM(num_california)", + "optionName": "metric_hfrrbtc3yp_xp41ve156tk" + } + ], + "percent_metrics": [ + { + "expressionType": "SQL", + "sqlExpression": "SUM(sum_boys)/SUM(num)", + "column": null, + "aggregate": null, + "isNew": false, + "hasCustomLabel": true, + "label": "pct_boys", + "optionName": "metric_udmrat32na9_pfwyhxcbncn" + } + ], + "timeseries_limit_metric": { "expressionType": "SIMPLE", "column": { "id": 336, @@ -368,20127 +448,20049 @@ "aggregate": "SUM", "sqlExpression": null, "isNew": false, - "hasCustomLabel": true, - "label": "total", - "optionName": "metric_ceklfciof9_18hzc8bp0ce" - }, - { - "expressionType": "SIMPLE", - "column": { - "id": 338, - "column_name": "sum_boys", - "verbose_name": null, - "description": null, - "expression": null, - "filterable": true, - "groupby": true, - "is_dttm": false, - "type": "BIGINT", - "python_date_format": null, - "optionName": "_col_sum_boys" - }, - "aggregate": "SUM", - "sqlExpression": null, - "isNew": false, - "hasCustomLabel": true, - "label": "boys", - "optionName": "metric_7fbu3cczp8v_5iis6jw6y6q" - }, - { - "expressionType": "SIMPLE", - "column": { - "id": 332, - "column_name": "num_california", - "verbose_name": null, - "description": null, - "expression": "CASE WHEN state = 'CA' THEN num ELSE 0 END", - "filterable": true, - "groupby": true, - "is_dttm": false, - "type": null, - "python_date_format": null, - "optionName": "_col_num_california" - }, - "aggregate": "SUM", - "sqlExpression": null, - "isNew": false, "hasCustomLabel": false, - "label": "SUM(num_california)", - "optionName": "metric_hfrrbtc3yp_xp41ve156tk" - } - ], - "percent_metrics": [ - { - "expressionType": "SQL", - "sqlExpression": "SUM(sum_boys)/SUM(num)", - "column": null, - "aggregate": null, - "isNew": false, - "hasCustomLabel": true, - "label": "pct_boys", - "optionName": "metric_udmrat32na9_pfwyhxcbncn" - } - ], - "timeseries_limit_metric": { - "expressionType": "SIMPLE", - "column": { - "id": 336, - "column_name": "num", - "verbose_name": null, - "description": null, - "expression": null, - "filterable": true, - "groupby": true, - "is_dttm": false, - "type": "BIGINT", - "python_date_format": null, - "optionName": "_col_num" + "label": "SUM(num)", + "optionName": "metric_qabff4vbvk_d09lze4ckfg" }, - "aggregate": "SUM", - "sqlExpression": null, - "isNew": false, - "hasCustomLabel": false, - "label": "SUM(num)", - "optionName": "metric_qabff4vbvk_d09lze4ckfg" + "row_limit": "2000", + "include_time": true, + "order_desc": true, + "all_columns": [], + "order_by_cols": [], + "adhoc_filters": [], + "table_timestamp_format": "%Y-%m-%d", + "page_length": 100, + "include_search": true, + "table_filter": true, + "align_pn": true, + "color_pn": true, + "show_cell_bars": true, + "where": "", + "having": "", + "having_filters": [], + "filters": [] }, - "row_limit": "2000", - "include_time": true, - "order_desc": true, - "all_columns": [], - "order_by_cols": [], - "adhoc_filters": [], - "table_timestamp_format": "%Y-%m-%d", - "page_length": 100, - "include_search": true, - "table_filter": true, - "align_pn": true, - "color_pn": true, - "show_cell_bars": true, - "where": "", - "having": "", - "having_filters": [], - "filters": [] - }, - "is_cached": false, - "query": "SELECT gender AS gender,\n state AS state,\n name AS name,\n DATE_TRUNC('year', ds) AS __timestamp,\n sum(num) AS total,\n sum(sum_boys) AS boys,\n sum(CASE\n WHEN state = 'CA' THEN num\n ELSE 0\n END) AS \"SUM(num_california)\",\n SUM(sum_boys)/SUM(num) AS pct_boys,\n sum(num) AS \"SUM(num)\"\nFROM birth_names\nWHERE ds >= '1920-06-06 00:00:00.000000'\n AND ds < '2020-06-06 13:06:05.000000'\nGROUP BY gender,\n state,\n name,\n DATE_TRUNC('year', ds)\nORDER BY \"SUM(num)\" DESC\nLIMIT 2000", - "from_dttm": "1920-06-06T00:00:00", - "to_dttm": "2020-06-06T13:06:05", - "status": "success", - "stacktrace": null, - "rowcount": 2000, - "data": { - "records": [ - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 37296, - "boys": 37296, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "", - "total": 37112, - "boys": 37112, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "Styled Text", - "gender": "boy", - "name": "Michael", - "total": 35371, - "boys": 35371, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": -35253, - "boys": 35253, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "", - "total": 34443, - "boys": 34443, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "MichaelWhoHasALongName", - "total": -33998, - "boys": 33998, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 33646, - "boys": 33646, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 32349, - "boys": 32349, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 32077, - "boys": 32077, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 31019, - "boys": 31019, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 30392, - "boys": 30392, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 30176, - "boys": 30176, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 30128, - "boys": 30128, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 30096, - "boys": 30096, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 29941, - "boys": 29941, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 29889, - "boys": 29889, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 29709, - "boys": 29709, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 29667, - "boys": 29667, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 29612, - "boys": 29612, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 29402, - "boys": 29402, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 29402, - "boys": 29402, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 29352, - "boys": 29352, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 29327, - "boys": 29327, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 29233, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 29210, - "boys": 29210, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 29168, - "boys": 29168, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 29124, - "boys": 29124, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 29004, - "boys": 29004, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 28995, - "boys": 28995, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 28855, - "boys": 28855, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 28718, - "boys": 28718, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 28641, - "boys": 28641, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 28467, - "boys": 28467, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 28422, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 28398, - "boys": 28398, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lisa", - "total": 28210, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 28098, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 28078, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 28038, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 27990, - "boys": 27990, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 27923, - "boys": 27923, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 27785, - "boys": 27785, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jason", - "total": 27646, - "boys": 27646, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 27592, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Ashley", - "total": 27485, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jason", - "total": 27213, - "boys": 27213, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 27197, - "boys": 27197, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 27145, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 27043, - "boys": 27043, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 27043, - "boys": 27043, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 26983, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 26856, - "boys": 26856, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 26757, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 26727, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 26602, - "boys": 26602, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 26584, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 26506, - "boys": 26506, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jason", - "total": 26404, - "boys": 26404, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jason", - "total": 26246, - "boys": 26246, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 26245, - "boys": 26245, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lisa", - "total": 26187, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 26031, - "boys": 26031, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 25977, - "boys": 25977, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 25961, - "boys": 25961, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 25906, - "boys": 25906, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 25855, - "boys": 25855, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 25802, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 25780, - "boys": 25780, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Ashley", - "total": 25645, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jason", - "total": 25611, - "boys": 25611, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 25588, - "boys": 25588, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 25420, - "boys": 25420, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 25285, - "boys": 25285, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 25079, - "boys": 25079, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 25049, - "boys": 25049, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jason", - "total": 25001, - "boys": 25001, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 24844, - "boys": 24844, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Ashley", - "total": 24838, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 24814, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Ashley", - "total": 24756, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 24721, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 24672, - "boys": 24672, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 24565, - "boys": 24565, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 24540, - "boys": 24540, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 24487, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 24440, - "boys": 24440, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 24432, - "boys": 24432, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 24422, - "boys": 24422, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 24378, - "boys": 24378, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 24228, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 24197, - "boys": 24197, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 24188, - "boys": 24188, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 24124, - "boys": 24124, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 24006, - "boys": 24006, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 23891, - "boys": 23891, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 23823, - "boys": 23823, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 23764, - "boys": 23764, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 23719, - "boys": 23719, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jason", - "total": 23710, - "boys": 23710, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lisa", - "total": 23705, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 23698, - "boys": 23698, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 23652, - "boys": 23652, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 23570, - "boys": 23570, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 23481, - "boys": 23481, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jason", - "total": 23441, - "boys": 23441, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 23265, - "boys": 23265, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Ashley", - "total": 23002, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 22988, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 22802, - "boys": 22802, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 22795, - "boys": 22795, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 22793, - "boys": 22793, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 22727, - "boys": 22727, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 22654, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lisa", - "total": 22645, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 22461, - "boys": 22461, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 22314, - "boys": 22314, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 22303, - "boys": 22303, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 22246, - "boys": 22246, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 22180, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 22137, - "boys": 22137, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 22105, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 22094, - "boys": 22094, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 22056, - "boys": 22056, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 21875, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Ashley", - "total": 21857, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 21776, - "boys": 21776, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 21764, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 21651, - "boys": 21651, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 21621, - "boys": 21621, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 21274, - "boys": 21274, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Ashley", - "total": 21261, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 21186, - "boys": 21186, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 21153, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 21111, - "boys": 21111, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 21047, - "boys": 21047, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 20941, - "boys": 20941, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Ashley", - "total": 20915, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 20861, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 20833, - "boys": 20833, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 20800, - "boys": 20800, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 20770, - "boys": 20770, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 20644, - "boys": 20644, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amanda", - "total": 20625, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 20503, - "boys": 20503, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 20378, - "boys": 20378, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 20338, - "boys": 20338, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 20306, - "boys": 20306, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 20287, - "boys": 20287, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 20259, - "boys": 20259, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Brittany", - "total": 20236, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lisa", - "total": 20218, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 20155, - "boys": 20155, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jason", - "total": 20076, - "boys": 20076, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 20066, - "boys": 20066, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 20024, - "boys": 20024, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 19891, - "boys": 19891, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amanda", - "total": 19697, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 19677, - "boys": 19677, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 19608, - "boys": 19608, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amanda", - "total": 19571, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amanda", - "total": 19506, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 19492, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 19483, - "boys": 19483, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 19414, - "boys": 19414, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 19360, - "boys": 19360, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 19318, - "boys": 19318, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Brittany", - "total": 19303, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amanda", - "total": 19268, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jason", - "total": 19194, - "boys": 19194, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 19066, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 19053, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 18985, - "boys": 18985, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 18981, - "boys": 18981, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Ashley", - "total": 18884, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 18762, - "boys": 18762, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 18761, - "boys": 18761, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 18759, - "boys": 18759, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 18747, - "boys": 18747, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amanda", - "total": 18734, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 18666, - "boys": 18666, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 18631, - "boys": 18631, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jason", - "total": 18551, - "boys": 18551, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 18460, - "boys": 18460, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amanda", - "total": 18449, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 18331, - "boys": 18331, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 18277, - "boys": 18277, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amanda", - "total": 18274, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 18243, - "boys": 18243, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 18154, - "boys": 18154, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 18145, - "boys": 18145, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 18125, - "boys": 18125, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 18100, - "boys": 18100, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Ashley", - "total": 18049, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 18045, - "boys": 18045, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 18027, - "boys": 18027, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amanda", - "total": 18017, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amanda", - "total": 18008, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 18006, - "boys": 18006, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 17948, - "boys": 17948, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 17813, - "boys": 17813, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 17770, - "boys": 17770, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 17764, - "boys": 17764, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 17763, - "boys": 17763, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 17646, - "boys": 17646, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 17643, - "boys": 17643, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 17606, - "boys": 17606, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 17504, - "boys": 17504, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lisa", - "total": 17461, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 17438, - "boys": 17438, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 17437, - "boys": 17437, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 17415, - "boys": 17415, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 17380, - "boys": 17380, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 17340, - "boys": 17340, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Mark", - "total": 17312, - "boys": 17312, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 17299, - "boys": 17299, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 17272, - "boys": 17272, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 17114, - "boys": 17114, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 17029, - "boys": 17029, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 16945, - "boys": 16945, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 16941, - "boys": 16941, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 16898, - "boys": 16898, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jason", - "total": 16877, - "boys": 16877, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amy", - "total": 16818, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 16812, - "boys": 16812, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 16795, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 16791, - "boys": 16791, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 16791, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 16732, - "boys": 16732, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 16687, - "boys": 16687, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 16676, - "boys": 16676, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 16627, - "boys": 16627, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 16607, - "boys": 16607, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 16600, - "boys": 16600, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 16591, - "boys": 16591, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 16563, - "boys": 16563, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 16534, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amanda", - "total": 16531, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 16524, - "boys": 16524, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 16488, - "boys": 16488, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 16437, - "boys": 16437, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 16368, - "boys": 16368, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amy", - "total": 16364, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 16346, - "boys": 16346, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Ashley", - "total": 16339, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Mary", - "total": 16292, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Mark", - "total": 16266, - "boys": 16266, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 16248, - "boys": 16248, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jason", - "total": 16246, - "boys": 16246, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 16196, - "boys": 16196, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 16194, - "boys": 16194, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 16189, - "boys": 16189, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 16166, - "boys": 16166, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 16157, - "boys": 16157, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 16062, - "boys": 16062, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 16033, - "boys": 16033, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 15969, - "boys": 15969, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 15942, - "boys": 15942, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 15927, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 15894, - "boys": 15894, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 15881, - "boys": 15881, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 15859, - "boys": 15859, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 15828, - "boys": 15828, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 15807, - "boys": 15807, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 15786, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 15778, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 15769, - "boys": 15769, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 15759, - "boys": 15759, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Mark", - "total": 15722, - "boys": 15722, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Mark", - "total": 15711, - "boys": 15711, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 15682, - "boys": 15682, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 15660, - "boys": 15660, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Angela", - "total": 15563, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 15556, - "boys": 15556, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 15550, - "boys": 15550, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 15547, - "boys": 15547, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 15518, - "boys": 15518, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 15513, - "boys": 15513, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 15502, - "boys": 15502, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 15486, - "boys": 15486, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 15446, - "boys": 15446, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 15434, - "boys": 15434, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 15425, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 15397, - "boys": 15397, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 15386, - "boys": 15386, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 15382, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Mark", - "total": 15361, - "boys": 15361, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 15361, - "boys": 15361, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 15317, - "boys": 15317, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 15297, - "boys": 15297, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 15295, - "boys": 15295, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 15293, - "boys": 15293, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Michelle", - "total": 15274, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amy", - "total": 15272, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 15268, - "boys": 15268, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 15268, - "boys": 15268, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 15262, - "boys": 15262, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 15252, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 15234, - "boys": 15234, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 15228, - "boys": 15228, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 15217, - "boys": 15217, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 15217, - "boys": 15217, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 15193, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Richard", - "total": 15138, - "boys": 15138, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amanda", - "total": 15110, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Brittany", - "total": 15095, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 15094, - "boys": 15094, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 15065, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 15063, - "boys": 15063, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Michelle", - "total": 15055, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 14988, - "boys": 14988, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 14986, - "boys": 14986, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 14969, - "boys": 14969, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 14956, - "boys": 14956, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Angela", - "total": 14936, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 14920, - "boys": 14920, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 14914, - "boys": 14914, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 14897, - "boys": 14897, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lisa", - "total": 14864, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 14819, - "boys": 14819, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 14813, - "boys": 14813, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 14810, - "boys": 14810, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 14800, - "boys": 14800, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Austin", - "total": 14779, - "boys": 14779, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 14753, - "boys": 14753, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 14747, - "boys": 14747, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 14720, - "boys": 14720, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Michelle", - "total": 14695, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 14657, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 14626, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 14591, - "boys": 14591, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Austin", - "total": 14582, - "boys": 14582, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 14578, - "boys": 14578, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 14571, - "boys": 14571, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 14510, - "boys": 14510, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Michelle", - "total": 14491, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Angela", - "total": 14465, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 14464, - "boys": 14464, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Mark", - "total": 14434, - "boys": 14434, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 14427, - "boys": 14427, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Karen", - "total": 14427, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 14406, - "boys": 14406, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 14405, - "boys": 14405, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 14398, - "boys": 14398, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amy", - "total": 14378, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 14344, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 14324, - "boys": 14324, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 14299, - "boys": 14299, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeffrey", - "total": 14252, - "boys": 14252, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 14243, - "boys": 14243, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Austin", - "total": 14238, - "boys": 14238, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 14234, - "boys": 14234, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 14214, - "boys": 14214, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 14213, - "boys": 14213, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 14178, - "boys": 14178, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 14175, - "boys": 14175, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 14169, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 14139, - "boys": 14139, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 14131, - "boys": 14131, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeffrey", - "total": 14126, - "boys": 14126, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 14106, - "boys": 14106, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 14104, - "boys": 14104, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 14080, - "boys": 14080, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 14067, - "boys": 14067, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 14064, - "boys": 14064, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeffrey", - "total": 14025, - "boys": 14025, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 14023, - "boys": 14023, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Richard", - "total": 14013, - "boys": 14013, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Richard", - "total": 13990, - "boys": 13990, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 13976, - "boys": 13976, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Brittany", - "total": 13957, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 13956, - "boys": 13956, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 13944, - "boys": 13944, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 13940, - "boys": 13940, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 13928, - "boys": 13928, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 13928, - "boys": 13928, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 13923, - "boys": 13923, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 13915, - "boys": 13915, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Angela", - "total": 13907, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 13898, - "boys": 13898, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 13896, - "boys": 13896, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Ashley", - "total": 13874, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 13850, - "boys": 13850, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Richard", - "total": 13827, - "boys": 13827, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 13826, - "boys": 13826, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 13826, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jason", - "total": 13818, - "boys": 13818, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 13815, - "boys": 13815, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 13790, - "boys": 13790, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Mary", - "total": 13787, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amy", - "total": 13777, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 13772, - "boys": 13772, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 13732, - "boys": 13732, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 13725, - "boys": 13725, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 13714, - "boys": 13714, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Angela", - "total": 13707, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 13702, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Austin", - "total": 13689, - "boys": 13689, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 13682, - "boys": 13682, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 13671, - "boys": 13671, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 13667, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 13662, - "boys": 13662, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeffrey", - "total": 13660, - "boys": 13660, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 13657, - "boys": 13657, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 13628, - "boys": 13628, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 13626, - "boys": 13626, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 13625, - "boys": 13625, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 13624, - "boys": 13624, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 13619, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 13615, - "boys": 13615, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 13606, - "boys": 13606, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Scott", - "total": 13603, - "boys": 13603, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 13595, - "boys": 13595, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 13573, - "boys": 13573, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 13571, - "boys": 13571, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 13562, - "boys": 13562, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 13540, - "boys": 13540, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 13520, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 13513, - "boys": 13513, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 13494, - "boys": 13494, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 13471, - "boys": 13471, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeffrey", - "total": 13468, - "boys": 13468, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 13460, - "boys": 13460, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Austin", - "total": 13447, - "boys": 13447, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 13434, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 13433, - "boys": 13433, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 13430, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 13410, - "boys": 13410, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 13395, - "boys": 13395, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 13383, - "boys": 13383, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 13374, - "boys": 13374, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 13370, - "boys": 13370, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 13341, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 13327, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 13300, - "boys": 13300, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 13288, - "boys": 13288, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeffrey", - "total": 13285, - "boys": 13285, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 13232, - "boys": 13232, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 13198, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 13195, - "boys": 13195, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 13153, - "boys": 13153, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 13143, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 13130, - "boys": 13130, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 13128, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 13111, - "boys": 13111, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 13089, - "boys": 13089, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 13085, - "boys": 13085, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 13082, - "boys": 13082, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Zachary", - "total": 13078, - "boys": 13078, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amy", - "total": 13071, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 13055, - "boys": 13055, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 13053, - "boys": 13053, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 13042, - "boys": 13042, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 13041, - "boys": 13041, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amy", - "total": 13037, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Michelle", - "total": 13032, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 13029, - "boys": 13029, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 13021, - "boys": 13021, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jason", - "total": 13005, - "boys": 13005, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 12983, - "boys": 12983, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 12980, - "boys": 12980, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 12975, - "boys": 12975, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Michelle", - "total": 12966, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Brittany", - "total": 12956, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 12955, - "boys": 12955, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 12953, - "boys": 12953, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 12948, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 12938, - "boys": 12938, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 12931, - "boys": 12931, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 12924, - "boys": 12924, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 12918, - "boys": 12918, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Richard", - "total": 12879, - "boys": 12879, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Richard", - "total": 12869, - "boys": 12869, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Angela", - "total": 12869, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 12839, - "boys": 12839, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Zachary", - "total": 12832, - "boys": 12832, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 12830, - "boys": 12830, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 12829, - "boys": 12829, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 12829, - "boys": 12829, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 12826, - "boys": 12826, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Zachary", - "total": 12818, - "boys": 12818, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 12815, - "boys": 12815, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 12813, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 12806, - "boys": 12806, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 12800, - "boys": 12800, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 12799, - "boys": 12799, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Angela", - "total": 12797, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 12794, - "boys": 12794, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 12770, - "boys": 12770, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 12769, - "boys": 12769, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Angela", - "total": 12741, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amanda", - "total": 12720, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 12714, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 12713, - "boys": 12713, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 12683, - "boys": 12683, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 12672, - "boys": 12672, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeremy", - "total": 12653, - "boys": 12653, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 12648, - "boys": 12648, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 12647, - "boys": 12647, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 12646, - "boys": 12646, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 12643, - "boys": 12643, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 12622, - "boys": 12622, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 12596, - "boys": 12596, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Angela", - "total": 12586, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 12572, - "boys": 12572, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Scott", - "total": 12568, - "boys": 12568, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 12544, - "boys": 12544, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Scott", - "total": 12542, - "boys": 12542, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 12527, - "boys": 12527, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Hannah", - "total": 12523, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 12509, - "boys": 12509, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 12462, - "boys": 12462, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeremy", - "total": 12457, - "boys": 12457, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 12428, - "boys": 12428, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 12427, - "boys": 12427, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 12423, - "boys": 12423, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 12420, - "boys": 12420, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 12395, - "boys": 12395, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 12394, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 12386, - "boys": 12386, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 12363, - "boys": 12363, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Heather", - "total": 12362, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lisa", - "total": 12353, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Heather", - "total": 12329, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amy", - "total": 12321, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amy", - "total": 12316, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 12306, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 12298, - "boys": 12298, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 12285, - "boys": 12285, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 12282, - "boys": 12282, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 12279, - "boys": 12279, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 12270, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 12261, - "boys": 12261, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 12248, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Mary", - "total": 12241, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 12230, - "boys": 12230, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 12228, - "boys": 12228, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 12216, - "boys": 12216, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 12207, - "boys": 12207, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 12201, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 12195, - "boys": 12195, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 12192, - "boys": 12192, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 12179, - "boys": 12179, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeffrey", - "total": 12176, - "boys": 12176, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Heather", - "total": 12173, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 12158, - "boys": 12158, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 12158, - "boys": 12158, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 12153, - "boys": 12153, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 12143, - "boys": 12143, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 12135, - "boys": 12135, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 12123, - "boys": 12123, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 12122, - "boys": 12122, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 12120, - "boys": 12120, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 12114, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 12112, - "boys": 12112, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 12106, - "boys": 12106, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Angela", - "total": 12104, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 12095, - "boys": 12095, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Michelle", - "total": 12089, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 12088, - "boys": 12088, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 12070, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Austin", - "total": 12066, - "boys": 12066, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 12065, - "boys": 12065, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 12058, - "boys": 12058, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Adam", - "total": 12048, - "boys": 12048, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 12043, - "boys": 12043, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 12040, - "boys": 12040, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 12036, - "boys": 12036, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 12014, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 12005, - "boys": 12005, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 11988, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 11968, - "boys": 11968, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emma", - "total": 11968, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Angela", - "total": 11965, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 11955, - "boys": 11955, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Hannah", - "total": 11953, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 11939, - "boys": 11939, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 11931, - "boys": 11931, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 11929, - "boys": 11929, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 11914, - "boys": 11914, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 11903, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Ashley", - "total": 11892, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 11889, - "boys": 11889, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jason", - "total": 11882, - "boys": 11882, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 11882, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 11877, - "boys": 11877, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 11876, - "boys": 11876, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 11859, - "boys": 11859, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Adam", - "total": 11857, - "boys": 11857, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 11856, - "boys": 11856, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 11849, - "boys": 11849, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Hannah", - "total": 11831, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 11830, - "boys": 11830, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 11828, - "boys": 11828, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 11815, - "boys": 11815, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 11806, - "boys": 11806, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 11788, - "boys": 11788, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Brittany", - "total": 11787, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 11777, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 11773, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Madison", - "total": 11766, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 11765, - "boys": 11765, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 11759, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 11753, - "boys": 11753, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 11740, - "boys": 11740, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 11739, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 11734, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Zachary", - "total": 11733, - "boys": 11733, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeremy", - "total": 11732, - "boys": 11732, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 11718, - "boys": 11718, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ethan", - "total": 11711, - "boys": 11711, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Madison", - "total": 11699, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 11688, - "boys": 11688, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 11676, - "boys": 11676, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 11675, - "boys": 11675, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 11669, - "boys": 11669, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 11638, - "boys": 11638, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 11633, - "boys": 11633, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 11630, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 11628, - "boys": 11628, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 11624, - "boys": 11624, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amanda", - "total": 11616, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 11614, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 11613, - "boys": 11613, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 11609, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 11605, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 11591, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 11585, - "boys": 11585, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 11578, - "boys": 11578, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 11553, - "boys": 11553, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeremy", - "total": 11550, - "boys": 11550, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 11545, - "boys": 11545, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 11544, - "boys": 11544, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 11538, - "boys": 11538, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 11537, - "boys": 11537, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 11515, - "boys": 11515, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 11514, - "boys": 11514, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 11505, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Angela", - "total": 11504, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 11503, - "boys": 11503, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Hannah", - "total": 11502, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 11501, - "boys": 11501, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Angela", - "total": 11494, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 11494, - "boys": 11494, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Zachary", - "total": 11491, - "boys": 11491, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 11489, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 11482, - "boys": 11482, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Michelle", - "total": 11479, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 11467, - "boys": 11467, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeremy", - "total": 11465, - "boys": 11465, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Mark", - "total": 11462, - "boys": 11462, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ethan", - "total": 11453, - "boys": 11453, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 11442, - "boys": 11442, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tammy", - "total": 11441, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 11438, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Heather", - "total": 11421, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 11421, - "boys": 11421, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Heather", - "total": 11420, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amy", - "total": 11412, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 11407, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 11406, - "boys": 11406, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Hannah", - "total": 11402, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 11399, - "boys": 11399, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 11393, - "boys": 11393, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 11391, - "boys": 11391, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emma", - "total": 11389, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 11387, - "boys": 11387, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 11385, - "boys": 11385, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 11378, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 11371, - "boys": 11371, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 11371, - "boys": 11371, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 11361, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Angela", - "total": 11353, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 11349, - "boys": 11349, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 11345, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 11344, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 11344, - "boys": 11344, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 11344, - "boys": 11344, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Brittany", - "total": 11338, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 11332, - "boys": 11332, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 11301, - "boys": 11301, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 11293, - "boys": 11293, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 11293, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Scott", - "total": 11290, - "boys": 11290, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Angela", - "total": 11275, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 11270, - "boys": 11270, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 11270, - "boys": 11270, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 11253, - "boys": 11253, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 11253, - "boys": 11253, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 11218, - "boys": 11218, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 11216, - "boys": 11216, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 11182, - "boys": 11182, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Scott", - "total": 11182, - "boys": 11182, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ethan", - "total": 11177, - "boys": 11177, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Cody", - "total": 11177, - "boys": 11177, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 11174, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 11165, - "boys": 11165, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 11153, - "boys": 11153, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Susan", - "total": 11137, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 11137, - "boys": 11137, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Zachary", - "total": 11136, - "boys": 11136, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 11127, - "boys": 11127, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 11126, - "boys": 11126, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 11124, - "boys": 11124, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 11124, - "boys": 11124, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Heather", - "total": 11122, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 11120, - "boys": 11120, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 11117, - "boys": 11117, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 11110, - "boys": 11110, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 11109, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Michelle", - "total": 11103, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Scott", - "total": 11094, - "boys": 11094, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 11081, - "boys": 11081, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 11074, - "boys": 11074, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 11073, - "boys": 11073, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Samantha", - "total": 11070, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 11064, - "boys": 11064, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Heather", - "total": 11038, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Karen", - "total": 11038, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 11032, - "boys": 11032, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 11024, - "boys": 11024, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Taylor", - "total": 11013, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 11011, - "boys": 11011, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tammy", - "total": 11008, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Richard", - "total": 11003, - "boys": 11003, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 10998, - "boys": 10998, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Samantha", - "total": 10990, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 10989, - "boys": 10989, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Zachary", - "total": 10987, - "boys": 10987, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 10983, - "boys": 10983, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 10970, - "boys": 10970, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 10959, - "boys": 10959, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 10957, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 10946, - "boys": 10946, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ethan", - "total": 10941, - "boys": 10941, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 10939, - "boys": 10939, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeremy", - "total": 10937, - "boys": 10937, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 10932, - "boys": 10932, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tammy", - "total": 10911, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 10904, - "boys": 10904, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 10903, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Brittany", - "total": 10885, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 10884, - "boys": 10884, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Madison", - "total": 10866, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 10860, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Scott", - "total": 10858, - "boys": 10858, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 10855, - "boys": 10855, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 10850, - "boys": 10850, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Madison", - "total": 10823, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 10808, - "boys": 10808, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 10803, - "boys": 10803, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 10799, - "boys": 10799, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 10797, - "boys": 10797, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 10793, - "boys": 10793, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Madison", - "total": 10792, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amanda", - "total": 10790, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Zachary", - "total": 10786, - "boys": 10786, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 10764, - "boys": 10764, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 10735, - "boys": 10735, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Samantha", - "total": 10734, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 10731, - "boys": 10731, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 10721, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Heather", - "total": 10719, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 10716, - "boys": 10716, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 10716, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Taylor", - "total": 10685, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Ashley", - "total": 10680, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emma", - "total": 10679, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 10678, - "boys": 10678, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Heather", - "total": 10677, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amy", - "total": 10663, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 10659, - "boys": 10659, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Cody", - "total": 10657, - "boys": 10657, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 10651, - "boys": 10651, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kenneth", - "total": 10641, - "boys": 10641, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 10632, - "boys": 10632, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Cody", - "total": 10627, - "boys": 10627, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tammy", - "total": 10611, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 10605, - "boys": 10605, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Taylor", - "total": 10604, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ethan", - "total": 10562, - "boys": 10562, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 10561, - "boys": 10561, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 10538, - "boys": 10538, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 10527, - "boys": 10527, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 10524, - "boys": 10524, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Zachary", - "total": 10519, - "boys": 10519, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 10518, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 10515, - "boys": 10515, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kayla", - "total": 10515, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Hannah", - "total": 10514, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Samantha", - "total": 10511, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amy", - "total": 10508, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 10505, - "boys": 10505, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 10504, - "boys": 10504, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 10500, - "boys": 10500, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 10482, - "boys": 10482, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 10472, - "boys": 10472, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 10471, - "boys": 10471, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 10470, - "boys": 10470, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 10451, - "boys": 10451, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amy", - "total": 10448, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Mary", - "total": 10445, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 10436, - "boys": 10436, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tammy", - "total": 10425, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 10423, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 10419, - "boys": 10419, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Heather", - "total": 10418, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 10413, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 10408, - "boys": 10408, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ethan", - "total": 10408, - "boys": 10408, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 10407, - "boys": 10407, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeffrey", - "total": 10397, - "boys": 10397, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 10378, - "boys": 10378, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 10376, - "boys": 10376, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 10368, - "boys": 10368, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kyle", - "total": 10367, - "boys": 10367, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 10359, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 10358, - "boys": 10358, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "William", - "total": 10356, - "boys": 10356, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 10355, - "boys": 10355, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 10344, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Madison", - "total": 10337, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Heather", - "total": 10331, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amanda", - "total": 10324, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 10317, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Scott", - "total": 10301, - "boys": 10301, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 10297, - "boys": 10297, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 10285, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 10284, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Paul", - "total": 10277, - "boys": 10277, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 10273, - "boys": 10273, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Taylor", - "total": 10267, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Hannah", - "total": 10250, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 10248, - "boys": 10248, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 10236, - "boys": 10236, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 10221, - "boys": 10221, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Austin", - "total": 10214, - "boys": 10214, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Adam", - "total": 10212, - "boys": 10212, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 10184, - "boys": 10184, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 10182, - "boys": 10182, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 10180, - "boys": 10180, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Megan", - "total": 10159, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Crystal", - "total": 10159, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Megan", - "total": 10153, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tammy", - "total": 10151, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Megan", - "total": 10151, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Adam", - "total": 10147, - "boys": 10147, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emma", - "total": 10136, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 10136, - "boys": 10136, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 10129, - "boys": 10129, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Zachary", - "total": 10113, - "boys": 10113, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Susan", - "total": 10099, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 10096, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 10095, - "boys": 10095, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 10095, - "boys": 10095, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 10075, - "boys": 10075, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 10073, - "boys": 10073, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 10058, - "boys": 10058, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Taylor", - "total": 10057, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 10043, - "boys": 10043, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Samantha", - "total": 10041, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tammy", - "total": 10037, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Heather", - "total": 10027, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 10018, - "boys": 10018, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lisa", - "total": 10013, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 10011, - "boys": 10011, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 10006, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 9999, - "boys": 9999, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Zachary", - "total": 9995, - "boys": 9995, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 9993, - "boys": 9993, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 9981, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 9975, - "boys": 9975, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 9973, - "boys": 9973, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Adam", - "total": 9972, - "boys": 9972, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 9972, - "boys": 9972, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 9967, - "boys": 9967, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Patricia", - "total": 9965, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 9949, - "boys": 9949, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 9943, - "boys": 9943, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 9932, - "boys": 9932, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Madison", - "total": 9925, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Michelle", - "total": 9919, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 9913, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Madison", - "total": 9911, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kayla", - "total": 9906, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 9898, - "boys": 9898, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 9892, - "boys": 9892, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 9891, - "boys": 9891, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 9889, - "boys": 9889, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 9882, - "boys": 9882, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Madison", - "total": 9875, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 9870, - "boys": 9870, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Cody", - "total": 9869, - "boys": 9869, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Brittany", - "total": 9868, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Taylor", - "total": 9859, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 9856, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 9856, - "boys": 9856, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 9851, - "boys": 9851, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ethan", - "total": 9845, - "boys": 9845, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Paul", - "total": 9845, - "boys": 9845, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jason", - "total": 9838, - "boys": 9838, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 9836, - "boys": 9836, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 9833, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 9828, - "boys": 9828, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 9824, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 9816, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 9805, - "boys": 9805, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 9805, - "boys": 9805, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 9798, - "boys": 9798, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 9780, - "boys": 9780, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 9778, - "boys": 9778, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 9776, - "boys": 9776, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 9774, - "boys": 9774, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 9761, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 9759, - "boys": 9759, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kyle", - "total": 9752, - "boys": 9752, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 9734, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kyle", - "total": 9732, - "boys": 9732, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 9725, - "boys": 9725, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Samantha", - "total": 9710, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kenneth", - "total": 9709, - "boys": 9709, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Megan", - "total": 9708, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 9701, - "boys": 9701, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 9689, - "boys": 9689, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amy", - "total": 9685, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 9680, - "boys": 9680, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Mark", - "total": 9676, - "boys": 9676, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 9674, - "boys": 9674, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 9658, - "boys": 9658, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 9651, - "boys": 9651, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 9651, - "boys": 9651, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Alexis", - "total": 9648, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Mary", - "total": 9644, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Hannah", - "total": 9643, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Megan", - "total": 9641, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Angela", - "total": 9636, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Hannah", - "total": 9628, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 9628, - "boys": 9628, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 9606, - "boys": 9606, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emma", - "total": 9596, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Adam", - "total": 9584, - "boys": 9584, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 9581, - "boys": 9581, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Mary", - "total": 9581, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 9576, - "boys": 9576, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emma", - "total": 9570, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 9567, - "boys": 9567, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 9563, - "boys": 9563, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 9552, - "boys": 9552, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ethan", - "total": 9551, - "boys": 9551, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Megan", - "total": 9547, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Paul", - "total": 9547, - "boys": 9547, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 9544, - "boys": 9544, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 9544, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Susan", - "total": 9543, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Zachary", - "total": 9536, - "boys": 9536, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 9530, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kyle", - "total": 9524, - "boys": 9524, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 9520, - "boys": 9520, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 9519, - "boys": 9519, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 9518, - "boys": 9518, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 9516, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 9505, - "boys": 9505, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 9500, - "boys": 9500, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 9480, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 9478, - "boys": 9478, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 9477, - "boys": 9477, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 9471, - "boys": 9471, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 9466, - "boys": 9466, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Donna", - "total": 9464, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 9462, - "boys": 9462, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Karen", - "total": 9445, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeremy", - "total": 9440, - "boys": 9440, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 9434, - "boys": 9434, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kyle", - "total": 9430, - "boys": 9430, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 9428, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 9427, - "boys": 9427, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Heather", - "total": 9426, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 9418, - "boys": 9418, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kyle", - "total": 9416, - "boys": 9416, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Richard", - "total": 9408, - "boys": 9408, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 9406, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 9404, - "boys": 9404, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 9399, - "boys": 9399, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 9382, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 9379, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 9370, - "boys": 9370, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 9368, - "boys": 9368, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 9359, - "boys": 9359, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Austin", - "total": 9356, - "boys": 9356, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Alexis", - "total": 9351, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Madison", - "total": 9330, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 9327, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Heather", - "total": 9314, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 9310, - "boys": 9310, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 9303, - "boys": 9303, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 9296, - "boys": 9296, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 9289, - "boys": 9289, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Samantha", - "total": 9284, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 9280, - "boys": 9280, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 9266, - "boys": 9266, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 9266, - "boys": 9266, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 9264, - "boys": 9264, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kyle", - "total": 9262, - "boys": 9262, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 9261, - "boys": 9261, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Zachary", - "total": 9255, - "boys": 9255, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 9249, - "boys": 9249, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amber", - "total": 9249, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Heather", - "total": 9249, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 9246, - "boys": 9246, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Crystal", - "total": 9238, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 9236, - "boys": 9236, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 9234, - "boys": 9234, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amber", - "total": 9229, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Mark", - "total": 9225, - "boys": 9225, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Taylor", - "total": 9217, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 9216, - "boys": 9216, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Cynthia", - "total": 9212, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 9212, - "boys": 9212, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 9212, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Samantha", - "total": 9208, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 9207, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 9199, - "boys": 9199, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 9197, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 9192, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 9192, - "boys": 9192, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 9188, - "boys": 9188, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Paul", - "total": 9186, - "boys": 9186, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Ashley", - "total": 9179, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 9177, - "boys": 9177, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 9173, - "boys": 9173, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 9172, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Pamela", - "total": 9158, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Megan", - "total": 9156, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 9141, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 9140, - "boys": 9140, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tiffany", - "total": 9140, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Ashley", - "total": 9139, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 9126, - "boys": 9126, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kayla", - "total": 9117, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 9116, - "boys": 9116, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 9113, - "boys": 9113, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 9109, - "boys": 9109, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 9109, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amber", - "total": 9099, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 9091, - "boys": 9091, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 9086, - "boys": 9086, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Megan", - "total": 9079, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 9068, - "boys": 9068, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lauren", - "total": 9050, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Heather", - "total": 9050, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 9049, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 9045, - "boys": 9045, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 9043, - "boys": 9043, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 9042, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 9042, - "boys": 9042, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 9031, - "boys": 9031, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Nicole", - "total": 9026, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amber", - "total": 9019, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 9018, - "boys": 9018, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 9017, - "boys": 9017, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 9013, - "boys": 9013, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeffrey", - "total": 9007, - "boys": 9007, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 9006, - "boys": 9006, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kenneth", - "total": 9003, - "boys": 9003, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 8995, - "boys": 8995, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeffrey", - "total": 8993, - "boys": 8993, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 8990, - "boys": 8990, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 8977, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 8976, - "boys": 8976, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Gregory", - "total": 8976, - "boys": 8976, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 8962, - "boys": 8962, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 8960, - "boys": 8960, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 8950, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 8947, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 8946, - "boys": 8946, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lauren", - "total": 8945, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 8945, - "boys": 8945, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 8944, - "boys": 8944, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 8937, - "boys": 8937, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amy", - "total": 8923, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 8915, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 8909, - "boys": 8909, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Crystal", - "total": 8909, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 8908, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tracy", - "total": 8895, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Nicole", - "total": 8890, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 8884, - "boys": 8884, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 8880, - "boys": 8880, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 8866, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 8865, - "boys": 8865, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Cody", - "total": 8847, - "boys": 8847, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 8847, - "boys": 8847, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Adam", - "total": 8846, - "boys": 8846, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 8840, - "boys": 8840, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amanda", - "total": 8831, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 8817, - "boys": 8817, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 8805, - "boys": 8805, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Nicole", - "total": 8805, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 8802, - "boys": 8802, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 8798, - "boys": 8798, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeremy", - "total": 8797, - "boys": 8797, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amanda", - "total": 8796, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 8790, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 8782, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Madison", - "total": 8782, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 8774, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 8773, - "boys": 8773, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 8768, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Alexander", - "total": 8768, - "boys": 8768, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 8764, - "boys": 8764, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 8763, - "boys": 8763, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 8762, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 8761, - "boys": 8761, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Alexander", - "total": 8754, - "boys": 8754, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Nicole", - "total": 8754, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Linda", - "total": 8750, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 8749, - "boys": 8749, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kyle", - "total": 8748, - "boys": 8748, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 8730, - "boys": 8730, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 8727, - "boys": 8727, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeremy", - "total": 8726, - "boys": 8726, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 8725, - "boys": 8725, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emma", - "total": 8724, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 8724, - "boys": 8724, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Austin", - "total": 8723, - "boys": 8723, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lisa", - "total": 8721, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 8716, - "boys": 8716, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Paul", - "total": 8713, - "boys": 8713, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 8712, - "boys": 8712, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kayla", - "total": 8710, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 8684, - "boys": 8684, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 8681, - "boys": 8681, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "NY", - "gender": "boy", - "name": "Michael", - "total": 8676, - "boys": 8676, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Karen", - "total": 8664, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 8664, - "boys": 8664, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 8663, - "boys": 8663, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 8659, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Cody", - "total": 8637, - "boys": 8637, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 8636, - "boys": 8636, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Samantha", - "total": 8633, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jordan", - "total": 8626, - "boys": 8626, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Ashley", - "total": 8619, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 8614, - "boys": 8614, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Paul", - "total": 8611, - "boys": 8611, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 8611, - "boys": 8611, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Angela", - "total": 8604, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 8599, - "boys": 8599, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Mark", - "total": 8593, - "boys": 8593, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jordan", - "total": 8587, - "boys": 8587, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 8585, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Heather", - "total": 8582, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tiffany", - "total": 8581, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amber", - "total": 8563, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 8558, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Megan", - "total": 8556, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 8555, - "boys": 8555, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "NY", - "gender": "boy", - "name": "Michael", - "total": 8545, - "boys": 8545, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 8544, - "boys": 8544, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 8542, - "boys": 8542, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Pamela", - "total": 8540, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Alexis", - "total": 8538, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 8538, - "boys": 8538, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kelly", - "total": 8538, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 8536, - "boys": 8536, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Teresa", - "total": 8531, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 8529, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kenneth", - "total": 8527, - "boys": 8527, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Mary", - "total": 8525, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 8524, - "boys": 8524, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 8522, - "boys": 8522, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Scott", - "total": 8518, - "boys": 8518, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 8517, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 8512, - "boys": 8512, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Alexander", - "total": 8506, - "boys": 8506, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 8505, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Noah", - "total": 8500, - "boys": 8500, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 8499, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Susan", - "total": 8491, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kayla", - "total": 8486, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Michelle", - "total": 8484, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Adam", - "total": 8481, - "boys": 8481, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Richard", - "total": 8476, - "boys": 8476, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Michael", - "total": 8472, - "boys": 8472, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jason", - "total": 8472, - "boys": 8472, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 8463, - "boys": 8463, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 8453, - "boys": 8453, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 8448, - "boys": 8448, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeffrey", - "total": 8445, - "boys": 8445, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Patricia", - "total": 8442, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Michelle", - "total": 8439, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Madison", - "total": 8438, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Zachary", - "total": 8438, - "boys": 8438, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 8432, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 8429, - "boys": 8429, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Hannah", - "total": 8428, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amber", - "total": 8428, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 8427, - "boys": 8427, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Brittany", - "total": 8418, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tiffany", - "total": 8416, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 8412, - "boys": 8412, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Julie", - "total": 8402, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 8401, - "boys": 8401, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 8395, - "boys": 8395, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 8394, - "boys": 8394, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 8390, - "boys": 8390, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Austin", - "total": 8387, - "boys": 8387, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 8383, - "boys": 8383, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amber", - "total": 8383, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kayla", - "total": 8378, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 8374, - "boys": 8374, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 8369, - "boys": 8369, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 8369, - "boys": 8369, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 8363, - "boys": 8363, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 8353, - "boys": 8353, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Gregory", - "total": 8353, - "boys": 8353, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 8351, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Crystal", - "total": 8350, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Megan", - "total": 8347, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amber", - "total": 8346, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Cynthia", - "total": 8339, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rebecca", - "total": 8339, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Megan", - "total": 8339, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kayla", - "total": 8334, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tiffany", - "total": 8333, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lauren", - "total": 8328, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 8322, - "boys": 8322, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 8320, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Dylan", - "total": 8318, - "boys": 8318, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 8316, - "boys": 8316, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 8316, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 8315, - "boys": 8315, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Zachary", - "total": 8313, - "boys": 8313, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Brittany", - "total": 8310, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kyle", - "total": 8302, - "boys": 8302, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 8302, - "boys": 8302, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 8302, - "boys": 8302, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 8300, - "boys": 8300, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 8296, - "boys": 8296, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Alexander", - "total": 8295, - "boys": 8295, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 8295, - "boys": 8295, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Brenda", - "total": 8292, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Hannah", - "total": 8289, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 8286, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 8282, - "boys": 8282, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 8281, - "boys": 8281, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Crystal", - "total": 8276, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Noah", - "total": 8275, - "boys": 8275, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Olivia", - "total": 8271, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 8267, - "boys": 8267, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 8267, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 8264, - "boys": 8264, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 8262, - "boys": 8262, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kyle", - "total": 8257, - "boys": 8257, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amy", - "total": 8253, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 8246, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 8245, - "boys": 8245, - "SUM(num_california)": 8245, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 8243, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Samantha", - "total": 8243, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 8233, - "boys": 8233, - "SUM(num_california)": 8233, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 8230, - "boys": 8230, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 8223, - "boys": 8223, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lauren", - "total": 8222, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 8219, - "boys": 8219, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Adam", - "total": 8213, - "boys": 8213, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amy", - "total": 8210, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amber", - "total": 8195, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "NY", - "gender": "boy", - "name": "Michael", - "total": 8194, - "boys": 8194, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 8186, - "boys": 8186, - "SUM(num_california)": 8186, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 8185, - "boys": 8185, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Taylor", - "total": 8183, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 8181, - "boys": 8181, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 8181, - "boys": 8181, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Alexis", - "total": 8180, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Nicole", - "total": 8177, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Donna", - "total": 8173, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 8172, - "boys": 8172, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 8162, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 8162, - "boys": 8162, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 8159, - "boys": 8159, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 8157, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 8149, - "boys": 8149, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Olivia", - "total": 8144, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 8140, - "boys": 8140, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Nicole", - "total": 8140, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeffrey", - "total": 8137, - "boys": 8137, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Alexis", - "total": 8136, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ethan", - "total": 8133, - "boys": 8133, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 8132, - "boys": 8132, - "SUM(num_california)": 8132, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kenneth", - "total": 8128, - "boys": 8128, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Julie", - "total": 8127, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 8123, - "boys": 8123, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 8121, - "boys": 8121, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 8120, - "boys": 8120, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 8119, - "boys": 8119, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 8111, - "boys": 8111, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 8109, - "boys": 8109, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Michelle", - "total": 8103, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 8097, - "boys": 8097, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 8092, - "boys": 8092, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 8092, - "boys": 8092, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 8092, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Dylan", - "total": 8089, - "boys": 8089, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Abigail", - "total": 8087, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tiffany", - "total": 8086, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 8085, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Julie", - "total": 8085, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Scott", - "total": 8085, - "boys": 8085, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 8083, - "boys": 8083, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Pamela", - "total": 8081, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 8079, - "boys": 8079, - "SUM(num_california)": 8079, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Samantha", - "total": 8079, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Crystal", - "total": 8079, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Samantha", - "total": 8078, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tammy", - "total": 8073, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 8069, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 8066, - "boys": 8066, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 8059, - "boys": 8059, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amber", - "total": 8058, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lisa", - "total": 8058, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 8057, - "boys": 8057, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 8057, - "boys": 8057, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 8051, - "boys": 8051, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Logan", - "total": 8048, - "boys": 8048, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeremy", - "total": 8042, - "boys": 8042, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 8033, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Michelle", - "total": 8031, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Michelle", - "total": 8030, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Richard", - "total": 8026, - "boys": 8026, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Angela", - "total": 8026, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Hannah", - "total": 8021, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 8020, - "boys": 8020, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Logan", - "total": 8020, - "boys": 8020, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 8017, - "boys": 8017, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 8015, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 8012, - "boys": 8012, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 8004, - "boys": 8004, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Julie", - "total": 8002, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 8000, - "boys": 8000, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tiffany", - "total": 7999, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "NY", - "gender": "boy", - "name": "Michael", - "total": 7998, - "boys": 7998, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rebecca", - "total": 7997, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 7995, - "boys": 7995, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 7992, - "boys": 7992, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Abigail", - "total": 7990, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 7985, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 7984, - "boys": 7984, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 7975, - "boys": 7975, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 7971, - "boys": 7971, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 7969, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 7968, - "boys": 7968, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Olivia", - "total": 7964, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 7963, - "boys": 7963, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 7962, - "boys": 7962, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 7958, - "boys": 7958, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Courtney", - "total": 7957, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "NY", - "gender": "boy", - "name": "Michael", - "total": 7952, - "boys": 7952, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 7951, - "boys": 7951, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 7947, - "boys": 7947, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 7947, - "boys": 7947, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Adam", - "total": 7945, - "boys": 7945, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 7945, - "boys": 7945, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rachel", - "total": 7944, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kayla", - "total": 7944, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 7942, - "boys": 7942, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Alexander", - "total": 7940, - "boys": 7940, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Abigail", - "total": 7928, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 7922, - "boys": 7922, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Olivia", - "total": 7920, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 7920, - "boys": 7920, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kenneth", - "total": 7920, - "boys": 7920, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tiffany", - "total": 7916, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 7915, - "boys": 7915, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 7915, - "boys": 7915, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Olivia", - "total": 7915, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 7908, - "boys": 7908, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "NY", - "gender": "boy", - "name": "Michael", - "total": 7907, - "boys": 7907, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sandra", - "total": 7905, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kayla", - "total": 7905, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Megan", - "total": 7905, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jordan", - "total": 7905, - "boys": 7905, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Gregory", - "total": 7903, - "boys": 7903, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 7902, - "boys": 7902, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "NY", - "gender": "boy", - "name": "John", - "total": 7900, - "boys": 7900, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 7897, - "boys": 7897, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 7897, - "boys": 7897, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 7895, - "boys": 7895, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 7894, - "boys": 7894, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 7893, - "boys": 7893, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Abigail", - "total": 7893, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 7893, - "boys": 7893, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeffrey", - "total": 7888, - "boys": 7888, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Alexander", - "total": 7887, - "boys": 7887, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 7884, - "boys": 7884, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Alexander", - "total": 7879, - "boys": 7879, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 7878, - "boys": 7878, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Noah", - "total": 7875, - "boys": 7875, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Chelsea", - "total": 7875, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Noah", - "total": 7868, - "boys": 7868, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 7864, - "boys": 7864, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Alexis", - "total": 7858, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 7855, - "boys": 7855, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 7851, - "boys": 7851, - "SUM(num_california)": 7851, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Laura", - "total": 7846, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Susan", - "total": 7841, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kelly", - "total": 7835, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 7835, - "boys": 7835, - "SUM(num_california)": 7835, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 7835, - "boys": 7835, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeffrey", - "total": 7831, - "boys": 7831, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Adam", - "total": 7828, - "boys": 7828, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Hannah", - "total": 7827, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Alexander", - "total": 7821, - "boys": 7821, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Abigail", - "total": 7819, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jason", - "total": 7808, - "boys": 7808, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Scott", - "total": 7803, - "boys": 7803, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 7801, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeffrey", - "total": 7801, - "boys": 7801, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 7800, - "boys": 7800, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 7792, - "boys": 7792, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lisa", - "total": 7789, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rebecca", - "total": 7788, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 7788, - "boys": 7788, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Nicole", - "total": 7786, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 7780, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 7775, - "boys": 7775, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rachel", - "total": 7761, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Dylan", - "total": 7760, - "boys": 7760, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jordan", - "total": 7760, - "boys": 7760, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 7758, - "boys": 7758, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Alexander", - "total": 7755, - "boys": 7755, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Gregory", - "total": 7753, - "boys": 7753, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 7748, - "boys": 7748, - "SUM(num_california)": 7748, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Zachary", - "total": 7740, - "boys": 7740, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 7740, - "boys": 7740, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Alexis", - "total": 7739, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Nicole", - "total": 7739, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Samuel", - "total": 7737, - "boys": 7737, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 7733, - "boys": 7733, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Abigail", - "total": 7724, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 7722, - "boys": 7722, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 7721, - "boys": 7721, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "James", - "total": 7719, - "boys": 7719, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Karen", - "total": 7708, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Nicole", - "total": 7706, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Chad", - "total": 7706, - "boys": 7706, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 7699, - "boys": 7699, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lauren", - "total": 7699, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jordan", - "total": 7698, - "boys": 7698, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rachel", - "total": 7692, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 7689, - "boys": 7689, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Ashley", - "total": 7684, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ronald", - "total": 7683, - "boys": 7683, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 7678, - "boys": 7678, - "SUM(num_california)": 7678, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 7677, - "boys": 7677, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 7677, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Alexander", - "total": 7676, - "boys": 7676, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 7667, - "boys": 7667, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Crystal", - "total": 7660, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Gregory", - "total": 7660, - "boys": 7660, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Alexander", - "total": 7660, - "boys": 7660, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 7659, - "boys": 7659, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Dylan", - "total": 7655, - "boys": 7655, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 7654, - "boys": 7654, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 7654, - "boys": 7654, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 7653, - "boys": 7653, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rebecca", - "total": 7653, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 7650, - "boys": 7650, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amanda", - "total": 7649, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Taylor", - "total": 7647, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rachel", - "total": 7646, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 7645, - "boys": 7645, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Alexander", - "total": 7641, - "boys": 7641, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Alexander", - "total": 7639, - "boys": 7639, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 7636, - "boys": 7636, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 7636, - "boys": 7636, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 7632, - "boys": 7632, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christopher", - "total": 7631, - "boys": 7631, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 7631, - "boys": 7631, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Olivia", - "total": 7626, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Donald", - "total": 7624, - "boys": 7624, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Richard", - "total": 7623, - "boys": 7623, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 7622, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 7619, - "boys": 7619, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rachel", - "total": 7615, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Dylan", - "total": 7612, - "boys": 7612, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 7609, - "boys": 7609, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 7608, - "boys": 7608, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeremy", - "total": 7606, - "boys": 7606, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 7602, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 7598, - "boys": 7598, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Samuel", - "total": 7596, - "boys": 7596, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Hunter", - "total": 7596, - "boys": 7596, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amber", - "total": 7596, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jordan", - "total": 7596, - "boys": 7596, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 7593, - "boys": 7593, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Richard", - "total": 7590, - "boys": 7590, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Samuel", - "total": 7589, - "boys": 7589, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Travis", - "total": 7587, - "boys": 7587, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 7587, - "boys": 7587, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 7587, - "boys": 7587, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 7586, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 7580, - "boys": 7580, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Laura", - "total": 7579, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 7579, - "boys": 7579, - "SUM(num_california)": 7579, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Paul", - "total": 7578, - "boys": 7578, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Aaron", - "total": 7578, - "boys": 7578, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Aaron", - "total": 7576, - "boys": 7576, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rachel", - "total": 7575, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Megan", - "total": 7574, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 7566, - "boys": 7566, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 7566, - "boys": 7566, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 7563, - "boys": 7563, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 7562, - "boys": 7562, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Nicole", - "total": 7561, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 7561, - "boys": 7561, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Alexander", - "total": 7561, - "boys": 7561, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rachel", - "total": 7560, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Heather", - "total": 7560, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Aaron", - "total": 7556, - "boys": 7556, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeremy", - "total": 7554, - "boys": 7554, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 7554, - "boys": 7554, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 7551, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Abigail", - "total": 7540, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeffrey", - "total": 7538, - "boys": 7538, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 7536, - "boys": 7536, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lisa", - "total": 7535, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 7534, - "boys": 7534, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rachel", - "total": 7529, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 7527, - "boys": 7527, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 7527, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Samantha", - "total": 7524, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeremy", - "total": 7523, - "boys": 7523, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 7522, - "boys": 7522, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 7520, - "boys": 7520, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lisa", - "total": 7517, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Ashley", - "total": 7515, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Taylor", - "total": 7515, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 7513, - "boys": 7513, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Aaron", - "total": 7512, - "boys": 7512, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 7511, - "boys": 7511, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 7511, - "boys": 7511, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sandra", - "total": 7511, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Alexander", - "total": 7510, - "boys": 7510, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jordan", - "total": 7504, - "boys": 7504, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sharon", - "total": 7499, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Madison", - "total": 7497, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeremy", - "total": 7494, - "boys": 7494, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Chad", - "total": 7492, - "boys": 7492, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 7492, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Alexander", - "total": 7491, - "boys": 7491, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Isabella", - "total": 7490, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 7489, - "boys": 7489, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Noah", - "total": 7488, - "boys": 7488, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Heather", - "total": 7487, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amber", - "total": 7487, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amber", - "total": 7484, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 7482, - "boys": 7482, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 7478, - "boys": 7478, - "SUM(num_california)": 7478, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 7477, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 7473, - "boys": 7473, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Dylan", - "total": 7472, - "boys": 7472, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Julie", - "total": 7469, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Chad", - "total": 7469, - "boys": 7469, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Samuel", - "total": 7465, - "boys": 7465, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 7465, - "boys": 7465, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rachel", - "total": 7465, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lisa", - "total": 7460, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Samuel", - "total": 7459, - "boys": 7459, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 7457, - "boys": 7457, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 7456, - "boys": 7456, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 7454, - "boys": 7454, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Mark", - "total": 7453, - "boys": 7453, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amy", - "total": 7453, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Alexis", - "total": 7452, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rebecca", - "total": 7449, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 7448, - "boys": 7448, - "SUM(num_california)": 7448, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joshua", - "total": 7447, - "boys": 7447, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Teresa", - "total": 7443, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Gregory", - "total": 7438, - "boys": 7438, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Julie", - "total": 7436, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 7432, - "boys": 7432, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Karen", - "total": 7415, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rachel", - "total": 7411, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rebecca", - "total": 7408, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 7407, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tiffany", - "total": 7406, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Cody", - "total": 7402, - "boys": 7402, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ronald", - "total": 7394, - "boys": 7394, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 7394, - "boys": 7394, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 7393, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 7392, - "boys": 7392, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Patricia", - "total": 7391, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Chad", - "total": 7390, - "boys": 7390, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 7388, - "boys": 7388, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tina", - "total": 7388, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 7386, - "boys": 7386, - "SUM(num_california)": 7386, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rebecca", - "total": 7380, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Michelle", - "total": 7377, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Isabella", - "total": 7376, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 7373, - "boys": 7373, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 7372, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 7370, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Christina", - "total": 7368, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kyle", - "total": 7367, - "boys": 7367, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Samuel", - "total": 7367, - "boys": 7367, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Logan", - "total": 7364, - "boys": 7364, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 7363, - "boys": 7363, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 7361, - "boys": 7361, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Julie", - "total": 7359, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ronald", - "total": 7357, - "boys": 7357, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 7354, - "boys": 7354, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Travis", - "total": 7354, - "boys": 7354, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 7353, - "boys": 7353, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jordan", - "total": 7347, - "boys": 7347, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Gary", - "total": 7347, - "boys": 7347, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeffrey", - "total": 7346, - "boys": 7346, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Alexander", - "total": 7346, - "boys": 7346, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Michelle", - "total": 7340, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 7336, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Christina", - "total": 7335, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amy", - "total": 7335, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 7329, - "boys": 7329, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Cynthia", - "total": 7329, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 7329, - "boys": 7329, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 7327, - "boys": 7327, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Samuel", - "total": 7321, - "boys": 7321, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 7321, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Samuel", - "total": 7317, - "boys": 7317, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rachel", - "total": 7316, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 7310, - "boys": 7310, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Deborah", - "total": 7309, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Abigail", - "total": 7304, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 7304, - "boys": 7304, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Dylan", - "total": 7298, - "boys": 7298, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lauren", - "total": 7294, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 7292, - "boys": 7292, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rachel", - "total": 7292, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 7291, - "boys": 7291, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 7288, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 7288, - "boys": 7288, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 7282, - "boys": 7282, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Laura", - "total": 7280, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 7279, - "boys": 7279, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rebecca", - "total": 7276, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Susan", - "total": 7276, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Pamela", - "total": 7274, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kelly", - "total": 7270, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tiffany", - "total": 7270, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 7268, - "boys": 7268, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Brenda", - "total": 7268, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rebecca", - "total": 7268, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Andrew", - "total": 7262, - "boys": 7262, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Richard", - "total": 7262, - "boys": 7262, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 7259, - "boys": 7259, - "SUM(num_california)": 7259, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Isabella", - "total": 7253, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Logan", - "total": 7247, - "boys": 7247, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 7247, - "boys": 7247, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 7246, - "boys": 7246, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rachel", - "total": 7243, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 7243, - "boys": 7243, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1973-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 7242, - "boys": 7242, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 7238, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lori", - "total": 7233, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rachel", - "total": 7232, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Logan", - "total": 7226, - "boys": 7226, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 7225, - "boys": 7225, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tracy", - "total": 7224, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 7210, - "boys": 7210, - "SUM(num_california)": 7210, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 7209, - "boys": 7209, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 7205, - "boys": 7205, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Gregory", - "total": 7204, - "boys": 7204, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 7202, - "boys": 7202, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Richard", - "total": 7199, - "boys": 7199, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 7195, - "boys": 7195, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 7194, - "boys": 7194, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Olivia", - "total": 7193, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 7183, - "boys": 7183, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 7181, - "boys": 7181, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 7181, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Samuel", - "total": 7177, - "boys": 7177, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Donna", - "total": 7174, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Logan", - "total": 7173, - "boys": 7173, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 7172, - "boys": 7172, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Crystal", - "total": 7170, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 7169, - "boys": 7169, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Courtney", - "total": 7168, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 7166, - "boys": 7166, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Noah", - "total": 7165, - "boys": 7165, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeffrey", - "total": 7159, - "boys": 7159, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Shannon", - "total": 7156, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 7156, - "boys": 7156, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Aaron", - "total": 7155, - "boys": 7155, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 7155, - "boys": 7155, - "SUM(num_california)": 7155, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 7155, - "boys": 7155, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Megan", - "total": 7155, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Alexander", - "total": 7153, - "boys": 7153, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jordan", - "total": 7151, - "boys": 7151, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 7150, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeffrey", - "total": 7150, - "boys": 7150, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 7149, - "boys": 7149, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 7148, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 7148, - "boys": 7148, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 7147, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Richard", - "total": 7143, - "boys": 7143, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Logan", - "total": 7143, - "boys": 7143, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 7142, - "boys": 7142, - "SUM(num_california)": 7142, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amanda", - "total": 7135, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 7131, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Richard", - "total": 7130, - "boys": 7130, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Linda", - "total": 7126, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Todd", - "total": 7124, - "boys": 7124, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Logan", - "total": 7114, - "boys": 7114, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 7113, - "boys": 7113, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Danielle", - "total": 7107, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 7107, - "boys": 7107, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Brittany", - "total": 7106, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Richard", - "total": 7100, - "boys": 7100, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tina", - "total": 7098, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Aaron", - "total": 7089, - "boys": 7089, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kimberly", - "total": 7088, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amber", - "total": 7081, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Hunter", - "total": 7077, - "boys": 7077, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Hannah", - "total": 7076, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Nicole", - "total": 7072, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 7071, - "boys": 7071, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 7071, - "boys": 7071, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Samuel", - "total": 7066, - "boys": 7066, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 7066, - "boys": 7066, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tina", - "total": 7065, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Erin", - "total": 7061, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 7060, - "boys": 7060, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Megan", - "total": 7060, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emma", - "total": 7055, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Aaron", - "total": 7046, - "boys": 7046, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 7042, - "boys": 7042, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1975-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rebecca", - "total": 7042, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Scott", - "total": 7037, - "boys": 7037, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Teresa", - "total": 7036, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ronald", - "total": 7034, - "boys": 7034, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Noah", - "total": 7033, - "boys": 7033, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Pamela", - "total": 7028, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Richard", - "total": 7028, - "boys": 7028, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 7025, - "boys": 7025, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Hannah", - "total": 7022, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rebecca", - "total": 7022, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "David", - "total": 7021, - "boys": 7021, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kayla", - "total": 7017, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Donald", - "total": 7013, - "boys": 7013, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Todd", - "total": 7008, - "boys": 7008, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Mary", - "total": 7006, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 7005, - "boys": 7005, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kenneth", - "total": 6999, - "boys": 6999, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Cameron", - "total": 6993, - "boys": 6993, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Mark", - "total": 6992, - "boys": 6992, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kyle", - "total": 6991, - "boys": 6991, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 6989, - "boys": 6989, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 6977, - "boys": 6977, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Christina", - "total": 6971, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jason", - "total": 6969, - "boys": 6969, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 6968, - "boys": 6968, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kelly", - "total": 6968, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 6967, - "boys": 6967, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 6962, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Daniel", - "total": 6958, - "boys": 6958, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Joseph", - "total": 6958, - "boys": 6958, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Noah", - "total": 6958, - "boys": 6958, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lauren", - "total": 6957, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Dylan", - "total": 6949, - "boys": 6949, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Caleb", - "total": 6949, - "boys": 6949, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Chad", - "total": 6948, - "boys": 6948, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "CA", - "gender": "girl", - "name": "Jessica", - "total": 6946, - "boys": 0, - "SUM(num_california)": 6946, - "%pct_boys": 0 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 6942, - "boys": 6942, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1974-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 6941, - "boys": 6941, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tracy", - "total": 6941, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Todd", - "total": 6939, - "boys": 6939, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Adam", - "total": 6937, - "boys": 6937, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sandra", - "total": 6935, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Matthew", - "total": 6931, - "boys": 6931, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Samuel", - "total": 6928, - "boys": 6928, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tina", - "total": 6927, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Deborah", - "total": 6926, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Mark", - "total": 6926, - "boys": 6926, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Elijah", - "total": 6924, - "boys": 6924, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "David", - "total": 6923, - "boys": 6923, - "SUM(num_california)": 6923, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Michelle", - "total": 6922, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 6922, - "boys": 6922, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Pamela", - "total": 6922, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "NY", - "gender": "boy", - "name": "John", - "total": 6920, - "boys": 6920, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Aaron", - "total": 6917, - "boys": 6917, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lauren", - "total": 6916, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Melissa", - "total": 6914, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 6913, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Courtney", - "total": 6910, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Megan", - "total": 6908, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 6907, - "boys": 6907, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Gary", - "total": 6907, - "boys": 6907, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rachel", - "total": 6907, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Aaron", - "total": 6900, - "boys": 6900, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 6896, - "boys": 6896, - "SUM(num_california)": 6896, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 6895, - "boys": 6895, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Shannon", - "total": 6892, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jordan", - "total": 6891, - "boys": 6891, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Cameron", - "total": 6891, - "boys": 6891, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kelly", - "total": 6890, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "John", - "total": 6889, - "boys": 6889, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Hunter", - "total": 6889, - "boys": 6889, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 6886, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Caleb", - "total": 6884, - "boys": 6884, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Aaron", - "total": 6883, - "boys": 6883, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Steven", - "total": 6883, - "boys": 6883, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Donald", - "total": 6883, - "boys": 6883, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 6880, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 6874, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Samuel", - "total": 6874, - "boys": 6874, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tiffany", - "total": 6874, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Olivia", - "total": 6873, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sarah", - "total": 6871, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Dylan", - "total": 6870, - "boys": 6870, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 6870, - "boys": 6870, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Michelle", - "total": 6868, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Christian", - "total": 6868, - "boys": 6868, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 6866, - "boys": 6866, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Zachary", - "total": 6866, - "boys": 6866, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 6866, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Danielle", - "total": 6863, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 6863, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lisa", - "total": 6862, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "April", - "total": 6854, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 6854, - "boys": 6854, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Justin", - "total": 6852, - "boys": 6852, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Laura", - "total": 6850, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Samantha", - "total": 6845, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sophia", - "total": 6845, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "CA", - "gender": "girl", - "name": "Jessica", - "total": 6843, - "boys": 0, - "SUM(num_california)": 6843, - "%pct_boys": 0 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "NY", - "gender": "boy", - "name": "Michael", - "total": 6841, - "boys": 6841, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 6837, - "boys": 6837, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kevin", - "total": 6837, - "boys": 6837, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 6836, - "boys": 6836, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeremy", - "total": 6832, - "boys": 6832, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lori", - "total": 6832, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Laura", - "total": 6831, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 6825, - "boys": 6825, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 6825, - "boys": 6825, - "SUM(num_california)": 6825, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Aaron", - "total": 6822, - "boys": 6822, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nicholas", - "total": 6821, - "boys": 6821, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Aaron", - "total": 6821, - "boys": 6821, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "David", - "total": 6820, - "boys": 6820, - "SUM(num_california)": 6820, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 6805, - "boys": 6805, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1996-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kyle", - "total": 6805, - "boys": 6805, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Aaron", - "total": 6804, - "boys": 6804, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 6795, - "boys": 6795, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tina", - "total": 6794, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeremy", - "total": 6791, - "boys": 6791, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jamie", - "total": 6781, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Ashley", - "total": 6780, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 6780, - "boys": 6780, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Alexis", - "total": 6778, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 6769, - "boys": 6769, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tina", - "total": 6769, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Adam", - "total": 6768, - "boys": 6768, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Todd", - "total": 6767, - "boys": 6767, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Erin", - "total": 6764, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 6764, - "boys": 6764, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 6760, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Hunter", - "total": 6759, - "boys": 6759, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "David", - "total": 6757, - "boys": 6757, - "SUM(num_california)": 6757, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 6755, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 6750, - "boys": 6750, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Nicole", - "total": 6748, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 6746, - "boys": 6746, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Christopher", - "total": 6744, - "boys": 6744, - "SUM(num_california)": 6744, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Heather", - "total": 6743, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amy", - "total": 6741, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 6737, - "boys": 6737, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Julie", - "total": 6735, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lauren", - "total": 6733, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Courtney", - "total": 6730, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 6728, - "boys": 6728, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Angela", - "total": 6727, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 6726, - "boys": 6726, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 6725, - "boys": 6725, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Mark", - "total": 6724, - "boys": 6724, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 6710, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 6707, - "boys": 6707, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jeffrey", - "total": 6707, - "boys": 6707, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Nicole", - "total": 6704, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 6701, - "boys": 6701, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 6698, - "boys": 6698, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Courtney", - "total": 6694, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 6694, - "boys": 6694, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Aaron", - "total": 6694, - "boys": 6694, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Zachary", - "total": 6693, - "boys": 6693, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Chad", - "total": 6693, - "boys": 6693, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Tyler", - "total": 6689, - "boys": 6689, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Austin", - "total": 6681, - "boys": 6681, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lauren", - "total": 6678, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2002-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Hunter", - "total": 6677, - "boys": 6677, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 6675, - "boys": 6675, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Travis", - "total": 6675, - "boys": 6675, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ronald", - "total": 6674, - "boys": 6674, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1997-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rachel", - "total": 6673, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Abigail", - "total": 6657, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "April", - "total": 6653, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lori", - "total": 6651, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1972-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rebecca", - "total": 6648, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emily", - "total": 6647, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 6646, - "boys": 6646, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1976-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jamie", - "total": 6645, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2001-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Caleb", - "total": 6645, - "boys": 6645, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Tiffany", - "total": 6645, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Christopher", - "total": 6641, - "boys": 6641, - "SUM(num_california)": 6641, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Caleb", - "total": 6641, - "boys": 6641, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Rebecca", - "total": 6640, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Hannah", - "total": 6634, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Kayla", - "total": 6632, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 6632, - "boys": 6632, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "CA", - "gender": "girl", - "name": "Jessica", - "total": 6630, - "boys": 0, - "SUM(num_california)": 6630, - "%pct_boys": 0 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Emma", - "total": 6629, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 6627, - "boys": 6627, - "SUM(num_california)": 6627, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 6625, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Danielle", - "total": 6615, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Richard", - "total": 6615, - "boys": 6615, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amanda", - "total": 6614, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jennifer", - "total": 6613, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 6612, - "boys": 6612, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 6612, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Shannon", - "total": 6602, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Timothy", - "total": 6596, - "boys": 6596, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Charles", - "total": 6595, - "boys": 6595, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1992-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Austin", - "total": 6594, - "boys": 6594, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Cynthia", - "total": 6594, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1998-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kyle", - "total": 6593, - "boys": 6593, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2004-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nathan", - "total": 6591, - "boys": 6591, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Todd", - "total": 6590, - "boys": 6590, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Stephen", - "total": 6590, - "boys": 6590, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Courtney", - "total": 6586, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Ryan", - "total": 6584, - "boys": 6584, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1985-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Danielle", - "total": 6580, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 6580, - "boys": 6580, - "SUM(num_california)": 6580, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Stephen", - "total": 6579, - "boys": 6579, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 6578, - "boys": 6578, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jonathan", - "total": 6577, - "boys": 6577, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 6574, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Eric", - "total": 6572, - "boys": 6572, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1991-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Chelsea", - "total": 6571, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 6570, - "boys": 6570, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Scott", - "total": 6564, - "boys": 6564, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1969-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "David", - "total": 6563, - "boys": 6563, - "SUM(num_california)": 6563, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Samuel", - "total": 6561, - "boys": 6561, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Todd", - "total": 6557, - "boys": 6557, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Elizabeth", - "total": 6554, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Alexis", - "total": 6552, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Stephanie", - "total": 6550, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1987-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Christopher", - "total": 6549, - "boys": 6549, - "SUM(num_california)": 6549, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Robert", - "total": 6548, - "boys": 6548, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Amber", - "total": 6545, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 6545, - "boys": 6545, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2007-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Elijah", - "total": 6544, - "boys": 6544, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 6542, - "boys": 6542, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Christina", - "total": 6532, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Christopher", - "total": 6526, - "boys": 6526, - "SUM(num_california)": 6526, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1989-01-01T00:00:00", - "state": "CA", - "gender": "girl", - "name": "Jessica", - "total": 6523, - "boys": 0, - "SUM(num_california)": 6523, - "%pct_boys": 0 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brian", - "total": 6521, - "boys": 6521, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Patricia", - "total": 6521, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Erin", - "total": 6518, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1982-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Travis", - "total": 6517, - "boys": 6517, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1994-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Dylan", - "total": 6514, - "boys": 6514, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Christopher", - "total": 6509, - "boys": 6509, - "SUM(num_california)": 6509, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2003-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Brandon", - "total": 6502, - "boys": 6502, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1966-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Sharon", - "total": 6500, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Christopher", - "total": 6497, - "boys": 6497, - "SUM(num_california)": 6497, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Christopher", - "total": 6496, - "boys": 6496, - "SUM(num_california)": 6496, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Laura", - "total": 6493, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1968-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "David", - "total": 6490, - "boys": 6490, - "SUM(num_california)": 6490, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "CA", - "gender": "boy", - "name": "Michael", - "total": 6489, - "boys": 6489, - "SUM(num_california)": 6489, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1979-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "April", - "total": 6489, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "2008-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Anthony", - "total": 6489, - "boys": 6489, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1988-01-01T00:00:00", - "state": "CA", - "gender": "girl", - "name": "Jessica", - "total": 6485, - "boys": 0, - "SUM(num_california)": 6485, - "%pct_boys": 0 - }, - { - "__timestamp": "2000-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Jessica", - "total": 6481, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1999-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Lauren", - "total": 6475, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Dylan", - "total": 6475, - "boys": 6475, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Richard", - "total": 6473, - "boys": 6473, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1984-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Jacob", - "total": 6469, - "boys": 6469, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1967-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Laura", - "total": 6468, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Susan", - "total": 6462, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Heather", - "total": 6456, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1995-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Benjamin", - "total": 6454, - "boys": 6454, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1990-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Alexander", - "total": 6453, - "boys": 6453, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1981-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nathan", - "total": 6453, - "boys": 6453, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1970-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Dawn", - "total": 6453, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1980-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Nathan", - "total": 6452, - "boys": 6452, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1971-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Karen", - "total": 6450, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1965-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Barbara", - "total": 6446, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1986-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Dustin", - "total": 6443, - "boys": 6443, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1993-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Thomas", - "total": 6442, - "boys": 6442, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Elijah", - "total": 6436, - "boys": 6436, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1978-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Aaron", - "total": 6435, - "boys": 6435, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "girl", - "name": "Shannon", - "total": 6434, - "boys": 0, - "SUM(num_california)": 0, - "%pct_boys": 0 - }, - { - "__timestamp": "1983-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Kyle", - "total": 6423, - "boys": 6423, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "1977-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Scott", - "total": 6422, - "boys": 6422, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2005-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Dylan", - "total": 6419, - "boys": 6419, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - }, - { - "__timestamp": "2006-01-01T00:00:00", - "state": "other", - "gender": "boy", - "name": "Caleb", - "total": 6418, - "boys": 6418, - "SUM(num_california)": 0, - "%pct_boys": 0.0007645259938837921 - } - ], - "columns": [ - "__timestamp", - "state", - "gender", - "name", - "total", - "boys", - "SUM(num_california)", - "%pct_boys" - ] + "is_cached": false, + "query": "SELECT gender AS gender,\n state AS state,\n name AS name,\n DATE_TRUNC('year', ds) AS __timestamp,\n sum(num) AS total,\n sum(sum_boys) AS boys,\n sum(CASE\n WHEN state = 'CA' THEN num\n ELSE 0\n END) AS \"SUM(num_california)\",\n SUM(sum_boys)/SUM(num) AS pct_boys,\n sum(num) AS \"SUM(num)\"\nFROM birth_names\nWHERE ds >= '1920-06-06 00:00:00.000000'\n AND ds < '2020-06-06 13:06:05.000000'\nGROUP BY gender,\n state,\n name,\n DATE_TRUNC('year', ds)\nORDER BY \"SUM(num)\" DESC\nLIMIT 2000", + "from_dttm": "1920-06-06T00:00:00", + "to_dttm": "2020-06-06T13:06:05", + "status": "success", + "stacktrace": null, + "rowcount": 2000, + "data": { + "records": [ + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 37296, + "boys": 37296, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "", + "total": 37112, + "boys": 37112, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "Styled Text", + "gender": "boy", + "name": "Michael", + "total": 35371, + "boys": 35371, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": -35253, + "boys": 35253, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "", + "total": 34443, + "boys": 34443, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "MichaelWhoHasALongName", + "total": -33998, + "boys": 33998, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 33646, + "boys": 33646, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 32349, + "boys": 32349, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 32077, + "boys": 32077, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 31019, + "boys": 31019, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 30392, + "boys": 30392, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 30176, + "boys": 30176, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 30128, + "boys": 30128, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 30096, + "boys": 30096, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 29941, + "boys": 29941, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 29889, + "boys": 29889, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 29709, + "boys": 29709, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 29667, + "boys": 29667, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 29612, + "boys": 29612, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 29402, + "boys": 29402, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 29402, + "boys": 29402, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 29352, + "boys": 29352, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 29327, + "boys": 29327, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 29233, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 29210, + "boys": 29210, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 29168, + "boys": 29168, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 29124, + "boys": 29124, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 29004, + "boys": 29004, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 28995, + "boys": 28995, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 28855, + "boys": 28855, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 28718, + "boys": 28718, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 28641, + "boys": 28641, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 28467, + "boys": 28467, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 28422, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 28398, + "boys": 28398, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lisa", + "total": 28210, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 28098, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 28078, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 28038, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 27990, + "boys": 27990, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 27923, + "boys": 27923, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 27785, + "boys": 27785, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jason", + "total": 27646, + "boys": 27646, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 27592, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Ashley", + "total": 27485, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jason", + "total": 27213, + "boys": 27213, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 27197, + "boys": 27197, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 27145, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 27043, + "boys": 27043, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 27043, + "boys": 27043, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 26983, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 26856, + "boys": 26856, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 26757, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 26727, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 26602, + "boys": 26602, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 26584, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 26506, + "boys": 26506, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jason", + "total": 26404, + "boys": 26404, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jason", + "total": 26246, + "boys": 26246, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 26245, + "boys": 26245, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lisa", + "total": 26187, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 26031, + "boys": 26031, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 25977, + "boys": 25977, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 25961, + "boys": 25961, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 25906, + "boys": 25906, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 25855, + "boys": 25855, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 25802, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 25780, + "boys": 25780, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Ashley", + "total": 25645, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jason", + "total": 25611, + "boys": 25611, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 25588, + "boys": 25588, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 25420, + "boys": 25420, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 25285, + "boys": 25285, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 25079, + "boys": 25079, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 25049, + "boys": 25049, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jason", + "total": 25001, + "boys": 25001, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 24844, + "boys": 24844, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Ashley", + "total": 24838, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 24814, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Ashley", + "total": 24756, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 24721, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 24672, + "boys": 24672, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 24565, + "boys": 24565, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 24540, + "boys": 24540, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 24487, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 24440, + "boys": 24440, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 24432, + "boys": 24432, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 24422, + "boys": 24422, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 24378, + "boys": 24378, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 24228, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 24197, + "boys": 24197, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 24188, + "boys": 24188, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 24124, + "boys": 24124, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 24006, + "boys": 24006, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 23891, + "boys": 23891, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 23823, + "boys": 23823, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 23764, + "boys": 23764, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 23719, + "boys": 23719, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jason", + "total": 23710, + "boys": 23710, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lisa", + "total": 23705, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 23698, + "boys": 23698, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 23652, + "boys": 23652, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 23570, + "boys": 23570, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 23481, + "boys": 23481, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jason", + "total": 23441, + "boys": 23441, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 23265, + "boys": 23265, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Ashley", + "total": 23002, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 22988, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 22802, + "boys": 22802, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 22795, + "boys": 22795, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 22793, + "boys": 22793, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 22727, + "boys": 22727, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 22654, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lisa", + "total": 22645, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 22461, + "boys": 22461, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 22314, + "boys": 22314, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 22303, + "boys": 22303, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 22246, + "boys": 22246, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 22180, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 22137, + "boys": 22137, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 22105, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 22094, + "boys": 22094, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 22056, + "boys": 22056, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 21875, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Ashley", + "total": 21857, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 21776, + "boys": 21776, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 21764, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 21651, + "boys": 21651, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 21621, + "boys": 21621, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 21274, + "boys": 21274, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Ashley", + "total": 21261, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 21186, + "boys": 21186, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 21153, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 21111, + "boys": 21111, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 21047, + "boys": 21047, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 20941, + "boys": 20941, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Ashley", + "total": 20915, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 20861, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 20833, + "boys": 20833, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 20800, + "boys": 20800, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 20770, + "boys": 20770, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 20644, + "boys": 20644, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amanda", + "total": 20625, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 20503, + "boys": 20503, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 20378, + "boys": 20378, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 20338, + "boys": 20338, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 20306, + "boys": 20306, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 20287, + "boys": 20287, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 20259, + "boys": 20259, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Brittany", + "total": 20236, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lisa", + "total": 20218, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 20155, + "boys": 20155, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jason", + "total": 20076, + "boys": 20076, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 20066, + "boys": 20066, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 20024, + "boys": 20024, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 19891, + "boys": 19891, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amanda", + "total": 19697, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 19677, + "boys": 19677, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 19608, + "boys": 19608, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amanda", + "total": 19571, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amanda", + "total": 19506, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 19492, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 19483, + "boys": 19483, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 19414, + "boys": 19414, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 19360, + "boys": 19360, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 19318, + "boys": 19318, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Brittany", + "total": 19303, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amanda", + "total": 19268, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jason", + "total": 19194, + "boys": 19194, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 19066, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 19053, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 18985, + "boys": 18985, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 18981, + "boys": 18981, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Ashley", + "total": 18884, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 18762, + "boys": 18762, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 18761, + "boys": 18761, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 18759, + "boys": 18759, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 18747, + "boys": 18747, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amanda", + "total": 18734, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 18666, + "boys": 18666, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 18631, + "boys": 18631, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jason", + "total": 18551, + "boys": 18551, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 18460, + "boys": 18460, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amanda", + "total": 18449, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 18331, + "boys": 18331, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 18277, + "boys": 18277, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amanda", + "total": 18274, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 18243, + "boys": 18243, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 18154, + "boys": 18154, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 18145, + "boys": 18145, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 18125, + "boys": 18125, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 18100, + "boys": 18100, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Ashley", + "total": 18049, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 18045, + "boys": 18045, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 18027, + "boys": 18027, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amanda", + "total": 18017, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amanda", + "total": 18008, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 18006, + "boys": 18006, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 17948, + "boys": 17948, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 17813, + "boys": 17813, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 17770, + "boys": 17770, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 17764, + "boys": 17764, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 17763, + "boys": 17763, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 17646, + "boys": 17646, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 17643, + "boys": 17643, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 17606, + "boys": 17606, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 17504, + "boys": 17504, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lisa", + "total": 17461, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 17438, + "boys": 17438, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 17437, + "boys": 17437, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 17415, + "boys": 17415, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 17380, + "boys": 17380, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 17340, + "boys": 17340, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Mark", + "total": 17312, + "boys": 17312, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 17299, + "boys": 17299, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 17272, + "boys": 17272, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 17114, + "boys": 17114, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 17029, + "boys": 17029, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 16945, + "boys": 16945, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 16941, + "boys": 16941, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 16898, + "boys": 16898, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jason", + "total": 16877, + "boys": 16877, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amy", + "total": 16818, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 16812, + "boys": 16812, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 16795, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 16791, + "boys": 16791, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 16791, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 16732, + "boys": 16732, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 16687, + "boys": 16687, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 16676, + "boys": 16676, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 16627, + "boys": 16627, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 16607, + "boys": 16607, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 16600, + "boys": 16600, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 16591, + "boys": 16591, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 16563, + "boys": 16563, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 16534, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amanda", + "total": 16531, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 16524, + "boys": 16524, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 16488, + "boys": 16488, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 16437, + "boys": 16437, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 16368, + "boys": 16368, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amy", + "total": 16364, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 16346, + "boys": 16346, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Ashley", + "total": 16339, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Mary", + "total": 16292, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Mark", + "total": 16266, + "boys": 16266, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 16248, + "boys": 16248, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jason", + "total": 16246, + "boys": 16246, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 16196, + "boys": 16196, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 16194, + "boys": 16194, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 16189, + "boys": 16189, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 16166, + "boys": 16166, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 16157, + "boys": 16157, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 16062, + "boys": 16062, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 16033, + "boys": 16033, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 15969, + "boys": 15969, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 15942, + "boys": 15942, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 15927, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 15894, + "boys": 15894, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 15881, + "boys": 15881, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 15859, + "boys": 15859, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 15828, + "boys": 15828, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 15807, + "boys": 15807, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 15786, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 15778, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 15769, + "boys": 15769, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 15759, + "boys": 15759, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Mark", + "total": 15722, + "boys": 15722, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Mark", + "total": 15711, + "boys": 15711, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 15682, + "boys": 15682, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 15660, + "boys": 15660, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Angela", + "total": 15563, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 15556, + "boys": 15556, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 15550, + "boys": 15550, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 15547, + "boys": 15547, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 15518, + "boys": 15518, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 15513, + "boys": 15513, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 15502, + "boys": 15502, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 15486, + "boys": 15486, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 15446, + "boys": 15446, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 15434, + "boys": 15434, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 15425, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 15397, + "boys": 15397, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 15386, + "boys": 15386, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 15382, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Mark", + "total": 15361, + "boys": 15361, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 15361, + "boys": 15361, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 15317, + "boys": 15317, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 15297, + "boys": 15297, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 15295, + "boys": 15295, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 15293, + "boys": 15293, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Michelle", + "total": 15274, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amy", + "total": 15272, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 15268, + "boys": 15268, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 15268, + "boys": 15268, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 15262, + "boys": 15262, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 15252, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 15234, + "boys": 15234, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 15228, + "boys": 15228, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 15217, + "boys": 15217, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 15217, + "boys": 15217, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 15193, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Richard", + "total": 15138, + "boys": 15138, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amanda", + "total": 15110, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Brittany", + "total": 15095, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 15094, + "boys": 15094, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 15065, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 15063, + "boys": 15063, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Michelle", + "total": 15055, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 14988, + "boys": 14988, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 14986, + "boys": 14986, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 14969, + "boys": 14969, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 14956, + "boys": 14956, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Angela", + "total": 14936, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 14920, + "boys": 14920, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 14914, + "boys": 14914, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 14897, + "boys": 14897, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lisa", + "total": 14864, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 14819, + "boys": 14819, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 14813, + "boys": 14813, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 14810, + "boys": 14810, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 14800, + "boys": 14800, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Austin", + "total": 14779, + "boys": 14779, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 14753, + "boys": 14753, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 14747, + "boys": 14747, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 14720, + "boys": 14720, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Michelle", + "total": 14695, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 14657, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 14626, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 14591, + "boys": 14591, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Austin", + "total": 14582, + "boys": 14582, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 14578, + "boys": 14578, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 14571, + "boys": 14571, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 14510, + "boys": 14510, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Michelle", + "total": 14491, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Angela", + "total": 14465, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 14464, + "boys": 14464, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Mark", + "total": 14434, + "boys": 14434, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 14427, + "boys": 14427, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Karen", + "total": 14427, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 14406, + "boys": 14406, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 14405, + "boys": 14405, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 14398, + "boys": 14398, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amy", + "total": 14378, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 14344, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 14324, + "boys": 14324, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 14299, + "boys": 14299, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "total": 14252, + "boys": 14252, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 14243, + "boys": 14243, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Austin", + "total": 14238, + "boys": 14238, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 14234, + "boys": 14234, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 14214, + "boys": 14214, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 14213, + "boys": 14213, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 14178, + "boys": 14178, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 14175, + "boys": 14175, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 14169, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 14139, + "boys": 14139, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 14131, + "boys": 14131, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "total": 14126, + "boys": 14126, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 14106, + "boys": 14106, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 14104, + "boys": 14104, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 14080, + "boys": 14080, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 14067, + "boys": 14067, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 14064, + "boys": 14064, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "total": 14025, + "boys": 14025, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 14023, + "boys": 14023, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Richard", + "total": 14013, + "boys": 14013, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Richard", + "total": 13990, + "boys": 13990, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 13976, + "boys": 13976, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Brittany", + "total": 13957, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 13956, + "boys": 13956, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 13944, + "boys": 13944, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 13940, + "boys": 13940, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 13928, + "boys": 13928, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 13928, + "boys": 13928, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 13923, + "boys": 13923, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 13915, + "boys": 13915, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Angela", + "total": 13907, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 13898, + "boys": 13898, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 13896, + "boys": 13896, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Ashley", + "total": 13874, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 13850, + "boys": 13850, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Richard", + "total": 13827, + "boys": 13827, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 13826, + "boys": 13826, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 13826, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jason", + "total": 13818, + "boys": 13818, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 13815, + "boys": 13815, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 13790, + "boys": 13790, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Mary", + "total": 13787, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amy", + "total": 13777, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 13772, + "boys": 13772, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 13732, + "boys": 13732, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 13725, + "boys": 13725, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 13714, + "boys": 13714, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Angela", + "total": 13707, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 13702, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Austin", + "total": 13689, + "boys": 13689, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 13682, + "boys": 13682, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 13671, + "boys": 13671, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 13667, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 13662, + "boys": 13662, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "total": 13660, + "boys": 13660, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 13657, + "boys": 13657, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 13628, + "boys": 13628, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 13626, + "boys": 13626, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 13625, + "boys": 13625, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 13624, + "boys": 13624, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 13619, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 13615, + "boys": 13615, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 13606, + "boys": 13606, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Scott", + "total": 13603, + "boys": 13603, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 13595, + "boys": 13595, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 13573, + "boys": 13573, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 13571, + "boys": 13571, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 13562, + "boys": 13562, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 13540, + "boys": 13540, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 13520, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 13513, + "boys": 13513, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 13494, + "boys": 13494, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 13471, + "boys": 13471, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "total": 13468, + "boys": 13468, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 13460, + "boys": 13460, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Austin", + "total": 13447, + "boys": 13447, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 13434, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 13433, + "boys": 13433, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 13430, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 13410, + "boys": 13410, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 13395, + "boys": 13395, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 13383, + "boys": 13383, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 13374, + "boys": 13374, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 13370, + "boys": 13370, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 13341, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 13327, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 13300, + "boys": 13300, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 13288, + "boys": 13288, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "total": 13285, + "boys": 13285, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 13232, + "boys": 13232, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 13198, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 13195, + "boys": 13195, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 13153, + "boys": 13153, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 13143, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 13130, + "boys": 13130, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 13128, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 13111, + "boys": 13111, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 13089, + "boys": 13089, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 13085, + "boys": 13085, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 13082, + "boys": 13082, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Zachary", + "total": 13078, + "boys": 13078, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amy", + "total": 13071, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 13055, + "boys": 13055, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 13053, + "boys": 13053, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 13042, + "boys": 13042, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 13041, + "boys": 13041, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amy", + "total": 13037, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Michelle", + "total": 13032, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 13029, + "boys": 13029, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 13021, + "boys": 13021, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jason", + "total": 13005, + "boys": 13005, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 12983, + "boys": 12983, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 12980, + "boys": 12980, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 12975, + "boys": 12975, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Michelle", + "total": 12966, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Brittany", + "total": 12956, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 12955, + "boys": 12955, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 12953, + "boys": 12953, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 12948, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 12938, + "boys": 12938, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 12931, + "boys": 12931, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 12924, + "boys": 12924, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 12918, + "boys": 12918, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Richard", + "total": 12879, + "boys": 12879, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Richard", + "total": 12869, + "boys": 12869, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Angela", + "total": 12869, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 12839, + "boys": 12839, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Zachary", + "total": 12832, + "boys": 12832, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 12830, + "boys": 12830, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 12829, + "boys": 12829, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 12829, + "boys": 12829, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 12826, + "boys": 12826, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Zachary", + "total": 12818, + "boys": 12818, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 12815, + "boys": 12815, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 12813, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 12806, + "boys": 12806, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 12800, + "boys": 12800, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 12799, + "boys": 12799, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Angela", + "total": 12797, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 12794, + "boys": 12794, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 12770, + "boys": 12770, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 12769, + "boys": 12769, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Angela", + "total": 12741, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amanda", + "total": 12720, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 12714, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 12713, + "boys": 12713, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 12683, + "boys": 12683, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 12672, + "boys": 12672, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeremy", + "total": 12653, + "boys": 12653, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 12648, + "boys": 12648, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 12647, + "boys": 12647, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 12646, + "boys": 12646, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 12643, + "boys": 12643, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 12622, + "boys": 12622, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 12596, + "boys": 12596, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Angela", + "total": 12586, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 12572, + "boys": 12572, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Scott", + "total": 12568, + "boys": 12568, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 12544, + "boys": 12544, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Scott", + "total": 12542, + "boys": 12542, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 12527, + "boys": 12527, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Hannah", + "total": 12523, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 12509, + "boys": 12509, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 12462, + "boys": 12462, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeremy", + "total": 12457, + "boys": 12457, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 12428, + "boys": 12428, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 12427, + "boys": 12427, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 12423, + "boys": 12423, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 12420, + "boys": 12420, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 12395, + "boys": 12395, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 12394, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 12386, + "boys": 12386, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 12363, + "boys": 12363, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Heather", + "total": 12362, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lisa", + "total": 12353, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Heather", + "total": 12329, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amy", + "total": 12321, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amy", + "total": 12316, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 12306, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 12298, + "boys": 12298, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 12285, + "boys": 12285, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 12282, + "boys": 12282, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 12279, + "boys": 12279, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 12270, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 12261, + "boys": 12261, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 12248, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Mary", + "total": 12241, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 12230, + "boys": 12230, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 12228, + "boys": 12228, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 12216, + "boys": 12216, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 12207, + "boys": 12207, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 12201, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 12195, + "boys": 12195, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 12192, + "boys": 12192, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 12179, + "boys": 12179, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "total": 12176, + "boys": 12176, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Heather", + "total": 12173, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 12158, + "boys": 12158, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 12158, + "boys": 12158, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 12153, + "boys": 12153, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 12143, + "boys": 12143, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 12135, + "boys": 12135, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 12123, + "boys": 12123, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 12122, + "boys": 12122, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 12120, + "boys": 12120, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 12114, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 12112, + "boys": 12112, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 12106, + "boys": 12106, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Angela", + "total": 12104, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 12095, + "boys": 12095, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Michelle", + "total": 12089, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 12088, + "boys": 12088, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 12070, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Austin", + "total": 12066, + "boys": 12066, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 12065, + "boys": 12065, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 12058, + "boys": 12058, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Adam", + "total": 12048, + "boys": 12048, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 12043, + "boys": 12043, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 12040, + "boys": 12040, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 12036, + "boys": 12036, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 12014, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 12005, + "boys": 12005, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 11988, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 11968, + "boys": 11968, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emma", + "total": 11968, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Angela", + "total": 11965, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 11955, + "boys": 11955, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Hannah", + "total": 11953, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 11939, + "boys": 11939, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 11931, + "boys": 11931, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 11929, + "boys": 11929, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 11914, + "boys": 11914, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 11903, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Ashley", + "total": 11892, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 11889, + "boys": 11889, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jason", + "total": 11882, + "boys": 11882, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 11882, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 11877, + "boys": 11877, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 11876, + "boys": 11876, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 11859, + "boys": 11859, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Adam", + "total": 11857, + "boys": 11857, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 11856, + "boys": 11856, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 11849, + "boys": 11849, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Hannah", + "total": 11831, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 11830, + "boys": 11830, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 11828, + "boys": 11828, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 11815, + "boys": 11815, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 11806, + "boys": 11806, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 11788, + "boys": 11788, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Brittany", + "total": 11787, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 11777, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 11773, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Madison", + "total": 11766, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 11765, + "boys": 11765, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 11759, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 11753, + "boys": 11753, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 11740, + "boys": 11740, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 11739, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 11734, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Zachary", + "total": 11733, + "boys": 11733, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeremy", + "total": 11732, + "boys": 11732, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 11718, + "boys": 11718, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ethan", + "total": 11711, + "boys": 11711, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Madison", + "total": 11699, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 11688, + "boys": 11688, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 11676, + "boys": 11676, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 11675, + "boys": 11675, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 11669, + "boys": 11669, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 11638, + "boys": 11638, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 11633, + "boys": 11633, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 11630, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 11628, + "boys": 11628, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 11624, + "boys": 11624, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amanda", + "total": 11616, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 11614, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 11613, + "boys": 11613, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 11609, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 11605, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 11591, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 11585, + "boys": 11585, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 11578, + "boys": 11578, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 11553, + "boys": 11553, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeremy", + "total": 11550, + "boys": 11550, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 11545, + "boys": 11545, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 11544, + "boys": 11544, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 11538, + "boys": 11538, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 11537, + "boys": 11537, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 11515, + "boys": 11515, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 11514, + "boys": 11514, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 11505, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Angela", + "total": 11504, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 11503, + "boys": 11503, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Hannah", + "total": 11502, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 11501, + "boys": 11501, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Angela", + "total": 11494, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 11494, + "boys": 11494, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Zachary", + "total": 11491, + "boys": 11491, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 11489, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 11482, + "boys": 11482, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Michelle", + "total": 11479, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 11467, + "boys": 11467, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeremy", + "total": 11465, + "boys": 11465, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Mark", + "total": 11462, + "boys": 11462, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ethan", + "total": 11453, + "boys": 11453, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 11442, + "boys": 11442, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tammy", + "total": 11441, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 11438, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Heather", + "total": 11421, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 11421, + "boys": 11421, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Heather", + "total": 11420, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amy", + "total": 11412, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 11407, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 11406, + "boys": 11406, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Hannah", + "total": 11402, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 11399, + "boys": 11399, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 11393, + "boys": 11393, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 11391, + "boys": 11391, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emma", + "total": 11389, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 11387, + "boys": 11387, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 11385, + "boys": 11385, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 11378, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 11371, + "boys": 11371, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 11371, + "boys": 11371, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 11361, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Angela", + "total": 11353, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 11349, + "boys": 11349, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 11345, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 11344, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 11344, + "boys": 11344, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 11344, + "boys": 11344, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Brittany", + "total": 11338, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 11332, + "boys": 11332, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 11301, + "boys": 11301, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 11293, + "boys": 11293, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 11293, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Scott", + "total": 11290, + "boys": 11290, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Angela", + "total": 11275, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 11270, + "boys": 11270, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 11270, + "boys": 11270, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 11253, + "boys": 11253, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 11253, + "boys": 11253, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 11218, + "boys": 11218, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 11216, + "boys": 11216, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 11182, + "boys": 11182, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Scott", + "total": 11182, + "boys": 11182, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ethan", + "total": 11177, + "boys": 11177, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Cody", + "total": 11177, + "boys": 11177, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 11174, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 11165, + "boys": 11165, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 11153, + "boys": 11153, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Susan", + "total": 11137, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 11137, + "boys": 11137, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Zachary", + "total": 11136, + "boys": 11136, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 11127, + "boys": 11127, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 11126, + "boys": 11126, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 11124, + "boys": 11124, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 11124, + "boys": 11124, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Heather", + "total": 11122, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 11120, + "boys": 11120, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 11117, + "boys": 11117, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 11110, + "boys": 11110, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 11109, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Michelle", + "total": 11103, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Scott", + "total": 11094, + "boys": 11094, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 11081, + "boys": 11081, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 11074, + "boys": 11074, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 11073, + "boys": 11073, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Samantha", + "total": 11070, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 11064, + "boys": 11064, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Heather", + "total": 11038, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Karen", + "total": 11038, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 11032, + "boys": 11032, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 11024, + "boys": 11024, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Taylor", + "total": 11013, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 11011, + "boys": 11011, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tammy", + "total": 11008, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Richard", + "total": 11003, + "boys": 11003, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 10998, + "boys": 10998, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Samantha", + "total": 10990, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 10989, + "boys": 10989, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Zachary", + "total": 10987, + "boys": 10987, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 10983, + "boys": 10983, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 10970, + "boys": 10970, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 10959, + "boys": 10959, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 10957, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 10946, + "boys": 10946, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ethan", + "total": 10941, + "boys": 10941, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 10939, + "boys": 10939, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeremy", + "total": 10937, + "boys": 10937, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 10932, + "boys": 10932, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tammy", + "total": 10911, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 10904, + "boys": 10904, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 10903, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Brittany", + "total": 10885, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 10884, + "boys": 10884, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Madison", + "total": 10866, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 10860, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Scott", + "total": 10858, + "boys": 10858, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 10855, + "boys": 10855, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 10850, + "boys": 10850, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Madison", + "total": 10823, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 10808, + "boys": 10808, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 10803, + "boys": 10803, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 10799, + "boys": 10799, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 10797, + "boys": 10797, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 10793, + "boys": 10793, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Madison", + "total": 10792, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amanda", + "total": 10790, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Zachary", + "total": 10786, + "boys": 10786, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 10764, + "boys": 10764, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 10735, + "boys": 10735, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Samantha", + "total": 10734, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 10731, + "boys": 10731, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 10721, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Heather", + "total": 10719, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 10716, + "boys": 10716, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 10716, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Taylor", + "total": 10685, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Ashley", + "total": 10680, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emma", + "total": 10679, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 10678, + "boys": 10678, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Heather", + "total": 10677, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amy", + "total": 10663, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 10659, + "boys": 10659, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Cody", + "total": 10657, + "boys": 10657, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 10651, + "boys": 10651, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kenneth", + "total": 10641, + "boys": 10641, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 10632, + "boys": 10632, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Cody", + "total": 10627, + "boys": 10627, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tammy", + "total": 10611, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 10605, + "boys": 10605, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Taylor", + "total": 10604, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ethan", + "total": 10562, + "boys": 10562, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 10561, + "boys": 10561, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 10538, + "boys": 10538, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 10527, + "boys": 10527, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 10524, + "boys": 10524, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Zachary", + "total": 10519, + "boys": 10519, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 10518, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 10515, + "boys": 10515, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kayla", + "total": 10515, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Hannah", + "total": 10514, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Samantha", + "total": 10511, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amy", + "total": 10508, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 10505, + "boys": 10505, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 10504, + "boys": 10504, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 10500, + "boys": 10500, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 10482, + "boys": 10482, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 10472, + "boys": 10472, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 10471, + "boys": 10471, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 10470, + "boys": 10470, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 10451, + "boys": 10451, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amy", + "total": 10448, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Mary", + "total": 10445, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 10436, + "boys": 10436, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tammy", + "total": 10425, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 10423, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 10419, + "boys": 10419, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Heather", + "total": 10418, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 10413, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 10408, + "boys": 10408, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ethan", + "total": 10408, + "boys": 10408, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 10407, + "boys": 10407, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "total": 10397, + "boys": 10397, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 10378, + "boys": 10378, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 10376, + "boys": 10376, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 10368, + "boys": 10368, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kyle", + "total": 10367, + "boys": 10367, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 10359, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 10358, + "boys": 10358, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "William", + "total": 10356, + "boys": 10356, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 10355, + "boys": 10355, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 10344, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Madison", + "total": 10337, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Heather", + "total": 10331, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amanda", + "total": 10324, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 10317, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Scott", + "total": 10301, + "boys": 10301, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 10297, + "boys": 10297, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 10285, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 10284, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Paul", + "total": 10277, + "boys": 10277, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 10273, + "boys": 10273, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Taylor", + "total": 10267, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Hannah", + "total": 10250, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 10248, + "boys": 10248, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 10236, + "boys": 10236, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 10221, + "boys": 10221, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Austin", + "total": 10214, + "boys": 10214, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Adam", + "total": 10212, + "boys": 10212, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 10184, + "boys": 10184, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 10182, + "boys": 10182, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 10180, + "boys": 10180, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Megan", + "total": 10159, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Crystal", + "total": 10159, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Megan", + "total": 10153, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tammy", + "total": 10151, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Megan", + "total": 10151, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Adam", + "total": 10147, + "boys": 10147, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emma", + "total": 10136, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 10136, + "boys": 10136, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 10129, + "boys": 10129, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Zachary", + "total": 10113, + "boys": 10113, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Susan", + "total": 10099, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 10096, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 10095, + "boys": 10095, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 10095, + "boys": 10095, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 10075, + "boys": 10075, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 10073, + "boys": 10073, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 10058, + "boys": 10058, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Taylor", + "total": 10057, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 10043, + "boys": 10043, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Samantha", + "total": 10041, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tammy", + "total": 10037, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Heather", + "total": 10027, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 10018, + "boys": 10018, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lisa", + "total": 10013, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 10011, + "boys": 10011, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 10006, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 9999, + "boys": 9999, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Zachary", + "total": 9995, + "boys": 9995, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 9993, + "boys": 9993, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 9981, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 9975, + "boys": 9975, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 9973, + "boys": 9973, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Adam", + "total": 9972, + "boys": 9972, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 9972, + "boys": 9972, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 9967, + "boys": 9967, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Patricia", + "total": 9965, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 9949, + "boys": 9949, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 9943, + "boys": 9943, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 9932, + "boys": 9932, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Madison", + "total": 9925, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Michelle", + "total": 9919, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 9913, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Madison", + "total": 9911, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kayla", + "total": 9906, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 9898, + "boys": 9898, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 9892, + "boys": 9892, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 9891, + "boys": 9891, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 9889, + "boys": 9889, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 9882, + "boys": 9882, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Madison", + "total": 9875, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 9870, + "boys": 9870, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Cody", + "total": 9869, + "boys": 9869, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Brittany", + "total": 9868, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Taylor", + "total": 9859, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 9856, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 9856, + "boys": 9856, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 9851, + "boys": 9851, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ethan", + "total": 9845, + "boys": 9845, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Paul", + "total": 9845, + "boys": 9845, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jason", + "total": 9838, + "boys": 9838, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 9836, + "boys": 9836, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 9833, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 9828, + "boys": 9828, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 9824, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 9816, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 9805, + "boys": 9805, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 9805, + "boys": 9805, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 9798, + "boys": 9798, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 9780, + "boys": 9780, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 9778, + "boys": 9778, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 9776, + "boys": 9776, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 9774, + "boys": 9774, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 9761, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 9759, + "boys": 9759, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kyle", + "total": 9752, + "boys": 9752, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 9734, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kyle", + "total": 9732, + "boys": 9732, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 9725, + "boys": 9725, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Samantha", + "total": 9710, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kenneth", + "total": 9709, + "boys": 9709, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Megan", + "total": 9708, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 9701, + "boys": 9701, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 9689, + "boys": 9689, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amy", + "total": 9685, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 9680, + "boys": 9680, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Mark", + "total": 9676, + "boys": 9676, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 9674, + "boys": 9674, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 9658, + "boys": 9658, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 9651, + "boys": 9651, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 9651, + "boys": 9651, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Alexis", + "total": 9648, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Mary", + "total": 9644, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Hannah", + "total": 9643, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Megan", + "total": 9641, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Angela", + "total": 9636, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Hannah", + "total": 9628, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 9628, + "boys": 9628, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 9606, + "boys": 9606, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emma", + "total": 9596, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Adam", + "total": 9584, + "boys": 9584, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 9581, + "boys": 9581, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Mary", + "total": 9581, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 9576, + "boys": 9576, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emma", + "total": 9570, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 9567, + "boys": 9567, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 9563, + "boys": 9563, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 9552, + "boys": 9552, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ethan", + "total": 9551, + "boys": 9551, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Megan", + "total": 9547, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Paul", + "total": 9547, + "boys": 9547, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 9544, + "boys": 9544, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 9544, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Susan", + "total": 9543, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Zachary", + "total": 9536, + "boys": 9536, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 9530, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kyle", + "total": 9524, + "boys": 9524, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 9520, + "boys": 9520, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 9519, + "boys": 9519, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 9518, + "boys": 9518, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 9516, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 9505, + "boys": 9505, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 9500, + "boys": 9500, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 9480, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 9478, + "boys": 9478, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 9477, + "boys": 9477, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 9471, + "boys": 9471, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 9466, + "boys": 9466, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Donna", + "total": 9464, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 9462, + "boys": 9462, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Karen", + "total": 9445, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeremy", + "total": 9440, + "boys": 9440, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 9434, + "boys": 9434, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kyle", + "total": 9430, + "boys": 9430, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 9428, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 9427, + "boys": 9427, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Heather", + "total": 9426, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 9418, + "boys": 9418, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kyle", + "total": 9416, + "boys": 9416, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Richard", + "total": 9408, + "boys": 9408, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 9406, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 9404, + "boys": 9404, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 9399, + "boys": 9399, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 9382, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 9379, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 9370, + "boys": 9370, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 9368, + "boys": 9368, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 9359, + "boys": 9359, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Austin", + "total": 9356, + "boys": 9356, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Alexis", + "total": 9351, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Madison", + "total": 9330, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 9327, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Heather", + "total": 9314, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 9310, + "boys": 9310, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 9303, + "boys": 9303, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 9296, + "boys": 9296, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 9289, + "boys": 9289, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Samantha", + "total": 9284, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 9280, + "boys": 9280, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 9266, + "boys": 9266, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 9266, + "boys": 9266, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 9264, + "boys": 9264, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kyle", + "total": 9262, + "boys": 9262, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 9261, + "boys": 9261, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Zachary", + "total": 9255, + "boys": 9255, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 9249, + "boys": 9249, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amber", + "total": 9249, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Heather", + "total": 9249, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 9246, + "boys": 9246, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Crystal", + "total": 9238, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 9236, + "boys": 9236, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 9234, + "boys": 9234, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amber", + "total": 9229, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Mark", + "total": 9225, + "boys": 9225, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Taylor", + "total": 9217, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 9216, + "boys": 9216, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Cynthia", + "total": 9212, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 9212, + "boys": 9212, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 9212, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Samantha", + "total": 9208, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 9207, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 9199, + "boys": 9199, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 9197, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 9192, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 9192, + "boys": 9192, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 9188, + "boys": 9188, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Paul", + "total": 9186, + "boys": 9186, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Ashley", + "total": 9179, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 9177, + "boys": 9177, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 9173, + "boys": 9173, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 9172, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Pamela", + "total": 9158, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Megan", + "total": 9156, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 9141, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 9140, + "boys": 9140, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tiffany", + "total": 9140, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Ashley", + "total": 9139, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 9126, + "boys": 9126, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kayla", + "total": 9117, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 9116, + "boys": 9116, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 9113, + "boys": 9113, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 9109, + "boys": 9109, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 9109, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amber", + "total": 9099, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 9091, + "boys": 9091, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 9086, + "boys": 9086, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Megan", + "total": 9079, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 9068, + "boys": 9068, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lauren", + "total": 9050, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Heather", + "total": 9050, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 9049, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 9045, + "boys": 9045, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 9043, + "boys": 9043, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 9042, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 9042, + "boys": 9042, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 9031, + "boys": 9031, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Nicole", + "total": 9026, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amber", + "total": 9019, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 9018, + "boys": 9018, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 9017, + "boys": 9017, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 9013, + "boys": 9013, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "total": 9007, + "boys": 9007, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 9006, + "boys": 9006, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kenneth", + "total": 9003, + "boys": 9003, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 8995, + "boys": 8995, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "total": 8993, + "boys": 8993, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 8990, + "boys": 8990, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 8977, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 8976, + "boys": 8976, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Gregory", + "total": 8976, + "boys": 8976, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 8962, + "boys": 8962, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 8960, + "boys": 8960, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 8950, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 8947, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 8946, + "boys": 8946, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lauren", + "total": 8945, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 8945, + "boys": 8945, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 8944, + "boys": 8944, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 8937, + "boys": 8937, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amy", + "total": 8923, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 8915, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 8909, + "boys": 8909, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Crystal", + "total": 8909, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 8908, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tracy", + "total": 8895, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Nicole", + "total": 8890, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 8884, + "boys": 8884, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 8880, + "boys": 8880, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 8866, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 8865, + "boys": 8865, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Cody", + "total": 8847, + "boys": 8847, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 8847, + "boys": 8847, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Adam", + "total": 8846, + "boys": 8846, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 8840, + "boys": 8840, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amanda", + "total": 8831, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 8817, + "boys": 8817, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 8805, + "boys": 8805, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Nicole", + "total": 8805, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 8802, + "boys": 8802, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 8798, + "boys": 8798, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeremy", + "total": 8797, + "boys": 8797, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amanda", + "total": 8796, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 8790, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 8782, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Madison", + "total": 8782, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 8774, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 8773, + "boys": 8773, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 8768, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Alexander", + "total": 8768, + "boys": 8768, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 8764, + "boys": 8764, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 8763, + "boys": 8763, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 8762, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 8761, + "boys": 8761, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Alexander", + "total": 8754, + "boys": 8754, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Nicole", + "total": 8754, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Linda", + "total": 8750, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 8749, + "boys": 8749, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kyle", + "total": 8748, + "boys": 8748, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 8730, + "boys": 8730, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 8727, + "boys": 8727, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeremy", + "total": 8726, + "boys": 8726, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 8725, + "boys": 8725, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emma", + "total": 8724, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 8724, + "boys": 8724, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Austin", + "total": 8723, + "boys": 8723, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lisa", + "total": 8721, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 8716, + "boys": 8716, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Paul", + "total": 8713, + "boys": 8713, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 8712, + "boys": 8712, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kayla", + "total": 8710, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 8684, + "boys": 8684, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 8681, + "boys": 8681, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "NY", + "gender": "boy", + "name": "Michael", + "total": 8676, + "boys": 8676, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Karen", + "total": 8664, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 8664, + "boys": 8664, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 8663, + "boys": 8663, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 8659, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Cody", + "total": 8637, + "boys": 8637, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 8636, + "boys": 8636, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Samantha", + "total": 8633, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jordan", + "total": 8626, + "boys": 8626, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Ashley", + "total": 8619, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 8614, + "boys": 8614, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Paul", + "total": 8611, + "boys": 8611, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 8611, + "boys": 8611, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Angela", + "total": 8604, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 8599, + "boys": 8599, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Mark", + "total": 8593, + "boys": 8593, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jordan", + "total": 8587, + "boys": 8587, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 8585, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Heather", + "total": 8582, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tiffany", + "total": 8581, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amber", + "total": 8563, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 8558, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Megan", + "total": 8556, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 8555, + "boys": 8555, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "NY", + "gender": "boy", + "name": "Michael", + "total": 8545, + "boys": 8545, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 8544, + "boys": 8544, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 8542, + "boys": 8542, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Pamela", + "total": 8540, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Alexis", + "total": 8538, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 8538, + "boys": 8538, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kelly", + "total": 8538, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 8536, + "boys": 8536, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Teresa", + "total": 8531, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 8529, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kenneth", + "total": 8527, + "boys": 8527, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Mary", + "total": 8525, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 8524, + "boys": 8524, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 8522, + "boys": 8522, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Scott", + "total": 8518, + "boys": 8518, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 8517, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 8512, + "boys": 8512, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Alexander", + "total": 8506, + "boys": 8506, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 8505, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Noah", + "total": 8500, + "boys": 8500, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 8499, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Susan", + "total": 8491, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kayla", + "total": 8486, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Michelle", + "total": 8484, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Adam", + "total": 8481, + "boys": 8481, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Richard", + "total": 8476, + "boys": 8476, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Michael", + "total": 8472, + "boys": 8472, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jason", + "total": 8472, + "boys": 8472, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 8463, + "boys": 8463, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 8453, + "boys": 8453, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 8448, + "boys": 8448, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "total": 8445, + "boys": 8445, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Patricia", + "total": 8442, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Michelle", + "total": 8439, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Madison", + "total": 8438, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Zachary", + "total": 8438, + "boys": 8438, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 8432, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 8429, + "boys": 8429, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Hannah", + "total": 8428, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amber", + "total": 8428, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 8427, + "boys": 8427, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Brittany", + "total": 8418, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tiffany", + "total": 8416, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 8412, + "boys": 8412, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Julie", + "total": 8402, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 8401, + "boys": 8401, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 8395, + "boys": 8395, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 8394, + "boys": 8394, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 8390, + "boys": 8390, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Austin", + "total": 8387, + "boys": 8387, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 8383, + "boys": 8383, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amber", + "total": 8383, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kayla", + "total": 8378, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 8374, + "boys": 8374, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 8369, + "boys": 8369, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 8369, + "boys": 8369, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 8363, + "boys": 8363, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 8353, + "boys": 8353, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Gregory", + "total": 8353, + "boys": 8353, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 8351, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Crystal", + "total": 8350, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Megan", + "total": 8347, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amber", + "total": 8346, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Cynthia", + "total": 8339, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rebecca", + "total": 8339, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Megan", + "total": 8339, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kayla", + "total": 8334, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tiffany", + "total": 8333, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lauren", + "total": 8328, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 8322, + "boys": 8322, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 8320, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Dylan", + "total": 8318, + "boys": 8318, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 8316, + "boys": 8316, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 8316, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 8315, + "boys": 8315, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Zachary", + "total": 8313, + "boys": 8313, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Brittany", + "total": 8310, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kyle", + "total": 8302, + "boys": 8302, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 8302, + "boys": 8302, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 8302, + "boys": 8302, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 8300, + "boys": 8300, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 8296, + "boys": 8296, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Alexander", + "total": 8295, + "boys": 8295, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 8295, + "boys": 8295, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Brenda", + "total": 8292, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Hannah", + "total": 8289, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 8286, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 8282, + "boys": 8282, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 8281, + "boys": 8281, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Crystal", + "total": 8276, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Noah", + "total": 8275, + "boys": 8275, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Olivia", + "total": 8271, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 8267, + "boys": 8267, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 8267, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 8264, + "boys": 8264, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 8262, + "boys": 8262, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kyle", + "total": 8257, + "boys": 8257, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amy", + "total": 8253, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 8246, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 8245, + "boys": 8245, + "SUM(num_california)": 8245, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 8243, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Samantha", + "total": 8243, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 8233, + "boys": 8233, + "SUM(num_california)": 8233, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 8230, + "boys": 8230, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 8223, + "boys": 8223, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lauren", + "total": 8222, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 8219, + "boys": 8219, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Adam", + "total": 8213, + "boys": 8213, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amy", + "total": 8210, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amber", + "total": 8195, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "NY", + "gender": "boy", + "name": "Michael", + "total": 8194, + "boys": 8194, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 8186, + "boys": 8186, + "SUM(num_california)": 8186, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 8185, + "boys": 8185, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Taylor", + "total": 8183, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 8181, + "boys": 8181, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 8181, + "boys": 8181, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Alexis", + "total": 8180, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Nicole", + "total": 8177, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Donna", + "total": 8173, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 8172, + "boys": 8172, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 8162, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 8162, + "boys": 8162, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 8159, + "boys": 8159, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 8157, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 8149, + "boys": 8149, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Olivia", + "total": 8144, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 8140, + "boys": 8140, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Nicole", + "total": 8140, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "total": 8137, + "boys": 8137, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Alexis", + "total": 8136, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ethan", + "total": 8133, + "boys": 8133, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 8132, + "boys": 8132, + "SUM(num_california)": 8132, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kenneth", + "total": 8128, + "boys": 8128, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Julie", + "total": 8127, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 8123, + "boys": 8123, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 8121, + "boys": 8121, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 8120, + "boys": 8120, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 8119, + "boys": 8119, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 8111, + "boys": 8111, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 8109, + "boys": 8109, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Michelle", + "total": 8103, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 8097, + "boys": 8097, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 8092, + "boys": 8092, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 8092, + "boys": 8092, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 8092, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Dylan", + "total": 8089, + "boys": 8089, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Abigail", + "total": 8087, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tiffany", + "total": 8086, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 8085, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Julie", + "total": 8085, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Scott", + "total": 8085, + "boys": 8085, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 8083, + "boys": 8083, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Pamela", + "total": 8081, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 8079, + "boys": 8079, + "SUM(num_california)": 8079, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Samantha", + "total": 8079, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Crystal", + "total": 8079, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Samantha", + "total": 8078, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tammy", + "total": 8073, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 8069, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 8066, + "boys": 8066, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 8059, + "boys": 8059, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amber", + "total": 8058, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lisa", + "total": 8058, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 8057, + "boys": 8057, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 8057, + "boys": 8057, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 8051, + "boys": 8051, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Logan", + "total": 8048, + "boys": 8048, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeremy", + "total": 8042, + "boys": 8042, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 8033, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Michelle", + "total": 8031, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Michelle", + "total": 8030, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Richard", + "total": 8026, + "boys": 8026, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Angela", + "total": 8026, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Hannah", + "total": 8021, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 8020, + "boys": 8020, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Logan", + "total": 8020, + "boys": 8020, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 8017, + "boys": 8017, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 8015, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 8012, + "boys": 8012, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 8004, + "boys": 8004, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Julie", + "total": 8002, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 8000, + "boys": 8000, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tiffany", + "total": 7999, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "NY", + "gender": "boy", + "name": "Michael", + "total": 7998, + "boys": 7998, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rebecca", + "total": 7997, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 7995, + "boys": 7995, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 7992, + "boys": 7992, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Abigail", + "total": 7990, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 7985, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 7984, + "boys": 7984, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 7975, + "boys": 7975, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 7971, + "boys": 7971, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 7969, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 7968, + "boys": 7968, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Olivia", + "total": 7964, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 7963, + "boys": 7963, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 7962, + "boys": 7962, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 7958, + "boys": 7958, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Courtney", + "total": 7957, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "NY", + "gender": "boy", + "name": "Michael", + "total": 7952, + "boys": 7952, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 7951, + "boys": 7951, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 7947, + "boys": 7947, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 7947, + "boys": 7947, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Adam", + "total": 7945, + "boys": 7945, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 7945, + "boys": 7945, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rachel", + "total": 7944, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kayla", + "total": 7944, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 7942, + "boys": 7942, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Alexander", + "total": 7940, + "boys": 7940, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Abigail", + "total": 7928, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 7922, + "boys": 7922, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Olivia", + "total": 7920, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 7920, + "boys": 7920, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kenneth", + "total": 7920, + "boys": 7920, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tiffany", + "total": 7916, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 7915, + "boys": 7915, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 7915, + "boys": 7915, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Olivia", + "total": 7915, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 7908, + "boys": 7908, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "NY", + "gender": "boy", + "name": "Michael", + "total": 7907, + "boys": 7907, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sandra", + "total": 7905, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kayla", + "total": 7905, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Megan", + "total": 7905, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jordan", + "total": 7905, + "boys": 7905, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Gregory", + "total": 7903, + "boys": 7903, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 7902, + "boys": 7902, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "NY", + "gender": "boy", + "name": "John", + "total": 7900, + "boys": 7900, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 7897, + "boys": 7897, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 7897, + "boys": 7897, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 7895, + "boys": 7895, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 7894, + "boys": 7894, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 7893, + "boys": 7893, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Abigail", + "total": 7893, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 7893, + "boys": 7893, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "total": 7888, + "boys": 7888, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Alexander", + "total": 7887, + "boys": 7887, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 7884, + "boys": 7884, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Alexander", + "total": 7879, + "boys": 7879, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 7878, + "boys": 7878, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Noah", + "total": 7875, + "boys": 7875, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Chelsea", + "total": 7875, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Noah", + "total": 7868, + "boys": 7868, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 7864, + "boys": 7864, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Alexis", + "total": 7858, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 7855, + "boys": 7855, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 7851, + "boys": 7851, + "SUM(num_california)": 7851, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Laura", + "total": 7846, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Susan", + "total": 7841, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kelly", + "total": 7835, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 7835, + "boys": 7835, + "SUM(num_california)": 7835, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 7835, + "boys": 7835, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "total": 7831, + "boys": 7831, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Adam", + "total": 7828, + "boys": 7828, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Hannah", + "total": 7827, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Alexander", + "total": 7821, + "boys": 7821, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Abigail", + "total": 7819, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jason", + "total": 7808, + "boys": 7808, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Scott", + "total": 7803, + "boys": 7803, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 7801, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "total": 7801, + "boys": 7801, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 7800, + "boys": 7800, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 7792, + "boys": 7792, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lisa", + "total": 7789, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rebecca", + "total": 7788, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 7788, + "boys": 7788, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Nicole", + "total": 7786, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 7780, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 7775, + "boys": 7775, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rachel", + "total": 7761, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Dylan", + "total": 7760, + "boys": 7760, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jordan", + "total": 7760, + "boys": 7760, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 7758, + "boys": 7758, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Alexander", + "total": 7755, + "boys": 7755, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Gregory", + "total": 7753, + "boys": 7753, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 7748, + "boys": 7748, + "SUM(num_california)": 7748, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Zachary", + "total": 7740, + "boys": 7740, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 7740, + "boys": 7740, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Alexis", + "total": 7739, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Nicole", + "total": 7739, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Samuel", + "total": 7737, + "boys": 7737, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 7733, + "boys": 7733, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Abigail", + "total": 7724, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 7722, + "boys": 7722, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 7721, + "boys": 7721, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "James", + "total": 7719, + "boys": 7719, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Karen", + "total": 7708, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Nicole", + "total": 7706, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Chad", + "total": 7706, + "boys": 7706, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 7699, + "boys": 7699, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lauren", + "total": 7699, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jordan", + "total": 7698, + "boys": 7698, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rachel", + "total": 7692, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 7689, + "boys": 7689, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Ashley", + "total": 7684, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ronald", + "total": 7683, + "boys": 7683, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 7678, + "boys": 7678, + "SUM(num_california)": 7678, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 7677, + "boys": 7677, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 7677, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Alexander", + "total": 7676, + "boys": 7676, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 7667, + "boys": 7667, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Crystal", + "total": 7660, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Gregory", + "total": 7660, + "boys": 7660, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Alexander", + "total": 7660, + "boys": 7660, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 7659, + "boys": 7659, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Dylan", + "total": 7655, + "boys": 7655, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 7654, + "boys": 7654, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 7654, + "boys": 7654, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 7653, + "boys": 7653, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rebecca", + "total": 7653, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 7650, + "boys": 7650, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amanda", + "total": 7649, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Taylor", + "total": 7647, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rachel", + "total": 7646, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 7645, + "boys": 7645, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Alexander", + "total": 7641, + "boys": 7641, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Alexander", + "total": 7639, + "boys": 7639, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 7636, + "boys": 7636, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 7636, + "boys": 7636, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 7632, + "boys": 7632, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christopher", + "total": 7631, + "boys": 7631, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 7631, + "boys": 7631, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Olivia", + "total": 7626, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Donald", + "total": 7624, + "boys": 7624, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Richard", + "total": 7623, + "boys": 7623, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 7622, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 7619, + "boys": 7619, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rachel", + "total": 7615, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Dylan", + "total": 7612, + "boys": 7612, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 7609, + "boys": 7609, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 7608, + "boys": 7608, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeremy", + "total": 7606, + "boys": 7606, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 7602, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 7598, + "boys": 7598, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Samuel", + "total": 7596, + "boys": 7596, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Hunter", + "total": 7596, + "boys": 7596, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amber", + "total": 7596, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jordan", + "total": 7596, + "boys": 7596, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 7593, + "boys": 7593, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Richard", + "total": 7590, + "boys": 7590, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Samuel", + "total": 7589, + "boys": 7589, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Travis", + "total": 7587, + "boys": 7587, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 7587, + "boys": 7587, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 7587, + "boys": 7587, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 7586, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 7580, + "boys": 7580, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Laura", + "total": 7579, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 7579, + "boys": 7579, + "SUM(num_california)": 7579, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Paul", + "total": 7578, + "boys": 7578, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Aaron", + "total": 7578, + "boys": 7578, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Aaron", + "total": 7576, + "boys": 7576, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rachel", + "total": 7575, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Megan", + "total": 7574, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 7566, + "boys": 7566, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 7566, + "boys": 7566, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 7563, + "boys": 7563, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 7562, + "boys": 7562, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Nicole", + "total": 7561, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 7561, + "boys": 7561, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Alexander", + "total": 7561, + "boys": 7561, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rachel", + "total": 7560, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Heather", + "total": 7560, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Aaron", + "total": 7556, + "boys": 7556, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeremy", + "total": 7554, + "boys": 7554, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 7554, + "boys": 7554, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 7551, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Abigail", + "total": 7540, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "total": 7538, + "boys": 7538, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 7536, + "boys": 7536, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lisa", + "total": 7535, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 7534, + "boys": 7534, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rachel", + "total": 7529, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 7527, + "boys": 7527, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 7527, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Samantha", + "total": 7524, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeremy", + "total": 7523, + "boys": 7523, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 7522, + "boys": 7522, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 7520, + "boys": 7520, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lisa", + "total": 7517, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Ashley", + "total": 7515, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Taylor", + "total": 7515, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 7513, + "boys": 7513, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Aaron", + "total": 7512, + "boys": 7512, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 7511, + "boys": 7511, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 7511, + "boys": 7511, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sandra", + "total": 7511, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Alexander", + "total": 7510, + "boys": 7510, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jordan", + "total": 7504, + "boys": 7504, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sharon", + "total": 7499, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Madison", + "total": 7497, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeremy", + "total": 7494, + "boys": 7494, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Chad", + "total": 7492, + "boys": 7492, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 7492, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Alexander", + "total": 7491, + "boys": 7491, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Isabella", + "total": 7490, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 7489, + "boys": 7489, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Noah", + "total": 7488, + "boys": 7488, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Heather", + "total": 7487, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amber", + "total": 7487, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amber", + "total": 7484, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 7482, + "boys": 7482, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 7478, + "boys": 7478, + "SUM(num_california)": 7478, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 7477, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 7473, + "boys": 7473, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Dylan", + "total": 7472, + "boys": 7472, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Julie", + "total": 7469, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Chad", + "total": 7469, + "boys": 7469, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Samuel", + "total": 7465, + "boys": 7465, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 7465, + "boys": 7465, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rachel", + "total": 7465, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lisa", + "total": 7460, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Samuel", + "total": 7459, + "boys": 7459, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 7457, + "boys": 7457, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 7456, + "boys": 7456, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 7454, + "boys": 7454, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Mark", + "total": 7453, + "boys": 7453, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amy", + "total": 7453, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Alexis", + "total": 7452, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rebecca", + "total": 7449, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 7448, + "boys": 7448, + "SUM(num_california)": 7448, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joshua", + "total": 7447, + "boys": 7447, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Teresa", + "total": 7443, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Gregory", + "total": 7438, + "boys": 7438, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Julie", + "total": 7436, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 7432, + "boys": 7432, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Karen", + "total": 7415, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rachel", + "total": 7411, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rebecca", + "total": 7408, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 7407, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tiffany", + "total": 7406, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Cody", + "total": 7402, + "boys": 7402, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ronald", + "total": 7394, + "boys": 7394, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 7394, + "boys": 7394, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 7393, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 7392, + "boys": 7392, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Patricia", + "total": 7391, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Chad", + "total": 7390, + "boys": 7390, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 7388, + "boys": 7388, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tina", + "total": 7388, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 7386, + "boys": 7386, + "SUM(num_california)": 7386, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rebecca", + "total": 7380, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Michelle", + "total": 7377, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Isabella", + "total": 7376, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 7373, + "boys": 7373, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 7372, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 7370, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Christina", + "total": 7368, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kyle", + "total": 7367, + "boys": 7367, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Samuel", + "total": 7367, + "boys": 7367, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Logan", + "total": 7364, + "boys": 7364, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 7363, + "boys": 7363, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 7361, + "boys": 7361, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Julie", + "total": 7359, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ronald", + "total": 7357, + "boys": 7357, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 7354, + "boys": 7354, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Travis", + "total": 7354, + "boys": 7354, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 7353, + "boys": 7353, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jordan", + "total": 7347, + "boys": 7347, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Gary", + "total": 7347, + "boys": 7347, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "total": 7346, + "boys": 7346, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Alexander", + "total": 7346, + "boys": 7346, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Michelle", + "total": 7340, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 7336, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Christina", + "total": 7335, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amy", + "total": 7335, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 7329, + "boys": 7329, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Cynthia", + "total": 7329, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 7329, + "boys": 7329, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 7327, + "boys": 7327, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Samuel", + "total": 7321, + "boys": 7321, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 7321, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Samuel", + "total": 7317, + "boys": 7317, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rachel", + "total": 7316, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 7310, + "boys": 7310, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Deborah", + "total": 7309, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Abigail", + "total": 7304, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 7304, + "boys": 7304, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Dylan", + "total": 7298, + "boys": 7298, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lauren", + "total": 7294, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 7292, + "boys": 7292, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rachel", + "total": 7292, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 7291, + "boys": 7291, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 7288, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 7288, + "boys": 7288, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 7282, + "boys": 7282, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Laura", + "total": 7280, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 7279, + "boys": 7279, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rebecca", + "total": 7276, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Susan", + "total": 7276, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Pamela", + "total": 7274, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kelly", + "total": 7270, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tiffany", + "total": 7270, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 7268, + "boys": 7268, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Brenda", + "total": 7268, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rebecca", + "total": 7268, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Andrew", + "total": 7262, + "boys": 7262, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Richard", + "total": 7262, + "boys": 7262, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 7259, + "boys": 7259, + "SUM(num_california)": 7259, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Isabella", + "total": 7253, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Logan", + "total": 7247, + "boys": 7247, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 7247, + "boys": 7247, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 7246, + "boys": 7246, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rachel", + "total": 7243, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 7243, + "boys": 7243, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1973-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 7242, + "boys": 7242, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 7238, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lori", + "total": 7233, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rachel", + "total": 7232, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Logan", + "total": 7226, + "boys": 7226, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 7225, + "boys": 7225, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tracy", + "total": 7224, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 7210, + "boys": 7210, + "SUM(num_california)": 7210, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 7209, + "boys": 7209, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 7205, + "boys": 7205, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Gregory", + "total": 7204, + "boys": 7204, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 7202, + "boys": 7202, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Richard", + "total": 7199, + "boys": 7199, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 7195, + "boys": 7195, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 7194, + "boys": 7194, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Olivia", + "total": 7193, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 7183, + "boys": 7183, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 7181, + "boys": 7181, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 7181, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Samuel", + "total": 7177, + "boys": 7177, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Donna", + "total": 7174, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Logan", + "total": 7173, + "boys": 7173, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 7172, + "boys": 7172, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Crystal", + "total": 7170, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 7169, + "boys": 7169, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Courtney", + "total": 7168, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 7166, + "boys": 7166, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Noah", + "total": 7165, + "boys": 7165, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "total": 7159, + "boys": 7159, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Shannon", + "total": 7156, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 7156, + "boys": 7156, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Aaron", + "total": 7155, + "boys": 7155, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 7155, + "boys": 7155, + "SUM(num_california)": 7155, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 7155, + "boys": 7155, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Megan", + "total": 7155, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Alexander", + "total": 7153, + "boys": 7153, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jordan", + "total": 7151, + "boys": 7151, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 7150, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "total": 7150, + "boys": 7150, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 7149, + "boys": 7149, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 7148, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 7148, + "boys": 7148, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 7147, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Richard", + "total": 7143, + "boys": 7143, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Logan", + "total": 7143, + "boys": 7143, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 7142, + "boys": 7142, + "SUM(num_california)": 7142, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amanda", + "total": 7135, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 7131, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Richard", + "total": 7130, + "boys": 7130, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Linda", + "total": 7126, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Todd", + "total": 7124, + "boys": 7124, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Logan", + "total": 7114, + "boys": 7114, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 7113, + "boys": 7113, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Danielle", + "total": 7107, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 7107, + "boys": 7107, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Brittany", + "total": 7106, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Richard", + "total": 7100, + "boys": 7100, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tina", + "total": 7098, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Aaron", + "total": 7089, + "boys": 7089, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kimberly", + "total": 7088, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amber", + "total": 7081, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Hunter", + "total": 7077, + "boys": 7077, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Hannah", + "total": 7076, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Nicole", + "total": 7072, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 7071, + "boys": 7071, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 7071, + "boys": 7071, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Samuel", + "total": 7066, + "boys": 7066, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 7066, + "boys": 7066, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tina", + "total": 7065, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Erin", + "total": 7061, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 7060, + "boys": 7060, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Megan", + "total": 7060, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emma", + "total": 7055, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Aaron", + "total": 7046, + "boys": 7046, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 7042, + "boys": 7042, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1975-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rebecca", + "total": 7042, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Scott", + "total": 7037, + "boys": 7037, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Teresa", + "total": 7036, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ronald", + "total": 7034, + "boys": 7034, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Noah", + "total": 7033, + "boys": 7033, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Pamela", + "total": 7028, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Richard", + "total": 7028, + "boys": 7028, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 7025, + "boys": 7025, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Hannah", + "total": 7022, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rebecca", + "total": 7022, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "David", + "total": 7021, + "boys": 7021, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kayla", + "total": 7017, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Donald", + "total": 7013, + "boys": 7013, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Todd", + "total": 7008, + "boys": 7008, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Mary", + "total": 7006, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 7005, + "boys": 7005, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kenneth", + "total": 6999, + "boys": 6999, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Cameron", + "total": 6993, + "boys": 6993, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Mark", + "total": 6992, + "boys": 6992, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kyle", + "total": 6991, + "boys": 6991, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 6989, + "boys": 6989, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 6977, + "boys": 6977, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Christina", + "total": 6971, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jason", + "total": 6969, + "boys": 6969, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 6968, + "boys": 6968, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kelly", + "total": 6968, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 6967, + "boys": 6967, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 6962, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Daniel", + "total": 6958, + "boys": 6958, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Joseph", + "total": 6958, + "boys": 6958, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Noah", + "total": 6958, + "boys": 6958, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lauren", + "total": 6957, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Dylan", + "total": 6949, + "boys": 6949, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Caleb", + "total": 6949, + "boys": 6949, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Chad", + "total": 6948, + "boys": 6948, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "CA", + "gender": "girl", + "name": "Jessica", + "total": 6946, + "boys": 0, + "SUM(num_california)": 6946, + "%pct_boys": 0 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 6942, + "boys": 6942, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1974-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 6941, + "boys": 6941, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tracy", + "total": 6941, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Todd", + "total": 6939, + "boys": 6939, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Adam", + "total": 6937, + "boys": 6937, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sandra", + "total": 6935, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Matthew", + "total": 6931, + "boys": 6931, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Samuel", + "total": 6928, + "boys": 6928, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tina", + "total": 6927, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Deborah", + "total": 6926, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Mark", + "total": 6926, + "boys": 6926, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Elijah", + "total": 6924, + "boys": 6924, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "David", + "total": 6923, + "boys": 6923, + "SUM(num_california)": 6923, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Michelle", + "total": 6922, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 6922, + "boys": 6922, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Pamela", + "total": 6922, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "NY", + "gender": "boy", + "name": "John", + "total": 6920, + "boys": 6920, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Aaron", + "total": 6917, + "boys": 6917, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lauren", + "total": 6916, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Melissa", + "total": 6914, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 6913, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Courtney", + "total": 6910, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Megan", + "total": 6908, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 6907, + "boys": 6907, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Gary", + "total": 6907, + "boys": 6907, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rachel", + "total": 6907, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Aaron", + "total": 6900, + "boys": 6900, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 6896, + "boys": 6896, + "SUM(num_california)": 6896, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 6895, + "boys": 6895, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Shannon", + "total": 6892, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jordan", + "total": 6891, + "boys": 6891, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Cameron", + "total": 6891, + "boys": 6891, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kelly", + "total": 6890, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "John", + "total": 6889, + "boys": 6889, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Hunter", + "total": 6889, + "boys": 6889, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 6886, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Caleb", + "total": 6884, + "boys": 6884, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Aaron", + "total": 6883, + "boys": 6883, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Steven", + "total": 6883, + "boys": 6883, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Donald", + "total": 6883, + "boys": 6883, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 6880, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 6874, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Samuel", + "total": 6874, + "boys": 6874, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tiffany", + "total": 6874, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Olivia", + "total": 6873, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sarah", + "total": 6871, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Dylan", + "total": 6870, + "boys": 6870, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 6870, + "boys": 6870, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Michelle", + "total": 6868, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Christian", + "total": 6868, + "boys": 6868, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 6866, + "boys": 6866, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Zachary", + "total": 6866, + "boys": 6866, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 6866, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Danielle", + "total": 6863, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 6863, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lisa", + "total": 6862, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "April", + "total": 6854, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 6854, + "boys": 6854, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Justin", + "total": 6852, + "boys": 6852, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Laura", + "total": 6850, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Samantha", + "total": 6845, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sophia", + "total": 6845, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "CA", + "gender": "girl", + "name": "Jessica", + "total": 6843, + "boys": 0, + "SUM(num_california)": 6843, + "%pct_boys": 0 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "NY", + "gender": "boy", + "name": "Michael", + "total": 6841, + "boys": 6841, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 6837, + "boys": 6837, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kevin", + "total": 6837, + "boys": 6837, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 6836, + "boys": 6836, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeremy", + "total": 6832, + "boys": 6832, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lori", + "total": 6832, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Laura", + "total": 6831, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 6825, + "boys": 6825, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 6825, + "boys": 6825, + "SUM(num_california)": 6825, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Aaron", + "total": 6822, + "boys": 6822, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nicholas", + "total": 6821, + "boys": 6821, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Aaron", + "total": 6821, + "boys": 6821, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "David", + "total": 6820, + "boys": 6820, + "SUM(num_california)": 6820, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 6805, + "boys": 6805, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1996-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kyle", + "total": 6805, + "boys": 6805, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Aaron", + "total": 6804, + "boys": 6804, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 6795, + "boys": 6795, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tina", + "total": 6794, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeremy", + "total": 6791, + "boys": 6791, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jamie", + "total": 6781, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Ashley", + "total": 6780, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 6780, + "boys": 6780, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Alexis", + "total": 6778, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 6769, + "boys": 6769, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tina", + "total": 6769, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Adam", + "total": 6768, + "boys": 6768, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Todd", + "total": 6767, + "boys": 6767, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Erin", + "total": 6764, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 6764, + "boys": 6764, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 6760, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Hunter", + "total": 6759, + "boys": 6759, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "David", + "total": 6757, + "boys": 6757, + "SUM(num_california)": 6757, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 6755, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 6750, + "boys": 6750, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Nicole", + "total": 6748, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 6746, + "boys": 6746, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Christopher", + "total": 6744, + "boys": 6744, + "SUM(num_california)": 6744, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Heather", + "total": 6743, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amy", + "total": 6741, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 6737, + "boys": 6737, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Julie", + "total": 6735, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lauren", + "total": 6733, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Courtney", + "total": 6730, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 6728, + "boys": 6728, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Angela", + "total": 6727, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 6726, + "boys": 6726, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 6725, + "boys": 6725, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Mark", + "total": 6724, + "boys": 6724, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 6710, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 6707, + "boys": 6707, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "total": 6707, + "boys": 6707, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Nicole", + "total": 6704, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 6701, + "boys": 6701, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 6698, + "boys": 6698, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Courtney", + "total": 6694, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 6694, + "boys": 6694, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Aaron", + "total": 6694, + "boys": 6694, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Zachary", + "total": 6693, + "boys": 6693, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Chad", + "total": 6693, + "boys": 6693, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Tyler", + "total": 6689, + "boys": 6689, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Austin", + "total": 6681, + "boys": 6681, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lauren", + "total": 6678, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2002-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Hunter", + "total": 6677, + "boys": 6677, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 6675, + "boys": 6675, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Travis", + "total": 6675, + "boys": 6675, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ronald", + "total": 6674, + "boys": 6674, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1997-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rachel", + "total": 6673, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Abigail", + "total": 6657, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "April", + "total": 6653, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lori", + "total": 6651, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1972-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rebecca", + "total": 6648, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emily", + "total": 6647, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 6646, + "boys": 6646, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1976-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jamie", + "total": 6645, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2001-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Caleb", + "total": 6645, + "boys": 6645, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Tiffany", + "total": 6645, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Christopher", + "total": 6641, + "boys": 6641, + "SUM(num_california)": 6641, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Caleb", + "total": 6641, + "boys": 6641, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Rebecca", + "total": 6640, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Hannah", + "total": 6634, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Kayla", + "total": 6632, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 6632, + "boys": 6632, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "CA", + "gender": "girl", + "name": "Jessica", + "total": 6630, + "boys": 0, + "SUM(num_california)": 6630, + "%pct_boys": 0 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Emma", + "total": 6629, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 6627, + "boys": 6627, + "SUM(num_california)": 6627, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 6625, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Danielle", + "total": 6615, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Richard", + "total": 6615, + "boys": 6615, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amanda", + "total": 6614, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jennifer", + "total": 6613, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 6612, + "boys": 6612, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 6612, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Shannon", + "total": 6602, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Timothy", + "total": 6596, + "boys": 6596, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Charles", + "total": 6595, + "boys": 6595, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1992-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Austin", + "total": 6594, + "boys": 6594, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Cynthia", + "total": 6594, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1998-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kyle", + "total": 6593, + "boys": 6593, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2004-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nathan", + "total": 6591, + "boys": 6591, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Todd", + "total": 6590, + "boys": 6590, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Stephen", + "total": 6590, + "boys": 6590, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Courtney", + "total": 6586, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Ryan", + "total": 6584, + "boys": 6584, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1985-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Danielle", + "total": 6580, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 6580, + "boys": 6580, + "SUM(num_california)": 6580, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Stephen", + "total": 6579, + "boys": 6579, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 6578, + "boys": 6578, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jonathan", + "total": 6577, + "boys": 6577, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 6574, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Eric", + "total": 6572, + "boys": 6572, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1991-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Chelsea", + "total": 6571, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 6570, + "boys": 6570, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Scott", + "total": 6564, + "boys": 6564, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1969-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "David", + "total": 6563, + "boys": 6563, + "SUM(num_california)": 6563, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Samuel", + "total": 6561, + "boys": 6561, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Todd", + "total": 6557, + "boys": 6557, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "total": 6554, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Alexis", + "total": 6552, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Stephanie", + "total": 6550, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1987-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Christopher", + "total": 6549, + "boys": 6549, + "SUM(num_california)": 6549, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Robert", + "total": 6548, + "boys": 6548, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Amber", + "total": 6545, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 6545, + "boys": 6545, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2007-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Elijah", + "total": 6544, + "boys": 6544, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 6542, + "boys": 6542, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Christina", + "total": 6532, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Christopher", + "total": 6526, + "boys": 6526, + "SUM(num_california)": 6526, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1989-01-01T00:00:00", + "state": "CA", + "gender": "girl", + "name": "Jessica", + "total": 6523, + "boys": 0, + "SUM(num_california)": 6523, + "%pct_boys": 0 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brian", + "total": 6521, + "boys": 6521, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Patricia", + "total": 6521, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Erin", + "total": 6518, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1982-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Travis", + "total": 6517, + "boys": 6517, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1994-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Dylan", + "total": 6514, + "boys": 6514, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Christopher", + "total": 6509, + "boys": 6509, + "SUM(num_california)": 6509, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2003-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Brandon", + "total": 6502, + "boys": 6502, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1966-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Sharon", + "total": 6500, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Christopher", + "total": 6497, + "boys": 6497, + "SUM(num_california)": 6497, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Christopher", + "total": 6496, + "boys": 6496, + "SUM(num_california)": 6496, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Laura", + "total": 6493, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1968-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "David", + "total": 6490, + "boys": 6490, + "SUM(num_california)": 6490, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "CA", + "gender": "boy", + "name": "Michael", + "total": 6489, + "boys": 6489, + "SUM(num_california)": 6489, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1979-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "April", + "total": 6489, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "2008-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Anthony", + "total": 6489, + "boys": 6489, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1988-01-01T00:00:00", + "state": "CA", + "gender": "girl", + "name": "Jessica", + "total": 6485, + "boys": 0, + "SUM(num_california)": 6485, + "%pct_boys": 0 + }, + { + "__timestamp": "2000-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Jessica", + "total": 6481, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1999-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Lauren", + "total": 6475, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Dylan", + "total": 6475, + "boys": 6475, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Richard", + "total": 6473, + "boys": 6473, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1984-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Jacob", + "total": 6469, + "boys": 6469, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1967-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Laura", + "total": 6468, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Susan", + "total": 6462, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Heather", + "total": 6456, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1995-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Benjamin", + "total": 6454, + "boys": 6454, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1990-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Alexander", + "total": 6453, + "boys": 6453, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1981-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nathan", + "total": 6453, + "boys": 6453, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1970-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Dawn", + "total": 6453, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1980-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Nathan", + "total": 6452, + "boys": 6452, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1971-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Karen", + "total": 6450, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1965-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Barbara", + "total": 6446, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1986-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Dustin", + "total": 6443, + "boys": 6443, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1993-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Thomas", + "total": 6442, + "boys": 6442, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Elijah", + "total": 6436, + "boys": 6436, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1978-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Aaron", + "total": 6435, + "boys": 6435, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "girl", + "name": "Shannon", + "total": 6434, + "boys": 0, + "SUM(num_california)": 0, + "%pct_boys": 0 + }, + { + "__timestamp": "1983-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Kyle", + "total": 6423, + "boys": 6423, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "1977-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Scott", + "total": 6422, + "boys": 6422, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2005-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Dylan", + "total": 6419, + "boys": 6419, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + }, + { + "__timestamp": "2006-01-01T00:00:00", + "state": "other", + "gender": "boy", + "name": "Caleb", + "total": 6418, + "boys": 6418, + "SUM(num_california)": 0, + "%pct_boys": 0.0007645259938837921 + } + ], + "columns": [ + "__timestamp", + "state", + "gender", + "name", + "total", + "boys", + "SUM(num_california)", + "%pct_boys" + ] + } } - } + ] } diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-word-cloud/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-word-cloud/Stories.tsx index dea7c43485..8c9ab1b1e5 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-word-cloud/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-word-cloud/Stories.tsx @@ -26,7 +26,7 @@ export const basic = ({ width, height }) => ( chartType="word-cloud2" width={width} height={height} - queryData={{ data }} + queriesData={[{ data }]} formData={{ encoding: { color: { @@ -56,7 +56,7 @@ export const encodesColorByWordLength = ({ width, height }) => ( chartType="word-cloud2" width={width} height={height} - queryData={{ data }} + queriesData={[{ data }]} formData={{ encoding: { color: { @@ -92,7 +92,7 @@ export const encodesFontByFirstLetter = ({ width, height }) => ( chartType="word-cloud2" width={width} height={height} - queryData={{ data }} + queriesData={[{ data }]} formData={{ encoding: { color: { @@ -130,7 +130,7 @@ export const legacyShim = ({ width, height }) => ( chartType="legacy-word-cloud2" width={width} height={height} - queryData={{ data }} + queriesData={[{ data }]} formData={{ colorScheme: 'd3Category10', metric: 'sum__num', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-filter-antd/Select/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-filter-antd/Select/Stories.tsx index 61b8b8a648..c4dbeab5dc 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-filter-antd/Select/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-filter-antd/Select/Stories.tsx @@ -23,7 +23,7 @@ export const Select = ({ width, height }) => { chartType="filter_select" width={width} height={height} - queryData={{ data }} + queriesData={[{ data }]} formData={{ adhoc_filters: [], extra_filters: [], diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/stories/Basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/stories/Basic.tsx index 03438436a4..bd980d631f 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/stories/Basic.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/stories/Basic.tsx @@ -8,7 +8,7 @@ export const basic = () => ( chartType="v2-box-plot" width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ encoding: { x: { @@ -51,7 +51,7 @@ export const horizontal = () => ( chartType="v2-box-plot" width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ encoding: { y: { diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/stories/Legacy.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/stories/Legacy.tsx index a1c1392e1c..64a52fb323 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/stories/Legacy.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/stories/Legacy.tsx @@ -9,7 +9,7 @@ export const legacy = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ colorScheme: 'd3Category10', groupby: ['region'], diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/basic.tsx index 538e4df77e..37a6ead477 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/basic.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/basic.tsx @@ -47,7 +47,7 @@ export default () => ( }, }} height={400} - queryData={{ data }} + queriesData={[{ data }]} width={400} /> ); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/flush.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/flush.tsx index 3483456eed..0eebb50d88 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/flush.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/flush.tsx @@ -17,7 +17,7 @@ export default () => ( width={400} height={200} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ encoding: { x: { @@ -68,7 +68,7 @@ export default () => ( width={400} height={200} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ encoding: { x: { diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/legacy.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/legacy.tsx index 83ef4e04a4..22599f4bcd 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/legacy.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/legacy.tsx @@ -12,7 +12,7 @@ export default () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ bottomMargin: 'auto', colorScheme: 'd3Category10', @@ -41,7 +41,7 @@ export default () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ bottomMargin: 'auto', colorScheme: 'd3Category10', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/missing.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/missing.tsx index 419cfb9fec..b18131ff92 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/missing.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/missing.tsx @@ -16,7 +16,7 @@ const missing = () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data: missingData }} + queriesData={[{ data: missingData }]} formData={{ encoding: { x: { diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/timeShift.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/timeShift.tsx index 76b685afdb..ea343c1d1a 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/timeShift.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/timeShift.tsx @@ -11,7 +11,7 @@ export default () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ encoding: { x: { diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/basic.tsx index bb4cbee6e0..52ca1f0c57 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/basic.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/basic.tsx @@ -13,7 +13,7 @@ export default () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ encoding: { x: { diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/bubble.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/bubble.tsx index 98ff7c820e..8949a31229 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/bubble.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/bubble.tsx @@ -13,7 +13,7 @@ export default () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ encoding: { x: { diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/legacy.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/legacy.tsx index 583b6a2fdd..5d0532e2ed 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/legacy.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/legacy.tsx @@ -11,7 +11,7 @@ export default () => ( width={400} height={400} datasource={dummyDatasource} - queryData={{ data }} + queriesData={[{ data }]} formData={{ annotationData: {}, bottomMargin: 'auto', diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-chart/ChartDataProviderStories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-chart/ChartDataProviderStories.tsx index 40afb0a345..ff634b9a48 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-chart/ChartDataProviderStories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-chart/ChartDataProviderStories.tsx @@ -75,9 +75,7 @@ export const dataProvider = () => { height={Number(height)} // @TODO fix typing // all vis's now expect objects but api/v1/ returns an array - queryData={ - Array.isArray(payload.queryData) ? payload.queryData[0] : payload.queryData - } + queriesData={payload.queriesData} width={Number(width)} />
diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-chart/SuperChartStories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-chart/SuperChartStories.tsx index 5d00c2c698..eafc442fc3 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-chart/SuperChartStories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-chart/SuperChartStories.tsx @@ -27,7 +27,7 @@ export const basic = () => { chartType={ChartKeys.DILIGENT} width={width} height={height} - queryData={DEFAULT_QUERY_DATA} + queriesData={[DEFAULT_QUERY_DATA]} formData={{ hi: 1 }} /> ); @@ -41,7 +41,7 @@ export const container50pct = () => { chartType={ChartKeys.DILIGENT} width={width} height={height} - queryData={DEFAULT_QUERY_DATA} + queriesData={[DEFAULT_QUERY_DATA]} formData={{ hi: 1 }} /> ); @@ -56,7 +56,7 @@ export const Resizable = () => { chartType={ChartKeys.DILIGENT} width={size.width} height={size.height} - queryData={DEFAULT_QUERY_DATA} + queriesData={[DEFAULT_QUERY_DATA]} /> )} @@ -72,7 +72,7 @@ export const fixedWidth100height = () => { chartType={ChartKeys.DILIGENT} height={height} width={width} - queryData={DEFAULT_QUERY_DATA} + queriesData={[DEFAULT_QUERY_DATA]} /> ); }; @@ -87,7 +87,7 @@ export const fixedHeight100Width = () => { chartType={ChartKeys.DILIGENT} height={height} width={width} - queryData={DEFAULT_QUERY_DATA} + queriesData={[DEFAULT_QUERY_DATA]} /> ); }; @@ -102,10 +102,11 @@ export const withErrorBoundar = () => { chartType={ChartKeys.BUGGY} height={height} width={width} - queryData={DEFAULT_QUERY_DATA} + queriesData={[DEFAULT_QUERY_DATA]} /> ); }; + export const withWrapper = () => { const width = text('Vis width', '100%'); const height = text('Vis height', '100%'); @@ -115,7 +116,7 @@ export const withWrapper = () => { chartType={ChartKeys.DILIGENT} width={width} height={height} - queryData={DEFAULT_QUERY_DATA} + queriesData={[DEFAULT_QUERY_DATA]} Wrapper={({ children }) => (
With wrapper!
diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/README.md index 3bfa681a4b..c347fefc6b 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/transformProps.js index de1853a226..cfd57d1e27 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/transformProps.js +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/transformProps.js @@ -17,7 +17,7 @@ * under the License. */ export default function transformProps(chartProps) { - const { height, formData, queryData, datasource } = chartProps; + const { height, formData, queriesData, datasource } = chartProps; const { cellPadding, cellRadius, @@ -37,7 +37,7 @@ export default function transformProps(chartProps) { return { height, - data: queryData.data, + data: queriesData[0].data, cellPadding, cellRadius, cellSize, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/README.md index 0754db2ab0..e99df668a6 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/transformProps.js index ad2bf54520..4c9d09517f 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/transformProps.js +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/transformProps.js @@ -17,12 +17,12 @@ * under the License. */ export default function transformProps(chartProps) { - const { width, height, formData, queryData } = chartProps; + const { width, height, formData, queriesData } = chartProps; const { yAxisFormat, colorScheme } = formData; return { colorScheme, - data: queryData.data, + data: queriesData[0].data, height, numberFormat: yAxisFormat, width, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/README.md index 47d1caf6cc..c5fd2a607f 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/transformProps.js index 0aefbbc003..98b613dafe 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/transformProps.js +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/transformProps.js @@ -17,13 +17,13 @@ * under the License. */ export default function transformProps(chartProps) { - const { width, height, formData, queryData } = chartProps; + const { width, height, formData, queriesData } = chartProps; const { linearColorScheme, numberFormat, selectCountry } = formData; return { width, height, - data: queryData.data, + data: queriesData[0].data, country: selectCountry, linearColorScheme, numberFormat, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/README.md index 6715ff363e..0e7a0f9a23 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/transformProps.ts index dad2229e79..7bb99903de 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/transformProps.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/transformProps.ts @@ -27,15 +27,15 @@ export interface EventFlowFormData { export interface EventFlowChartProps extends ChartProps { formData: EventFlowFormData; - queryData: { + queriesData: { data: TimeseriesDataRecord[]; - }; + }[]; } export default function transformProps(chartProps: ChartProps) { - const { formData, queryData, width, height } = chartProps as EventFlowChartProps; + const { formData, queriesData, width, height } = chartProps as EventFlowChartProps; const { allColumnsX, entity, minLeafNodeEventCount } = formData; - const { data } = queryData; + const { data } = queriesData[0]; const hasData = data && data.length > 0; if (hasData) { diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/README.md index 6896c38075..5ca55d1c53 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/transformProps.js index fe47f0188c..d463407bd1 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/transformProps.js +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/transformProps.js @@ -17,12 +17,12 @@ * under the License. */ export default function transformProps(chartProps) { - const { width, height, formData, queryData } = chartProps; + const { width, height, formData, queriesData } = chartProps; const { charge, linkLength } = formData; return { charge, - data: queryData.data, + data: queriesData[0].data, height, linkLength, width, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/README.md index 774d693d54..35bb9ceb6c 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/transformProps.js index 9d9002b76c..9381250ac1 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/transformProps.js +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/transformProps.js @@ -17,7 +17,7 @@ * under the License. */ export default function transformProps(chartProps) { - const { width, height, formData, queryData } = chartProps; + const { width, height, formData, queriesData } = chartProps; const { bottomMargin, canvasImageRendering, @@ -41,7 +41,7 @@ export default function transformProps(chartProps) { return { width, height, - data: queryData.data, + data: queriesData[0].data, bottomMargin, canvasImageRendering, colorScheme: linearColorScheme, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/README.md index 8d3ee14e3d..d1f42221c6 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/transformProps.js index d4f23933c7..aeb2369091 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/transformProps.js +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/transformProps.js @@ -17,13 +17,13 @@ * under the License. */ export default function transformProps(chartProps) { - const { width, height, formData, queryData } = chartProps; + const { width, height, formData, queriesData } = chartProps; const { colorScheme, linkLength, normalized, globalOpacity, xAxisLabel, yAxisLabel } = formData; return { width, height, - data: queryData.data, + data: queriesData[0].data, binCount: parseInt(linkLength, 10), colorScheme, normalized, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/README.md index 64845e33eb..df47bc6947 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/transformProps.js index 7b40fc88e2..9fba63a88a 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/transformProps.js +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/transformProps.js @@ -17,12 +17,12 @@ * under the License. */ export default function transformProps(chartProps) { - const { height, width, formData, queryData } = chartProps; + const { height, width, formData, queriesData } = chartProps; const { horizonColorScale, seriesHeight } = formData; return { colorScale: horizonColorScale, - data: queryData.data, + data: queriesData[0].data, height, seriesHeight: parseInt(seriesHeight, 10), width, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/README.md index ae0742b485..1e30ddbb52 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/transformProps.js index 5d9d14da3f..670ed45ba6 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/transformProps.js +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/transformProps.js @@ -22,9 +22,9 @@ import { DEFAULT_POINT_RADIUS, DEFAULT_MAX_ZOOM } from './MapBox'; const NOOP = () => {}; export default function transformProps(chartProps) { - const { width, height, formData, hooks, queryData } = chartProps; + const { width, height, formData, hooks, queriesData } = chartProps; const { onError = NOOP, setControlValue = NOOP } = hooks; - const { bounds, geoJSON, hasCustomMetric, mapboxApiKey } = queryData.data; + const { bounds, geoJSON, hasCustomMetric, mapboxApiKey } = queriesData[0].data; const { clusteringRadius, globalOpacity, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/README.md index de239d0a7e..4501a096af 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/transformProps.js index 748540a4e6..e00e8076ea 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/transformProps.js +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/transformProps.js @@ -17,12 +17,12 @@ * under the License. */ export default function transformProps(chartProps) { - const { formData, queryData } = chartProps; + const { formData, queriesData } = chartProps; const { groupby, liftvaluePrecision, metrics, pvaluePrecision, significanceLevel } = formData; return { alpha: significanceLevel, - data: queryData.data, + data: queriesData[0].data, groups: groupby, liftValPrec: parseInt(liftvaluePrecision, 10), metrics, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/README.md index 867dcd3711..a983ecc065 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/transformProps.js index 6fdfed3b81..91741a4c69 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/transformProps.js +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/transformProps.js @@ -17,7 +17,7 @@ * under the License. */ export default function transformProps(chartProps) { - const { width, height, formData, queryData } = chartProps; + const { width, height, formData, queriesData } = chartProps; const { includeSeries, linearColorScheme, @@ -30,7 +30,7 @@ export default function transformProps(chartProps) { return { width, height, - data: queryData.data, + data: queriesData[0].data, includeSeries, linearColorScheme, metrics: metrics.map(m => m.label || m), diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/README.md index 71fee973d7..e3c3c5adc0 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/transformProps.js index d03701dee6..d69de4ed52 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/transformProps.js +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/transformProps.js @@ -17,7 +17,7 @@ * under the License. */ export default function transformProps(chartProps) { - const { width, height, datasource, formData, queryData } = chartProps; + const { width, height, datasource, formData, queriesData } = chartProps; const { colorScheme, dateTimeFormat, @@ -36,7 +36,7 @@ export default function transformProps(chartProps) { return { width, height, - data: queryData.data, + data: queriesData[0].data, colorScheme, dateTimeFormat, equalDateSize, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/README.md index 9366af3f8c..0480634a54 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/transformProps.js index 2f36fa5066..ac6f9f4033 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/transformProps.js +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/transformProps.js @@ -17,13 +17,13 @@ * under the License. */ export default function transformProps(chartProps) { - const { height, datasource, formData, queryData } = chartProps; + const { height, datasource, formData, queriesData } = chartProps; const { timeGrainSqla, groupby, numberFormat, dateFormat } = formData; const { columnFormats, verboseMap } = datasource; return { columnFormats, - data: queryData.data, + data: queriesData[0].data, dateFormat, granularity: timeGrainSqla, height, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/README.md index 356c9c367b..7ab2b2bdd4 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/transformProps.js index 351aa7e49a..a384841f76 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/transformProps.js +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/transformProps.js @@ -17,13 +17,13 @@ * under the License. */ export default function transformProps(chartProps) { - const { width, height, formData, queryData } = chartProps; + const { width, height, formData, queriesData } = chartProps; const { colorScheme, dateTimeFormat, numberFormat, richTooltip, roseAreaProportion } = formData; return { width, height, - data: queryData.data, + data: queriesData[0].data, colorScheme, dateTimeFormat, numberFormat, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/README.md index 640dae16ac..7bf3485b57 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/transformProps.js index 63aefc20dc..b62639a87f 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/transformProps.js +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/transformProps.js @@ -17,13 +17,13 @@ * under the License. */ export default function transformProps(chartProps) { - const { width, height, formData, queryData, margin } = chartProps; + const { width, height, formData, queriesData, margin } = chartProps; const { colorScheme } = formData; return { width, height, - data: queryData.data, + data: queriesData[0].data, colorScheme, margin, }; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/README.md index bc8ca2b71d..e0b203a5eb 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/transformProps.js index e99e9bc46c..938d30f9df 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/transformProps.js +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/transformProps.js @@ -17,13 +17,13 @@ * under the License. */ export default function transformProps(chartProps) { - const { width, height, formData, queryData } = chartProps; + const { width, height, formData, queriesData } = chartProps; const { colorScheme } = formData; return { width, height, - data: queryData.data, + data: queriesData[0].data, colorScheme, }; } diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/README.md index 37a0b1a297..18f2f2e878 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/transformProps.js index 2756f38e13..2c42e4ae2d 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/transformProps.js +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/transformProps.js @@ -17,13 +17,13 @@ * under the License. */ export default function transformProps(chartProps) { - const { width, height, formData, queryData, datasource } = chartProps; + const { width, height, formData, queriesData, datasource } = chartProps; const { colorScheme, linearColorScheme, metric, secondaryMetric } = formData; const returnProps = { width, height, - data: queryData.data, + data: queriesData[0].data, colorScheme, linearColorScheme, metrics: [metric, secondaryMetric], diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/README.md index e16f040c6f..2237029b9e 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/transformProps.ts index 901b989b32..be4d44a21f 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/transformProps.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/transformProps.ts @@ -34,16 +34,16 @@ interface QueryData { export type TableChartProps = ChartProps & { formData: FormData; - queryData: QueryData; + queriesData: QueryData[]; }; interface ColumnData { timeLag?: string | number; } export default function transformProps(chartProps: TableChartProps) { - const { height, datasource, formData, queryData } = chartProps; + const { height, datasource, formData, queriesData } = chartProps; const { columnCollection, groupby, metrics, url } = formData; - const { records, columns } = queryData.data; + const { records, columns } = queriesData[0].data; const isGroupBy = groupby?.length > 0; // When there is a "group by", diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/README.md index 11116398bc..c37a4fbc86 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/transformProps.js index 079b021637..9c6c915830 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/transformProps.js +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/transformProps.js @@ -17,7 +17,7 @@ * under the License. */ export default function transformProps(chartProps) { - const { width, height, formData, queryData } = chartProps; + const { width, height, formData, queriesData } = chartProps; const { colorScheme, treemapRatio } = formData; let { numberFormat } = formData; @@ -32,7 +32,7 @@ export default function transformProps(chartProps) { return { width, height, - data: queryData.data, + data: queriesData[0].data, colorScheme, numberFormat, treemapRatio, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/README.md index 58a7ef8284..30bb4def72 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/transformProps.js index 420b3b0ff3..ed10ba292c 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/transformProps.js +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/transformProps.js @@ -19,12 +19,12 @@ import { rgb } from 'd3-color'; export default function transformProps(chartProps) { - const { width, height, formData, queryData } = chartProps; + const { width, height, formData, queriesData } = chartProps; const { maxBubbleSize, showBubbles, linearColorScheme, colorPicker } = formData; const { r, g, b } = colorPicker; return { - data: queryData.data, + data: queriesData[0].data, width, height, maxBubbleSize: parseInt(maxBubbleSize, 10), diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/README.md index 678aa52320..7c888576a7 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/README.md @@ -39,8 +39,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/transformProps.ts index 057f565bac..54c0fd950b 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/transformProps.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/transformProps.ts @@ -23,6 +23,7 @@ import { getNumberFormatter, NumberFormats, ChartProps, + QueryData, } from '@superset-ui/core'; const TIME_COLUMN = '__timestamp'; @@ -51,13 +52,13 @@ export type BigNumberFormData = { export type BignumberChartProps = ChartProps & { formData: BigNumberFormData; - queryData: ChartProps['queryData'] & { + queriesData: (QueryData & { data?: BigNumberDatum[]; - }; + })[]; }; export default function transformProps(chartProps: BignumberChartProps) { - const { width, height, queryData, formData } = chartProps; + const { width, height, queriesData, formData } = chartProps; const { colorPicker, compareLag: compareLag_, @@ -73,7 +74,7 @@ export default function transformProps(chartProps: BignumberChartProps) { timeRangeFixed = false, } = formData; let { yAxisFormat } = formData; - const { data = [], from_dttm: fromDatetime, to_dttm: toDatetime } = queryData; + const { data = [], from_dttm: fromDatetime, to_dttm: toDatetime } = queriesData[0]; const metricName = typeof metric === 'string' ? metric : metric.label; const compareLag = Number(compareLag_) || 0; const supportTrendLine = vizType === 'big_number'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/test/transformProps.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/test/transformProps.test.ts index 76e54b5259..a2a0fb6d7f 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/test/transformProps.test.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/test/transformProps.test.ts @@ -63,10 +63,12 @@ function generateProps( ...formData, ...extraFormData, }, - queryData: { - data, - ...extraQueryData, - }, + queriesData: [ + { + data, + ...extraQueryData, + }, + ], }; } diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/README.md index c9323277b2..fbe3ce2540 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/README.md @@ -35,8 +35,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/LineMulti/LineMulti.jsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/LineMulti/LineMulti.jsx index d6a81fec64..061c8fd770 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/LineMulti/LineMulti.jsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/LineMulti/LineMulti.jsx @@ -31,7 +31,7 @@ const propTypes = { annotationData: PropTypes.object, datasource: PropTypes.object, formData: PropTypes.object, - queryData: PropTypes.object, + queriesData: PropTypes.arrayOf(PropTypes.object), rawFormData: PropTypes.object, hooks: PropTypes.shape({ onAddFilter: PropTypes.func, @@ -85,8 +85,8 @@ class LineMulti extends React.Component { } loadData(props) { - const { formData, queryData } = props; - const { slices } = queryData.data; + const { formData, queriesData } = props; + const { slices } = queriesData[0].data; const { extraFilters, filters, @@ -123,7 +123,7 @@ class LineMulti extends React.Component { }); Promise.all(promises).then(data => { - const queryDataCopy = { ...queryData }; + const queryDataCopy = { ...queriesData[0] }; queryDataCopy.data = [].concat(...data); // add null values at the edges to fix multiChart bug when series with diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/transformProps.js index 15082425be..695f2353c1 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/transformProps.js +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/transformProps.js @@ -35,7 +35,7 @@ const grabD3Format = (datasource, targetMetric) => { }; export default function transformProps(chartProps) { - const { width, height, annotationData, datasource, formData, hooks, queryData } = chartProps; + const { width, height, annotationData, datasource, formData, hooks, queriesData } = chartProps; const { onAddFilter = NOOP, onError = NOOP } = hooks; @@ -95,7 +95,7 @@ export default function transformProps(chartProps) { yAxis2Format, } = formData; - const rawData = queryData.data || []; + const rawData = queriesData[0].data || []; const data = Array.isArray(rawData) ? rawData.map(row => ({ ...row, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-choropleth-map/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-choropleth-map/README.md index a3799b3a66..fa1adc3712 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-choropleth-map/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-choropleth-map/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-choropleth-map/src/plugin/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-choropleth-map/src/plugin/transformProps.ts index 9679d8c463..07a933c08c 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-choropleth-map/src/plugin/transformProps.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-choropleth-map/src/plugin/transformProps.ts @@ -19,9 +19,9 @@ import { ChartProps } from '@superset-ui/core'; * under the License. */ export default function transformProps(chartProps: ChartProps) { - const { width, height, formData, queryData } = chartProps; + const { width, height, formData, queriesData } = chartProps; const { map, encoding } = formData; - const { data } = queryData; + const { data } = queriesData[0]; return { width, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/README.md index 30896d96fc..c873cf3ef5 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/README.md @@ -33,8 +33,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/transformProps.ts index b5ab6e1d9c..c0e1dc705e 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/transformProps.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/transformProps.ts @@ -29,8 +29,8 @@ import { extractGroupbyLabel } from '../utils/series'; import { defaultGrid, defaultTooltip, defaultYAxis } from '../defaults'; export default function transformProps(chartProps: ChartProps): EchartsProps { - const { width, height, formData, queryData } = chartProps; - const data: DataRecord[] = queryData.data || []; + const { width, height, formData, queriesData } = chartProps; + const data: DataRecord[] = queriesData[0].data || []; const { colorScheme, groupby = [], diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/transformProps.ts index b933ecda09..3e5aa4f855 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/transformProps.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/transformProps.ts @@ -55,8 +55,8 @@ export function formatPieLabel({ } export default function transformProps(chartProps: ChartProps): EchartsProps { - const { width, height, formData, queryData } = chartProps; - const data: DataRecord[] = queryData.data || []; + const { width, height, formData, queriesData } = chartProps; + const data: DataRecord[] = queriesData[0].data || []; const { colorScheme, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts index c5d5a7abd6..bdd4819380 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts @@ -51,12 +51,12 @@ import { } from './transformers'; export default function transformProps(chartProps: ChartProps): EchartsProps { - const { width, height, formData, queryData } = chartProps; + const { width, height, formData, queriesData } = chartProps; const { annotation_data: annotationData = {}, data = [], - }: { annotation_data?: AnnotationData; data?: TimeseriesDataRecord[] } = queryData; + }: { annotation_data?: AnnotationData; data?: TimeseriesDataRecord[] } = queriesData[0]; const { annotationLayers, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/BoxPlot/transformProps.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/BoxPlot/transformProps.test.ts index 652d2a5eff..6fc4f26a8d 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/BoxPlot/transformProps.test.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/BoxPlot/transformProps.test.ts @@ -35,34 +35,36 @@ describe('BoxPlot tranformProps', () => { formData, width: 800, height: 600, - queryData: { - data: [ - { - type: 'organic', - region: 'Charlotte', - 'AVG(averageprice)__mean': 1.9405512820512825, - 'AVG(averageprice)__median': 1.9025, - 'AVG(averageprice)__max': 2.505, - 'AVG(averageprice)__min': 1.4775, - 'AVG(averageprice)__q1': 1.73875, - 'AVG(averageprice)__q3': 2.105, - 'AVG(averageprice)__count': 39, - 'AVG(averageprice)__outliers': [2.735], - }, - { - type: 'organic', - region: 'Hartford Springfield', - 'AVG(averageprice)__mean': 2.231141025641026, - 'AVG(averageprice)__median': 2.265, - 'AVG(averageprice)__max': 2.595, - 'AVG(averageprice)__min': 1.862, - 'AVG(averageprice)__q1': 2.1285, - 'AVG(averageprice)__q3': 2.32625, - 'AVG(averageprice)__count': 39, - 'AVG(averageprice)__outliers': [], - }, - ], - }, + queriesData: [ + { + data: [ + { + type: 'organic', + region: 'Charlotte', + 'AVG(averageprice)__mean': 1.9405512820512825, + 'AVG(averageprice)__median': 1.9025, + 'AVG(averageprice)__max': 2.505, + 'AVG(averageprice)__min': 1.4775, + 'AVG(averageprice)__q1': 1.73875, + 'AVG(averageprice)__q3': 2.105, + 'AVG(averageprice)__count': 39, + 'AVG(averageprice)__outliers': [2.735], + }, + { + type: 'organic', + region: 'Hartford Springfield', + 'AVG(averageprice)__mean': 2.231141025641026, + 'AVG(averageprice)__median': 2.265, + 'AVG(averageprice)__max': 2.595, + 'AVG(averageprice)__min': 1.862, + 'AVG(averageprice)__q1': 2.1285, + 'AVG(averageprice)__q3': 2.32625, + 'AVG(averageprice)__count': 39, + 'AVG(averageprice)__outliers': [], + }, + ], + }, + ], }); it('should tranform chart props for viz', () => { diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Pie/transformProps.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Pie/transformProps.test.ts index fe379d486e..cb1fa82e75 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Pie/transformProps.test.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Pie/transformProps.test.ts @@ -31,12 +31,14 @@ describe('Pie tranformProps', () => { formData, width: 800, height: 600, - queryData: { - data: [ - { foo: 'Sylvester', bar: 1, sum__num: 10 }, - { foo: 'Arnold', bar: 2, sum__num: 2.5 }, - ], - }, + queriesData: [ + { + data: [ + { foo: 'Sylvester', bar: 1, sum__num: 10 }, + { foo: 'Arnold', bar: 2, sum__num: 2.5 }, + ], + }, + ], }); it('should tranform chart props for viz', () => { diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Timeseries/transformProps.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Timeseries/transformProps.test.ts index ec864620f8..aeb76714a6 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Timeseries/transformProps.test.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Timeseries/transformProps.test.ts @@ -33,17 +33,19 @@ describe('EchartsTimeseries tranformProps', () => { metric: 'sum__num', groupby: ['foo', 'bar'], }; - const queryData = { - data: [ - { 'San Francisco': 1, 'New York': 2, __timestamp: 599616000000 }, - { 'San Francisco': 3, 'New York': 4, __timestamp: 599916000000 }, - ], - }; + const queriesData = [ + { + data: [ + { 'San Francisco': 1, 'New York': 2, __timestamp: 599616000000 }, + { 'San Francisco': 3, 'New York': 4, __timestamp: 599916000000 }, + ], + }, + ]; const chartPropsConfig = { formData, width: 800, height: 600, - queryData, + queriesData, }; it('should tranform chart props for viz', () => { @@ -166,48 +168,50 @@ describe('EchartsTimeseries tranformProps', () => { ...formData, annotationLayers: [event, interval, timeseries], }, - queryData: { - ...queryData, - annotation_data: { - 'My Event': { - columns: ['start_dttm', 'end_dttm', 'short_descr', 'long_descr', 'json_metadata'], - records: [ - { - start_dttm: 0, - end_dttm: 1000, - short_descr: '', - long_descr: '', - json_metadata: null, - }, - ], - }, - 'My Interval': { - columns: ['start', 'end', 'title'], - records: [ - { - start: 2000, - end: 3000, - title: 'My Title', - }, - ], - }, - 'My Timeseries': [ - { - key: 'My Line', - values: [ + queriesData: [ + { + ...queriesData[0], + annotation_data: { + 'My Event': { + columns: ['start_dttm', 'end_dttm', 'short_descr', 'long_descr', 'json_metadata'], + records: [ { - x: 10000, - y: 11000, - }, - { - x: 20000, - y: 21000, + start_dttm: 0, + end_dttm: 1000, + short_descr: '', + long_descr: '', + json_metadata: null, }, ], }, - ], + 'My Interval': { + columns: ['start', 'end', 'title'], + records: [ + { + start: 2000, + end: 3000, + title: 'My Title', + }, + ], + }, + 'My Timeseries': [ + { + key: 'My Line', + values: [ + { + x: 10000, + y: 11000, + }, + { + x: 20000, + y: 21000, + }, + ], + }, + ], + }, }, - }, + ], }); expect(transformProps(chartProps)).toEqual( expect.objectContaining({ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/README.md index e140cfe36f..4fc4501e6d 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/transformProps.ts index d5f586bce4..fa55617d20 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/transformProps.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/transformProps.ts @@ -97,7 +97,7 @@ const isEqualColumns = (propsA: T, propsB: T) => { a.formData.tableTimestampFormat === b.formData.tableTimestampFormat && a.formData.timeGrainSqla === b.formData.timeGrainSqla && isEqualArray(a.formData.metrics, b.formData.metrics) && - isEqualArray(a.queryData?.data?.columns, b.queryData?.data?.columns) + isEqualArray(a.queriesData?.[0]?.data?.columns, b.queriesData?.[0]?.data?.columns) ); }; @@ -110,8 +110,10 @@ const processColumns = memoizeOne(function processColumns(props: TableChartProps metrics: metrics_, percentMetrics: percentMetrics_, }, - queryData: { data: { records, columns: columns_ } = {} } = {}, + queriesData, } = props; + // @ts-ignore + const { data: { records, columns: columns_ } = {} } = queriesData[0] || {}; // convert `metrics` and `percentMetrics` to the key names in `data.records` const metrics = (metrics_ ?? []).map(getMetricIdentifier); const percentMetrics = (percentMetrics_ ?? []) @@ -196,7 +198,7 @@ export default function transformProps(chartProps: TableChartProps): TableChartT height, width, formData, - queryData, + queriesData, initialValues: filters = {}, hooks: { onAddFilter: onChangeFilter }, } = chartProps; @@ -212,7 +214,7 @@ export default function transformProps(chartProps: TableChartProps): TableChartT } = formData; const [metrics, percentMetrics, columns] = processColumns(chartProps); - const data = processDataRecords(queryData?.data?.records, columns); + const data = processDataRecords(queriesData?.[0]?.data?.records, columns); return { height, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/types.ts index 9017dc0b87..bf23280aa8 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/types.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/types.ts @@ -25,6 +25,7 @@ import { DataRecord, DataRecordValue, DataRecordFilters, + QueryData, } from '@superset-ui/core'; export enum DataType { @@ -67,9 +68,9 @@ export interface TableChartFormData { export interface TableChartProps extends ChartProps { formData: TableChartFormData; - queryData: ChartProps['queryData'] & { + queriesData: (QueryData & { data?: TableChartData; - }; + })[]; } export interface TableChartTransformedProps { diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/test/testData.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/test/testData.ts index 6f9f3ba0a2..847e67fdc7 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/test/testData.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/test/testData.ts @@ -46,12 +46,14 @@ const basicChartProps = { }, hooks: {}, initialValues: {}, - queryData: { - data: { - columns: [], - records: [], + queriesData: [ + { + data: { + columns: [], + records: [], + }, }, - }, + ], formData: basicFormData, }; @@ -60,27 +62,29 @@ const basicChartProps = { */ const basic = { ...new ChartProps(basicChartProps), - queryData: { - data: { - columns: ['__timestamp', 'name', 'sum__num', 'abc.com'], - records: [ - { - __timestamp: '2020-01-01T12:34:56', - name: 'Michael', - sum__num: 2467063, - '%pct_nice': 0.123456, - 'abc.com': 'foo', - }, - { - __timestamp: 1585932584140, - name: 'Joe', - sum__num: 2467, - '%pct_nice': 0.00001, - 'abc.com': 'bar', - }, - ], + queriesData: [ + { + data: { + columns: ['__timestamp', 'name', 'sum__num', 'abc.com'], + records: [ + { + __timestamp: '2020-01-01T12:34:56', + name: 'Michael', + sum__num: 2467063, + '%pct_nice': 0.123456, + 'abc.com': 'foo', + }, + { + __timestamp: 1585932584140, + name: 'Joe', + sum__num: 2467, + '%pct_nice': 0.00001, + 'abc.com': 'bar', + }, + ], + }, }, - }, + ], }; /** @@ -101,23 +105,27 @@ const advanced = { metrics: ['sum__num'], percentMetrics: ['pct_nice'], }, - queryData: { - data: { - columns: ['name', 'sum__num', '%pct_nice'], - records: [...(basic.queryData.data?.records || [])], + queriesData: [ + { + data: { + columns: ['name', 'sum__num', '%pct_nice'], + records: [...(basic.queriesData[0].data?.records || [])], + }, }, - }, + ], }; const empty = { ...advanced, - queryData: { - ...advanced.queryData, - data: { - ...advanced.queryData.data, - records: [], + queriesData: [ + { + ...advanced.queriesData[0], + data: { + ...advanced.queriesData[0].data, + records: [], + }, }, - }, + ], }; export default { diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/README.md index c0a643ca39..ed585f9e8e 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/legacyPlugin/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/legacyPlugin/transformProps.ts index ec3cb08905..253f7fee6a 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/legacyPlugin/transformProps.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/legacyPlugin/transformProps.ts @@ -14,7 +14,7 @@ function getMetricLabel(metric: LegacyWordCloudFormData['metric']): string | und } export default function transformProps(chartProps: ChartProps): WordCloudProps { - const { width, height, formData, queryData } = chartProps; + const { width, height, formData, queriesData } = chartProps; const { colorScheme, metric, @@ -51,7 +51,7 @@ export default function transformProps(chartProps: ChartProps): WordCloudProps { }; return { - data: queryData.data, + data: queriesData[0].data, encoding, height, rotation, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/plugin/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/plugin/transformProps.ts index feaf9d0776..406e9de90d 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/plugin/transformProps.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/plugin/transformProps.ts @@ -3,11 +3,11 @@ import { WordCloudProps } from '../chart/WordCloud'; import { WordCloudFormData } from '../types'; export default function transformProps(chartProps: ChartProps): WordCloudProps { - const { width, height, formData, queryData } = chartProps; + const { width, height, formData, queriesData } = chartProps; const { encoding, rotation } = formData as WordCloudFormData; return { - data: queryData.data, + data: queriesData[0].data, encoding, height, rotation, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/test/legacyPlugin/transformProps.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/test/legacyPlugin/transformProps.test.ts index 3886df4457..dde57abb8e 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/test/legacyPlugin/transformProps.test.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/test/legacyPlugin/transformProps.test.ts @@ -16,9 +16,11 @@ describe('WordCloud tranformProps', () => { formData, width: 800, height: 600, - queryData: { - data: [{ name: 'Hulk', sum__num: 1 }], - }, + queriesData: [ + { + data: [{ name: 'Hulk', sum__num: 1 }], + }, + ], }); it('should tranform chart props for word cloud viz', () => { diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-filter-antd/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-filter-antd/README.md index 5f8347804f..7de162f36a 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-filter-antd/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-filter-antd/README.md @@ -6,16 +6,15 @@ This plugin provides native filter plugins based on AntD. ### Usage -Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to lookup this chart throughout the app. +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. Below is an example of how to use the Select filter plugin. ```js import { AntdFilterSelectPlugin } from '@superset-ui/plugin-filter-antd'; -new AntdFilterSelectPlugin() - .configure({ key: 'plugin-filter-select' }) - .register(); +new AntdFilterSelectPlugin().configure({ key: 'plugin-filter-select' }).register(); ``` Then use it via `SuperChart`. @@ -26,10 +25,10 @@ Then use it via `SuperChart`. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - // this hook gets called + // this hook gets called hooks: { setExtraFormData: extraFormData => console.log(extraFormData) }, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-filter-antd/src/Range/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-filter-antd/src/Range/transformProps.ts index 5736f16603..20b81b58ac 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-filter-antd/src/Range/transformProps.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-filter-antd/src/Range/transformProps.ts @@ -19,9 +19,9 @@ import { ChartProps, DataRecord } from '@superset-ui/core'; export default function transformProps(chartProps: ChartProps) { - const { formData, height, hooks, queryData, width } = chartProps; + const { formData, height, hooks, queriesData, width } = chartProps; const { setExtraFormData } = hooks; - const data = queryData.data as DataRecord[]; + const data = queriesData[0].data as DataRecord[]; return { data, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-filter-antd/src/Select/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-filter-antd/src/Select/transformProps.ts index f472339163..935f49f2dc 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-filter-antd/src/Select/transformProps.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-filter-antd/src/Select/transformProps.ts @@ -20,10 +20,10 @@ import { ChartProps, DataRecord } from '@superset-ui/core'; import { DEFAULT_FORM_DATA } from './types'; export default function transformProps(chartProps: ChartProps) { - const { formData, height, hooks, queryData, width } = chartProps; + const { formData, height, hooks, queriesData, width } = chartProps; const newFormData = { ...DEFAULT_FORM_DATA, ...formData }; const { setExtraFormData = () => {} } = hooks; - const data = queryData.data as DataRecord[]; + const data = queriesData[0].data as DataRecord[]; return { width, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/README.md index 3a20ad589d..662b1487a4 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/README.md @@ -28,8 +28,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/legacy/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/legacy/transformProps.ts index 051bbcfcfe..da876c900a 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/legacy/transformProps.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/legacy/transformProps.ts @@ -27,17 +27,17 @@ export type LegacyBoxPlotFormData = { export type LegacyBoxPlotChartProps = ChartProps & { formData: LegacyBoxPlotFormData; - queryData: QueryData & { + queriesData: (QueryData & { data?: RawBoxPlotDataRow[]; - }; + })[]; }; export default function transformProps(chartProps: LegacyBoxPlotChartProps) { - const { width, height, datasource, formData, queryData } = chartProps; + const { width, height, datasource, formData, queriesData } = chartProps; const { verboseMap = {} } = datasource; const { colorScheme, groupby = [], metrics = [] } = formData; - const data = (queryData.data || []).map(({ label, values }) => ({ + const data = (queriesData[0].data || []).map(({ label, values }) => ({ label, min: values.whisker_low, max: values.whisker_high, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/transformProps.ts index d54603eb13..166be7513d 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/transformProps.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/transformProps.ts @@ -5,11 +5,11 @@ import { HookProps } from '../components/BoxPlot/BoxPlot'; import { BoxPlotEncoding } from '../components/BoxPlot/Encoder'; export default function transformProps(chartProps: ChartProps) { - const { width, height, formData, queryData } = chartProps; + const { width, height, formData, queriesData } = chartProps; const { margin, theme } = formData; const encoding = formData.encoding as BoxPlotEncoding; - const data = (queryData.data as RawBoxPlotDataRow[]).map(({ label, values }) => ({ + const data = (queriesData[0].data as RawBoxPlotDataRow[]).map(({ label, values }) => ({ label, min: values.whisker_low, max: values.whisker_high, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/legacy/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/legacy/transformProps.ts index 4811646d0d..95699f105e 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/legacy/transformProps.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/legacy/transformProps.ts @@ -10,9 +10,9 @@ interface DataRow { } export default function transformProps(chartProps: ChartProps) { - const { width, height, formData, queryData } = chartProps; + const { width, height, formData, queriesData } = chartProps; const { colorScheme, xAxisLabel, xAxisFormat, yAxisLabel, yAxisFormat } = formData; - const data = queryData.data as DataRow[]; + const data = queriesData[0].data as DataRow[]; return { data: flatMap( diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/transformProps.ts index e34f599d34..b56371e0f3 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/transformProps.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/transformProps.ts @@ -3,8 +3,8 @@ import { ChartProps } from '@superset-ui/core'; import { HookProps, FormDataProps } from '../components/Line/Line'; export default function transformProps(chartProps: ChartProps) { - const { width, height, queryData } = chartProps; - const { data } = queryData; + const { width, height, queriesData } = chartProps; + const { data } = queriesData[0]; const formData = chartProps.formData as FormDataProps; const hooks = chartProps.hooks as HookProps; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/legacy/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/legacy/transformProps.ts index a01aa939c3..a3f771f7dc 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/legacy/transformProps.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/legacy/transformProps.ts @@ -13,7 +13,7 @@ interface DataRow { } export default function transformProps(chartProps: ChartProps) { - const { width, height, formData, queryData } = chartProps; + const { width, height, formData, queriesData } = chartProps; const { colorScheme, maxBubbleSize, @@ -34,7 +34,7 @@ export default function transformProps(chartProps: ChartProps) { const series = formData.series as Key; const size = formData.size as Key; const entity = formData.entity as Key; - const data = queryData.data as DataRow[]; + const data = queriesData[0].data as DataRow[]; return { data: flatMap( diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/transformProps.ts index aaa969c17e..d1fcd1fd06 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/transformProps.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/transformProps.ts @@ -3,9 +3,9 @@ import { ChartProps } from '@superset-ui/core'; import { HookProps } from '../components/ScatterPlot/ScatterPlot'; export default function transformProps(chartProps: ChartProps) { - const { width, height, formData, queryData } = chartProps; + const { width, height, formData, queriesData } = chartProps; const { encoding, margin, theme } = formData; - const { data } = queryData; + const { data } = queriesData[0]; const hooks = chartProps.hooks as HookProps; const fieldsFromHooks: (keyof HookProps)[] = [ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/README.md b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/README.md index e8d151f341..82fd927532 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/transformProps.js index 55d1e52928..8256f992b9 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/transformProps.js +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/transformProps.js @@ -28,13 +28,13 @@ function transformData(data, formData) { } export default function transformProps(chartProps) { - const { width, height, formData, queryData } = chartProps; + const { width, height, formData, queriesData } = chartProps; const { colorScheme, rotation, sizeTo, sizeFrom } = formData; return { width, height, - data: transformData(queryData.data, formData), + data: transformData(queriesData[0].data, formData), colorScheme, rotation, sizeRange: [sizeFrom, sizeTo], diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/README.md b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/README.md index 2a67e13d21..93e4f61f4c 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/README.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/README.md @@ -26,8 +26,8 @@ for more details. width={600} height={600} formData={...} - queryData={{ + queriesData={[{ data: {...}, - }} + }]} /> ``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/legacy/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/legacy/transformProps.ts index 21bd894b97..8be4fa5e94 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/legacy/transformProps.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/legacy/transformProps.ts @@ -29,7 +29,7 @@ const processData = getProcessDataFunction(); const NOOP = () => {}; export default function transformProps(chartProps: ChartProps) { - const { height, datasource, initialValues, formData, hooks, queryData, width } = chartProps; + const { height, datasource, initialValues, formData, hooks, queriesData, width } = chartProps; const { onAddFilter = NOOP } = hooks; @@ -45,7 +45,7 @@ export default function transformProps(chartProps: ChartProps) { tableTimestampFormat, timeseriesLimitMetric, } = formData; - const { records, columns } = queryData.data; + const { records, columns } = queriesData[0].data; const metrics = processMetrics({ metrics: rawMetrics, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/transformProps.ts index a8e8645d9d..4901a57cc3 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/transformProps.ts +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/transformProps.ts @@ -89,7 +89,7 @@ function transformData(data: PlainObject[], formData: PlainObject) { const NOOP = () => {}; export default function transformProps(chartProps: ChartProps) { - const { height, width, datasource, initialValues, formData, hooks, queryData } = chartProps; + const { height, width, datasource, initialValues, formData, hooks, queriesData } = chartProps; const { onAddFilter = NOOP } = hooks; @@ -105,7 +105,7 @@ export default function transformProps(chartProps: ChartProps) { tableTimestampFormat, timeseriesLimitMetric, } = formData; - const { records, columns } = transformData(queryData.data, formData); + const { records, columns } = transformData(queriesData[0].data, formData); const metrics = processMetrics({ metrics: rawMetrics, diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/storybook/stories/legacy-plugin-chart-word-cloud/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/storybook/stories/legacy-plugin-chart-word-cloud/Stories.tsx index d40a82e46a..82236655e7 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/storybook/stories/legacy-plugin-chart-word-cloud/Stories.tsx +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/storybook/stories/legacy-plugin-chart-word-cloud/Stories.tsx @@ -10,7 +10,7 @@ export default [ chartType="word-cloud" width={400} height={400} - queryData={{ data }} + queriesData={[{ data }]} formData={{ colorScheme: 'd3Category10', metric: 'sum__num',