diff --git a/packages/superset-ui-chart-controls/src/index.ts b/packages/superset-ui-chart-controls/src/index.ts index efa396c222..9526eb597c 100644 --- a/packages/superset-ui-chart-controls/src/index.ts +++ b/packages/superset-ui-chart-controls/src/index.ts @@ -32,3 +32,7 @@ export * from './components/MetricOption'; // React control components export * from './components/RadioButtonControl'; export * from './types'; + +// re-export * from pure types file may cause +// `module undefined` error in babel/webpack, +export { default as __hack__ } from './types'; diff --git a/packages/superset-ui-chart-controls/src/types.ts b/packages/superset-ui-chart-controls/src/types.ts index 0e5ae1031f..b47cc1cfd3 100644 --- a/packages/superset-ui-chart-controls/src/types.ts +++ b/packages/superset-ui-chart-controls/src/types.ts @@ -325,3 +325,5 @@ export type ControlOverrides = { export type SectionOverrides = { [P in SharedSectionAlias]?: Partial; }; + +export default {}; diff --git a/packages/superset-ui-core/src/chart/index.ts b/packages/superset-ui-core/src/chart/index.ts index 02488b61b4..83aa7c1fb3 100644 --- a/packages/superset-ui-core/src/chart/index.ts +++ b/packages/superset-ui-core/src/chart/index.ts @@ -15,6 +15,6 @@ export { default as getChartTransformPropsRegistry } from './registries/ChartTra export { default as ChartDataProvider } from './components/ChartDataProvider'; -export { SetExtraFormDataHook } from './types/Base'; +export * from './types/Base'; export * from './types/TransformFunction'; export * from './types/QueryResponse'; diff --git a/packages/superset-ui-core/src/chart/models/ChartPlugin.ts b/packages/superset-ui-core/src/chart/models/ChartPlugin.ts index 888843cb37..286a96db35 100644 --- a/packages/superset-ui-core/src/chart/models/ChartPlugin.ts +++ b/packages/superset-ui-core/src/chart/models/ChartPlugin.ts @@ -8,6 +8,7 @@ import getChartControlPanelRegistry from '../registries/ChartControlPanelRegistr import getChartTransformPropsRegistry from '../registries/ChartTransformPropsRegistrySingleton'; import { BuildQueryFunction, TransformProps } from '../types/TransformFunction'; import { ChartControlPanel } from './ChartControlPanel'; +import { ChartProps } from '..'; function IDENTITY(x: T) { return x; @@ -20,16 +21,19 @@ export type PromiseOrValueLoader = () => PromiseOrValue; export type ChartType = ComponentType; type ValueOrModuleWithValue = T | { default: T }; -interface ChartPluginConfig { +interface ChartPluginConfig< + FormData extends QueryFormData = QueryFormData, + Props extends ChartProps = ChartProps +> { metadata: ChartMetadata; /** Use buildQuery for immediate value. For lazy-loading, use loadBuildQuery. */ - buildQuery?: BuildQueryFunction; + buildQuery?: BuildQueryFunction; /** Use loadBuildQuery for dynamic import (lazy-loading) */ - loadBuildQuery?: PromiseOrValueLoader>>; + loadBuildQuery?: PromiseOrValueLoader>>; /** Use transformProps for immediate value. For lazy-loading, use loadTransformProps. */ - transformProps?: TransformProps; + transformProps?: TransformProps; /** Use loadTransformProps for dynamic import (lazy-loading) */ - loadTransformProps?: PromiseOrValueLoader>; + loadTransformProps?: PromiseOrValueLoader>>; /** Use Chart for immediate value. For lazy-loading, use loadChart. */ Chart?: ChartType; /** Use loadChart for dynamic import (lazy-loading) */ @@ -54,18 +58,21 @@ function sanitizeLoader( }; } -export default class ChartPlugin extends Plugin { +export default class ChartPlugin< + FormData extends QueryFormData = QueryFormData, + Props extends ChartProps = ChartProps +> extends Plugin { controlPanel: ChartControlPanel; metadata: ChartMetadata; - loadBuildQuery?: PromiseOrValueLoader>; + loadBuildQuery?: PromiseOrValueLoader>; - loadTransformProps: PromiseOrValueLoader; + loadTransformProps: PromiseOrValueLoader>; loadChart: PromiseOrValueLoader; - constructor(config: ChartPluginConfig) { + constructor(config: ChartPluginConfig) { super(); const { metadata, @@ -95,26 +102,24 @@ export default class ChartPlugin extend } register() { - const { key = isRequired('config.key') } = this.config; - getChartMetadataRegistry().registerValue(key as string, this.metadata); - getChartComponentRegistry().registerLoader(key as string, this.loadChart); - getChartControlPanelRegistry().registerValue(key as string, this.controlPanel); - getChartTransformPropsRegistry().registerLoader(key as string, this.loadTransformProps); + const key: string = this.config.key || isRequired('config.key'); + getChartMetadataRegistry().registerValue(key, this.metadata); + getChartComponentRegistry().registerLoader(key, this.loadChart); + getChartControlPanelRegistry().registerValue(key, this.controlPanel); + getChartTransformPropsRegistry().registerLoader(key, this.loadTransformProps); if (this.loadBuildQuery) { - getChartBuildQueryRegistry().registerLoader(key as string, this.loadBuildQuery); + getChartBuildQueryRegistry().registerLoader(key, this.loadBuildQuery); } - return this; } unregister() { - const { key = isRequired('config.key') } = this.config; - getChartMetadataRegistry().remove(key as string); - getChartComponentRegistry().remove(key as string); - getChartControlPanelRegistry().remove(key as string); - getChartTransformPropsRegistry().remove(key as string); - getChartBuildQueryRegistry().remove(key as string); - + const key: string = this.config.key || isRequired('config.key'); + getChartMetadataRegistry().remove(key); + getChartComponentRegistry().remove(key); + getChartControlPanelRegistry().remove(key); + getChartTransformPropsRegistry().remove(key); + getChartBuildQueryRegistry().remove(key); return this; } diff --git a/packages/superset-ui-core/src/chart/registries/ChartTransformPropsRegistrySingleton.ts b/packages/superset-ui-core/src/chart/registries/ChartTransformPropsRegistrySingleton.ts index 05f57b8255..9267aa107e 100644 --- a/packages/superset-ui-core/src/chart/registries/ChartTransformPropsRegistrySingleton.ts +++ b/packages/superset-ui-core/src/chart/registries/ChartTransformPropsRegistrySingleton.ts @@ -1,7 +1,7 @@ import { Registry, makeSingleton, OverwritePolicy } from '../..'; import { TransformProps } from '../types/TransformFunction'; -class ChartTransformPropsRegistry extends Registry { +class ChartTransformPropsRegistry extends Registry> { constructor() { super({ name: 'ChartTransformProps', overwritePolicy: OverwritePolicy.WARN }); } diff --git a/packages/superset-ui-core/src/chart/types/QueryResponse.ts b/packages/superset-ui-core/src/chart/types/QueryResponse.ts index 86811641e5..2e289f0516 100644 --- a/packages/superset-ui-core/src/chart/types/QueryResponse.ts +++ b/packages/superset-ui-core/src/chart/types/QueryResponse.ts @@ -1,7 +1,7 @@ /** * Types for query response */ -import { DataRecordValue, DataRecord } from '../../types'; +import { DataRecordValue, DataRecord, ChartDataResponseResult } from '../../types'; import { PlainObject } from './Base'; export interface TimeseriesDataRecord extends DataRecord { @@ -13,5 +13,15 @@ export interface DataRecordFilters { [key: string]: DataRecordValue[]; } -// the response json from query API -export type QueryData = PlainObject; +/** + * Legacy queried data for charts. List of arbitrary dictionaries generated + * by `viz.py`. + * TODO: clean this up when all charts have been migrated to v1 API. + */ +export type LegacyQueryData = PlainObject; + +/** + * Ambiguous query data type. Reserved for the generic QueryFormData. + * Don't use this for a specific chart (since you know which API it uses already). + */ +export type QueryData = LegacyQueryData | ChartDataResponseResult; diff --git a/packages/superset-ui-core/src/chart/types/TransformFunction.ts b/packages/superset-ui-core/src/chart/types/TransformFunction.ts index cd75cdfadb..61f1807295 100644 --- a/packages/superset-ui-core/src/chart/types/TransformFunction.ts +++ b/packages/superset-ui-core/src/chart/types/TransformFunction.ts @@ -1,15 +1,13 @@ import { QueryFormData, QueryContext } from '../..'; import ChartProps from '../models/ChartProps'; +import { PlainObject } from './Base'; -export interface PlainProps { - // eslint-disable-next-line @typescript-eslint/no-explicit-any - [key: string]: any; -} +export type PlainProps = PlainObject; type TransformFunction = (x: Input) => Output; export type PreTransformProps = TransformFunction; -export type TransformProps = TransformFunction; +export type TransformProps = TransformFunction; export type PostTransformProps = TransformFunction; export type BuildQueryFunction = (formData: T) => QueryContext; diff --git a/packages/superset-ui-core/src/query/buildQueryObject.ts b/packages/superset-ui-core/src/query/buildQueryObject.ts index 8ed526c448..0ed47c015e 100644 --- a/packages/superset-ui-core/src/query/buildQueryObject.ts +++ b/packages/superset-ui-core/src/query/buildQueryObject.ts @@ -38,7 +38,7 @@ export default function buildQueryObject( const numericRowLimit = Number(row_limit); const numericRowOffset = Number(row_offset); - const { metrics, groupby, columns } = extractQueryFields(residualFormData, queryFields); + const { metrics, columns } = extractQueryFields(residualFormData, queryFields); const extras = extractExtras(formData); const extrasAndfilters = processFilters({ @@ -54,7 +54,6 @@ export default function buildQueryObject( ...extras, ...extrasAndfilters, annotation_layers, - groupby, columns, metrics, order_desc: typeof order_desc === 'undefined' ? true : order_desc, diff --git a/packages/superset-ui-core/src/query/extractQueryFields.ts b/packages/superset-ui-core/src/query/extractQueryFields.ts index 1de643ea38..c797e8fbed 100644 --- a/packages/superset-ui-core/src/query/extractQueryFields.ts +++ b/packages/superset-ui-core/src/query/extractQueryFields.ts @@ -17,7 +17,7 @@ * under the License. */ import { DTTM_ALIAS } from './buildQueryObject'; -import { QueryFields, QueryFieldAliases, FormDataResidual } from './types/QueryFormData'; +import { QueryFields, QueryFieldAliases, FormDataResidual, QueryMode } from './types/QueryFormData'; /** * Extra SQL query related fields from chart form data. @@ -34,7 +34,6 @@ export default function extractQueryFields( const queryFieldAliases: QueryFieldAliases = { /** These are predefined for backward compatibility */ metric: 'metrics', - percent_metrics: 'metrics', metric_2: 'metrics', secondary_metric: 'metrics', x: 'metrics', @@ -46,26 +45,45 @@ export default function extractQueryFields( }; const finalQueryFields: QueryFields = { columns: [], - groupby: [], metrics: [], }; + const { query_mode: queryMode, include_time: includeTime, ...restFormData } = formData; - Object.entries(formData).forEach(([key, value]) => { - const normalizedKey = queryFieldAliases[key] || key; - if (normalizedKey in finalQueryFields) { - if (normalizedKey === 'metrics') { - finalQueryFields[normalizedKey] = finalQueryFields[normalizedKey].concat(value); - } else { - // currently the groupby and columns field only accept pre-defined columns (string shortcut) - finalQueryFields[normalizedKey] = finalQueryFields[normalizedKey] - .concat(value) - .filter(x => typeof x === 'string' && x); + Object.entries(restFormData).forEach(([key, value]) => { + // ignore `null` or `undefined` value + if (value == null) { + return; + } + + let normalizedKey: string = queryFieldAliases[key] || key; + + // ignore groupby when in raw records mode + if (queryMode === QueryMode.raw && normalizedKey === 'groupby') { + return; + } + if (queryMode === QueryMode.aggregate) { + // ignore columns when (specifically) in aggregate mode. + if (normalizedKey === 'columns') { + return; } } + // groupby has been deprecated: https://github.com/apache/superset/pull/9366 + if (normalizedKey === 'groupby') { + normalizedKey = 'columns'; + } + if (normalizedKey === 'metrics') { + finalQueryFields[normalizedKey] = finalQueryFields[normalizedKey].concat(value); + } + if (normalizedKey === 'columns') { + // currently the columns field only accept pre-defined columns (string shortcut) + finalQueryFields[normalizedKey] = finalQueryFields[normalizedKey] + .concat(value) + .filter(x => typeof x === 'string' && x); + } }); - if (formData.include_time && !finalQueryFields.groupby.includes(DTTM_ALIAS)) { - finalQueryFields.groupby.unshift(DTTM_ALIAS); + if (includeTime && !finalQueryFields.columns.includes(DTTM_ALIAS)) { + finalQueryFields.columns.unshift(DTTM_ALIAS); } return finalQueryFields; diff --git a/packages/superset-ui-core/src/query/types/Metric.ts b/packages/superset-ui-core/src/query/types/Metric.ts index 31dd742e88..d543be4815 100644 --- a/packages/superset-ui-core/src/query/types/Metric.ts +++ b/packages/superset-ui-core/src/query/types/Metric.ts @@ -43,7 +43,7 @@ export type AdhocMetric = AdhocMetricSimple | AdhocMetricSQL; /** * Select a predefined metric by its `metric_name`. */ -export type PredefinedMetric = string; +export type SavedMetric = string; /** * Metric definition stored in datasource metadata. diff --git a/packages/superset-ui-core/src/query/types/PostProcessing.ts b/packages/superset-ui-core/src/query/types/PostProcessing.ts new file mode 100644 index 0000000000..c79437d00b --- /dev/null +++ b/packages/superset-ui-core/src/query/types/PostProcessing.ts @@ -0,0 +1,118 @@ +import { JsonObject } from '../../connection'; +import { TimeGranularity } from '../../time-format'; + +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export type NumpyFunction = + | 'average' + | 'argmin' + | 'argmax' + | 'count' + | 'count_nonzero' + | 'cumsum' + | 'cumprod' + | 'max' + | 'mean' + | 'median' + | 'nansum' + | 'nanmin' + | 'nanmax' + | 'nanmean' + | 'nanmedian' + | 'nanpercentile' + | 'min' + | 'percentile' + | 'prod' + | 'product' + | 'std' + | 'sum' + | 'var'; + +interface Aggregates { + /** + * The name of the generated aggregate column. + */ + [colname: string]: { + operator: NumpyFunction; + /** + * the name of the column to generate aggrates from. + */ + column?: string; + options?: JsonObject; + }; +} + +export interface PostProcessingAggregation { + operation: 'aggregation'; + options: { + groupby: string[]; + aggregates: Aggregates; + }; +} + +export interface PostProcessingBoxplot { + operation: 'boxplot'; + options: { + groupby: string[]; + metrics: string[]; + whisker_type: 'tukey' | 'min/max' | 'percentile'; + percentiles?: [number, number]; + }; +} + +export interface PostProcessingContribution { + operation: 'contribution'; + options?: { + orientation?: 'row' | 'column'; + columns?: string[]; + rename_columns?: string[]; + }; +} + +export interface PostProcessingPivot { + operation: 'pivot'; + options: { + index: string[]; + columns: string[]; + aggregates: Aggregates; + }; +} + +export interface PostProcessingProphet { + operation: 'prophet'; + options: { + time_grain: TimeGranularity; + periods: number; + confidence_interval: number; + yearly_seasonality?: boolean | number; + weekly_seasonality?: boolean | number; + daily_seasonality?: boolean | number; + }; +} + +/** + * Parameters for chart data postprocessing. + * See superset/utils/pandas_processing.py. + */ +export type PostProcessingRule = + | PostProcessingAggregation + | PostProcessingBoxplot + | PostProcessingContribution + | PostProcessingPivot + | PostProcessingProphet; diff --git a/packages/superset-ui-core/src/query/types/Query.ts b/packages/superset-ui-core/src/query/types/Query.ts index 546e0e1100..9f59e05304 100644 --- a/packages/superset-ui-core/src/query/types/Query.ts +++ b/packages/superset-ui-core/src/query/types/Query.ts @@ -23,6 +23,7 @@ import { AppliedTimeExtras, TimeRange } from './Time'; import { AnnotationLayer } from './AnnotationLayer'; import { QueryFields, QueryFormMetric } from './QueryFormData'; import { Maybe } from '../../types'; +import { PostProcessingRule } from './PostProcessing'; export type QueryObjectFilterClause = { col: string; @@ -60,45 +61,71 @@ export type ResidualQueryObjectData = { /** * Query object directly compatible with the new chart data API. - * A slightly more strict version of query form data. + * A stricter version of query form data. + * + * All information should be related to generating database queries. Config values + * for client-side processing and chart rendering should happen in `buildQuery` + * and `transformProps`. */ export interface QueryObject extends QueryFields, TimeRange, ResidualQueryObjectData { - metrics: QueryFormMetric[]; - + /** + * Definition for annotation layers. + */ annotation_layers?: AnnotationLayer[]; + /** Time filters that have been applied to the query object */ applied_time_extras?: AppliedTimeExtras; + /** + * Extra form data. Current stores information about time granularity, may be + * cleaned up in the future. + */ extras?: QueryObjectExtras; - /** Granularity (for steps in time series) */ + /** SIMPLE where filters */ + filters?: QueryObjectFilterClause[]; + + /** Time column. */ granularity?: string; - /** Free-form WHERE SQL: multiple clauses are concatenated by AND */ - where?: string; + /** If set, will group by timestamp */ + is_timeseries?: boolean; + /** Free-form HAVING SQL, multiple clauses are concatenated by AND */ having?: string; + /** SIMPLE having filters */ having_filters?: QueryObjectFilterClause[]; - /** SIMPLE where filters */ - filters?: QueryObjectFilterClause[]; + + /** + * A list of metrics to query the datasource for. Could be the name of a predefined + * metric or an adhoc metric. + */ + metrics: QueryFormMetric[]; + + post_processing?: (PostProcessingRule | undefined)[]; /** Maximum numbers of rows to return */ row_limit?: number; + /** Number of rows to skip */ row_offset?: number; + /** Maximum number of series */ timeseries_limit?: number; + /** The metric used to sort the returned result. */ timeseries_limit_metric?: Maybe; orderby?: Array<[QueryFormMetric, boolean]>; + /** Direction to ordered by */ order_desc?: boolean; - /** If set, will group by timestamp */ - is_timeseries?: boolean; url_params?: Record; + + /** Free-form WHERE SQL: multiple clauses are concatenated by AND */ + where?: string; } export interface QueryContext { diff --git a/packages/superset-ui-core/src/query/types/QueryFormData.ts b/packages/superset-ui-core/src/query/types/QueryFormData.ts index 9652c7cf55..5c20ad41cd 100644 --- a/packages/superset-ui-core/src/query/types/QueryFormData.ts +++ b/packages/superset-ui-core/src/query/types/QueryFormData.ts @@ -21,14 +21,15 @@ /** * Types for the final QueryContext sent to /api/v1/chart/data. */ -import { AdhocMetric, PredefinedMetric } from './Metric'; +import { AdhocMetric, SavedMetric } from './Metric'; import { AdhocFilter } from './Filter'; import { BinaryOperator, SetOperator } from './Operator'; import { AnnotationLayer } from './AnnotationLayer'; import { QueryObject } from './Query'; import { TimeRange, TimeRangeEndpoints } from './Time'; +import { TimeGranularity } from '../../time-format'; -export type QueryFormMetric = PredefinedMetric | AdhocMetric; +export type QueryFormMetric = SavedMetric | AdhocMetric; // Column selects (used as dimensions in groupby and raw query mode) only // support existing columns for now. @@ -48,7 +49,6 @@ export enum QueryMode { */ export interface QueryFields { columns: QueryFormColumn[]; - groupby: QueryFormColumn[]; metrics: QueryFormMetric[]; } @@ -59,10 +59,13 @@ export type QueryField = keyof QueryFields; /** * Map of arbitrary control field names to query field names - * (one of 'groupby' | 'metrics' | 'columns'). + * (one of 'metrics' | 'columns' | 'groupby'). + * + * Note that `groupby` is only added here because it is will be handled when + * processing aliases but will not be sent to final objects. See `extraQueryFields.ts`. */ export type QueryFieldAliases = { - [key: string]: QueryField; + [key: string]: QueryField | 'groupby'; }; /** @@ -104,10 +107,9 @@ export interface BaseFormData extends TimeRange, FormDataResidual { */ viz_type: string; metrics?: QueryFormMetric[]; - /** list of columns to group by */ - groupby?: QueryFormColumn[]; where?: string; columns?: QueryFormColumn[]; + groupby?: QueryFormColumn[]; all_columns?: QueryFormColumn[]; /** list of filters */ adhoc_filters?: AdhocFilter[]; @@ -135,8 +137,11 @@ export interface BaseFormData extends TimeRange, FormDataResidual { * Form data for SQLAlchemy based datasources. */ export interface SqlaFormData extends BaseFormData { - granularity_sqla: string; - time_grain_sqla?: string; + /** + * Name of the Time Column. Time column is optional. + */ + granularity_sqla?: string; + time_grain_sqla?: TimeGranularity; having?: string; } @@ -149,7 +154,7 @@ export interface DruidFormData extends BaseFormData { druid_time_origin?: string; } -export type QueryFormData = SqlaFormData | DruidFormData; +export type QueryFormData = DruidFormData | SqlaFormData; //--------------------------------------------------- // Type guards diff --git a/packages/superset-ui-core/src/query/types/QueryResponse.ts b/packages/superset-ui-core/src/query/types/QueryResponse.ts index aa41d6fce3..c5f2cc01cb 100644 --- a/packages/superset-ui-core/src/query/types/QueryResponse.ts +++ b/packages/superset-ui-core/src/query/types/QueryResponse.ts @@ -16,6 +16,10 @@ * specific language governing permissions and limitations * under the License. */ + +import { TimeseriesDataRecord } from '../../chart'; +import { AnnotationData } from './AnnotationLayer'; + /** * Generic data types, see enum of the same name in superset/utils/core.py. */ @@ -35,7 +39,15 @@ export interface DataRecord { [key: string]: DataRecordValue; } +/** + * Queried data for charts. The `queries` field from `POST /chart/data`. + * See superset/charts/schemas.py for the class of the same name. + */ export interface ChartDataResponseResult { + /** + * Data for the annotation layer. + */ + annotation_data: AnnotationData[] | null; cache_key: string | null; cache_timeout: number | null; cache_dttm: string | null; @@ -46,11 +58,11 @@ export interface ChartDataResponseResult { /** * Name of each column, for retaining the order of the output columns. */ - columns: string[]; + colnames: string[]; /** * Generic data types, based on the final output pandas dataframe. */ - dtypes: GenericDataType[]; + coltypes: GenericDataType[]; error: string | null; is_cached: boolean; query: string; @@ -59,9 +71,13 @@ export interface ChartDataResponseResult { status: 'stopped' | 'failed' | 'pending' | 'running' | 'scheduled' | 'success' | 'timed_out'; } +export interface TimeseriesChartDataResponseResult extends ChartDataResponseResult { + data: TimeseriesDataRecord[]; +} + /** * Query response from /api/v1/chart/data */ export interface ChartDataResponse { - result: ChartDataResponseResult[]; + queries: ChartDataResponseResult[]; } diff --git a/packages/superset-ui-core/src/translation/types/index.ts b/packages/superset-ui-core/src/translation/types/index.ts index f641ec8fab..e814d6fe17 100644 --- a/packages/superset-ui-core/src/translation/types/index.ts +++ b/packages/superset-ui-core/src/translation/types/index.ts @@ -18,7 +18,7 @@ */ import { Jed as BaseJed, JedOptions, DomainData, Translations } from './jed'; -export { Translations } from './jed'; +export * from './jed'; /** * Superset supported languages. diff --git a/packages/superset-ui-core/src/utils/index.ts b/packages/superset-ui-core/src/utils/index.ts index cf29843134..a79dd297d8 100644 --- a/packages/superset-ui-core/src/utils/index.ts +++ b/packages/superset-ui-core/src/utils/index.ts @@ -22,4 +22,5 @@ export { default as isRequired } from './isRequired'; export { default as makeSingleton } from './makeSingleton'; export { default as promiseTimeout } from './promiseTimeout'; export { default as logging } from './logging'; +export { default as removeDuplicates } from './removeDuplicates'; export * from './random'; diff --git a/packages/superset-ui-core/src/utils/removeDuplicates.ts b/packages/superset-ui-core/src/utils/removeDuplicates.ts new file mode 100644 index 0000000000..f98f2dc0dc --- /dev/null +++ b/packages/superset-ui-core/src/utils/removeDuplicates.ts @@ -0,0 +1,35 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/** + * Remove duplicate items from a list. + */ +export function removeDuplicates(items: T[], hash?: (item: T) => unknown): T[] { + const seen = new Set(); + const result: T[] = []; + items.forEach(x => { + const itemHash = hash ? hash(x) : x; + if (!seen.has(itemHash)) { + seen.add(itemHash); + result.push(x); + } + }); + return result; +} + +export default removeDuplicates; diff --git a/packages/superset-ui-core/test/query/extractQueryFields.test.ts b/packages/superset-ui-core/test/query/extractQueryFields.test.ts index 3ce1b77e0f..2960efef4a 100644 --- a/packages/superset-ui-core/test/query/extractQueryFields.test.ts +++ b/packages/superset-ui-core/test/query/extractQueryFields.test.ts @@ -17,13 +17,13 @@ * under the License. */ import extractQueryFields from '@superset-ui/core/src/query/extractQueryFields'; +import { QueryMode } from '../../src'; import { DTTM_ALIAS } from '../../src/query/buildQueryObject'; describe('extractQueryFields', () => { it('should return default object', () => { expect(extractQueryFields({})).toEqual({ columns: [], - groupby: [], metrics: [], }); }); @@ -44,15 +44,13 @@ describe('extractQueryFields', () => { it('should extract columns', () => { expect(extractQueryFields({ columns: 'col_1' })).toEqual({ columns: ['col_1'], - groupby: [], metrics: [], }); }); it('should extract groupby', () => { expect(extractQueryFields({ groupby: 'col_1' })).toEqual({ - columns: [], - groupby: ['col_1'], + columns: ['col_1'], metrics: [], }); }); @@ -61,8 +59,7 @@ describe('extractQueryFields', () => { expect( extractQueryFields({ series: 'col_1', metric: 'metric_1' }, { series: 'groupby' }), ).toEqual({ - columns: [], - groupby: ['col_1'], + columns: ['col_1'], metrics: ['metric_1'], }); }); @@ -74,19 +71,50 @@ describe('extractQueryFields', () => { { series: 'groupby' }, ), ).toEqual({ - columns: [], - groupby: ['col_1', 'col_2'], + columns: ['col_1', 'col_2'], metrics: ['metric_1'], }); }); it('should include time', () => { - expect(extractQueryFields({ groupby: 'col_1', include_time: true }).groupby).toEqual([ + expect(extractQueryFields({ groupby: 'col_1', include_time: true }).columns).toEqual([ DTTM_ALIAS, 'col_1', ]); expect( - extractQueryFields({ groupby: ['col_1', DTTM_ALIAS, ''], include_time: true }).groupby, + extractQueryFields({ groupby: ['col_1', DTTM_ALIAS, ''], include_time: true }).columns, ).toEqual(['col_1', DTTM_ALIAS]); }); + + it('should ignore null values', () => { + expect(extractQueryFields({ series: ['a'], columns: null }).columns).toEqual(['a']); + }); + + it('should ignore groupby when in raw QueryMode', () => { + expect( + extractQueryFields({ + columns: ['a'], + groupby: ['b'], + metric: ['m'], + query_mode: QueryMode.raw, + }), + ).toEqual({ + metrics: ['m'], + columns: ['a'], + }); + }); + + it('should ignore columns when in aggregate QueryMode', () => { + expect( + extractQueryFields({ + columns: ['a'], + groupby: ['b'], + metric: ['m'], + query_mode: QueryMode.aggregate, + }), + ).toEqual({ + metrics: ['m'], + columns: ['b'], + }); + }); }); diff --git a/packages/superset-ui-core/test/utils/removeDuplicates.test.ts b/packages/superset-ui-core/test/utils/removeDuplicates.test.ts new file mode 100644 index 0000000000..3ba21dcfc8 --- /dev/null +++ b/packages/superset-ui-core/test/utils/removeDuplicates.test.ts @@ -0,0 +1,31 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { removeDuplicates } from '@superset-ui/core/src'; + +describe('removeDuplicates([...])', () => { + it('should remove duplciages from a simple list', () => { + expect(removeDuplicates([1, 2, 4, 1, 1, 5, 2])).toEqual([1, 2, 4, 5]); + }); + it('should remove duplciages by key getter', () => { + expect(removeDuplicates([{ a: 1 }, { a: 1 }, { b: 2 }], x => x.a)).toEqual([ + { a: 1 }, + { b: 2 }, + ]); + }); +}); diff --git a/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/TableStories.tsx b/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/TableStories.tsx index abb7fc5290..cfca83577b 100644 --- a/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/TableStories.tsx +++ b/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/TableStories.tsx @@ -2,7 +2,7 @@ import React from 'react'; import memoizeOne from 'memoize-one'; import { withKnobs, number, boolean } from '@storybook/addon-knobs'; import { SuperChart } from '@superset-ui/core'; -import TableChartPlugin, { TableChartProps } from '@superset-ui/plugin-chart-table'; +import TableChartPlugin, { TableChartProps } from '@superset-ui/plugin-chart-table/src'; import { basicFormData, basicData, birthNames } from './testData'; import { withResizableChartDemo } from '../../../shared/components/ResizableChartDemo'; @@ -38,27 +38,33 @@ const expandColumns = memoizeOne(expandArray); */ function loadData( props: TableChartProps, - { pageLength = 50, rows = 1042, cols = 8, alignPn = false, showCellBars = true }, + { + pageLength = 50, + rows = 1042, + cols = 8, + alignPn = false, + showCellBars = true, + includeSearch = true, + }, ): TableChartProps { if (!props.queriesData || !props.queriesData[0]) return props; - const records = props.queriesData?.[0].data?.records || []; - const columns = props.queriesData?.[0].data?.columns || []; + const records = props.queriesData?.[0].data || []; + const columns = props.queriesData?.[0].colnames || []; return { ...props, queriesData: [ { ...props.queriesData[0], - data: { - records: expandRecords(records, rows), - columns: expandColumns(columns, cols), - }, + data: expandRecords(records, rows), + colnames: expandColumns(columns, cols), }, ], formData: { ...props.formData, - alignPn, - pageLength, - showCellBars, + align_pn: alignPn, + page_length: pageLength, + show_cell_bars: showCellBars, + include_search: includeSearch, }, height: window.innerHeight - 130, }; @@ -89,9 +95,17 @@ export const BigTable = ({ width, height }) => { const rows = number('Records', 2046, { range: true, min: 0, max: 50000 }); const cols = number('Columns', 8, { range: true, min: 1, max: 20 }); const pageLength = number('Page size', 50, { range: true, min: 0, max: 100 }); + const includeSearch = boolean('Include search', true); const alignPn = boolean('Algin PosNeg', false); const showCellBars = boolean('Show Cell Bars', true); - const chartProps = loadData(birthNames, { pageLength, rows, cols, alignPn, showCellBars }); + const chartProps = loadData(birthNames, { + pageLength, + rows, + cols, + alignPn, + showCellBars, + includeSearch, + }); return ; }; BigTable.story = { diff --git a/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/birthNames.json b/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/birthNames.json index 261771ddb9..456d8cf1d8 100644 --- a/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/birthNames.json +++ b/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/birthNames.json @@ -1,10 +1,10 @@ { "disableErrorBoundary": true, - "id": "chart-id-129", + "id": "chart-id-86", "className": "superset-chart-table", "chartType": "table", - "width": 751, - "height": 775, + "width": 616, + "height": 632.1, "datasource": { "id": 3, "column_formats": {}, @@ -15,13 +15,16 @@ "backend": "postgresql", "allow_multi_schema_metadata_fetch": false, "allows_subquery": true, - "allows_cost_estimate": false + "allows_cost_estimate": null, + "allows_virtual_table_explore": true, + "explore_database_id": 1 }, "default_endpoint": null, "filter_select": true, "filter_select_enabled": true, "name": "birth_names", "datasource_name": "birth_names", + "table_name": "birth_names", "type": "table", "schema": null, "offset": 0, @@ -33,79 +36,79 @@ "columns": [ { "id": 332, - "column_name": "num_california", + "column_name": "ds", "verbose_name": null, "description": null, - "expression": "CASE WHEN state = 'CA' THEN num ELSE 0 END", + "expression": null, "filterable": true, "groupby": true, - "is_dttm": false, - "type": null, + "is_dttm": true, + "type": "TIMESTAMP WITHOUT TIME ZONE", "python_date_format": null }, { "id": 333, - "column_name": "ds", + "column_name": "gender", "verbose_name": null, "description": null, "expression": null, "filterable": true, "groupby": true, - "is_dttm": true, - "type": "TIMESTAMP WITHOUT TIME ZONE", + "is_dttm": false, + "type": "VARCHAR(16)", "python_date_format": null }, { "id": 334, - "column_name": "gender", + "column_name": "name", "verbose_name": null, "description": null, "expression": null, "filterable": true, "groupby": true, "is_dttm": false, - "type": "VARCHAR(16)", + "type": "VARCHAR(255)", "python_date_format": null }, { "id": 335, - "column_name": "name", + "column_name": "num", "verbose_name": null, "description": null, "expression": null, "filterable": true, "groupby": true, "is_dttm": false, - "type": "VARCHAR(255)", + "type": "BIGINT", "python_date_format": null }, { "id": 336, - "column_name": "num", + "column_name": "state", "verbose_name": null, "description": null, "expression": null, "filterable": true, "groupby": true, "is_dttm": false, - "type": "BIGINT", + "type": "VARCHAR(10)", "python_date_format": null }, { "id": 337, - "column_name": "state", + "column_name": "num_boys", "verbose_name": null, "description": null, "expression": null, "filterable": true, "groupby": true, "is_dttm": false, - "type": "VARCHAR(10)", + "type": "BIGINT", "python_date_format": null }, { "id": 338, - "column_name": "sum_boys", + "column_name": "num_girls", "verbose_name": null, "description": null, "expression": null, @@ -117,33 +120,39 @@ }, { "id": 339, - "column_name": "sum_girls", + "column_name": "num_california", "verbose_name": null, "description": null, - "expression": null, + "expression": "CASE WHEN state = 'CA' THEN num ELSE 0 END", "filterable": true, "groupby": true, "is_dttm": false, - "type": "BIGINT", + "type": null, "python_date_format": null } ], "metrics": [ { + "is_certified": false, + "certified_by": null, + "certification_details": null, "id": 9, - "metric_name": "sum__num", - "verbose_name": null, + "metric_name": "count", + "verbose_name": "COUNT(*)", "description": null, - "expression": "SUM(num)", + "expression": "COUNT(*)", "warning_text": null, "d3format": null }, { + "is_certified": false, + "certified_by": null, + "certification_details": null, "id": 10, - "metric_name": "count", - "verbose_name": "COUNT(*)", + "metric_name": "sum__num", + "verbose_name": null, "description": null, - "expression": "COUNT(*)", + "expression": "SUM(num)", "warning_text": null, "d3format": null } @@ -157,28 +166,28 @@ ["[\"name\", false]", "name [desc]"], ["[\"num\", true]", "num [asc]"], ["[\"num\", false]", "num [desc]"], + ["[\"num_boys\", true]", "num_boys [asc]"], + ["[\"num_boys\", false]", "num_boys [desc]"], ["[\"num_california\", true]", "num_california [asc]"], ["[\"num_california\", false]", "num_california [desc]"], + ["[\"num_girls\", true]", "num_girls [asc]"], + ["[\"num_girls\", false]", "num_girls [desc]"], ["[\"state\", true]", "state [asc]"], - ["[\"state\", false]", "state [desc]"], - ["[\"sum_boys\", true]", "sum_boys [asc]"], - ["[\"sum_boys\", false]", "sum_boys [desc]"], - ["[\"sum_girls\", true]", "sum_girls [asc]"], - ["[\"sum_girls\", false]", "sum_girls [desc]"] + ["[\"state\", false]", "state [desc]"] ], "owners": [], "verbose_map": { "__timestamp": "Time", - "sum__num": "sum__num", "count": "COUNT(*)", - "num_california": "num_california", + "sum__num": "sum__num", "ds": "ds", "gender": "gender", "name": "name", "num": "num", "state": "state", - "sum_boys": "sum_boys", - "sum_girls": "sum_girls" + "num_boys": "num_boys", + "num_girls": "num_girls", + "num_california": "num_california" }, "select_star": "SELECT *\nFROM birth_names\nLIMIT 100", "granularity_sqla": [["ds", "ds"]], @@ -196,20301 +205,13152 @@ "main_dttm_col": "ds", "fetch_values_predicate": null, "template_params": null, - "is_sqllab_view": false + "is_sqllab_view": false, + "health_check_message": null }, "initialValues": {}, "formData": { - "queryFields": { - "groupby": "groupby", - "metrics": "metrics" - }, "datasource": "3__table", "viz_type": "table", - "slice_id": 129, + "slice_id": 86, + "include_search": true, "url_params": {}, - "time_range_endpoints": ["inclusive", "exclusive"], "granularity_sqla": "ds", - "time_grain_sqla": "P1Y", - "time_range": "100 years ago : now", + "time_grain_sqla": "P0.25Y", + "time_range": "No filter", + "query_mode": "aggregate", "groupby": ["state", "gender", "name"], "metrics": [ + "sum__num", { - "expressionType": "SIMPLE", + "aggregate": "SUM", "column": { - "id": 336, - "column_name": "num", - "verbose_name": null, + "column_name": "num_girls", "description": null, "expression": null, "filterable": true, "groupby": true, + "id": 338, "is_dttm": false, - "type": "BIGINT", "python_date_format": null, - "optionName": "_col_num" + "type": "BIGINT", + "verbose_name": null }, - "aggregate": "SUM", - "sqlExpression": null, + "expressionType": "SIMPLE", + "hasCustomLabel": false, "isNew": false, - "hasCustomLabel": true, - "label": "total", - "optionName": "metric_ceklfciof9_18hzc8bp0ce" + "label": "SUM(num_girls)", + "optionName": "metric_xsmc8k1wo5e_euwhnr1wac7", + "sqlExpression": null }, { - "expressionType": "SIMPLE", + "aggregate": "SUM", "column": { - "id": 338, - "column_name": "sum_boys", - "verbose_name": null, + "column_name": "num_boys", "description": null, "expression": null, "filterable": true, "groupby": true, + "id": 337, "is_dttm": false, - "type": "BIGINT", "python_date_format": null, - "optionName": "_col_sum_boys" + "type": "BIGINT", + "verbose_name": null }, - "aggregate": "SUM", - "sqlExpression": null, + "expressionType": "SIMPLE", + "hasCustomLabel": false, "isNew": false, - "hasCustomLabel": true, - "label": "boys", - "optionName": "metric_7fbu3cczp8v_5iis6jw6y6q" - }, + "label": "SUM(num_boys)", + "optionName": "metric_ab6i6wwdg2_ev872k5w1fo", + "sqlExpression": null + } + ], + "all_columns": [], + "percent_metrics": [ + "sum__num", { - "expressionType": "SIMPLE", + "aggregate": "SUM", "column": { - "id": 332, - "column_name": "num_california", - "verbose_name": null, + "column_name": "num_girls", "description": null, - "expression": "CASE WHEN state = 'CA' THEN num ELSE 0 END", + "expression": null, "filterable": true, "groupby": true, + "id": 338, "is_dttm": false, - "type": null, "python_date_format": null, - "optionName": "_col_num_california" + "type": "BIGINT", + "verbose_name": null }, - "aggregate": "SUM", - "sqlExpression": null, - "isNew": false, + "expressionType": "SIMPLE", "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, + "label": "SUM(num_girls)", + "optionName": "metric_9whr8bvg81_nae91j1dut", + "sqlExpression": null + }, + { + "aggregate": "SUM", + "column": { + "column_name": "num_boys", + "description": null, + "expression": null, + "filterable": true, + "groupby": true, + "id": 337, + "is_dttm": false, + "python_date_format": null, + "type": "BIGINT", + "verbose_name": null + }, + "expressionType": "SIMPLE", "hasCustomLabel": true, + "isNew": false, "label": "pct_boys", - "optionName": "metric_udmrat32na9_pfwyhxcbncn" + "optionName": "metric_escshgd3oqb_uyb4l5xgfj", + "sqlExpression": null } ], - "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" - }, - "aggregate": "SUM", - "sqlExpression": null, - "isNew": false, - "hasCustomLabel": false, - "label": "SUM(num)", - "optionName": "metric_qabff4vbvk_d09lze4ckfg" - }, - "row_limit": "2000", + "order_by_cols": [], + "row_limit": 1000, "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, + "table_timestamp_format": "smart_date", "color_pn": true, "show_cell_bars": true }, "hooks": {}, "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, - "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": 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": [] - }, - "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", + "cache_key": "075757ce3bdc03cb01d368afd6f48c6c", + "cached_dttm": "2021-01-09T08:29:43", + "cache_timeout": 600, + "annotation_data": {}, + "error": null, + "is_cached": true, + "query": "SELECT DATE_TRUNC('quarter', ds) AS __timestamp,\n state AS state,\n gender AS gender,\n name AS name,\n SUM(num) AS sum__num,\n sum(num_girls) AS \"SUM(num_girls)\",\n sum(num_boys) AS \"SUM(num_boys)\",\n sum(num_boys) AS pct_boys\nFROM birth_names\nGROUP BY state,\n gender,\n name,\n DATE_TRUNC('quarter', ds)\nLIMIT 1000", "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" - ] - } + "rowcount": 1000, + "colnames": [ + "__timestamp", + "state", + "gender", + "name", + "sum__num", + "SUM(num_girls)", + "SUM(num_boys)", + "pct_boys", + "% sum__num", + "% SUM(num_girls)", + "% pct_boys" + ], + "coltypes": [2, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], + "data": [ + { + "__timestamp": 252460800000, + "state": "FL", + "gender": "boy", + "name": "Juan", + "sum__num": 149, + "SUM(num_girls)": -5120, + "SUM(num_boys)": 149, + "pct_boys": 149, + "% sum__num": 0.00013234268762240587, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002305791250063835 + }, + { + "__timestamp": 1041379200000, + "state": "PA", + "gender": "boy", + "name": "Timothy ", + "sum__num": 243, + "SUM(num_girls)": 0, + "SUM(num_boys)": 243, + "pct_boys": 243, + "% sum__num": 0.00021583404759895725, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00037604515017819587 + }, + { + "__timestamp": 852076800000, + "state": "IL", + "gender": "girl", + "name": "Morgan", + "sum__num": 396, + "SUM(num_girls)": 396, + "SUM(num_boys)": -100, + "pct_boys": 0, + "% sum__num": 0.00035172955905015253, + "% SUM(num_girls)": 0.0008255744622299683, + "% pct_boys": 0 + }, + { + "__timestamp": 852076800000, + "state": "MI", + "gender": "girl", + "name": "Morgan", + "sum__num": 421, + "SUM(num_girls)": 421, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003739347079800864, + "% SUM(num_girls)": 0.0008776940621182239, + "% pct_boys": 0 + }, + { + "__timestamp": 788918400000, + "state": "IL", + "gender": "boy", + "name": "Cody", + "sum__num": 569, + "SUM(num_girls)": 0, + "SUM(num_boys)": 569, + "pct_boys": 569, + "% sum__num": 0.000505389189645295, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008805337055612899 + }, + { + "__timestamp": 631152000000, + "state": "TX", + "gender": "boy", + "name": "Richard", + "sum__num": 974, + "SUM(num_girls)": 0, + "SUM(num_boys)": 974, + "pct_boys": 974, + "% sum__num": 0.0008651126023102237, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0015072756225249498 + }, + { + "__timestamp": 599616000000, + "state": "IL", + "gender": "boy", + "name": "Christian", + "sum__num": 166, + "SUM(num_girls)": 0, + "SUM(num_boys)": 166, + "pct_boys": 166, + "% sum__num": 0.0001474421888947609, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00025688681040979635 + }, + { + "__timestamp": 1009843200000, + "state": "TX", + "gender": "girl", + "name": "Jessica", + "sum__num": 1038, + "SUM(num_girls)": 1038, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009219577835708544, + "% SUM(num_girls)": 0.0021640057873603714, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "OH", + "gender": "boy", + "name": "Bryan", + "sum__num": 450, + "SUM(num_girls)": 0, + "SUM(num_boys)": 450, + "pct_boys": 450, + "% sum__num": 0.0003996926807388097, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006963799077373998 + }, + { + "__timestamp": 283996800000, + "state": "MI", + "gender": "girl", + "name": "Jessica", + "sum__num": 1084, + "SUM(num_girls)": 1084, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009628152576019327, + "% SUM(num_girls)": 0.0022599058511547617, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "MA", + "gender": "girl", + "name": "Laura", + "sum__num": 589, + "SUM(num_girls)": 589, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005231533087892421, + "% SUM(num_girls)": 0.0012279377733673013, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "PA", + "gender": "boy", + "name": "Nathaniel", + "sum__num": 108, + "SUM(num_girls)": 0, + "SUM(num_boys)": 108, + "pct_boys": 108, + "% sum__num": 0.00009592624337731433, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00016713117785697594 + }, + { + "__timestamp": 1009843200000, + "state": "OH", + "gender": "girl", + "name": "Emily", + "sum__num": 957, + "SUM(num_girls)": 957, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008500131010378687, + "% SUM(num_girls)": 0.0019951382837224236, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "CA", + "gender": "boy", + "name": "Jesus", + "sum__num": 1013, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1013, + "pct_boys": 1013, + "% sum__num": 0.0008997526346409205, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001567628547862191 + }, + { + "__timestamp": 220924800000, + "state": "CA", + "gender": "girl", + "name": "Carrie", + "sum__num": 593, + "SUM(num_girls)": 593, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005267061326180315, + "% SUM(num_girls)": 0.0012362769093494223, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "NJ", + "gender": "boy", + "name": "Daniel", + "sum__num": 785, + "SUM(num_girls)": 0, + "SUM(num_boys)": 785, + "pct_boys": 785, + "% sum__num": 0.0006972416763999236, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012147960612752418 + }, + { + "__timestamp": 189302400000, + "state": "MI", + "gender": "girl", + "name": "Christine", + "sum__num": 342, + "SUM(num_girls)": 342, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003037664373614954, + "% SUM(num_girls)": 0.0007129961264713363, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "TX", + "gender": "girl", + "name": "Debra", + "sum__num": 244, + "SUM(num_girls)": 244, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002167222535561546, + "% SUM(num_girls)": 0.0005086872949093744, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "NY", + "gender": "boy", + "name": "Carlos", + "sum__num": 449, + "SUM(num_girls)": 0, + "SUM(num_boys)": 449, + "pct_boys": 449, + "% sum__num": 0.00039880447478161235, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006948323968313167 + }, + { + "__timestamp": 220924800000, + "state": "MI", + "gender": "boy", + "name": "Mark", + "sum__num": 822, + "SUM(num_girls)": 0, + "SUM(num_boys)": 822, + "pct_boys": 822, + "% sum__num": 0.0007301052968162258, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012720539648003169 + }, + { + "__timestamp": 410227200000, + "state": "MI", + "gender": "girl", + "name": "Andrea", + "sum__num": 592, + "SUM(num_girls)": 592, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005258179266608342, + "% SUM(num_girls)": 0.001234192125353892, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "IL", + "gender": "girl", + "name": "Robin", + "sum__num": 186, + "SUM(num_girls)": 186, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000165206308038708, + "% SUM(num_girls)": 0.0003877698231686215, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "NY", + "gender": "boy", + "name": "Vincent", + "sum__num": 717, + "SUM(num_girls)": 0, + "SUM(num_boys)": 717, + "pct_boys": 717, + "% sum__num": 0.0006368436713105035, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0011095653196615902 + }, + { + "__timestamp": 978307200000, + "state": "NJ", + "gender": "boy", + "name": "Benjamin", + "sum__num": 337, + "SUM(num_girls)": 0, + "SUM(num_boys)": 337, + "pct_boys": 337, + "% sum__num": 0.00029932540757550863, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005215111753500083 + }, + { + "__timestamp": 504921600000, + "state": "MI", + "gender": "girl", + "name": "Erica", + "sum__num": 355, + "SUM(num_girls)": 355, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000315313114805061, + "% SUM(num_girls)": 0.0007400983184132292, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "CA", + "gender": "boy", + "name": "Brian", + "sum__num": 2016, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2016, + "pct_boys": 2016, + "% sum__num": 0.0017906232097098676, + "% SUM(num_girls)": 0, + "% pct_boys": 0.003119781986663551 + }, + { + "__timestamp": -157766400000, + "state": "CA", + "gender": "boy", + "name": "Charles", + "sum__num": 1609, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1609, + "pct_boys": 1609, + "% sum__num": 0.001429123385130544, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002489945047887725 + }, + { + "__timestamp": 441763200000, + "state": "FL", + "gender": "girl", + "name": "Courtney", + "sum__num": 262, + "SUM(num_girls)": 262, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00023270996078570699, + "% SUM(num_girls)": 0.0005462134068289185, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "MI", + "gender": "girl", + "name": "Lauren", + "sum__num": 577, + "SUM(num_girls)": 577, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005124948373028738, + "% SUM(num_girls)": 0.0012029203654209386, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "FL", + "gender": "girl", + "name": "Angela", + "sum__num": 215, + "SUM(num_girls)": 215, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001909642807974313, + "% SUM(num_girls)": 0.000448228559038998, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "PA", + "gender": "girl", + "name": "Erica", + "sum__num": 134, + "SUM(num_girls)": 134, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00011901959826444556, + "% SUM(num_girls)": 0.0002793610554010499, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "MI", + "gender": "boy", + "name": "Shawn", + "sum__num": 472, + "SUM(num_girls)": 0, + "SUM(num_boys)": 472, + "pct_boys": 472, + "% sum__num": 0.0004192332117971515, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007304251476712283 + }, + { + "__timestamp": 852076800000, + "state": "MA", + "gender": "boy", + "name": "Sean", + "sum__num": 317, + "SUM(num_girls)": 0, + "SUM(num_boys)": 317, + "pct_boys": 317, + "% sum__num": 0.0002815612884315615, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004905609572283461 + }, + { + "__timestamp": 189302400000, + "state": "other", + "gender": "girl", + "name": "Theresa", + "sum__num": 802, + "SUM(num_girls)": 802, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007123411776722786, + "% SUM(num_girls)": 0.001671996764415239, + "% pct_boys": 0 + }, + { + "__timestamp": 599616000000, + "state": "NJ", + "gender": "girl", + "name": "Brianna", + "sum__num": 109, + "SUM(num_girls)": 109, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00009681444933451168, + "% SUM(num_girls)": 0.00022724145551279433, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "OH", + "gender": "boy", + "name": "Richard", + "sum__num": 207, + "SUM(num_girls)": 0, + "SUM(num_boys)": 207, + "pct_boys": 207, + "% sum__num": 0.00018385863313985246, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003203347575592039 + }, + { + "__timestamp": 536457600000, + "state": "MI", + "gender": "boy", + "name": "Bryan", + "sum__num": 288, + "SUM(num_girls)": 0, + "SUM(num_boys)": 288, + "pct_boys": 288, + "% sum__num": 0.0002558033156728382, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004456831409519359 + }, + { + "__timestamp": 1072915200000, + "state": "IL", + "gender": "girl", + "name": "Jacqueline", + "sum__num": 189, + "SUM(num_girls)": 189, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00016787092591030007, + "% SUM(num_girls)": 0.00039402417515521215, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "MA", + "gender": "boy", + "name": "Justin", + "sum__num": 406, + "SUM(num_girls)": 0, + "SUM(num_boys)": 406, + "pct_boys": 406, + "% sum__num": 0.0003606116186221261, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006282894278697429 + }, + { + "__timestamp": 662688000000, + "state": "MA", + "gender": "boy", + "name": "Ian", + "sum__num": 169, + "SUM(num_girls)": 0, + "SUM(num_boys)": 169, + "pct_boys": 169, + "% sum__num": 0.00015010680676635297, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002615293431280457 + }, + { + "__timestamp": 220924800000, + "state": "PA", + "gender": "girl", + "name": "Alicia", + "sum__num": 199, + "SUM(num_girls)": 199, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00017675298548227363, + "% SUM(num_girls)": 0.0004148720151105144, + "% pct_boys": 0 + }, + { + "__timestamp": 410227200000, + "state": "TX", + "gender": "boy", + "name": "Jonathan", + "sum__num": 1679, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1679, + "pct_boys": 1679, + "% sum__num": 0.0014912978021343589, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0025982708113135426 + }, + { + "__timestamp": 915148800000, + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 789, + "SUM(num_girls)": 0, + "SUM(num_boys)": 789, + "pct_boys": 789, + "% sum__num": 0.0007007945002287131, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012209861048995743 + }, + { + "__timestamp": 757382400000, + "state": "CA", + "gender": "boy", + "name": "David", + "sum__num": 4059, + "SUM(num_girls)": 0, + "SUM(num_boys)": 4059, + "pct_boys": 4059, + "% sum__num": 0.003605227980264064, + "% SUM(num_girls)": 0, + "% pct_boys": 0.006281346767791346 + }, + { + "__timestamp": 220924800000, + "state": "other", + "gender": "boy", + "name": "Kevin", + "sum__num": 10946, + "SUM(num_girls)": 0, + "SUM(num_boys)": 10946, + "pct_boys": 10946, + "% sum__num": 0.009722302407482246, + "% SUM(num_girls)": 0, + "% pct_boys": 0.016939054377985728 + }, + { + "__timestamp": 189302400000, + "state": "NY", + "gender": "boy", + "name": "Donald", + "sum__num": 400, + "SUM(num_girls)": 0, + "SUM(num_boys)": 400, + "pct_boys": 400, + "% sum__num": 0.000355282382878942, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006190043624332443 + }, + { + "__timestamp": 662688000000, + "state": "MI", + "gender": "boy", + "name": "Chad", + "sum__num": 201, + "SUM(num_girls)": 0, + "SUM(num_boys)": 201, + "pct_boys": 201, + "% sum__num": 0.00017852939739666833, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003110496921227052 + }, + { + "__timestamp": 820454400000, + "state": "other", + "gender": "boy", + "name": "Jerry", + "sum__num": 55, + "SUM(num_girls)": 0, + "SUM(num_boys)": 55, + "pct_boys": 55, + "% sum__num": 0.00004885132764585452, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00008511309983457108 + }, + { + "__timestamp": 252460800000, + "state": "FL", + "gender": "boy", + "name": "Antonio", + "sum__num": 222, + "SUM(num_girls)": 0, + "SUM(num_boys)": 222, + "pct_boys": 222, + "% sum__num": 0.0001971817224978128, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00034354742115045054 + }, + { + "__timestamp": 157766400000, + "state": "other", + "gender": "boy", + "name": "Adrian", + "sum__num": 158, + "SUM(num_girls)": 0, + "SUM(num_boys)": 158, + "pct_boys": 158, + "% sum__num": 0.00014033654123718207, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002445067231611315 + }, + { + "__timestamp": -63158400000, + "state": "NY", + "gender": "girl", + "name": "Pamela", + "sum__num": 966, + "SUM(num_girls)": 966, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008580069546526448, + "% SUM(num_girls)": 0.0020139013396821954, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "MI", + "gender": "boy", + "name": "Bradley", + "sum__num": 287, + "SUM(num_girls)": 0, + "SUM(num_boys)": 287, + "pct_boys": 287, + "% sum__num": 0.00025491510971564085, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00044413563004585275 + }, + { + "__timestamp": 567993600000, + "state": "CA", + "gender": "boy", + "name": "Mark", + "sum__num": 1358, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1358, + "pct_boys": 1358, + "% sum__num": 0.001206183689874008, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0021015198104608643 + }, + { + "__timestamp": 220924800000, + "state": "PA", + "gender": "boy", + "name": "Gregory", + "sum__num": 632, + "SUM(num_girls)": 0, + "SUM(num_boys)": 632, + "pct_boys": 632, + "% sum__num": 0.0005613461649487283, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000978026892644526 + }, + { + "__timestamp": 473385600000, + "state": "other", + "gender": "girl", + "name": "Victoria", + "sum__num": 2197, + "SUM(num_girls)": 2197, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0019513884879625888, + "% SUM(num_girls)": 0.0045802704381799, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "NY", + "gender": "boy", + "name": "Jose", + "sum__num": 712, + "SUM(num_girls)": 0, + "SUM(num_boys)": 712, + "pct_boys": 712, + "% sum__num": 0.0006324026415245167, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0011018277651311747 + }, + { + "__timestamp": 94694400000, + "state": "FL", + "gender": "girl", + "name": "Sherry", + "sum__num": 151, + "SUM(num_girls)": 151, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001341190995368006, + "% SUM(num_girls)": 0.0003148023833250637, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "MA", + "gender": "girl", + "name": "Stacey", + "sum__num": 157, + "SUM(num_girls)": 157, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00013944833527998474, + "% SUM(num_girls)": 0.000327311087298245, + "% pct_boys": 0 + }, + { + "__timestamp": -63158400000, + "state": "MA", + "gender": "boy", + "name": "Craig", + "sum__num": 222, + "SUM(num_girls)": 0, + "SUM(num_boys)": 222, + "pct_boys": 222, + "% sum__num": 0.0001971817224978128, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00034354742115045054 + }, + { + "__timestamp": 94694400000, + "state": "NY", + "gender": "boy", + "name": "Kenneth", + "sum__num": 811, + "SUM(num_girls)": 0, + "SUM(num_boys)": 811, + "pct_boys": 811, + "% sum__num": 0.0007203350312870549, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012550313448334027 + }, + { + "__timestamp": 157766400000, + "state": "other", + "gender": "boy", + "name": "Nicholas", + "sum__num": 941, + "SUM(num_girls)": 0, + "SUM(num_boys)": 941, + "pct_boys": 941, + "% sum__num": 0.0008358018057227109, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001456207762624207 + }, + { + "__timestamp": 567993600000, + "state": "PA", + "gender": "girl", + "name": "Patricia", + "sum__num": 138, + "SUM(num_girls)": 138, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00012257242209323498, + "% SUM(num_girls)": 0.0002877001913831708, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "NY", + "gender": "girl", + "name": "Dawn", + "sum__num": 400, + "SUM(num_girls)": 400, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000355282382878942, + "% SUM(num_girls)": 0.0008339135982120893, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "FL", + "gender": "boy", + "name": "Juan", + "sum__num": 184, + "SUM(num_girls)": 0, + "SUM(num_boys)": 184, + "pct_boys": 184, + "% sum__num": 0.0001634298961243133, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002847420067192924 + }, + { + "__timestamp": 283996800000, + "state": "FL", + "gender": "girl", + "name": "Emily", + "sum__num": 172, + "SUM(num_girls)": 172, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00015277142463794504, + "% SUM(num_girls)": 0.00035858284723119837, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "other", + "gender": "boy", + "name": "David", + "sum__num": 15547, + "SUM(num_girls)": 0, + "SUM(num_boys)": 15547, + "pct_boys": 15547, + "% sum__num": 0.013808938016547277, + "% SUM(num_girls)": 0, + "% pct_boys": 0.02405915205687412 + }, + { + "__timestamp": 31536000000, + "state": "other", + "gender": "girl", + "name": "Teresa", + "sum__num": 4880, + "SUM(num_girls)": 4880, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.004334445071123092, + "% SUM(num_girls)": 0.01017374589818749, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "IL", + "gender": "boy", + "name": "Joshua", + "sum__num": 1288, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1288, + "pct_boys": 1288, + "% sum__num": 0.001144009272870193, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0019931940470350466 + }, + { + "__timestamp": 315532800000, + "state": "CA", + "gender": "girl", + "name": "Linda", + "sum__num": 456, + "SUM(num_girls)": 456, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00040502191648199385, + "% SUM(num_girls)": 0.0009506615019617817, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "MI", + "gender": "boy", + "name": "Benjamin", + "sum__num": 651, + "SUM(num_girls)": 0, + "SUM(num_boys)": 651, + "pct_boys": 651, + "% sum__num": 0.0005782220781354781, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001007429599860105 + }, + { + "__timestamp": 157766400000, + "state": "MI", + "gender": "girl", + "name": "Kristen", + "sum__num": 288, + "SUM(num_girls)": 288, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002558033156728382, + "% SUM(num_girls)": 0.0006004177907127043, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "IL", + "gender": "boy", + "name": "Steven", + "sum__num": 956, + "SUM(num_girls)": 0, + "SUM(num_boys)": 956, + "pct_boys": 956, + "% sum__num": 0.0008491248950806713, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014794204262154537 + }, + { + "__timestamp": 946684800000, + "state": "NJ", + "gender": "girl", + "name": "Brooke", + "sum__num": 133, + "SUM(num_girls)": 133, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00011813139230724821, + "% SUM(num_girls)": 0.00027727627140551966, + "% pct_boys": 0 + }, + { + "__timestamp": 1041379200000, + "state": "NY", + "gender": "girl", + "name": "Vanessa", + "sum__num": 252, + "SUM(num_girls)": 252, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00022382790121373345, + "% SUM(num_girls)": 0.0005253655668736163, + "% pct_boys": 0 + }, + { + "__timestamp": 662688000000, + "state": "NY", + "gender": "boy", + "name": "Dennis", + "sum__num": 227, + "SUM(num_girls)": 0, + "SUM(num_boys)": 227, + "pct_boys": 227, + "% sum__num": 0.00020162275228379956, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003512849756808661 + }, + { + "__timestamp": 820454400000, + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "sum__num": 7393, + "SUM(num_girls)": 7393, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.006566506641560045, + "% SUM(num_girls)": 0.01541280807895494, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "IL", + "gender": "girl", + "name": "Angela", + "sum__num": 511, + "SUM(num_girls)": 511, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00045387324412784834, + "% SUM(num_girls)": 0.001065324621715944, + "% pct_boys": 0 + }, + { + "__timestamp": 1104537600000, + "state": "MA", + "gender": "boy", + "name": "Jason", + "sum__num": 254, + "SUM(num_girls)": 0, + "SUM(num_boys)": 254, + "pct_boys": 254, + "% sum__num": 0.00022560431312812815, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003930677701451101 + }, + { + "__timestamp": 1136073600000, + "state": "IL", + "gender": "boy", + "name": "Caleb", + "sum__num": 351, + "SUM(num_girls)": 0, + "SUM(num_boys)": 351, + "pct_boys": 351, + "% sum__num": 0.00031176029097627157, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005431763280351719 + }, + { + "__timestamp": 126230400000, + "state": "FL", + "gender": "girl", + "name": "Michele", + "sum__num": 165, + "SUM(num_girls)": 165, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00014655398293756357, + "% SUM(num_girls)": 0.0003439893592624868, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "CA", + "gender": "girl", + "name": "Brittany", + "sum__num": 2421, + "SUM(num_girls)": 2421, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0021503466223747963, + "% SUM(num_girls)": 0.00504726205317867, + "% pct_boys": 0 + }, + { + "__timestamp": 788918400000, + "state": "PA", + "gender": "girl", + "name": "Tara", + "sum__num": 146, + "SUM(num_girls)": 146, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001296780697508138, + "% SUM(num_girls)": 0.0003043784633474126, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "MI", + "gender": "girl", + "name": "Tina", + "sum__num": 177, + "SUM(num_girls)": 177, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00015721245442393183, + "% SUM(num_girls)": 0.00036900676720884947, + "% pct_boys": 0 + }, + { + "__timestamp": 410227200000, + "state": "FL", + "gender": "girl", + "name": "Maria", + "sum__num": 252, + "SUM(num_girls)": 252, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00022382790121373345, + "% SUM(num_girls)": 0.0005253655668736163, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "other", + "gender": "boy", + "name": "Kevin", + "sum__num": 8976, + "SUM(num_girls)": 0, + "SUM(num_boys)": 8976, + "pct_boys": 8976, + "% sum__num": 0.007972536671803457, + "% SUM(num_girls)": 0, + "% pct_boys": 0.013890457893002 + }, + { + "__timestamp": 567993600000, + "state": "NJ", + "gender": "boy", + "name": "Eric", + "sum__num": 742, + "SUM(num_girls)": 0, + "SUM(num_boys)": 742, + "pct_boys": 742, + "% sum__num": 0.0006590488202404374, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0011482530923136681 + }, + { + "__timestamp": 220924800000, + "state": "FL", + "gender": "boy", + "name": "Bryan", + "sum__num": 258, + "SUM(num_girls)": 0, + "SUM(num_boys)": 258, + "pct_boys": 258, + "% sum__num": 0.00022915713695691758, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00039925781376944254 + }, + { + "__timestamp": 946684800000, + "state": "FL", + "gender": "boy", + "name": "Logan", + "sum__num": 484, + "SUM(num_girls)": 0, + "SUM(num_boys)": 484, + "pct_boys": 484, + "% sum__num": 0.0004298916832835198, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007489952785442256 + }, + { + "__timestamp": 410227200000, + "state": "MI", + "gender": "boy", + "name": "Bradley", + "sum__num": 351, + "SUM(num_girls)": 0, + "SUM(num_boys)": 351, + "pct_boys": 351, + "% sum__num": 0.00031176029097627157, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005431763280351719 + }, + { + "__timestamp": 94694400000, + "state": "TX", + "gender": "boy", + "name": "Sean", + "sum__num": 354, + "SUM(num_girls)": 0, + "SUM(num_boys)": 354, + "pct_boys": 354, + "% sum__num": 0.00031442490884786366, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005478188607534212 + }, + { + "__timestamp": 536457600000, + "state": "NJ", + "gender": "girl", + "name": "Catherine", + "sum__num": 144, + "SUM(num_girls)": 144, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001279016578364191, + "% SUM(num_girls)": 0.00030020889535635215, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "NY", + "gender": "boy", + "name": "Shane", + "sum__num": 200, + "SUM(num_girls)": 0, + "SUM(num_boys)": 200, + "pct_boys": 200, + "% sum__num": 0.000177641191439471, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00030950218121662213 + }, + { + "__timestamp": 0, + "state": "IL", + "gender": "boy", + "name": "Douglas", + "sum__num": 628, + "SUM(num_girls)": 0, + "SUM(num_boys)": 628, + "pct_boys": 628, + "% sum__num": 0.0005577933411199389, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009718368490201935 + }, + { + "__timestamp": 315532800000, + "state": "MI", + "gender": "girl", + "name": "Laura", + "sum__num": 556, + "SUM(num_girls)": 556, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004938425122017294, + "% SUM(num_girls)": 0.001159139901514804, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 461, + "SUM(num_girls)": 0, + "SUM(num_boys)": 461, + "pct_boys": 461, + "% sum__num": 0.0004094629462679806, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000713402527704314 + }, + { + "__timestamp": 1072915200000, + "state": "FL", + "gender": "girl", + "name": "Alexandra", + "sum__num": 429, + "SUM(num_girls)": 429, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003810403556376653, + "% SUM(num_girls)": 0.0008943723340824657, + "% pct_boys": 0 + }, + { + "__timestamp": -94694400000, + "state": "TX", + "gender": "girl", + "name": "Monica", + "sum__num": 474, + "SUM(num_girls)": 474, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00042100962371154624, + "% SUM(num_girls)": 0.0009881876138813257, + "% pct_boys": 0 + }, + { + "__timestamp": 315532800000, + "state": "other", + "gender": "girl", + "name": "Lisa", + "sum__num": 6862, + "SUM(num_girls)": 6862, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.006094869278288249, + "% SUM(num_girls)": 0.014305787777328391, + "% pct_boys": 0 + }, + { + "__timestamp": 788918400000, + "state": "NJ", + "gender": "girl", + "name": "Sydney", + "sum__num": 148, + "SUM(num_girls)": 148, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00013145448166520854, + "% SUM(num_girls)": 0.000308548031338473, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "IL", + "gender": "boy", + "name": "Brandon", + "sum__num": 1192, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1192, + "pct_boys": 1192, + "% sum__num": 0.001058741500979247, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001844633000051068 + }, + { + "__timestamp": 725846400000, + "state": "TX", + "gender": "boy", + "name": "Carlos", + "sum__num": 917, + "SUM(num_girls)": 0, + "SUM(num_boys)": 917, + "pct_boys": 917, + "% sum__num": 0.0008144848627499744, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014190675008782124 + }, + { + "__timestamp": 631152000000, + "state": "FL", + "gender": "girl", + "name": "Melissa", + "sum__num": 722, + "SUM(num_girls)": 722, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006412847010964902, + "% SUM(num_girls)": 0.001505214044772821, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "PA", + "gender": "girl", + "name": "Abigail", + "sum__num": 683, + "SUM(num_girls)": 683, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006066446687657934, + "% SUM(num_girls)": 0.0014239074689471425, + "% pct_boys": 0 + }, + { + "__timestamp": 1199145600000, + "state": "NJ", + "gender": "boy", + "name": "Bryan", + "sum__num": 175, + "SUM(num_girls)": 0, + "SUM(num_boys)": 175, + "pct_boys": 175, + "% sum__num": 0.0001554360425095371, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00027081440856454436 + }, + { + "__timestamp": 631152000000, + "state": "CA", + "gender": "boy", + "name": "Cody", + "sum__num": 1489, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1489, + "pct_boys": 1489, + "% sum__num": 0.0013225386702668614, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0023042437391577516 + }, + { + "__timestamp": 1072915200000, + "state": "MA", + "gender": "boy", + "name": "Dylan", + "sum__num": 354, + "SUM(num_girls)": 0, + "SUM(num_boys)": 354, + "pct_boys": 354, + "% sum__num": 0.00031442490884786366, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005478188607534212 + }, + { + "__timestamp": 63072000000, + "state": "IL", + "gender": "boy", + "name": "Carlos", + "sum__num": 184, + "SUM(num_girls)": 0, + "SUM(num_boys)": 184, + "pct_boys": 184, + "% sum__num": 0.0001634298961243133, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002847420067192924 + }, + { + "__timestamp": 852076800000, + "state": "FL", + "gender": "boy", + "name": "Antonio", + "sum__num": 320, + "SUM(num_girls)": 0, + "SUM(num_boys)": 320, + "pct_boys": 320, + "% sum__num": 0.0002842259063031536, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004952034899465954 + }, + { + "__timestamp": 946684800000, + "state": "other", + "gender": "girl", + "name": "Jacqueline", + "sum__num": 583, + "SUM(num_girls)": 583, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005178240730460579, + "% SUM(num_girls)": 0.00121542906939412, + "% pct_boys": 0 + }, + { + "__timestamp": 315532800000, + "state": "MA", + "gender": "boy", + "name": "Zachary", + "sum__num": 63, + "SUM(num_girls)": 0, + "SUM(num_boys)": 63, + "pct_boys": 63, + "% sum__num": 0.00005595697530343336, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00009749318708323597 + }, + { + "__timestamp": 852076800000, + "state": "IL", + "gender": "girl", + "name": "Savannah", + "sum__num": 159, + "SUM(num_girls)": 159, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00014122474719437944, + "% SUM(num_girls)": 0.0003314806552893055, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "IL", + "gender": "boy", + "name": "Randy", + "sum__num": 143, + "SUM(num_girls)": 0, + "SUM(num_boys)": 143, + "pct_boys": 143, + "% sum__num": 0.00012701345187922174, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00022129405956988483 + }, + { + "__timestamp": -126230400000, + "state": "TX", + "gender": "boy", + "name": "Samuel", + "sum__num": 329, + "SUM(num_girls)": 0, + "SUM(num_boys)": 329, + "pct_boys": 329, + "% sum__num": 0.00029221975991792977, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005091310881013434 + }, + { + "__timestamp": 220924800000, + "state": "NJ", + "gender": "girl", + "name": "Monica", + "sum__num": 125, + "SUM(num_girls)": 125, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00011102574464966936, + "% SUM(num_girls)": 0.0002605979994412779, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "CA", + "gender": "girl", + "name": "Maria", + "sum__num": 1695, + "SUM(num_girls)": 1695, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0015055090974495167, + "% SUM(num_girls)": 0.0035337088724237283, + "% pct_boys": 0 + }, + { + "__timestamp": 883612800000, + "state": "NY", + "gender": "girl", + "name": "Chelsea", + "sum__num": 321, + "SUM(num_girls)": 321, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002851141122603509, + "% SUM(num_girls)": 0.0006692156625652016, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "TX", + "gender": "girl", + "name": "Angela", + "sum__num": 1350, + "SUM(num_girls)": 1350, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.001199078042216429, + "% SUM(num_girls)": 0.002814458393965801, + "% pct_boys": 0 + }, + { + "__timestamp": 315532800000, + "state": "FL", + "gender": "girl", + "name": "Angela", + "sum__num": 626, + "SUM(num_girls)": 626, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005560169292055442, + "% SUM(num_girls)": 0.0013050747812019196, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "OH", + "gender": "boy", + "name": "Joshua", + "sum__num": 1762, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1762, + "pct_boys": 1762, + "% sum__num": 0.0015650188965817395, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002726714216518441 + }, + { + "__timestamp": 820454400000, + "state": "other", + "gender": "girl", + "name": "Shannon", + "sum__num": 1035, + "SUM(num_girls)": 1035, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009192931656992623, + "% SUM(num_girls)": 0.0021577514353737807, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "MA", + "gender": "girl", + "name": "Lisa", + "sum__num": 501, + "SUM(num_girls)": 501, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004449911845558748, + "% SUM(num_girls)": 0.0010444767817606418, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "NY", + "gender": "girl", + "name": "Dawn", + "sum__num": 775, + "SUM(num_girls)": 775, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006883596168279501, + "% SUM(num_girls)": 0.001615707596535923, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "FL", + "gender": "girl", + "name": "Haley", + "sum__num": 410, + "SUM(num_girls)": 410, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003641644424509155, + "% SUM(num_girls)": 0.0008547614381673915, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "MI", + "gender": "girl", + "name": "Sarah", + "sum__num": 1596, + "SUM(num_girls)": 1596, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0014175767076869785, + "% SUM(num_girls)": 0.003327315256866236, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "CA", + "gender": "girl", + "name": "Jacqueline", + "sum__num": 1225, + "SUM(num_girls)": 1225, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010880522975667598, + "% SUM(num_girls)": 0.002553860394524523, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "other", + "gender": "boy", + "name": "Luke", + "sum__num": 4838, + "SUM(num_girls)": 0, + "SUM(num_boys)": 4838, + "pct_boys": 4838, + "% sum__num": 0.004297140420920803, + "% SUM(num_girls)": 0, + "% pct_boys": 0.007486857763630089 + }, + { + "__timestamp": 1072915200000, + "state": "CA", + "gender": "boy", + "name": "Daniel", + "sum__num": 4160, + "SUM(num_girls)": 0, + "SUM(num_boys)": 4160, + "pct_boys": 4160, + "% sum__num": 0.0036949367819409966, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00643764536930574 + }, + { + "__timestamp": 283996800000, + "state": "other", + "gender": "girl", + "name": "Diane", + "sum__num": 13, + "SUM(num_girls)": 13, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000011546677443565614, + "% SUM(num_girls)": 0.0000271021919418929, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "OH", + "gender": "girl", + "name": "Kristin", + "sum__num": 142, + "SUM(num_girls)": 142, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001261252459220244, + "% SUM(num_girls)": 0.00029603932736529167, + "% pct_boys": 0 + }, + { + "__timestamp": 757382400000, + "state": "other", + "gender": "girl", + "name": "Samantha", + "sum__num": 9710, + "SUM(num_girls)": 9710, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.008624479844386317, + "% SUM(num_girls)": 0.020243252596598465, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "NJ", + "gender": "girl", + "name": "Lauren", + "sum__num": 124, + "SUM(num_girls)": 124, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00011013753869247201, + "% SUM(num_girls)": 0.00025851321544574765, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "MA", + "gender": "girl", + "name": "Wendy", + "sum__num": 86, + "SUM(num_girls)": 86, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00007638571231897252, + "% SUM(num_girls)": 0.00017929142361559918, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "TX", + "gender": "girl", + "name": "Patricia", + "sum__num": 1117, + "SUM(num_girls)": 1117, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009921260541894455, + "% SUM(num_girls)": 0.002328703723007259, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "PA", + "gender": "boy", + "name": "Luke", + "sum__num": 154, + "SUM(num_girls)": 0, + "SUM(num_boys)": 154, + "pct_boys": 154, + "% sum__num": 0.00013678371740839267, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00023831667953679904 + }, + { + "__timestamp": -126230400000, + "state": "TX", + "gender": "girl", + "name": "Rhonda", + "sum__num": 737, + "SUM(num_girls)": 737, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006546077904544506, + "% SUM(num_girls)": 0.0015364858047057744, + "% pct_boys": 0 + }, + { + "__timestamp": 410227200000, + "state": "TX", + "gender": "girl", + "name": "Patricia", + "sum__num": 507, + "SUM(num_girls)": 507, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00045032042029905894, + "% SUM(num_girls)": 0.001056985485733823, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "other", + "gender": "girl", + "name": "Angel", + "sum__num": 562, + "SUM(num_girls)": 562, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004991717479449134, + "% SUM(num_girls)": 0.0011716486054879854, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "FL", + "gender": "boy", + "name": "Cameron", + "sum__num": 425, + "SUM(num_girls)": 0, + "SUM(num_boys)": 425, + "pct_boys": 425, + "% sum__num": 0.0003774875318088758, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000657692135085322 + }, + { + "__timestamp": 189302400000, + "state": "MA", + "gender": "girl", + "name": "Allison", + "sum__num": 129, + "SUM(num_girls)": 129, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00011457856847845879, + "% SUM(num_girls)": 0.0002689371354233988, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "IL", + "gender": "boy", + "name": "Derek", + "sum__num": 182, + "SUM(num_girls)": 0, + "SUM(num_boys)": 182, + "pct_boys": 182, + "% sum__num": 0.0001616534842099186, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00028164698490712616 + }, + { + "__timestamp": 94694400000, + "state": "OH", + "gender": "boy", + "name": "Timothy", + "sum__num": 985, + "SUM(num_girls)": 0, + "SUM(num_boys)": 985, + "pct_boys": 985, + "% sum__num": 0.0008748828678393946, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001524298242491864 + }, + { + "__timestamp": 157766400000, + "state": "MI", + "gender": "boy", + "name": "Andrew", + "sum__num": 711, + "SUM(num_girls)": 0, + "SUM(num_boys)": 711, + "pct_boys": 711, + "% sum__num": 0.0006315144355673193, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0011002802542250916 + }, + { + "__timestamp": 252460800000, + "state": "PA", + "gender": "girl", + "name": "Courtney", + "sum__num": 215, + "SUM(num_girls)": 215, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001909642807974313, + "% SUM(num_girls)": 0.000448228559038998, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "MA", + "gender": "girl", + "name": "Stephanie", + "sum__num": 312, + "SUM(num_girls)": 312, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00027712025864557474, + "% SUM(num_girls)": 0.0006504526066054297, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "PA", + "gender": "girl", + "name": "Christina", + "sum__num": 723, + "SUM(num_girls)": 723, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006421729070536876, + "% SUM(num_girls)": 0.0015072988287683513, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "NJ", + "gender": "boy", + "name": "Mason", + "sum__num": 103, + "SUM(num_girls)": 0, + "SUM(num_boys)": 103, + "pct_boys": 103, + "% sum__num": 0.00009148521359132756, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0001593936233265604 + }, + { + "__timestamp": 0, + "state": "FL", + "gender": "girl", + "name": "Stacy", + "sum__num": 202, + "SUM(num_girls)": 202, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001794176033538657, + "% SUM(num_girls)": 0.00042112636709710507, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "FL", + "gender": "boy", + "name": "Nathaniel", + "sum__num": 175, + "SUM(num_girls)": 0, + "SUM(num_boys)": 175, + "pct_boys": 175, + "% sum__num": 0.0001554360425095371, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00027081440856454436 + }, + { + "__timestamp": 883612800000, + "state": "IL", + "gender": "girl", + "name": "Brittany", + "sum__num": 410, + "SUM(num_girls)": 410, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003641644424509155, + "% SUM(num_girls)": 0.0008547614381673915, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "FL", + "gender": "girl", + "name": "Madison", + "sum__num": 1011, + "SUM(num_girls)": 1011, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008979762227265258, + "% SUM(num_girls)": 0.0021077166194810554, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "CA", + "gender": "girl", + "name": "Nancy", + "sum__num": 662, + "SUM(num_girls)": 662, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000587992343664649, + "% SUM(num_girls)": 0.0013801270050410076, + "% pct_boys": 0 + }, + { + "__timestamp": 378691200000, + "state": "other", + "gender": "girl", + "name": "Donna", + "sum__num": 9, + "SUM(num_girls)": 9, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000007993853614776194, + "% SUM(num_girls)": 0.00001876305595977201, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "PA", + "gender": "boy", + "name": "Bradley", + "sum__num": 309, + "SUM(num_girls)": 0, + "SUM(num_boys)": 309, + "pct_boys": 309, + "% sum__num": 0.00027445564077398265, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00047818086997968116 + }, + { + "__timestamp": 1136073600000, + "state": "IL", + "gender": "boy", + "name": "Andrew", + "sum__num": 792, + "SUM(num_girls)": 0, + "SUM(num_boys)": 792, + "pct_boys": 792, + "% sum__num": 0.0007034591181003051, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012256286376178236 + }, + { + "__timestamp": 504921600000, + "state": "IL", + "gender": "boy", + "name": "Ryan", + "sum__num": 1572, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1572, + "pct_boys": 1572, + "% sum__num": 0.001396259764714242, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00243268714436265 + }, + { + "__timestamp": 1041379200000, + "state": "NJ", + "gender": "boy", + "name": "Gabriel", + "sum__num": 297, + "SUM(num_girls)": 0, + "SUM(num_boys)": 297, + "pct_boys": 297, + "% sum__num": 0.0002637971692876144, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00045961073910668384 + }, + { + "__timestamp": 1167609600000, + "state": "MA", + "gender": "boy", + "name": "Samuel", + "sum__num": 337, + "SUM(num_girls)": 0, + "SUM(num_boys)": 337, + "pct_boys": 337, + "% sum__num": 0.00029932540757550863, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005215111753500083 + }, + { + "__timestamp": 536457600000, + "state": "MA", + "gender": "girl", + "name": "Julia", + "sum__num": 119, + "SUM(num_girls)": 119, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00010569650890648523, + "% SUM(num_girls)": 0.00024808929546809655, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "IL", + "gender": "girl", + "name": "Diane", + "sum__num": 318, + "SUM(num_girls)": 318, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002824494943887589, + "% SUM(num_girls)": 0.000662961310578611, + "% pct_boys": 0 + }, + { + "__timestamp": 1104537600000, + "state": "OH", + "gender": "boy", + "name": "Hunter", + "sum__num": 372, + "SUM(num_girls)": 0, + "SUM(num_boys)": 372, + "pct_boys": 372, + "% sum__num": 0.000330412616077416, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005756740570629172 + }, + { + "__timestamp": 504921600000, + "state": "IL", + "gender": "girl", + "name": "Andrea", + "sum__num": 416, + "SUM(num_girls)": 416, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00036949367819409966, + "% SUM(num_girls)": 0.0008672701421405728, + "% pct_boys": 0 + }, + { + "__timestamp": 94694400000, + "state": "PA", + "gender": "boy", + "name": "Troy", + "sum__num": 261, + "SUM(num_girls)": 0, + "SUM(num_boys)": 261, + "pct_boys": 261, + "% sum__num": 0.00023182175482850962, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004039003464876919 + }, + { + "__timestamp": -126230400000, + "state": "NJ", + "gender": "girl", + "name": "Lauren", + "sum__num": 125, + "SUM(num_girls)": 125, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00011102574464966936, + "% SUM(num_girls)": 0.0002605979994412779, + "% pct_boys": 0 + }, + { + "__timestamp": 410227200000, + "state": "MA", + "gender": "girl", + "name": "Julia", + "sum__num": 109, + "SUM(num_girls)": 109, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00009681444933451168, + "% SUM(num_girls)": 0.00022724145551279433, + "% pct_boys": 0 + }, + { + "__timestamp": -94694400000, + "state": "other", + "gender": "girl", + "name": "Kathryn", + "sum__num": 1166, + "SUM(num_girls)": 1166, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010356481460921157, + "% SUM(num_girls)": 0.00243085813878824, + "% pct_boys": 0 + }, + { + "__timestamp": -157766400000, + "state": "TX", + "gender": "girl", + "name": "Laura", + "sum__num": 967, + "SUM(num_girls)": 967, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008588951606098422, + "% SUM(num_girls)": 0.0020159861236777256, + "% pct_boys": 0 + }, + { + "__timestamp": 1041379200000, + "state": "NY", + "gender": "boy", + "name": "Alex", + "sum__num": 471, + "SUM(num_girls)": 0, + "SUM(num_boys)": 471, + "pct_boys": 471, + "% sum__num": 0.00041834500583995415, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007288776367651451 + }, + { + "__timestamp": 1009843200000, + "state": "NY", + "gender": "girl", + "name": "Haley", + "sum__num": 225, + "SUM(num_girls)": 225, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00019984634036940486, + "% SUM(num_girls)": 0.0004690763989943002, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "MI", + "gender": "boy", + "name": "William", + "sum__num": 1062, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1062, + "pct_boys": 1062, + "% sum__num": 0.0009432747265435909, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0016434565822602634 + }, + { + "__timestamp": 94694400000, + "state": "MA", + "gender": "girl", + "name": "Cynthia", + "sum__num": 163, + "SUM(num_girls)": 163, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00014477757102316884, + "% SUM(num_girls)": 0.00033981979127142636, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "CA", + "gender": "boy", + "name": "Jacob", + "sum__num": 520, + "SUM(num_girls)": 0, + "SUM(num_boys)": 520, + "pct_boys": 520, + "% sum__num": 0.00046186709774262457, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008047056711632175 + }, + { + "__timestamp": 1072915200000, + "state": "OH", + "gender": "girl", + "name": "Megan", + "sum__num": 351, + "SUM(num_girls)": 351, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00031176029097627157, + "% SUM(num_girls)": 0.0007317591824311083, + "% pct_boys": 0 + }, + { + "__timestamp": 441763200000, + "state": "FL", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 534, + "SUM(num_girls)": 0, + "SUM(num_boys)": 534, + "pct_boys": 534, + "% sum__num": 0.0004743019811433875, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008263708238483811 + }, + { + "__timestamp": 63072000000, + "state": "MI", + "gender": "boy", + "name": "Ryan", + "sum__num": 418, + "SUM(num_girls)": 0, + "SUM(num_boys)": 418, + "pct_boys": 418, + "% sum__num": 0.0003712700901084944, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006468595587427403 + }, + { + "__timestamp": 0, + "state": "TX", + "gender": "girl", + "name": "Dana", + "sum__num": 433, + "SUM(num_girls)": 433, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003845931794664547, + "% SUM(num_girls)": 0.0009027114700645866, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "FL", + "gender": "boy", + "name": "Bryan", + "sum__num": 416, + "SUM(num_girls)": 0, + "SUM(num_boys)": 416, + "pct_boys": 416, + "% sum__num": 0.00036949367819409966, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000643764536930574 + }, + { + "__timestamp": 978307200000, + "state": "NJ", + "gender": "girl", + "name": "Sara", + "sum__num": 195, + "SUM(num_girls)": 195, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001732001616534842, + "% SUM(num_girls)": 0.0004065328791283935, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "other", + "gender": "girl", + "name": "Dawn", + "sum__num": 9, + "SUM(num_girls)": 9, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000007993853614776194, + "% SUM(num_girls)": 0.00001876305595977201, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "NJ", + "gender": "boy", + "name": "Alexander", + "sum__num": 606, + "SUM(num_girls)": 0, + "SUM(num_boys)": 606, + "pct_boys": 606, + "% sum__num": 0.000538252810061597, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000937791609086365 + }, + { + "__timestamp": 1136073600000, + "state": "CA", + "gender": "girl", + "name": "Samantha", + "sum__num": 2338, + "SUM(num_girls)": 2338, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0020766255279274157, + "% SUM(num_girls)": 0.004874224981549662, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "MA", + "gender": "boy", + "name": "George", + "sum__num": 139, + "SUM(num_girls)": 0, + "SUM(num_boys)": 139, + "pct_boys": 139, + "% sum__num": 0.00012346062805043234, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00021510401594555237 + }, + { + "__timestamp": 1009843200000, + "state": "PA", + "gender": "boy", + "name": "Steven", + "sum__num": 236, + "SUM(num_girls)": 0, + "SUM(num_boys)": 236, + "pct_boys": 236, + "% sum__num": 0.00020961660589857576, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00036521257383561413 + }, + { + "__timestamp": 946684800000, + "state": "NJ", + "gender": "girl", + "name": "Jessica", + "sum__num": 606, + "SUM(num_girls)": 606, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000538252810061597, + "% SUM(num_girls)": 0.0012633791012913152, + "% pct_boys": 0 + }, + { + "__timestamp": 94694400000, + "state": "CA", + "gender": "girl", + "name": "Kimberly", + "sum__num": 1717, + "SUM(num_girls)": 1717, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0015250496285078585, + "% SUM(num_girls)": 0.003579574120325393, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "PA", + "gender": "boy", + "name": "Gregory", + "sum__num": 826, + "SUM(num_girls)": 0, + "SUM(num_boys)": 826, + "pct_boys": 826, + "% sum__num": 0.0007336581206450151, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012782440084246494 + }, + { + "__timestamp": 883612800000, + "state": "FL", + "gender": "girl", + "name": "Lindsey", + "sum__num": 163, + "SUM(num_girls)": 163, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00014477757102316884, + "% SUM(num_girls)": 0.00033981979127142636, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "other", + "gender": "girl", + "name": "Danielle", + "sum__num": 376, + "SUM(num_girls)": 376, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00033396543990620546, + "% SUM(num_girls)": 0.0007838787823193639, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "OH", + "gender": "boy", + "name": "Austin", + "sum__num": 148, + "SUM(num_girls)": 0, + "SUM(num_boys)": 148, + "pct_boys": 148, + "% sum__num": 0.00013145448166520854, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00022903161410030038 + }, + { + "__timestamp": -157766400000, + "state": "NJ", + "gender": "boy", + "name": "Stephen", + "sum__num": 620, + "SUM(num_girls)": 0, + "SUM(num_boys)": 620, + "pct_boys": 620, + "% sum__num": 0.00055068769346236, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009594567617715286 + }, + { + "__timestamp": 31536000000, + "state": "MA", + "gender": "boy", + "name": "Nicholas", + "sum__num": 87, + "SUM(num_girls)": 0, + "SUM(num_boys)": 87, + "pct_boys": 87, + "% sum__num": 0.00007727391827616988, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00013463344882923061 + }, + { + "__timestamp": 504921600000, + "state": "NY", + "gender": "girl", + "name": "Cassandra", + "sum__num": 315, + "SUM(num_girls)": 315, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002797848765171668, + "% SUM(num_girls)": 0.0006567069585920203, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "MA", + "gender": "boy", + "name": "Noah", + "sum__num": 253, + "SUM(num_girls)": 0, + "SUM(num_boys)": 253, + "pct_boys": 253, + "% sum__num": 0.0002247161071709308, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00039152025923902697 + }, + { + "__timestamp": 126230400000, + "state": "CA", + "gender": "boy", + "name": "Carlos", + "sum__num": 809, + "SUM(num_girls)": 0, + "SUM(num_boys)": 809, + "pct_boys": 809, + "% sum__num": 0.0007185586193726601, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012519363230212364 + }, + { + "__timestamp": 473385600000, + "state": "other", + "gender": "girl", + "name": "Kaitlyn", + "sum__num": 14, + "SUM(num_girls)": 14, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000012434883400762968, + "% SUM(num_girls)": 0.000029186975937423125, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "NJ", + "gender": "girl", + "name": "Heather", + "sum__num": 474, + "SUM(num_girls)": 474, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00042100962371154624, + "% SUM(num_girls)": 0.0009881876138813257, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "NY", + "gender": "boy", + "name": "Kevin", + "sum__num": 2118, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2118, + "pct_boys": 2118, + "% sum__num": 0.0018812202173439977, + "% SUM(num_girls)": 0, + "% pct_boys": 0.003277628099084028 + }, + { + "__timestamp": 410227200000, + "state": "IL", + "gender": "boy", + "name": "George", + "sum__num": 211, + "SUM(num_girls)": 0, + "SUM(num_boys)": 211, + "pct_boys": 211, + "% sum__num": 0.0001874114569686419, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00032652480118353636 + }, + { + "__timestamp": 978307200000, + "state": "other", + "gender": "boy", + "name": "Tyler", + "sum__num": 9805, + "SUM(num_girls)": 0, + "SUM(num_boys)": 9805, + "pct_boys": 9805, + "% sum__num": 0.008708859410320065, + "% SUM(num_girls)": 0, + "% pct_boys": 0.015173344434144899 + }, + { + "__timestamp": 1167609600000, + "state": "MI", + "gender": "girl", + "name": "Madison", + "sum__num": 681, + "SUM(num_girls)": 681, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006048682568513987, + "% SUM(num_girls)": 0.001419737900956082, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "other", + "gender": "boy", + "name": "Douglas", + "sum__num": 2399, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2399, + "pct_boys": 2399, + "% sum__num": 0.0021308060913164542, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0037124786636933823 + }, + { + "__timestamp": 915148800000, + "state": "OH", + "gender": "girl", + "name": "Victoria", + "sum__num": 366, + "SUM(num_girls)": 366, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00032508338033423193, + "% SUM(num_girls)": 0.0007630309423640616, + "% pct_boys": 0 + }, + { + "__timestamp": 757382400000, + "state": "TX", + "gender": "girl", + "name": "Taylor", + "sum__num": 1478, + "SUM(num_girls)": 1478, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0013127684047376906, + "% SUM(num_girls)": 0.00308131074539367, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "OH", + "gender": "boy", + "name": "Anthony", + "sum__num": 977, + "SUM(num_girls)": 0, + "SUM(num_boys)": 977, + "pct_boys": 977, + "% sum__num": 0.0008677772201818157, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001511918155243199 + }, + { + "__timestamp": 788918400000, + "state": "MA", + "gender": "girl", + "name": "Ashley", + "sum__num": 544, + "SUM(num_girls)": 544, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004831840407153611, + "% SUM(num_girls)": 0.0011341224935684413, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "CA", + "gender": "girl", + "name": "Nancy", + "sum__num": 895, + "SUM(num_girls)": 895, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007949443316916326, + "% SUM(num_girls)": 0.0018658816759995497, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "other", + "gender": "girl", + "name": "Brenda", + "sum__num": 1784, + "SUM(num_girls)": 1784, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0015845594276400813, + "% SUM(num_girls)": 0.003719254648025918, + "% pct_boys": 0 + }, + { + "__timestamp": 788918400000, + "state": "NJ", + "gender": "girl", + "name": "Brianna", + "sum__num": 491, + "SUM(num_girls)": 491, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004361091249839013, + "% SUM(num_girls)": 0.0010236289418053396, + "% pct_boys": 0 + }, + { + "__timestamp": -63158400000, + "state": "IL", + "gender": "girl", + "name": "Margaret", + "sum__num": 362, + "SUM(num_girls)": 362, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00032153055650544247, + "% SUM(num_girls)": 0.0007546918063819408, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "PA", + "gender": "girl", + "name": "Teresa", + "sum__num": 260, + "SUM(num_girls)": 260, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00023093354887131228, + "% SUM(num_girls)": 0.000542043838837858, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "OH", + "gender": "girl", + "name": "Madison", + "sum__num": 201, + "SUM(num_girls)": 201, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00017852939739666833, + "% SUM(num_girls)": 0.0004190415831015748, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "NJ", + "gender": "boy", + "name": "Charles", + "sum__num": 360, + "SUM(num_girls)": 0, + "SUM(num_boys)": 360, + "pct_boys": 360, + "% sum__num": 0.0003197541445910478, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005571039261899198 + }, + { + "__timestamp": 220924800000, + "state": "other", + "gender": "girl", + "name": "Dawn", + "sum__num": 2514, + "SUM(num_girls)": 2514, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0022329497763941505, + "% SUM(num_girls)": 0.005241146964762981, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "MA", + "gender": "boy", + "name": "Jared", + "sum__num": 141, + "SUM(num_girls)": 0, + "SUM(num_boys)": 141, + "pct_boys": 141, + "% sum__num": 0.00012523703996482704, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00021819903775771859 + }, + { + "__timestamp": 662688000000, + "state": "NY", + "gender": "boy", + "name": "Bryan", + "sum__num": 541, + "SUM(num_girls)": 0, + "SUM(num_boys)": 541, + "pct_boys": 541, + "% sum__num": 0.000480519422843769, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008372034001909628 + }, + { + "__timestamp": 189302400000, + "state": "PA", + "gender": "girl", + "name": "Monica", + "sum__num": 175, + "SUM(num_girls)": 175, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001554360425095371, + "% SUM(num_girls)": 0.00036483719921778904, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "FL", + "gender": "boy", + "name": "Jason", + "sum__num": 1599, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1599, + "pct_boys": 1599, + "% sum__num": 0.0014202413255585706, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002474469938826894 + }, + { + "__timestamp": -157766400000, + "state": "TX", + "gender": "boy", + "name": "John", + "sum__num": 3226, + "SUM(num_girls)": 0, + "SUM(num_boys)": 3226, + "pct_boys": 3226, + "% sum__num": 0.002865352417918667, + "% SUM(num_girls)": 0, + "% pct_boys": 0.004992270183024115 + }, + { + "__timestamp": 694224000000, + "state": "MI", + "gender": "girl", + "name": "Brittany", + "sum__num": 895, + "SUM(num_girls)": 895, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007949443316916326, + "% SUM(num_girls)": 0.0018658816759995497, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "FL", + "gender": "girl", + "name": "Jessica", + "sum__num": 866, + "SUM(num_girls)": 866, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007691863589329094, + "% SUM(num_girls)": 0.0018054229401291732, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "TX", + "gender": "girl", + "name": "Katherine", + "sum__num": 280, + "SUM(num_girls)": 280, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00024869766801525935, + "% SUM(num_girls)": 0.0005837395187484625, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "NY", + "gender": "boy", + "name": "Adam", + "sum__num": 802, + "SUM(num_girls)": 0, + "SUM(num_boys)": 802, + "pct_boys": 802, + "% sum__num": 0.0007123411776722786, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012411037466786548 + }, + { + "__timestamp": 157766400000, + "state": "TX", + "gender": "girl", + "name": "Denise", + "sum__num": 280, + "SUM(num_girls)": 280, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00024869766801525935, + "% SUM(num_girls)": 0.0005837395187484625, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "PA", + "gender": "boy", + "name": "Dylan", + "sum__num": 218, + "SUM(num_girls)": 0, + "SUM(num_boys)": 218, + "pct_boys": 218, + "% sum__num": 0.00019362889866902336, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003373573775261181 + }, + { + "__timestamp": 757382400000, + "state": "MI", + "gender": "boy", + "name": "John", + "sum__num": 675, + "SUM(num_girls)": 0, + "SUM(num_boys)": 675, + "pct_boys": 675, + "% sum__num": 0.0005995390211082145, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0010445698616060996 + }, + { + "__timestamp": 126230400000, + "state": "OH", + "gender": "boy", + "name": "Nicholas", + "sum__num": 207, + "SUM(num_girls)": 0, + "SUM(num_boys)": 207, + "pct_boys": 207, + "% sum__num": 0.00018385863313985246, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003203347575592039 + }, + { + "__timestamp": 915148800000, + "state": "PA", + "gender": "boy", + "name": "John", + "sum__num": 1003, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1003, + "pct_boys": 1003, + "% sum__num": 0.000890870575068947, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00155215343880136 + }, + { + "__timestamp": -157766400000, + "state": "PA", + "gender": "girl", + "name": "Cindy", + "sum__num": 404, + "SUM(num_girls)": 404, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003588352067077314, + "% SUM(num_girls)": 0.0008422527341942101, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "NY", + "gender": "girl", + "name": "Crystal", + "sum__num": 303, + "SUM(num_girls)": 303, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002691264050307985, + "% SUM(num_girls)": 0.0006316895506456576, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "OH", + "gender": "girl", + "name": "Patricia", + "sum__num": 293, + "SUM(num_girls)": 293, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000260244345458825, + "% SUM(num_girls)": 0.0006108417106903554, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "TX", + "gender": "boy", + "name": "Eric", + "sum__num": 1430, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1430, + "pct_boys": 1430, + "% sum__num": 0.0012701345187922175, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0022129405956988484 + }, + { + "__timestamp": 567993600000, + "state": "NY", + "gender": "boy", + "name": "Cody", + "sum__num": 235, + "SUM(num_girls)": 0, + "SUM(num_boys)": 235, + "pct_boys": 235, + "% sum__num": 0.0002087283999413784, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000363665062929531 + }, + { + "__timestamp": 94694400000, + "state": "NJ", + "gender": "boy", + "name": "Jose", + "sum__num": 300, + "SUM(num_girls)": 0, + "SUM(num_boys)": 300, + "pct_boys": 300, + "% sum__num": 0.0002664617871592065, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004642532718249332 + }, + { + "__timestamp": 631152000000, + "state": "CA", + "gender": "boy", + "name": "William", + "sum__num": 2203, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2203, + "pct_boys": 2203, + "% sum__num": 0.001956717723705773, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0034091665261010927 + }, + { + "__timestamp": 567993600000, + "state": "OH", + "gender": "girl", + "name": "Tiffany", + "sum__num": 954, + "SUM(num_girls)": 954, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008473484831662766, + "% SUM(num_girls)": 0.001988883931735833, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "MI", + "gender": "girl", + "name": "Sandra", + "sum__num": 371, + "SUM(num_girls)": 371, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003295244101202187, + "% SUM(num_girls)": 0.0007734548623417128, + "% pct_boys": 0 + }, + { + "__timestamp": 1104537600000, + "state": "PA", + "gender": "boy", + "name": "Joshua", + "sum__num": 853, + "SUM(num_girls)": 0, + "SUM(num_boys)": 853, + "pct_boys": 853, + "% sum__num": 0.0007576396814893437, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0013200268028888934 + }, + { + "__timestamp": 694224000000, + "state": "PA", + "gender": "boy", + "name": "Nathaniel", + "sum__num": 255, + "SUM(num_girls)": 0, + "SUM(num_boys)": 255, + "pct_boys": 255, + "% sum__num": 0.00022649251908532552, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003946152810511932 + }, + { + "__timestamp": 504921600000, + "state": "MI", + "gender": "girl", + "name": "Lisa", + "sum__num": 403, + "SUM(num_girls)": 403, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00035794700075053403, + "% SUM(num_girls)": 0.0008401679501986799, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "PA", + "gender": "girl", + "name": "Kimberly", + "sum__num": 1606, + "SUM(num_girls)": 1606, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.001426458767258952, + "% SUM(num_girls)": 0.003348163096821538, + "% pct_boys": 0 + }, + { + "__timestamp": 315532800000, + "state": "PA", + "gender": "boy", + "name": "Nathan", + "sum__num": 513, + "SUM(num_girls)": 0, + "SUM(num_boys)": 513, + "pct_boys": 513, + "% sum__num": 0.0004556496560422431, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007938730948206358 + }, + { + "__timestamp": 1041379200000, + "state": "TX", + "gender": "boy", + "name": "Jonathan", + "sum__num": 1767, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1767, + "pct_boys": 1767, + "% sum__num": 0.001569459926367726, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0027344517710488564 + }, + { + "__timestamp": 694224000000, + "state": "NJ", + "gender": "boy", + "name": "Corey", + "sum__num": 142, + "SUM(num_girls)": 0, + "SUM(num_boys)": 142, + "pct_boys": 142, + "% sum__num": 0.0001261252459220244, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002197465486638017 + }, + { + "__timestamp": -31536000000, + "state": "NJ", + "gender": "girl", + "name": "Monica", + "sum__num": 153, + "SUM(num_girls)": 153, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001358955114511953, + "% SUM(num_girls)": 0.00031897195131612416, + "% pct_boys": 0 + }, + { + "__timestamp": -94694400000, + "state": "IL", + "gender": "girl", + "name": "Victoria", + "sum__num": 281, + "SUM(num_girls)": 281, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002495858739724567, + "% SUM(num_girls)": 0.0005858243027439927, + "% pct_boys": 0 + }, + { + "__timestamp": 946684800000, + "state": "TX", + "gender": "girl", + "name": "Megan", + "sum__num": 740, + "SUM(num_girls)": 740, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006572724083260427, + "% SUM(num_girls)": 0.0015427401566923652, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "other", + "gender": "girl", + "name": "Jessica", + "sum__num": 15193, + "SUM(num_girls)": 15193, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.013494513107699413, + "% SUM(num_girls)": 0.03167412324409068, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "other", + "gender": "girl", + "name": "Cassandra", + "sum__num": 1849, + "SUM(num_girls)": 1849, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0016422928148579093, + "% SUM(num_girls)": 0.0038547656077353824, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "CA", + "gender": "girl", + "name": "Tiffany", + "sum__num": 1405, + "SUM(num_girls)": 1405, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0012479293698622836, + "% SUM(num_girls)": 0.0029291215137199635, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "PA", + "gender": "boy", + "name": "Aaron", + "sum__num": 495, + "SUM(num_girls)": 0, + "SUM(num_boys)": 495, + "pct_boys": 495, + "% sum__num": 0.0004396619488126907, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007660178985111398 + }, + { + "__timestamp": 599616000000, + "state": "MA", + "gender": "boy", + "name": "Lucas", + "sum__num": 76, + "SUM(num_girls)": 0, + "SUM(num_boys)": 76, + "pct_boys": 76, + "% sum__num": 0.00006750365274699897, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00011761082886231641 + }, + { + "__timestamp": 1167609600000, + "state": "other", + "gender": "girl", + "name": "Mary", + "sum__num": 1693, + "SUM(num_girls)": 1693, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.001503732685535122, + "% SUM(num_girls)": 0.003529539304432668, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "OH", + "gender": "girl", + "name": "Tara", + "sum__num": 354, + "SUM(num_girls)": 354, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00031442490884786366, + "% SUM(num_girls)": 0.0007380135344176989, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "MI", + "gender": "boy", + "name": "Nathaniel", + "sum__num": 190, + "SUM(num_girls)": 0, + "SUM(num_boys)": 190, + "pct_boys": 190, + "% sum__num": 0.00016875913186749743, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00029402707215579104 + }, + { + "__timestamp": 852076800000, + "state": "NY", + "gender": "boy", + "name": "Benjamin", + "sum__num": 789, + "SUM(num_girls)": 0, + "SUM(num_boys)": 789, + "pct_boys": 789, + "% sum__num": 0.0007007945002287131, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012209861048995743 + }, + { + "__timestamp": 820454400000, + "state": "NY", + "gender": "boy", + "name": "Joseph", + "sum__num": 2456, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2456, + "pct_boys": 2456, + "% sum__num": 0.002181433830876704, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0038006867853401195 + }, + { + "__timestamp": 946684800000, + "state": "NY", + "gender": "girl", + "name": "Katelyn", + "sum__num": 237, + "SUM(num_girls)": 237, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00021050481185577312, + "% SUM(num_girls)": 0.0004940938069406629, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "MI", + "gender": "boy", + "name": "Corey", + "sum__num": 230, + "SUM(num_girls)": 0, + "SUM(num_boys)": 230, + "pct_boys": 230, + "% sum__num": 0.00020428737015539163, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003559275083991154 + }, + { + "__timestamp": 1199145600000, + "state": "other", + "gender": "boy", + "name": "Ryan", + "sum__num": 5775, + "SUM(num_girls)": 0, + "SUM(num_boys)": 5775, + "pct_boys": 5775, + "% sum__num": 0.005129389402814725, + "% SUM(num_girls)": 0, + "% pct_boys": 0.008936875482629964 + }, + { + "__timestamp": 662688000000, + "state": "MA", + "gender": "boy", + "name": "Brian", + "sum__num": 524, + "SUM(num_girls)": 0, + "SUM(num_boys)": 524, + "pct_boys": 524, + "% sum__num": 0.00046541992157141397, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00081089571478755 + }, + { + "__timestamp": -157766400000, + "state": "FL", + "gender": "boy", + "name": "John", + "sum__num": 1933, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1933, + "pct_boys": 1933, + "% sum__num": 0.001716902115262487, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002991338581458653 + }, + { + "__timestamp": 220924800000, + "state": "NJ", + "gender": "boy", + "name": "John", + "sum__num": 1226, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1226, + "pct_boys": 1226, + "% sum__num": 0.0010889405035239572, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0018972483708578937 + }, + { + "__timestamp": -126230400000, + "state": "other", + "gender": "girl", + "name": "Allison", + "sum__num": 34, + "SUM(num_girls)": 34, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00003019900254471007, + "% SUM(num_girls)": 0.00007088265584802758, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "NY", + "gender": "boy", + "name": "Michael", + "sum__num": 6157, + "SUM(num_girls)": 0, + "SUM(num_boys)": 6157, + "pct_boys": 6157, + "% sum__num": 0.005468684078464114, + "% SUM(num_girls)": 0, + "% pct_boys": 0.009528024648753712 + }, + { + "__timestamp": 1041379200000, + "state": "other", + "gender": "boy", + "name": "Jeremy", + "sum__num": 457, + "SUM(num_girls)": 0, + "SUM(num_boys)": 457, + "pct_boys": 457, + "% sum__num": 0.0004059101224391912, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007072124840799815 + }, + { + "__timestamp": -94694400000, + "state": "CA", + "gender": "boy", + "name": "Jeffery", + "sum__num": 513, + "SUM(num_girls)": 0, + "SUM(num_boys)": 513, + "pct_boys": 513, + "% sum__num": 0.0004556496560422431, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007938730948206358 + }, + { + "__timestamp": 504921600000, + "state": "TX", + "gender": "boy", + "name": "Marcus", + "sum__num": 530, + "SUM(num_girls)": 0, + "SUM(num_boys)": 530, + "pct_boys": 530, + "% sum__num": 0.0004707491573145981, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008201807802240487 + }, + { + "__timestamp": 126230400000, + "state": "TX", + "gender": "boy", + "name": "Mark", + "sum__num": 1087, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1087, + "pct_boys": 1087, + "% sum__num": 0.0009654798754735248, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0016821443549123413 + }, + { + "__timestamp": 567993600000, + "state": "CA", + "gender": "girl", + "name": "Karen", + "sum__num": 494, + "SUM(num_girls)": 494, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004387737428554933, + "% SUM(num_girls)": 0.0010298832937919301, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "PA", + "gender": "girl", + "name": "Brooke", + "sum__num": 282, + "SUM(num_girls)": 282, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002504740799296541, + "% SUM(num_girls)": 0.000587909086739523, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "other", + "gender": "boy", + "name": "Donald", + "sum__num": 2048, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2048, + "pct_boys": 2048, + "% sum__num": 0.0018190458003401828, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0031693023356582106 + }, + { + "__timestamp": 567993600000, + "state": "NJ", + "gender": "girl", + "name": "Cassandra", + "sum__num": 137, + "SUM(num_girls)": 137, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00012168421613603762, + "% SUM(num_girls)": 0.00028561540738764057, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "CA", + "gender": "boy", + "name": "Kevin", + "sum__num": 2039, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2039, + "pct_boys": 2039, + "% sum__num": 0.0018110519467254068, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0031553747375034627 + }, + { + "__timestamp": 0, + "state": "FL", + "gender": "girl", + "name": "Kim", + "sum__num": 120, + "SUM(num_girls)": 120, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001065847148636826, + "% SUM(num_girls)": 0.0002501740794636268, + "% pct_boys": 0 + }, + { + "__timestamp": 410227200000, + "state": "NY", + "gender": "boy", + "name": "Vincent", + "sum__num": 459, + "SUM(num_girls)": 0, + "SUM(num_boys)": 459, + "pct_boys": 459, + "% sum__num": 0.0004076865343535859, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007103075058921478 + }, + { + "__timestamp": 1041379200000, + "state": "MI", + "gender": "boy", + "name": "Jack", + "sum__num": 428, + "SUM(num_girls)": 0, + "SUM(num_boys)": 428, + "pct_boys": 428, + "% sum__num": 0.0003801521496804679, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006623346678035713 + }, + { + "__timestamp": 378691200000, + "state": "MA", + "gender": "girl", + "name": "Kristin", + "sum__num": 243, + "SUM(num_girls)": 243, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00021583404759895725, + "% SUM(num_girls)": 0.0005066025109138442, + "% pct_boys": 0 + }, + { + "__timestamp": -63158400000, + "state": "FL", + "gender": "boy", + "name": "Daniel", + "sum__num": 434, + "SUM(num_girls)": 0, + "SUM(num_boys)": 434, + "pct_boys": 434, + "% sum__num": 0.00038548138542365205, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00067161973324007 + }, + { + "__timestamp": -63158400000, + "state": "NY", + "gender": "girl", + "name": "Mary", + "sum__num": 1796, + "SUM(num_girls)": 1796, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0015952178991264494, + "% SUM(num_girls)": 0.0037442720559722805, + "% pct_boys": 0 + }, + { + "__timestamp": 1199145600000, + "state": "NY", + "gender": "boy", + "name": "Ryan", + "sum__num": 1429, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1429, + "pct_boys": 1429, + "% sum__num": 0.0012692463128350202, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002211393084792765 + }, + { + "__timestamp": -157766400000, + "state": "MI", + "gender": "boy", + "name": "Craig", + "sum__num": 496, + "SUM(num_girls)": 0, + "SUM(num_boys)": 496, + "pct_boys": 496, + "% sum__num": 0.00044055015476988804, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007675654094172229 + }, + { + "__timestamp": 504921600000, + "state": "NY", + "gender": "boy", + "name": "Miguel", + "sum__num": 258, + "SUM(num_girls)": 0, + "SUM(num_boys)": 258, + "pct_boys": 258, + "% sum__num": 0.00022915713695691758, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00039925781376944254 + }, + { + "__timestamp": 94694400000, + "state": "NJ", + "gender": "girl", + "name": "Rachel", + "sum__num": 158, + "SUM(num_girls)": 158, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00014033654123718207, + "% SUM(num_girls)": 0.00032939587129377526, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "MA", + "gender": "girl", + "name": "Brooke", + "sum__num": 151, + "SUM(num_girls)": 151, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001341190995368006, + "% SUM(num_girls)": 0.0003148023833250637, + "% pct_boys": 0 + }, + { + "__timestamp": 599616000000, + "state": "PA", + "gender": "boy", + "name": "Stephen", + "sum__num": 748, + "SUM(num_girls)": 0, + "SUM(num_boys)": 748, + "pct_boys": 748, + "% sum__num": 0.0006643780559836215, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0011575381577501667 + }, + { + "__timestamp": 0, + "state": "NJ", + "gender": "girl", + "name": "Christine", + "sum__num": 855, + "SUM(num_girls)": 855, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007594160934037385, + "% SUM(num_girls)": 0.0017824903161783407, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "MI", + "gender": "girl", + "name": "Brooke", + "sum__num": 269, + "SUM(num_girls)": 269, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00023892740248608848, + "% SUM(num_girls)": 0.00056080689479763, + "% pct_boys": 0 + }, + { + "__timestamp": 757382400000, + "state": "MA", + "gender": "boy", + "name": "Jeremy", + "sum__num": 187, + "SUM(num_girls)": 0, + "SUM(num_boys)": 187, + "pct_boys": 187, + "% sum__num": 0.00016609451399590537, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002893845394375417 + }, + { + "__timestamp": 757382400000, + "state": "OH", + "gender": "boy", + "name": "Bradley", + "sum__num": 312, + "SUM(num_girls)": 0, + "SUM(num_boys)": 312, + "pct_boys": 312, + "% sum__num": 0.00027712025864557474, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004828234026979305 + }, + { + "__timestamp": 946684800000, + "state": "MA", + "gender": "girl", + "name": "Nicole", + "sum__num": 314, + "SUM(num_girls)": 314, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00027889667055996947, + "% SUM(num_girls)": 0.00065462217459649, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "IL", + "gender": "girl", + "name": "Taylor", + "sum__num": 358, + "SUM(num_girls)": 358, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00031797773267665307, + "% SUM(num_girls)": 0.0007463526703998199, + "% pct_boys": 0 + }, + { + "__timestamp": 915148800000, + "state": "NJ", + "gender": "boy", + "name": "Jonathan", + "sum__num": 538, + "SUM(num_girls)": 0, + "SUM(num_boys)": 538, + "pct_boys": 538, + "% sum__num": 0.00047785480497217696, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008325608674727135 + }, + { + "__timestamp": 504921600000, + "state": "FL", + "gender": "boy", + "name": "Aaron", + "sum__num": 430, + "SUM(num_girls)": 0, + "SUM(num_boys)": 430, + "pct_boys": 430, + "% sum__num": 0.0003819285615948626, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006654296896157376 + }, + { + "__timestamp": -31536000000, + "state": "IL", + "gender": "girl", + "name": "Michelle", + "sum__num": 2022, + "SUM(num_girls)": 2022, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0017959524454530516, + "% SUM(num_girls)": 0.004215433238962111, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "NJ", + "gender": "girl", + "name": "Vanessa", + "sum__num": 124, + "SUM(num_girls)": 124, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00011013753869247201, + "% SUM(num_girls)": 0.00025851321544574765, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "other", + "gender": "girl", + "name": "Stacy", + "sum__num": 3032, + "SUM(num_girls)": 3032, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00269304046222238, + "% SUM(num_girls)": 0.006321065074447636, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "FL", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 461, + "SUM(num_girls)": 0, + "SUM(num_boys)": 461, + "pct_boys": 461, + "% sum__num": 0.0004094629462679806, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000713402527704314 + }, + { + "__timestamp": 1104537600000, + "state": "OH", + "gender": "girl", + "name": "Grace", + "sum__num": 605, + "SUM(num_girls)": 605, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005373646041043998, + "% SUM(num_girls)": 0.001261294317295785, + "% pct_boys": 0 + }, + { + "__timestamp": 1104537600000, + "state": "NY", + "gender": "girl", + "name": "Victoria", + "sum__num": 590, + "SUM(num_girls)": 590, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005240415147464394, + "% SUM(num_girls)": 0.0012300225573628316, + "% pct_boys": 0 + }, + { + "__timestamp": 1199145600000, + "state": "NY", + "gender": "girl", + "name": "Alyssa", + "sum__num": 524, + "SUM(num_girls)": 524, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00046541992157141397, + "% SUM(num_girls)": 0.001092426813657837, + "% pct_boys": 0 + }, + { + "__timestamp": 1167609600000, + "state": "CA", + "gender": "boy", + "name": "John", + "sum__num": 1147, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1147, + "pct_boys": 1147, + "% sum__num": 0.001018772232905366, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001774995009277328 + }, + { + "__timestamp": -94694400000, + "state": "TX", + "gender": "girl", + "name": "Anna", + "sum__num": 342, + "SUM(num_girls)": 342, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003037664373614954, + "% SUM(num_girls)": 0.0007129961264713363, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "FL", + "gender": "girl", + "name": "Tiffany", + "sum__num": 249, + "SUM(num_girls)": 249, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00022116328334214139, + "% SUM(num_girls)": 0.0005191112148870255, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "NJ", + "gender": "boy", + "name": "Christian", + "sum__num": 184, + "SUM(num_girls)": 0, + "SUM(num_boys)": 184, + "pct_boys": 184, + "% sum__num": 0.0001634298961243133, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002847420067192924 + }, + { + "__timestamp": 820454400000, + "state": "MI", + "gender": "boy", + "name": "Jeremy", + "sum__num": 227, + "SUM(num_girls)": 0, + "SUM(num_boys)": 227, + "pct_boys": 227, + "% sum__num": 0.00020162275228379956, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003512849756808661 + }, + { + "__timestamp": -94694400000, + "state": "FL", + "gender": "girl", + "name": "Mary", + "sum__num": 704, + "SUM(num_girls)": 704, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006252969938669379, + "% SUM(num_girls)": 0.0014676879328532771, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "OH", + "gender": "girl", + "name": "Brianna", + "sum__num": 191, + "SUM(num_girls)": 191, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001696473378246948, + "% SUM(num_girls)": 0.00039819374314627263, + "% pct_boys": 0 + }, + { + "__timestamp": 315532800000, + "state": "CA", + "gender": "girl", + "name": "Andrea", + "sum__num": 1092, + "SUM(num_girls)": 1092, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009699209052595115, + "% SUM(num_girls)": 0.0022765841231190036, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "IL", + "gender": "boy", + "name": "Steven", + "sum__num": 872, + "SUM(num_girls)": 0, + "SUM(num_boys)": 872, + "pct_boys": 872, + "% sum__num": 0.0007745155946760935, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0013494295101044724 + }, + { + "__timestamp": 441763200000, + "state": "FL", + "gender": "boy", + "name": "James", + "sum__num": 1679, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1679, + "pct_boys": 1679, + "% sum__num": 0.0014912978021343589, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0025982708113135426 + }, + { + "__timestamp": 915148800000, + "state": "FL", + "gender": "girl", + "name": "Elizabeth", + "sum__num": 658, + "SUM(num_girls)": 658, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005844395198358595, + "% SUM(num_girls)": 0.0013717878690588869, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "FL", + "gender": "boy", + "name": "Benjamin", + "sum__num": 508, + "SUM(num_girls)": 0, + "SUM(num_boys)": 508, + "pct_boys": 508, + "% sum__num": 0.0004512086262562563, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007861355402902202 + }, + { + "__timestamp": -63158400000, + "state": "PA", + "gender": "girl", + "name": "Leslie", + "sum__num": 315, + "SUM(num_girls)": 315, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002797848765171668, + "% SUM(num_girls)": 0.0006567069585920203, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "OH", + "gender": "girl", + "name": "Theresa", + "sum__num": 186, + "SUM(num_girls)": 186, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000165206308038708, + "% SUM(num_girls)": 0.0003877698231686215, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "other", + "gender": "girl", + "name": "Jasmine", + "sum__num": 5176, + "SUM(num_girls)": 5176, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.004597354034453509, + "% SUM(num_girls)": 0.010790841960864436, + "% pct_boys": 0 + }, + { + "__timestamp": 599616000000, + "state": "TX", + "gender": "girl", + "name": "Nancy", + "sum__num": 309, + "SUM(num_girls)": 309, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00027445564077398265, + "% SUM(num_girls)": 0.0006441982546188389, + "% pct_boys": 0 + }, + { + "__timestamp": 915148800000, + "state": "NJ", + "gender": "girl", + "name": "Grace", + "sum__num": 230, + "SUM(num_girls)": 230, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00020428737015539163, + "% SUM(num_girls)": 0.00047950031897195134, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "PA", + "gender": "girl", + "name": "Sydney", + "sum__num": 278, + "SUM(num_girls)": 278, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002469212561008647, + "% SUM(num_girls)": 0.000579569950757402, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "IL", + "gender": "girl", + "name": "Christina", + "sum__num": 541, + "SUM(num_girls)": 541, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000480519422843769, + "% SUM(num_girls)": 0.0011278681415818506, + "% pct_boys": 0 + }, + { + "__timestamp": 410227200000, + "state": "MA", + "gender": "girl", + "name": "Jennifer", + "sum__num": 1406, + "SUM(num_girls)": 1406, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.001248817575819481, + "% SUM(num_girls)": 0.0029312062977154938, + "% pct_boys": 0 + }, + { + "__timestamp": 852076800000, + "state": "OH", + "gender": "girl", + "name": "Anna", + "sum__num": 369, + "SUM(num_girls)": 369, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00032774799820582397, + "% SUM(num_girls)": 0.0007692852943506523, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "CA", + "gender": "girl", + "name": "Amanda", + "sum__num": 3168, + "SUM(num_girls)": 3168, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0028138364724012203, + "% SUM(num_girls)": 0.0066045956978397465, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "other", + "gender": "girl", + "name": "Julie", + "sum__num": 8402, + "SUM(num_girls)": 8402, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.007462706452372176, + "% SUM(num_girls)": 0.017516355130444933, + "% pct_boys": 0 + }, + { + "__timestamp": 1104537600000, + "state": "NY", + "gender": "girl", + "name": "Kaitlyn", + "sum__num": 399, + "SUM(num_girls)": 399, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003543941769217446, + "% SUM(num_girls)": 0.000831828814216559, + "% pct_boys": 0 + }, + { + "__timestamp": 441763200000, + "state": "TX", + "gender": "boy", + "name": "Shawn", + "sum__num": 343, + "SUM(num_girls)": 0, + "SUM(num_boys)": 343, + "pct_boys": 343, + "% sum__num": 0.00030465464331869276, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000530796240786507 + }, + { + "__timestamp": 157766400000, + "state": "MA", + "gender": "girl", + "name": "Wendy", + "sum__num": 161, + "SUM(num_girls)": 161, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00014300115910877414, + "% SUM(num_girls)": 0.00033565022328036593, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "NJ", + "gender": "girl", + "name": "Tina", + "sum__num": 111, + "SUM(num_girls)": 111, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0000985908612489064, + "% SUM(num_girls)": 0.00023141102350385476, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "NJ", + "gender": "girl", + "name": "Christine", + "sum__num": 508, + "SUM(num_girls)": 508, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004512086262562563, + "% SUM(num_girls)": 0.0010590702697293533, + "% pct_boys": 0 + }, + { + "__timestamp": 946684800000, + "state": "PA", + "gender": "girl", + "name": "Emily", + "sum__num": 1174, + "SUM(num_girls)": 1174, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010427537937496947, + "% SUM(num_girls)": 0.002447536410752482, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "TX", + "gender": "girl", + "name": "Nicole", + "sum__num": 418, + "SUM(num_girls)": 418, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003712700901084944, + "% SUM(num_girls)": 0.0008714397101316333, + "% pct_boys": 0 + }, + { + "__timestamp": 315532800000, + "state": "NY", + "gender": "girl", + "name": "Laura", + "sum__num": 753, + "SUM(num_girls)": 753, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006688190857696083, + "% SUM(num_girls)": 0.001569842348634258, + "% pct_boys": 0 + }, + { + "__timestamp": 788918400000, + "state": "PA", + "gender": "girl", + "name": "Megan", + "sum__num": 756, + "SUM(num_girls)": 756, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006714837036412003, + "% SUM(num_girls)": 0.0015760967006208486, + "% pct_boys": 0 + }, + { + "__timestamp": 662688000000, + "state": "MI", + "gender": "boy", + "name": "Kyle", + "sum__num": 1168, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1168, + "pct_boys": 1168, + "% sum__num": 0.0010374245580065105, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0018074927383050733 + }, + { + "__timestamp": 31536000000, + "state": "CA", + "gender": "girl", + "name": "Linda", + "sum__num": 577, + "SUM(num_girls)": 577, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005124948373028738, + "% SUM(num_girls)": 0.0012029203654209386, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "TX", + "gender": "boy", + "name": "Samuel", + "sum__num": 408, + "SUM(num_girls)": 0, + "SUM(num_boys)": 408, + "pct_boys": 408, + "% sum__num": 0.0003623880305365208, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006313844496819091 + }, + { + "__timestamp": 315532800000, + "state": "FL", + "gender": "girl", + "name": "April", + "sum__num": 432, + "SUM(num_girls)": 432, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003837049735092573, + "% SUM(num_girls)": 0.0009006266860690563, + "% pct_boys": 0 + }, + { + "__timestamp": 883612800000, + "state": "IL", + "gender": "boy", + "name": "Jeremy", + "sum__num": 299, + "SUM(num_girls)": 0, + "SUM(num_boys)": 299, + "pct_boys": 299, + "% sum__num": 0.0002655735812020091, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00046270576091885006 + }, + { + "__timestamp": 252460800000, + "state": "OH", + "gender": "boy", + "name": "Sean", + "sum__num": 304, + "SUM(num_girls)": 0, + "SUM(num_boys)": 304, + "pct_boys": 304, + "% sum__num": 0.0002700146109879959, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00047044331544926564 + }, + { + "__timestamp": 283996800000, + "state": "other", + "gender": "girl", + "name": "Jessica", + "sum__num": 13341, + "SUM(num_girls)": 13341, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.011849555674969913, + "% SUM(num_girls)": 0.027813103284368708, + "% pct_boys": 0 + }, + { + "__timestamp": 946684800000, + "state": "IL", + "gender": "girl", + "name": "Rachel", + "sum__num": 477, + "SUM(num_girls)": 477, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004236742415831383, + "% SUM(num_girls)": 0.0009944419658679165, + "% pct_boys": 0 + }, + { + "__timestamp": 883612800000, + "state": "MI", + "gender": "boy", + "name": "Joseph", + "sum__num": 870, + "SUM(num_girls)": 0, + "SUM(num_boys)": 870, + "pct_boys": 870, + "% sum__num": 0.0007727391827616988, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0013463344882923061 + }, + { + "__timestamp": 1009843200000, + "state": "OH", + "gender": "boy", + "name": "Tyler", + "sum__num": 961, + "SUM(num_girls)": 0, + "SUM(num_boys)": 961, + "pct_boys": 961, + "% sum__num": 0.0008535659248666581, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014871579807458693 + }, + { + "__timestamp": 725846400000, + "state": "NJ", + "gender": "boy", + "name": "Corey", + "sum__num": 141, + "SUM(num_girls)": 0, + "SUM(num_boys)": 141, + "pct_boys": 141, + "% sum__num": 0.00012523703996482704, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00021819903775771859 + }, + { + "__timestamp": 883612800000, + "state": "MA", + "gender": "boy", + "name": "Jesse", + "sum__num": 82, + "SUM(num_girls)": 0, + "SUM(num_boys)": 82, + "pct_boys": 82, + "% sum__num": 0.0000728328884901831, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00012689589429881507 + }, + { + "__timestamp": 883612800000, + "state": "CA", + "gender": "girl", + "name": "Christina", + "sum__num": 601, + "SUM(num_girls)": 601, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005338117802756103, + "% SUM(num_girls)": 0.001252955181313664, + "% pct_boys": 0 + }, + { + "__timestamp": 599616000000, + "state": "IL", + "gender": "boy", + "name": "Keith", + "sum__num": 281, + "SUM(num_girls)": 0, + "SUM(num_boys)": 281, + "pct_boys": 281, + "% sum__num": 0.0002495858739724567, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004348505646093541 + }, + { + "__timestamp": 31536000000, + "state": "MI", + "gender": "boy", + "name": "Donald", + "sum__num": 517, + "SUM(num_girls)": 0, + "SUM(num_boys)": 517, + "pct_boys": 517, + "% sum__num": 0.0004592024798710325, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008000631384449682 + }, + { + "__timestamp": 1199145600000, + "state": "OH", + "gender": "girl", + "name": "Emily", + "sum__num": 520, + "SUM(num_girls)": 520, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00046186709774262457, + "% SUM(num_girls)": 0.001084087677675716, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "IL", + "gender": "boy", + "name": "Joel", + "sum__num": 204, + "SUM(num_girls)": 0, + "SUM(num_boys)": 204, + "pct_boys": 204, + "% sum__num": 0.0001811940152682604, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00031569222484095457 + }, + { + "__timestamp": 1041379200000, + "state": "MA", + "gender": "boy", + "name": "Benjamin", + "sum__num": 497, + "SUM(num_girls)": 0, + "SUM(num_boys)": 497, + "pct_boys": 497, + "% sum__num": 0.0004414383607270854, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000769112920323306 + }, + { + "__timestamp": 1199145600000, + "state": "PA", + "gender": "boy", + "name": "William", + "sum__num": 626, + "SUM(num_girls)": 0, + "SUM(num_boys)": 626, + "pct_boys": 626, + "% sum__num": 0.0005560169292055442, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009687418272080273 + }, + { + "__timestamp": 378691200000, + "state": "OH", + "gender": "boy", + "name": "Jordan", + "sum__num": 147, + "SUM(num_girls)": 0, + "SUM(num_boys)": 147, + "pct_boys": 147, + "% sum__num": 0.00013056627570801117, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00022748410319421727 + }, + { + "__timestamp": 978307200000, + "state": "NY", + "gender": "boy", + "name": "Eric", + "sum__num": 641, + "SUM(num_girls)": 0, + "SUM(num_boys)": 641, + "pct_boys": 641, + "% sum__num": 0.0005693400185635045, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009919544907992738 + }, + { + "__timestamp": 852076800000, + "state": "other", + "gender": "girl", + "name": "Karen", + "sum__num": 74, + "SUM(num_girls)": 74, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00006572724083260427, + "% SUM(num_girls)": 0.0001542740156692365, + "% pct_boys": 0 + }, + { + "__timestamp": -126230400000, + "state": "IL", + "gender": "girl", + "name": "Nancy", + "sum__num": 670, + "SUM(num_girls)": 670, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005950979913222278, + "% SUM(num_girls)": 0.0013968052770052496, + "% pct_boys": 0 + }, + { + "__timestamp": 599616000000, + "state": "OH", + "gender": "girl", + "name": "Angela", + "sum__num": 370, + "SUM(num_girls)": 370, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00032863620416302133, + "% SUM(num_girls)": 0.0007713700783461826, + "% pct_boys": 0 + }, + { + "__timestamp": -157766400000, + "state": "other", + "gender": "girl", + "name": "Laura", + "sum__num": 6493, + "SUM(num_girls)": 6493, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.005767121280082425, + "% SUM(num_girls)": 0.013536502482977738, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "MA", + "gender": "boy", + "name": "James", + "sum__num": 1156, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1156, + "pct_boys": 1156, + "% sum__num": 0.0010267660865201423, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0017889226074320759 + }, + { + "__timestamp": -31536000000, + "state": "IL", + "gender": "girl", + "name": "Andrea", + "sum__num": 358, + "SUM(num_girls)": 358, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00031797773267665307, + "% SUM(num_girls)": 0.0007463526703998199, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "other", + "gender": "girl", + "name": "Mary", + "sum__num": 3852, + "SUM(num_girls)": 3852, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.003421369347124211, + "% SUM(num_girls)": 0.00803058795078242, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "other", + "gender": "girl", + "name": "Jill", + "sum__num": 1832, + "SUM(num_girls)": 1832, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0016271933135855543, + "% SUM(num_girls)": 0.0038193242798113688, + "% pct_boys": 0 + }, + { + "__timestamp": 788918400000, + "state": "NJ", + "gender": "boy", + "name": "Corey", + "sum__num": 142, + "SUM(num_girls)": 0, + "SUM(num_boys)": 142, + "pct_boys": 142, + "% sum__num": 0.0001261252459220244, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002197465486638017 + }, + { + "__timestamp": 946684800000, + "state": "MI", + "gender": "boy", + "name": "Jack", + "sum__num": 382, + "SUM(num_girls)": 0, + "SUM(num_boys)": 382, + "pct_boys": 382, + "% sum__num": 0.0003392946756493896, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005911491661237482 + }, + { + "__timestamp": 347155200000, + "state": "MI", + "gender": "boy", + "name": "Jason", + "sum__num": 2016, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2016, + "pct_boys": 2016, + "% sum__num": 0.0017906232097098676, + "% SUM(num_girls)": 0, + "% pct_boys": 0.003119781986663551 + }, + { + "__timestamp": 441763200000, + "state": "CA", + "gender": "girl", + "name": "Cynthia", + "sum__num": 1191, + "SUM(num_girls)": 1191, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010578532950220496, + "% SUM(num_girls)": 0.0024829777386764958, + "% pct_boys": 0 + }, + { + "__timestamp": -63158400000, + "state": "other", + "gender": "girl", + "name": "Kathleen", + "sum__num": 2404, + "SUM(num_girls)": 2404, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0021352471211024413, + "% SUM(num_girls)": 0.005011820725254656, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "MA", + "gender": "boy", + "name": "Jacob", + "sum__num": 593, + "SUM(num_girls)": 0, + "SUM(num_boys)": 593, + "pct_boys": 593, + "% sum__num": 0.0005267061326180315, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009176739673072845 + }, + { + "__timestamp": 788918400000, + "state": "FL", + "gender": "boy", + "name": "Cameron", + "sum__num": 331, + "SUM(num_girls)": 0, + "SUM(num_boys)": 331, + "pct_boys": 331, + "% sum__num": 0.0002939961718323245, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005122261099135096 + }, + { + "__timestamp": 63072000000, + "state": "other", + "gender": "boy", + "name": "Marcus", + "sum__num": 1643, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1643, + "pct_boys": 1643, + "% sum__num": 0.0014593223876752542, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002542560418694551 + }, + { + "__timestamp": 378691200000, + "state": "other", + "gender": "girl", + "name": "Kayla", + "sum__num": 917, + "SUM(num_girls)": 917, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008144848627499744, + "% SUM(num_girls)": 0.0019117469239012146, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "other", + "gender": "boy", + "name": "Jacob", + "sum__num": 3373, + "SUM(num_girls)": 0, + "SUM(num_boys)": 3373, + "pct_boys": 3373, + "% sum__num": 0.002995918693626678, + "% SUM(num_girls)": 0, + "% pct_boys": 0.005219754286218332 + }, + { + "__timestamp": 1104537600000, + "state": "TX", + "gender": "boy", + "name": "Luis", + "sum__num": 1417, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1417, + "pct_boys": 1417, + "% sum__num": 0.001258587841348652, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002192822953919768 + }, + { + "__timestamp": 283996800000, + "state": "PA", + "gender": "boy", + "name": "James", + "sum__num": 1901, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1901, + "pct_boys": 1901, + "% sum__num": 0.0016884795246321718, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0029418182324639935 + }, + { + "__timestamp": 504921600000, + "state": "NJ", + "gender": "girl", + "name": "Kaitlyn", + "sum__num": 112, + "SUM(num_girls)": 112, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00009947906720610375, + "% SUM(num_girls)": 0.000233495807499385, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "MI", + "gender": "girl", + "name": "Kathleen", + "sum__num": 401, + "SUM(num_girls)": 401, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003561705888361393, + "% SUM(num_girls)": 0.0008359983822076195, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "CA", + "gender": "boy", + "name": "Daniel", + "sum__num": 5451, + "SUM(num_girls)": 0, + "SUM(num_boys)": 5451, + "pct_boys": 5451, + "% sum__num": 0.0048416106726827815, + "% SUM(num_girls)": 0, + "% pct_boys": 0.008435481949059036 + }, + { + "__timestamp": 599616000000, + "state": "other", + "gender": "boy", + "name": "Dana", + "sum__num": 7, + "SUM(num_girls)": 0, + "SUM(num_boys)": 7, + "pct_boys": 7, + "% sum__num": 0.000006217441700381484, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000010832576342581774 + }, + { + "__timestamp": 915148800000, + "state": "OH", + "gender": "girl", + "name": "Christina", + "sum__num": 137, + "SUM(num_girls)": 137, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00012168421613603762, + "% SUM(num_girls)": 0.00028561540738764057, + "% pct_boys": 0 + }, + { + "__timestamp": -157766400000, + "state": "other", + "gender": "girl", + "name": "Barbara", + "sum__num": 6446, + "SUM(num_girls)": 6446, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00572537560009415, + "% SUM(num_girls)": 0.013438517635187818, + "% pct_boys": 0 + }, + { + "__timestamp": -63158400000, + "state": "other", + "gender": "boy", + "name": "Mark", + "sum__num": 16266, + "SUM(num_girls)": 0, + "SUM(num_boys)": 16266, + "pct_boys": 16266, + "% sum__num": 0.014447558099772176, + "% SUM(num_girls)": 0, + "% pct_boys": 0.025171812398347877 + }, + { + "__timestamp": 441763200000, + "state": "OH", + "gender": "boy", + "name": "Brandon", + "sum__num": 1353, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1353, + "pct_boys": 1353, + "% sum__num": 0.0012017426600880211, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0020937822559304485 + }, + { + "__timestamp": 1167609600000, + "state": "MI", + "gender": "boy", + "name": "Kevin", + "sum__num": 161, + "SUM(num_girls)": 0, + "SUM(num_boys)": 161, + "pct_boys": 161, + "% sum__num": 0.00014300115910877414, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00024914925587938083 + }, + { + "__timestamp": 1041379200000, + "state": "MA", + "gender": "boy", + "name": "Timothy", + "sum__num": 177, + "SUM(num_girls)": 0, + "SUM(num_boys)": 177, + "pct_boys": 177, + "% sum__num": 0.00015721245442393183, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002739094303767106 + }, + { + "__timestamp": 252460800000, + "state": "CA", + "gender": "boy", + "name": "Justin", + "sum__num": 1394, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1394, + "pct_boys": 1394, + "% sum__num": 0.0012381591043331129, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0021572302030798563 + }, + { + "__timestamp": 536457600000, + "state": "FL", + "gender": "boy", + "name": "Vincent", + "sum__num": 136, + "SUM(num_girls)": 0, + "SUM(num_boys)": 136, + "pct_boys": 136, + "% sum__num": 0.00012079601017884027, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00021046148322730304 + }, + { + "__timestamp": 788918400000, + "state": "TX", + "gender": "boy", + "name": "Eric", + "sum__num": 1114, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1114, + "pct_boys": 1114, + "% sum__num": 0.0009894614363178534, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0017239271493765852 + }, + { + "__timestamp": 820454400000, + "state": "CA", + "gender": "boy", + "name": "Tyler", + "sum__num": 2107, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2107, + "pct_boys": 2107, + "% sum__num": 0.001871449951814827, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0032606054791171142 + }, + { + "__timestamp": 788918400000, + "state": "TX", + "gender": "boy", + "name": "Ryan", + "sum__num": 1353, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1353, + "pct_boys": 1353, + "% sum__num": 0.0012017426600880211, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0020937822559304485 + }, + { + "__timestamp": 694224000000, + "state": "TX", + "gender": "girl", + "name": "Haley", + "sum__num": 556, + "SUM(num_girls)": 556, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004938425122017294, + "% SUM(num_girls)": 0.001159139901514804, + "% pct_boys": 0 + }, + { + "__timestamp": -126230400000, + "state": "FL", + "gender": "boy", + "name": "Joseph", + "sum__num": 656, + "SUM(num_girls)": 0, + "SUM(num_boys)": 656, + "pct_boys": 656, + "% sum__num": 0.0005826631079214648, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0010151671543905205 + }, + { + "__timestamp": 252460800000, + "state": "PA", + "gender": "boy", + "name": "Brandon", + "sum__num": 297, + "SUM(num_girls)": 0, + "SUM(num_boys)": 297, + "pct_boys": 297, + "% sum__num": 0.0002637971692876144, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00045961073910668384 + }, + { + "__timestamp": 347155200000, + "state": "MI", + "gender": "boy", + "name": "Gary", + "sum__num": 231, + "SUM(num_girls)": 0, + "SUM(num_boys)": 231, + "pct_boys": 231, + "% sum__num": 0.000205175576112589, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00035747501930519855 + }, + { + "__timestamp": 1041379200000, + "state": "CA", + "gender": "boy", + "name": "Jesus", + "sum__num": 1874, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1874, + "pct_boys": 1874, + "% sum__num": 0.0016644979637878432, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0029000354379997493 + }, + { + "__timestamp": -31536000000, + "state": "NY", + "gender": "boy", + "name": "Christopher", + "sum__num": 3733, + "SUM(num_girls)": 0, + "SUM(num_boys)": 3733, + "pct_boys": 3733, + "% sum__num": 0.003315672838217726, + "% SUM(num_girls)": 0, + "% pct_boys": 0.005776858212408252 + }, + { + "__timestamp": 852076800000, + "state": "MA", + "gender": "girl", + "name": "Brianna", + "sum__num": 338, + "SUM(num_girls)": 338, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00030021361353270594, + "% SUM(num_girls)": 0.0007046569904892154, + "% pct_boys": 0 + }, + { + "__timestamp": -63158400000, + "state": "FL", + "gender": "boy", + "name": "Larry", + "sum__num": 275, + "SUM(num_girls)": 0, + "SUM(num_boys)": 275, + "pct_boys": 275, + "% sum__num": 0.0002442566382292726, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00042556549917285543 + }, + { + "__timestamp": 283996800000, + "state": "TX", + "gender": "girl", + "name": "Patricia", + "sum__num": 604, + "SUM(num_girls)": 604, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005364763981472024, + "% SUM(num_girls)": 0.0012592095333002547, + "% pct_boys": 0 + }, + { + "__timestamp": 1041379200000, + "state": "IL", + "gender": "girl", + "name": "Savannah", + "sum__num": 176, + "SUM(num_girls)": 176, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00015632424846673447, + "% SUM(num_girls)": 0.0003669219832133193, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "PA", + "gender": "boy", + "name": "Jason", + "sum__num": 2282, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2282, + "pct_boys": 2282, + "% sum__num": 0.002026885994324364, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0035314198876816583 + }, + { + "__timestamp": 378691200000, + "state": "CA", + "gender": "girl", + "name": "Jamie", + "sum__num": 960, + "SUM(num_girls)": 960, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008526777189094608, + "% SUM(num_girls)": 0.0020013926357090144, + "% pct_boys": 0 + }, + { + "__timestamp": 757382400000, + "state": "other", + "gender": "boy", + "name": "Jesus", + "sum__num": 520, + "SUM(num_girls)": 0, + "SUM(num_boys)": 520, + "pct_boys": 520, + "% sum__num": 0.00046186709774262457, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008047056711632175 + }, + { + "__timestamp": 978307200000, + "state": "NY", + "gender": "boy", + "name": "Zachary", + "sum__num": 918, + "SUM(num_girls)": 0, + "SUM(num_boys)": 918, + "pct_boys": 918, + "% sum__num": 0.0008153730687071718, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014206150117842956 + }, + { + "__timestamp": 347155200000, + "state": "TX", + "gender": "girl", + "name": "Samantha", + "sum__num": 421, + "SUM(num_girls)": 421, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003739347079800864, + "% SUM(num_girls)": 0.0008776940621182239, + "% pct_boys": 0 + }, + { + "__timestamp": 1199145600000, + "state": "TX", + "gender": "girl", + "name": "Andrea", + "sum__num": 771, + "SUM(num_girls)": 771, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006848067929991606, + "% SUM(num_girls)": 0.001607368460553802, + "% pct_boys": 0 + }, + { + "__timestamp": -126230400000, + "state": "PA", + "gender": "girl", + "name": "Kelly", + "sum__num": 909, + "SUM(num_girls)": 909, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008073792150923956, + "% SUM(num_girls)": 0.001895068651936973, + "% pct_boys": 0 + }, + { + "__timestamp": 1041379200000, + "state": "other", + "gender": "boy", + "name": "Eric", + "sum__num": 3023, + "SUM(num_girls)": 0, + "SUM(num_boys)": 3023, + "pct_boys": 3023, + "% sum__num": 0.002685046608607604, + "% SUM(num_girls)": 0, + "% pct_boys": 0.004678125469089243 + }, + { + "__timestamp": 189302400000, + "state": "MI", + "gender": "boy", + "name": "Jason", + "sum__num": 2811, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2811, + "pct_boys": 2811, + "% sum__num": 0.002496746945681765, + "% SUM(num_girls)": 0, + "% pct_boys": 0.004350053156999624 + }, + { + "__timestamp": 694224000000, + "state": "PA", + "gender": "boy", + "name": "Justin", + "sum__num": 1006, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1006, + "pct_boys": 1006, + "% sum__num": 0.0008935351929405391, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0015567959715196093 + }, + { + "__timestamp": 220924800000, + "state": "MA", + "gender": "boy", + "name": "Jacob", + "sum__num": 92, + "SUM(num_girls)": 0, + "SUM(num_boys)": 92, + "pct_boys": 92, + "% sum__num": 0.00008171494806215665, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0001423710033596462 + }, + { + "__timestamp": 126230400000, + "state": "IL", + "gender": "boy", + "name": "Jerry", + "sum__num": 228, + "SUM(num_girls)": 0, + "SUM(num_boys)": 228, + "pct_boys": 228, + "% sum__num": 0.00020251095824099692, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003528324865869492 + }, + { + "__timestamp": 1199145600000, + "state": "other", + "gender": "girl", + "name": "Sophia", + "sum__num": 6414, + "SUM(num_girls)": 6414, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0056969530094638345, + "% SUM(num_girls)": 0.013371804547330852, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "CA", + "gender": "girl", + "name": "Dawn", + "sum__num": 388, + "SUM(num_girls)": 388, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003446239113925737, + "% SUM(num_girls)": 0.0008088961902657266, + "% pct_boys": 0 + }, + { + "__timestamp": 441763200000, + "state": "PA", + "gender": "girl", + "name": "Sarah", + "sum__num": 1102, + "SUM(num_girls)": 1102, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000978802964831485, + "% SUM(num_girls)": 0.002297431963074306, + "% pct_boys": 0 + }, + { + "__timestamp": 946684800000, + "state": "other", + "gender": "girl", + "name": "Stephanie", + "sum__num": 2035, + "SUM(num_girls)": 2035, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0018074991228966173, + "% SUM(num_girls)": 0.004242535430904004, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "CA", + "gender": "girl", + "name": "Lisa", + "sum__num": 1037, + "SUM(num_girls)": 1037, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000921069577613657, + "% SUM(num_girls)": 0.002161921003364841, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "other", + "gender": "girl", + "name": "Morgan", + "sum__num": 4787, + "SUM(num_girls)": 4787, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.004251841917103738, + "% SUM(num_girls)": 0.009979860986603178, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "PA", + "gender": "girl", + "name": "Jill", + "sum__num": 387, + "SUM(num_girls)": 387, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00034373570543537636, + "% SUM(num_girls)": 0.0008068114062701964, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "CA", + "gender": "girl", + "name": "Olivia", + "sum__num": 1158, + "SUM(num_girls)": 1158, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.001028542498434537, + "% SUM(num_girls)": 0.0024141798668239982, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "FL", + "gender": "boy", + "name": "Joel", + "sum__num": 152, + "SUM(num_girls)": 0, + "SUM(num_boys)": 152, + "pct_boys": 152, + "% sum__num": 0.00013500730549399794, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00023522165772463282 + }, + { + "__timestamp": 694224000000, + "state": "NJ", + "gender": "boy", + "name": "Steven", + "sum__num": 604, + "SUM(num_girls)": 0, + "SUM(num_boys)": 604, + "pct_boys": 604, + "% sum__num": 0.0005364763981472024, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009346965872741988 + }, + { + "__timestamp": 283996800000, + "state": "NY", + "gender": "girl", + "name": "Kristin", + "sum__num": 316, + "SUM(num_girls)": 316, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00028067308247436414, + "% SUM(num_girls)": 0.0006587917425875505, + "% pct_boys": 0 + }, + { + "__timestamp": 410227200000, + "state": "IL", + "gender": "boy", + "name": "Joel", + "sum__num": 182, + "SUM(num_girls)": 0, + "SUM(num_boys)": 182, + "pct_boys": 182, + "% sum__num": 0.0001616534842099186, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00028164698490712616 + }, + { + "__timestamp": 252460800000, + "state": "NY", + "gender": "boy", + "name": "Alexander", + "sum__num": 346, + "SUM(num_girls)": 0, + "SUM(num_boys)": 346, + "pct_boys": 346, + "% sum__num": 0.0003073192611902848, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005354387735047563 + }, + { + "__timestamp": 441763200000, + "state": "NJ", + "gender": "boy", + "name": "Bryan", + "sum__num": 232, + "SUM(num_girls)": 0, + "SUM(num_boys)": 232, + "pct_boys": 232, + "% sum__num": 0.00020606378206978635, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00035902253021128164 + }, + { + "__timestamp": 252460800000, + "state": "NY", + "gender": "girl", + "name": "Erica", + "sum__num": 584, + "SUM(num_girls)": 584, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005187122790032552, + "% SUM(num_girls)": 0.0012175138533896503, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "NY", + "gender": "girl", + "name": "Alicia", + "sum__num": 450, + "SUM(num_girls)": 450, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003996926807388097, + "% SUM(num_girls)": 0.0009381527979886004, + "% pct_boys": 0 + }, + { + "__timestamp": 883612800000, + "state": "CA", + "gender": "boy", + "name": "Elijah", + "sum__num": 727, + "SUM(num_girls)": 0, + "SUM(num_boys)": 727, + "pct_boys": 727, + "% sum__num": 0.000645725730882477, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0011250404287224214 + }, + { + "__timestamp": 1199145600000, + "state": "other", + "gender": "girl", + "name": "Ashley", + "sum__num": 3500, + "SUM(num_girls)": 3500, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.003108720850190742, + "% SUM(num_girls)": 0.0072967439843557805, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "NY", + "gender": "boy", + "name": "Kenneth", + "sum__num": 1145, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1145, + "pct_boys": 1145, + "% sum__num": 0.0010169958209909713, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0017718999874651617 + }, + { + "__timestamp": 852076800000, + "state": "PA", + "gender": "boy", + "name": "Daniel", + "sum__num": 959, + "SUM(num_girls)": 0, + "SUM(num_boys)": 959, + "pct_boys": 959, + "% sum__num": 0.0008517895129522634, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001484062958933703 + }, + { + "__timestamp": 252460800000, + "state": "MI", + "gender": "girl", + "name": "Sarah", + "sum__num": 1174, + "SUM(num_girls)": 1174, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010427537937496947, + "% SUM(num_girls)": 0.002447536410752482, + "% pct_boys": 0 + }, + { + "__timestamp": 378691200000, + "state": "NJ", + "gender": "girl", + "name": "Linda", + "sum__num": 101, + "SUM(num_girls)": 101, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00008970880167693285, + "% SUM(num_girls)": 0.00021056318354855253, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "MA", + "gender": "boy", + "name": "Scott", + "sum__num": 334, + "SUM(num_girls)": 0, + "SUM(num_boys)": 334, + "pct_boys": 334, + "% sum__num": 0.00029666078970391654, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000516868642631759 + }, + { + "__timestamp": 189302400000, + "state": "other", + "gender": "boy", + "name": "Randy", + "sum__num": 1661, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1661, + "pct_boys": 1661, + "% sum__num": 0.0014753100949048065, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0025704156150040468 + }, + { + "__timestamp": 410227200000, + "state": "PA", + "gender": "boy", + "name": "Zachary", + "sum__num": 380, + "SUM(num_girls)": 0, + "SUM(num_boys)": 380, + "pct_boys": 380, + "% sum__num": 0.00033751826373499487, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005880541443115821 + }, + { + "__timestamp": 757382400000, + "state": "TX", + "gender": "girl", + "name": "Jessica", + "sum__num": 2406, + "SUM(num_girls)": 2406, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.002137023533016836, + "% SUM(num_girls)": 0.0050159902932457165, + "% pct_boys": 0 + }, + { + "__timestamp": 94694400000, + "state": "other", + "gender": "boy", + "name": "Anthony", + "sum__num": 7242, + "SUM(num_girls)": 0, + "SUM(num_boys)": 7242, + "pct_boys": 7242, + "% sum__num": 0.006432387542023244, + "% SUM(num_girls)": 0, + "% pct_boys": 0.011207073981853888 + }, + { + "__timestamp": -31536000000, + "state": "FL", + "gender": "girl", + "name": "Christina", + "sum__num": 268, + "SUM(num_girls)": 268, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00023803919652889112, + "% SUM(num_girls)": 0.0005587221108020998, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "other", + "gender": "girl", + "name": "Cheryl", + "sum__num": 97, + "SUM(num_girls)": 97, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00008615597784814343, + "% SUM(num_girls)": 0.00020222404756643165, + "% pct_boys": 0 + }, + { + "__timestamp": 883612800000, + "state": "TX", + "gender": "girl", + "name": "Melissa", + "sum__num": 524, + "SUM(num_girls)": 524, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00046541992157141397, + "% SUM(num_girls)": 0.001092426813657837, + "% pct_boys": 0 + }, + { + "__timestamp": 946684800000, + "state": "MA", + "gender": "boy", + "name": "Logan", + "sum__num": 101, + "SUM(num_girls)": 0, + "SUM(num_boys)": 101, + "pct_boys": 101, + "% sum__num": 0.00008970880167693285, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00015629860151439418 + }, + { + "__timestamp": 283996800000, + "state": "FL", + "gender": "boy", + "name": "Adrian", + "sum__num": 105, + "SUM(num_girls)": 0, + "SUM(num_boys)": 105, + "pct_boys": 105, + "% sum__num": 0.00009326162550572226, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0001624886451387266 + }, + { + "__timestamp": 536457600000, + "state": "MA", + "gender": "boy", + "name": "Vincent", + "sum__num": 63, + "SUM(num_girls)": 0, + "SUM(num_boys)": 63, + "pct_boys": 63, + "% sum__num": 0.00005595697530343336, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00009749318708323597 + }, + { + "__timestamp": 347155200000, + "state": "CA", + "gender": "boy", + "name": "Phillip", + "sum__num": 451, + "SUM(num_girls)": 0, + "SUM(num_boys)": 451, + "pct_boys": 451, + "% sum__num": 0.0004005808866960071, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006979274186434829 + }, + { + "__timestamp": 315532800000, + "state": "TX", + "gender": "boy", + "name": "Scott", + "sum__num": 543, + "SUM(num_girls)": 0, + "SUM(num_boys)": 543, + "pct_boys": 543, + "% sum__num": 0.00048229583475816373, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008402984220031291 + }, + { + "__timestamp": 126230400000, + "state": "IL", + "gender": "girl", + "name": "Dawn", + "sum__num": 611, + "SUM(num_girls)": 611, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005426938398475839, + "% SUM(num_girls)": 0.0012738030212689664, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "PA", + "gender": "boy", + "name": "Nicholas", + "sum__num": 1000, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1000, + "pct_boys": 1000, + "% sum__num": 0.0008882059571973549, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0015475109060831107 + }, + { + "__timestamp": 788918400000, + "state": "NJ", + "gender": "boy", + "name": "Antonio", + "sum__num": 104, + "SUM(num_girls)": 0, + "SUM(num_boys)": 104, + "pct_boys": 104, + "% sum__num": 0.00009237341954852491, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0001609411342326435 + }, + { + "__timestamp": 599616000000, + "state": "NY", + "gender": "boy", + "name": "Adam", + "sum__num": 1118, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1118, + "pct_boys": 1118, + "% sum__num": 0.000993014260146643, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0017301171930009177 + }, + { + "__timestamp": 189302400000, + "state": "MI", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 992, + "SUM(num_girls)": 0, + "SUM(num_boys)": 992, + "pct_boys": 992, + "% sum__num": 0.0008811003095397761, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0015351308188344458 + }, + { + "__timestamp": 1009843200000, + "state": "OH", + "gender": "girl", + "name": "Rebecca", + "sum__num": 216, + "SUM(num_girls)": 216, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00019185248675462866, + "% SUM(num_girls)": 0.0004503133430345282, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "MA", + "gender": "boy", + "name": "Jose", + "sum__num": 119, + "SUM(num_girls)": 0, + "SUM(num_boys)": 119, + "pct_boys": 119, + "% sum__num": 0.00010569650890648523, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00018415379782389017 + }, + { + "__timestamp": 31536000000, + "state": "OH", + "gender": "boy", + "name": "Keith", + "sum__num": 560, + "SUM(num_girls)": 0, + "SUM(num_boys)": 560, + "pct_boys": 560, + "% sum__num": 0.0004973953360305187, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008666061074065419 + }, + { + "__timestamp": -157766400000, + "state": "NJ", + "gender": "boy", + "name": "Adam", + "sum__num": 100, + "SUM(num_girls)": 0, + "SUM(num_boys)": 100, + "pct_boys": 100, + "% sum__num": 0.0000888205957197355, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00015475109060831107 + }, + { + "__timestamp": -126230400000, + "state": "IL", + "gender": "boy", + "name": "Jeffery", + "sum__num": 501, + "SUM(num_girls)": 0, + "SUM(num_boys)": 501, + "pct_boys": 501, + "% sum__num": 0.0004449911845558748, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007753029639476385 + }, + { + "__timestamp": 252460800000, + "state": "IL", + "gender": "girl", + "name": "Elizabeth", + "sum__num": 1016, + "SUM(num_girls)": 1016, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009024172525125126, + "% SUM(num_girls)": 0.0021181405394587066, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "MA", + "gender": "boy", + "name": "Aaron", + "sum__num": 115, + "SUM(num_girls)": 0, + "SUM(num_boys)": 115, + "pct_boys": 115, + "% sum__num": 0.00010214368507769581, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0001779637541995577 + }, + { + "__timestamp": 694224000000, + "state": "MA", + "gender": "boy", + "name": "Bryan", + "sum__num": 164, + "SUM(num_girls)": 0, + "SUM(num_boys)": 164, + "pct_boys": 164, + "% sum__num": 0.0001456657769803662, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00025379178859763013 + }, + { + "__timestamp": 220924800000, + "state": "IL", + "gender": "girl", + "name": "Theresa", + "sum__num": 182, + "SUM(num_girls)": 182, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001616534842099186, + "% SUM(num_girls)": 0.0003794306871865006, + "% pct_boys": 0 + }, + { + "__timestamp": 883612800000, + "state": "NY", + "gender": "boy", + "name": "Kyle", + "sum__num": 1072, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1072, + "pct_boys": 1072, + "% sum__num": 0.0009521567861155645, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0016589316913210945 + }, + { + "__timestamp": 126230400000, + "state": "NY", + "gender": "girl", + "name": "Maria", + "sum__num": 863, + "SUM(num_girls)": 863, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007665217410613173, + "% SUM(num_girls)": 0.0017991685881425825, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "PA", + "gender": "girl", + "name": "Barbara", + "sum__num": 216, + "SUM(num_girls)": 216, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00019185248675462866, + "% SUM(num_girls)": 0.0004503133430345282, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "OH", + "gender": "girl", + "name": "Katelyn", + "sum__num": 174, + "SUM(num_girls)": 174, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00015454783655233977, + "% SUM(num_girls)": 0.0003627524152222588, + "% pct_boys": 0 + }, + { + "__timestamp": 757382400000, + "state": "NY", + "gender": "girl", + "name": "Hannah", + "sum__num": 527, + "SUM(num_girls)": 527, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00046808453944300607, + "% SUM(num_girls)": 0.0010986811656444277, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "PA", + "gender": "boy", + "name": "Benjamin", + "sum__num": 193, + "SUM(num_girls)": 0, + "SUM(num_boys)": 193, + "pct_boys": 193, + "% sum__num": 0.0001714237497390895, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00029866960487404034 + }, + { + "__timestamp": 1104537600000, + "state": "IL", + "gender": "boy", + "name": "Noah", + "sum__num": 501, + "SUM(num_girls)": 0, + "SUM(num_boys)": 501, + "pct_boys": 501, + "% sum__num": 0.0004449911845558748, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007753029639476385 + }, + { + "__timestamp": 694224000000, + "state": "TX", + "gender": "girl", + "name": "Amy", + "sum__num": 521, + "SUM(num_girls)": 521, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00046275530369982193, + "% SUM(num_girls)": 0.0010861724616712462, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "NJ", + "gender": "girl", + "name": "Brianna", + "sum__num": 318, + "SUM(num_girls)": 318, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002824494943887589, + "% SUM(num_girls)": 0.000662961310578611, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "MA", + "gender": "boy", + "name": "Daniel", + "sum__num": 421, + "SUM(num_girls)": 0, + "SUM(num_boys)": 421, + "pct_boys": 421, + "% sum__num": 0.0003739347079800864, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006515020914609896 + }, + { + "__timestamp": 63072000000, + "state": "MI", + "gender": "girl", + "name": "Jacqueline", + "sum__num": 148, + "SUM(num_girls)": 148, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00013145448166520854, + "% SUM(num_girls)": 0.000308548031338473, + "% pct_boys": 0 + }, + { + "__timestamp": 1167609600000, + "state": "CA", + "gender": "boy", + "name": "Andrew", + "sum__num": 3011, + "SUM(num_girls)": 0, + "SUM(num_boys)": 3011, + "pct_boys": 3011, + "% sum__num": 0.0026743881371212356, + "% SUM(num_girls)": 0, + "% pct_boys": 0.004659555338216246 + }, + { + "__timestamp": -126230400000, + "state": "IL", + "gender": "boy", + "name": "Bryan", + "sum__num": 351, + "SUM(num_girls)": 0, + "SUM(num_boys)": 351, + "pct_boys": 351, + "% sum__num": 0.00031176029097627157, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005431763280351719 + }, + { + "__timestamp": 1104537600000, + "state": "NY", + "gender": "boy", + "name": "Caleb", + "sum__num": 306, + "SUM(num_girls)": 0, + "SUM(num_boys)": 306, + "pct_boys": 306, + "% sum__num": 0.0002717910229023906, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00047353833726143185 + }, + { + "__timestamp": 915148800000, + "state": "NY", + "gender": "boy", + "name": "Jose", + "sum__num": 511, + "SUM(num_girls)": 0, + "SUM(num_boys)": 511, + "pct_boys": 511, + "% sum__num": 0.00045387324412784834, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007907780730084695 + }, + { + "__timestamp": 220924800000, + "state": "IL", + "gender": "boy", + "name": "Kevin", + "sum__num": 1212, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1212, + "pct_boys": 1212, + "% sum__num": 0.001076505620123194, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00187558321817273 + }, + { + "__timestamp": 347155200000, + "state": "IL", + "gender": "boy", + "name": "Marcus", + "sum__num": 297, + "SUM(num_girls)": 0, + "SUM(num_boys)": 297, + "pct_boys": 297, + "% sum__num": 0.0002637971692876144, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00045961073910668384 + }, + { + "__timestamp": 662688000000, + "state": "OH", + "gender": "girl", + "name": "Jenna", + "sum__num": 241, + "SUM(num_girls)": 241, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00021405763568456253, + "% SUM(num_girls)": 0.0005024329429227837, + "% pct_boys": 0 + }, + { + "__timestamp": 852076800000, + "state": "PA", + "gender": "boy", + "name": "Isaiah", + "sum__num": 210, + "SUM(num_girls)": 0, + "SUM(num_boys)": 210, + "pct_boys": 210, + "% sum__num": 0.00018652325101144453, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003249772902774532 + }, + { + "__timestamp": 441763200000, + "state": "IL", + "gender": "girl", + "name": "Lisa", + "sum__num": 541, + "SUM(num_girls)": 541, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000480519422843769, + "% SUM(num_girls)": 0.0011278681415818506, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "CA", + "gender": "boy", + "name": "Michael", + "sum__num": 8245, + "SUM(num_girls)": 0, + "SUM(num_boys)": 8245, + "pct_boys": 8245, + "% sum__num": 0.007323258117092191, + "% SUM(num_girls)": 0, + "% pct_boys": 0.012759227420655246 + }, + { + "__timestamp": 757382400000, + "state": "NY", + "gender": "boy", + "name": "Thomas", + "sum__num": 1453, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1453, + "pct_boys": 1453, + "% sum__num": 0.0012905632558077567, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0022485333465387595 + }, + { + "__timestamp": 1104537600000, + "state": "IL", + "gender": "boy", + "name": "David", + "sum__num": 817, + "SUM(num_girls)": 0, + "SUM(num_boys)": 817, + "pct_boys": 817, + "% sum__num": 0.000725664267030239, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012643164102699013 + }, + { + "__timestamp": 473385600000, + "state": "PA", + "gender": "girl", + "name": "Amanda", + "sum__num": 1952, + "SUM(num_girls)": 1952, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0017337780284492367, + "% SUM(num_girls)": 0.0040694983592749956, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "OH", + "gender": "girl", + "name": "Amy", + "sum__num": 1966, + "SUM(num_girls)": 1966, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0017462129118499998, + "% SUM(num_girls)": 0.004098685335212419, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "NY", + "gender": "girl", + "name": "Kayla", + "sum__num": 757, + "SUM(num_girls)": 757, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006723719095983976, + "% SUM(num_girls)": 0.0015781814846163788, + "% pct_boys": 0 + }, + { + "__timestamp": 852076800000, + "state": "other", + "gender": "girl", + "name": "Logan", + "sum__num": 60, + "SUM(num_girls)": 60, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0000532923574318413, + "% SUM(num_girls)": 0.0001250870397318134, + "% pct_boys": 0 + }, + { + "__timestamp": 410227200000, + "state": "MA", + "gender": "boy", + "name": "Jason", + "sum__num": 836, + "SUM(num_girls)": 0, + "SUM(num_boys)": 836, + "pct_boys": 836, + "% sum__num": 0.0007425401802169888, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012937191174854806 + }, + { + "__timestamp": 220924800000, + "state": "MA", + "gender": "boy", + "name": "Jamie", + "sum__num": 75, + "SUM(num_girls)": 0, + "SUM(num_boys)": 75, + "pct_boys": 75, + "% sum__num": 0.00006661544678980162, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0001160633179562333 + }, + { + "__timestamp": 1041379200000, + "state": "CA", + "gender": "girl", + "name": "Brianna", + "sum__num": 1293, + "SUM(num_girls)": 1293, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00114845030265618, + "% SUM(num_girls)": 0.0026956257062205786, + "% pct_boys": 0 + }, + { + "__timestamp": -157766400000, + "state": "OH", + "gender": "boy", + "name": "Mark", + "sum__num": 2502, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2502, + "pct_boys": 2502, + "% sum__num": 0.002222291304907782, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0038718722870199427 + }, + { + "__timestamp": 94694400000, + "state": "MA", + "gender": "girl", + "name": "Rebecca", + "sum__num": 420, + "SUM(num_girls)": 420, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00037304650202288906, + "% SUM(num_girls)": 0.0008756092781226937, + "% pct_boys": 0 + }, + { + "__timestamp": 441763200000, + "state": "IL", + "gender": "girl", + "name": "Melanie", + "sum__num": 148, + "SUM(num_girls)": 148, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00013145448166520854, + "% SUM(num_girls)": 0.000308548031338473, + "% pct_boys": 0 + }, + { + "__timestamp": -63158400000, + "state": "MA", + "gender": "boy", + "name": "David", + "sum__num": 2178, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2178, + "pct_boys": 2178, + "% sum__num": 0.0019345125747758391, + "% SUM(num_girls)": 0, + "% pct_boys": 0.003370478753449015 + }, + { + "__timestamp": 252460800000, + "state": "FL", + "gender": "girl", + "name": "Catherine", + "sum__num": 129, + "SUM(num_girls)": 129, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00011457856847845879, + "% SUM(num_girls)": 0.0002689371354233988, + "% pct_boys": 0 + }, + { + "__timestamp": 441763200000, + "state": "FL", + "gender": "boy", + "name": "Christopher", + "sum__num": 2984, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2984, + "pct_boys": 2984, + "% sum__num": 0.002650406576276907, + "% SUM(num_girls)": 0, + "% pct_boys": 0.004617772543752002 + }, + { + "__timestamp": 536457600000, + "state": "PA", + "gender": "boy", + "name": "Eric", + "sum__num": 968, + "SUM(num_girls)": 0, + "SUM(num_boys)": 968, + "pct_boys": 968, + "% sum__num": 0.0008597833665670396, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014979905570884511 + }, + { + "__timestamp": 599616000000, + "state": "FL", + "gender": "girl", + "name": "Kristin", + "sum__num": 337, + "SUM(num_girls)": 337, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00029932540757550863, + "% SUM(num_girls)": 0.0007025722064936852, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "PA", + "gender": "boy", + "name": "Aaron", + "sum__num": 494, + "SUM(num_girls)": 0, + "SUM(num_boys)": 494, + "pct_boys": 494, + "% sum__num": 0.0004387737428554933, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007644703876050566 + }, + { + "__timestamp": 1199145600000, + "state": "NY", + "gender": "boy", + "name": "Robert", + "sum__num": 499, + "SUM(num_girls)": 0, + "SUM(num_boys)": 499, + "pct_boys": 499, + "% sum__num": 0.0004432147726414801, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007722079421354722 + }, + { + "__timestamp": 1009843200000, + "state": "NJ", + "gender": "boy", + "name": "Eric", + "sum__num": 271, + "SUM(num_girls)": 0, + "SUM(num_boys)": 271, + "pct_boys": 271, + "% sum__num": 0.00024070381440048318, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000419375455548523 + }, + { + "__timestamp": 599616000000, + "state": "CA", + "gender": "boy", + "name": "Paul", + "sum__num": 1209, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1209, + "pct_boys": 1209, + "% sum__num": 0.0010738410022516022, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0018709406854544807 + }, + { + "__timestamp": 567993600000, + "state": "CA", + "gender": "boy", + "name": "George", + "sum__num": 695, + "SUM(num_girls)": 0, + "SUM(num_boys)": 695, + "pct_boys": 695, + "% sum__num": 0.0006173031402521617, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0010755200797277619 + }, + { + "__timestamp": -94694400000, + "state": "NY", + "gender": "boy", + "name": "Jason", + "sum__num": 414, + "SUM(num_girls)": 0, + "SUM(num_boys)": 414, + "pct_boys": 414, + "% sum__num": 0.0003677172662797049, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006406695151184079 + }, + { + "__timestamp": -157766400000, + "state": "TX", + "gender": "boy", + "name": "Samuel", + "sum__num": 367, + "SUM(num_girls)": 0, + "SUM(num_boys)": 367, + "pct_boys": 367, + "% sum__num": 0.00032597158629142924, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005679365025325016 + }, + { + "__timestamp": 31536000000, + "state": "PA", + "gender": "girl", + "name": "Robin", + "sum__num": 347, + "SUM(num_girls)": 347, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00030820746714748217, + "% SUM(num_girls)": 0.0007234200464489875, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "PA", + "gender": "boy", + "name": "Kevin", + "sum__num": 955, + "SUM(num_girls)": 0, + "SUM(num_boys)": 955, + "pct_boys": 955, + "% sum__num": 0.0008482366891234739, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014778729153093707 + }, + { + "__timestamp": 852076800000, + "state": "IL", + "gender": "boy", + "name": "Kyle", + "sum__num": 826, + "SUM(num_girls)": 0, + "SUM(num_boys)": 826, + "pct_boys": 826, + "% sum__num": 0.0007336581206450151, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012782440084246494 + }, + { + "__timestamp": -94694400000, + "state": "NJ", + "gender": "girl", + "name": "Heather", + "sum__num": 116, + "SUM(num_girls)": 116, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00010303189103489318, + "% SUM(num_girls)": 0.00024183494348150588, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "OH", + "gender": "girl", + "name": "Dawn", + "sum__num": 329, + "SUM(num_girls)": 329, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00029221975991792977, + "% SUM(num_girls)": 0.0006858939345294434, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "TX", + "gender": "boy", + "name": "Paul", + "sum__num": 1014, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1014, + "pct_boys": 1014, + "% sum__num": 0.0009006408405981179, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0015691760587682741 + }, + { + "__timestamp": 0, + "state": "PA", + "gender": "girl", + "name": "Stephanie", + "sum__num": 727, + "SUM(num_girls)": 727, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000645725730882477, + "% SUM(num_girls)": 0.0015156379647504722, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "NY", + "gender": "boy", + "name": "Andrew", + "sum__num": 1346, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1346, + "pct_boys": 1346, + "% sum__num": 0.0011955252183876398, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002082949679587867 + }, + { + "__timestamp": 252460800000, + "state": "CA", + "gender": "boy", + "name": "Joseph", + "sum__num": 2459, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2459, + "pct_boys": 2459, + "% sum__num": 0.0021840984487482957, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0038053293180583692 + }, + { + "__timestamp": 757382400000, + "state": "MA", + "gender": "boy", + "name": "Justin", + "sum__num": 411, + "SUM(num_girls)": 0, + "SUM(num_boys)": 411, + "pct_boys": 411, + "% sum__num": 0.0003650526484081129, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006360269824001584 + }, + { + "__timestamp": 410227200000, + "state": "other", + "gender": "boy", + "name": "Joseph", + "sum__num": 13628, + "SUM(num_girls)": 0, + "SUM(num_boys)": 13628, + "pct_boys": 13628, + "% sum__num": 0.012104470784685553, + "% SUM(num_girls)": 0, + "% pct_boys": 0.021089478628100632 + }, + { + "__timestamp": 725846400000, + "state": "CA", + "gender": "boy", + "name": "Michael", + "sum__num": 5839, + "SUM(num_girls)": 0, + "SUM(num_boys)": 5839, + "pct_boys": 5839, + "% sum__num": 0.005186234584075355, + "% SUM(num_girls)": 0, + "% pct_boys": 0.009035916180619283 + }, + { + "__timestamp": 315532800000, + "state": "FL", + "gender": "boy", + "name": "Douglas", + "sum__num": 187, + "SUM(num_girls)": 0, + "SUM(num_boys)": 187, + "pct_boys": 187, + "% sum__num": 0.00016609451399590537, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002893845394375417 + }, + { + "__timestamp": -94694400000, + "state": "NY", + "gender": "boy", + "name": "David", + "sum__num": 5458, + "SUM(num_girls)": 0, + "SUM(num_boys)": 5458, + "pct_boys": 5458, + "% sum__num": 0.004847828114383163, + "% SUM(num_girls)": 0, + "% pct_boys": 0.008446314525401618 + }, + { + "__timestamp": 662688000000, + "state": "NY", + "gender": "girl", + "name": "Amanda", + "sum__num": 2319, + "SUM(num_girls)": 2319, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.002059749614740666, + "% SUM(num_girls)": 0.004834614085634587, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "MA", + "gender": "girl", + "name": "Cassandra", + "sum__num": 130, + "SUM(num_girls)": 130, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00011546677443565614, + "% SUM(num_girls)": 0.000271021919418929, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "PA", + "gender": "boy", + "name": "Andrew", + "sum__num": 849, + "SUM(num_girls)": 0, + "SUM(num_boys)": 849, + "pct_boys": 849, + "% sum__num": 0.0007540868576605543, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0013138367592645608 + }, + { + "__timestamp": 283996800000, + "state": "PA", + "gender": "girl", + "name": "Amber", + "sum__num": 389, + "SUM(num_girls)": 389, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003455121173497711, + "% SUM(num_girls)": 0.0008109809742612568, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "NJ", + "gender": "boy", + "name": "Nathan", + "sum__num": 196, + "SUM(num_girls)": 0, + "SUM(num_boys)": 196, + "pct_boys": 196, + "% sum__num": 0.00017408836761068156, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003033121375922897 + }, + { + "__timestamp": 94694400000, + "state": "NJ", + "gender": "boy", + "name": "Craig", + "sum__num": 224, + "SUM(num_girls)": 0, + "SUM(num_boys)": 224, + "pct_boys": 224, + "% sum__num": 0.0001989581344122075, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00034664244296261676 + }, + { + "__timestamp": 631152000000, + "state": "MA", + "gender": "girl", + "name": "Ashley", + "sum__num": 954, + "SUM(num_girls)": 954, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008473484831662766, + "% SUM(num_girls)": 0.001988883931735833, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "IL", + "gender": "girl", + "name": "Diana", + "sum__num": 258, + "SUM(num_girls)": 258, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00022915713695691758, + "% SUM(num_girls)": 0.0005378742708467976, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "CA", + "gender": "girl", + "name": "Jasmine", + "sum__num": 1659, + "SUM(num_girls)": 1659, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0014735336829904118, + "% SUM(num_girls)": 0.00345865664858464, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "MA", + "gender": "boy", + "name": "Luke", + "sum__num": 101, + "SUM(num_girls)": 0, + "SUM(num_boys)": 101, + "pct_boys": 101, + "% sum__num": 0.00008970880167693285, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00015629860151439418 + }, + { + "__timestamp": 599616000000, + "state": "NY", + "gender": "girl", + "name": "Alicia", + "sum__num": 480, + "SUM(num_girls)": 480, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004263388594547304, + "% SUM(num_girls)": 0.0010006963178545072, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "FL", + "gender": "boy", + "name": "Michael", + "sum__num": 1609, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1609, + "pct_boys": 1609, + "% sum__num": 0.001429123385130544, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002489945047887725 + }, + { + "__timestamp": 757382400000, + "state": "CA", + "gender": "girl", + "name": "Vanessa", + "sum__num": 2129, + "SUM(num_girls)": 2129, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0018909904828731687, + "% SUM(num_girls)": 0.004438505126483845, + "% pct_boys": 0 + }, + { + "__timestamp": 1167609600000, + "state": "FL", + "gender": "girl", + "name": "Rebecca", + "sum__num": 203, + "SUM(num_girls)": 203, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00018030580931106306, + "% SUM(num_girls)": 0.0004232111510926353, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "PA", + "gender": "girl", + "name": "Stacy", + "sum__num": 379, + "SUM(num_girls)": 379, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003366300577777975, + "% SUM(num_girls)": 0.0007901331343059545, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "PA", + "gender": "boy", + "name": "Stephen", + "sum__num": 166, + "SUM(num_girls)": 0, + "SUM(num_boys)": 166, + "pct_boys": 166, + "% sum__num": 0.0001474421888947609, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00025688681040979635 + }, + { + "__timestamp": 94694400000, + "state": "MI", + "gender": "boy", + "name": "Bradley", + "sum__num": 311, + "SUM(num_girls)": 0, + "SUM(num_boys)": 311, + "pct_boys": 311, + "% sum__num": 0.0002762320526883774, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00048127589179184743 + }, + { + "__timestamp": 1072915200000, + "state": "IL", + "gender": "boy", + "name": "Kyle", + "sum__num": 434, + "SUM(num_girls)": 0, + "SUM(num_boys)": 434, + "pct_boys": 434, + "% sum__num": 0.00038548138542365205, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00067161973324007 + }, + { + "__timestamp": 694224000000, + "state": "IL", + "gender": "boy", + "name": "Gregory", + "sum__num": 307, + "SUM(num_girls)": 0, + "SUM(num_boys)": 307, + "pct_boys": 307, + "% sum__num": 0.000272679228859588, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00047508584816751494 + }, + { + "__timestamp": 126230400000, + "state": "CA", + "gender": "girl", + "name": "Holly", + "sum__num": 364, + "SUM(num_girls)": 364, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003233069684198372, + "% SUM(num_girls)": 0.0007588613743730012, + "% pct_boys": 0 + }, + { + "__timestamp": -157766400000, + "state": "MI", + "gender": "girl", + "name": "Laura", + "sum__num": 849, + "SUM(num_girls)": 849, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007540868576605543, + "% SUM(num_girls)": 0.0017699816122051595, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "OH", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 409, + "SUM(num_girls)": 0, + "SUM(num_boys)": 409, + "pct_boys": 409, + "% sum__num": 0.00036327623649371816, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006329319605879923 + }, + { + "__timestamp": 946684800000, + "state": "IL", + "gender": "boy", + "name": "Isaiah", + "sum__num": 271, + "SUM(num_girls)": 0, + "SUM(num_boys)": 271, + "pct_boys": 271, + "% sum__num": 0.00024070381440048318, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000419375455548523 + }, + { + "__timestamp": 31536000000, + "state": "NJ", + "gender": "girl", + "name": "Diana", + "sum__num": 152, + "SUM(num_girls)": 152, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00013500730549399794, + "% SUM(num_girls)": 0.0003168871673205939, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "other", + "gender": "boy", + "name": "Matthew", + "sum__num": 8394, + "SUM(num_girls)": 0, + "SUM(num_boys)": 8394, + "pct_boys": 8394, + "% sum__num": 0.007455600804714598, + "% SUM(num_girls)": 0, + "% pct_boys": 0.01298980654566163 + }, + { + "__timestamp": 63072000000, + "state": "NJ", + "gender": "boy", + "name": "Kenneth", + "sum__num": 420, + "SUM(num_girls)": 0, + "SUM(num_boys)": 420, + "pct_boys": 420, + "% sum__num": 0.00037304650202288906, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006499545805549065 + }, + { + "__timestamp": 126230400000, + "state": "other", + "gender": "boy", + "name": "Craig", + "sum__num": 2484, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2484, + "pct_boys": 2484, + "% sum__num": 0.0022063035976782296, + "% SUM(num_girls)": 0, + "% pct_boys": 0.003844017090710447 + }, + { + "__timestamp": 220924800000, + "state": "NJ", + "gender": "girl", + "name": "Natalie", + "sum__num": 91, + "SUM(num_girls)": 91, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0000808267421049593, + "% SUM(num_girls)": 0.0001897153435932503, + "% pct_boys": 0 + }, + { + "__timestamp": 915148800000, + "state": "NJ", + "gender": "girl", + "name": "Sophia", + "sum__num": 187, + "SUM(num_girls)": 187, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00016609451399590537, + "% SUM(num_girls)": 0.0003898546071641517, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "TX", + "gender": "girl", + "name": "Kayla", + "sum__num": 881, + "SUM(num_girls)": 881, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007825094482908697, + "% SUM(num_girls)": 0.0018366947000621266, + "% pct_boys": 0 + }, + { + "__timestamp": -94694400000, + "state": "FL", + "gender": "girl", + "name": "Pamela", + "sum__num": 477, + "SUM(num_girls)": 477, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004236742415831383, + "% SUM(num_girls)": 0.0009944419658679165, + "% pct_boys": 0 + }, + { + "__timestamp": 94694400000, + "state": "other", + "gender": "girl", + "name": "Emily", + "sum__num": 1219, + "SUM(num_girls)": 1219, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010827230618235756, + "% SUM(num_girls)": 0.002541351690551342, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "TX", + "gender": "girl", + "name": "Alicia", + "sum__num": 359, + "SUM(num_girls)": 359, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00031886593863385043, + "% SUM(num_girls)": 0.0007484374543953501, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "NJ", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 520, + "SUM(num_girls)": 0, + "SUM(num_boys)": 520, + "pct_boys": 520, + "% sum__num": 0.00046186709774262457, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008047056711632175 + }, + { + "__timestamp": 631152000000, + "state": "NY", + "gender": "girl", + "name": "Tiffany", + "sum__num": 927, + "SUM(num_girls)": 927, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008233669223219481, + "% SUM(num_girls)": 0.0019325947638565168, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "other", + "gender": "girl", + "name": "Danielle", + "sum__num": 1944, + "SUM(num_girls)": 1944, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.001726672380791658, + "% SUM(num_girls)": 0.004052820087310754, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "NY", + "gender": "girl", + "name": "Stacy", + "sum__num": 423, + "SUM(num_girls)": 423, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00037571111989448115, + "% SUM(num_girls)": 0.0008818636301092844, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "PA", + "gender": "girl", + "name": "Jamie", + "sum__num": 734, + "SUM(num_girls)": 734, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006519431725828585, + "% SUM(num_girls)": 0.0015302314527191837, + "% pct_boys": 0 + }, + { + "__timestamp": 915148800000, + "state": "TX", + "gender": "girl", + "name": "Vanessa", + "sum__num": 699, + "SUM(num_girls)": 699, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000620855964080951, + "% SUM(num_girls)": 0.001457264012875626, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "IL", + "gender": "girl", + "name": "Theresa", + "sum__num": 399, + "SUM(num_girls)": 399, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003543941769217446, + "% SUM(num_girls)": 0.000831828814216559, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "CA", + "gender": "boy", + "name": "Christopher", + "sum__num": 3771, + "SUM(num_girls)": 0, + "SUM(num_boys)": 3771, + "pct_boys": 3771, + "% sum__num": 0.0033494246645912255, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00583566362683941 + }, + { + "__timestamp": 1009843200000, + "state": "NJ", + "gender": "boy", + "name": "Nathan", + "sum__num": 143, + "SUM(num_girls)": 0, + "SUM(num_boys)": 143, + "pct_boys": 143, + "% sum__num": 0.00012701345187922174, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00022129405956988483 + }, + { + "__timestamp": 126230400000, + "state": "MI", + "gender": "girl", + "name": "Rachel", + "sum__num": 341, + "SUM(num_girls)": 341, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00030287823140429804, + "% SUM(num_girls)": 0.0007109113424758061, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "IL", + "gender": "girl", + "name": "Pamela", + "sum__num": 659, + "SUM(num_girls)": 659, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005853277257930569, + "% SUM(num_girls)": 0.0013738726530544171, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "NJ", + "gender": "boy", + "name": "Timothy", + "sum__num": 481, + "SUM(num_girls)": 0, + "SUM(num_boys)": 481, + "pct_boys": 481, + "% sum__num": 0.00042722706541192774, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007443527458259762 + }, + { + "__timestamp": 473385600000, + "state": "PA", + "gender": "boy", + "name": "Jonathan", + "sum__num": 1057, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1057, + "pct_boys": 1057, + "% sum__num": 0.0009388336967576041, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0016357190277298478 + }, + { + "__timestamp": 189302400000, + "state": "MA", + "gender": "boy", + "name": "Nathaniel", + "sum__num": 69, + "SUM(num_girls)": 0, + "SUM(num_boys)": 69, + "pct_boys": 69, + "% sum__num": 0.00006128621104661749, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00010677825251973463 + }, + { + "__timestamp": 1199145600000, + "state": "MA", + "gender": "boy", + "name": "Jack", + "sum__num": 417, + "SUM(num_girls)": 0, + "SUM(num_boys)": 417, + "pct_boys": 417, + "% sum__num": 0.000370381884151297, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006453120478366572 + }, + { + "__timestamp": 1041379200000, + "state": "MA", + "gender": "boy", + "name": "Charles", + "sum__num": 229, + "SUM(num_girls)": 0, + "SUM(num_boys)": 229, + "pct_boys": 229, + "% sum__num": 0.0002033991641981943, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00035437999749303234 + }, + { + "__timestamp": 978307200000, + "state": "CA", + "gender": "girl", + "name": "Karen", + "sum__num": 592, + "SUM(num_girls)": 592, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005258179266608342, + "% SUM(num_girls)": 0.001234192125353892, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "other", + "gender": "boy", + "name": "Gregory", + "sum__num": 4640, + "SUM(num_girls)": 0, + "SUM(num_boys)": 4640, + "pct_boys": 4640, + "% sum__num": 0.004121275641395727, + "% SUM(num_girls)": 0, + "% pct_boys": 0.007180450604225634 + }, + { + "__timestamp": 820454400000, + "state": "TX", + "gender": "boy", + "name": "Justin", + "sum__num": 1619, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1619, + "pct_boys": 1619, + "% sum__num": 0.0014380054447025177, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002505420156948556 + }, + { + "__timestamp": 473385600000, + "state": "OH", + "gender": "boy", + "name": "Edward", + "sum__num": 239, + "SUM(num_girls)": 0, + "SUM(num_boys)": 239, + "pct_boys": 239, + "% sum__num": 0.00021228122377016782, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00036985510655386343 + }, + { + "__timestamp": 1167609600000, + "state": "TX", + "gender": "boy", + "name": "Andrew", + "sum__num": 1476, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1476, + "pct_boys": 1476, + "% sum__num": 0.0013109919928232959, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002284126097378671 + }, + { + "__timestamp": 662688000000, + "state": "IL", + "gender": "boy", + "name": "Vincent", + "sum__num": 202, + "SUM(num_girls)": 0, + "SUM(num_boys)": 202, + "pct_boys": 202, + "% sum__num": 0.0001794176033538657, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00031259720302878835 + }, + { + "__timestamp": 883612800000, + "state": "NY", + "gender": "boy", + "name": "Vincent", + "sum__num": 394, + "SUM(num_girls)": 0, + "SUM(num_boys)": 394, + "pct_boys": 394, + "% sum__num": 0.00034995314713575786, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006097192969967456 + }, + { + "__timestamp": 441763200000, + "state": "IL", + "gender": "boy", + "name": "Jared", + "sum__num": 180, + "SUM(num_girls)": 0, + "SUM(num_boys)": 180, + "pct_boys": 180, + "% sum__num": 0.0001598770722955239, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002785519630949599 + }, + { + "__timestamp": 946684800000, + "state": "other", + "gender": "boy", + "name": "Antonio", + "sum__num": 1334, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1334, + "pct_boys": 1334, + "% sum__num": 0.0011848667469012714, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0020643795487148694 + }, + { + "__timestamp": 63072000000, + "state": "OH", + "gender": "boy", + "name": "Derek", + "sum__num": 160, + "SUM(num_girls)": 0, + "SUM(num_boys)": 160, + "pct_boys": 160, + "% sum__num": 0.0001421129531515768, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002476017449732977 + }, + { + "__timestamp": 283996800000, + "state": "CA", + "gender": "girl", + "name": "Karen", + "sum__num": 490, + "SUM(num_girls)": 490, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004352209190267039, + "% SUM(num_girls)": 0.0010215441578098094, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "TX", + "gender": "girl", + "name": "Alexandra", + "sum__num": 608, + "SUM(num_girls)": 608, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005400292219759918, + "% SUM(num_girls)": 0.0012675486692823757, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "TX", + "gender": "girl", + "name": "Sandra", + "sum__num": 1101, + "SUM(num_girls)": 1101, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009779147588742877, + "% SUM(num_girls)": 0.0022953471790787758, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "NJ", + "gender": "boy", + "name": "Samuel", + "sum__num": 117, + "SUM(num_girls)": 0, + "SUM(num_boys)": 117, + "pct_boys": 117, + "% sum__num": 0.00010392009699209053, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00018105877601172396 + }, + { + "__timestamp": 820454400000, + "state": "MI", + "gender": "boy", + "name": "Alex", + "sum__num": 238, + "SUM(num_girls)": 0, + "SUM(num_boys)": 238, + "pct_boys": 238, + "% sum__num": 0.00021139301781297046, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00036830759564778035 + }, + { + "__timestamp": 157766400000, + "state": "MI", + "gender": "girl", + "name": "Melissa", + "sum__num": 1096, + "SUM(num_girls)": 1096, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000973473729088301, + "% SUM(num_girls)": 0.0022849232591011246, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "PA", + "gender": "girl", + "name": "Sharon", + "sum__num": 214, + "SUM(num_girls)": 214, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00019007607484023396, + "% SUM(num_girls)": 0.00044614377504346775, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "OH", + "gender": "girl", + "name": "Stacy", + "sum__num": 202, + "SUM(num_girls)": 202, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001794176033538657, + "% SUM(num_girls)": 0.00042112636709710507, + "% pct_boys": 0 + }, + { + "__timestamp": 662688000000, + "state": "MI", + "gender": "girl", + "name": "Ashley", + "sum__num": 1873, + "SUM(num_girls)": 1873, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0016636097578306458, + "% SUM(num_girls)": 0.003904800423628108, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "PA", + "gender": "girl", + "name": "Barbara", + "sum__num": 159, + "SUM(num_girls)": 159, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00014122474719437944, + "% SUM(num_girls)": 0.0003314806552893055, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "other", + "gender": "boy", + "name": "Matthew", + "sum__num": 17299, + "SUM(num_girls)": 0, + "SUM(num_boys)": 17299, + "pct_boys": 17299, + "% sum__num": 0.015365074853557042, + "% SUM(num_girls)": 0, + "% pct_boys": 0.02677039116433173 + }, + { + "__timestamp": 820454400000, + "state": "IL", + "gender": "girl", + "name": "Margaret", + "sum__num": 264, + "SUM(num_girls)": 264, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002344863727001017, + "% SUM(num_girls)": 0.000550382974819979, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "CA", + "gender": "girl", + "name": "Amy", + "sum__num": 1062, + "SUM(num_girls)": 1062, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009432747265435909, + "% SUM(num_girls)": 0.002214040603253097, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "CA", + "gender": "girl", + "name": "Anna", + "sum__num": 477, + "SUM(num_girls)": 477, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004236742415831383, + "% SUM(num_girls)": 0.0009944419658679165, + "% pct_boys": 0 + }, + { + "__timestamp": -94694400000, + "state": "MA", + "gender": "girl", + "name": "Carol", + "sum__num": 254, + "SUM(num_girls)": 254, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00022560431312812815, + "% SUM(num_girls)": 0.0005295351348646766, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "other", + "gender": "girl", + "name": "Sarah", + "sum__num": 2611, + "SUM(num_girls)": 2611, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0023191057542422937, + "% SUM(num_girls)": 0.0054433710123294125, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "other", + "gender": "boy", + "name": "Shawn", + "sum__num": 3859, + "SUM(num_girls)": 0, + "SUM(num_boys)": 3859, + "pct_boys": 3859, + "% sum__num": 0.0034275867888245927, + "% SUM(num_girls)": 0, + "% pct_boys": 0.005971844586574724 + }, + { + "__timestamp": 978307200000, + "state": "other", + "gender": "girl", + "name": "Amanda", + "sum__num": 2517, + "SUM(num_girls)": 2517, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0022356143942657424, + "% SUM(num_girls)": 0.0052474013167495715, + "% pct_boys": 0 + }, + { + "__timestamp": 852076800000, + "state": "other", + "gender": "girl", + "name": "Kelly", + "sum__num": 883, + "SUM(num_girls)": 883, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007842858602052643, + "% SUM(num_girls)": 0.001840864268053187, + "% pct_boys": 0 + }, + { + "__timestamp": 915148800000, + "state": "NJ", + "gender": "boy", + "name": "Robert", + "sum__num": 526, + "SUM(num_girls)": 0, + "SUM(num_boys)": 526, + "pct_boys": 526, + "% sum__num": 0.0004671963334858087, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008139907365997162 + }, + { + "__timestamp": 157766400000, + "state": "CA", + "gender": "girl", + "name": "Amanda", + "sum__num": 769, + "SUM(num_girls)": 769, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006830303810847659, + "% SUM(num_girls)": 0.0016031988925627415, + "% pct_boys": 0 + }, + { + "__timestamp": 852076800000, + "state": "NY", + "gender": "boy", + "name": "Joshua", + "sum__num": 1711, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1711, + "pct_boys": 1711, + "% sum__num": 0.0015197203927646743, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002647791160308202 + }, + { + "__timestamp": 283996800000, + "state": "other", + "gender": "boy", + "name": "Joseph", + "sum__num": 12800, + "SUM(num_girls)": 0, + "SUM(num_boys)": 12800, + "pct_boys": 12800, + "% sum__num": 0.011369036252126144, + "% SUM(num_girls)": 0, + "% pct_boys": 0.019808139597863816 + }, + { + "__timestamp": 504921600000, + "state": "TX", + "gender": "girl", + "name": "Chelsea", + "sum__num": 358, + "SUM(num_girls)": 358, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00031797773267665307, + "% SUM(num_girls)": 0.0007463526703998199, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "TX", + "gender": "boy", + "name": "Jeremy", + "sum__num": 510, + "SUM(num_girls)": 0, + "SUM(num_boys)": 510, + "pct_boys": 510, + "% sum__num": 0.00045298503817065103, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007892305621023864 + }, + { + "__timestamp": 504921600000, + "state": "PA", + "gender": "boy", + "name": "Nathaniel", + "sum__num": 170, + "SUM(num_girls)": 0, + "SUM(num_boys)": 170, + "pct_boys": 170, + "% sum__num": 0.00015099501272355034, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002630768540341288 + }, + { + "__timestamp": 694224000000, + "state": "PA", + "gender": "girl", + "name": "Emily", + "sum__num": 1218, + "SUM(num_girls)": 1218, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010818348558663783, + "% SUM(num_girls)": 0.002539266906555812, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "MA", + "gender": "girl", + "name": "Maria", + "sum__num": 79, + "SUM(num_girls)": 79, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00007016827061859104, + "% SUM(num_girls)": 0.00016469793564688763, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "IL", + "gender": "girl", + "name": "Alexandra", + "sum__num": 522, + "SUM(num_girls)": 522, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00046364350965701924, + "% SUM(num_girls)": 0.0010882572456667764, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "OH", + "gender": "boy", + "name": "Joseph", + "sum__num": 1435, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1435, + "pct_boys": 1435, + "% sum__num": 0.0012745755485782044, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0022206781502292637 + }, + { + "__timestamp": 126230400000, + "state": "MA", + "gender": "girl", + "name": "Cynthia", + "sum__num": 104, + "SUM(num_girls)": 104, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00009237341954852491, + "% SUM(num_girls)": 0.0002168175355351432, + "% pct_boys": 0 + }, + { + "__timestamp": 1041379200000, + "state": "TX", + "gender": "boy", + "name": "James", + "sum__num": 1195, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1195, + "pct_boys": 1195, + "% sum__num": 0.001061406118850839, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0018492755327693172 + }, + { + "__timestamp": -126230400000, + "state": "MI", + "gender": "girl", + "name": "Barbara", + "sum__num": 605, + "SUM(num_girls)": 605, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005373646041043998, + "% SUM(num_girls)": 0.001261294317295785, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "FL", + "gender": "girl", + "name": "Melissa", + "sum__num": 560, + "SUM(num_girls)": 560, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004973953360305187, + "% SUM(num_girls)": 0.001167479037496925, + "% pct_boys": 0 + }, + { + "__timestamp": 378691200000, + "state": "other", + "gender": "girl", + "name": "Jennifer", + "sum__num": 26584, + "SUM(num_girls)": 26584, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.02361206716613448, + "% SUM(num_girls)": 0.05542189773717545, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "other", + "gender": "girl", + "name": "Katherine", + "sum__num": 5010, + "SUM(num_girls)": 5010, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.004449911845558748, + "% SUM(num_girls)": 0.010444767817606417, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "IL", + "gender": "girl", + "name": "Christina", + "sum__num": 694, + "SUM(num_girls)": 694, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006164149342949643, + "% SUM(num_girls)": 0.001446840092897975, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "CA", + "gender": "boy", + "name": "Michael", + "sum__num": 8186, + "SUM(num_girls)": 0, + "SUM(num_boys)": 8186, + "pct_boys": 8186, + "% sum__num": 0.007270853965617548, + "% SUM(num_girls)": 0, + "% pct_boys": 0.012667924277196343 + }, + { + "__timestamp": -63158400000, + "state": "other", + "gender": "boy", + "name": "Christian", + "sum__num": 70, + "SUM(num_girls)": 0, + "SUM(num_boys)": 70, + "pct_boys": 70, + "% sum__num": 0.00006217441700381484, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00010832576342581774 + }, + { + "__timestamp": -157766400000, + "state": "MA", + "gender": "girl", + "name": "Valerie", + "sum__num": 115, + "SUM(num_girls)": 115, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00010214368507769581, + "% SUM(num_girls)": 0.00023975015948597567, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "MA", + "gender": "girl", + "name": "Michele", + "sum__num": 311, + "SUM(num_girls)": 311, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002762320526883774, + "% SUM(num_girls)": 0.0006483678226098994, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "IL", + "gender": "girl", + "name": "Pamela", + "sum__num": 332, + "SUM(num_girls)": 332, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002948843777895218, + "% SUM(num_girls)": 0.0006921482865160341, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "IL", + "gender": "boy", + "name": "Angel", + "sum__num": 211, + "SUM(num_girls)": 0, + "SUM(num_boys)": 211, + "pct_boys": 211, + "% sum__num": 0.0001874114569686419, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00032652480118353636 + }, + { + "__timestamp": 441763200000, + "state": "FL", + "gender": "boy", + "name": "Phillip", + "sum__num": 175, + "SUM(num_girls)": 0, + "SUM(num_boys)": 175, + "pct_boys": 175, + "% sum__num": 0.0001554360425095371, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00027081440856454436 + }, + { + "__timestamp": 788918400000, + "state": "OH", + "gender": "boy", + "name": "Jesse", + "sum__num": 295, + "SUM(num_girls)": 0, + "SUM(num_boys)": 295, + "pct_boys": 295, + "% sum__num": 0.0002620207573732197, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004565157172945176 + }, + { + "__timestamp": 694224000000, + "state": "NJ", + "gender": "boy", + "name": "Andrew", + "sum__num": 973, + "SUM(num_girls)": 0, + "SUM(num_boys)": 973, + "pct_boys": 973, + "% sum__num": 0.0008642243963530264, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0015057281116188667 + }, + { + "__timestamp": 1167609600000, + "state": "other", + "gender": "girl", + "name": "Kimberly", + "sum__num": 1493, + "SUM(num_girls)": 1493, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0013260914940956508, + "% SUM(num_girls)": 0.003112582505326623, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "other", + "gender": "girl", + "name": "Nancy", + "sum__num": 632, + "SUM(num_girls)": 632, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005613461649487283, + "% SUM(num_girls)": 0.001317583485175101, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "TX", + "gender": "girl", + "name": "Diana", + "sum__num": 428, + "SUM(num_girls)": 428, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003801521496804679, + "% SUM(num_girls)": 0.0008922875500869355, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "other", + "gender": "boy", + "name": "Taylor", + "sum__num": 1647, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1647, + "pct_boys": 1647, + "% sum__num": 0.0014628752115040436, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002548750462318883 + }, + { + "__timestamp": -126230400000, + "state": "NJ", + "gender": "boy", + "name": "Russell", + "sum__num": 133, + "SUM(num_girls)": 0, + "SUM(num_boys)": 133, + "pct_boys": 133, + "% sum__num": 0.00011813139230724821, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002058189505090537 + }, + { + "__timestamp": -63158400000, + "state": "OH", + "gender": "boy", + "name": "Rodney", + "sum__num": 444, + "SUM(num_girls)": 0, + "SUM(num_boys)": 444, + "pct_boys": 444, + "% sum__num": 0.0003943634449956256, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006870948423009011 + }, + { + "__timestamp": 694224000000, + "state": "NJ", + "gender": "boy", + "name": "Raymond", + "sum__num": 160, + "SUM(num_girls)": 0, + "SUM(num_boys)": 160, + "pct_boys": 160, + "% sum__num": 0.0001421129531515768, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002476017449732977 + }, + { + "__timestamp": 1136073600000, + "state": "TX", + "gender": "girl", + "name": "Nicole", + "sum__num": 346, + "SUM(num_girls)": 346, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003073192611902848, + "% SUM(num_girls)": 0.0007213352624534572, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "NJ", + "gender": "boy", + "name": "Nathaniel", + "sum__num": 100, + "SUM(num_girls)": 0, + "SUM(num_boys)": 100, + "pct_boys": 100, + "% sum__num": 0.0000888205957197355, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00015475109060831107 + }, + { + "__timestamp": 410227200000, + "state": "CA", + "gender": "girl", + "name": "Kimberly", + "sum__num": 1463, + "SUM(num_girls)": 1463, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0012994453153797303, + "% SUM(num_girls)": 0.003050038985460716, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "MI", + "gender": "boy", + "name": "Robert", + "sum__num": 1213, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1213, + "pct_boys": 1213, + "% sum__num": 0.0010773938260803914, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0018771307290788132 + }, + { + "__timestamp": 1009843200000, + "state": "MA", + "gender": "boy", + "name": "Benjamin", + "sum__num": 449, + "SUM(num_girls)": 0, + "SUM(num_boys)": 449, + "pct_boys": 449, + "% sum__num": 0.00039880447478161235, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006948323968313167 + }, + { + "__timestamp": 63072000000, + "state": "other", + "gender": "girl", + "name": "Kelly", + "sum__num": 4717, + "SUM(num_girls)": 4717, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0041896675000999235, + "% SUM(num_girls)": 0.009833926106916063, + "% pct_boys": 0 + }, + { + "__timestamp": 757382400000, + "state": "NJ", + "gender": "boy", + "name": "Ryan", + "sum__num": 962, + "SUM(num_girls)": 0, + "SUM(num_boys)": 962, + "pct_boys": 962, + "% sum__num": 0.0008544541308238555, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014887054916519523 + }, + { + "__timestamp": 504921600000, + "state": "NY", + "gender": "boy", + "name": "Derek", + "sum__num": 311, + "SUM(num_girls)": 0, + "SUM(num_boys)": 311, + "pct_boys": 311, + "% sum__num": 0.0002762320526883774, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00048127589179184743 + }, + { + "__timestamp": 1167609600000, + "state": "other", + "gender": "girl", + "name": "Megan", + "sum__num": 1808, + "SUM(num_girls)": 1808, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0016058763706128178, + "% SUM(num_girls)": 0.0037692894639186434, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "other", + "gender": "boy", + "name": "Charles", + "sum__num": 10419, + "SUM(num_girls)": 0, + "SUM(num_boys)": 10419, + "pct_boys": 10419, + "% sum__num": 0.009254217868039242, + "% SUM(num_girls)": 0, + "% pct_boys": 0.01612351613047993 + }, + { + "__timestamp": 220924800000, + "state": "OH", + "gender": "girl", + "name": "Melissa", + "sum__num": 1543, + "SUM(num_girls)": 1543, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0013705017919555186, + "% SUM(num_girls)": 0.003216821705103134, + "% pct_boys": 0 + }, + { + "__timestamp": 378691200000, + "state": "NY", + "gender": "boy", + "name": "Joel", + "sum__num": 508, + "SUM(num_girls)": 0, + "SUM(num_boys)": 508, + "pct_boys": 508, + "% sum__num": 0.0004512086262562563, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007861355402902202 + }, + { + "__timestamp": 694224000000, + "state": "MI", + "gender": "boy", + "name": "Nathan", + "sum__num": 537, + "SUM(num_girls)": 0, + "SUM(num_boys)": 537, + "pct_boys": 537, + "% sum__num": 0.0004769665990149796, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008310133565666304 + }, + { + "__timestamp": 410227200000, + "state": "NJ", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 513, + "SUM(num_girls)": 0, + "SUM(num_boys)": 513, + "pct_boys": 513, + "% sum__num": 0.0004556496560422431, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007938730948206358 + }, + { + "__timestamp": 410227200000, + "state": "other", + "gender": "girl", + "name": "Alexis", + "sum__num": 931, + "SUM(num_girls)": 931, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008269197461507374, + "% SUM(num_girls)": 0.0019409338998386378, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "other", + "gender": "boy", + "name": "Jordan", + "sum__num": 5796, + "SUM(num_girls)": 0, + "SUM(num_boys)": 5796, + "pct_boys": 5796, + "% sum__num": 0.005148041727915869, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00896937321165771 + }, + { + "__timestamp": 852076800000, + "state": "PA", + "gender": "boy", + "name": "Joseph", + "sum__num": 1123, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1123, + "pct_boys": 1123, + "% sum__num": 0.0009974552899326295, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0017378547475313333 + }, + { + "__timestamp": 852076800000, + "state": "OH", + "gender": "boy", + "name": "Justin", + "sum__num": 771, + "SUM(num_girls)": 0, + "SUM(num_boys)": 771, + "pct_boys": 771, + "% sum__num": 0.0006848067929991606, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0011931309085900783 + }, + { + "__timestamp": 1167609600000, + "state": "TX", + "gender": "boy", + "name": "Bryan", + "sum__num": 1005, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1005, + "pct_boys": 1005, + "% sum__num": 0.0008926469869833417, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0015552484606135262 + }, + { + "__timestamp": 378691200000, + "state": "OH", + "gender": "boy", + "name": "Frank", + "sum__num": 126, + "SUM(num_girls)": 0, + "SUM(num_boys)": 126, + "pct_boys": 126, + "% sum__num": 0.00011191395060686673, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00019498637416647194 + }, + { + "__timestamp": 1041379200000, + "state": "NY", + "gender": "girl", + "name": "Rachel", + "sum__num": 712, + "SUM(num_girls)": 712, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006324026415245167, + "% SUM(num_girls)": 0.0014843662048175188, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "FL", + "gender": "girl", + "name": "Carrie", + "sum__num": 213, + "SUM(num_girls)": 213, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001891878688830366, + "% SUM(num_girls)": 0.0004440589910479375, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "TX", + "gender": "boy", + "name": "Jerry", + "sum__num": 664, + "SUM(num_girls)": 0, + "SUM(num_boys)": 664, + "pct_boys": 664, + "% sum__num": 0.0005897687555790436, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0010275472416391854 + }, + { + "__timestamp": 788918400000, + "state": "other", + "gender": "boy", + "name": "Paul", + "sum__num": 1924, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1924, + "pct_boys": 1924, + "% sum__num": 0.001708908261647711, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0029774109833039047 + }, + { + "__timestamp": 157766400000, + "state": "CA", + "gender": "boy", + "name": "Mark", + "sum__num": 1465, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1465, + "pct_boys": 1465, + "% sum__num": 0.0013012217272941249, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002267103477411757 + }, + { + "__timestamp": 315532800000, + "state": "NY", + "gender": "boy", + "name": "Michael", + "sum__num": 5792, + "SUM(num_girls)": 0, + "SUM(num_boys)": 5792, + "pct_boys": 5792, + "% sum__num": 0.0051444889040870795, + "% SUM(num_girls)": 0, + "% pct_boys": 0.008963183168033377 + }, + { + "__timestamp": 220924800000, + "state": "CA", + "gender": "girl", + "name": "Kristen", + "sum__num": 323, + "SUM(num_girls)": 323, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00028689052417474564, + "% SUM(num_girls)": 0.0006733852305562621, + "% pct_boys": 0 + }, + { + "__timestamp": 1199145600000, + "state": "FL", + "gender": "girl", + "name": "Melanie", + "sum__num": 265, + "SUM(num_girls)": 265, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00023537457865729905, + "% SUM(num_girls)": 0.0005524677588155091, + "% pct_boys": 0 + }, + { + "__timestamp": 1041379200000, + "state": "MI", + "gender": "boy", + "name": "Anthony", + "sum__num": 644, + "SUM(num_girls)": 0, + "SUM(num_boys)": 644, + "pct_boys": 644, + "% sum__num": 0.0005720046364350966, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009965970235175233 + }, + { + "__timestamp": 504921600000, + "state": "MI", + "gender": "girl", + "name": "Andrea", + "sum__num": 440, + "SUM(num_girls)": 440, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003908106211668362, + "% SUM(num_girls)": 0.0009173049580332982, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "FL", + "gender": "girl", + "name": "Tiffany", + "sum__num": 408, + "SUM(num_girls)": 408, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003623880305365208, + "% SUM(num_girls)": 0.000850591870176331, + "% pct_boys": 0 + }, + { + "__timestamp": 1104537600000, + "state": "OH", + "gender": "girl", + "name": "Emma", + "sum__num": 1053, + "SUM(num_girls)": 1053, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009352808729288148, + "% SUM(num_girls)": 0.002195277547293325, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "FL", + "gender": "boy", + "name": "Mason", + "sum__num": 288, + "SUM(num_girls)": 0, + "SUM(num_boys)": 288, + "pct_boys": 288, + "% sum__num": 0.0002558033156728382, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004456831409519359 + }, + { + "__timestamp": 662688000000, + "state": "CA", + "gender": "boy", + "name": "Christian", + "sum__num": 2190, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2190, + "pct_boys": 2190, + "% sum__num": 0.0019451710462622073, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0033890488843220123 + }, + { + "__timestamp": 473385600000, + "state": "CA", + "gender": "boy", + "name": "Jesse", + "sum__num": 1080, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1080, + "pct_boys": 1080, + "% sum__num": 0.0009592624337731433, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0016713117785697594 + }, + { + "__timestamp": 473385600000, + "state": "MI", + "gender": "boy", + "name": "Nicholas", + "sum__num": 1136, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1136, + "pct_boys": 1136, + "% sum__num": 0.0010090019673761952, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0017579723893104136 + }, + { + "__timestamp": 0, + "state": "other", + "gender": "girl", + "name": "Theresa", + "sum__num": 2338, + "SUM(num_girls)": 2338, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0020766255279274157, + "% SUM(num_girls)": 0.004874224981549662, + "% pct_boys": 0 + }, + { + "__timestamp": 883612800000, + "state": "MA", + "gender": "girl", + "name": "Erica", + "sum__num": 92, + "SUM(num_girls)": 92, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00008171494806215665, + "% SUM(num_girls)": 0.00019180012758878052, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "FL", + "gender": "boy", + "name": "William", + "sum__num": 899, + "SUM(num_girls)": 0, + "SUM(num_boys)": 899, + "pct_boys": 899, + "% sum__num": 0.0007984971555204221, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0013912123045687163 + }, + { + "__timestamp": -31536000000, + "state": "CA", + "gender": "boy", + "name": "John", + "sum__num": 5326, + "SUM(num_girls)": 0, + "SUM(num_boys)": 5326, + "pct_boys": 5326, + "% sum__num": 0.0047305849280331125, + "% SUM(num_girls)": 0, + "% pct_boys": 0.008242043085798647 + }, + { + "__timestamp": 220924800000, + "state": "TX", + "gender": "boy", + "name": "Justin", + "sum__num": 726, + "SUM(num_girls)": 0, + "SUM(num_boys)": 726, + "pct_boys": 726, + "% sum__num": 0.0006448375249252797, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0011234929178163384 + }, + { + "__timestamp": 757382400000, + "state": "PA", + "gender": "boy", + "name": "Ethan", + "sum__num": 184, + "SUM(num_girls)": 0, + "SUM(num_boys)": 184, + "pct_boys": 184, + "% sum__num": 0.0001634298961243133, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002847420067192924 + }, + { + "__timestamp": 378691200000, + "state": "MI", + "gender": "girl", + "name": "Kelly", + "sum__num": 657, + "SUM(num_girls)": 657, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005835513138786622, + "% SUM(num_girls)": 0.0013697030850633566, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "NJ", + "gender": "boy", + "name": "Joel", + "sum__num": 97, + "SUM(num_girls)": 0, + "SUM(num_boys)": 97, + "pct_boys": 97, + "% sum__num": 0.00008615597784814343, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00015010855789006174 + }, + { + "__timestamp": 504921600000, + "state": "MI", + "gender": "boy", + "name": "Kenneth", + "sum__num": 374, + "SUM(num_girls)": 0, + "SUM(num_boys)": 374, + "pct_boys": 374, + "% sum__num": 0.00033218902799181073, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005787690788750834 + }, + { + "__timestamp": -31536000000, + "state": "MI", + "gender": "boy", + "name": "Randy", + "sum__num": 267, + "SUM(num_girls)": 0, + "SUM(num_boys)": 267, + "pct_boys": 267, + "% sum__num": 0.00023715099057169375, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00041318541192419055 + }, + { + "__timestamp": 283996800000, + "state": "MA", + "gender": "girl", + "name": "Allison", + "sum__num": 141, + "SUM(num_girls)": 141, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00012523703996482704, + "% SUM(num_girls)": 0.0002939545433697615, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "CA", + "gender": "girl", + "name": "Tiffany", + "sum__num": 833, + "SUM(num_girls)": 833, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007398755623453967, + "% SUM(num_girls)": 0.0017366250682766759, + "% pct_boys": 0 + }, + { + "__timestamp": 946684800000, + "state": "FL", + "gender": "boy", + "name": "Luke", + "sum__num": 261, + "SUM(num_girls)": 0, + "SUM(num_boys)": 261, + "pct_boys": 261, + "% sum__num": 0.00023182175482850962, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004039003464876919 + }, + { + "__timestamp": 315532800000, + "state": "IL", + "gender": "girl", + "name": "Elizabeth", + "sum__num": 1193, + "SUM(num_girls)": 1193, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010596297069364444, + "% SUM(num_girls)": 0.0024871473066675562, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "MA", + "gender": "boy", + "name": "Travis", + "sum__num": 53, + "SUM(num_girls)": 0, + "SUM(num_boys)": 53, + "pct_boys": 53, + "% sum__num": 0.00004707491573145981, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00008201807802240486 + }, + { + "__timestamp": 126230400000, + "state": "CA", + "gender": "boy", + "name": "Sean", + "sum__num": 973, + "SUM(num_girls)": 0, + "SUM(num_boys)": 973, + "pct_boys": 973, + "% sum__num": 0.0008642243963530264, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0015057281116188667 + }, + { + "__timestamp": 788918400000, + "state": "NJ", + "gender": "girl", + "name": "Ashley", + "sum__num": 769, + "SUM(num_girls)": 769, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006830303810847659, + "% SUM(num_girls)": 0.0016031988925627415, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "IL", + "gender": "boy", + "name": "Christopher", + "sum__num": 2032, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2032, + "pct_boys": 2032, + "% sum__num": 0.0018048345050250252, + "% SUM(num_girls)": 0, + "% pct_boys": 0.003144542161160881 + }, + { + "__timestamp": -126230400000, + "state": "FL", + "gender": "girl", + "name": "Paula", + "sum__num": 155, + "SUM(num_girls)": 155, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00013767192336559, + "% SUM(num_girls)": 0.0003231415193071846, + "% pct_boys": 0 + }, + { + "__timestamp": 915148800000, + "state": "IL", + "gender": "girl", + "name": "Brooke", + "sum__num": 231, + "SUM(num_girls)": 231, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000205175576112589, + "% SUM(num_girls)": 0.0004815851029674815, + "% pct_boys": 0 + }, + { + "__timestamp": 1167609600000, + "state": "other", + "gender": "girl", + "name": "Sophia", + "sum__num": 6845, + "SUM(num_girls)": 6845, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.006079769777015895, + "% SUM(num_girls)": 0.014270346449404378, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "OH", + "gender": "boy", + "name": "Jeremy", + "sum__num": 591, + "SUM(num_girls)": 0, + "SUM(num_boys)": 591, + "pct_boys": 591, + "% sum__num": 0.0005249297207036368, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009145789454951184 + }, + { + "__timestamp": -31536000000, + "state": "FL", + "gender": "girl", + "name": "Monica", + "sum__num": 153, + "SUM(num_girls)": 153, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001358955114511953, + "% SUM(num_girls)": 0.00031897195131612416, + "% pct_boys": 0 + }, + { + "__timestamp": -157766400000, + "state": "OH", + "gender": "boy", + "name": "Jerry", + "sum__num": 513, + "SUM(num_girls)": 0, + "SUM(num_boys)": 513, + "pct_boys": 513, + "% sum__num": 0.0004556496560422431, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007938730948206358 + }, + { + "__timestamp": 126230400000, + "state": "IL", + "gender": "boy", + "name": "Jesse", + "sum__num": 168, + "SUM(num_girls)": 0, + "SUM(num_boys)": 168, + "pct_boys": 168, + "% sum__num": 0.00014921860080915563, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00025998183222196257 + }, + { + "__timestamp": 567993600000, + "state": "CA", + "gender": "girl", + "name": "Megan", + "sum__num": 1701, + "SUM(num_girls)": 1701, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0015108383331927007, + "% SUM(num_girls)": 0.0035462175763969093, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "FL", + "gender": "girl", + "name": "Rebecca", + "sum__num": 374, + "SUM(num_girls)": 374, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00033218902799181073, + "% SUM(num_girls)": 0.0007797092143283034, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "TX", + "gender": "girl", + "name": "Sara", + "sum__num": 397, + "SUM(num_girls)": 397, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003526177650073499, + "% SUM(num_girls)": 0.0008276592462254986, + "% pct_boys": 0 + }, + { + "__timestamp": -63158400000, + "state": "TX", + "gender": "boy", + "name": "Daniel", + "sum__num": 966, + "SUM(num_girls)": 0, + "SUM(num_boys)": 966, + "pct_boys": 966, + "% sum__num": 0.0008580069546526448, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014948955352762849 + }, + { + "__timestamp": 0, + "state": "PA", + "gender": "boy", + "name": "Jerry", + "sum__num": 152, + "SUM(num_girls)": 0, + "SUM(num_boys)": 152, + "pct_boys": 152, + "% sum__num": 0.00013500730549399794, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00023522165772463282 + }, + { + "__timestamp": 410227200000, + "state": "NJ", + "gender": "boy", + "name": "Michael", + "sum__num": 2644, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2644, + "pct_boys": 2644, + "% sum__num": 0.0023484165508298066, + "% SUM(num_girls)": 0, + "% pct_boys": 0.004091618835683744 + }, + { + "__timestamp": 631152000000, + "state": "NJ", + "gender": "boy", + "name": "Brian", + "sum__num": 883, + "SUM(num_girls)": 0, + "SUM(num_boys)": 883, + "pct_boys": 883, + "% sum__num": 0.0007842858602052643, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0013664521300713866 + }, + { + "__timestamp": 94694400000, + "state": "IL", + "gender": "girl", + "name": "Leslie", + "sum__num": 175, + "SUM(num_girls)": 175, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001554360425095371, + "% SUM(num_girls)": 0.00036483719921778904, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "OH", + "gender": "boy", + "name": "Eric", + "sum__num": 1459, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1459, + "pct_boys": 1459, + "% sum__num": 0.0012958924915509409, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0022578184119752586 + }, + { + "__timestamp": -126230400000, + "state": "TX", + "gender": "girl", + "name": "Karen", + "sum__num": 1065, + "SUM(num_girls)": 1065, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000945939344415183, + "% SUM(num_girls)": 0.0022202949552396875, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "NJ", + "gender": "girl", + "name": "Lisa", + "sum__num": 153, + "SUM(num_girls)": 153, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001358955114511953, + "% SUM(num_girls)": 0.00031897195131612416, + "% pct_boys": 0 + }, + { + "__timestamp": 1041379200000, + "state": "other", + "gender": "boy", + "name": "Patrick", + "sum__num": 1224, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1224, + "pct_boys": 1224, + "% sum__num": 0.0010871640916095624, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0018941533490457274 + }, + { + "__timestamp": 820454400000, + "state": "IL", + "gender": "boy", + "name": "Mark", + "sum__num": 321, + "SUM(num_girls)": 0, + "SUM(num_boys)": 321, + "pct_boys": 321, + "% sum__num": 0.0002851141122603509, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004967510008526785 + }, + { + "__timestamp": 252460800000, + "state": "IL", + "gender": "girl", + "name": "Kimberly", + "sum__num": 852, + "SUM(num_girls)": 852, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007567514755321464, + "% SUM(num_girls)": 0.00177623596419175, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "MA", + "gender": "boy", + "name": "Victor", + "sum__num": 82, + "SUM(num_girls)": 0, + "SUM(num_boys)": 82, + "pct_boys": 82, + "% sum__num": 0.0000728328884901831, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00012689589429881507 + }, + { + "__timestamp": 1072915200000, + "state": "TX", + "gender": "girl", + "name": "Kaitlyn", + "sum__num": 582, + "SUM(num_girls)": 582, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005169358670888606, + "% SUM(num_girls)": 0.0012133442853985898, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "TX", + "gender": "girl", + "name": "Melissa", + "sum__num": 1709, + "SUM(num_girls)": 1709, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0015179439808502796, + "% SUM(num_girls)": 0.0035628958483611512, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "MI", + "gender": "girl", + "name": "Jordan", + "sum__num": 118, + "SUM(num_girls)": 118, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00010480830294928788, + "% SUM(num_girls)": 0.0002460045114725663, + "% pct_boys": 0 + }, + { + "__timestamp": 315532800000, + "state": "NY", + "gender": "boy", + "name": "Victor", + "sum__num": 295, + "SUM(num_girls)": 0, + "SUM(num_boys)": 295, + "pct_boys": 295, + "% sum__num": 0.0002620207573732197, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004565157172945176 + }, + { + "__timestamp": 1041379200000, + "state": "IL", + "gender": "girl", + "name": "Emily", + "sum__num": 1102, + "SUM(num_girls)": 1102, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000978802964831485, + "% SUM(num_girls)": 0.002297431963074306, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "FL", + "gender": "boy", + "name": "Elijah", + "sum__num": 412, + "SUM(num_girls)": 0, + "SUM(num_boys)": 412, + "pct_boys": 412, + "% sum__num": 0.00036594085436531025, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006375744933062416 + }, + { + "__timestamp": 631152000000, + "state": "MA", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 425, + "SUM(num_girls)": 0, + "SUM(num_boys)": 425, + "pct_boys": 425, + "% sum__num": 0.0003774875318088758, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000657692135085322 + }, + { + "__timestamp": 757382400000, + "state": "other", + "gender": "girl", + "name": "Erica", + "sum__num": 2324, + "SUM(num_girls)": 2324, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.002064190644526653, + "% SUM(num_girls)": 0.004845038005612238, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "PA", + "gender": "girl", + "name": "Kaitlyn", + "sum__num": 294, + "SUM(num_girls)": 294, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00026113255141602235, + "% SUM(num_girls)": 0.0006129264946858856, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "other", + "gender": "boy", + "name": "Christian", + "sum__num": 4274, + "SUM(num_girls)": 0, + "SUM(num_boys)": 4274, + "pct_boys": 4274, + "% sum__num": 0.003796192261061495, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0066140616125992145 + }, + { + "__timestamp": 946684800000, + "state": "FL", + "gender": "girl", + "name": "Mary", + "sum__num": 223, + "SUM(num_girls)": 223, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00019806992845501016, + "% SUM(num_girls)": 0.00046490683100323976, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "OH", + "gender": "boy", + "name": "Cody", + "sum__num": 217, + "SUM(num_girls)": 0, + "SUM(num_boys)": 217, + "pct_boys": 217, + "% sum__num": 0.00019274069271182603, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000335809866620035 + }, + { + "__timestamp": 220924800000, + "state": "MI", + "gender": "girl", + "name": "Jennifer", + "sum__num": 2759, + "SUM(num_girls)": 2759, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0024505602359075024, + "% SUM(num_girls)": 0.005751919043667886, + "% pct_boys": 0 + }, + { + "__timestamp": -94694400000, + "state": "FL", + "gender": "girl", + "name": "Leslie", + "sum__num": 169, + "SUM(num_girls)": 169, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00015010680676635297, + "% SUM(num_girls)": 0.0003523284952446077, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "TX", + "gender": "girl", + "name": "Diana", + "sum__num": 426, + "SUM(num_girls)": 426, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003783757377660732, + "% SUM(num_girls)": 0.000888117982095875, + "% pct_boys": 0 + }, + { + "__timestamp": 662688000000, + "state": "MI", + "gender": "boy", + "name": "Mark", + "sum__num": 373, + "SUM(num_girls)": 0, + "SUM(num_boys)": 373, + "pct_boys": 373, + "% sum__num": 0.00033130082203461337, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005772215679690002 + }, + { + "__timestamp": 915148800000, + "state": "FL", + "gender": "boy", + "name": "Alexander", + "sum__num": 974, + "SUM(num_girls)": 0, + "SUM(num_boys)": 974, + "pct_boys": 974, + "% sum__num": 0.0008651126023102237, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0015072756225249498 + }, + { + "__timestamp": 757382400000, + "state": "PA", + "gender": "boy", + "name": "Jesse", + "sum__num": 381, + "SUM(num_girls)": 0, + "SUM(num_boys)": 381, + "pct_boys": 381, + "% sum__num": 0.00033840646969219223, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005896016552176651 + }, + { + "__timestamp": 662688000000, + "state": "MI", + "gender": "boy", + "name": "Dylan", + "sum__num": 314, + "SUM(num_girls)": 0, + "SUM(num_boys)": 314, + "pct_boys": 314, + "% sum__num": 0.00027889667055996947, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00048591842451009673 + }, + { + "__timestamp": 757382400000, + "state": "NY", + "gender": "girl", + "name": "Jacqueline", + "sum__num": 483, + "SUM(num_girls)": 483, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004290034773263224, + "% SUM(num_girls)": 0.0010069506698410977, + "% pct_boys": 0 + }, + { + "__timestamp": 662688000000, + "state": "PA", + "gender": "girl", + "name": "Tara", + "sum__num": 176, + "SUM(num_girls)": 176, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00015632424846673447, + "% SUM(num_girls)": 0.0003669219832133193, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "PA", + "gender": "girl", + "name": "Jill", + "sum__num": 421, + "SUM(num_girls)": 421, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003739347079800864, + "% SUM(num_girls)": 0.0008776940621182239, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "IL", + "gender": "girl", + "name": "Jill", + "sum__num": 143, + "SUM(num_girls)": 143, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00012701345187922174, + "% SUM(num_girls)": 0.0002981241113608219, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "PA", + "gender": "girl", + "name": "Elizabeth", + "sum__num": 580, + "SUM(num_girls)": 580, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005151594551744659, + "% SUM(num_girls)": 0.0012091747174075294, + "% pct_boys": 0 + }, + { + "__timestamp": 410227200000, + "state": "TX", + "gender": "girl", + "name": "Amy", + "sum__num": 1200, + "SUM(num_girls)": 1200, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.001065847148636826, + "% SUM(num_girls)": 0.002501740794636268, + "% pct_boys": 0 + }, + { + "__timestamp": -126230400000, + "state": "NY", + "gender": "girl", + "name": "Michelle", + "sum__num": 2349, + "SUM(num_girls)": 2349, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.002086395793456587, + "% SUM(num_girls)": 0.0048971576055004944, + "% pct_boys": 0 + }, + { + "__timestamp": -157766400000, + "state": "NY", + "gender": "girl", + "name": "Lisa", + "sum__num": 5614, + "SUM(num_girls)": 5614, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.004986388243705951, + "% SUM(num_girls)": 0.011703977350906673, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "CA", + "gender": "boy", + "name": "Justin", + "sum__num": 2286, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2286, + "pct_boys": 2286, + "% sum__num": 0.002030438818153153, + "% SUM(num_girls)": 0, + "% pct_boys": 0.003537609931305991 + }, + { + "__timestamp": 378691200000, + "state": "MI", + "gender": "girl", + "name": "Sara", + "sum__num": 569, + "SUM(num_girls)": 569, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000505389189645295, + "% SUM(num_girls)": 0.001186242093456697, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "IL", + "gender": "boy", + "name": "Anthony", + "sum__num": 1278, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1278, + "pct_boys": 1278, + "% sum__num": 0.0011351272132982197, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0019777189379742155 + }, + { + "__timestamp": 820454400000, + "state": "OH", + "gender": "boy", + "name": "Corey", + "sum__num": 271, + "SUM(num_girls)": 0, + "SUM(num_boys)": 271, + "pct_boys": 271, + "% sum__num": 0.00024070381440048318, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000419375455548523 + }, + { + "__timestamp": 1072915200000, + "state": "NJ", + "gender": "boy", + "name": "Ian", + "sum__num": 155, + "SUM(num_girls)": 0, + "SUM(num_boys)": 155, + "pct_boys": 155, + "% sum__num": 0.00013767192336559, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00023986419044288215 + }, + { + "__timestamp": 631152000000, + "state": "PA", + "gender": "boy", + "name": "Cody", + "sum__num": 637, + "SUM(num_girls)": 0, + "SUM(num_boys)": 637, + "pct_boys": 637, + "% sum__num": 0.0005657871947347151, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009857644471749415 + }, + { + "__timestamp": 1041379200000, + "state": "MA", + "gender": "boy", + "name": "Ian", + "sum__num": 104, + "SUM(num_girls)": 0, + "SUM(num_boys)": 104, + "pct_boys": 104, + "% sum__num": 0.00009237341954852491, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0001609411342326435 + }, + { + "__timestamp": 252460800000, + "state": "FL", + "gender": "girl", + "name": "Vanessa", + "sum__num": 184, + "SUM(num_girls)": 184, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001634298961243133, + "% SUM(num_girls)": 0.00038360025517756105, + "% pct_boys": 0 + }, + { + "__timestamp": 662688000000, + "state": "TX", + "gender": "boy", + "name": "Benjamin", + "sum__num": 788, + "SUM(num_girls)": 0, + "SUM(num_boys)": 788, + "pct_boys": 788, + "% sum__num": 0.0006999062942715157, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001219438593993491 + }, + { + "__timestamp": 157766400000, + "state": "other", + "gender": "girl", + "name": "Carrie", + "sum__num": 3897, + "SUM(num_girls)": 3897, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.003461338615198092, + "% SUM(num_girls)": 0.00812440323058128, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "NY", + "gender": "boy", + "name": "Travis", + "sum__num": 563, + "SUM(num_girls)": 0, + "SUM(num_boys)": 563, + "pct_boys": 563, + "% sum__num": 0.0005000599539021108, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008712486401247913 + }, + { + "__timestamp": 441763200000, + "state": "NY", + "gender": "girl", + "name": "Theresa", + "sum__num": 243, + "SUM(num_girls)": 243, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00021583404759895725, + "% SUM(num_girls)": 0.0005066025109138442, + "% pct_boys": 0 + }, + { + "__timestamp": 1104537600000, + "state": "FL", + "gender": "boy", + "name": "John", + "sum__num": 832, + "SUM(num_girls)": 0, + "SUM(num_boys)": 832, + "pct_boys": 832, + "% sum__num": 0.0007389873563881993, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001287529073861148 + }, + { + "__timestamp": 410227200000, + "state": "MA", + "gender": "boy", + "name": "George", + "sum__num": 121, + "SUM(num_girls)": 0, + "SUM(num_boys)": 121, + "pct_boys": 121, + "% sum__num": 0.00010747292082087994, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0001872488196360564 + }, + { + "__timestamp": -94694400000, + "state": "IL", + "gender": "girl", + "name": "Sharon", + "sum__num": 695, + "SUM(num_girls)": 695, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006173031402521617, + "% SUM(num_girls)": 0.0014489248768935052, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "MA", + "gender": "boy", + "name": "Gregory", + "sum__num": 293, + "SUM(num_girls)": 0, + "SUM(num_boys)": 293, + "pct_boys": 293, + "% sum__num": 0.000260244345458825, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004534206954823514 + }, + { + "__timestamp": 946684800000, + "state": "other", + "gender": "girl", + "name": "Logan", + "sum__num": 160, + "SUM(num_girls)": 160, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001421129531515768, + "% SUM(num_girls)": 0.0003335654392848357, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "FL", + "gender": "boy", + "name": "Stephen", + "sum__num": 600, + "SUM(num_girls)": 0, + "SUM(num_boys)": 600, + "pct_boys": 600, + "% sum__num": 0.000532923574318413, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009285065436498664 + }, + { + "__timestamp": 157766400000, + "state": "PA", + "gender": "girl", + "name": "Mary", + "sum__num": 582, + "SUM(num_girls)": 582, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005169358670888606, + "% SUM(num_girls)": 0.0012133442853985898, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "NJ", + "gender": "girl", + "name": "Amy", + "sum__num": 113, + "SUM(num_girls)": 113, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00010036727316330111, + "% SUM(num_girls)": 0.0002355805914949152, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "MI", + "gender": "boy", + "name": "Alexander", + "sum__num": 857, + "SUM(num_girls)": 0, + "SUM(num_boys)": 857, + "pct_boys": 857, + "% sum__num": 0.0007611925053181332, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001326216846513226 + }, + { + "__timestamp": -63158400000, + "state": "FL", + "gender": "boy", + "name": "Frank", + "sum__num": 188, + "SUM(num_girls)": 0, + "SUM(num_boys)": 188, + "pct_boys": 188, + "% sum__num": 0.00016698271995310273, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002909320503436248 + }, + { + "__timestamp": 536457600000, + "state": "OH", + "gender": "girl", + "name": "Heather", + "sum__num": 940, + "SUM(num_girls)": 940, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008349135997655136, + "% SUM(num_girls)": 0.0019596969557984095, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "IL", + "gender": "boy", + "name": "Bryan", + "sum__num": 339, + "SUM(num_girls)": 0, + "SUM(num_boys)": 339, + "pct_boys": 339, + "% sum__num": 0.0003011018194899033, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005246061971621746 + }, + { + "__timestamp": 473385600000, + "state": "other", + "gender": "girl", + "name": "Rachel", + "sum__num": 7944, + "SUM(num_girls)": 7944, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.007055908123975788, + "% SUM(num_girls)": 0.01656152406049209, + "% pct_boys": 0 + }, + { + "__timestamp": 378691200000, + "state": "other", + "gender": "boy", + "name": "Charles", + "sum__num": 7566, + "SUM(num_girls)": 0, + "SUM(num_boys)": 7566, + "pct_boys": 7566, + "% sum__num": 0.006720166272155187, + "% SUM(num_girls)": 0, + "% pct_boys": 0.011708467515424814 + }, + { + "__timestamp": 1041379200000, + "state": "PA", + "gender": "boy", + "name": "Logan", + "sum__num": 633, + "SUM(num_girls)": 0, + "SUM(num_boys)": 633, + "pct_boys": 633, + "% sum__num": 0.0005622343709059257, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000979574403550609 + }, + { + "__timestamp": 347155200000, + "state": "IL", + "gender": "girl", + "name": "Maria", + "sum__num": 433, + "SUM(num_girls)": 433, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003845931794664547, + "% SUM(num_girls)": 0.0009027114700645866, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "IL", + "gender": "boy", + "name": "Nicholas", + "sum__num": 195, + "SUM(num_girls)": 0, + "SUM(num_boys)": 195, + "pct_boys": 195, + "% sum__num": 0.0001732001616534842, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00030176462668620656 + }, + { + "__timestamp": -31536000000, + "state": "MI", + "gender": "girl", + "name": "Sandra", + "sum__num": 496, + "SUM(num_girls)": 496, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00044055015476988804, + "% SUM(num_girls)": 0.0010340528617829906, + "% pct_boys": 0 + }, + { + "__timestamp": -126230400000, + "state": "OH", + "gender": "boy", + "name": "Timothy", + "sum__num": 2000, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2000, + "pct_boys": 2000, + "% sum__num": 0.0017764119143947098, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0030950218121662213 + }, + { + "__timestamp": 788918400000, + "state": "NY", + "gender": "girl", + "name": "Laura", + "sum__num": 398, + "SUM(num_girls)": 398, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00035350597096454726, + "% SUM(num_girls)": 0.0008297440302210288, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "TX", + "gender": "boy", + "name": "Alex", + "sum__num": 454, + "SUM(num_girls)": 0, + "SUM(num_boys)": 454, + "pct_boys": 454, + "% sum__num": 0.0004032455045675991, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007025699513617322 + }, + { + "__timestamp": 536457600000, + "state": "MA", + "gender": "girl", + "name": "Emma", + "sum__num": 83, + "SUM(num_girls)": 83, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00007372109444738045, + "% SUM(num_girls)": 0.00017303707162900851, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "NJ", + "gender": "girl", + "name": "April", + "sum__num": 79, + "SUM(num_girls)": 79, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00007016827061859104, + "% SUM(num_girls)": 0.00016469793564688763, + "% pct_boys": 0 + }, + { + "__timestamp": 788918400000, + "state": "MI", + "gender": "boy", + "name": "Bryan", + "sum__num": 133, + "SUM(num_girls)": 0, + "SUM(num_boys)": 133, + "pct_boys": 133, + "% sum__num": 0.00011813139230724821, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002058189505090537 + }, + { + "__timestamp": 567993600000, + "state": "NJ", + "gender": "girl", + "name": "Brittany", + "sum__num": 628, + "SUM(num_girls)": 628, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005577933411199389, + "% SUM(num_girls)": 0.00130924434919298, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "PA", + "gender": "boy", + "name": "James", + "sum__num": 2067, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2067, + "pct_boys": 2067, + "% sum__num": 0.0018359217135269325, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0031987050428737896 + }, + { + "__timestamp": 126230400000, + "state": "MA", + "gender": "girl", + "name": "Elizabeth", + "sum__num": 424, + "SUM(num_girls)": 424, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00037659932585167846, + "% SUM(num_girls)": 0.0008839484141048146, + "% pct_boys": 0 + }, + { + "__timestamp": 662688000000, + "state": "MA", + "gender": "boy", + "name": "Robert", + "sum__num": 697, + "SUM(num_girls)": 0, + "SUM(num_boys)": 697, + "pct_boys": 697, + "% sum__num": 0.0006190795521665564, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0010786151015399282 + }, + { + "__timestamp": 410227200000, + "state": "IL", + "gender": "boy", + "name": "Gary", + "sum__num": 138, + "SUM(num_girls)": 0, + "SUM(num_boys)": 138, + "pct_boys": 138, + "% sum__num": 0.00012257242209323498, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00021355650503946926 + }, + { + "__timestamp": 1041379200000, + "state": "IL", + "gender": "girl", + "name": "Sarah", + "sum__num": 564, + "SUM(num_girls)": 564, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005009481598593082, + "% SUM(num_girls)": 0.001175818173479046, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "NJ", + "gender": "boy", + "name": "Christopher", + "sum__num": 1224, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1224, + "pct_boys": 1224, + "% sum__num": 0.0010871640916095624, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0018941533490457274 + }, + { + "__timestamp": 473385600000, + "state": "MA", + "gender": "girl", + "name": "Katie", + "sum__num": 182, + "SUM(num_girls)": 182, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001616534842099186, + "% SUM(num_girls)": 0.0003794306871865006, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "MA", + "gender": "girl", + "name": "Theresa", + "sum__num": 188, + "SUM(num_girls)": 188, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00016698271995310273, + "% SUM(num_girls)": 0.00039193939115968196, + "% pct_boys": 0 + }, + { + "__timestamp": 1041379200000, + "state": "CA", + "gender": "boy", + "name": "Ian", + "sum__num": 759, + "SUM(num_girls)": 0, + "SUM(num_boys)": 759, + "pct_boys": 759, + "% sum__num": 0.0006741483215127924, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001174560777717081 + }, + { + "__timestamp": -157766400000, + "state": "other", + "gender": "boy", + "name": "Chad", + "sum__num": 189, + "SUM(num_girls)": 0, + "SUM(num_boys)": 189, + "pct_boys": 189, + "% sum__num": 0.00016787092591030007, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002924795612497079 + }, + { + "__timestamp": 252460800000, + "state": "IL", + "gender": "boy", + "name": "Gregory", + "sum__num": 504, + "SUM(num_girls)": 0, + "SUM(num_boys)": 504, + "pct_boys": 504, + "% sum__num": 0.0004476558024274669, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007799454966658878 + }, + { + "__timestamp": 599616000000, + "state": "TX", + "gender": "girl", + "name": "Kelsey", + "sum__num": 565, + "SUM(num_girls)": 565, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005018363658165055, + "% SUM(num_girls)": 0.001177902957474576, + "% pct_boys": 0 + }, + { + "__timestamp": 378691200000, + "state": "MA", + "gender": "boy", + "name": "Jared", + "sum__num": 143, + "SUM(num_girls)": 0, + "SUM(num_boys)": 143, + "pct_boys": 143, + "% sum__num": 0.00012701345187922174, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00022129405956988483 + }, + { + "__timestamp": 978307200000, + "state": "FL", + "gender": "girl", + "name": "Brooke", + "sum__num": 288, + "SUM(num_girls)": 288, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002558033156728382, + "% SUM(num_girls)": 0.0006004177907127043, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "NJ", + "gender": "girl", + "name": "Donna", + "sum__num": 101, + "SUM(num_girls)": 101, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00008970880167693285, + "% SUM(num_girls)": 0.00021056318354855253, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "other", + "gender": "boy", + "name": "Samuel", + "sum__num": 7066, + "SUM(num_girls)": 0, + "SUM(num_boys)": 7066, + "pct_boys": 7066, + "% sum__num": 0.00627606329355651, + "% SUM(num_girls)": 0, + "% pct_boys": 0.01093471206238326 + }, + { + "__timestamp": 283996800000, + "state": "other", + "gender": "girl", + "name": "Angel", + "sum__num": 225, + "SUM(num_girls)": 225, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00019984634036940486, + "% SUM(num_girls)": 0.0004690763989943002, + "% pct_boys": 0 + }, + { + "__timestamp": 883612800000, + "state": "MI", + "gender": "girl", + "name": "Julia", + "sum__num": 309, + "SUM(num_girls)": 309, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00027445564077398265, + "% SUM(num_girls)": 0.0006441982546188389, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "PA", + "gender": "girl", + "name": "Victoria", + "sum__num": 609, + "SUM(num_girls)": 609, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005409174279331891, + "% SUM(num_girls)": 0.001269633453277906, + "% pct_boys": 0 + }, + { + "__timestamp": -157766400000, + "state": "OH", + "gender": "boy", + "name": "James", + "sum__num": 3883, + "SUM(num_girls)": 0, + "SUM(num_boys)": 3883, + "pct_boys": 3883, + "% sum__num": 0.003448903731797329, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0060089848483207186 + }, + { + "__timestamp": 1072915200000, + "state": "MA", + "gender": "girl", + "name": "Lauren", + "sum__num": 235, + "SUM(num_girls)": 235, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002087283999413784, + "% SUM(num_girls)": 0.0004899242389496024, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "NY", + "gender": "boy", + "name": "Alex", + "sum__num": 485, + "SUM(num_girls)": 0, + "SUM(num_boys)": 485, + "pct_boys": 485, + "% sum__num": 0.00043077988924071714, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007505427894503086 + }, + { + "__timestamp": 820454400000, + "state": "OH", + "gender": "boy", + "name": "Luke", + "sum__num": 255, + "SUM(num_girls)": 0, + "SUM(num_boys)": 255, + "pct_boys": 255, + "% sum__num": 0.00022649251908532552, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003946152810511932 + }, + { + "__timestamp": 883612800000, + "state": "OH", + "gender": "boy", + "name": "Jeremy", + "sum__num": 189, + "SUM(num_girls)": 0, + "SUM(num_boys)": 189, + "pct_boys": 189, + "% sum__num": 0.00016787092591030007, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002924795612497079 + }, + { + "__timestamp": 94694400000, + "state": "FL", + "gender": "boy", + "name": "Benjamin", + "sum__num": 165, + "SUM(num_girls)": 0, + "SUM(num_boys)": 165, + "pct_boys": 165, + "% sum__num": 0.00014655398293756357, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00025533929950371327 + }, + { + "__timestamp": 441763200000, + "state": "MA", + "gender": "girl", + "name": "Tracy", + "sum__num": 72, + "SUM(num_girls)": 72, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00006395082891820955, + "% SUM(num_girls)": 0.00015010444767817608, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "MA", + "gender": "boy", + "name": "Mark", + "sum__num": 448, + "SUM(num_girls)": 0, + "SUM(num_boys)": 448, + "pct_boys": 448, + "% sum__num": 0.000397916268824415, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006932848859252335 + }, + { + "__timestamp": 915148800000, + "state": "OH", + "gender": "boy", + "name": "Hunter", + "sum__num": 530, + "SUM(num_girls)": 0, + "SUM(num_boys)": 530, + "pct_boys": 530, + "% sum__num": 0.0004707491573145981, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008201807802240487 + }, + { + "__timestamp": 283996800000, + "state": "FL", + "gender": "girl", + "name": "Amy", + "sum__num": 586, + "SUM(num_girls)": 586, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00052048869091765, + "% SUM(num_girls)": 0.0012216834213807108, + "% pct_boys": 0 + }, + { + "__timestamp": 1199145600000, + "state": "MA", + "gender": "girl", + "name": "Jessica", + "sum__num": 89, + "SUM(num_girls)": 89, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00007905033019056458, + "% SUM(num_girls)": 0.00018554577560218985, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "other", + "gender": "boy", + "name": "Vincent", + "sum__num": 172, + "SUM(num_girls)": 0, + "SUM(num_boys)": 172, + "pct_boys": 172, + "% sum__num": 0.00015277142463794504, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000266171875846295 + }, + { + "__timestamp": 283996800000, + "state": "NJ", + "gender": "boy", + "name": "Robert", + "sum__num": 1148, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1148, + "pct_boys": 1148, + "% sum__num": 0.0010196604388625634, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001776542520183411 + }, + { + "__timestamp": 567993600000, + "state": "other", + "gender": "boy", + "name": "Jonathan", + "sum__num": 10297, + "SUM(num_girls)": 0, + "SUM(num_boys)": 10297, + "pct_boys": 10297, + "% sum__num": 0.009145856741261164, + "% SUM(num_girls)": 0, + "% pct_boys": 0.01593471979993779 + }, + { + "__timestamp": 915148800000, + "state": "MA", + "gender": "boy", + "name": "Noah", + "sum__num": 293, + "SUM(num_girls)": 0, + "SUM(num_boys)": 293, + "pct_boys": 293, + "% sum__num": 0.000260244345458825, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004534206954823514 + }, + { + "__timestamp": 347155200000, + "state": "PA", + "gender": "boy", + "name": "Timothy", + "sum__num": 1073, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1073, + "pct_boys": 1073, + "% sum__num": 0.0009530449920727618, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0016604792022271778 + }, + { + "__timestamp": 978307200000, + "state": "IL", + "gender": "boy", + "name": "Alexander", + "sum__num": 944, + "SUM(num_girls)": 0, + "SUM(num_boys)": 944, + "pct_boys": 944, + "% sum__num": 0.000838466423594303, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014608502953424565 + }, + { + "__timestamp": 189302400000, + "state": "IL", + "gender": "boy", + "name": "Jose", + "sum__num": 447, + "SUM(num_girls)": 0, + "SUM(num_boys)": 447, + "pct_boys": 447, + "% sum__num": 0.0003970280628672176, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006917373750191505 + }, + { + "__timestamp": 599616000000, + "state": "other", + "gender": "boy", + "name": "Andrea", + "sum__num": 40, + "SUM(num_girls)": 0, + "SUM(num_boys)": 40, + "pct_boys": 40, + "% sum__num": 0.0000355282382878942, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00006190043624332442 + }, + { + "__timestamp": -63158400000, + "state": "MI", + "gender": "boy", + "name": "Gary", + "sum__num": 567, + "SUM(num_girls)": 0, + "SUM(num_boys)": 567, + "pct_boys": 567, + "% sum__num": 0.0005036127777309003, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008774386837491238 + }, + { + "__timestamp": 1009843200000, + "state": "FL", + "gender": "boy", + "name": "Kyle", + "sum__num": 509, + "SUM(num_girls)": 0, + "SUM(num_boys)": 509, + "pct_boys": 509, + "% sum__num": 0.00045209683221345367, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007876830511963033 + }, + { + "__timestamp": 252460800000, + "state": "IL", + "gender": "girl", + "name": "Natalie", + "sum__num": 201, + "SUM(num_girls)": 201, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00017852939739666833, + "% SUM(num_girls)": 0.0004190415831015748, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "other", + "gender": "girl", + "name": "Jessica", + "sum__num": 25802, + "SUM(num_girls)": 25802, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.022917490107606152, + "% SUM(num_girls)": 0.05379159665267082, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "CA", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 1685, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1685, + "pct_boys": 1685, + "% sum__num": 0.001496627037877543, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0026075558767500416 + }, + { + "__timestamp": 283996800000, + "state": "CA", + "gender": "boy", + "name": "Charles", + "sum__num": 1006, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1006, + "pct_boys": 1006, + "% sum__num": 0.0008935351929405391, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0015567959715196093 + }, + { + "__timestamp": 410227200000, + "state": "FL", + "gender": "boy", + "name": "Charles", + "sum__num": 657, + "SUM(num_girls)": 0, + "SUM(num_boys)": 657, + "pct_boys": 657, + "% sum__num": 0.0005835513138786622, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0010167146652966038 + }, + { + "__timestamp": 1136073600000, + "state": "NY", + "gender": "girl", + "name": "Kaitlyn", + "sum__num": 352, + "SUM(num_girls)": 352, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00031264849693346894, + "% SUM(num_girls)": 0.0007338439664266386, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "OH", + "gender": "boy", + "name": "Jeremy", + "sum__num": 1166, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1166, + "pct_boys": 1166, + "% sum__num": 0.0010356481460921157, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001804397716492907 + }, + { + "__timestamp": 94694400000, + "state": "MI", + "gender": "girl", + "name": "Rebecca", + "sum__num": 796, + "SUM(num_girls)": 796, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007070119419290945, + "% SUM(num_girls)": 0.0016594880604420576, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "NY", + "gender": "girl", + "name": "Andrea", + "sum__num": 525, + "SUM(num_girls)": 525, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00046630812752861134, + "% SUM(num_girls)": 0.0010945115976533672, + "% pct_boys": 0 + }, + { + "__timestamp": -157766400000, + "state": "MI", + "gender": "boy", + "name": "Jack", + "sum__num": 178, + "SUM(num_girls)": 0, + "SUM(num_boys)": 178, + "pct_boys": 178, + "% sum__num": 0.00015810066038112917, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00027545694128279367 + }, + { + "__timestamp": -31536000000, + "state": "MI", + "gender": "girl", + "name": "Kathryn", + "sum__num": 189, + "SUM(num_girls)": 189, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00016787092591030007, + "% SUM(num_girls)": 0.00039402417515521215, + "% pct_boys": 0 + }, + { + "__timestamp": -126230400000, + "state": "NY", + "gender": "boy", + "name": "Brian", + "sum__num": 2056, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2056, + "pct_boys": 2056, + "% sum__num": 0.0018261514479977618, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0031816824229068752 + }, + { + "__timestamp": 757382400000, + "state": "TX", + "gender": "boy", + "name": "Christian", + "sum__num": 1233, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1233, + "pct_boys": 1233, + "% sum__num": 0.0010951579452243387, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0019080809472004753 + }, + { + "__timestamp": 662688000000, + "state": "OH", + "gender": "boy", + "name": "Bradley", + "sum__num": 369, + "SUM(num_girls)": 0, + "SUM(num_boys)": 369, + "pct_boys": 369, + "% sum__num": 0.00032774799820582397, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005710315243446678 + }, + { + "__timestamp": 757382400000, + "state": "IL", + "gender": "girl", + "name": "Brittany", + "sum__num": 813, + "SUM(num_girls)": 813, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007221114432014496, + "% SUM(num_girls)": 0.0016949293883660715, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "MA", + "gender": "boy", + "name": "Sean", + "sum__num": 418, + "SUM(num_girls)": 0, + "SUM(num_boys)": 418, + "pct_boys": 418, + "% sum__num": 0.0003712700901084944, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006468595587427403 + }, + { + "__timestamp": -157766400000, + "state": "NY", + "gender": "boy", + "name": "Kenneth", + "sum__num": 1980, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1980, + "pct_boys": 1980, + "% sum__num": 0.0017586477952507627, + "% SUM(num_girls)": 0, + "% pct_boys": 0.003064071594044559 + }, + { + "__timestamp": 283996800000, + "state": "NJ", + "gender": "boy", + "name": "Steven", + "sum__num": 530, + "SUM(num_girls)": 0, + "SUM(num_boys)": 530, + "pct_boys": 530, + "% sum__num": 0.0004707491573145981, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008201807802240487 + }, + { + "__timestamp": 473385600000, + "state": "CA", + "gender": "girl", + "name": "Brenda", + "sum__num": 684, + "SUM(num_girls)": 684, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006075328747229908, + "% SUM(num_girls)": 0.0014259922529426725, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "NY", + "gender": "boy", + "name": "Kevin", + "sum__num": 1559, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1559, + "pct_boys": 1559, + "% sum__num": 0.0013847130872706762, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0024125695025835696 + }, + { + "__timestamp": 252460800000, + "state": "TX", + "gender": "boy", + "name": "Kevin", + "sum__num": 1114, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1114, + "pct_boys": 1114, + "% sum__num": 0.0009894614363178534, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0017239271493765852 + }, + { + "__timestamp": 1167609600000, + "state": "MI", + "gender": "boy", + "name": "Isaiah", + "sum__num": 242, + "SUM(num_girls)": 0, + "SUM(num_boys)": 242, + "pct_boys": 242, + "% sum__num": 0.0002149458416417599, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003744976392721128 + }, + { + "__timestamp": 63072000000, + "state": "other", + "gender": "girl", + "name": "Amber", + "sum__num": 463, + "SUM(num_girls)": 463, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00041123935818237535, + "% SUM(num_girls)": 0.0009652549899304933, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "OH", + "gender": "girl", + "name": "Theresa", + "sum__num": 145, + "SUM(num_girls)": 145, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00012878986379361647, + "% SUM(num_girls)": 0.00030229367935188234, + "% pct_boys": 0 + }, + { + "__timestamp": 662688000000, + "state": "MA", + "gender": "boy", + "name": "Anthony", + "sum__num": 602, + "SUM(num_girls)": 0, + "SUM(num_boys)": 602, + "pct_boys": 602, + "% sum__num": 0.0005346999862328077, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009316015654620326 + }, + { + "__timestamp": 662688000000, + "state": "CA", + "gender": "boy", + "name": "Justin", + "sum__num": 2611, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2611, + "pct_boys": 2611, + "% sum__num": 0.0023191057542422937, + "% SUM(num_girls)": 0, + "% pct_boys": 0.004040550975783002 + }, + { + "__timestamp": 820454400000, + "state": "PA", + "gender": "girl", + "name": "Morgan", + "sum__num": 510, + "SUM(num_girls)": 510, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00045298503817065103, + "% SUM(num_girls)": 0.0010632398377204138, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "TX", + "gender": "boy", + "name": "Edward", + "sum__num": 437, + "SUM(num_girls)": 0, + "SUM(num_boys)": 437, + "pct_boys": 437, + "% sum__num": 0.0003881460032952441, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006762622659583193 + }, + { + "__timestamp": 63072000000, + "state": "NJ", + "gender": "boy", + "name": "Joseph", + "sum__num": 1145, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1145, + "pct_boys": 1145, + "% sum__num": 0.0010169958209909713, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0017718999874651617 + }, + { + "__timestamp": 1104537600000, + "state": "other", + "gender": "boy", + "name": "Elijah", + "sum__num": 6253, + "SUM(num_girls)": 0, + "SUM(num_boys)": 6253, + "pct_boys": 6253, + "% sum__num": 0.00555395185035506, + "% SUM(num_girls)": 0, + "% pct_boys": 0.009676585695737691 + }, + { + "__timestamp": 473385600000, + "state": "PA", + "gender": "boy", + "name": "Vincent", + "sum__num": 188, + "SUM(num_girls)": 0, + "SUM(num_boys)": 188, + "pct_boys": 188, + "% sum__num": 0.00016698271995310273, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002909320503436248 + }, + { + "__timestamp": 63072000000, + "state": "CA", + "gender": "boy", + "name": "Andrew", + "sum__num": 943, + "SUM(num_girls)": 0, + "SUM(num_boys)": 943, + "pct_boys": 943, + "% sum__num": 0.0008375782176371057, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014593027844363733 + }, + { + "__timestamp": 599616000000, + "state": "MA", + "gender": "boy", + "name": "Alexander", + "sum__num": 558, + "SUM(num_girls)": 0, + "SUM(num_boys)": 558, + "pct_boys": 558, + "% sum__num": 0.0004956189241161241, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008635110855943757 + }, + { + "__timestamp": 410227200000, + "state": "other", + "gender": "girl", + "name": "Brooke", + "sum__num": 1213, + "SUM(num_girls)": 1213, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010773938260803914, + "% SUM(num_girls)": 0.0025288429865781606, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "FL", + "gender": "boy", + "name": "Samuel", + "sum__num": 556, + "SUM(num_girls)": 0, + "SUM(num_boys)": 556, + "pct_boys": 556, + "% sum__num": 0.0004938425122017294, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008604160637822095 + }, + { + "__timestamp": 63072000000, + "state": "IL", + "gender": "girl", + "name": "Teresa", + "sum__num": 301, + "SUM(num_girls)": 301, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00026734999311640384, + "% SUM(num_girls)": 0.0006275199826545971, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "other", + "gender": "girl", + "name": "Stacy", + "sum__num": 4032, + "SUM(num_girls)": 4032, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0035812464194197352, + "% SUM(num_girls)": 0.00840584906997786, + "% pct_boys": 0 + }, + { + "__timestamp": 94694400000, + "state": "OH", + "gender": "boy", + "name": "Dennis", + "sum__num": 275, + "SUM(num_girls)": 0, + "SUM(num_boys)": 275, + "pct_boys": 275, + "% sum__num": 0.0002442566382292726, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00042556549917285543 + }, + { + "__timestamp": 410227200000, + "state": "NJ", + "gender": "boy", + "name": "Richard", + "sum__num": 524, + "SUM(num_girls)": 0, + "SUM(num_boys)": 524, + "pct_boys": 524, + "% sum__num": 0.00046541992157141397, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00081089571478755 + }, + { + "__timestamp": 0, + "state": "FL", + "gender": "girl", + "name": "Melanie", + "sum__num": 129, + "SUM(num_girls)": 129, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00011457856847845879, + "% SUM(num_girls)": 0.0002689371354233988, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "NJ", + "gender": "boy", + "name": "Frank", + "sum__num": 140, + "SUM(num_girls)": 0, + "SUM(num_boys)": 140, + "pct_boys": 140, + "% sum__num": 0.00012434883400762968, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00021665152685163548 + }, + { + "__timestamp": 441763200000, + "state": "IL", + "gender": "girl", + "name": "Cassandra", + "sum__num": 229, + "SUM(num_girls)": 229, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002033991641981943, + "% SUM(num_girls)": 0.0004774155349764211, + "% pct_boys": 0 + }, + { + "__timestamp": 915148800000, + "state": "MI", + "gender": "boy", + "name": "Samuel", + "sum__num": 429, + "SUM(num_girls)": 0, + "SUM(num_boys)": 429, + "pct_boys": 429, + "% sum__num": 0.0003810403556376653, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006638821787096545 + }, + { + "__timestamp": 662688000000, + "state": "OH", + "gender": "girl", + "name": "Brittany", + "sum__num": 1641, + "SUM(num_girls)": 1641, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0014575459757608595, + "% SUM(num_girls)": 0.003421130536665096, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "MA", + "gender": "boy", + "name": "Jonathan", + "sum__num": 708, + "SUM(num_girls)": 0, + "SUM(num_boys)": 708, + "pct_boys": 708, + "% sum__num": 0.0006288498176957273, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0010956377215068423 + }, + { + "__timestamp": 788918400000, + "state": "PA", + "gender": "boy", + "name": "Brian", + "sum__num": 549, + "SUM(num_girls)": 0, + "SUM(num_boys)": 549, + "pct_boys": 549, + "% sum__num": 0.00048762507050134786, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008495834874396277 + }, + { + "__timestamp": 915148800000, + "state": "FL", + "gender": "boy", + "name": "Austin", + "sum__num": 1149, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1149, + "pct_boys": 1149, + "% sum__num": 0.0010205486448197608, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001778090031089494 + }, + { + "__timestamp": 504921600000, + "state": "MA", + "gender": "boy", + "name": "Charles", + "sum__num": 219, + "SUM(num_girls)": 0, + "SUM(num_boys)": 219, + "pct_boys": 219, + "% sum__num": 0.00019451710462622073, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00033890488843220124 + }, + { + "__timestamp": 63072000000, + "state": "PA", + "gender": "girl", + "name": "Crystal", + "sum__num": 255, + "SUM(num_girls)": 255, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00022649251908532552, + "% SUM(num_girls)": 0.0005316199188602069, + "% pct_boys": 0 + }, + { + "__timestamp": 599616000000, + "state": "NJ", + "gender": "girl", + "name": "Christina", + "sum__num": 562, + "SUM(num_girls)": 562, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004991717479449134, + "% SUM(num_girls)": 0.0011716486054879854, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "FL", + "gender": "girl", + "name": "Cheryl", + "sum__num": 201, + "SUM(num_girls)": 201, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00017852939739666833, + "% SUM(num_girls)": 0.0004190415831015748, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "MI", + "gender": "boy", + "name": "Jordan", + "sum__num": 803, + "SUM(num_girls)": 0, + "SUM(num_boys)": 803, + "pct_boys": 803, + "% sum__num": 0.000713229383629476, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012426512575847378 + }, + { + "__timestamp": 252460800000, + "state": "PA", + "gender": "girl", + "name": "Julie", + "sum__num": 485, + "SUM(num_girls)": 485, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00043077988924071714, + "% SUM(num_girls)": 0.0010111202378321582, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "OH", + "gender": "girl", + "name": "Sophia", + "sum__num": 387, + "SUM(num_girls)": 387, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00034373570543537636, + "% SUM(num_girls)": 0.0008068114062701964, + "% pct_boys": 0 + }, + { + "__timestamp": -157766400000, + "state": "MA", + "gender": "girl", + "name": "Jacqueline", + "sum__num": 267, + "SUM(num_girls)": 267, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00023715099057169375, + "% SUM(num_girls)": 0.0005566373268065696, + "% pct_boys": 0 + }, + { + "__timestamp": -63158400000, + "state": "CA", + "gender": "girl", + "name": "Donna", + "sum__num": 756, + "SUM(num_girls)": 756, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006714837036412003, + "% SUM(num_girls)": 0.0015760967006208486, + "% pct_boys": 0 + }, + { + "__timestamp": 1104537600000, + "state": "PA", + "gender": "girl", + "name": "Grace", + "sum__num": 577, + "SUM(num_girls)": 577, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005124948373028738, + "% SUM(num_girls)": 0.0012029203654209386, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "MA", + "gender": "girl", + "name": "Donna", + "sum__num": 101, + "SUM(num_girls)": 101, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00008970880167693285, + "% SUM(num_girls)": 0.00021056318354855253, + "% pct_boys": 0 + }, + { + "__timestamp": 946684800000, + "state": "FL", + "gender": "girl", + "name": "Vanessa", + "sum__num": 259, + "SUM(num_girls)": 259, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00023004534291411492, + "% SUM(num_girls)": 0.0005399590548423277, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "FL", + "gender": "boy", + "name": "Joseph", + "sum__num": 1044, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1044, + "pct_boys": 1044, + "% sum__num": 0.0009272870193140385, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0016156013859507676 + }, + { + "__timestamp": 915148800000, + "state": "NY", + "gender": "boy", + "name": "Andrew", + "sum__num": 1438, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1438, + "pct_boys": 1438, + "% sum__num": 0.0012772401664497965, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002225320682947513 + }, + { + "__timestamp": 1104537600000, + "state": "FL", + "gender": "boy", + "name": "Robert", + "sum__num": 609, + "SUM(num_girls)": 0, + "SUM(num_boys)": 609, + "pct_boys": 609, + "% sum__num": 0.0005409174279331891, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009424341418046144 + }, + { + "__timestamp": 599616000000, + "state": "CA", + "gender": "girl", + "name": "Amber", + "sum__num": 1488, + "SUM(num_girls)": 1488, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.001321650464309664, + "% SUM(num_girls)": 0.003102158585348972, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "other", + "gender": "girl", + "name": "Julie", + "sum__num": 182, + "SUM(num_girls)": 182, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001616534842099186, + "% SUM(num_girls)": 0.0003794306871865006, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "FL", + "gender": "boy", + "name": "Charles", + "sum__num": 686, + "SUM(num_girls)": 0, + "SUM(num_boys)": 686, + "pct_boys": 686, + "% sum__num": 0.0006093092866373855, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001061592481573014 + }, + { + "__timestamp": 1136073600000, + "state": "CA", + "gender": "girl", + "name": "Destiny", + "sum__num": 977, + "SUM(num_girls)": 977, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008677772201818157, + "% SUM(num_girls)": 0.002036833963633028, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "CA", + "gender": "girl", + "name": "Natalie", + "sum__num": 502, + "SUM(num_girls)": 502, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004458793905130722, + "% SUM(num_girls)": 0.001046561565756172, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "NJ", + "gender": "girl", + "name": "Jill", + "sum__num": 172, + "SUM(num_girls)": 172, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00015277142463794504, + "% SUM(num_girls)": 0.00035858284723119837, + "% pct_boys": 0 + }, + { + "__timestamp": 599616000000, + "state": "MA", + "gender": "girl", + "name": "Lauren", + "sum__num": 619, + "SUM(num_girls)": 619, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005497994875051627, + "% SUM(num_girls)": 0.0012904812932332081, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "OH", + "gender": "girl", + "name": "Barbara", + "sum__num": 190, + "SUM(num_girls)": 190, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00016875913186749743, + "% SUM(num_girls)": 0.0003961089591507424, + "% pct_boys": 0 + }, + { + "__timestamp": 441763200000, + "state": "NY", + "gender": "boy", + "name": "Christopher", + "sum__num": 4057, + "SUM(num_girls)": 0, + "SUM(num_boys)": 4057, + "pct_boys": 4057, + "% sum__num": 0.003603451568349669, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00627825174597918 + }, + { + "__timestamp": 852076800000, + "state": "TX", + "gender": "girl", + "name": "Leslie", + "sum__num": 513, + "SUM(num_girls)": 513, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004556496560422431, + "% SUM(num_girls)": 0.0010694941897070045, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "PA", + "gender": "girl", + "name": "Jennifer", + "sum__num": 394, + "SUM(num_girls)": 394, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00034995314713575786, + "% SUM(num_girls)": 0.0008214048942389079, + "% pct_boys": 0 + }, + { + "__timestamp": 662688000000, + "state": "OH", + "gender": "boy", + "name": "Phillip", + "sum__num": 171, + "SUM(num_girls)": 0, + "SUM(num_boys)": 171, + "pct_boys": 171, + "% sum__num": 0.0001518832186807477, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002646243649402119 + }, + { + "__timestamp": 504921600000, + "state": "MI", + "gender": "girl", + "name": "Cassandra", + "sum__num": 187, + "SUM(num_girls)": 187, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00016609451399590537, + "% SUM(num_girls)": 0.0003898546071641517, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "MI", + "gender": "girl", + "name": "Andrea", + "sum__num": 393, + "SUM(num_girls)": 393, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003490649411785605, + "% SUM(num_girls)": 0.0008193201102433777, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "OH", + "gender": "boy", + "name": "Kevin", + "sum__num": 924, + "SUM(num_girls)": 0, + "SUM(num_boys)": 924, + "pct_boys": 924, + "% sum__num": 0.000820702304450356, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014299000772207942 + }, + { + "__timestamp": 157766400000, + "state": "MA", + "gender": "boy", + "name": "Samuel", + "sum__num": 69, + "SUM(num_girls)": 0, + "SUM(num_boys)": 69, + "pct_boys": 69, + "% sum__num": 0.00006128621104661749, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00010677825251973463 + }, + { + "__timestamp": 0, + "state": "CA", + "gender": "boy", + "name": "Ronald", + "sum__num": 1181, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1181, + "pct_boys": 1181, + "% sum__num": 0.0010489712354500762, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0018276103800841537 + }, + { + "__timestamp": 1104537600000, + "state": "other", + "gender": "boy", + "name": "Luke", + "sum__num": 4823, + "SUM(num_girls)": 0, + "SUM(num_boys)": 4823, + "pct_boys": 4823, + "% sum__num": 0.004283817331562843, + "% SUM(num_girls)": 0, + "% pct_boys": 0.007463645100038842 + }, + { + "__timestamp": 631152000000, + "state": "TX", + "gender": "boy", + "name": "Adrian", + "sum__num": 704, + "SUM(num_girls)": 0, + "SUM(num_boys)": 704, + "pct_boys": 704, + "% sum__num": 0.0006252969938669379, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0010894476778825098 + }, + { + "__timestamp": 662688000000, + "state": "NJ", + "gender": "girl", + "name": "Jasmine", + "sum__num": 299, + "SUM(num_girls)": 299, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002655735812020091, + "% SUM(num_girls)": 0.0006233504146635367, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "TX", + "gender": "girl", + "name": "Jessica", + "sum__num": 876, + "SUM(num_girls)": 876, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007780684185048829, + "% SUM(num_girls)": 0.0018262707800844754, + "% pct_boys": 0 + }, + { + "__timestamp": 788918400000, + "state": "other", + "gender": "boy", + "name": "Jonathan", + "sum__num": 7071, + "SUM(num_girls)": 0, + "SUM(num_boys)": 7071, + "pct_boys": 7071, + "% sum__num": 0.006280504323342497, + "% SUM(num_girls)": 0, + "% pct_boys": 0.010942449616913675 + }, + { + "__timestamp": 567993600000, + "state": "TX", + "gender": "girl", + "name": "Samantha", + "sum__num": 1325, + "SUM(num_girls)": 1325, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0011768728932864954, + "% SUM(num_girls)": 0.0027623387940775455, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "NY", + "gender": "boy", + "name": "Noah", + "sum__num": 670, + "SUM(num_girls)": 0, + "SUM(num_boys)": 670, + "pct_boys": 670, + "% sum__num": 0.0005950979913222278, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001036832307075684 + }, + { + "__timestamp": -63158400000, + "state": "NY", + "gender": "girl", + "name": "Nancy", + "sum__num": 1162, + "SUM(num_girls)": 1162, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010320953222633265, + "% SUM(num_girls)": 0.002422519002806119, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "FL", + "gender": "boy", + "name": "Shane", + "sum__num": 237, + "SUM(num_girls)": 0, + "SUM(num_boys)": 237, + "pct_boys": 237, + "% sum__num": 0.00021050481185577312, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003667600847416972 + }, + { + "__timestamp": 31536000000, + "state": "NJ", + "gender": "boy", + "name": "Frank", + "sum__num": 386, + "SUM(num_girls)": 0, + "SUM(num_boys)": 386, + "pct_boys": 386, + "% sum__num": 0.000342847499478179, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005973392097480807 + }, + { + "__timestamp": 126230400000, + "state": "FL", + "gender": "boy", + "name": "George", + "sum__num": 251, + "SUM(num_girls)": 0, + "SUM(num_boys)": 251, + "pct_boys": 251, + "% sum__num": 0.0002229396952565361, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00038842523742686075 + }, + { + "__timestamp": 94694400000, + "state": "OH", + "gender": "girl", + "name": "April", + "sum__num": 427, + "SUM(num_girls)": 427, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00037926394372327055, + "% SUM(num_girls)": 0.0008902027660914053, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "NJ", + "gender": "boy", + "name": "Frank", + "sum__num": 237, + "SUM(num_girls)": 0, + "SUM(num_boys)": 237, + "pct_boys": 237, + "% sum__num": 0.00021050481185577312, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003667600847416972 + }, + { + "__timestamp": 473385600000, + "state": "FL", + "gender": "boy", + "name": "Stephen", + "sum__num": 547, + "SUM(num_girls)": 0, + "SUM(num_boys)": 547, + "pct_boys": 547, + "% sum__num": 0.00048584865858695314, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008464884656274616 + }, + { + "__timestamp": 347155200000, + "state": "other", + "gender": "girl", + "name": "Christina", + "sum__num": 6040, + "SUM(num_girls)": 6040, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.005364763981472024, + "% SUM(num_girls)": 0.012592095333002547, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "TX", + "gender": "boy", + "name": "Jose", + "sum__num": 2038, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2038, + "pct_boys": 2038, + "% sum__num": 0.0018101637407682094, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0031538272265973794 + }, + { + "__timestamp": -157766400000, + "state": "IL", + "gender": "boy", + "name": "Stephen", + "sum__num": 624, + "SUM(num_girls)": 0, + "SUM(num_boys)": 624, + "pct_boys": 624, + "% sum__num": 0.0005542405172911495, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000965646805395861 + }, + { + "__timestamp": 820454400000, + "state": "PA", + "gender": "girl", + "name": "Jasmine", + "sum__num": 217, + "SUM(num_girls)": 217, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00019274069271182603, + "% SUM(num_girls)": 0.0004523981270300584, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "PA", + "gender": "boy", + "name": "Aaron", + "sum__num": 205, + "SUM(num_girls)": 0, + "SUM(num_boys)": 205, + "pct_boys": 205, + "% sum__num": 0.00018208222122545776, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00031723973574703765 + }, + { + "__timestamp": 189302400000, + "state": "IL", + "gender": "boy", + "name": "Sean", + "sum__num": 415, + "SUM(num_girls)": 0, + "SUM(num_boys)": 415, + "pct_boys": 415, + "% sum__num": 0.0003686054722369023, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006422170260244909 + }, + { + "__timestamp": 0, + "state": "FL", + "gender": "girl", + "name": "Teresa", + "sum__num": 335, + "SUM(num_girls)": 335, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002975489956611139, + "% SUM(num_girls)": 0.0006984026385026248, + "% pct_boys": 0 + }, + { + "__timestamp": 915148800000, + "state": "TX", + "gender": "girl", + "name": "Natalie", + "sum__num": 738, + "SUM(num_girls)": 738, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006554959964116479, + "% SUM(num_girls)": 0.0015385705887013047, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "PA", + "gender": "boy", + "name": "Raymond", + "sum__num": 279, + "SUM(num_girls)": 0, + "SUM(num_boys)": 279, + "pct_boys": 279, + "% sum__num": 0.00024780946205806204, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00043175554279718787 + }, + { + "__timestamp": 189302400000, + "state": "MI", + "gender": "boy", + "name": "Jonathan", + "sum__num": 351, + "SUM(num_girls)": 0, + "SUM(num_boys)": 351, + "pct_boys": 351, + "% sum__num": 0.00031176029097627157, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005431763280351719 + }, + { + "__timestamp": 0, + "state": "IL", + "gender": "girl", + "name": "Tina", + "sum__num": 740, + "SUM(num_girls)": 740, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006572724083260427, + "% SUM(num_girls)": 0.0015427401566923652, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "IL", + "gender": "girl", + "name": "Julie", + "sum__num": 1201, + "SUM(num_girls)": 1201, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010667353545940233, + "% SUM(num_girls)": 0.0025038255786317977, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "other", + "gender": "boy", + "name": "Jared", + "sum__num": 1836, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1836, + "pct_boys": 1836, + "% sum__num": 0.0016307461374143436, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0028412300235685912 + }, + { + "__timestamp": 504921600000, + "state": "other", + "gender": "girl", + "name": "Allison", + "sum__num": 3566, + "SUM(num_girls)": 3566, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.003167342443365768, + "% SUM(num_girls)": 0.007434339728060776, + "% pct_boys": 0 + }, + { + "__timestamp": 915148800000, + "state": "NY", + "gender": "boy", + "name": "Matthew", + "sum__num": 2739, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2739, + "pct_boys": 2739, + "% sum__num": 0.002432796116763555, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00423863237176164 + }, + { + "__timestamp": 725846400000, + "state": "NJ", + "gender": "boy", + "name": "Richard", + "sum__num": 357, + "SUM(num_girls)": 0, + "SUM(num_boys)": 357, + "pct_boys": 357, + "% sum__num": 0.0003170895267194557, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005524613934716705 + }, + { + "__timestamp": 157766400000, + "state": "NJ", + "gender": "girl", + "name": "Stephanie", + "sum__num": 328, + "SUM(num_girls)": 328, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002913315539607324, + "% SUM(num_girls)": 0.0006838091505339132, + "% pct_boys": 0 + }, + { + "__timestamp": -126230400000, + "state": "OH", + "gender": "girl", + "name": "Brenda", + "sum__num": 714, + "SUM(num_girls)": 714, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006341790534389114, + "% SUM(num_girls)": 0.0014885357728085793, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "NY", + "gender": "boy", + "name": "Stephen", + "sum__num": 715, + "SUM(num_girls)": 0, + "SUM(num_boys)": 715, + "pct_boys": 715, + "% sum__num": 0.0006350672593961088, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0011064702978494242 + }, + { + "__timestamp": 94694400000, + "state": "NY", + "gender": "boy", + "name": "Paul", + "sum__num": 1234, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1234, + "pct_boys": 1234, + "% sum__num": 0.001096046151181536, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0019096284581065586 + }, + { + "__timestamp": 1167609600000, + "state": "NJ", + "gender": "boy", + "name": "Edward", + "sum__num": 126, + "SUM(num_girls)": 0, + "SUM(num_boys)": 126, + "pct_boys": 126, + "% sum__num": 0.00011191395060686673, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00019498637416647194 + }, + { + "__timestamp": 536457600000, + "state": "MA", + "gender": "girl", + "name": "Tiffany", + "sum__num": 166, + "SUM(num_girls)": 166, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001474421888947609, + "% SUM(num_girls)": 0.00034607414325801703, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "OH", + "gender": "boy", + "name": "Kyle", + "sum__num": 1154, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1154, + "pct_boys": 1154, + "% sum__num": 0.0010249896746057476, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0017858275856199096 + }, + { + "__timestamp": 315532800000, + "state": "NY", + "gender": "girl", + "name": "Brooke", + "sum__num": 242, + "SUM(num_girls)": 242, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002149458416417599, + "% SUM(num_girls)": 0.000504517726918314, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "NY", + "gender": "girl", + "name": "Lisa", + "sum__num": 699, + "SUM(num_girls)": 699, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000620855964080951, + "% SUM(num_girls)": 0.001457264012875626, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "IL", + "gender": "boy", + "name": "Paul", + "sum__num": 596, + "SUM(num_girls)": 0, + "SUM(num_boys)": 596, + "pct_boys": 596, + "% sum__num": 0.0005293707504896235, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000922316500025534 + }, + { + "__timestamp": 820454400000, + "state": "TX", + "gender": "girl", + "name": "Jennifer", + "sum__num": 1258, + "SUM(num_girls)": 1258, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0011173630941542724, + "% SUM(num_girls)": 0.0026226582663770206, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "other", + "gender": "boy", + "name": "Carlos", + "sum__num": 323, + "SUM(num_girls)": 0, + "SUM(num_boys)": 323, + "pct_boys": 323, + "% sum__num": 0.00028689052417474564, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004998460226648447 + }, + { + "__timestamp": 883612800000, + "state": "PA", + "gender": "boy", + "name": "Richard", + "sum__num": 299, + "SUM(num_girls)": 0, + "SUM(num_boys)": 299, + "pct_boys": 299, + "% sum__num": 0.0002655735812020091, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00046270576091885006 + }, + { + "__timestamp": 441763200000, + "state": "NJ", + "gender": "boy", + "name": "Jordan", + "sum__num": 79, + "SUM(num_girls)": 0, + "SUM(num_boys)": 79, + "pct_boys": 79, + "% sum__num": 0.00007016827061859104, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00012225336158056574 + }, + { + "__timestamp": 694224000000, + "state": "TX", + "gender": "boy", + "name": "Cody", + "sum__num": 1399, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1399, + "pct_boys": 1399, + "% sum__num": 0.0012426001341190995, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0021649677576102717 + }, + { + "__timestamp": -94694400000, + "state": "MI", + "gender": "girl", + "name": "Debra", + "sum__num": 454, + "SUM(num_girls)": 454, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004032455045675991, + "% SUM(num_girls)": 0.0009464919339707213, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "OH", + "gender": "boy", + "name": "Dustin", + "sum__num": 171, + "SUM(num_girls)": 0, + "SUM(num_boys)": 171, + "pct_boys": 171, + "% sum__num": 0.0001518832186807477, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002646243649402119 + }, + { + "__timestamp": 915148800000, + "state": "other", + "gender": "boy", + "name": "Samuel", + "sum__num": 7321, + "SUM(num_girls)": 0, + "SUM(num_boys)": 7321, + "pct_boys": 7321, + "% sum__num": 0.006502555812641835, + "% SUM(num_girls)": 0, + "% pct_boys": 0.011329327343434453 + }, + { + "__timestamp": 473385600000, + "state": "OH", + "gender": "girl", + "name": "Lindsey", + "sum__num": 463, + "SUM(num_girls)": 463, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00041123935818237535, + "% SUM(num_girls)": 0.0009652549899304933, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "MA", + "gender": "girl", + "name": "Michelle", + "sum__num": 94, + "SUM(num_girls)": 94, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00008349135997655137, + "% SUM(num_girls)": 0.00019596969557984098, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "CA", + "gender": "boy", + "name": "Paul", + "sum__num": 1144, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1144, + "pct_boys": 1144, + "% sum__num": 0.001016107615033774, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0017703524765590787 + }, + { + "__timestamp": 347155200000, + "state": "IL", + "gender": "boy", + "name": "Dennis", + "sum__num": 195, + "SUM(num_girls)": 0, + "SUM(num_boys)": 195, + "pct_boys": 195, + "% sum__num": 0.0001732001616534842, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00030176462668620656 + }, + { + "__timestamp": 852076800000, + "state": "MA", + "gender": "girl", + "name": "Kathryn", + "sum__num": 149, + "SUM(num_girls)": 149, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00013234268762240587, + "% SUM(num_girls)": 0.00031063281533400325, + "% pct_boys": 0 + }, + { + "__timestamp": 315532800000, + "state": "FL", + "gender": "girl", + "name": "Robin", + "sum__num": 114, + "SUM(num_girls)": 114, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00010125547912049846, + "% SUM(num_girls)": 0.00023766537549044543, + "% pct_boys": 0 + }, + { + "__timestamp": -94694400000, + "state": "MI", + "gender": "girl", + "name": "Kimberly", + "sum__num": 1994, + "SUM(num_girls)": 1994, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0017710826786515258, + "% SUM(num_girls)": 0.004157059287087265, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "FL", + "gender": "girl", + "name": "Erica", + "sum__num": 199, + "SUM(num_girls)": 199, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00017675298548227363, + "% SUM(num_girls)": 0.0004148720151105144, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "TX", + "gender": "girl", + "name": "Christine", + "sum__num": 390, + "SUM(num_girls)": 390, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003464003233069684, + "% SUM(num_girls)": 0.000813065758256787, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "other", + "gender": "girl", + "name": "Paula", + "sum__num": 13, + "SUM(num_girls)": 13, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000011546677443565614, + "% SUM(num_girls)": 0.0000271021919418929, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "other", + "gender": "girl", + "name": "Donna", + "sum__num": 2931, + "SUM(num_girls)": 2931, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0026033316605454473, + "% SUM(num_girls)": 0.006110501890899084, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "CA", + "gender": "girl", + "name": "Kayla", + "sum__num": 1145, + "SUM(num_girls)": 1145, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010169958209909713, + "% SUM(num_girls)": 0.0023870776748821055, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "OH", + "gender": "girl", + "name": "Nicole", + "sum__num": 836, + "SUM(num_girls)": 836, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007425401802169888, + "% SUM(num_girls)": 0.0017428794202632666, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "NJ", + "gender": "girl", + "name": "Erin", + "sum__num": 249, + "SUM(num_girls)": 249, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00022116328334214139, + "% SUM(num_girls)": 0.0005191112148870255, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "other", + "gender": "boy", + "name": "Scott", + "sum__num": 37, + "SUM(num_girls)": 0, + "SUM(num_boys)": 37, + "pct_boys": 37, + "% sum__num": 0.000032863620416302134, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000057257903525075095 + }, + { + "__timestamp": 347155200000, + "state": "NY", + "gender": "boy", + "name": "Miguel", + "sum__num": 234, + "SUM(num_girls)": 0, + "SUM(num_boys)": 234, + "pct_boys": 234, + "% sum__num": 0.00020784019398418106, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003621175520234479 + }, + { + "__timestamp": -94694400000, + "state": "CA", + "gender": "girl", + "name": "Heather", + "sum__num": 532, + "SUM(num_girls)": 532, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00047252556922899283, + "% SUM(num_girls)": 0.0011091050856220786, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "OH", + "gender": "girl", + "name": "Valerie", + "sum__num": 156, + "SUM(num_girls)": 156, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00013856012932278737, + "% SUM(num_girls)": 0.00032522630330271483, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "FL", + "gender": "boy", + "name": "Alex", + "sum__num": 321, + "SUM(num_girls)": 0, + "SUM(num_boys)": 321, + "pct_boys": 321, + "% sum__num": 0.0002851141122603509, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004967510008526785 + }, + { + "__timestamp": -157766400000, + "state": "NJ", + "gender": "boy", + "name": "William", + "sum__num": 1636, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1636, + "pct_boys": 1636, + "% sum__num": 0.0014531049459748726, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002531727842351969 + }, + { + "__timestamp": 883612800000, + "state": "IL", + "gender": "girl", + "name": "Rachel", + "sum__num": 539, + "SUM(num_girls)": 539, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00047874301092937433, + "% SUM(num_girls)": 0.0011236985735907903, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "CA", + "gender": "boy", + "name": "John", + "sum__num": 2839, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2839, + "pct_boys": 2839, + "% sum__num": 0.0025216167124832906, + "% SUM(num_girls)": 0, + "% pct_boys": 0.004393383462369951 + }, + { + "__timestamp": 94694400000, + "state": "PA", + "gender": "girl", + "name": "Rachel", + "sum__num": 273, + "SUM(num_girls)": 273, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00024248022631487789, + "% SUM(num_girls)": 0.0005691460307797509, + "% pct_boys": 0 + }, + { + "__timestamp": 915148800000, + "state": "other", + "gender": "boy", + "name": "Nathan", + "sum__num": 6199, + "SUM(num_girls)": 0, + "SUM(num_boys)": 6199, + "pct_boys": 6199, + "% sum__num": 0.005505988728666403, + "% SUM(num_girls)": 0, + "% pct_boys": 0.009593020106809203 + }, + { + "__timestamp": 631152000000, + "state": "MA", + "gender": "boy", + "name": "Nicholas", + "sum__num": 1036, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1036, + "pct_boys": 1036, + "% sum__num": 0.0009201813716564597, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0016032212987021027 + }, + { + "__timestamp": -126230400000, + "state": "NJ", + "gender": "girl", + "name": "Valerie", + "sum__num": 198, + "SUM(num_girls)": 198, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00017586477952507627, + "% SUM(num_girls)": 0.00041278723111498416, + "% pct_boys": 0 + }, + { + "__timestamp": 599616000000, + "state": "MI", + "gender": "girl", + "name": "Abigail", + "sum__num": 138, + "SUM(num_girls)": 138, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00012257242209323498, + "% SUM(num_girls)": 0.0002877001913831708, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "other", + "gender": "boy", + "name": "Peter", + "sum__num": 2209, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2209, + "pct_boys": 2209, + "% sum__num": 0.001962046959448957, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0034184515915375913 + }, + { + "__timestamp": 189302400000, + "state": "TX", + "gender": "girl", + "name": "Rebecca", + "sum__num": 839, + "SUM(num_girls)": 839, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007452047980885808, + "% SUM(num_girls)": 0.001749133772249857, + "% pct_boys": 0 + }, + { + "__timestamp": 599616000000, + "state": "PA", + "gender": "boy", + "name": "Jonathan", + "sum__num": 915, + "SUM(num_girls)": 0, + "SUM(num_boys)": 915, + "pct_boys": 915, + "% sum__num": 0.0008127084508355798, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014159724790660463 + }, + { + "__timestamp": 252460800000, + "state": "NY", + "gender": "boy", + "name": "Vincent", + "sum__num": 417, + "SUM(num_girls)": 0, + "SUM(num_boys)": 417, + "pct_boys": 417, + "% sum__num": 0.000370381884151297, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006453120478366572 + }, + { + "__timestamp": 852076800000, + "state": "NY", + "gender": "girl", + "name": "Angela", + "sum__num": 294, + "SUM(num_girls)": 294, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00026113255141602235, + "% SUM(num_girls)": 0.0006129264946858856, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "OH", + "gender": "boy", + "name": "Jonathan", + "sum__num": 437, + "SUM(num_girls)": 0, + "SUM(num_boys)": 437, + "pct_boys": 437, + "% sum__num": 0.0003881460032952441, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006762622659583193 + }, + { + "__timestamp": 94694400000, + "state": "CA", + "gender": "girl", + "name": "Angela", + "sum__num": 1041, + "SUM(num_girls)": 1041, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009246224014424465, + "% SUM(num_girls)": 0.002170260139346962, + "% pct_boys": 0 + }, + { + "__timestamp": 94694400000, + "state": "NY", + "gender": "girl", + "name": "Karen", + "sum__num": 922, + "SUM(num_girls)": 922, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008189258925359612, + "% SUM(num_girls)": 0.0019221708438788656, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "IL", + "gender": "girl", + "name": "Crystal", + "sum__num": 332, + "SUM(num_girls)": 332, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002948843777895218, + "% SUM(num_girls)": 0.0006921482865160341, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "OH", + "gender": "girl", + "name": "Kristin", + "sum__num": 223, + "SUM(num_girls)": 223, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00019806992845501016, + "% SUM(num_girls)": 0.00046490683100323976, + "% pct_boys": 0 + }, + { + "__timestamp": 883612800000, + "state": "other", + "gender": "boy", + "name": "Jesus", + "sum__num": 798, + "SUM(num_girls)": 0, + "SUM(num_boys)": 798, + "pct_boys": 798, + "% sum__num": 0.0007087883538434892, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012349137030543223 + }, + { + "__timestamp": 1199145600000, + "state": "CA", + "gender": "girl", + "name": "Abigail", + "sum__num": 1560, + "SUM(num_girls)": 1560, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0013856012932278736, + "% SUM(num_girls)": 0.003252263033027148, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "NJ", + "gender": "boy", + "name": "Angel", + "sum__num": 172, + "SUM(num_girls)": 0, + "SUM(num_boys)": 172, + "pct_boys": 172, + "% sum__num": 0.00015277142463794504, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000266171875846295 + }, + { + "__timestamp": 1104537600000, + "state": "other", + "gender": "boy", + "name": "Nathan", + "sum__num": 6295, + "SUM(num_girls)": 0, + "SUM(num_boys)": 6295, + "pct_boys": 6295, + "% sum__num": 0.005591256500557349, + "% SUM(num_girls)": 0, + "% pct_boys": 0.009741581153793182 + }, + { + "__timestamp": 820454400000, + "state": "IL", + "gender": "boy", + "name": "Noah", + "sum__num": 361, + "SUM(num_girls)": 0, + "SUM(num_boys)": 361, + "pct_boys": 361, + "% sum__num": 0.0003206423505482451, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005586514370960029 + }, + { + "__timestamp": 504921600000, + "state": "CA", + "gender": "boy", + "name": "Shawn", + "sum__num": 594, + "SUM(num_girls)": 0, + "SUM(num_boys)": 594, + "pct_boys": 594, + "% sum__num": 0.0005275943385752288, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009192214782133677 + }, + { + "__timestamp": 220924800000, + "state": "TX", + "gender": "girl", + "name": "Holly", + "sum__num": 303, + "SUM(num_girls)": 303, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002691264050307985, + "% SUM(num_girls)": 0.0006316895506456576, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "PA", + "gender": "boy", + "name": "Mark", + "sum__num": 748, + "SUM(num_girls)": 0, + "SUM(num_boys)": 748, + "pct_boys": 748, + "% sum__num": 0.0006643780559836215, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0011575381577501667 + }, + { + "__timestamp": 631152000000, + "state": "NJ", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 434, + "SUM(num_girls)": 0, + "SUM(num_boys)": 434, + "pct_boys": 434, + "% sum__num": 0.00038548138542365205, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00067161973324007 + }, + { + "__timestamp": 820454400000, + "state": "OH", + "gender": "girl", + "name": "Sydney", + "sum__num": 362, + "SUM(num_girls)": 362, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00032153055650544247, + "% SUM(num_girls)": 0.0007546918063819408, + "% pct_boys": 0 + }, + { + "__timestamp": 94694400000, + "state": "MA", + "gender": "girl", + "name": "Tara", + "sum__num": 245, + "SUM(num_girls)": 245, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00021761045951335196, + "% SUM(num_girls)": 0.0005107720789049047, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "FL", + "gender": "boy", + "name": "David", + "sum__num": 1177, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1177, + "pct_boys": 1177, + "% sum__num": 0.0010454184116212868, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0018214203364598212 + }, + { + "__timestamp": 157766400000, + "state": "PA", + "gender": "girl", + "name": "Lisa", + "sum__num": 1050, + "SUM(num_girls)": 1050, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009326162550572227, + "% SUM(num_girls)": 0.0021890231953067343, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "IL", + "gender": "girl", + "name": "Katie", + "sum__num": 202, + "SUM(num_girls)": 202, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001794176033538657, + "% SUM(num_girls)": 0.00042112636709710507, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "MA", + "gender": "girl", + "name": "Elizabeth", + "sum__num": 590, + "SUM(num_girls)": 590, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005240415147464394, + "% SUM(num_girls)": 0.0012300225573628316, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "MA", + "gender": "boy", + "name": "Paul", + "sum__num": 359, + "SUM(num_girls)": 0, + "SUM(num_boys)": 359, + "pct_boys": 359, + "% sum__num": 0.00031886593863385043, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005555564152838367 + }, + { + "__timestamp": 31536000000, + "state": "TX", + "gender": "boy", + "name": "Craig", + "sum__num": 384, + "SUM(num_girls)": 0, + "SUM(num_boys)": 384, + "pct_boys": 384, + "% sum__num": 0.00034107108756378427, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005942441879359145 + }, + { + "__timestamp": 1136073600000, + "state": "FL", + "gender": "boy", + "name": "Matthew", + "sum__num": 1236, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1236, + "pct_boys": 1236, + "% sum__num": 0.0010978225630959306, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0019127234799187246 + }, + { + "__timestamp": 1167609600000, + "state": "OH", + "gender": "girl", + "name": "Sophia", + "sum__num": 620, + "SUM(num_girls)": 620, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00055068769346236, + "% SUM(num_girls)": 0.0012925660772287384, + "% pct_boys": 0 + }, + { + "__timestamp": 1167609600000, + "state": "PA", + "gender": "boy", + "name": "Kyle", + "sum__num": 244, + "SUM(num_girls)": 0, + "SUM(num_boys)": 244, + "pct_boys": 244, + "% sum__num": 0.0002167222535561546, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000377592661084279 + }, + { + "__timestamp": 725846400000, + "state": "PA", + "gender": "boy", + "name": "Timothy", + "sum__num": 696, + "SUM(num_girls)": 0, + "SUM(num_boys)": 696, + "pct_boys": 696, + "% sum__num": 0.0006181913462093591, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001077067590633845 + }, + { + "__timestamp": 94694400000, + "state": "IL", + "gender": "boy", + "name": "Samuel", + "sum__num": 189, + "SUM(num_girls)": 0, + "SUM(num_boys)": 189, + "pct_boys": 189, + "% sum__num": 0.00016787092591030007, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002924795612497079 + }, + { + "__timestamp": 1041379200000, + "state": "other", + "gender": "boy", + "name": "Daniel", + "sum__num": 7609, + "SUM(num_girls)": 0, + "SUM(num_boys)": 7609, + "pct_boys": 7609, + "% sum__num": 0.006758359128314673, + "% SUM(num_girls)": 0, + "% pct_boys": 0.01177501048438639 + }, + { + "__timestamp": 157766400000, + "state": "other", + "gender": "boy", + "name": "Jacob", + "sum__num": 1423, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1423, + "pct_boys": 1423, + "% sum__num": 0.001263917077091836, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0022021080193562665 + }, + { + "__timestamp": 915148800000, + "state": "MA", + "gender": "boy", + "name": "Luke", + "sum__num": 149, + "SUM(num_girls)": 0, + "SUM(num_boys)": 149, + "pct_boys": 149, + "% sum__num": 0.00013234268762240587, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002305791250063835 + }, + { + "__timestamp": 1041379200000, + "state": "TX", + "gender": "boy", + "name": "Nathaniel", + "sum__num": 582, + "SUM(num_girls)": 0, + "SUM(num_boys)": 582, + "pct_boys": 582, + "% sum__num": 0.0005169358670888606, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009006513473403704 + }, + { + "__timestamp": 315532800000, + "state": "TX", + "gender": "girl", + "name": "Samantha", + "sum__num": 304, + "SUM(num_girls)": 304, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002700146109879959, + "% SUM(num_girls)": 0.0006337743346411878, + "% pct_boys": 0 + } + ], + "applied_filters": [], + "rejected_filters": [] } ] } diff --git a/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/testData.ts b/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/testData.ts index daa7168b66..2c3582ae61 100644 --- a/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/testData.ts +++ b/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/testData.ts @@ -16,8 +16,9 @@ * specific language governing permissions and limitations * under the License. */ -import { TableChartProps } from '@superset-ui/plugin-chart-table'; +import { TableChartProps } from '@superset-ui/plugin-chart-table/src'; // @ts-ignore +// eslint-disable-next-line import/extensions import birthNamesJson from './birthNames.json'; export const birthNames = (birthNamesJson as unknown) as TableChartProps; diff --git a/plugins/legacy-preset-chart-big-number/src/BigNumber/index.ts b/plugins/legacy-preset-chart-big-number/src/BigNumber/index.ts index 65fd611471..8f2bdbfaa4 100644 --- a/plugins/legacy-preset-chart-big-number/src/BigNumber/index.ts +++ b/plugins/legacy-preset-chart-big-number/src/BigNumber/index.ts @@ -18,7 +18,7 @@ */ import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; import controlPanel from './controlPanel'; -import transformProps from './transformProps'; +import transformProps, { BigNumberChartProps, BigNumberFormData } from './transformProps'; import thumbnail from './images/thumbnail.png'; const metadata = new ChartMetadata({ @@ -28,7 +28,10 @@ const metadata = new ChartMetadata({ useLegacyApi: true, }); -export default class BigNumberChartPlugin extends ChartPlugin { +export default class BigNumberChartPlugin extends ChartPlugin< + BigNumberFormData, + BigNumberChartProps +> { constructor() { super({ loadChart: () => import('./BigNumber'), diff --git a/plugins/legacy-preset-chart-big-number/src/BigNumber/transformProps.ts b/plugins/legacy-preset-chart-big-number/src/BigNumber/transformProps.ts index 54c0fd950b..eb2dc8e4f2 100644 --- a/plugins/legacy-preset-chart-big-number/src/BigNumber/transformProps.ts +++ b/plugins/legacy-preset-chart-big-number/src/BigNumber/transformProps.ts @@ -23,7 +23,8 @@ import { getNumberFormatter, NumberFormats, ChartProps, - QueryData, + LegacyQueryData, + QueryFormData, } from '@superset-ui/core'; const TIME_COLUMN = '__timestamp'; @@ -34,7 +35,7 @@ export interface BigNumberDatum { [key: string]: number | null; } -export type BigNumberFormData = { +export type BigNumberFormData = QueryFormData & { colorPicker?: { r: number; g: number; @@ -50,14 +51,14 @@ export type BigNumberFormData = { timeGrainSqla?: TimeGranularity; }; -export type BignumberChartProps = ChartProps & { +export type BigNumberChartProps = ChartProps & { formData: BigNumberFormData; - queriesData: (QueryData & { + queriesData: (LegacyQueryData & { data?: BigNumberDatum[]; })[]; }; -export default function transformProps(chartProps: BignumberChartProps) { +export default function transformProps(chartProps: BigNumberChartProps) { const { width, height, queriesData, formData } = chartProps; const { colorPicker, diff --git a/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/index.ts b/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/index.ts index 46059b2349..c0efbc6034 100644 --- a/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/index.ts +++ b/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/index.ts @@ -18,7 +18,10 @@ */ import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; import controlPanel from './controlPanel'; -import transformProps from '../BigNumber/transformProps'; +import transformProps, { + BigNumberChartProps, + BigNumberFormData, +} from '../BigNumber/transformProps'; import thumbnail from './images/thumbnail.png'; const metadata = new ChartMetadata({ @@ -28,7 +31,10 @@ const metadata = new ChartMetadata({ useLegacyApi: true, }); -export default class BigNumberTotalChartPlugin extends ChartPlugin { +export default class BigNumberTotalChartPlugin extends ChartPlugin< + BigNumberFormData, + BigNumberChartProps +> { constructor() { super({ loadChart: () => import('../BigNumber/BigNumber'), diff --git a/plugins/plugin-chart-echarts/package.json b/plugins/plugin-chart-echarts/package.json index 8041458d36..f76a2c0ee7 100644 --- a/plugins/plugin-chart-echarts/package.json +++ b/plugins/plugin-chart-echarts/package.json @@ -28,7 +28,7 @@ "dependencies": { "@superset-ui/chart-controls": "0.16.4", "@superset-ui/core": "0.16.4", - "@types/echarts": "^4.6.3", + "@types/echarts": "^4.9.3", "@types/mathjs": "^6.0.7", "echarts": "^5.0.0", "mathjs": "^8.0.1" diff --git a/plugins/plugin-chart-echarts/src/BoxPlot/buildQuery.ts b/plugins/plugin-chart-echarts/src/BoxPlot/buildQuery.ts index b0706802d1..0ad541a027 100644 --- a/plugins/plugin-chart-echarts/src/BoxPlot/buildQuery.ts +++ b/plugins/plugin-chart-echarts/src/BoxPlot/buildQuery.ts @@ -22,13 +22,12 @@ import { BoxPlotQueryFormData, BoxPlotQueryObjectWhiskerType } from './types'; const PERCENTILE_REGEX = /(\d+)\/(\d+) percentiles/; export default function buildQuery(formData: BoxPlotQueryFormData) { - const { whiskerOptions } = formData; + const { whiskerOptions, columns: distributionColumns = [] } = formData; return buildQueryContext(formData, baseQueryObject => { let whiskerType: BoxPlotQueryObjectWhiskerType; let percentiles: [number, number] | undefined; - const { columns, groupby, metrics } = baseQueryObject; + const { columns, metrics } = baseQueryObject; const percentileMatch = PERCENTILE_REGEX.exec(whiskerOptions as string); - const distributionColumns = columns || []; if (whiskerOptions === 'Tukey') { whiskerType = 'tukey'; @@ -44,14 +43,13 @@ export default function buildQuery(formData: BoxPlotQueryFormData) { { ...baseQueryObject, is_timeseries: distributionColumns.length === 0, - groupby: (groupby || []).concat(distributionColumns), post_processing: [ { operation: 'boxplot', options: { whisker_type: whiskerType, percentiles, - groupby, + groupby: columns, metrics: metrics.map(getMetricLabel), }, }, diff --git a/plugins/plugin-chart-echarts/src/BoxPlot/types.ts b/plugins/plugin-chart-echarts/src/BoxPlot/types.ts index c34ed8a391..d46704f346 100644 --- a/plugins/plugin-chart-echarts/src/BoxPlot/types.ts +++ b/plugins/plugin-chart-echarts/src/BoxPlot/types.ts @@ -17,6 +17,7 @@ * under the License. */ import { QueryFormData } from '@superset-ui/core'; +import { PostProcessingBoxplot } from '@superset-ui/core/src/query/types/PostProcessing'; export type BoxPlotQueryFormData = QueryFormData & { numberFormat?: string; @@ -32,4 +33,4 @@ export type BoxPlotFormDataWhiskerOptions = export type BoxPlotFormXTickLayout = '45°' | '90°' | 'auto' | 'flat' | 'staggered'; -export type BoxPlotQueryObjectWhiskerType = 'tukey' | 'min/max' | 'percentile'; +export type BoxPlotQueryObjectWhiskerType = PostProcessingBoxplot['options']['whisker_type']; diff --git a/plugins/plugin-chart-echarts/src/Timeseries/buildQuery.ts b/plugins/plugin-chart-echarts/src/Timeseries/buildQuery.ts index 49f52da1cf..c9ad3bb15f 100644 --- a/plugins/plugin-chart-echarts/src/Timeseries/buildQuery.ts +++ b/plugins/plugin-chart-echarts/src/Timeseries/buildQuery.ts @@ -31,7 +31,7 @@ export default function buildQuery(formData: QueryFormData) { operation: 'pivot', options: { index: ['__timestamp'], - columns: formData.groupby, + columns: formData.groupby || [], // Create 'dummy' sum aggregates to assign cell values in pivot table aggregates: Object.fromEntries( metricLabels.map(metric => [metric, { operator: 'sum' }]), diff --git a/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts b/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts index bdd4819380..c2c5b61a5b 100644 --- a/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts +++ b/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts @@ -18,7 +18,6 @@ */ /* eslint-disable camelcase */ import { - AnnotationData, AnnotationLayer, CategoricalColorNamespace, ChartProps, @@ -28,7 +27,7 @@ import { isIntervalAnnotationLayer, isTimeseriesAnnotationLayer, smartDateVerboseFormatter, - TimeseriesDataRecord, + TimeseriesChartDataResponseResult, } from '@superset-ui/core'; import { DEFAULT_FORM_DATA, EchartsTimeseriesFormData } from './types'; import { EchartsProps, ForecastSeriesEnum } from '../types'; @@ -52,11 +51,11 @@ import { export default function transformProps(chartProps: ChartProps): EchartsProps { const { width, height, formData, queriesData } = chartProps; - const { - annotation_data: annotationData = {}, + annotation_data: annotationData_, data = [], - }: { annotation_data?: AnnotationData; data?: TimeseriesDataRecord[] } = queriesData[0]; + } = queriesData[0] as TimeseriesChartDataResponseResult; + const annotationData = annotationData_ || {}; const { annotationLayers, diff --git a/plugins/plugin-chart-echarts/test/BoxPlot/buildQuery.test.ts b/plugins/plugin-chart-echarts/test/BoxPlot/buildQuery.test.ts index 7a3b068172..397833d348 100644 --- a/plugins/plugin-chart-echarts/test/BoxPlot/buildQuery.test.ts +++ b/plugins/plugin-chart-echarts/test/BoxPlot/buildQuery.test.ts @@ -37,7 +37,7 @@ describe('BoxPlot buildQuery', () => { const [query] = queryContext.queries; expect(query.is_timeseries).toEqual(true); expect(query.metrics).toEqual(['foo']); - expect(query.groupby).toEqual(['bar']); + expect(query.columns).toEqual(['bar']); }); it('should build non-timeseries query object when columns is defined', () => { @@ -45,6 +45,6 @@ describe('BoxPlot buildQuery', () => { const [query] = queryContext.queries; expect(query.is_timeseries).toEqual(false); expect(query.metrics).toEqual(['foo']); - expect(query.groupby).toEqual(['bar', 'qwerty']); + expect(query.columns).toEqual(['bar', 'qwerty']); }); }); diff --git a/plugins/plugin-chart-echarts/test/Pie/buildQuery.test.ts b/plugins/plugin-chart-echarts/test/Pie/buildQuery.test.ts index 9d9f6b92ad..fa40dbf8f1 100644 --- a/plugins/plugin-chart-echarts/test/Pie/buildQuery.test.ts +++ b/plugins/plugin-chart-echarts/test/Pie/buildQuery.test.ts @@ -27,10 +27,10 @@ describe('Pie buildQuery', () => { viz_type: 'my_chart', }; - it('should build groupby with series in form data', () => { + it('should build query fields from form data', () => { const queryContext = buildQuery(formData); const [query] = queryContext.queries; expect(query.metrics).toEqual(['foo']); - expect(query.groupby).toEqual(['bar']); + expect(query.columns).toEqual(['bar']); }); }); diff --git a/plugins/plugin-chart-table/src/DataTable/DataTable.tsx b/plugins/plugin-chart-table/src/DataTable/DataTable.tsx index 3ba45d18e2..f532fc933c 100644 --- a/plugins/plugin-chart-table/src/DataTable/DataTable.tsx +++ b/plugins/plugin-chart-table/src/DataTable/DataTable.tsx @@ -67,11 +67,11 @@ export default function DataTable({ sticky: doSticky, searchInput = true, selectPageSize, - noResults = 'No data found', + noResults: noResultsText = 'No data found', hooks, wrapperRef: userWrapperRef, ...moreUseTableOptions -}: DataTableProps) { +}: DataTableProps): JSX.Element { const tableHooks: PluginHook[] = [ useGlobalFilter, useSortBy, @@ -155,6 +155,13 @@ export default function DataTable({ } }; + const noResults = + typeof noResultsText === 'function' ? noResultsText(filterValue as string) : noResultsText; + + if (!columns || columns.length === 0) { + return
{noResults}
; + } + const renderTable = () => ( @@ -186,7 +193,7 @@ export default function DataTable({ ) : ( )} diff --git a/plugins/plugin-chart-table/src/DataTable/index.tsx b/plugins/plugin-chart-table/src/DataTable/index.tsx index b5e2a6ee54..55bdc9d38c 100644 --- a/plugins/plugin-chart-table/src/DataTable/index.tsx +++ b/plugins/plugin-chart-table/src/DataTable/index.tsx @@ -21,4 +21,5 @@ export * from './components/GlobalFilter'; export * from './components/Pagination'; export * from './components/SelectPageSize'; export * from './DataTable'; + export { default } from './DataTable'; diff --git a/plugins/plugin-chart-table/src/TableChart.tsx b/plugins/plugin-chart-table/src/TableChart.tsx index 5372a0ba4f..147df685eb 100644 --- a/plugins/plugin-chart-table/src/TableChart.tsx +++ b/plugins/plugin-chart-table/src/TableChart.tsx @@ -20,15 +20,16 @@ import React, { useState, useMemo, useCallback } from 'react'; import { ColumnInstance, DefaultSortTypes, ColumnWithLooseAccessor } from 'react-table'; import { extent as d3Extent, max as d3Max } from 'd3-array'; import { FaSort, FaSortUp as FaSortAsc, FaSortDown as FaSortDesc } from 'react-icons/fa'; -import { t, tn, DataRecordValue, DataRecord } from '@superset-ui/core'; +import { t, tn, DataRecordValue, DataRecord, GenericDataType } from '@superset-ui/core'; -import { TableChartTransformedProps, DataType, DataColumnMeta } from './types'; +import { TableChartTransformedProps, DataColumnMeta } from './types'; import DataTable, { DataTableProps, SearchInputProps, SelectPageSizeRendererProps, SizeOption, } from './DataTable'; + import Styles from './Styles'; import formatValue from './utils/formatValue'; import { PAGE_SIZE_OPTIONS } from './controlPanel'; @@ -38,11 +39,11 @@ type ValueRange = [number, number]; /** * Return sortType based on data type */ -function getSortTypeByDataType(dataType: DataType): DefaultSortTypes { - if (dataType === DataType.DateTime) { +function getSortTypeByDataType(dataType: GenericDataType): DefaultSortTypes { + if (dataType === GenericDataType.TEMPORAL) { return 'datetime'; } - if (dataType === DataType.String) { + if (dataType === GenericDataType.STRING) { return 'alphanumeric'; } return 'basic'; @@ -206,7 +207,7 @@ export default function TableChart( (column: DataColumnMeta, i: number): ColumnWithLooseAccessor => { const { key, label, dataType } = column; let className = ''; - if (dataType === DataType.Number) { + if (dataType === GenericDataType.NUMERIC) { className += ' dt-metric'; } else if (emitFilter) { className += ' dt-is-filter'; diff --git a/plugins/plugin-chart-table/src/buildQuery.ts b/plugins/plugin-chart-table/src/buildQuery.ts index 915fbec3d6..5b25596671 100644 --- a/plugins/plugin-chart-table/src/buildQuery.ts +++ b/plugins/plugin-chart-table/src/buildQuery.ts @@ -1,11 +1,31 @@ -import { buildQueryContext, QueryFormData } from '@superset-ui/core'; +import { buildQueryContext, getMetricLabel, removeDuplicates } from '@superset-ui/core'; +import { PostProcessingRule } from '@superset-ui/core/src/query/types/PostProcessing'; import { TableChartFormData } from './types'; export default function buildQuery(formData: TableChartFormData) { - // Set the single QueryObject's groupby field with series in formData - return buildQueryContext(formData as QueryFormData, baseQueryObject => [ - { - ...baseQueryObject, - }, - ]); + const { percent_metrics: percentMetrics } = formData; + return buildQueryContext(formData, baseQueryObject => { + let { metrics } = baseQueryObject; + let postProcessing: PostProcessingRule[] = []; + if (percentMetrics) { + const percentMetricLabels = percentMetrics.map(getMetricLabel); + metrics = removeDuplicates(metrics.concat(percentMetrics), getMetricLabel); + postProcessing = [ + { + operation: 'contribution', + options: { + columns: percentMetricLabels, + rename_columns: percentMetricLabels.map(x => `% ${x}`), + }, + }, + ]; + } + return [ + { + ...baseQueryObject, + metrics, + post_processing: postProcessing, + }, + ]; + }); } diff --git a/plugins/plugin-chart-table/src/controlPanel.tsx b/plugins/plugin-chart-table/src/controlPanel.tsx index a1d3b262f5..561c335d9e 100644 --- a/plugins/plugin-chart-table/src/controlPanel.tsx +++ b/plugins/plugin-chart-table/src/controlPanel.tsx @@ -18,7 +18,13 @@ * under the License. */ import React from 'react'; -import { t, validateNonEmpty, addLocaleData, smartDateFormatter } from '@superset-ui/core'; +import { + t, + validateNonEmpty, + addLocaleData, + smartDateFormatter, + QueryMode, +} from '@superset-ui/core'; import { formatSelectOptions, D3_TIME_FORMAT_OPTIONS, @@ -44,11 +50,6 @@ export const PAGE_SIZE_OPTIONS = formatSelectOptions([ 200, ]); -export enum QueryMode { - aggregate = 'aggregate', - raw = 'raw', -} - const QueryModeLabel = { [QueryMode.aggregate]: t('Aggregate'), [QueryMode.raw]: t('Raw Records'), @@ -113,7 +114,9 @@ const all_columns: typeof sharedControls.groupby = { const percent_metrics: typeof sharedControls.metrics = { type: 'MetricsControl', label: t('Percentage Metrics'), - description: t('Metrics for which percentage of total are to be displayed'), + description: t( + 'Metrics for which percentage of total are to be displayed. Calculated from only data within the row limit.', + ), multi: true, visibility: isAggMode, mapStateToProps: ({ datasource, controls }) => ({ diff --git a/plugins/plugin-chart-table/src/index.ts b/plugins/plugin-chart-table/src/index.ts index 6db27cfd6e..ff47298054 100644 --- a/plugins/plugin-chart-table/src/index.ts +++ b/plugins/plugin-chart-table/src/index.ts @@ -20,7 +20,11 @@ import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; import transformProps from './transformProps'; import thumbnail from './images/thumbnail.png'; import controlPanel from './controlPanel'; +import buildQuery from './buildQuery'; +import { TableChartFormData, TableChartProps } from './types'; +// must export something for the module to be exist in dev mode +export { default as __hack__ } from './types'; export * from './types'; const metadata = new ChartMetadata({ @@ -28,16 +32,16 @@ const metadata = new ChartMetadata({ description: '', name: t('Table'), thumbnail, - useLegacyApi: true, }); -export default class TableChartPlugin extends ChartPlugin { +export default class TableChartPlugin extends ChartPlugin { constructor() { super({ loadChart: () => import('./TableChart'), metadata, transformProps, controlPanel, + buildQuery, }); } } diff --git a/plugins/plugin-chart-table/src/transformProps.ts b/plugins/plugin-chart-table/src/transformProps.ts index fa55617d20..355412b267 100644 --- a/plugins/plugin-chart-table/src/transformProps.ts +++ b/plugins/plugin-chart-table/src/transformProps.ts @@ -19,48 +19,27 @@ import memoizeOne from 'memoize-one'; import { DataRecord, - QueryFormMetric, getNumberFormatter, NumberFormats, getTimeFormatter, smartDateFormatter, getTimeFormatterForGranularity, TimeFormatter, + GenericDataType, + getMetricLabel, } from '@superset-ui/core'; -import isEqualArray from './utils/isEqualArray'; +import isEqualColumns from './utils/isEqualColumns'; import DateWithFormatter from './utils/DateWithFormatter'; -import { TableChartProps, TableChartTransformedProps, DataType, DataColumnMeta } from './types'; +import { TableChartProps, TableChartTransformedProps, DataColumnMeta } from './types'; const { PERCENT_3_POINT } = NumberFormats; const TIME_COLUMN = '__timestamp'; -/** - * Consolidate list of metrics to string, identified by its unique identifier - */ -function getMetricIdentifier(metric: QueryFormMetric) { - if (typeof metric === 'string') return metric; - // even though `metric.optionName` is more unique, it's not used - // anywhere else in `queryData` and cannot be used to access `data.records`. - // The records are still keyed by `metric.label`. - return metric.label || 'NOT_LABELED'; -} - function isTimeColumn(key: string) { return key === TIME_COLUMN; } -const REGEXP_DATETIME = /^\d{4}-[01]\d-[03]\d/; -function isTimeType(key: string, data: DataRecord[] = []) { - return ( - isTimeColumn(key) || - data.some(x => { - const value = x[key]; - return value instanceof Date || (typeof value === 'string' && REGEXP_DATETIME.test(value)); - }) - ); -} - function isNumeric(key: string, data: DataRecord[] = []) { return data.every(x => x[key] === null || x[key] === undefined || typeof x[key] === 'number'); } @@ -72,7 +51,7 @@ const processDataRecords = memoizeOne(function processDataRecords( if (!data || !data[0]) { return data || []; } - const timeColumns = columns.filter(column => column.dataType === DataType.DateTime); + const timeColumns = columns.filter(column => column.dataType === GenericDataType.TEMPORAL); if (timeColumns.length > 0) { return data.map(x => { @@ -88,86 +67,73 @@ const processDataRecords = memoizeOne(function processDataRecords( return data; }); -const isEqualColumns = (propsA: T, propsB: T) => { - const a = propsA[0]; - const b = propsB[0]; - return ( - a.datasource.columnFormats === b.datasource.columnFormats && - a.datasource.verboseMap === b.datasource.verboseMap && - a.formData.tableTimestampFormat === b.formData.tableTimestampFormat && - a.formData.timeGrainSqla === b.formData.timeGrainSqla && - isEqualArray(a.formData.metrics, b.formData.metrics) && - isEqualArray(a.queriesData?.[0]?.data?.columns, b.queriesData?.[0]?.data?.columns) - ); -}; - const processColumns = memoizeOne(function processColumns(props: TableChartProps) { const { datasource: { columnFormats, verboseMap }, - formData: { - tableTimestampFormat, - timeGrainSqla: granularity, + rawFormData: { + table_timestamp_format: tableTimestampFormat, + time_grain_sqla: granularity, metrics: metrics_, - percentMetrics: percentMetrics_, + percent_metrics: percentMetrics_, }, queriesData, } = props; - // @ts-ignore - const { data: { records, columns: columns_ } = {} } = queriesData[0] || {}; + const { data: records, colnames, coltypes } = queriesData[0] || {}; // convert `metrics` and `percentMetrics` to the key names in `data.records` - const metrics = (metrics_ ?? []).map(getMetricIdentifier); - const percentMetrics = (percentMetrics_ ?? []) - .map(getMetricIdentifier) - // column names for percent metrics always starts with a '%' sign. - .map((x: string) => `%${x}`); + const metrics = (metrics_ ?? []).map(getMetricLabel); + const rawPercentMetrics = (percentMetrics_ ?? []).map(getMetricLabel); + // column names for percent metrics always starts with a '%' sign. + const percentMetrics = rawPercentMetrics.map((x: string) => `% ${x}`); const metricsSet = new Set(metrics); const percentMetricsSet = new Set(percentMetrics); - - const columns: DataColumnMeta[] = (columns_ || []).map((key: string) => { - let label = verboseMap?.[key] || key; - if (label[0] === '%' && label[1] !== ' ') { - // add a " " after "%" for percent metric labels - label = `% ${label.slice(1)}`; - } - // fallback to column level formats defined in datasource - const format = columnFormats?.[key]; - const isTime = isTimeType(key, records); - // for the purpose of presentation, only numeric values are treated as metrics - const isMetric = metricsSet.has(key) && isNumeric(key, records); - const isPercentMetric = percentMetricsSet.has(key); - let dataType = DataType.Number; // TODO: get this from data source - let formatter; - if (isTime) { - // Use granularity for "Adaptive Formatting" (smart_date) - const timeFormat = format || tableTimestampFormat; - formatter = getTimeFormatter(timeFormat); - if (timeFormat === smartDateFormatter.id) { - if (isTimeColumn(key)) { - formatter = getTimeFormatterForGranularity(granularity); - } else if (format) { - formatter = getTimeFormatter(format); - } else { - // return the identity string when datasource level formatter is not set - // and table timestamp format is set to Adaptive Formatting - formatter = String; + const rawPercentMetricsSet = new Set(rawPercentMetrics); + + const columns: DataColumnMeta[] = (colnames || []) + .filter( + key => + // if a metric was only added to percent_metrics, they should not show up in the table. + !(rawPercentMetricsSet.has(key) && !metricsSet.has(key)), + ) + .map((key: string, i) => { + const label = verboseMap?.[key] || key; + const dataType = coltypes[i]; + // fallback to column level formats defined in datasource + const format = columnFormats?.[key]; + // for the purpose of presentation, only numeric values are treated as metrics + const isMetric = metricsSet.has(key) && isNumeric(key, records); + const isPercentMetric = percentMetricsSet.has(key); + const isTime = dataType === GenericDataType.TEMPORAL; + let formatter; + if (isTime) { + const timeFormat = format || tableTimestampFormat; + // When format is "Adaptive Formatting" (smart_date) + if (timeFormat === smartDateFormatter.id) { + if (isTimeColumn(key)) { + // time column use formats based on granularity + formatter = getTimeFormatterForGranularity(granularity); + } else if (format) { + // other columns respect the column-specific format + formatter = getTimeFormatter(format); + } else { + // if no column-specific format, use smart_date + formatter = smartDateFormatter; + } + } else if (timeFormat) { + formatter = getTimeFormatter(timeFormat); } + } else if (isMetric) { + formatter = getNumberFormatter(format); + } else if (isPercentMetric) { + // percent metrics have a default format + formatter = getNumberFormatter(format || PERCENT_3_POINT); } - dataType = DataType.DateTime; - } else if (isMetric) { - formatter = getNumberFormatter(format); - } else if (isPercentMetric) { - // percent metrics have a default format - formatter = getNumberFormatter(format || PERCENT_3_POINT); - } else { - dataType = DataType.String; - } - return { - key, - label, - dataType, - formatter, - }; - }); + return { + key, + label, + dataType, + formatter, + }; + }); return [ metrics, percentMetrics, @@ -184,37 +150,38 @@ const getPageSize = ( numColumns: number, ) => { if (typeof pageSize === 'number') { + // NaN is also has typeof === 'number' return pageSize || 0; } if (typeof pageSize === 'string') { return Number(pageSize) || 0; } // when pageSize not set, automatically add pagination if too many records - return numRecords * numColumns > 10000 ? 200 : 0; + return numRecords * numColumns > 5000 ? 200 : 0; }; export default function transformProps(chartProps: TableChartProps): TableChartTransformedProps { const { height, width, - formData, + rawFormData: formData, queriesData, initialValues: filters = {}, hooks: { onAddFilter: onChangeFilter }, } = chartProps; const { - alignPn: alignPositiveNegative = true, - colorPn: colorPositiveNegative = true, - showCellBars = true, - includeSearch = false, - pageLength: pageSize = 0, - tableFilter, - orderDesc: sortDesc = false, + align_pn: alignPositiveNegative = true, + color_pn: colorPositiveNegative = true, + show_cell_bars: showCellBars = true, + include_search: includeSearch = false, + page_length: pageSize, + table_filter: tableFilter, + order_desc: sortDesc = false, } = formData; const [metrics, percentMetrics, columns] = processColumns(chartProps); - const data = processDataRecords(queriesData?.[0]?.data?.records, columns); + const data = processDataRecords(queriesData?.[0]?.data, columns); return { height, diff --git a/plugins/plugin-chart-table/src/types.ts b/plugins/plugin-chart-table/src/types.ts index bf23280aa8..85b994d112 100644 --- a/plugins/plugin-chart-table/src/types.ts +++ b/plugins/plugin-chart-table/src/types.ts @@ -25,15 +25,12 @@ import { DataRecord, DataRecordValue, DataRecordFilters, - QueryData, + GenericDataType, + QueryMode, + ChartDataResponseResult, + QueryFormData, } from '@superset-ui/core'; -export enum DataType { - Number = 'number', - String = 'string', - DateTime = 'datetime', -} - export type CustomFormatter = (value: DataRecordValue) => string; export interface DataColumnMeta { @@ -41,36 +38,36 @@ export interface DataColumnMeta { key: string; // `label` is verbose column name used for rendering label: string; - dataType: DataType; + dataType: GenericDataType; formatter?: TimeFormatter | NumberFormatter | CustomFormatter; } -export interface TableChartData { - records: D[]; +export interface TableChartData { + records: DataRecord[]; columns: string[]; } -export interface TableChartFormData { - alignPn?: boolean; - colorPn?: boolean; - includeSearch?: boolean; - pageLength?: string | number | null; // null means auto-paginate +export type TableChartFormData = QueryFormData & { + align_pn?: boolean; + color_pn?: boolean; + include_search?: boolean; + query_mode?: QueryMode; + page_length?: string | number | null; // null means auto-paginate metrics?: QueryFormMetric[] | null; - percentMetrics?: QueryFormMetric[] | null; - groupby?: string[]; - allColumns?: string[]; - orderDesc?: boolean; - showCellBars?: boolean; - tableTimestampFormat?: string; - tableFilter?: boolean; - timeGrainSqla?: TimeGranularity; -} + percent_metrics?: QueryFormMetric[] | null; + timeseries_limit_metric?: QueryFormMetric | null; + groupby?: QueryFormMetric[] | null; + all_columns?: QueryFormMetric[] | null; + order_desc?: boolean; + show_cell_bars?: boolean; + table_timestamp_format?: string; + table_filter?: boolean; + time_grain_sqla?: TimeGranularity; +}; -export interface TableChartProps extends ChartProps { - formData: TableChartFormData; - queriesData: (QueryData & { - data?: TableChartData; - })[]; +export interface TableChartProps extends ChartProps { + rawFormData: TableChartFormData; + queriesData: ChartDataResponseResult[]; } export interface TableChartTransformedProps { @@ -93,3 +90,5 @@ export interface TableChartTransformedProps { emitFilter?: boolean; onChangeFilter?: ChartProps['hooks']['onAddFilter']; } + +export default {}; diff --git a/plugins/plugin-chart-table/src/utils/isEqualColumns.ts b/plugins/plugin-chart-table/src/utils/isEqualColumns.ts index f75a84becf..44c0621be2 100644 --- a/plugins/plugin-chart-table/src/utils/isEqualColumns.ts +++ b/plugins/plugin-chart-table/src/utils/isEqualColumns.ts @@ -28,7 +28,7 @@ export default function isEqualColumns(propsA: TableChartProps[], propsB: TableC a.formData.tableTimestampFormat === b.formData.tableTimestampFormat && a.formData.timeGrainSqla === b.formData.timeGrainSqla && isEqualArray(a.formData.metrics, b.formData.metrics) && - isEqualArray(a.formData.groupby, b.formData.groupby) && - isEqualArray(a.formData.allColumns, b.formData.allColumns) + isEqualArray(a.queriesData?.[0]?.colnames, b.queriesData?.[0]?.colnames) && + isEqualArray(a.queriesData?.[0]?.coltypes, b.queriesData?.[0]?.coltypes) ); } diff --git a/plugins/plugin-chart-table/test/testData.ts b/plugins/plugin-chart-table/test/testData.ts index 847e67fdc7..b3057598c6 100644 --- a/plugins/plugin-chart-table/test/testData.ts +++ b/plugins/plugin-chart-table/test/testData.ts @@ -16,20 +16,28 @@ * specific language governing permissions and limitations * under the License. */ -import { ChartProps, DatasourceType } from '@superset-ui/core'; +import { + ChartDataResponseResult, + ChartProps, + DatasourceType, + GenericDataType, +} from '@superset-ui/core'; +import { TableChartProps, TableChartFormData } from '../src/types'; -const basicFormData = { - alignPn: false, - colorPn: false, - showCellBars: true, - includeSearch: false, - orderDesc: true, - pageLength: 20, +const basicFormData: TableChartFormData = { + datasource: '1__abc', + viz_type: 'table', + align_pn: false, + color_pn: false, + show_cell_bars: true, + include_search: false, + order_desc: true, + page_length: 20, metrics: [], - percentMetrics: null, - timeseriesLimitMetric: null, - tableFilter: false, - tableTimestampFormat: '%Y-%m-%d %H:%M:%S', + percent_metrics: null, + timeseries_limit_metric: '', + table_filter: false, + table_timestamp_format: '%Y-%m-%d %H:%M:%S', }; const basicChartProps = { @@ -57,32 +65,52 @@ const basicChartProps = { formData: basicFormData, }; +const basicQueryResult: ChartDataResponseResult = { + cache_key: null, + cache_dttm: null, + cache_timeout: null, + data: [], + colnames: [], + coltypes: [], + error: null, + is_cached: false, + query: 'SELECT ...', + rowcount: 100, + stacktrace: null, + status: 'success', +}; + /** * Basic data input */ -const basic = { +const basic: TableChartProps = { ...new ChartProps(basicChartProps), 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', - }, - ], - }, + ...basicQueryResult, + colnames: ['__timestamp', 'name', 'sum__num', 'abc.com'], + coltypes: [ + GenericDataType.TEMPORAL, + GenericDataType.STRING, + GenericDataType.NUMERIC, + GenericDataType.STRING, + ], + data: [ + { + __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', + }, + ], }, ], }; @@ -92,7 +120,7 @@ const basic = { * - verbose map * - metric columns */ -const advanced = { +const advanced: TableChartProps = { ...basic, datasource: { ...basic.datasource, @@ -107,10 +135,10 @@ const advanced = { }, queriesData: [ { - data: { - columns: ['name', 'sum__num', '%pct_nice'], - records: [...(basic.queriesData[0].data?.records || [])], - }, + ...basicQueryResult, + colnames: ['name', 'sum__num', '%pct_nice'], + coltypes: [GenericDataType.STRING, GenericDataType.NUMERIC, GenericDataType.NUMERIC], + data: [...(basic.queriesData[0].data || [])], }, ], }; @@ -120,10 +148,7 @@ const empty = { queriesData: [ { ...advanced.queriesData[0], - data: { - ...advanced.queriesData[0].data, - records: [], - }, + data: [], }, ], }; diff --git a/plugins/plugin-chart-word-cloud/test/plugin/buildQuery.test.ts b/plugins/plugin-chart-word-cloud/test/plugin/buildQuery.test.ts index 792dbabab5..a0a24e81c0 100644 --- a/plugins/plugin-chart-word-cloud/test/plugin/buildQuery.test.ts +++ b/plugins/plugin-chart-word-cloud/test/plugin/buildQuery.test.ts @@ -9,9 +9,9 @@ describe('WordCloud buildQuery', () => { viz_type: 'word_cloud', }; - it('should build groupby with series in form data', () => { + it('should build columns from series in form data', () => { const queryContext = buildQuery(formData); const [query] = queryContext.queries; - expect(query.groupby).toEqual(['foo']); + expect(query.columns).toEqual(['foo']); }); }); diff --git a/plugins/preset-chart-xy/src/BoxPlot/legacy/index.ts b/plugins/preset-chart-xy/src/BoxPlot/legacy/index.ts index 67478e81b6..9423d9619e 100644 --- a/plugins/preset-chart-xy/src/BoxPlot/legacy/index.ts +++ b/plugins/preset-chart-xy/src/BoxPlot/legacy/index.ts @@ -16,12 +16,15 @@ * specific language governing permissions and limitations * under the License. */ -import { ChartPlugin } from '@superset-ui/core'; +import { ChartPlugin, QueryFormData } from '@superset-ui/core'; import createMetadata from '../createMetadata'; -import transformProps from './transformProps'; +import transformProps, { LegacyBoxPlotChartProps } from './transformProps'; import controlPanel from '../controlPanel'; -export default class BoxPlotChartPlugin extends ChartPlugin { +export default class BoxPlotChartPlugin extends ChartPlugin< + QueryFormData, + LegacyBoxPlotChartProps +> { constructor() { super({ loadChart: () => import('../../components/BoxPlot/BoxPlot'), diff --git a/plugins/preset-chart-xy/src/BoxPlot/legacy/transformProps.ts b/plugins/preset-chart-xy/src/BoxPlot/legacy/transformProps.ts index da876c900a..c9390140b5 100644 --- a/plugins/preset-chart-xy/src/BoxPlot/legacy/transformProps.ts +++ b/plugins/preset-chart-xy/src/BoxPlot/legacy/transformProps.ts @@ -16,7 +16,7 @@ * specific language governing permissions and limitations * under the License. */ -import { ChartProps, QueryData, QueryFormData, QueryFormMetric } from '@superset-ui/core'; +import { ChartProps, LegacyQueryData, QueryFormData, QueryFormMetric } from '@superset-ui/core'; import { RawBoxPlotDataRow, BoxPlotDataRow } from '../../components/BoxPlot/types'; export type LegacyBoxPlotFormData = { @@ -27,7 +27,7 @@ export type LegacyBoxPlotFormData = { export type LegacyBoxPlotChartProps = ChartProps & { formData: LegacyBoxPlotFormData; - queriesData: (QueryData & { + queriesData: (LegacyQueryData & { data?: RawBoxPlotDataRow[]; })[]; }; diff --git a/scripts/build.js b/scripts/build.js index 759fe5b8bd..ac46273f1a 100755 --- a/scripts/build.js +++ b/scripts/build.js @@ -55,10 +55,14 @@ function run(cmd, options) { } } -function getPackages(pattern, tsOnly = false) { +function getPackages(packagePattern, tsOnly = false) { + let pattern = packagePattern; if (pattern === '*' && !tsOnly) { return `@superset-ui/!(${[...META_PACKAGES].join('|')})`; } + if (!pattern.includes('*')) { + pattern = `*${pattern}`; + } const packages = [ ...new Set( fastGlob diff --git a/yarn.lock b/yarn.lock index 7013383dcc..2621b1010e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5160,10 +5160,10 @@ resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.5.tgz#b14efa8852b7768d898906613c23f688713e02cd" integrity sha512-Q1y515GcOdTHgagaVFhHnIFQ38ygs/kmxdNpvpou+raI9UO3YZcHDngBSYKQklcKlvA7iuQlmIKbzvmxcOE9CQ== -"@types/echarts@^4.6.3": - version "4.6.3" - resolved "https://registry.yarnpkg.com/@types/echarts/-/echarts-4.6.3.tgz#227b33b106203ceb2ca4fa51760f406618caa89a" - integrity sha512-XsDsLtPDxSGPqcHvVEbH+z5r9lPiduNOf4aL3NjGprQ/4SliDiTS7DErimHpVdiEOoVFzwjn2usvgLOb1JqOJA== +"@types/echarts@^4.9.3": + version "4.9.3" + resolved "https://registry.yarnpkg.com/@types/echarts/-/echarts-4.9.3.tgz#8a143cf315f6ae88d0778d75a133b378974d37d5" + integrity sha512-CbgZUYdLy1G2BhCI6maBwVXmrqIx/D8KwUccMXQ9W2uyXNMjBvpIRXSs+UaBtvUihPV2f0g7LGj/yua1iY0VbQ== dependencies: "@types/zrender" "*"
- {typeof noResults === 'function' ? noResults(filterValue as string) : noResults} + {noResults}